Skip to content

Commit

Permalink
Source Hubspot: Some incremental CRM objects and engagements (#8887)
Browse files Browse the repository at this point in the history
  • Loading branch information
lgomezm authored Jan 17, 2022
1 parent d09829b commit 25fb7e7
Show file tree
Hide file tree
Showing 10 changed files with 212 additions and 59 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "36c891d9-4bd9-43ac-bad2-10e12756272c",
"name": "HubSpot",
"dockerRepository": "airbyte/source-hubspot",
"dockerImageTag": "0.1.32",
"dockerImageTag": "0.1.33",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/hubspot",
"icon": "hubspot.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
- name: HubSpot
sourceDefinitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c
dockerRepository: airbyte/source-hubspot
dockerImageTag: 0.1.32
dockerImageTag: 0.1.33
documentationUrl: https://docs.airbyte.io/integrations/sources/hubspot
icon: hubspot.svg
sourceType: api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2872,7 +2872,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-hubspot:0.1.32"
- dockerImage: "airbyte/source-hubspot:0.1.33"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/hubspot"
connectionSpecification:
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-hubspot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_hubspot ./source_hubspot
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.32
LABEL io.airbyte.version=0.1.33
LABEL io.airbyte.name=airbyte/source-hubspot
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"email_events": {
"timestamp": "2221-10-12T13:37:56.412000+00:00"
},
"engagements": {
"lastUpdated": 7945393076412
},
"line_items": {
"updatedAt": "2221-10-12T13:37:56.412000+00:00"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@
"stream": {
"name": "engagements",
"json_schema": {},
"supported_sync_modes": ["full_refresh"]
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": true,
"default_cursor_field": ["lastUpdated"]
},
"sync_mode": "full_refresh",
"destination_sync_mode": "overwrite"
"sync_mode": "incremental",
"cursor_field": ["lastUpdated"],
"destination_sync_mode": "append"
},
{
"stream": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"email_events": {
"timestamp": "2021-02-23T00:00:00Z"
},
"engagements": {
"lastUpdated": 1614038400000
},
"line_items": {
"updatedAt": "2021-02-23T00:00:00Z"
},
Expand Down
Loading

0 comments on commit 25fb7e7

Please sign in to comment.