Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-jamie committed Oct 26, 2023
1 parent 40f9882 commit dff0337
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# dbt_hubspot_source v0.12.1

Teeny tiny release!

## Under the Hood
- V3 of the Hubspot Service endpoint contains the field `_fivetran_deleted` in the `TICKET` table, whereas V2 has a field called `is_deleted`. Previously, the package only looked at `is_deleted`. Now, it will fold in `_fivetran_deleted` and coalesce it with `is_deleted` to more fully represent `is_ticket_deleted` ([PR #120](https://github.com/fivetran/dbt_hubspot_source/pull/120)).

# dbt_hubspot_source v0.12.0
## 🚨 Breaking Changes 🚨
- The following models now use a custom macro to remove the property_hs_ prefix in staging columns, while also preventing duplicates. If de-prefixed columns match existing ones (e.g., `property_hs_meeting_outcome` vs. `meeting_outcome`), the macro favors the `property_hs_`field, aligning with the latest HubSpot API update. ([PR #115](https://github.com/fivetran/dbt_hubspot_source/pull/115))
Expand Down
4 changes: 3 additions & 1 deletion models/src_hubspot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,9 @@ sources:
- name: id
description: ID of the ticket.
- name: is_deleted
description: Whether the record was deleted.
description: Whether the record was deleted (v2 endpoint).
- name: _fivetran_deleted
description: Whether the record was deleted (v3 endpoint).
- name: portal_id
description: '{{ doc("portal_id") }}'
- name: property_closed_date
Expand Down

0 comments on commit dff0337

Please sign in to comment.