Skip to content

🚨🚨🐛Source Hubspot: update marketing_emails stream schema #34492

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 31, 2024

Large diffs are not rendered by default.

10 changes: 9 additions & 1 deletion airbyte-integrations/connectors/source-hubspot/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 36c891d9-4bd9-43ac-bad2-10e12756272c
dockerImageTag: 2.0.2
dockerImageTag: 3.0.0
dockerRepository: airbyte/source-hubspot
documentationUrl: https://docs.airbyte.com/integrations/sources/hubspot
githubIssueLabel: source-hubspot
Expand All @@ -30,6 +30,14 @@ data:
This version eliminates the Property History stream in favor of creating 3 different streams, Contacts, Companies, and Deals, which can now all fetch their property history.
It will affect only users who use Property History stream, who will need to fix schema conflicts and sync Contacts Property History stream instead of Property History.
upgradeDeadline: 2024-01-15
3.0.0:
message: >-
This update brings extended schema with data type changes for the Marketing Emails stream.
Users will need to refresh it and reset this stream after upgrading.
upgradeDeadline: 2024-02-12
scopedImpact:
- scopeType: stream
impactedScopes: ["marketing_emails"]
suggestedStreams:
streams:
- contacts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
},
"lastSizeChangeAt": {
"type": ["null", "integer"]
},
"listReferencesCount": {
"type": ["null", "integer"]
},
"parentFolderId": {
"type": ["null", "integer"]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,24 @@
"items": {
"type": ["null", "integer"]
}
},
"contentIds": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
},
"quoteIds": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
},
"marketingEventIds": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@
},
"fieldType": {
"type": ["null", "string"]
},
"validation": {
"type": ["null", "object"],
"properties": {
"blockedEmailDomains": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"useDefaultBlockList": {
"type": ["null", "boolean"]
}
}
}
}
}
Expand Down Expand Up @@ -169,6 +183,9 @@
"type": ["null", "string"]
}
}
},
"cssClass": {
"type": ["null", "string"]
}
}
},
Expand Down
Loading