Skip to content

Commit abbf6b3

Browse files
committed
exact dep
1 parent bad174f commit abbf6b3

File tree

3 files changed

+94
-3
lines changed

3 files changed

+94
-3
lines changed

integrations/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integrations/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"test": "vitest"
1313
},
1414
"devDependencies": {
15-
"nango": "^0.69.18",
15+
"nango": "0.69.18",
1616
"vitest": "4.0.15",
1717
"zod": "4.0.5"
1818
}
19-
}
19+
}

internal/flows.zero.json

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34022,6 +34022,21 @@
3402234022
"usedModels": ["ActionInput_hubspot_fetchpipelines", "ActionOutput_hubspot_fetchpipelines"],
3402334023
"version": "1.0.0"
3402434024
},
34025+
{
34026+
"type": "action",
34027+
"description": "Get a company by its domain name",
34028+
"endpoint": {
34029+
"method": "GET",
34030+
"path": "/company-by-domain",
34031+
"group": "Companies"
34032+
},
34033+
"input": "ActionInput_hubspot_getcompanybydomain",
34034+
"name": "get-company-by-domain",
34035+
"output": ["ActionOutput_hubspot_getcompanybydomain"],
34036+
"scopes": ["crm.objects.companies.read", "oauth"],
34037+
"usedModels": ["ActionInput_hubspot_getcompanybydomain", "ActionOutput_hubspot_getcompanybydomain"],
34038+
"version": "1.0.0"
34039+
},
3402534040
{
3402634041
"type": "action",
3402734042
"description": "Fetch the properties of a specified object",
@@ -35968,6 +35983,82 @@
3596835983
"required": ["pipelines"],
3596935984
"additionalProperties": false
3597035985
},
35986+
"ActionInput_hubspot_getcompanybydomain": {
35987+
"type": "object",
35988+
"properties": {
35989+
"domain": {
35990+
"type": "string"
35991+
}
35992+
},
35993+
"required": ["domain"],
35994+
"additionalProperties": false
35995+
},
35996+
"ActionOutput_hubspot_getcompanybydomain": {
35997+
"type": "object",
35998+
"properties": {
35999+
"company": {
36000+
"anyOf": [
36001+
{
36002+
"type": "object",
36003+
"properties": {
36004+
"id": {
36005+
"type": "string"
36006+
},
36007+
"name": {
36008+
"type": ["string", "null"]
36009+
},
36010+
"domain": {
36011+
"type": ["string", "null"]
36012+
},
36013+
"industry": {
36014+
"type": ["string", "null"]
36015+
},
36016+
"website": {
36017+
"type": ["string", "null"]
36018+
},
36019+
"city": {
36020+
"type": ["string", "null"]
36021+
},
36022+
"state": {
36023+
"type": ["string", "null"]
36024+
},
36025+
"country": {
36026+
"type": ["string", "null"]
36027+
},
36028+
"phone": {
36029+
"type": ["string", "null"]
36030+
},
36031+
"created_at": {
36032+
"type": "string"
36033+
},
36034+
"updated_at": {
36035+
"type": "string"
36036+
}
36037+
},
36038+
"required": [
36039+
"id",
36040+
"name",
36041+
"domain",
36042+
"industry",
36043+
"website",
36044+
"city",
36045+
"state",
36046+
"country",
36047+
"phone",
36048+
"created_at",
36049+
"updated_at"
36050+
],
36051+
"additionalProperties": false
36052+
},
36053+
{
36054+
"type": "null"
36055+
}
36056+
]
36057+
}
36058+
},
36059+
"required": ["company"],
36060+
"additionalProperties": false
36061+
},
3597136062
"ActionInput_hubspot_fetchproperties": {
3597236063
"type": "object",
3597336064
"properties": {

0 commit comments

Comments
 (0)