Skip to content

Commit

Permalink
Merge pull request #114 from fivetran/feature/hubspotv3-api-update-new
Browse files Browse the repository at this point in the history
Feature/hubspotv3 api update new
  • Loading branch information
fivetran-joemarkiewicz authored Jul 25, 2023
2 parents b36919d + faf69f6 commit 00a9eb0
Show file tree
Hide file tree
Showing 23 changed files with 95 additions and 997 deletions.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
# dbt_hubspot v0.11.0
[PR #114](https://github.com/fivetran/dbt_hubspot/pull/114) includes the following updates:
## 🚨 Breaking Changes 🚨
This change is made breaking in part to updates applied to the upstream [dbt_hubspot_source](https://github.com/fivetran/dbt_hubspot_source/pull/112) package following upgrades to ensure compatibility with the HubSpot v3 API updates. Please see below for the relevant upstream changes:

- Following the [May 2023 connector update](https://fivetran.com/docs/applications/hubspot/changelog#may2023) the HubSpot connector now syncs the below parent and child tables from the new v3 API. As a result the dependent fields and field names from the downstream staging models have changed depending on the fields available in your HubSpot data. Now the respective staging models will sync the required fields for the dbt_hubspot downstream transformations and **all** of your `property_hs_*` fields. Please be aware that the `property_hs_*` will be truncated from the field name in the staging and downstream models. The impacted sources (and relevant staging models) are below:
```txt
- `ENGAGEMENT`
- `ENGAGEMENT_CALL`
- `ENGAGEMENT_COMPANY`
- `ENGAGEMENT_CONTACT`
- `ENGAGEMENT_DEAL`
- `ENGAGEMENT_EMAIL`
- `ENGAGEMENT_MEETING`
- `ENGAGEMENT_NOTE`
- `ENGAGEMENT_TASK`
- `TICKET`
- `TICKET_COMPANY`
- `TICKET_CONTACT`
- `TICKET_DEAL`
- `TICKET_ENGAGEMENT`
- `TICKET_PROPERTY_HISTORY`
```
- Please note that while these changes are breaking, the package has been updated to ensure backwards compatibility with the pre HubSpot v3 API updates. As a result, you may see some `null` fields which are artifacts of the pre v3 API HubSpot version. Be sure to inspect the relevant field descriptions for an understanding of which fields remain for backwards compatibility purposes. These fields will be removed once all HubSpot connectors are upgraded to the v3 API.

- The `engagements_joined` macro has been adjusted to account for the HubSpot v3 API changes. In particular, the fields that used to only be available in the `engagements` source are now available in the individual `engagement_[type]` sources. As such, coalesce statements were added to ensure the correct populated fields are used following the join. Further, to avoid ambiguous columns a `dbt-utils.star` was added to remove the explicitly declared columns within the coalesce statements.
- The coalesce is only included for backwards compatibility. This will be removed in a future release when all HubSpot connectors are on the latest API version.

## Under the Hood
- The `base_model` argument used for the `engagements_joined` macro has been updated to be an explicit `ref` as opposed to the previously used `var` within the below models:
- `hubspot__engagement_calls`
- `hubspot__engagement_emails`
- `hubspot__engagement_meetings`
- `hubspot__engagement_notes`
- `hubspot__engagement_tasks`
- This update was applied as the `var` result was producing inconsistent results during compile and runtime when leveraging the `dbt-utils.star` macro. However, the explicit `ref` always provided consistent results.

## Documentation Updates
- As new fields were added in the v3 API updates, and old fields were removed, the documentation was updated to reflect the v3 API consistent fields. Please take note if you are still using the pre v3 API, you will find the following end models no longer have complete field documentation coverage:
- `hubspot__engagement_calls`
- `hubspot__engagement_emails`
- `hubspot__engagement_meetings`
- `hubspot__engagement_notes`
- `hubspot__engagement_tasks`
# dbt_hubspot v0.10.1

## 🪲 Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Include the following hubspot package version in your `packages.yml` file:
```yaml
packages:
- package: fivetran/hubspot
version: [">=0.10.0", "<0.11.0"] # we recommend using ranges to capture non-breaking changes automatically
version: [">=0.11.0", "<0.12.0"] # we recommend using ranges to capture non-breaking changes automatically
```
Do **NOT** include the `hubspot_source` package in this file. The transformation package itself has a dependency on it and will install the source package as well.
Expand Down Expand Up @@ -246,7 +246,7 @@ This dbt package is dependent on the following dbt packages. Please be aware tha
```yml
packages:
- package: fivetran/hubspot_source
version: [">=0.10.0", "<0.11.0"]
version: [">=0.11.0", "<0.12.0"]
- package: fivetran/fivetran_utils
version: [">=0.4.0", "<0.5.0"]
Expand Down
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'hubspot'
version: '0.10.1'
version: '0.11.0'

config-version: 2
require-dbt-version: [">=1.3.0", "<2.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion docs/catalog.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/manifest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/run_results.json

Large diffs are not rendered by default.

20 changes: 17 additions & 3 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'hubspot_integration_tests'
version: '0.10.1'
version: '0.11.0'

profile: 'integration_tests'
config-version: 2
Expand Down Expand Up @@ -85,6 +85,9 @@ seeds:
engagement_call_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
_fivetran_synced: timestamp
property_hs_createdate: timestamp
property_hs_timestamp: timestamp
engagement_company_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
Expand All @@ -100,21 +103,32 @@ seeds:
engagement_data:
+column_types:
id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
created_at: timestamp
engagement_meeting_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
_fivetran_synced: timestamp
property_hs_createdate: timestamp
property_hs_timestamp: timestamp
engagement_email_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
_fivetran_synced: timestamp
email_send_event_id_created: timestamp
property_hs_createdate: timestamp
property_hs_timestamp: timestamp
engagement_task_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
completion_date: "{{ 'varchar(100)' if target.type in ('redshift','postgres') else 'string'}}"
property_hs_object_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
_fivetran_synced: timestamp
property_hs_createdate: timestamp
property_hs_timestamp: timestamp
engagement_note_data:
+column_types:
engagement_id: "{{ 'int64' if target.type == 'bigquery' else 'bigint' }}"
_fivetran_synced: timestamp
property_hs_createdate: timestamp
property_hs_timestamp: timestamp
deal_pipeline_data:
+column_types:
pipeline_id: "{{ 'varchar(100)' if target.type in ('redshift','postgres') else 'string'}}"
Expand Down
103 changes: 2 additions & 101 deletions integration_tests/seeds/engagement_call_data.csv
Original file line number Diff line number Diff line change
@@ -1,101 +1,2 @@
engagement_id,_fivetran_synced,callee_object_id,callee_object_type,disposition,duration_milliseconds,external_account_id,external_id,from_number,recording_url,status,to_number,transcription_id,unknown_visitor_conversation,body
6811510040,2020-07-09 11:10:52.675,,,,0,,,,,,,,,Q33P5F1uBkU2NBi1QZ7ryQ==
7696290106,2020-07-09 11:11:56.288,,,,0,,,,,,,,,zmZ5LKDdy/A9Y7Orimlvaw==
7539392513,2020-07-09 11:11:46.459,,,,0,,,,,,,,,O15XmCOg6TSfZdov9jO6tw==
7780093433,2020-07-09 11:12:00.200,,,17b47fee-58de-441e-a44c-c6300d46f273,0,,,,,,,,,VkAI7BgUifKhUpPbkkHYJg==
7625150584,2020-07-09 11:11:52.155,,,17b47fee-58de-441e-a44c-c6300d46f273,0,,,,,,,,,Ocy6yaDjcrtx0ij1EcmA2A==
7665793858,2020-07-09 11:11:54.058,,,17b47fee-58de-441e-a44c-c6300d46f273,0,,,,,,,,,C7U9mFuAvN1RGXwq3btV5w==
7683186860,2020-07-09 11:11:55.567,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,T7MQM4ubwTtXYN5N7w2h2A==
5967701401,2020-07-09 11:10:11.321,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,uDi1ZZFbhdko+8nU7BtzDQ==
7683091065,2020-07-09 11:11:55.566,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,8VsL0Vn2GBe4zZL1yx7P5g==
7699704661,2020-07-09 11:11:56.890,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,EVBc2Ex98Y/yRlmboFxwzQ==
6324822405,2020-07-09 11:10:30.838,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,uDi1ZZFbhdko+8nU7BtzDQ==
6283488561,2020-07-09 11:10:28.383,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,NplcPwZ9ccTCJwFzhZScQA==
6984601444,2020-07-09 11:11:01.401,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,Y1574f4vFgdZqCcul76F7g==
6316595305,2020-07-09 11:10:29.851,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,v5y8832hxwycugPI/9gDQw==
5683394854,2020-07-09 11:09:49.509,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,HzrUMl5wRywM0Xi5+pcqTw==
5864463410,2020-07-09 11:10:03.242,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,jI/Rh1ktdSiyzCy6Zy9cTg==
7506345298,2020-07-09 11:11:44.692,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,EVBc2Ex98Y/yRlmboFxwzQ==
5882855980,2020-07-09 11:10:04.898,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,4e2u6O2rMNHGM6XPFcAX2w==
5826374435,2020-07-09 11:09:58.017,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,XC+JsXkgo1ZY87nkoRrW1A==
7012692897,2020-07-09 11:11:02.997,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,PKxFi9GoIaWoAx7vFRjgEQ==
6274904410,2020-07-09 11:10:28.361,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,+D3L4YAyvq3UnGQHhmTpWg==
6533190515,2020-07-09 11:10:39.974,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,E7JrFioGEEgAGoga+ykN5g==
6612215795,2020-07-09 11:10:41.982,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,IjwKYAhav3Pt37tp64eirw==
6274277954,2020-07-09 11:10:27.625,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,7KxSb8AqUorXAL8IeNTjqA==
7404915744,2020-07-09 11:11:39.173,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,stafTBD2kqukC/aurOf9IA==
7733776420,2020-07-09 11:11:57.657,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,+r0EMNB7/whY2+FShvQBHQ==
7393284851,2020-07-09 11:11:38,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,oxik1fcNLqTHScgKAK8jeQ==
6535846885,2020-07-09 11:10:39.986,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,q92L+kpj2qgYH8DWmq/x5g==
6178707955,2020-07-09 11:10:22.821,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,lxOa757P6kxsZe/qym52fw==
5902772478,2020-07-09 11:10:06.918,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,5EjfC5PSu3z0myZHDogtdA==
6612496982,2020-07-09 11:10:41.986,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,IjwKYAhav3Pt37tp64eirw==
6180910285,2020-07-09 11:10:22.831,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,T9QhviMn93swFOtPpo5rdw==
6277145521,2020-07-09 11:10:28.367,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,7KxSb8AqUorXAL8IeNTjqA==
7145731416,2020-07-09 11:11:13.504,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,yBEw0ey4DtogklB6nykzWg==
6147378317,2020-07-09 11:10:21.810,,,b2cf5968-551e-4856-9783-52b3da59a7d0,0,,,,,,,,,vviS8SQIZXYBazL6ICpJNg==
7316496324,2020-07-09 11:11:30.975,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,Rs9Ss6RKjJWwKvjOo1YDZQ==
7424473173,2020-07-09 11:11:39.766,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,jVh/gJBu8wnZjzQKXwe3wA==
5682256971,2020-07-09 11:09:49.508,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,/L3yezokvSMszceXhd48lg==
6370996588,2020-07-09 11:10:32.911,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,+tX8jcfPm4fwzG9FX5aq0g==
6461063679,2020-07-09 11:10:37.874,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,33UaH9oeMatXBIYxthVm0A==
7555126782,2020-07-09 11:11:47.237,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,TutxCKULDGtcu4f4Qgw5Cw==
6934768550,2020-07-09 11:10:57.479,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,gRidcwecR/Y+ooEPx00/zQ==
5749186397,2020-07-09 11:09:52.310,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,zdJaGVQLlDjWFbxno9rzYQ==
7114947227,2020-07-09 11:11:11.958,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,anhDIVXDFq7mLk+ZjDaOSQ==
6877116704,2020-07-09 11:10:55.514,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,5lzxGuP3AZHPXI+aIv4gjQ==
7642838131,2020-07-09 11:11:53.416,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,ZEWfoAeGS+y+jW0Dit0ssw==
5754949172,2020-07-09 11:09:53.110,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,NkSZY0IR0H/9AvR5EsIQ7w==
6951111984,2020-07-09 11:10:58.242,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,19qeKVi5XY2gaB6DlWd3pw==
6910810607,2020-07-09 11:10:56.590,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,HckM5Umj78BWttF+tcA3yQ==
6729993004,2020-07-09 11:10:48.455,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,F2oSxx9v5r/ZAfZ+eicO1g==
5679474950,2020-07-09 11:09:48.293,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,cfVEYoNYeFxHwNTuKBWrlg==
5728184072,2020-07-09 11:09:51.353,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,en3395bF+4xkdSvEiTVFcw==
7091025422,2020-07-09 11:11:11.191,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,hAay22I+wbq6SL1XAn0aYQ==
6612740259,2020-07-09 11:10:41.987,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,qTu0Rp7uiMTjuss9tLIoQg==
6181885512,2020-07-09 11:10:24.153,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,hsEm/1GxpZdgfQ30ihYiMA==
7084735945,2020-07-09 11:11:10.059,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,KqF9Ch+dtpIJVyzpE+8MvQ==
6889782754,2020-07-09 11:10:55.522,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,AreFKdnnY/wOy29uohZUSw==
5902301822,2020-07-09 11:10:05.643,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,y5Ly8QJ1FcZaYHb1hLFeAg==
7102866465,2020-07-09 11:11:11.206,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,yKLSKx1fd/qszdJwpzT35Q==
6219686694,2020-07-09 11:10:24.930,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,WPesso9iMqhubEKelW9m1w==
5832881536,2020-07-09 11:09:59.180,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,7Ys3KOv2ypzxfYJEQmHtkA==
7223226216,2020-07-09 11:11:23.117,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,nKbv+Fz6eIGuoZc+Uq3ZXA==
6433570958,2020-07-09 11:10:36.253,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,AcUB3hWHAcFXWbhxwFyU/g==
6720666840,2020-07-09 11:10:48.436,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,vXW2d9phQUshQpuCtQWw5A==
7808508249,2020-07-09 13:40:40.969,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,KS99eSC9yrUcWHR3xPbmaw==
5879200155,2020-07-09 11:10:03.852,,,f240bbac-87c9-4f6e-bf70-924b57d47db7,0,,,,,,,,,v2wKFyglR1FctWx+RmX/TA==
7539138320,2020-07-09 11:11:46.454,,,,0,,,,,,,,,frNy5yklGZm4gcenRiptmw==
7609286514,2020-07-09 11:11:51.620,,,,0,,,,,,,,,f8imzKZtfIgzKB2ahG8svA==
7665626076,2020-07-09 11:11:54.057,,,17b47fee-58de-441e-a44c-c6300d46f273,0,,,,,,,,,C7U9mFuAvN1RGXwq3btV5w==
6492185698,2020-07-09 11:10:38.512,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,8vOKwOper1oc/lm/dwyMIA==
5906692754,2020-07-09 11:10:07.803,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,deNqQED/oQb8+MKilDcvig==
6112065255,2020-07-09 11:10:20.063,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,uDi1ZZFbhdko+8nU7BtzDQ==
6368001744,2020-07-09 11:10:32.899,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,ysW2jWd6xxn+ED4pe71HyA==
6043718904,2020-07-09 11:10:17.986,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,cJTlt+ljHesVHhXBrlEPew==
7222473001,2020-07-09 11:11:23.113,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,3ZVEyQkvHLEUAjVCp12TDw==
6131897623,2020-07-09 11:10:20.970,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,SM4VnU5KuyS5Y0PwK/HUMw==
7090873818,2020-07-09 11:11:11.191,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,deNqQED/oQb8+MKilDcvig==
5840563838,2020-07-09 11:10:02.031,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,Y4NXcxxw6Uep4LaV0k68hw==
7016345022,2020-07-09 11:11:03.706,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,304bK2YTOmnIAmO8zpxyUQ==
6508042187,2020-07-09 11:10:39.352,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,+fF73An5KNk9huUUuhwGCw==
6574634598,2020-07-09 11:10:40.659,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,3ZVEyQkvHLEUAjVCp12TDw==
5944293270,2020-07-09 11:10:10.405,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,cR8+Uj4rCstkquV6MB+8WQ==
5890677276,2020-07-09 11:10:05.613,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,8GhDXoWISlxcqehSKmvvdQ==
7016287861,2020-07-09 11:11:03.003,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,8vOKwOper1oc/lm/dwyMIA==
7793632205,2020-07-09 11:12:00.731,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,Xli+4Dgjts0kHAGQMHA8gw==
7168748941,2020-07-09 11:11:16.948,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,eL8rxJCt8g8+4JdaRbaOvw==
7343625005,2020-07-09 11:11:33.189,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,5pQYA/NZ8M0OK6GL6Ev3EQ==
5838733431,2020-07-09 11:10:01.118,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,M6PjAlvGCpaw4h2JQqY44Q==
7578990830,2020-07-09 11:11:48.903,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,8meTOM/bCgU5u/szV/NH3g==
5766771897,2020-07-09 11:09:53.788,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,J4mSskWKdIl6+3xYJj/eDg==
7730319659,2020-07-09 11:11:57.656,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,c+16b2KE0WSl4QqEiqAPhQ==
6972360792,2020-07-09 11:11:00.739,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,6BCPMAL5fSJJmcVHip2RUQ==
7696001853,2020-07-09 11:11:56.286,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,EVBc2Ex98Y/yRlmboFxwzQ==
6441131983,2020-07-09 11:10:37.220,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,Qw2+ecMQP20hX8fWZ2w0Pg==
6154421450,2020-07-09 11:10:21.824,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,SM4VnU5KuyS5Y0PwK/HUMw==
7329160783,2020-07-09 11:11:31.916,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,EVBc2Ex98Y/yRlmboFxwzQ==
6180908772,2020-07-09 11:10:22.831,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,nQBLKPjKB0hhoQixsWpcUw==
6131686847,2020-07-09 11:10:20.966,,,73a0d17f-1163-4015-bdd5-ec830791da20,0,,,,,,,,,dinxjuKL3prw9AL/XQdoxg==
7222098979,2020-07-09 11:11:23.112,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,upx+K+xn0mwPQF6z3SkoDg==
7443231399,2020-07-09 11:11:41.703,,,9d9162e7-6cf3-4944-bf63-4dff82258764,0,,,,,,,,,OhV8ZK3ucrkputuyI3fmKA==
engagement_id,_fivetran_deleted,_fivetran_synced,property_hs_createdate,property_hs_timestamp,type
19732910159,false,2023-06-08 23:22:50.048000,2022-03-01 19:43:05.526000,2014-08-27 20:50:44.778000,CALL
Loading

0 comments on commit 00a9eb0

Please sign in to comment.