-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: publish data to hubspot via target-hubspot (#665)
- Loading branch information
1 parent
f48acaa
commit 514aa47
Showing
8 changed files
with
214 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
{ | ||
"plugin_type": "loaders", | ||
"name": "target-hubspot", | ||
"namespace": "target_hubspot", | ||
"variant": "meltanolabs", | ||
"label": "HubSpot", | ||
"docs": "https://hub.meltano.com/loaders/target-hubspot--meltanolabs", | ||
"repo": "https://github.com/MeltanoLabs/target-hubspot", | ||
"pip_url": "git+https://github.com/MeltanoLabs/target-hubspot.git", | ||
"executable": "target-hubspot", | ||
"description": "Inbound Marketing software", | ||
"logo_url": "https://hub.meltano.com/assets/logos/loaders/hubspot.png", | ||
"capabilities": [ | ||
"about", | ||
"schema-flattening", | ||
"stream-maps" | ||
], | ||
"settings_group_validation": [ | ||
[ | ||
"access_token", | ||
"column_mapping" | ||
] | ||
], | ||
"settings": [ | ||
{ | ||
"name": "access_token", | ||
"kind": "password", | ||
"label": "Access Token", | ||
"description": "Your HubSpot private app API access token. See the [docs](https://developers.hubspot.com/docs/api/private-apps) for more details." | ||
}, | ||
{ | ||
"name": "column_mapping", | ||
"kind": "array", | ||
"label": "Column Mapping", | ||
"description": "An array including an object entry for each column in your import file stream." | ||
}, | ||
{ | ||
"name": "date_format", | ||
"kind": "options", | ||
"value": "YEAR_MONTH_DAY", | ||
"label": "Date Format", | ||
"description": "The format for dates included in the import file stream.", | ||
"options": [ | ||
{ | ||
"label": "Month Day Year", | ||
"value": "MONTH_DAY_YEAR" | ||
}, | ||
{ | ||
"label": "Year Month Day", | ||
"value": "YEAR_MONTH_DAY" | ||
}, | ||
{ | ||
"label": "Day Month Year", | ||
"value": "DAY_MONTH_YEAR" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "flattening_enabled", | ||
"kind": "boolean", | ||
"label": "Flattening Enabled", | ||
"description": "'True' to enable schema flattening and automatically expand nested properties." | ||
}, | ||
{ | ||
"name": "flattening_max_depth", | ||
"kind": "integer", | ||
"label": "Flattening Max Depth", | ||
"description": "The max depth to flatten schemas." | ||
}, | ||
{ | ||
"name": "import_operations", | ||
"kind": "options", | ||
"value": "UPDATE", | ||
"label": "Import Operations", | ||
"description": "Used to indicate whether the import should create and update, only create, or only update records for a certain object or activity.", | ||
"options": [ | ||
{ | ||
"label": "Create", | ||
"value": "CREATE" | ||
}, | ||
{ | ||
"label": "Update", | ||
"value": "UPDATE" | ||
}, | ||
{ | ||
"label": "Upsert", | ||
"value": "UPSERT" | ||
} | ||
] | ||
}, | ||
{ | ||
"name": "stream_map_config", | ||
"kind": "object", | ||
"label": "Stream Map Config", | ||
"description": "User-defined config values to be used within map expressions." | ||
}, | ||
{ | ||
"name": "stream_maps", | ||
"kind": "object", | ||
"label": "Stream Maps", | ||
"description": "Config object for stream maps capability. For more information check out [Stream Maps](https://sdk.meltano.com/en/latest/stream_maps.html)." | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters