Skip to content

Commit

Permalink
🚨🚨🐛Source Hubspot: update marketing_emails stream schema (#34492)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Karpets committed Jan 31, 2024
1 parent a8bdeef commit 6b4e8ac
Show file tree
Hide file tree
Showing 10 changed files with 272 additions and 182 deletions.

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 @@ -34,6 +34,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

0 comments on commit 6b4e8ac

Please sign in to comment.