Skip to content

Commit

Permalink
🎉 Source Hubspot: Add tickets associations to engagements streams. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimir-remar committed Mar 31, 2022
1 parent e0aa76d commit 06eff7d
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
- name: HubSpot
sourceDefinitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c
dockerRepository: airbyte/source-hubspot
dockerImageTag: 0.1.51
dockerImageTag: 0.1.52
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 @@ -3428,7 +3428,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-hubspot:0.1.51"
- dockerImage: "airbyte/source-hubspot:0.1.52"
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.51
LABEL io.airbyte.version=0.1.52
LABEL io.airbyte.name=airbyte/source-hubspot
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,12 @@
"items": {
"type": ["null", "string"]
}
},
"tickets": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,12 @@
"items": {
"type": ["null", "string"]
}
},
"tickets": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,12 @@
"items": {
"type": ["null", "string"]
}
},
"tickets": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,12 @@
"items": {
"type": ["null", "string"]
}
},
"tickets": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,12 @@
"items": {
"type": ["null", "string"]
}
},
"tickets": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1319,35 +1319,35 @@ class Contacts(CRMSearchStream):
class EngagementsCalls(CRMSearchStream):
entity = "calls"
last_modified_field = "hs_lastmodifieddate"
associations = ["contacts", "deal", "company"]
associations = ["contacts", "deal", "company", "tickets"]
primary_key = "id"


class EngagementsEmails(CRMSearchStream):
entity = "emails"
last_modified_field = "hs_lastmodifieddate"
associations = ["contacts", "deal", "company"]
associations = ["contacts", "deal", "company", "tickets"]
primary_key = "id"


class EngagementsMeetings(CRMSearchStream):
entity = "meetings"
last_modified_field = "hs_lastmodifieddate"
associations = ["contacts", "deal", "company"]
associations = ["contacts", "deal", "company", "tickets"]
primary_key = "id"


class EngagementsNotes(CRMSearchStream):
entity = "notes"
last_modified_field = "hs_lastmodifieddate"
associations = ["contacts", "deal", "company"]
associations = ["contacts", "deal", "company", "tickets"]
primary_key = "id"


class EngagementsTasks(CRMSearchStream):
entity = "tasks"
last_modified_field = "hs_lastmodifieddate"
associations = ["contacts", "deal", "company"]
associations = ["contacts", "deal", "company", "tickets"]
primary_key = "id"


Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/hubspot.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@ If you are using OAuth, most of the streams require the appropriate [scopes](htt

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:---------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------|
| 0.1.52 | 2022-03-25 | [11423](https://github.com/airbytehq/airbyte/pull/11423) | Add tickets associations to engagements streams |
| 0.1.51 | 2022-03-24 | [11321](https://github.com/airbytehq/airbyte/pull/11321) | Fix updated at field non exists issue |
| 0.1.50 | 2022-03-22 | [11266](https://github.com/airbytehq/airbyte/pull/11266) | Fix Engagements Stream Pagination |
| 0.1.49 | 2022-03-17 | [11218](https://github.com/airbytehq/airbyte/pull/11218) | Anchor hyperlink in input configuration |
Expand Down

0 comments on commit 06eff7d

Please sign in to comment.