Merged PR 4918: Adds Integration Type from Hubspot Deals

# Description

Extracts Integration Type (OSL, PMS, AutoHost, other API stuff) from Hubspot Deals.

This is needed for the categorisation of Deals in the scope of Old Dash to New Dash migration.

# Checklist

- [X] The edited models and dependants run properly with production data.
- [X] The edited models are sufficiently documented.
- [X] The edited models contain PK tests, and I've ran and passed them.
- [ ] I have checked for DRY opportunities with other models and docs.
- [ ] I've picked the right materialization for the affected models.

# Other

- [ ] Check if a full-refresh is required after this PR is merged.

Related work items: #28987
This commit is contained in:
Oriol Roqué Paniagua 2025-04-04 08:40:38 +00:00
parent 0cec376e49
commit 0bf8cac41a
4 changed files with 15 additions and 1 deletions

View file

@ -23,6 +23,7 @@ select
d.amount_of_properties,
d.last_contacted_date_utc,
d.amount_times_contacted,
d.integration_type,
d.dashboard_type,
d.pricing_structure,
d.partnership_services,

View file

@ -80,6 +80,12 @@ models:
data_type: integer
description: Amount of times the account has been contacted
- name: integration_type
data_type: text
description: |
The type of integration that the customer has, such as OSL,
PMS, etc. It can be null.
- name: dashboard_type
data_type: text
description: |