From 2748d63dce4b2deaa7374839e2c9703bed47c1fe Mon Sep 17 00:00:00 2001 From: Khaliq Date: Wed, 2 Oct 2024 22:30:57 +0300 Subject: [PATCH 1/4] deals groundwork --- flows.yaml | 85 +- integrations/hubspot/actions/create-deal.ts | 13 + .../hubspot/actions/fetch-properties.ts | 19 + .../hubspot/fixtures/create-deal.json | 5 + .../hubspot/fixtures/fetch-properties.json | 3 + .../hubspot/mocks/create-deal/input.json | 5 + .../hubspot/mocks/create-deal/output.json | 27 + .../hubspot/mocks/fetch-properties/input.json | 3 + .../v3/properties/deals/fetch-properties.json | 4896 +++++++++++++++++ .../crm/v3/objects/deals/create-deal.json | 27 + integrations/hubspot/nango.yaml | 85 +- .../hubspot/tests/hubspot-contacts.test.ts | 53 + .../hubspot/tests/hubspot-create-deal.test.ts | 19 + .../tests/hubspot-fetch-properties.test.ts | 19 + .../tests/hubspot-knowledge-base.test.ts | 53 + .../hubspot/tests/hubspot-owners.test.ts | 53 + .../tests/hubspot-service-tickets.test.ts | 53 + .../hubspot/tests/hubspot-users.test.ts | 53 + .../slack/tests/slack-messages.test.ts | 53 + package-lock.json | 1072 ++-- package.json | 2 +- 21 files changed, 6092 insertions(+), 506 deletions(-) create mode 100644 integrations/hubspot/actions/create-deal.ts create mode 100644 integrations/hubspot/actions/fetch-properties.ts create mode 100644 integrations/hubspot/fixtures/create-deal.json create mode 100644 integrations/hubspot/fixtures/fetch-properties.json create mode 100644 integrations/hubspot/mocks/create-deal/input.json create mode 100644 integrations/hubspot/mocks/create-deal/output.json create mode 100644 integrations/hubspot/mocks/fetch-properties/input.json create mode 100644 integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json create mode 100644 integrations/hubspot/mocks/nango/post/proxy/crm/v3/objects/deals/create-deal.json create mode 100644 integrations/hubspot/tests/hubspot-contacts.test.ts create mode 100644 integrations/hubspot/tests/hubspot-create-deal.test.ts create mode 100644 integrations/hubspot/tests/hubspot-fetch-properties.test.ts create mode 100644 integrations/hubspot/tests/hubspot-knowledge-base.test.ts create mode 100644 integrations/hubspot/tests/hubspot-owners.test.ts create mode 100644 integrations/hubspot/tests/hubspot-service-tickets.test.ts create mode 100644 integrations/hubspot/tests/hubspot-users.test.ts create mode 100644 integrations/slack/tests/slack-messages.test.ts diff --git a/flows.yaml b/flows.yaml index ad640210..17f513d3 100644 --- a/flows.yaml +++ b/flows.yaml @@ -2341,36 +2341,81 @@ integrations: Fetches a list of service tickets from Hubspot output: HubspotServiceTicket sync_type: incremental - endpoint: GET /hubspot/service-tickets + endpoint: GET /service-tickets contacts: runs: every day description: | Fetches a list of contacts from Hubspot output: HubspotContact sync_type: full - endpoint: GET /hubspot/contacts + endpoint: GET /contacts owners: runs: every day description: | Fetches a list of owners from Hubspot output: HubspotOwner sync_type: full - endpoint: GET /hubspot/owner + endpoint: GET /owners users: runs: every day description: | Fetches a list of users from Hubspot output: HubspotUser sync_type: full - endpoint: GET /hubspot/user + endpoint: GET /users knowledge-base: runs: every day description: | Fetches a list of knowledge base from Hubspot output: HubspotKnowledgeBase sync_type: full - endpoint: GET /hubspot/knowledge-base + endpoint: GET /knowledge-base + actions: + fetch-properties: + description: Fetch the properties of a specified object + input: InputProperty + output: PropertyResponse + endpoint: GET /properties + create-deal: + description: Creates a deal in Hubspot + output: CreatedDeal + endpoint: POST /deals + input: CreateDeal + scopes: + - crm.objects.deals.write models: + InputProperty: + name: string + PropertyResponse: + result: Property + Property: + updatedAt: string + createdAt: string + name: string + label: string + type: string + fieldType: string + description: string + groupName: string + options: Option[], + displayOrder: number + calculated: boolean + externalOptions: boolean + hasUniqueValue: boolean + hidden: boolean + hubspotDefined: boolean + showCurrencySymbol: boolean + modificationMetadata: + archivable: boolean + readOnlyDefinition: boolean + readOnlyValue: boolean + formField: boolean + dataSensitivity: string + Option: + label: string + value: string + displayOrder: number + hidden: boolean HubspotServiceTicket: id: integer createdAt: date @@ -2413,6 +2458,36 @@ integrations: first_name: string last_name: string email: string + CreateDeal: + properties: + dealname: string + __string: any + DealDefaultProperties: + createdate: string + days_to_close: string + dealname: string + hs_closed_amount: string + hs_closed_amount_in_home_currency: string + hs_closed_won_count: string + hs_createdate: string + hs_days_to_close_raw: string + hs_deal_stage_probability_shadow: string + hs_is_closed_lost: string + hs_is_closed_won: string + hs_is_deal_split: string + hs_lastmodifieddate: string + hs_object_id: string + hs_object_source: string + hs_object_source_id: string + hs_object_source_label: string + hs_projected_amount: string + hs_projected_amount_in_home_currency: string + CreatedDeal: + id: string + properties: DealDefaultProperties + createdAt: string + updatedAt: string + archived: boolean instantly: actions: set-campaign-name: diff --git a/integrations/hubspot/actions/create-deal.ts b/integrations/hubspot/actions/create-deal.ts new file mode 100644 index 00000000..5f72845b --- /dev/null +++ b/integrations/hubspot/actions/create-deal.ts @@ -0,0 +1,13 @@ +import type { NangoAction, ProxyConfiguration, CreateDeal, CreatedDeal } from '../../models'; + +export default async function runAction(nango: NangoAction, input: CreateDeal): Promise { + const config: ProxyConfiguration = { + // https://developers.hubspot.com/docs/api/crm/deals + endpoint: 'crm/v3/objects/deals', + data: input, + retries: 10 + }; + const response = await nango.post(config); + + return response.data; +} diff --git a/integrations/hubspot/actions/fetch-properties.ts b/integrations/hubspot/actions/fetch-properties.ts new file mode 100644 index 00000000..1ffa49e5 --- /dev/null +++ b/integrations/hubspot/actions/fetch-properties.ts @@ -0,0 +1,19 @@ +import type { NangoAction, ProxyConfiguration, PropertyResponse, InputProperty } from '../../models'; + +export default async function runAction(nango: NangoAction, input: InputProperty): Promise { + if (!input.name) { + throw new nango.ActionError({ + message: 'An object name must be passed in to look up the properties' + }); + } + + const config: ProxyConfiguration = { + // https://developers.hubspot.com/docs/api/crm/deals + endpoint: `crm/v3/properties/${input.name}`, + retries: 10 + }; + const response = await nango.get(config); + + return response.data +} + diff --git a/integrations/hubspot/fixtures/create-deal.json b/integrations/hubspot/fixtures/create-deal.json new file mode 100644 index 00000000..eec2f555 --- /dev/null +++ b/integrations/hubspot/fixtures/create-deal.json @@ -0,0 +1,5 @@ +{ + "properties": { + "dealname": "Test deal 1" + } +} diff --git a/integrations/hubspot/fixtures/fetch-properties.json b/integrations/hubspot/fixtures/fetch-properties.json new file mode 100644 index 00000000..d1ca3a89 --- /dev/null +++ b/integrations/hubspot/fixtures/fetch-properties.json @@ -0,0 +1,3 @@ +{ + "name": "deals" +} diff --git a/integrations/hubspot/mocks/create-deal/input.json b/integrations/hubspot/mocks/create-deal/input.json new file mode 100644 index 00000000..eec2f555 --- /dev/null +++ b/integrations/hubspot/mocks/create-deal/input.json @@ -0,0 +1,5 @@ +{ + "properties": { + "dealname": "Test deal 1" + } +} diff --git a/integrations/hubspot/mocks/create-deal/output.json b/integrations/hubspot/mocks/create-deal/output.json new file mode 100644 index 00000000..01ed7aec --- /dev/null +++ b/integrations/hubspot/mocks/create-deal/output.json @@ -0,0 +1,27 @@ +{ + "id": "20858667708", + "properties": { + "createdate": "2024-10-02T19:29:34.520Z", + "days_to_close": "0", + "dealname": "Test deal 1", + "hs_closed_amount": "0", + "hs_closed_amount_in_home_currency": "0", + "hs_closed_won_count": "0", + "hs_createdate": "2024-10-02T19:29:34.520Z", + "hs_days_to_close_raw": "0", + "hs_deal_stage_probability_shadow": "0", + "hs_is_closed_lost": "false", + "hs_is_closed_won": "false", + "hs_is_deal_split": "false", + "hs_lastmodifieddate": "2024-10-02T19:29:34.520Z", + "hs_object_id": "20858667708", + "hs_object_source": "INTEGRATION", + "hs_object_source_id": "3997414", + "hs_object_source_label": "INTEGRATION", + "hs_projected_amount": "0", + "hs_projected_amount_in_home_currency": "0" + }, + "createdAt": "2024-10-02T19:29:34.520Z", + "updatedAt": "2024-10-02T19:29:34.520Z", + "archived": false +} diff --git a/integrations/hubspot/mocks/fetch-properties/input.json b/integrations/hubspot/mocks/fetch-properties/input.json new file mode 100644 index 00000000..d1ca3a89 --- /dev/null +++ b/integrations/hubspot/mocks/fetch-properties/input.json @@ -0,0 +1,3 @@ +{ + "name": "deals" +} diff --git a/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json b/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json new file mode 100644 index 00000000..4bfa78db --- /dev/null +++ b/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json @@ -0,0 +1,4896 @@ +{ + "results": [ + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.293Z", + "name": "amount", + "label": "Amount", + "type": "number", + "fieldType": "number", + "description": "The total amount of the deal", + "groupName": "deal_revenue", + "options": [], + "displayOrder": 2, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2023-11-29T14:53:06.636Z", + "name": "amount_in_home_currency", + "label": "Amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "The amount of the deal, using the exchange rate, in your company's currency", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.315Z", + "name": "closed_lost_reason", + "label": "Closed Lost Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was lost", + "groupName": "deal_activity", + "options": [], + "displayOrder": 11, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2020-06-30T15:57:38.269Z", + "name": "closed_won_reason", + "label": "Closed Won Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was won", + "groupName": "deal_activity", + "options": [], + "displayOrder": 12, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.500Z", + "name": "closedate", + "label": "Close Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was closed. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 5, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-12T20:49:12.385Z", + "createdAt": "2020-06-30T15:57:38.305Z", + "name": "createdate", + "label": "Create Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-22T18:11:17.355Z", + "createdAt": "2019-08-06T02:41:52.984Z", + "name": "days_to_close", + "label": "Days to close", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "max(0, round_down(((closedate - createdate) / 86400000), 0))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2020-06-30T15:57:38.478Z", + "name": "deal_currency_code", + "label": "Currency", + "type": "enumeration", + "fieldType": "select", + "description": "Currency code for the deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2019-08-06T02:41:52.132Z", + "name": "dealname", + "label": "Deal Name", + "type": "string", + "fieldType": "text", + "description": "The name given to this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 0, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.180Z", + "name": "dealstage", + "label": "Deal Stage", + "type": "enumeration", + "fieldType": "radio", + "description": "The stage of the deal. Deal stages allow you to categorize and track the progress of the deals that you are working on.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 3, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-08-06T02:41:52.542Z", + "name": "dealtype", + "label": "Deal Type", + "type": "enumeration", + "fieldType": "radio", + "description": "The type of deal. By default, categorize your deal as either a New Business or Existing Business.", + "groupName": "dealinformation", + "options": [ + { + "label": "New Business", + "value": "newbusiness", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Existing Business", + "value": "existingbusiness", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": 8, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:58:22.852Z", + "createdAt": "2019-08-06T02:41:52.595Z", + "name": "description", + "label": "Deal Description", + "type": "string", + "fieldType": "textarea", + "description": "Description of the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:57:32.710Z", + "createdAt": "2020-06-30T15:57:38.391Z", + "name": "engagements_last_meeting_booked", + "label": "Date of last meeting booked in meetings tool", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting an associated contact has booked through the meetings tool.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.202Z", + "name": "engagements_last_meeting_booked_campaign", + "label": "Campaign of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which marketing campaign (e.g. a specific email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.512Z", + "name": "engagements_last_meeting_booked_medium", + "label": "Medium of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which channel (e.g. email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.235Z", + "name": "engagements_last_meeting_booked_source", + "label": "Source of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which site (e.g. Twitter) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link. ", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-03T15:10:48.521Z", + "createdAt": "2020-06-30T15:57:38.357Z", + "name": "hs_acv", + "label": "Annual contract value", + "type": "number", + "fieldType": "number", + "description": "The annual contract value (ACV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.903Z", + "name": "hs_all_accessible_team_ids", + "label": "All teams", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs, including the team hierarchy, of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-12T14:52:22.589Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_all_assigned_business_unit_ids", + "label": "Business units", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The business units this record is assigned to.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-15T18:53:29.419Z", + "createdAt": "2022-05-02T19:41:37.305Z", + "name": "hs_all_collaborator_owner_ids", + "label": "Deal Collaborator", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Owner ids of the users involved in closing the deal", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2021-11-23T15:31:07.889Z", + "name": "hs_all_deal_split_owner_ids", + "label": "Deal Split Users", + "type": "enumeration", + "fieldType": "select", + "description": "The owner ids of all associated Deal Splits. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.824Z", + "name": "hs_all_owner_ids", + "label": "All owner IDs", + "type": "enumeration", + "fieldType": "select", + "description": "Values of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 8, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.865Z", + "name": "hs_all_team_ids", + "label": "All team IDs", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:22:23.694Z", + "name": "hs_analytics_latest_source", + "label": "Latest Source", + "type": "enumeration", + "fieldType": "number", + "description": "Source for the contact either directly or indirectly associated with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_contact) else string(hs_analytics_latest_source_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:06:22.930Z", + "name": "hs_analytics_latest_source_company", + "label": "Latest Source Company", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the company with an associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:03:52.928Z", + "name": "hs_analytics_latest_source_contact", + "label": "Latest Source Contact", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the directly associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:25:58.108Z", + "name": "hs_analytics_latest_source_data_1", + "label": "Latest Source Data 1", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_1_contact) else string(hs_analytics_latest_source_data_1_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:10:23.992Z", + "name": "hs_analytics_latest_source_data_1_company", + "label": "Latest Source Data 1 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal (via a company association)", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:09:39.907Z", + "name": "hs_analytics_latest_source_data_1_contact", + "label": "Latest Source Data 1 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:26:53.632Z", + "name": "hs_analytics_latest_source_data_2", + "label": "Latest Source Data 2", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_2_contact) else string(hs_analytics_latest_source_data_2_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:13:35.323Z", + "name": "hs_analytics_latest_source_data_2_company", + "label": "Latest Source Data 2 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:12:11.033Z", + "name": "hs_analytics_latest_source_data_2_contact", + "label": "Latest Source Data 2 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:28:22.477Z", + "name": "hs_analytics_latest_source_timestamp", + "label": "Latest Source Timestamp", + "type": "datetime", + "fieldType": "number", + "description": "Timestamp of when latest source occurred for either a directly or indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then hs_analytics_latest_source_timestamp_contact else hs_analytics_latest_source_timestamp_company", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-05T21:43:47.114Z", + "createdAt": "2022-05-02T21:23:31.015Z", + "name": "hs_analytics_latest_source_timestamp_company", + "label": "Latest Source Timestamp Company", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for an indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:16:19.566Z", + "name": "hs_analytics_latest_source_timestamp_contact", + "label": "Latest Source Timestamp Contact", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for a directly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:08:57.187Z", + "createdAt": "2019-08-06T02:41:53.038Z", + "name": "hs_analytics_source", + "label": "Original Source", + "type": "enumeration", + "fieldType": "select", + "description": "Original source for the contact with the earliest activity for this deal.", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:09:38.600Z", + "createdAt": "2019-08-06T02:41:53.115Z", + "name": "hs_analytics_source_data_1", + "label": "Original Source Drill-Down 1", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:03:42.294Z", + "createdAt": "2019-08-06T02:41:53.170Z", + "name": "hs_analytics_source_data_2", + "label": "Original Source Drill-Down 2", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:55:02.326Z", + "createdAt": "2020-06-30T15:57:38.247Z", + "name": "hs_arr", + "label": "Annual recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The annual recurring revenue (ARR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2019-08-06T02:41:53.315Z", + "name": "hs_campaign", + "label": "HubSpot Campaign", + "type": "string", + "fieldType": "text", + "description": "The marketing campaign the deal is associated with", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2019-10-14T20:45:57.018Z", + "name": "hs_closed_amount", + "label": "Closed Deal Amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-10-14T20:45:57.070Z", + "name": "hs_closed_amount_in_home_currency", + "label": "Closed Deal Amount In Home Currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount in home currency if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount_in_home_currency else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-19T00:55:26.343Z", + "createdAt": "2024-06-19T00:55:26.343Z", + "name": "hs_closed_deal_close_date", + "label": "Closed Deal Close Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Close date populated only if this deal is closed and valid", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(closedate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-17T13:06:21.303Z", + "createdAt": "2024-06-17T13:06:21.303Z", + "name": "hs_closed_deal_create_date", + "label": "Closed Deal Create Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is closed", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(createdate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-16T20:21:20.155Z", + "name": "hs_closed_won_count", + "label": "Is Closed Won (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed won, otherwise 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-18T17:56:28.363Z", + "name": "hs_closed_won_date", + "label": "Closed Won Date (Internal)", + "type": "datetime", + "fieldType": "date", + "description": "Returns closedate if this deal is closed won", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then closedate endif", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:51:11.435Z", + "name": "hs_created_by_user_id", + "label": "Created by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who created this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:56:18.537Z", + "createdAt": "2019-08-06T02:41:52.503Z", + "name": "hs_createdate", + "label": "HubSpot Create Date", + "type": "datetime", + "fieldType": "date", + "description": "The date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:42:41.452Z", + "name": "hs_date_entered_appointmentscheduled", + "label": "Date entered 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:30.382Z", + "name": "hs_date_entered_closedlost", + "label": "Date entered 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:13.551Z", + "name": "hs_date_entered_closedwon", + "label": "Date entered 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:57.538Z", + "name": "hs_date_entered_contractsent", + "label": "Date entered 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:41.289Z", + "name": "hs_date_entered_decisionmakerboughtin", + "label": "Date entered 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:26.610Z", + "name": "hs_date_entered_presentationscheduled", + "label": "Date entered 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:10.231Z", + "name": "hs_date_entered_qualifiedtobuy", + "label": "Date entered 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:42:49.082Z", + "name": "hs_date_exited_appointmentscheduled", + "label": "Date exited 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:38.966Z", + "name": "hs_date_exited_closedlost", + "label": "Date exited 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:18.739Z", + "name": "hs_date_exited_closedwon", + "label": "Date exited 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:02.815Z", + "name": "hs_date_exited_contractsent", + "label": "Date exited 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:46.148Z", + "name": "hs_date_exited_decisionmakerboughtin", + "label": "Date exited 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:31.307Z", + "name": "hs_date_exited_presentationscheduled", + "label": "Date exited 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:15.688Z", + "name": "hs_date_exited_qualifiedtobuy", + "label": "Date exited 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-07T15:27:11.457Z", + "createdAt": "2023-08-07T15:27:11.457Z", + "name": "hs_days_to_close_raw", + "label": "Days to close (without rounding)", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close, without rounding", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(max(0, (closedate - createdate)) / 86400000)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-08-06T02:41:53.235Z", + "name": "hs_deal_amount_calculation_preference", + "label": "Deal amount calculation preference", + "type": "enumeration", + "fieldType": "radio", + "description": "Specifies how deal amount should be calculated from line items", + "groupName": "dealinformation", + "options": [ + { + "label": "Total Contract Value", + "value": "TCV", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Annual Recurring Revenue", + "value": "ARR", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Monthly Recurring Revenue", + "value": "MRR", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Custom", + "value": "CUSTOM", + "displayOrder": 3, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-08T17:23:23.010Z", + "createdAt": "2023-10-18T19:56:30.580Z", + "name": "hs_deal_score", + "label": "Deal Score", + "type": "number", + "fieldType": "number", + "description": "The predictive deal score calculated by Hubspot AI to score the deal health", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:25:44.469Z", + "name": "hs_deal_stage_probability", + "label": "Deal probability", + "type": "number", + "fieldType": "number", + "description": "The probability a deal will close. This defaults to the deal stage probability setting.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-05-20T13:32:10.289Z", + "name": "hs_deal_stage_probability_shadow", + "label": "Deal stage probability shadow", + "type": "number", + "fieldType": "calculation_equation", + "description": "Fall back property for calculating the deal stage when no customer override exist. Probability between 0 and 1 of deal stage. Defaults to 0 for unknown deal stages.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(pipeline_probability(string(dealstage))) then pipeline_probability(string(dealstage)) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-01-19T19:21:11.345Z", + "createdAt": "2023-11-29T14:53:04.344Z", + "name": "hs_exchange_rate", + "label": "Exchange rate", + "type": "number", + "fieldType": "number", + "description": "This is the exchange rate used to convert the deal amount into your company currency.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-10-29T20:22:45.530Z", + "name": "hs_forecast_amount", + "label": "Forecast amount", + "type": "number", + "fieldType": "number", + "description": "The custom forecasted deal value calculated by multiplying the forecast probability and deal amount in your company’s currency.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_forecast_probability) then (hs_forecast_probability * amount_in_home_currency) else amount_in_home_currency", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-10-29T20:17:48.778Z", + "name": "hs_forecast_probability", + "label": "Forecast probability", + "type": "number", + "fieldType": "number", + "description": "The custom percent probability a deal will close.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-16T14:05:17.485Z", + "createdAt": "2024-05-16T14:05:17.485Z", + "name": "hs_has_empty_conditional_stage_properties", + "label": "Has Empty Conditional Stage Properties", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is missing conditional stage property values required to progress to the next deal stage. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-25T15:11:56.356Z", + "createdAt": "2024-01-10T18:05:14.186Z", + "name": "hs_is_active_shared_deal", + "label": "Is Active Shared Deal", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Indicates if the current deal is an active shared deal. It is set automatically based on the value of hs_num_associated_active_deal_registrations.", + "groupName": "deal_activity", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-10-07T15:45:48.973Z", + "name": "hs_is_closed", + "label": "Is Deal Closed?", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal was won or lost.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(pipeline_probability(string(dealstage)) <= 0 or pipeline_probability(string(dealstage)) >= 1)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-07-31T16:24:00.492Z", + "createdAt": "2024-07-31T16:24:00.492Z", + "name": "hs_is_closed_count", + "label": "Is Closed (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed (\"Closed Won\" or \"Closed Lost\"), otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-14T21:11:56.135Z", + "createdAt": "2024-08-14T21:11:56.135Z", + "name": "hs_is_closed_lost", + "label": "Is closed lost", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed lost state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability <= 0) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-21T19:08:46.054Z", + "createdAt": "2021-03-19T17:16:09.655Z", + "name": "hs_is_closed_won", + "label": "Is Closed Won", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed won state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-09-01T17:20:22.955Z", + "name": "hs_is_deal_split", + "label": "Deal Split Added", + "type": "bool", + "fieldType": "calculation_equation", + "description": "Indicates if the deal is split between multiple users.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_num_associated_deal_splits) and hs_num_associated_deal_splits > 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-29T18:11:13.359Z", + "createdAt": "2024-05-29T18:11:13.359Z", + "name": "hs_is_in_first_deal_stage", + "label": "Is In First Deal Stage", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is in the first stage of its pipeline. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-09T17:22:38.951Z", + "createdAt": "2023-08-04T16:56:09.192Z", + "name": "hs_is_open_count", + "label": "Is Open (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is not closed won or closed lost, otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else 1", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:02:40.168Z", + "createdAt": "2020-06-30T15:57:38.258Z", + "name": "hs_lastmodifieddate", + "label": "Last Modified Date", + "type": "datetime", + "fieldType": "date", + "description": "Most recent timestamp of any property update for this deal. This includes HubSpot internal properties, which can be visible or hidden. This property is updated automatically.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-19T15:11:03.313Z", + "createdAt": "2024-03-05T17:51:26.432Z", + "name": "hs_latest_approval_status", + "label": "Latest Approval Status", + "type": "string", + "fieldType": "text", + "description": "The latest approval status. Used by HubSpot to track pipeline approval processes.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-22T19:52:16.821Z", + "createdAt": "2024-03-18T20:26:26.241Z", + "name": "hs_latest_approval_status_approval_id", + "label": "Latest Approval Status Approval ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the approval object containing the latest approval status.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:25:22.440Z", + "name": "hs_latest_meeting_activity", + "label": "Latest meeting activity", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting (past or upcoming) logged for, scheduled with, or booked by a contact associated with this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:03:10.610Z", + "createdAt": "2020-02-07T22:31:06.307Z", + "name": "hs_likelihood_to_close", + "label": "Likelihood to close by the close date", + "type": "number", + "fieldType": "number", + "description": "Hubspot predicted likelihood between 0 and 1 of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:31.672Z", + "name": "hs_line_item_global_term_hs_discount_percentage", + "label": "Global Term Line Item Discount Percentage", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for the discount percentage applied.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:05:24.809Z", + "createdAt": "2020-09-11T16:26:50.864Z", + "name": "hs_line_item_global_term_hs_discount_percentage_enabled", + "label": "Global Term Line Item Discount Percentage Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for the discount percentage is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:44.389Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period", + "label": "Global Term Line Item Recurring Billing Period", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for product recurring billing duration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-09-11T16:27:03.492Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period_enabled", + "label": "Global Term Line Item Recurring Billing Period Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for product recurring billing duration is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:50.722Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date", + "label": "Global Term Line Item Recurring Billing Start Date", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for recurring billing start date for a line item.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:43:51.982Z", + "createdAt": "2020-09-11T16:27:10.044Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date_enabled", + "label": "Global Term Line Item Recurring Billing Start Date Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for recurring billing start date for a line item is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-08-04T17:58:37.932Z", + "name": "hs_line_item_global_term_recurringbillingfrequency", + "label": "Global Term Line Item Recurring Billing Frequency", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for how frequently the product is billed.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:10:51.287Z", + "createdAt": "2020-09-11T16:26:57.093Z", + "name": "hs_line_item_global_term_recurringbillingfrequency_enabled", + "label": "Global Term Line Item Recurring Billing Frequency Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for how frequently the product is billed is enabled", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-06-30T15:57:38.339Z", + "name": "hs_manual_forecast_category", + "label": "Forecast category", + "type": "enumeration", + "fieldType": "select", + "description": "The likelihood a deal will close. This property is used for manual forecasting your deals.", + "groupName": "dealinformation", + "options": [ + { + "label": "Not forecasted", + "value": "OMIT", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Pipeline", + "value": "PIPELINE", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Best case", + "value": "BEST_CASE", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Commit", + "value": "COMMIT", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Closed won", + "value": "CLOSED", + "description": "", + "displayOrder": 5, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:36:33.896Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_merged_object_ids", + "label": "Merged Deal IDs", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The list of Deal record IDs that have been merged into this Deal. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:06:29.497Z", + "createdAt": "2020-06-30T15:57:38.442Z", + "name": "hs_mrr", + "label": "Monthly recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The monthly recurring revenue (MRR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-07-10T20:41:18.146Z", + "name": "hs_next_step", + "label": "Next step", + "type": "string", + "fieldType": "textarea", + "description": "A short description of the next step for the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-05T16:53:28.980Z", + "createdAt": "2024-08-05T16:53:28.980Z", + "name": "hs_next_step_updated_at", + "label": "Next Step Updated At", + "type": "datetime", + "fieldType": "calculation_equation", + "description": "Timestamp of the most recent update to Next Step property", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "string_to_number(timestamp(hs_next_step))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-06T18:47:41.895Z", + "createdAt": "2024-05-06T18:47:41.895Z", + "name": "hs_notes_last_activity", + "label": "Last Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the last activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T21:40:39.783Z", + "createdAt": "2024-03-13T21:40:39.783Z", + "name": "hs_notes_next_activity", + "label": "Next Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the next upcoming activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-27T16:35:27.302Z", + "createdAt": "2024-02-27T16:35:27.302Z", + "name": "hs_notes_next_activity_type", + "label": "Next Activity Type", + "type": "enumeration", + "fieldType": "select", + "description": "The type of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "dealinformation", + "options": [ + { + "label": "Call", + "value": "CALL", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Conversation session", + "value": "CONVERSATION_SESSION", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email reply from contact", + "value": "INCOMING_EMAIL", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Email sent to contact", + "value": "EMAIL", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Forwarded email", + "value": "FORWARDED_EMAI", + "displayOrder": 4, + "hidden": false + }, + { + "label": "LinkedIn message", + "value": "LINKEDIN_MESSAGE", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Meeting", + "value": "MEETING", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Note", + "value": "NOTE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Postal mail", + "value": "POSTAL_MAIL", + "displayOrder": 8, + "hidden": false + }, + { + "label": "Publishing task", + "value": "PUBLISHING_TASK", + "displayOrder": 9, + "hidden": false + }, + { + "label": "SMS", + "value": "SMS", + "displayOrder": 10, + "hidden": false + }, + { + "label": "Task", + "value": "TASK", + "displayOrder": 11, + "hidden": false + }, + { + "label": "WhatsApp", + "value": "WHATS_APP", + "displayOrder": 12, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:00.029Z", + "createdAt": "2021-09-07T12:44:12.716Z", + "name": "hs_num_associated_active_deal_registrations", + "label": "Number of Active Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of active deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:15.269Z", + "createdAt": "2021-09-07T12:43:20.975Z", + "name": "hs_num_associated_deal_registrations", + "label": "Number of Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-03-18T20:41:32.514Z", + "name": "hs_num_associated_deal_splits", + "label": "Number of Deal Splits", + "type": "number", + "fieldType": "number", + "description": "The number of deal splits associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-22T13:37:58.912Z", + "createdAt": "2023-05-22T13:37:58.912Z", + "name": "hs_num_of_associated_line_items", + "label": "Number of Associated Line Items", + "type": "number", + "fieldType": "number", + "description": "The number of line items associated with this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2021-04-02T19:12:50.614Z", + "name": "hs_num_target_accounts", + "label": "Number of target accounts", + "type": "number", + "fieldType": "number", + "description": "The number of target account companies associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_id", + "label": "Record ID", + "type": "number", + "fieldType": "number", + "description": "The unique ID for this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source", + "label": "Record creation source", + "type": "string", + "fieldType": "text", + "description": "Raw internal PropertySource present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_1", + "label": "Record source detail 1", + "type": "string", + "fieldType": "text", + "description": "First level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_2", + "label": "Record source detail 2", + "type": "string", + "fieldType": "text", + "description": "Second level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_3", + "label": "Record source detail 3", + "type": "string", + "fieldType": "text", + "description": "Third level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_id", + "label": "Record creation source ID", + "type": "string", + "fieldType": "text", + "description": "Raw internal sourceId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_label", + "label": "Record source", + "type": "enumeration", + "fieldType": "select", + "description": "How this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_user_id", + "label": "Record creation source user ID", + "type": "number", + "fieldType": "number", + "description": "Raw internal userId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-12T05:34:12.696Z", + "createdAt": "2024-06-12T05:34:12.696Z", + "name": "hs_open_deal_create_date", + "label": "Open deal create date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is open", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else time_between(createdate, 0)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T19:46:23.447Z", + "createdAt": "2022-07-25T20:58:45.636Z", + "name": "hs_pinned_engagement_id", + "label": "Pinned Engagement ID", + "type": "number", + "fieldType": "number", + "description": "The object ID of the current pinned engagement. This will only be shown if there is already an association to the engagement.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:33:43.508Z", + "name": "hs_predicted_amount", + "label": "The predicted deal amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount)) then (hs_likelihood_to_close * amount) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:08:31.557Z", + "createdAt": "2020-02-07T22:38:42.351Z", + "name": "hs_predicted_amount_in_home_currency", + "label": "The predicted deal amount in your company's currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount in your company's currency times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount_in_home_currency)) then (hs_likelihood_to_close * amount_in_home_currency) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2021-04-13T18:44:53.526Z", + "name": "hs_priority", + "label": "Priority", + "type": "enumeration", + "fieldType": "select", + "description": "", + "groupName": "dealinformation", + "options": [ + { + "label": "Low", + "value": "low", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Medium", + "value": "medium", + "displayOrder": 1, + "hidden": false + }, + { + "label": "High", + "value": "high", + "displayOrder": 2, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:26:39.754Z", + "name": "hs_projected_amount", + "label": "Weighted amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:39:50.422Z", + "createdAt": "2021-07-29T14:27:23.100Z", + "name": "hs_projected_amount_in_home_currency", + "label": "Weighted amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount in home currency times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount_in_home_currency) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_read_only", + "label": "Read only object", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Determines whether a record can be edited by a user.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2019-08-06T02:41:53.649Z", + "name": "hs_sales_email_last_replied", + "label": "Recent Sales Email Replied Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a tracked sales email was replied to for this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:57:36.328Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_team_ids", + "label": "Shared teams", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional teams whose users can access the Deal based on their permissions. This can be set manually or through Workflows or APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:46:14.081Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_user_ids", + "label": "Shared users", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional users that can access the Deal based on their permissions. This can be set manually or through Workflows and APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-20T17:16:59.235Z", + "createdAt": "2023-04-20T17:16:59.235Z", + "name": "hs_source_object_id", + "label": "Source Object ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the object from which the data was migrated. This is set automatically during portal data migration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-20T16:18:04.288Z", + "createdAt": "2023-01-13T15:52:17.575Z", + "name": "hs_tag_ids", + "label": "Deal Tags", + "type": "enumeration", + "fieldType": "checkbox", + "description": "List of tag ids applicable to a deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:10:33.836Z", + "createdAt": "2020-06-30T15:57:38.369Z", + "name": "hs_tcv", + "label": "Total contract value", + "type": "number", + "fieldType": "number", + "description": "The total contract value (TCV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:43:02.193Z", + "name": "hs_time_in_appointmentscheduled", + "label": "Time in 'Appointment Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:44.326Z", + "name": "hs_time_in_closedlost", + "label": "Time in 'Closed Lost (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:44:24.100Z", + "name": "hs_time_in_closedwon", + "label": "Time in 'Closed Won (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:08.472Z", + "name": "hs_time_in_contractsent", + "label": "Time in 'Contract Sent (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:51.900Z", + "name": "hs_time_in_decisionmakerboughtin", + "label": "Time in 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:36.284Z", + "name": "hs_time_in_presentationscheduled", + "label": "Time in 'Presentation Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:21.488Z", + "name": "hs_time_in_qualifiedtobuy", + "label": "Time in 'Qualified To Buy (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_unique_creation_key", + "label": "Unique creation key", + "type": "string", + "fieldType": "text", + "description": "Unique property used for idempotent creates", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": true, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:53:25.402Z", + "name": "hs_updated_by_user_id", + "label": "Updated by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who last updated this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_followers", + "label": "User IDs of all notification followers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all users that have clicked follow within the object to opt-in to getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_unfollowers", + "label": "User IDs of all notification unfollowers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all object owners that have clicked unfollow within the object to opt-out of getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_owners", + "label": "User IDs of all owners", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all owners of this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.285Z", + "createdAt": "2023-10-31T14:36:55.546Z", + "name": "hs_v2_cumulative_time_in_appointmentscheduled", + "label": "Cumulative time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.700Z", + "createdAt": "2023-10-31T14:38:49.348Z", + "name": "hs_v2_cumulative_time_in_closedlost", + "label": "Cumulative time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.380Z", + "createdAt": "2023-10-31T14:38:31.273Z", + "name": "hs_v2_cumulative_time_in_closedwon", + "label": "Cumulative time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.633Z", + "createdAt": "2023-10-31T14:38:16.005Z", + "name": "hs_v2_cumulative_time_in_contractsent", + "label": "Cumulative time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.903Z", + "createdAt": "2023-10-31T14:37:54.704Z", + "name": "hs_v2_cumulative_time_in_decisionmakerboughtin", + "label": "Cumulative time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.427Z", + "createdAt": "2023-10-31T14:37:39.160Z", + "name": "hs_v2_cumulative_time_in_presentationscheduled", + "label": "Cumulative time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.093Z", + "createdAt": "2023-10-31T14:37:19.856Z", + "name": "hs_v2_cumulative_time_in_qualifiedtobuy", + "label": "Cumulative time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.240Z", + "createdAt": "2023-11-15T15:17:23.332Z", + "name": "hs_v2_date_entered_appointmentscheduled", + "label": "Date entered \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.527Z", + "createdAt": "2023-11-28T15:49:52.548Z", + "name": "hs_v2_date_entered_closedlost", + "label": "Date entered \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:28.311Z", + "createdAt": "2023-11-15T15:21:44.137Z", + "name": "hs_v2_date_entered_closedwon", + "label": "Date entered \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.333Z", + "createdAt": "2023-11-15T15:21:21.172Z", + "name": "hs_v2_date_entered_contractsent", + "label": "Date entered \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.536Z", + "createdAt": "2023-11-15T15:21:03.201Z", + "name": "hs_v2_date_entered_decisionmakerboughtin", + "label": "Date entered \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.478Z", + "createdAt": "2023-11-15T15:20:42.940Z", + "name": "hs_v2_date_entered_presentationscheduled", + "label": "Date entered \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.176Z", + "createdAt": "2023-11-15T15:20:19.853Z", + "name": "hs_v2_date_entered_qualifiedtobuy", + "label": "Date entered \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.753Z", + "createdAt": "2023-10-31T14:14:27.022Z", + "name": "hs_v2_date_exited_appointmentscheduled", + "label": "Date exited \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.301Z", + "createdAt": "2023-10-31T14:16:30.735Z", + "name": "hs_v2_date_exited_closedlost", + "label": "Date exited \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.162Z", + "createdAt": "2023-10-31T14:16:10.149Z", + "name": "hs_v2_date_exited_closedwon", + "label": "Date exited \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.012Z", + "createdAt": "2023-10-31T14:15:48.428Z", + "name": "hs_v2_date_exited_contractsent", + "label": "Date exited \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.588Z", + "createdAt": "2023-10-31T14:15:30.251Z", + "name": "hs_v2_date_exited_decisionmakerboughtin", + "label": "Date exited \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.853Z", + "createdAt": "2023-11-28T15:26:12.794Z", + "name": "hs_v2_date_exited_presentationscheduled", + "label": "Date exited \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.482Z", + "createdAt": "2023-10-31T14:14:47.853Z", + "name": "hs_v2_date_exited_qualifiedtobuy", + "label": "Date exited \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.953Z", + "createdAt": "2023-10-31T14:27:02.455Z", + "name": "hs_v2_latest_time_in_appointmentscheduled", + "label": "Latest time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.591Z", + "createdAt": "2023-11-28T15:21:59.678Z", + "name": "hs_v2_latest_time_in_closedlost", + "label": "Latest time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.431Z", + "createdAt": "2023-11-28T15:23:54.642Z", + "name": "hs_v2_latest_time_in_closedwon", + "label": "Latest time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.365Z", + "createdAt": "2023-10-31T14:34:32.116Z", + "name": "hs_v2_latest_time_in_contractsent", + "label": "Latest time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.236Z", + "createdAt": "2023-10-31T14:34:12.684Z", + "name": "hs_v2_latest_time_in_decisionmakerboughtin", + "label": "Latest time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.804Z", + "createdAt": "2023-11-28T15:25:09.770Z", + "name": "hs_v2_latest_time_in_presentationscheduled", + "label": "Latest time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.644Z", + "createdAt": "2023-10-31T14:33:36.111Z", + "name": "hs_v2_latest_time_in_qualifiedtobuy", + "label": "Latest time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_was_imported", + "label": "Performed in an import", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Object is part of an import", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-06-30T15:57:38.224Z", + "name": "hubspot_owner_assigneddate", + "label": "Owner assigned date", + "type": "datetime", + "fieldType": "date", + "description": "The most recent timestamp of when an owner was assigned to this record. This value is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.418Z", + "name": "hubspot_owner_id", + "label": "Deal owner", + "type": "enumeration", + "fieldType": "select", + "description": "User the deal is assigned to. Assign additional users to a deal record by creating a custom user property.", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": 6, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-29T21:49:22.423Z", + "createdAt": "2020-06-30T15:57:38.380Z", + "name": "hubspot_team_id", + "label": "HubSpot Team", + "type": "enumeration", + "fieldType": "select", + "description": "Primary team of the deal owner. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-06-30T15:57:38.430Z", + "name": "notes_last_contacted", + "label": "Last Contacted", + "type": "datetime", + "fieldType": "date", + "description": "The last time a call, sales email, or meeting was logged for this deal. This is set automatically by HubSpot based on user actions.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.281Z", + "name": "notes_last_updated", + "label": "Last Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a note, call, email, meeting, or task was logged for a deal. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.326Z", + "name": "notes_next_activity_date", + "label": "Next Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The date of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2019-08-06T02:41:52.683Z", + "name": "num_associated_contacts", + "label": "Number of Associated Contacts", + "type": "number", + "fieldType": "number", + "description": "The number of contacts associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:06:03.441Z", + "createdAt": "2020-06-30T15:57:38.490Z", + "name": "num_contacted_notes", + "label": "Number of times contacted", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:05:17.168Z", + "createdAt": "2020-06-30T15:57:38.523Z", + "name": "num_notes", + "label": "Number of Sales Activities", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, task, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.191Z", + "name": "pipeline", + "label": "Pipeline", + "type": "enumeration", + "fieldType": "select", + "description": "The pipeline the deal is in. This determines which stages are options for the deal.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 4, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + } + ] +} diff --git a/integrations/hubspot/mocks/nango/post/proxy/crm/v3/objects/deals/create-deal.json b/integrations/hubspot/mocks/nango/post/proxy/crm/v3/objects/deals/create-deal.json new file mode 100644 index 00000000..01ed7aec --- /dev/null +++ b/integrations/hubspot/mocks/nango/post/proxy/crm/v3/objects/deals/create-deal.json @@ -0,0 +1,27 @@ +{ + "id": "20858667708", + "properties": { + "createdate": "2024-10-02T19:29:34.520Z", + "days_to_close": "0", + "dealname": "Test deal 1", + "hs_closed_amount": "0", + "hs_closed_amount_in_home_currency": "0", + "hs_closed_won_count": "0", + "hs_createdate": "2024-10-02T19:29:34.520Z", + "hs_days_to_close_raw": "0", + "hs_deal_stage_probability_shadow": "0", + "hs_is_closed_lost": "false", + "hs_is_closed_won": "false", + "hs_is_deal_split": "false", + "hs_lastmodifieddate": "2024-10-02T19:29:34.520Z", + "hs_object_id": "20858667708", + "hs_object_source": "INTEGRATION", + "hs_object_source_id": "3997414", + "hs_object_source_label": "INTEGRATION", + "hs_projected_amount": "0", + "hs_projected_amount_in_home_currency": "0" + }, + "createdAt": "2024-10-02T19:29:34.520Z", + "updatedAt": "2024-10-02T19:29:34.520Z", + "archived": false +} diff --git a/integrations/hubspot/nango.yaml b/integrations/hubspot/nango.yaml index 18f720bf..ca62f861 100644 --- a/integrations/hubspot/nango.yaml +++ b/integrations/hubspot/nango.yaml @@ -7,36 +7,81 @@ integrations: Fetches a list of service tickets from Hubspot output: HubspotServiceTicket sync_type: incremental - endpoint: GET /hubspot/service-tickets + endpoint: GET /service-tickets contacts: runs: every day description: | Fetches a list of contacts from Hubspot output: HubspotContact sync_type: full - endpoint: GET /hubspot/contacts + endpoint: GET /contacts owners: runs: every day description: | Fetches a list of owners from Hubspot output: HubspotOwner sync_type: full - endpoint: GET /hubspot/owner + endpoint: GET /owners users: runs: every day description: | Fetches a list of users from Hubspot output: HubspotUser sync_type: full - endpoint: GET /hubspot/user + endpoint: GET /users knowledge-base: runs: every day description: | Fetches a list of knowledge base from Hubspot output: HubspotKnowledgeBase sync_type: full - endpoint: GET /hubspot/knowledge-base + endpoint: GET /knowledge-base + actions: + fetch-properties: + description: Fetch the properties of a specified object + input: InputProperty + output: PropertyResponse + endpoint: GET /properties + create-deal: + description: Creates a deal in Hubspot + output: CreatedDeal + endpoint: POST /deals + input: CreateDeal + scopes: + - crm.objects.deals.write models: + InputProperty: + name: string + PropertyResponse: + result: Property + Property: + updatedAt: string + createdAt: string + name: string + label: string + type: string + fieldType: string + description: string + groupName: string + options: Option[], + displayOrder: number + calculated: boolean + externalOptions: boolean + hasUniqueValue: boolean + hidden: boolean + hubspotDefined: boolean + showCurrencySymbol: boolean + modificationMetadata: + archivable: boolean + readOnlyDefinition: boolean + readOnlyValue: boolean + formField: boolean + dataSensitivity: string + Option: + label: string + value: string + displayOrder: number + hidden: boolean HubspotServiceTicket: id: integer createdAt: date @@ -79,3 +124,33 @@ models: first_name: string last_name: string email: string + CreateDeal: + properties: + dealname: string + __string: any + DealDefaultProperties: + createdate: string + days_to_close: string + dealname: string + hs_closed_amount: string + hs_closed_amount_in_home_currency: string + hs_closed_won_count: string + hs_createdate: string + hs_days_to_close_raw: string + hs_deal_stage_probability_shadow: string + hs_is_closed_lost: string + hs_is_closed_won: string + hs_is_deal_split: string + hs_lastmodifieddate: string + hs_object_id: string + hs_object_source: string + hs_object_source_id: string + hs_object_source_label: string + hs_projected_amount: string + hs_projected_amount_in_home_currency: string + CreatedDeal: + id: string + properties: DealDefaultProperties + createdAt: string + updatedAt: string + archived: boolean diff --git a/integrations/hubspot/tests/hubspot-contacts.test.ts b/integrations/hubspot/tests/hubspot-contacts.test.ts new file mode 100644 index 00000000..d07e261d --- /dev/null +++ b/integrations/hubspot/tests/hubspot-contacts.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/contacts.js"; + +describe("hubspot contacts tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "contacts", + Model: "HubspotContact" + }); + + const models = "HubspotContact".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/integrations/hubspot/tests/hubspot-create-deal.test.ts b/integrations/hubspot/tests/hubspot-create-deal.test.ts new file mode 100644 index 00000000..aed95a2d --- /dev/null +++ b/integrations/hubspot/tests/hubspot-create-deal.test.ts @@ -0,0 +1,19 @@ +import { vi, expect, it, describe } from "vitest"; + +import runAction from "../actions/create-deal.js"; + +describe("hubspot create-deal tests", () => { + const nangoMock = new global.vitest.NangoActionMock({ + dirname: __dirname, + name: "create-deal", + Model: "CreatedDeal" + }); + + it('should output the action output that is expected', async () => { + const input = await nangoMock.getInput(); + const response = await runAction(nangoMock, input); + const output = await nangoMock.getOutput(); + + expect(response).toEqual(output); + }); +}); diff --git a/integrations/hubspot/tests/hubspot-fetch-properties.test.ts b/integrations/hubspot/tests/hubspot-fetch-properties.test.ts new file mode 100644 index 00000000..b7d9620c --- /dev/null +++ b/integrations/hubspot/tests/hubspot-fetch-properties.test.ts @@ -0,0 +1,19 @@ +import { vi, expect, it, describe } from "vitest"; + +import runAction from "../actions/fetch-properties.js"; + +describe("hubspot fetch-properties tests", () => { + const nangoMock = new global.vitest.NangoActionMock({ + dirname: __dirname, + name: "fetch-properties", + Model: "PropertyResponse" + }); + + it('should output the action output that is expected', async () => { + const input = await nangoMock.getInput(); + const response = await runAction(nangoMock, input); + const output = await nangoMock.getOutput(); + + expect(response).toEqual(output); + }); +}); diff --git a/integrations/hubspot/tests/hubspot-knowledge-base.test.ts b/integrations/hubspot/tests/hubspot-knowledge-base.test.ts new file mode 100644 index 00000000..b843ddee --- /dev/null +++ b/integrations/hubspot/tests/hubspot-knowledge-base.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/knowledge-base.js"; + +describe("hubspot knowledge-base tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "knowledge-base", + Model: "HubspotKnowledgeBase" + }); + + const models = "HubspotKnowledgeBase".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/integrations/hubspot/tests/hubspot-owners.test.ts b/integrations/hubspot/tests/hubspot-owners.test.ts new file mode 100644 index 00000000..137582b2 --- /dev/null +++ b/integrations/hubspot/tests/hubspot-owners.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/owners.js"; + +describe("hubspot owners tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "owners", + Model: "HubspotOwner" + }); + + const models = "HubspotOwner".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/integrations/hubspot/tests/hubspot-service-tickets.test.ts b/integrations/hubspot/tests/hubspot-service-tickets.test.ts new file mode 100644 index 00000000..d48d41ce --- /dev/null +++ b/integrations/hubspot/tests/hubspot-service-tickets.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/service-tickets.js"; + +describe("hubspot service-tickets tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "service-tickets", + Model: "HubspotServiceTicket" + }); + + const models = "HubspotServiceTicket".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/integrations/hubspot/tests/hubspot-users.test.ts b/integrations/hubspot/tests/hubspot-users.test.ts new file mode 100644 index 00000000..70478426 --- /dev/null +++ b/integrations/hubspot/tests/hubspot-users.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/users.js"; + +describe("hubspot users tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "users", + Model: "HubspotUser" + }); + + const models = "HubspotUser".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/integrations/slack/tests/slack-messages.test.ts b/integrations/slack/tests/slack-messages.test.ts new file mode 100644 index 00000000..3fa115f1 --- /dev/null +++ b/integrations/slack/tests/slack-messages.test.ts @@ -0,0 +1,53 @@ +import { vi, expect, it, describe } from "vitest"; + +import fetchData from "../syncs/messages.js"; + +describe("slack messages tests", () => { + const nangoMock = new global.vitest.NangoSyncMock({ + dirname: __dirname, + name: "messages", + Model: "SlackMessage,SlackMessageReply,SlackMessageReaction" + }); + + const models = "SlackMessage,SlackMessageReply,SlackMessageReaction".split(','); + const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); + + it("should get, map correctly the data and batchSave the result", async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchSaveData = await nangoMock.getBatchSaveData(model); + + const totalCalls = batchSaveSpy.mock.calls.length; + + if (totalCalls > models.length) { + const splitSize = Math.ceil(batchSaveData.length / totalCalls); + + const splitBatchSaveData = []; + for (let i = 0; i < totalCalls; i++) { + const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); + splitBatchSaveData.push(chunk); + } + + splitBatchSaveData.forEach((data, index) => { + // @ts-ignore + expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); + }); + + } else { + expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); + } + } + }); + + it('should get, map correctly the data and batchDelete the result', async () => { + await fetchData(nangoMock); + + for (const model of models) { + const batchDeleteData = await nangoMock.getBatchDeleteData(model); + if (batchDeleteData && batchDeleteData.length > 0) { + expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); + } + } + }); +}); diff --git a/package-lock.json b/package-lock.json index d2388cfd..ee8462bf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,7 +22,7 @@ "husky": "8.0.3", "js-yaml": "4.1.0", "lint-staged": "15.2.9", - "nango": "^0.42.13", + "nango": "^0.42.14", "onchange": "7.1.0", "ts-to-zod": "^3.9.1", "tsx": "^4.19.0", @@ -2157,9 +2157,9 @@ "dev": true }, "node_modules/@nangohq/nango-yaml": { - "version": "0.42.13", - "resolved": "https://registry.npmjs.org/@nangohq/nango-yaml/-/nango-yaml-0.42.13.tgz", - "integrity": "sha512-z+Tw9CiyQSHylVg7lmgUVmahhIt3TdamgZerafvBsYth9ky/AR4i5CXStjDRN8CZvIkhkqCLP1t0FBDIxqtU8g==", + "version": "0.42.14", + "resolved": "https://registry.npmjs.org/@nangohq/nango-yaml/-/nango-yaml-0.42.14.tgz", + "integrity": "sha512-O3f5/YGPQJUgfIH5cuhO7uuyl3FTBCJ8mgO9A0a0k1JMOveXfUS37VU+TTTgRkBhKtGdtI/CjWvo83mindw9/w==", "dev": true, "dependencies": { "js-yaml": "^4.1.0", @@ -2176,9 +2176,9 @@ } }, "node_modules/@nangohq/node": { - "version": "0.42.13", - "resolved": "https://registry.npmjs.org/@nangohq/node/-/node-0.42.13.tgz", - "integrity": "sha512-L/xRhJrmQZ40jxNa07oBU74MnvpZ8BKscmFtR1plU/b4oMSbYj2UwbwavsbceUnqQItO1pnRadjfNKMulCeZpw==", + "version": "0.42.14", + "resolved": "https://registry.npmjs.org/@nangohq/node/-/node-0.42.14.tgz", + "integrity": "sha512-3EwUWQBifOFMhrUFvroLoZU6WkgZA41ABeVScLO3b5fAMxt1q13/i+O6YOYgF8Edx+sX9yUX/Fzpt9lBWYOYxw==", "dev": true, "dependencies": { "axios": "^1.7.4" @@ -2188,9 +2188,9 @@ } }, "node_modules/@nangohq/shared": { - "version": "0.42.13", - "resolved": "https://registry.npmjs.org/@nangohq/shared/-/shared-0.42.13.tgz", - "integrity": "sha512-CdYPMOd20xcoW41ygTJ+4Ps5GdGQhLdq1yZH0yWksvDkiWLbvGs2p1NWKz5LRb7bTBNV6xogMy3qtKrhSwPlMg==", + "version": "0.42.14", + "resolved": "https://registry.npmjs.org/@nangohq/shared/-/shared-0.42.14.tgz", + "integrity": "sha512-BHXcyc/ZBYTpsBjhkiBjpju9h8SWLM62GkGlCCt+Xyw2wJO0vpamrlX40xBBv742YxvQ1EKqUv5SoA/zsnNZaQ==", "bundleDependencies": [ "@nangohq/utils", "@nangohq/database" @@ -2201,8 +2201,8 @@ "@datadog/datadog-api-client": "1.26.0", "@hapi/boom": "^10.0.1", "@nangohq/database": "file:vendor/nangohq-database-1.0.0.tgz", - "@nangohq/nango-yaml": "^0.42.13", - "@nangohq/node": "^0.42.13", + "@nangohq/nango-yaml": "^0.42.14", + "@nangohq/node": "^0.42.14", "@nangohq/utils": "file:vendor/nangohq-utils-1.0.0.tgz", "@sentry/node": "^7.106.0", "ajv": "^8.12.0", @@ -2266,7 +2266,7 @@ "winston", "zod" ], - "dev": true, + "extraneous": true, "inBundle": true, "license": "SEE LICENSE IN LICENSE FILE IN GIT REPOSITORY", "dependencies": { @@ -2286,7 +2286,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@colors/colors": { "version": "1.6.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2295,7 +2295,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@dabh/diagnostics": { "version": "2.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2306,7 +2306,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/native-appsec": { "version": "8.0.1", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -2319,7 +2319,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-rewriter": { "version": "2.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -2332,7 +2332,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-rewriter/node_modules/node-gyp-build": { "version": "4.8.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -2343,7 +2343,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-taint-tracking": { "version": "3.1.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -2353,7 +2353,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/native-metrics": { "version": "2.0.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -2367,7 +2367,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/pprof": { "version": "5.3.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -2384,13 +2384,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@datadog/sketches-js": { "version": "2.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@opentelemetry/api": { "version": "1.8.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -2399,7 +2399,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@opentelemetry/core": { "version": "1.26.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -2414,7 +2414,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@opentelemetry/semantic-conventions": { "version": "1.27.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -2423,31 +2423,31 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/aspromise": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/base64": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/codegen": { "version": "2.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/eventemitter": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/fetch": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "dependencies": { @@ -2457,37 +2457,37 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/float": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/inquire": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/path": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/pool": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@protobufjs/utf8": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@types/node": { "version": "22.7.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2496,13 +2496,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/@types/triple-beam": { "version": "1.3.5", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/acorn": { "version": "8.12.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -2514,7 +2514,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/acorn-import-attributes": { "version": "1.9.5", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "peerDependencies": { @@ -2523,7 +2523,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/agent-base": { "version": "7.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2535,19 +2535,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/async": { "version": "3.2.6", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/asynckit": { "version": "0.4.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/axios": { "version": "1.7.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2558,13 +2558,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/cjs-module-lexer": { "version": "1.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/color": { "version": "3.2.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2574,7 +2574,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/color-convert": { "version": "1.9.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2583,13 +2583,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/color-name": { "version": "1.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/color-string": { "version": "1.9.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2599,7 +2599,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/colorspace": { "version": "1.1.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2609,7 +2609,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/combined-stream": { "version": "1.0.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2621,13 +2621,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/crypto-randomuuid": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/dc-polyfill": { "version": "0.1.6", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2636,7 +2636,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/dd-trace": { "version": "5.21.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "(Apache-2.0 OR BSD-3-Clause)", @@ -2677,7 +2677,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/debug": { "version": "4.3.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2694,13 +2694,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/debug/node_modules/ms": { "version": "2.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/delay": { "version": "5.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2712,7 +2712,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/delayed-stream": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2721,7 +2721,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/detect-newline": { "version": "3.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2730,43 +2730,43 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/enabled": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/event-lite": { "version": "0.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/exponential-backoff": { "version": "3.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/fast-safe-stringify": { "version": "2.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/fecha": { "version": "4.2.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/fn.name": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/follow-redirects": { "version": "1.15.9", - "dev": true, + "extraneous": true, "funding": [ { "type": "individual", @@ -2786,7 +2786,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/form-data": { "version": "4.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2800,7 +2800,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/guess-json-indent": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2809,7 +2809,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/http-proxy-agent": { "version": "7.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2822,7 +2822,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/https-proxy-agent": { "version": "7.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2835,7 +2835,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/ieee754": { "version": "1.2.1", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -2855,7 +2855,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/ignore": { "version": "5.3.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2864,7 +2864,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/import-in-the-middle": { "version": "1.11.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -2876,31 +2876,31 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/inherits": { "version": "2.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/int64-buffer": { "version": "0.1.10", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/is-arrayish": { "version": "0.3.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/isarray": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/istanbul-lib-coverage": { "version": "3.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -2909,7 +2909,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/jest-docblock": { "version": "29.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2921,7 +2921,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/koalas": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2930,24 +2930,24 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/kuler": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/limiter": { "version": "1.1.5", - "dev": true, + "extraneous": true, "inBundle": true }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/lodash.sortby": { "version": "4.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/logform": { "version": "2.6.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -2964,19 +2964,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/logform/node_modules/ms": { "version": "2.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/long": { "version": "5.2.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/lru-cache": { "version": "7.18.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -2985,7 +2985,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/mime-db": { "version": "1.52.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -2994,7 +2994,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/mime-types": { "version": "2.1.35", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3006,13 +3006,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/module-details-from-path": { "version": "1.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/msgpack-lite": { "version": "0.1.26", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3027,7 +3027,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/nanoid": { "version": "5.0.7", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -3045,13 +3045,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/node-addon-api": { "version": "6.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/node-gyp-build": { "version": "3.9.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -3062,7 +3062,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/one-time": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3071,7 +3071,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/opentracing": { "version": "0.14.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -3080,7 +3080,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/p-limit": { "version": "3.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3095,19 +3095,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/path-to-regexp": { "version": "0.1.11", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/pprof-format": { "version": "2.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/protobufjs": { "version": "7.4.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "BSD-3-Clause", @@ -3131,13 +3131,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/proxy-from-env": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/readable-stream": { "version": "3.6.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3151,7 +3151,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/retry": { "version": "0.13.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3160,7 +3160,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/safe-buffer": { "version": "5.2.1", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -3180,7 +3180,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/safe-stable-stringify": { "version": "2.5.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3189,7 +3189,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/semver": { "version": "7.6.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "bin": { @@ -3201,7 +3201,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/serialize-error": { "version": "11.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3216,7 +3216,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/shell-quote": { "version": "1.8.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "funding": { @@ -3225,7 +3225,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/simple-swizzle": { "version": "0.2.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3234,7 +3234,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/source-map": { "version": "0.7.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -3243,7 +3243,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/stack-trace": { "version": "0.0.10", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3252,7 +3252,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/string_decoder": { "version": "1.3.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3261,7 +3261,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/string-byte-length": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3270,7 +3270,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/string-byte-slice": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3279,19 +3279,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/text-hex": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/tlhunter-sorted-set": { "version": "0.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/triple-beam": { "version": "1.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3300,7 +3300,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/truncate-json": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3314,7 +3314,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/type-fest": { "version": "2.19.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -3326,19 +3326,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/undici-types": { "version": "6.19.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/util-deprecate": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/winston": { "version": "3.13.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3360,7 +3360,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/winston-transport": { "version": "4.7.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3374,7 +3374,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/winston/node_modules/is-stream": { "version": "2.0.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3386,7 +3386,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/yocto-queue": { "version": "0.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3398,7 +3398,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/@nangohq/utils/node_modules/zod": { "version": "3.23.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "funding": { @@ -3407,7 +3407,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/buffer-writer": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3416,13 +3416,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/colorette": { "version": "2.0.19", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/commander": { "version": "10.0.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3431,7 +3431,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/debug": { "version": "4.3.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3448,7 +3448,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/escalade": { "version": "3.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3457,7 +3457,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/esm": { "version": "3.2.25", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3466,7 +3466,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/function-bind": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "funding": { @@ -3475,7 +3475,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/get-package-type": { "version": "0.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3484,13 +3484,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/getopts": { "version": "2.3.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/hasown": { "version": "2.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3502,7 +3502,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/interpret": { "version": "2.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3511,7 +3511,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/is-core-module": { "version": "2.15.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3526,7 +3526,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/knex": { "version": "3.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3577,31 +3577,31 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/lodash": { "version": "4.17.21", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/ms": { "version": "2.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/packet-reader": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/path-parse": { "version": "1.0.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg": { "version": "8.11.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3630,20 +3630,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-cloudflare": { "version": "1.1.1", - "dev": true, + "extraneous": true, "inBundle": true, - "license": "MIT", - "optional": true + "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-connection-string": { "version": "2.6.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-int8": { "version": "1.0.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -3652,7 +3651,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-pool": { "version": "3.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "peerDependencies": { @@ -3661,13 +3660,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-protocol": { "version": "1.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pg-types": { "version": "2.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3683,7 +3682,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/pgpass": { "version": "1.0.5", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3692,7 +3691,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/postgres-array": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3701,7 +3700,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/postgres-bytea": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3710,7 +3709,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/postgres-date": { "version": "1.0.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3719,7 +3718,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/postgres-interval": { "version": "1.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3731,7 +3730,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/rechoir": { "version": "0.8.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3743,7 +3742,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/resolve": { "version": "1.22.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3760,7 +3759,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/resolve-from": { "version": "5.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3769,7 +3768,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/split2": { "version": "4.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -3778,7 +3777,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3790,7 +3789,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/tarn": { "version": "3.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3799,7 +3798,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/tildify": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3808,7 +3807,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/database/node_modules/xtend": { "version": "4.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3851,7 +3850,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@colors/colors": { "version": "1.6.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -3860,7 +3859,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@dabh/diagnostics": { "version": "2.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -3871,7 +3870,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/native-appsec": { "version": "8.0.1", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -3884,7 +3883,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-rewriter": { "version": "2.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -3897,7 +3896,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-rewriter/node_modules/node-gyp-build": { "version": "4.8.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -3908,7 +3907,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/native-iast-taint-tracking": { "version": "3.1.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -3918,7 +3917,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/native-metrics": { "version": "2.0.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -3932,7 +3931,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/pprof": { "version": "5.3.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "Apache-2.0", @@ -3949,13 +3948,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@datadog/sketches-js": { "version": "2.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@opentelemetry/api": { "version": "1.8.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -3964,7 +3963,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@opentelemetry/core": { "version": "1.26.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -3979,7 +3978,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@opentelemetry/semantic-conventions": { "version": "1.27.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -3988,31 +3987,31 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/aspromise": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/base64": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/codegen": { "version": "2.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/eventemitter": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/fetch": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "dependencies": { @@ -4022,37 +4021,37 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/float": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/inquire": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/path": { "version": "1.1.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/pool": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@protobufjs/utf8": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@types/node": { "version": "22.7.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4061,13 +4060,25 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/@types/triple-beam": { "version": "1.3.5", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/abort-controller": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/acorn": { "version": "8.12.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -4079,7 +4090,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/acorn-import-attributes": { "version": "1.9.5", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "peerDependencies": { @@ -4088,7 +4099,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/agent-base": { "version": "7.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4100,36 +4111,80 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/async": { "version": "3.2.6", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/asynckit": { "version": "0.4.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/axios": { "version": "1.7.7", + "extraneous": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/base64-js": { + "version": "1.5.1", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/buffer": { + "version": "6.0.3", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "inBundle": true, "license": "MIT", "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" } }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/cjs-module-lexer": { "version": "1.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/color": { "version": "3.2.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4139,7 +4194,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/color-convert": { "version": "1.9.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4148,13 +4203,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/color-name": { "version": "1.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/color-string": { "version": "1.9.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4164,7 +4219,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/colorspace": { "version": "1.1.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4174,7 +4229,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/combined-stream": { "version": "1.0.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4186,13 +4241,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/crypto-randomuuid": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/dc-polyfill": { "version": "0.1.6", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4201,7 +4256,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/dd-trace": { "version": "5.21.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "(Apache-2.0 OR BSD-3-Clause)", @@ -4242,7 +4297,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/debug": { "version": "4.3.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4259,13 +4314,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/debug/node_modules/ms": { "version": "2.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/delay": { "version": "5.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4277,7 +4332,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/delayed-stream": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4286,7 +4341,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/detect-newline": { "version": "3.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4295,43 +4350,61 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/enabled": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/event-lite": { "version": "0.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/event-target-shim": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/events": { + "version": "3.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/exponential-backoff": { "version": "3.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/fast-safe-stringify": { "version": "2.1.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/fecha": { "version": "4.2.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/fn.name": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/follow-redirects": { "version": "1.15.9", - "dev": true, + "extraneous": true, "funding": [ { "type": "individual", @@ -4351,7 +4424,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/form-data": { "version": "4.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4365,7 +4438,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/guess-json-indent": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4374,7 +4447,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/http-proxy-agent": { "version": "7.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4387,7 +4460,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/https-proxy-agent": { "version": "7.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4400,7 +4473,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/ieee754": { "version": "1.2.1", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -4420,7 +4493,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/ignore": { "version": "5.3.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4429,7 +4502,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/import-in-the-middle": { "version": "1.11.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { @@ -4441,31 +4514,31 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/inherits": { "version": "2.0.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/int64-buffer": { "version": "0.1.10", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/is-arrayish": { "version": "0.3.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/isarray": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/istanbul-lib-coverage": { "version": "3.2.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -4474,7 +4547,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/jest-docblock": { "version": "29.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4486,7 +4559,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/koalas": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4495,24 +4568,24 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/kuler": { "version": "2.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/limiter": { "version": "1.1.5", - "dev": true, + "extraneous": true, "inBundle": true }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/lodash.sortby": { "version": "4.7.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/logform": { "version": "2.6.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4529,19 +4602,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/logform/node_modules/ms": { "version": "2.1.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/long": { "version": "5.2.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/lru-cache": { "version": "7.18.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "engines": { @@ -4550,7 +4623,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/mime-db": { "version": "1.52.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4559,7 +4632,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/mime-types": { "version": "2.1.35", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4571,13 +4644,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/module-details-from-path": { "version": "1.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/msgpack-lite": { "version": "0.1.26", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4592,7 +4665,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/nanoid": { "version": "5.0.7", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -4610,13 +4683,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/node-addon-api": { "version": "6.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/node-gyp-build": { "version": "3.9.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "bin": { @@ -4627,7 +4700,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/one-time": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4636,7 +4709,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/opentracing": { "version": "0.14.7", - "dev": true, + "extraneous": true, "inBundle": true, "license": "Apache-2.0", "engines": { @@ -4645,7 +4718,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/p-limit": { "version": "3.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4660,19 +4733,28 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/path-to-regexp": { "version": "0.1.11", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/pprof-format": { "version": "2.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, + "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/process": { + "version": "0.11.10", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/protobufjs": { "version": "7.4.0", - "dev": true, + "extraneous": true, "hasInstallScript": true, "inBundle": true, "license": "BSD-3-Clause", @@ -4696,13 +4778,13 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/proxy-from-env": { "version": "1.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/readable-stream": { "version": "3.6.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4716,7 +4798,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/retry": { "version": "0.13.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4725,7 +4807,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/safe-buffer": { "version": "5.2.1", - "dev": true, + "extraneous": true, "funding": [ { "type": "github", @@ -4745,7 +4827,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/safe-stable-stringify": { "version": "2.5.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4754,7 +4836,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/semver": { "version": "7.6.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "ISC", "bin": { @@ -4766,7 +4848,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/serialize-error": { "version": "11.0.3", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4781,7 +4863,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/shell-quote": { "version": "1.8.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "funding": { @@ -4790,7 +4872,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/simple-swizzle": { "version": "0.2.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4799,7 +4881,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/source-map": { "version": "0.7.4", - "dev": true, + "extraneous": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { @@ -4808,7 +4890,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/stack-trace": { "version": "0.0.10", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4817,7 +4899,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/string_decoder": { "version": "1.3.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4826,7 +4908,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/string-byte-length": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4835,7 +4917,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/string-byte-slice": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4844,19 +4926,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/text-hex": { "version": "1.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/tlhunter-sorted-set": { "version": "0.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/triple-beam": { "version": "1.4.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4865,7 +4947,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/truncate-json": { "version": "3.0.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4879,7 +4961,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/type-fest": { "version": "2.19.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "(MIT OR CC0-1.0)", "engines": { @@ -4891,19 +4973,19 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/undici-types": { "version": "6.19.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/util-deprecate": { "version": "1.0.2", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT" }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/winston": { "version": "3.13.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4925,7 +5007,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/winston-transport": { "version": "4.7.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "dependencies": { @@ -4939,7 +5021,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/winston/node_modules/is-stream": { "version": "2.0.1", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4951,7 +5033,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/yocto-queue": { "version": "0.1.0", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "engines": { @@ -4963,7 +5045,7 @@ }, "node_modules/@nangohq/shared/node_modules/@nangohq/utils/node_modules/zod": { "version": "3.23.8", - "dev": true, + "extraneous": true, "inBundle": true, "license": "MIT", "funding": { @@ -5702,12 +5784,12 @@ "dev": true }, "node_modules/@smithy/abort-controller": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.4.tgz", - "integrity": "sha512-VupaALAQlXViW3/enTf/f5l5JZYSAxoJL7f0nanhNNKnww6DGCg1oYIuNP78KDugnkwthBO6iEcym16HhWV8RQ==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-3.1.5.tgz", + "integrity": "sha512-DhNPnqTqPoG8aZ5dWkFOgsuY+i0GQ3CI6hMmvCoduNsnU9gUZWZBwGfDQsTTB7NvFPkom1df7jMIJWU90kuXXg==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5734,15 +5816,15 @@ } }, "node_modules/@smithy/config-resolver": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.8.tgz", - "integrity": "sha512-Tv1obAC18XOd2OnDAjSWmmthzx6Pdeh63FbLin8MlPiuJ2ATpKkq0NcNOJFr0dO+JmZXnwu8FQxKJ3TKJ3Hulw==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-3.0.9.tgz", + "integrity": "sha512-5d9oBf40qC7n2xUoHmntKLdqsyTMMo/r49+eqSIjJ73eDfEtljAxEhzIQ3bkgXJtR3xiv7YzMT/3FF3ORkjWdg==", "dev": true, "dependencies": { - "@smithy/node-config-provider": "^3.1.7", - "@smithy/types": "^3.4.2", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/types": "^3.5.0", "@smithy/util-config-provider": "^3.0.0", - "@smithy/util-middleware": "^3.0.6", + "@smithy/util-middleware": "^3.0.7", "tslib": "^2.6.2" }, "engines": { @@ -5750,19 +5832,19 @@ } }, "node_modules/@smithy/core": { - "version": "2.4.6", - "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.4.6.tgz", - "integrity": "sha512-6lQQp99hnyuNNIzeTYSzCUXJHwvvFLY7hfdFGSJM95tjRDJGfzWYFRBXPaM9766LiiTsQ561KErtbufzUFSYUg==", + "version": "2.4.7", + "resolved": "https://registry.npmjs.org/@smithy/core/-/core-2.4.7.tgz", + "integrity": "sha512-goqMjX+IoVEnHZjYuzu8xwoZjoteMiLXsPHuXPBkWsGwu0o9c3nTjqkUlP1Ez/V8E501aOU7CJ3INk8mQcW2gw==", "dev": true, "dependencies": { - "@smithy/middleware-endpoint": "^3.1.3", - "@smithy/middleware-retry": "^3.0.21", - "@smithy/middleware-serde": "^3.0.6", - "@smithy/protocol-http": "^4.1.3", - "@smithy/smithy-client": "^3.3.5", - "@smithy/types": "^3.4.2", + "@smithy/middleware-endpoint": "^3.1.4", + "@smithy/middleware-retry": "^3.0.22", + "@smithy/middleware-serde": "^3.0.7", + "@smithy/protocol-http": "^4.1.4", + "@smithy/smithy-client": "^3.3.6", + "@smithy/types": "^3.5.0", "@smithy/util-body-length-browser": "^3.0.0", - "@smithy/util-middleware": "^3.0.6", + "@smithy/util-middleware": "^3.0.7", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, @@ -5771,15 +5853,15 @@ } }, "node_modules/@smithy/credential-provider-imds": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.3.tgz", - "integrity": "sha512-VoxMzSzdvkkjMJNE38yQgx4CfnmT+Z+5EUXkg4x7yag93eQkVQgZvN3XBSHC/ylfBbLbAtdu7flTCChX9I+mVg==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-3.2.4.tgz", + "integrity": "sha512-S9bb0EIokfYEuar4kEbLta+ivlKCWOCFsLZuilkNy9i0uEUEHSi47IFLPaxqqCl+0ftKmcOTHayY5nQhAuq7+w==", "dev": true, "dependencies": { - "@smithy/node-config-provider": "^3.1.7", - "@smithy/property-provider": "^3.1.6", - "@smithy/types": "^3.4.2", - "@smithy/url-parser": "^3.0.6", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/property-provider": "^3.1.7", + "@smithy/types": "^3.5.0", + "@smithy/url-parser": "^3.0.7", "tslib": "^2.6.2" }, "engines": { @@ -5787,25 +5869,25 @@ } }, "node_modules/@smithy/eventstream-codec": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.5.tgz", - "integrity": "sha512-6pu+PT2r+5ZnWEV3vLV1DzyrpJ0TmehQlniIDCSpZg6+Ji2SfOI38EqUyQ+O8lotVElCrfVc9chKtSMe9cmCZQ==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-3.1.6.tgz", + "integrity": "sha512-SBiOYPBH+5wOyPS7lfI150ePfGLhnp/eTu5RnV9xvhGvRiKfnl6HzRK9wehBph+il8FxS9KTeadx7Rcmf1GLPQ==", "dev": true, "dependencies": { "@aws-crypto/crc32": "5.2.0", - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "@smithy/util-hex-encoding": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/eventstream-serde-browser": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.9.tgz", - "integrity": "sha512-PiQLo6OQmZAotJweIcObL1H44gkvuJACKMNqpBBe5Rf2Ax1DOcGi/28+feZI7yTe1ERHlQQaGnm8sSkyDUgsMg==", + "version": "3.0.10", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-browser/-/eventstream-serde-browser-3.0.10.tgz", + "integrity": "sha512-1i9aMY6Pl/SmA6NjvidxnfBLHMPzhKu2BP148pEt5VwhMdmXn36PE2kWKGa9Hj8b0XGtCTRucpCncylevCtI7g==", "dev": true, "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.8", - "@smithy/types": "^3.4.2", + "@smithy/eventstream-serde-universal": "^3.0.9", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5813,12 +5895,12 @@ } }, "node_modules/@smithy/eventstream-serde-config-resolver": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.6.tgz", - "integrity": "sha512-iew15It+c7WfnVowWkt2a7cdPp533LFJnpjDQgfZQcxv2QiOcyEcea31mnrk5PVbgo0nNH3VbYGq7myw2q/F6A==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-config-resolver/-/eventstream-serde-config-resolver-3.0.7.tgz", + "integrity": "sha512-eVzhGQBPEqXXYHvIUku0jMTxd4gDvenRzUQPTmKVWdRvp9JUCKrbAXGQRYiGxUYq9+cqQckRm0wq3kTWnNtDhw==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5826,13 +5908,13 @@ } }, "node_modules/@smithy/eventstream-serde-node": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.8.tgz", - "integrity": "sha512-6m+wI+fT0na+6oao6UqALVA38fsScCpoG5UO/A8ZSyGLnPM2i4MS1cFUhpuALgvLMxfYoTCh7qSeJa0aG4IWpQ==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-node/-/eventstream-serde-node-3.0.9.tgz", + "integrity": "sha512-JE0Guqvt0xsmfQ5y1EI342/qtJqznBv8cJqkHZV10PwC8GWGU5KNgFbQnsVCcX+xF+qIqwwfRmeWoJCjuOLmng==", "dev": true, "dependencies": { - "@smithy/eventstream-serde-universal": "^3.0.8", - "@smithy/types": "^3.4.2", + "@smithy/eventstream-serde-universal": "^3.0.9", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5840,13 +5922,13 @@ } }, "node_modules/@smithy/eventstream-serde-universal": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.8.tgz", - "integrity": "sha512-09tqzIQ6e+7jLqGvRji1yJoDbL/zob0OFhq75edgStWErGLf16+yI5hRc/o9/YAybOhUZs/swpW2SPn892G5Gg==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/eventstream-serde-universal/-/eventstream-serde-universal-3.0.9.tgz", + "integrity": "sha512-bydfgSisfepCufw9kCEnWRxqxJFzX/o8ysXWv+W9F2FIyiaEwZ/D8bBKINbh4ONz3i05QJ1xE7A5OKYvgJsXaw==", "dev": true, "dependencies": { - "@smithy/eventstream-codec": "^3.1.5", - "@smithy/types": "^3.4.2", + "@smithy/eventstream-codec": "^3.1.6", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5854,37 +5936,37 @@ } }, "node_modules/@smithy/fetch-http-handler": { - "version": "3.2.8", - "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.8.tgz", - "integrity": "sha512-Lqe0B8F5RM7zkw//6avq1SJ8AfaRd3ubFUS1eVp5WszV7p6Ne5hQ4dSuMHDpNRPhgTvj4va9Kd/pcVigHEHRow==", + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-3.2.9.tgz", + "integrity": "sha512-hYNVQOqhFQ6vOpenifFME546f0GfJn2OiQ3M0FDmuUu8V/Uiwy2wej7ZXxFBNqdx0R5DZAqWM1l6VRhGz8oE6A==", "dev": true, "dependencies": { - "@smithy/protocol-http": "^4.1.3", - "@smithy/querystring-builder": "^3.0.6", - "@smithy/types": "^3.4.2", + "@smithy/protocol-http": "^4.1.4", + "@smithy/querystring-builder": "^3.0.7", + "@smithy/types": "^3.5.0", "@smithy/util-base64": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/hash-blob-browser": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.5.tgz", - "integrity": "sha512-Vi3eoNCmao4iKglS80ktYnBOIqZhjbDDwa1IIbF/VaJ8PsHnZTQ5wSicicPrU7nTI4JPFn92/txzWkh4GlK18Q==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/hash-blob-browser/-/hash-blob-browser-3.1.6.tgz", + "integrity": "sha512-BKNcMIaeZ9lB67sgo88iCF4YB35KT8X2dNJ8DqrtZNTgN6tUDYBKThzfGtos/mnZkGkW91AYHisESHmSiYQmKw==", "dev": true, "dependencies": { "@smithy/chunked-blob-reader": "^3.0.0", "@smithy/chunked-blob-reader-native": "^3.0.0", - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/hash-node": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.6.tgz", - "integrity": "sha512-c/FHEdKK/7DU2z6ZE91L36ahyXWayR3B+FzELjnYq7wH5YqIseM24V+pWCS9kFn1Ln8OFGTf+pyYPiHZuX0s/Q==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-3.0.7.tgz", + "integrity": "sha512-SAGHN+QkrwcHFjfWzs/czX94ZEjPJ0CrWJS3M43WswDXVEuP4AVy9gJ3+AF6JQHZD13bojmuf/Ap/ItDeZ+Qfw==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "@smithy/util-buffer-from": "^3.0.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" @@ -5894,12 +5976,12 @@ } }, "node_modules/@smithy/hash-stream-node": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.1.5.tgz", - "integrity": "sha512-61CyFCzqN3VBfcnGX7mof/rkzLb8oHjm4Lr6ZwBIRpBssBb8d09ChrZAqinP2rUrA915BRNkq9NpJz18N7+3hQ==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/hash-stream-node/-/hash-stream-node-3.1.6.tgz", + "integrity": "sha512-sFSSt7cmCpFWZPfVx7k80Bgb1K2VJ27VmMxH8X+dDhp7Wv8IBgID4K2VK5ehMJROF8hQgcj4WywnkHIwX/xlwQ==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" }, @@ -5908,12 +5990,12 @@ } }, "node_modules/@smithy/invalid-dependency": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.6.tgz", - "integrity": "sha512-czM7Ioq3s8pIXht7oD+vmgy4Wfb4XavU/k/irO8NdXFFOx7YAlsCCcKOh/lJD1mJSYQqiR7NmpZ9JviryD/7AQ==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-3.0.7.tgz", + "integrity": "sha512-Bq00GsAhHeYSuZX8Kpu4sbI9agH2BNYnqUmmbTGWOhki9NVsWn2jFr896vvoTMH8KAjNX/ErC/8t5QHuEXG+IA==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" } }, @@ -5930,24 +6012,24 @@ } }, "node_modules/@smithy/md5-js": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.6.tgz", - "integrity": "sha512-Ze690T8O3M5SVbb70WormwrKzVf9QQRtIuxtJDgpUQDkmt+PtdYDetBbyCbF9ryupxLw6tgzWKgwffAShhVIXQ==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/md5-js/-/md5-js-3.0.7.tgz", + "integrity": "sha512-+wco9IN9uOW4tNGkZIqTR6IXyfO7Z8A+IOq82QCRn/f/xcmt7H1fXwmQVbfDSvbeFwfNnhv7s+u0G9PzPG6o2w==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" } }, "node_modules/@smithy/middleware-content-length": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.8.tgz", - "integrity": "sha512-VuyszlSO49WKh3H9/kIO2kf07VUwGV80QRiaDxUfP8P8UKlokz381ETJvwLhwuypBYhLymCYyNhB3fLAGBX2og==", + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-3.0.9.tgz", + "integrity": "sha512-t97PidoGElF9hTtLCrof32wfWMqC5g2SEJNxaVH3NjlatuNGsdxXRYO/t+RPnxA15RpYiS0f+zG7FuE2DeGgjA==", "dev": true, "dependencies": { - "@smithy/protocol-http": "^4.1.3", - "@smithy/types": "^3.4.2", + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -5955,17 +6037,17 @@ } }, "node_modules/@smithy/middleware-endpoint": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.3.tgz", - "integrity": "sha512-KeM/OrK8MVFUsoJsmCN0MZMVPjKKLudn13xpgwIMpGTYpA8QZB2Xq5tJ+RE6iu3A6NhOI4VajDTwBsm8pwwrhg==", + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-3.1.4.tgz", + "integrity": "sha512-/ChcVHekAyzUbyPRI8CzPPLj6y8QRAfJngWcLMgsWxKVzw/RzBV69mSOzJYDD3pRwushA1+5tHtPF8fjmzBnrQ==", "dev": true, "dependencies": { - "@smithy/middleware-serde": "^3.0.6", - "@smithy/node-config-provider": "^3.1.7", - "@smithy/shared-ini-file-loader": "^3.1.7", - "@smithy/types": "^3.4.2", - "@smithy/url-parser": "^3.0.6", - "@smithy/util-middleware": "^3.0.6", + "@smithy/middleware-serde": "^3.0.7", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.5.0", + "@smithy/url-parser": "^3.0.7", + "@smithy/util-middleware": "^3.0.7", "tslib": "^2.6.2" }, "engines": { @@ -5973,18 +6055,18 @@ } }, "node_modules/@smithy/middleware-retry": { - "version": "3.0.21", - "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.21.tgz", - "integrity": "sha512-/h0fElV95LekVVEJuSw+aI11S1Y3zIUwBc6h9ZbUv43Gl2weXsbQwjLoet6j/Qtb0phfrSxS6pNg6FqgJOWZkA==", - "dev": true, - "dependencies": { - "@smithy/node-config-provider": "^3.1.7", - "@smithy/protocol-http": "^4.1.3", - "@smithy/service-error-classification": "^3.0.6", - "@smithy/smithy-client": "^3.3.5", - "@smithy/types": "^3.4.2", - "@smithy/util-middleware": "^3.0.6", - "@smithy/util-retry": "^3.0.6", + "version": "3.0.22", + "resolved": "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-3.0.22.tgz", + "integrity": "sha512-svEN7O2Tf7BoaBkPzX/8AE2Bv7p16d9/ulFAD1Gmn5g19iMqNk1WIkMxAY7SpB9/tVtUwKx0NaIsBRl88gumZA==", + "dev": true, + "dependencies": { + "@smithy/node-config-provider": "^3.1.8", + "@smithy/protocol-http": "^4.1.4", + "@smithy/service-error-classification": "^3.0.7", + "@smithy/smithy-client": "^3.3.6", + "@smithy/types": "^3.5.0", + "@smithy/util-middleware": "^3.0.7", + "@smithy/util-retry": "^3.0.7", "tslib": "^2.6.2", "uuid": "^9.0.1" }, @@ -5993,12 +6075,12 @@ } }, "node_modules/@smithy/middleware-serde": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.6.tgz", - "integrity": "sha512-KKTUSl1MzOM0MAjGbudeaVNtIDo+PpekTBkCNwvfZlKndodrnvRo+00USatiyLOc0ujjO9UydMRu3O9dYML7ag==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-3.0.7.tgz", + "integrity": "sha512-VytaagsQqtH2OugzVTq4qvjkLNbWehHfGcGr0JLJmlDRrNCeZoWkWsSOw1nhS/4hyUUWF/TLGGml4X/OnEep5g==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6006,12 +6088,12 @@ } }, "node_modules/@smithy/middleware-stack": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.6.tgz", - "integrity": "sha512-2c0eSYhTQ8xQqHMcRxLMpadFbTXg6Zla5l0mwNftFCZMQmuhI7EbAJMx6R5eqfuV3YbJ3QGyS3d5uSmrHV8Khg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-3.0.7.tgz", + "integrity": "sha512-EyTbMCdqS1DoeQsO4gI7z2Gzq1MoRFAeS8GkFYIwbedB7Lp5zlLHJdg+56tllIIG5Hnf9ZWX48YKSHlsKvugGA==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6019,14 +6101,14 @@ } }, "node_modules/@smithy/node-config-provider": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.7.tgz", - "integrity": "sha512-g3mfnC3Oo8pOI0dYuPXLtdW1WGVb3bR2tkV21GNkm0ZvQjLTtamXAwCWt/FCb0HGvKt3gHHmF1XerG0ICfalOg==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-3.1.8.tgz", + "integrity": "sha512-E0rU0DglpeJn5ge64mk8wTGEXcQwmpUTY5Zr7IzTpDLmHKiIamINERNZYrPQjg58Ck236sEKSwRSHA4CwshU6Q==", "dev": true, "dependencies": { - "@smithy/property-provider": "^3.1.6", - "@smithy/shared-ini-file-loader": "^3.1.7", - "@smithy/types": "^3.4.2", + "@smithy/property-provider": "^3.1.7", + "@smithy/shared-ini-file-loader": "^3.1.8", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6034,15 +6116,15 @@ } }, "node_modules/@smithy/node-http-handler": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.3.tgz", - "integrity": "sha512-/gcm5DJ3k1b1zEInzBGAZC8ntJ+jwrz1NcSIu+9dSXd1FfG0G6QgkDI40tt8/WYUbHtLyo8fEqtm2v29koWo/w==", + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-3.2.4.tgz", + "integrity": "sha512-49reY3+JgLMFNm7uTAKBWiKCA6XSvkNp9FqhVmusm2jpVnHORYFeFZ704LShtqWfjZW/nhX+7Iexyb6zQfXYIQ==", "dev": true, "dependencies": { - "@smithy/abort-controller": "^3.1.4", - "@smithy/protocol-http": "^4.1.3", - "@smithy/querystring-builder": "^3.0.6", - "@smithy/types": "^3.4.2", + "@smithy/abort-controller": "^3.1.5", + "@smithy/protocol-http": "^4.1.4", + "@smithy/querystring-builder": "^3.0.7", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6050,12 +6132,12 @@ } }, "node_modules/@smithy/property-provider": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.6.tgz", - "integrity": "sha512-NK3y/T7Q/Bw+Z8vsVs9MYIQ5v7gOX7clyrXcwhhIBQhbPgRl6JDrZbusO9qWDhcEus75Tg+VCxtIRfo3H76fpw==", + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-3.1.7.tgz", + "integrity": "sha512-QfzLi1GPMisY7bAM5hOUqBdGYnY5S2JAlr201pghksrQv139f8iiiMalXtjczIP5f6owxFn3MINLNUNvUkgtPw==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6063,12 +6145,12 @@ } }, "node_modules/@smithy/protocol-http": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.3.tgz", - "integrity": "sha512-GcbMmOYpH9iRqtC05RbRnc/0FssxSTHlmaNhYBTgSgNCYpdR3Kt88u5GAZTBmouzv+Zlj/VRv92J9ruuDeJuEw==", + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-4.1.4.tgz", + "integrity": "sha512-MlWK8eqj0JlpZBnWmjQLqmFp71Ug00P+m72/1xQB3YByXD4zZ+y9N4hYrR0EDmrUCZIkyATWHOXFgtavwGDTzQ==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6076,12 +6158,12 @@ } }, "node_modules/@smithy/querystring-builder": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.6.tgz", - "integrity": "sha512-sQe08RunoObe+Usujn9+R2zrLuQERi3CWvRO3BvnoWSYUaIrLKuAIeY7cMeDax6xGyfIP3x/yFWbEKSXvOnvVg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-3.0.7.tgz", + "integrity": "sha512-65RXGZZ20rzqqxTsChdqSpbhA6tdt5IFNgG6o7e1lnPVLCe6TNWQq4rTl4N87hTDD8mV4IxJJnvyE7brbnRkQw==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "@smithy/util-uri-escape": "^3.0.0", "tslib": "^2.6.2" }, @@ -6090,12 +6172,12 @@ } }, "node_modules/@smithy/querystring-parser": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.6.tgz", - "integrity": "sha512-UJKw4LlEkytzz2Wq+uIdHf6qOtFfee/o7ruH0jF5I6UAuU+19r9QV7nU3P/uI0l6+oElRHmG/5cBBcGJrD7Ozg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-3.0.7.tgz", + "integrity": "sha512-Fouw4KJVWqqUVIu1gZW8BH2HakwLz6dvdrAhXeXfeymOBrZw+hcqaWs+cS1AZPVp4nlbeIujYrKA921ZW2WMPA==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6103,24 +6185,24 @@ } }, "node_modules/@smithy/service-error-classification": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.6.tgz", - "integrity": "sha512-53SpchU3+DUZrN7J6sBx9tBiCVGzsib2e4sc512Q7K9fpC5zkJKs6Z9s+qbMxSYrkEkle6hnMtrts7XNkMJJMg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-3.0.7.tgz", + "integrity": "sha512-91PRkTfiBf9hxkIchhRKJfl1rsplRDyBnmyFca3y0Z3x/q0JJN480S83LBd8R6sBCkm2bBbqw2FHp0Mbh+ecSA==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2" + "@smithy/types": "^3.5.0" }, "engines": { "node": ">=16.0.0" } }, "node_modules/@smithy/shared-ini-file-loader": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.7.tgz", - "integrity": "sha512-IA4K2qTJYXkF5OfVN4vsY1hfnUZjaslEE8Fsr/gGFza4TAC2A9NfnZuSY2srQIbt9bwtjHiAayrRVgKse4Q7fA==", + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-3.1.8.tgz", + "integrity": "sha512-0NHdQiSkeGl0ICQKcJQ2lCOKH23Nb0EaAa7RDRId6ZqwXkw4LJyIyZ0t3iusD4bnKYDPLGy2/5e2rfUhrt0Acw==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6128,16 +6210,16 @@ } }, "node_modules/@smithy/signature-v4": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.1.4.tgz", - "integrity": "sha512-72MiK7xYukNsnLJI9NqvUHqTu0ziEsfMsYNlWpiJfuGQnCTFKpckThlEatirvcA/LmT1h7rRO+pJD06PYsPu9Q==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-4.2.0.tgz", + "integrity": "sha512-LafbclHNKnsorMgUkKm7Tk7oJ7xizsZ1VwqhGKqoCIrXh4fqDDp73fK99HOEEgcsQbtemmeY/BPv0vTVYYUNEQ==", "dev": true, "dependencies": { "@smithy/is-array-buffer": "^3.0.0", - "@smithy/protocol-http": "^4.1.3", - "@smithy/types": "^3.4.2", + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", "@smithy/util-hex-encoding": "^3.0.0", - "@smithy/util-middleware": "^3.0.6", + "@smithy/util-middleware": "^3.0.7", "@smithy/util-uri-escape": "^3.0.0", "@smithy/util-utf8": "^3.0.0", "tslib": "^2.6.2" @@ -6147,16 +6229,16 @@ } }, "node_modules/@smithy/smithy-client": { - "version": "3.3.5", - "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.3.5.tgz", - "integrity": "sha512-7IZi8J3Dr9n3tX+lcpmJ/5tCYIqoXdblFBaPuv0SEKZFRpCxE+TqIWL6I3t7jLlk9TWu3JSvEZAhtjB9yvB+zA==", + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-3.3.6.tgz", + "integrity": "sha512-qdH+mvDHgq1ss6mocyIl2/VjlWXew7pGwZQydwYJczEc22HZyX3k8yVPV9aZsbYbssHPvMDRA5rfBDrjQUbIIw==", "dev": true, "dependencies": { - "@smithy/middleware-endpoint": "^3.1.3", - "@smithy/middleware-stack": "^3.0.6", - "@smithy/protocol-http": "^4.1.3", - "@smithy/types": "^3.4.2", - "@smithy/util-stream": "^3.1.8", + "@smithy/middleware-endpoint": "^3.1.4", + "@smithy/middleware-stack": "^3.0.7", + "@smithy/protocol-http": "^4.1.4", + "@smithy/types": "^3.5.0", + "@smithy/util-stream": "^3.1.9", "tslib": "^2.6.2" }, "engines": { @@ -6164,9 +6246,9 @@ } }, "node_modules/@smithy/types": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.4.2.tgz", - "integrity": "sha512-tHiFcfcVedVBHpmHUEUHOCCih8iZbIAYn9NvPsNzaPm/237I3imdDdZoOC8c87H5HBAVEa06tTgb+OcSWV9g5w==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/@smithy/types/-/types-3.5.0.tgz", + "integrity": "sha512-QN0twHNfe8mNJdH9unwsCK13GURU7oEAZqkBI+rsvpv1jrmserO+WnLE7jidR9W/1dxwZ0u/CB01mV2Gms/K2Q==", "dev": true, "dependencies": { "tslib": "^2.6.2" @@ -6176,13 +6258,13 @@ } }, "node_modules/@smithy/url-parser": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.6.tgz", - "integrity": "sha512-47Op/NU8Opt49KyGpHtVdnmmJMsp2hEwBdyjuFB9M2V5QVOwA7pBhhxKN5z6ztKGrMw76gd8MlbPuzzvaAncuQ==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-3.0.7.tgz", + "integrity": "sha512-70UbSSR8J97c1rHZOWhl+VKiZDqHWxs/iW8ZHrHp5fCCPLSBE7GcUlUvKSle3Ca+J9LLbYCj/A79BxztBvAfpA==", "dev": true, "dependencies": { - "@smithy/querystring-parser": "^3.0.6", - "@smithy/types": "^3.4.2", + "@smithy/querystring-parser": "^3.0.7", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" } }, @@ -6247,14 +6329,14 @@ } }, "node_modules/@smithy/util-defaults-mode-browser": { - "version": "3.0.21", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.21.tgz", - "integrity": "sha512-M/FhTBk4c/SsB91dD/M4gMGfJO7z/qJaM9+XQQIqBOf4qzZYMExnP7R4VdGwxxH8IKMGW+8F0I4rNtVRrcfPoA==", + "version": "3.0.22", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-3.0.22.tgz", + "integrity": "sha512-WKzUxNsOun5ETwEOrvooXeI1mZ8tjDTOcN4oruELWHhEYDgQYWwxZupURVyovcv+h5DyQT/DzK5nm4ZoR/Tw5Q==", "dev": true, "dependencies": { - "@smithy/property-provider": "^3.1.6", - "@smithy/smithy-client": "^3.3.5", - "@smithy/types": "^3.4.2", + "@smithy/property-provider": "^3.1.7", + "@smithy/smithy-client": "^3.3.6", + "@smithy/types": "^3.5.0", "bowser": "^2.11.0", "tslib": "^2.6.2" }, @@ -6263,17 +6345,17 @@ } }, "node_modules/@smithy/util-defaults-mode-node": { - "version": "3.0.21", - "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.21.tgz", - "integrity": "sha512-NiLinPvF86U3S2Pdx/ycqd4bnY5dmFSPNL5KYRwbNjqQFS09M5Wzqk8BNk61/47xCYz1X/6KeiSk9qgYPTtuDw==", + "version": "3.0.22", + "resolved": "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-3.0.22.tgz", + "integrity": "sha512-hUsciOmAq8fsGwqg4+pJfNRmrhfqMH4Y9UeGcgeUl88kPAoYANFATJqCND+O4nUvwp5TzsYwGpqpcBKyA8LUUg==", "dev": true, "dependencies": { - "@smithy/config-resolver": "^3.0.8", - "@smithy/credential-provider-imds": "^3.2.3", - "@smithy/node-config-provider": "^3.1.7", - "@smithy/property-provider": "^3.1.6", - "@smithy/smithy-client": "^3.3.5", - "@smithy/types": "^3.4.2", + "@smithy/config-resolver": "^3.0.9", + "@smithy/credential-provider-imds": "^3.2.4", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/property-provider": "^3.1.7", + "@smithy/smithy-client": "^3.3.6", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6281,13 +6363,13 @@ } }, "node_modules/@smithy/util-endpoints": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.2.tgz", - "integrity": "sha512-FEISzffb4H8DLzGq1g4MuDpcv6CIG15fXoQzDH9SjpRJv6h7J++1STFWWinilG0tQh9H1v2UKWG19Jjr2B16zQ==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-2.1.3.tgz", + "integrity": "sha512-34eACeKov6jZdHqS5hxBMJ4KyWKztTMulhuQ2UdOoP6vVxMLrOKUqIXAwJe/wiWMhXhydLW664B02CNpQBQ4Aw==", "dev": true, "dependencies": { - "@smithy/node-config-provider": "^3.1.7", - "@smithy/types": "^3.4.2", + "@smithy/node-config-provider": "^3.1.8", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6307,12 +6389,12 @@ } }, "node_modules/@smithy/util-middleware": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.6.tgz", - "integrity": "sha512-BxbX4aBhI1O9p87/xM+zWy0GzT3CEVcXFPBRDoHAM+pV0eSW156pR+PSYEz0DQHDMYDsYAflC2bQNz2uaDBUZQ==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-3.0.7.tgz", + "integrity": "sha512-OVA6fv/3o7TMJTpTgOi1H5OTwnuUa8hzRzhSFDtZyNxi6OZ70L/FHattSmhE212I7b6WSOJAAmbYnvcjTHOJCA==", "dev": true, "dependencies": { - "@smithy/types": "^3.4.2", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6320,13 +6402,13 @@ } }, "node_modules/@smithy/util-retry": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.6.tgz", - "integrity": "sha512-BRZiuF7IwDntAbevqMco67an0Sr9oLQJqqRCsSPZZHYRnehS0LHDAkJk/pSmI7Z8c/1Vet294H7fY2fWUgB+Rg==", + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-3.0.7.tgz", + "integrity": "sha512-nh1ZO1vTeo2YX1plFPSe/OXaHkLAHza5jpokNiiKX2M5YpNUv6RxGJZhpfmiR4jSvVHCjIDmILjrxKmP+/Ghug==", "dev": true, "dependencies": { - "@smithy/service-error-classification": "^3.0.6", - "@smithy/types": "^3.4.2", + "@smithy/service-error-classification": "^3.0.7", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -6334,14 +6416,14 @@ } }, "node_modules/@smithy/util-stream": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.1.8.tgz", - "integrity": "sha512-hoKOqSmb8FD3WLObuB5hwbM7bNIWgcnvkThokTvVq7J5PKjlLUK5qQQcB9zWLHIoSaIlf3VIv2OxZY2wtQjcRQ==", + "version": "3.1.9", + "resolved": "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-3.1.9.tgz", + "integrity": "sha512-7YAR0Ub3MwTMjDfjnup4qa6W8gygZMxikBhFMPESi6ASsl/rZJhwLpF/0k9TuezScCojsM0FryGdz4LZtjKPPQ==", "dev": true, "dependencies": { - "@smithy/fetch-http-handler": "^3.2.8", - "@smithy/node-http-handler": "^3.2.3", - "@smithy/types": "^3.4.2", + "@smithy/fetch-http-handler": "^3.2.9", + "@smithy/node-http-handler": "^3.2.4", + "@smithy/types": "^3.5.0", "@smithy/util-base64": "^3.0.0", "@smithy/util-buffer-from": "^3.0.0", "@smithy/util-hex-encoding": "^3.0.0", @@ -6378,13 +6460,13 @@ } }, "node_modules/@smithy/util-waiter": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.1.5.tgz", - "integrity": "sha512-jYOSvM3H6sZe3CHjzD2VQNCjWBJs+4DbtwBMvUp9y5EnnwNa7NQxTeYeQw0CKCAdGGZ3QvVkyJmvbvs5M/B10A==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@smithy/util-waiter/-/util-waiter-3.1.6.tgz", + "integrity": "sha512-xs/KAwWOeCklq8aMlnpk25LgxEYHKOEodfjfKclDMLcBJEVEKzDLxZxBQyztcuPJ7F54213NJS8PxoiHNMdItQ==", "dev": true, "dependencies": { - "@smithy/abort-controller": "^3.1.4", - "@smithy/types": "^3.4.2", + "@smithy/abort-controller": "^3.1.5", + "@smithy/types": "^3.5.0", "tslib": "^2.6.2" }, "engines": { @@ -9981,9 +10063,9 @@ } }, "node_modules/import-in-the-middle": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.11.1.tgz", - "integrity": "sha512-lGdg70ECFGv/OHQXL/IPhcxkFPeQ7YA4zborlA54XHVr58oM50QNxItRiayHMqj1MspC5Y9zaHf+QHod/gq7Ug==", + "version": "1.11.2", + "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.11.2.tgz", + "integrity": "sha512-gK6Rr6EykBcc6cVWRSBR5TWf8nn6hZMYSRYqCcHa0l0d1fPK7JSYo6+Mlmck76jIX9aL/IZ71c06U2VpFwl1zA==", "dev": true, "dependencies": { "acorn": "^8.8.2", @@ -11609,16 +11691,16 @@ } }, "node_modules/nango": { - "version": "0.42.13", - "resolved": "https://registry.npmjs.org/nango/-/nango-0.42.13.tgz", - "integrity": "sha512-OUK9ZhdkuPBGUtZY+TSVVLOwiyv5VNNUVFdJVSlgdn3/Rx8ftQqeVKzzlx+sJ3P2A4sJoQ85uykWyOV36vq1Ew==", + "version": "0.42.14", + "resolved": "https://registry.npmjs.org/nango/-/nango-0.42.14.tgz", + "integrity": "sha512-EfOup8xfp83cfWK929Qqv2hZxEbbERIHHMW06f9rt1Ikg6SGGJckXEo8UvhMdgxJ83klkekspi+GxrKrG/f4Zw==", "dev": true, "dependencies": { "@babel/parser": "^7.22.5", "@babel/traverse": "^7.22.5", "@babel/types": "^7.22.5", - "@nangohq/nango-yaml": "^0.42.13", - "@nangohq/shared": "^0.42.13", + "@nangohq/nango-yaml": "^0.42.14", + "@nangohq/shared": "^0.42.14", "@swc/core": "^1.5.25", "ajv": "^8.12.0", "ajv-errors": "^3.0.0", diff --git a/package.json b/package.json index f72aa4ff..28fe89d6 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "husky": "8.0.3", "js-yaml": "4.1.0", "lint-staged": "15.2.9", - "nango": "^0.42.13", + "nango": "^0.42.14", "onchange": "7.1.0", "ts-to-zod": "^3.9.1", "tsx": "^4.19.0", From c3eeee2935c46eec751618b7d72160f612544ec3 Mon Sep 17 00:00:00 2001 From: Khaliq Date: Wed, 2 Oct 2024 23:52:51 +0300 Subject: [PATCH 2/4] remove missing tests --- .../hubspot/tests/hubspot-contacts.test.ts | 53 ------------------- .../tests/hubspot-knowledge-base.test.ts | 53 ------------------- .../hubspot/tests/hubspot-owners.test.ts | 53 ------------------- .../tests/hubspot-service-tickets.test.ts | 53 ------------------- .../hubspot/tests/hubspot-users.test.ts | 53 ------------------- .../slack/tests/slack-messages.test.ts | 53 ------------------- 6 files changed, 318 deletions(-) delete mode 100644 integrations/hubspot/tests/hubspot-contacts.test.ts delete mode 100644 integrations/hubspot/tests/hubspot-knowledge-base.test.ts delete mode 100644 integrations/hubspot/tests/hubspot-owners.test.ts delete mode 100644 integrations/hubspot/tests/hubspot-service-tickets.test.ts delete mode 100644 integrations/hubspot/tests/hubspot-users.test.ts delete mode 100644 integrations/slack/tests/slack-messages.test.ts diff --git a/integrations/hubspot/tests/hubspot-contacts.test.ts b/integrations/hubspot/tests/hubspot-contacts.test.ts deleted file mode 100644 index d07e261d..00000000 --- a/integrations/hubspot/tests/hubspot-contacts.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/contacts.js"; - -describe("hubspot contacts tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "contacts", - Model: "HubspotContact" - }); - - const models = "HubspotContact".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); diff --git a/integrations/hubspot/tests/hubspot-knowledge-base.test.ts b/integrations/hubspot/tests/hubspot-knowledge-base.test.ts deleted file mode 100644 index b843ddee..00000000 --- a/integrations/hubspot/tests/hubspot-knowledge-base.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/knowledge-base.js"; - -describe("hubspot knowledge-base tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "knowledge-base", - Model: "HubspotKnowledgeBase" - }); - - const models = "HubspotKnowledgeBase".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); diff --git a/integrations/hubspot/tests/hubspot-owners.test.ts b/integrations/hubspot/tests/hubspot-owners.test.ts deleted file mode 100644 index 137582b2..00000000 --- a/integrations/hubspot/tests/hubspot-owners.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/owners.js"; - -describe("hubspot owners tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "owners", - Model: "HubspotOwner" - }); - - const models = "HubspotOwner".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); diff --git a/integrations/hubspot/tests/hubspot-service-tickets.test.ts b/integrations/hubspot/tests/hubspot-service-tickets.test.ts deleted file mode 100644 index d48d41ce..00000000 --- a/integrations/hubspot/tests/hubspot-service-tickets.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/service-tickets.js"; - -describe("hubspot service-tickets tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "service-tickets", - Model: "HubspotServiceTicket" - }); - - const models = "HubspotServiceTicket".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); diff --git a/integrations/hubspot/tests/hubspot-users.test.ts b/integrations/hubspot/tests/hubspot-users.test.ts deleted file mode 100644 index 70478426..00000000 --- a/integrations/hubspot/tests/hubspot-users.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/users.js"; - -describe("hubspot users tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "users", - Model: "HubspotUser" - }); - - const models = "HubspotUser".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); diff --git a/integrations/slack/tests/slack-messages.test.ts b/integrations/slack/tests/slack-messages.test.ts deleted file mode 100644 index 3fa115f1..00000000 --- a/integrations/slack/tests/slack-messages.test.ts +++ /dev/null @@ -1,53 +0,0 @@ -import { vi, expect, it, describe } from "vitest"; - -import fetchData from "../syncs/messages.js"; - -describe("slack messages tests", () => { - const nangoMock = new global.vitest.NangoSyncMock({ - dirname: __dirname, - name: "messages", - Model: "SlackMessage,SlackMessageReply,SlackMessageReaction" - }); - - const models = "SlackMessage,SlackMessageReply,SlackMessageReaction".split(','); - const batchSaveSpy = vi.spyOn(nangoMock, 'batchSave'); - - it("should get, map correctly the data and batchSave the result", async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchSaveData = await nangoMock.getBatchSaveData(model); - - const totalCalls = batchSaveSpy.mock.calls.length; - - if (totalCalls > models.length) { - const splitSize = Math.ceil(batchSaveData.length / totalCalls); - - const splitBatchSaveData = []; - for (let i = 0; i < totalCalls; i++) { - const chunk = batchSaveData.slice(i * splitSize, (i + 1) * splitSize); - splitBatchSaveData.push(chunk); - } - - splitBatchSaveData.forEach((data, index) => { - // @ts-ignore - expect(batchSaveSpy?.mock.calls[index][0]).toEqual(data); - }); - - } else { - expect(nangoMock.batchSave).toHaveBeenCalledWith(batchSaveData, model); - } - } - }); - - it('should get, map correctly the data and batchDelete the result', async () => { - await fetchData(nangoMock); - - for (const model of models) { - const batchDeleteData = await nangoMock.getBatchDeleteData(model); - if (batchDeleteData && batchDeleteData.length > 0) { - expect(nangoMock.batchDelete).toHaveBeenCalledWith(batchDeleteData, model); - } - } - }); -}); From b0ab3884c7b4761384097a8d74cc935dd2093fd8 Mon Sep 17 00:00:00 2001 From: Khaliq Date: Wed, 2 Oct 2024 23:54:46 +0300 Subject: [PATCH 3/4] remove missing tests --- .../hubspot/mocks/fetch-properties/input.json | 4 +- .../mocks/fetch-properties/output.json | 4896 +++++++++ .../v3/properties/deals/fetch-properties.json | 9788 ++++++++--------- 3 files changed, 9792 insertions(+), 4896 deletions(-) create mode 100644 integrations/hubspot/mocks/fetch-properties/output.json diff --git a/integrations/hubspot/mocks/fetch-properties/input.json b/integrations/hubspot/mocks/fetch-properties/input.json index d1ca3a89..d2a73ee2 100644 --- a/integrations/hubspot/mocks/fetch-properties/input.json +++ b/integrations/hubspot/mocks/fetch-properties/input.json @@ -1,3 +1,3 @@ { - "name": "deals" -} + "name": "deals" +} \ No newline at end of file diff --git a/integrations/hubspot/mocks/fetch-properties/output.json b/integrations/hubspot/mocks/fetch-properties/output.json new file mode 100644 index 00000000..a8f6ab01 --- /dev/null +++ b/integrations/hubspot/mocks/fetch-properties/output.json @@ -0,0 +1,4896 @@ +{ + "results": [ + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.293Z", + "name": "amount", + "label": "Amount", + "type": "number", + "fieldType": "number", + "description": "The total amount of the deal", + "groupName": "deal_revenue", + "options": [], + "displayOrder": 2, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2023-11-29T14:53:06.636Z", + "name": "amount_in_home_currency", + "label": "Amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "The amount of the deal, using the exchange rate, in your company's currency", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.315Z", + "name": "closed_lost_reason", + "label": "Closed Lost Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was lost", + "groupName": "deal_activity", + "options": [], + "displayOrder": 11, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2020-06-30T15:57:38.269Z", + "name": "closed_won_reason", + "label": "Closed Won Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was won", + "groupName": "deal_activity", + "options": [], + "displayOrder": 12, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.500Z", + "name": "closedate", + "label": "Close Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was closed. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 5, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-12T20:49:12.385Z", + "createdAt": "2020-06-30T15:57:38.305Z", + "name": "createdate", + "label": "Create Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-22T18:11:17.355Z", + "createdAt": "2019-08-06T02:41:52.984Z", + "name": "days_to_close", + "label": "Days to close", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "max(0, round_down(((closedate - createdate) / 86400000), 0))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2020-06-30T15:57:38.478Z", + "name": "deal_currency_code", + "label": "Currency", + "type": "enumeration", + "fieldType": "select", + "description": "Currency code for the deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2019-08-06T02:41:52.132Z", + "name": "dealname", + "label": "Deal Name", + "type": "string", + "fieldType": "text", + "description": "The name given to this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 0, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.180Z", + "name": "dealstage", + "label": "Deal Stage", + "type": "enumeration", + "fieldType": "radio", + "description": "The stage of the deal. Deal stages allow you to categorize and track the progress of the deals that you are working on.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 3, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-08-06T02:41:52.542Z", + "name": "dealtype", + "label": "Deal Type", + "type": "enumeration", + "fieldType": "radio", + "description": "The type of deal. By default, categorize your deal as either a New Business or Existing Business.", + "groupName": "dealinformation", + "options": [ + { + "label": "New Business", + "value": "newbusiness", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Existing Business", + "value": "existingbusiness", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": 8, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:58:22.852Z", + "createdAt": "2019-08-06T02:41:52.595Z", + "name": "description", + "label": "Deal Description", + "type": "string", + "fieldType": "textarea", + "description": "Description of the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:57:32.710Z", + "createdAt": "2020-06-30T15:57:38.391Z", + "name": "engagements_last_meeting_booked", + "label": "Date of last meeting booked in meetings tool", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting an associated contact has booked through the meetings tool.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.202Z", + "name": "engagements_last_meeting_booked_campaign", + "label": "Campaign of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which marketing campaign (e.g. a specific email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.512Z", + "name": "engagements_last_meeting_booked_medium", + "label": "Medium of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which channel (e.g. email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.235Z", + "name": "engagements_last_meeting_booked_source", + "label": "Source of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which site (e.g. Twitter) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link. ", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-03T15:10:48.521Z", + "createdAt": "2020-06-30T15:57:38.357Z", + "name": "hs_acv", + "label": "Annual contract value", + "type": "number", + "fieldType": "number", + "description": "The annual contract value (ACV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.903Z", + "name": "hs_all_accessible_team_ids", + "label": "All teams", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs, including the team hierarchy, of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-12T14:52:22.589Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_all_assigned_business_unit_ids", + "label": "Business units", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The business units this record is assigned to.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-15T18:53:29.419Z", + "createdAt": "2022-05-02T19:41:37.305Z", + "name": "hs_all_collaborator_owner_ids", + "label": "Deal Collaborator", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Owner ids of the users involved in closing the deal", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2021-11-23T15:31:07.889Z", + "name": "hs_all_deal_split_owner_ids", + "label": "Deal Split Users", + "type": "enumeration", + "fieldType": "select", + "description": "The owner ids of all associated Deal Splits. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.824Z", + "name": "hs_all_owner_ids", + "label": "All owner IDs", + "type": "enumeration", + "fieldType": "select", + "description": "Values of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 8, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.865Z", + "name": "hs_all_team_ids", + "label": "All team IDs", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:22:23.694Z", + "name": "hs_analytics_latest_source", + "label": "Latest Source", + "type": "enumeration", + "fieldType": "number", + "description": "Source for the contact either directly or indirectly associated with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_contact) else string(hs_analytics_latest_source_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:06:22.930Z", + "name": "hs_analytics_latest_source_company", + "label": "Latest Source Company", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the company with an associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:03:52.928Z", + "name": "hs_analytics_latest_source_contact", + "label": "Latest Source Contact", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the directly associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:25:58.108Z", + "name": "hs_analytics_latest_source_data_1", + "label": "Latest Source Data 1", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_1_contact) else string(hs_analytics_latest_source_data_1_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:10:23.992Z", + "name": "hs_analytics_latest_source_data_1_company", + "label": "Latest Source Data 1 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal (via a company association)", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:09:39.907Z", + "name": "hs_analytics_latest_source_data_1_contact", + "label": "Latest Source Data 1 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:26:53.632Z", + "name": "hs_analytics_latest_source_data_2", + "label": "Latest Source Data 2", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_2_contact) else string(hs_analytics_latest_source_data_2_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:13:35.323Z", + "name": "hs_analytics_latest_source_data_2_company", + "label": "Latest Source Data 2 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:12:11.033Z", + "name": "hs_analytics_latest_source_data_2_contact", + "label": "Latest Source Data 2 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:28:22.477Z", + "name": "hs_analytics_latest_source_timestamp", + "label": "Latest Source Timestamp", + "type": "datetime", + "fieldType": "number", + "description": "Timestamp of when latest source occurred for either a directly or indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then hs_analytics_latest_source_timestamp_contact else hs_analytics_latest_source_timestamp_company", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-05T21:43:47.114Z", + "createdAt": "2022-05-02T21:23:31.015Z", + "name": "hs_analytics_latest_source_timestamp_company", + "label": "Latest Source Timestamp Company", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for an indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:16:19.566Z", + "name": "hs_analytics_latest_source_timestamp_contact", + "label": "Latest Source Timestamp Contact", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for a directly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:08:57.187Z", + "createdAt": "2019-08-06T02:41:53.038Z", + "name": "hs_analytics_source", + "label": "Original Source", + "type": "enumeration", + "fieldType": "select", + "description": "Original source for the contact with the earliest activity for this deal.", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:09:38.600Z", + "createdAt": "2019-08-06T02:41:53.115Z", + "name": "hs_analytics_source_data_1", + "label": "Original Source Drill-Down 1", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:03:42.294Z", + "createdAt": "2019-08-06T02:41:53.170Z", + "name": "hs_analytics_source_data_2", + "label": "Original Source Drill-Down 2", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:55:02.326Z", + "createdAt": "2020-06-30T15:57:38.247Z", + "name": "hs_arr", + "label": "Annual recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The annual recurring revenue (ARR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2019-08-06T02:41:53.315Z", + "name": "hs_campaign", + "label": "HubSpot Campaign", + "type": "string", + "fieldType": "text", + "description": "The marketing campaign the deal is associated with", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2019-10-14T20:45:57.018Z", + "name": "hs_closed_amount", + "label": "Closed Deal Amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-10-14T20:45:57.070Z", + "name": "hs_closed_amount_in_home_currency", + "label": "Closed Deal Amount In Home Currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount in home currency if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount_in_home_currency else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-19T00:55:26.343Z", + "createdAt": "2024-06-19T00:55:26.343Z", + "name": "hs_closed_deal_close_date", + "label": "Closed Deal Close Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Close date populated only if this deal is closed and valid", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(closedate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-17T13:06:21.303Z", + "createdAt": "2024-06-17T13:06:21.303Z", + "name": "hs_closed_deal_create_date", + "label": "Closed Deal Create Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is closed", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(createdate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-16T20:21:20.155Z", + "name": "hs_closed_won_count", + "label": "Is Closed Won (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed won, otherwise 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-18T17:56:28.363Z", + "name": "hs_closed_won_date", + "label": "Closed Won Date (Internal)", + "type": "datetime", + "fieldType": "date", + "description": "Returns closedate if this deal is closed won", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then closedate endif", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:51:11.435Z", + "name": "hs_created_by_user_id", + "label": "Created by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who created this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:56:18.537Z", + "createdAt": "2019-08-06T02:41:52.503Z", + "name": "hs_createdate", + "label": "HubSpot Create Date", + "type": "datetime", + "fieldType": "date", + "description": "The date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:42:41.452Z", + "name": "hs_date_entered_appointmentscheduled", + "label": "Date entered 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:30.382Z", + "name": "hs_date_entered_closedlost", + "label": "Date entered 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:13.551Z", + "name": "hs_date_entered_closedwon", + "label": "Date entered 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:57.538Z", + "name": "hs_date_entered_contractsent", + "label": "Date entered 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:41.289Z", + "name": "hs_date_entered_decisionmakerboughtin", + "label": "Date entered 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:26.610Z", + "name": "hs_date_entered_presentationscheduled", + "label": "Date entered 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:10.231Z", + "name": "hs_date_entered_qualifiedtobuy", + "label": "Date entered 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:42:49.082Z", + "name": "hs_date_exited_appointmentscheduled", + "label": "Date exited 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:38.966Z", + "name": "hs_date_exited_closedlost", + "label": "Date exited 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:18.739Z", + "name": "hs_date_exited_closedwon", + "label": "Date exited 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:02.815Z", + "name": "hs_date_exited_contractsent", + "label": "Date exited 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:46.148Z", + "name": "hs_date_exited_decisionmakerboughtin", + "label": "Date exited 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:31.307Z", + "name": "hs_date_exited_presentationscheduled", + "label": "Date exited 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:15.688Z", + "name": "hs_date_exited_qualifiedtobuy", + "label": "Date exited 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-07T15:27:11.457Z", + "createdAt": "2023-08-07T15:27:11.457Z", + "name": "hs_days_to_close_raw", + "label": "Days to close (without rounding)", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close, without rounding", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(max(0, (closedate - createdate)) / 86400000)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-08-06T02:41:53.235Z", + "name": "hs_deal_amount_calculation_preference", + "label": "Deal amount calculation preference", + "type": "enumeration", + "fieldType": "radio", + "description": "Specifies how deal amount should be calculated from line items", + "groupName": "dealinformation", + "options": [ + { + "label": "Total Contract Value", + "value": "TCV", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Annual Recurring Revenue", + "value": "ARR", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Monthly Recurring Revenue", + "value": "MRR", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Custom", + "value": "CUSTOM", + "displayOrder": 3, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-08T17:23:23.010Z", + "createdAt": "2023-10-18T19:56:30.580Z", + "name": "hs_deal_score", + "label": "Deal Score", + "type": "number", + "fieldType": "number", + "description": "The predictive deal score calculated by Hubspot AI to score the deal health", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:25:44.469Z", + "name": "hs_deal_stage_probability", + "label": "Deal probability", + "type": "number", + "fieldType": "number", + "description": "The probability a deal will close. This defaults to the deal stage probability setting.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-05-20T13:32:10.289Z", + "name": "hs_deal_stage_probability_shadow", + "label": "Deal stage probability shadow", + "type": "number", + "fieldType": "calculation_equation", + "description": "Fall back property for calculating the deal stage when no customer override exist. Probability between 0 and 1 of deal stage. Defaults to 0 for unknown deal stages.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(pipeline_probability(string(dealstage))) then pipeline_probability(string(dealstage)) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-01-19T19:21:11.345Z", + "createdAt": "2023-11-29T14:53:04.344Z", + "name": "hs_exchange_rate", + "label": "Exchange rate", + "type": "number", + "fieldType": "number", + "description": "This is the exchange rate used to convert the deal amount into your company currency.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-10-29T20:22:45.530Z", + "name": "hs_forecast_amount", + "label": "Forecast amount", + "type": "number", + "fieldType": "number", + "description": "The custom forecasted deal value calculated by multiplying the forecast probability and deal amount in your company’s currency.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_forecast_probability) then (hs_forecast_probability * amount_in_home_currency) else amount_in_home_currency", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-10-29T20:17:48.778Z", + "name": "hs_forecast_probability", + "label": "Forecast probability", + "type": "number", + "fieldType": "number", + "description": "The custom percent probability a deal will close.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-16T14:05:17.485Z", + "createdAt": "2024-05-16T14:05:17.485Z", + "name": "hs_has_empty_conditional_stage_properties", + "label": "Has Empty Conditional Stage Properties", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is missing conditional stage property values required to progress to the next deal stage. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-25T15:11:56.356Z", + "createdAt": "2024-01-10T18:05:14.186Z", + "name": "hs_is_active_shared_deal", + "label": "Is Active Shared Deal", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Indicates if the current deal is an active shared deal. It is set automatically based on the value of hs_num_associated_active_deal_registrations.", + "groupName": "deal_activity", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-10-07T15:45:48.973Z", + "name": "hs_is_closed", + "label": "Is Deal Closed?", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal was won or lost.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(pipeline_probability(string(dealstage)) <= 0 or pipeline_probability(string(dealstage)) >= 1)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-07-31T16:24:00.492Z", + "createdAt": "2024-07-31T16:24:00.492Z", + "name": "hs_is_closed_count", + "label": "Is Closed (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed (\"Closed Won\" or \"Closed Lost\"), otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-14T21:11:56.135Z", + "createdAt": "2024-08-14T21:11:56.135Z", + "name": "hs_is_closed_lost", + "label": "Is closed lost", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed lost state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability <= 0) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-21T19:08:46.054Z", + "createdAt": "2021-03-19T17:16:09.655Z", + "name": "hs_is_closed_won", + "label": "Is Closed Won", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed won state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-09-01T17:20:22.955Z", + "name": "hs_is_deal_split", + "label": "Deal Split Added", + "type": "bool", + "fieldType": "calculation_equation", + "description": "Indicates if the deal is split between multiple users.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_num_associated_deal_splits) and hs_num_associated_deal_splits > 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-29T18:11:13.359Z", + "createdAt": "2024-05-29T18:11:13.359Z", + "name": "hs_is_in_first_deal_stage", + "label": "Is In First Deal Stage", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is in the first stage of its pipeline. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-09T17:22:38.951Z", + "createdAt": "2023-08-04T16:56:09.192Z", + "name": "hs_is_open_count", + "label": "Is Open (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is not closed won or closed lost, otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else 1", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:02:40.168Z", + "createdAt": "2020-06-30T15:57:38.258Z", + "name": "hs_lastmodifieddate", + "label": "Last Modified Date", + "type": "datetime", + "fieldType": "date", + "description": "Most recent timestamp of any property update for this deal. This includes HubSpot internal properties, which can be visible or hidden. This property is updated automatically.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-19T15:11:03.313Z", + "createdAt": "2024-03-05T17:51:26.432Z", + "name": "hs_latest_approval_status", + "label": "Latest Approval Status", + "type": "string", + "fieldType": "text", + "description": "The latest approval status. Used by HubSpot to track pipeline approval processes.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-22T19:52:16.821Z", + "createdAt": "2024-03-18T20:26:26.241Z", + "name": "hs_latest_approval_status_approval_id", + "label": "Latest Approval Status Approval ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the approval object containing the latest approval status.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:25:22.440Z", + "name": "hs_latest_meeting_activity", + "label": "Latest meeting activity", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting (past or upcoming) logged for, scheduled with, or booked by a contact associated with this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:03:10.610Z", + "createdAt": "2020-02-07T22:31:06.307Z", + "name": "hs_likelihood_to_close", + "label": "Likelihood to close by the close date", + "type": "number", + "fieldType": "number", + "description": "Hubspot predicted likelihood between 0 and 1 of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:31.672Z", + "name": "hs_line_item_global_term_hs_discount_percentage", + "label": "Global Term Line Item Discount Percentage", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for the discount percentage applied.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:05:24.809Z", + "createdAt": "2020-09-11T16:26:50.864Z", + "name": "hs_line_item_global_term_hs_discount_percentage_enabled", + "label": "Global Term Line Item Discount Percentage Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for the discount percentage is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:44.389Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period", + "label": "Global Term Line Item Recurring Billing Period", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for product recurring billing duration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-09-11T16:27:03.492Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period_enabled", + "label": "Global Term Line Item Recurring Billing Period Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for product recurring billing duration is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:50.722Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date", + "label": "Global Term Line Item Recurring Billing Start Date", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for recurring billing start date for a line item.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:43:51.982Z", + "createdAt": "2020-09-11T16:27:10.044Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date_enabled", + "label": "Global Term Line Item Recurring Billing Start Date Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for recurring billing start date for a line item is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-08-04T17:58:37.932Z", + "name": "hs_line_item_global_term_recurringbillingfrequency", + "label": "Global Term Line Item Recurring Billing Frequency", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for how frequently the product is billed.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:10:51.287Z", + "createdAt": "2020-09-11T16:26:57.093Z", + "name": "hs_line_item_global_term_recurringbillingfrequency_enabled", + "label": "Global Term Line Item Recurring Billing Frequency Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for how frequently the product is billed is enabled", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-06-30T15:57:38.339Z", + "name": "hs_manual_forecast_category", + "label": "Forecast category", + "type": "enumeration", + "fieldType": "select", + "description": "The likelihood a deal will close. This property is used for manual forecasting your deals.", + "groupName": "dealinformation", + "options": [ + { + "label": "Not forecasted", + "value": "OMIT", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Pipeline", + "value": "PIPELINE", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Best case", + "value": "BEST_CASE", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Commit", + "value": "COMMIT", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Closed won", + "value": "CLOSED", + "description": "", + "displayOrder": 5, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:36:33.896Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_merged_object_ids", + "label": "Merged Deal IDs", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The list of Deal record IDs that have been merged into this Deal. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:06:29.497Z", + "createdAt": "2020-06-30T15:57:38.442Z", + "name": "hs_mrr", + "label": "Monthly recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The monthly recurring revenue (MRR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-07-10T20:41:18.146Z", + "name": "hs_next_step", + "label": "Next step", + "type": "string", + "fieldType": "textarea", + "description": "A short description of the next step for the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-05T16:53:28.980Z", + "createdAt": "2024-08-05T16:53:28.980Z", + "name": "hs_next_step_updated_at", + "label": "Next Step Updated At", + "type": "datetime", + "fieldType": "calculation_equation", + "description": "Timestamp of the most recent update to Next Step property", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "string_to_number(timestamp(hs_next_step))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-06T18:47:41.895Z", + "createdAt": "2024-05-06T18:47:41.895Z", + "name": "hs_notes_last_activity", + "label": "Last Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the last activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T21:40:39.783Z", + "createdAt": "2024-03-13T21:40:39.783Z", + "name": "hs_notes_next_activity", + "label": "Next Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the next upcoming activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-27T16:35:27.302Z", + "createdAt": "2024-02-27T16:35:27.302Z", + "name": "hs_notes_next_activity_type", + "label": "Next Activity Type", + "type": "enumeration", + "fieldType": "select", + "description": "The type of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "dealinformation", + "options": [ + { + "label": "Call", + "value": "CALL", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Conversation session", + "value": "CONVERSATION_SESSION", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email reply from contact", + "value": "INCOMING_EMAIL", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Email sent to contact", + "value": "EMAIL", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Forwarded email", + "value": "FORWARDED_EMAI", + "displayOrder": 4, + "hidden": false + }, + { + "label": "LinkedIn message", + "value": "LINKEDIN_MESSAGE", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Meeting", + "value": "MEETING", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Note", + "value": "NOTE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Postal mail", + "value": "POSTAL_MAIL", + "displayOrder": 8, + "hidden": false + }, + { + "label": "Publishing task", + "value": "PUBLISHING_TASK", + "displayOrder": 9, + "hidden": false + }, + { + "label": "SMS", + "value": "SMS", + "displayOrder": 10, + "hidden": false + }, + { + "label": "Task", + "value": "TASK", + "displayOrder": 11, + "hidden": false + }, + { + "label": "WhatsApp", + "value": "WHATS_APP", + "displayOrder": 12, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:00.029Z", + "createdAt": "2021-09-07T12:44:12.716Z", + "name": "hs_num_associated_active_deal_registrations", + "label": "Number of Active Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of active deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:15.269Z", + "createdAt": "2021-09-07T12:43:20.975Z", + "name": "hs_num_associated_deal_registrations", + "label": "Number of Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-03-18T20:41:32.514Z", + "name": "hs_num_associated_deal_splits", + "label": "Number of Deal Splits", + "type": "number", + "fieldType": "number", + "description": "The number of deal splits associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-22T13:37:58.912Z", + "createdAt": "2023-05-22T13:37:58.912Z", + "name": "hs_num_of_associated_line_items", + "label": "Number of Associated Line Items", + "type": "number", + "fieldType": "number", + "description": "The number of line items associated with this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2021-04-02T19:12:50.614Z", + "name": "hs_num_target_accounts", + "label": "Number of target accounts", + "type": "number", + "fieldType": "number", + "description": "The number of target account companies associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_id", + "label": "Record ID", + "type": "number", + "fieldType": "number", + "description": "The unique ID for this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source", + "label": "Record creation source", + "type": "string", + "fieldType": "text", + "description": "Raw internal PropertySource present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_1", + "label": "Record source detail 1", + "type": "string", + "fieldType": "text", + "description": "First level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_2", + "label": "Record source detail 2", + "type": "string", + "fieldType": "text", + "description": "Second level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_3", + "label": "Record source detail 3", + "type": "string", + "fieldType": "text", + "description": "Third level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_id", + "label": "Record creation source ID", + "type": "string", + "fieldType": "text", + "description": "Raw internal sourceId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_label", + "label": "Record source", + "type": "enumeration", + "fieldType": "select", + "description": "How this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_user_id", + "label": "Record creation source user ID", + "type": "number", + "fieldType": "number", + "description": "Raw internal userId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-12T05:34:12.696Z", + "createdAt": "2024-06-12T05:34:12.696Z", + "name": "hs_open_deal_create_date", + "label": "Open deal create date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is open", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else time_between(createdate, 0)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T19:46:23.447Z", + "createdAt": "2022-07-25T20:58:45.636Z", + "name": "hs_pinned_engagement_id", + "label": "Pinned Engagement ID", + "type": "number", + "fieldType": "number", + "description": "The object ID of the current pinned engagement. This will only be shown if there is already an association to the engagement.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:33:43.508Z", + "name": "hs_predicted_amount", + "label": "The predicted deal amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount)) then (hs_likelihood_to_close * amount) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:08:31.557Z", + "createdAt": "2020-02-07T22:38:42.351Z", + "name": "hs_predicted_amount_in_home_currency", + "label": "The predicted deal amount in your company's currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount in your company's currency times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount_in_home_currency)) then (hs_likelihood_to_close * amount_in_home_currency) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2021-04-13T18:44:53.526Z", + "name": "hs_priority", + "label": "Priority", + "type": "enumeration", + "fieldType": "select", + "description": "", + "groupName": "dealinformation", + "options": [ + { + "label": "Low", + "value": "low", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Medium", + "value": "medium", + "displayOrder": 1, + "hidden": false + }, + { + "label": "High", + "value": "high", + "displayOrder": 2, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:26:39.754Z", + "name": "hs_projected_amount", + "label": "Weighted amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:39:50.422Z", + "createdAt": "2021-07-29T14:27:23.100Z", + "name": "hs_projected_amount_in_home_currency", + "label": "Weighted amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount in home currency times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount_in_home_currency) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_read_only", + "label": "Read only object", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Determines whether a record can be edited by a user.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2019-08-06T02:41:53.649Z", + "name": "hs_sales_email_last_replied", + "label": "Recent Sales Email Replied Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a tracked sales email was replied to for this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:57:36.328Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_team_ids", + "label": "Shared teams", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional teams whose users can access the Deal based on their permissions. This can be set manually or through Workflows or APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:46:14.081Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_user_ids", + "label": "Shared users", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional users that can access the Deal based on their permissions. This can be set manually or through Workflows and APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-20T17:16:59.235Z", + "createdAt": "2023-04-20T17:16:59.235Z", + "name": "hs_source_object_id", + "label": "Source Object ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the object from which the data was migrated. This is set automatically during portal data migration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-20T16:18:04.288Z", + "createdAt": "2023-01-13T15:52:17.575Z", + "name": "hs_tag_ids", + "label": "Deal Tags", + "type": "enumeration", + "fieldType": "checkbox", + "description": "List of tag ids applicable to a deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:10:33.836Z", + "createdAt": "2020-06-30T15:57:38.369Z", + "name": "hs_tcv", + "label": "Total contract value", + "type": "number", + "fieldType": "number", + "description": "The total contract value (TCV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:43:02.193Z", + "name": "hs_time_in_appointmentscheduled", + "label": "Time in 'Appointment Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:44.326Z", + "name": "hs_time_in_closedlost", + "label": "Time in 'Closed Lost (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:44:24.100Z", + "name": "hs_time_in_closedwon", + "label": "Time in 'Closed Won (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:08.472Z", + "name": "hs_time_in_contractsent", + "label": "Time in 'Contract Sent (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:51.900Z", + "name": "hs_time_in_decisionmakerboughtin", + "label": "Time in 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:36.284Z", + "name": "hs_time_in_presentationscheduled", + "label": "Time in 'Presentation Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:21.488Z", + "name": "hs_time_in_qualifiedtobuy", + "label": "Time in 'Qualified To Buy (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_unique_creation_key", + "label": "Unique creation key", + "type": "string", + "fieldType": "text", + "description": "Unique property used for idempotent creates", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": true, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:53:25.402Z", + "name": "hs_updated_by_user_id", + "label": "Updated by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who last updated this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_followers", + "label": "User IDs of all notification followers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all users that have clicked follow within the object to opt-in to getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_unfollowers", + "label": "User IDs of all notification unfollowers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all object owners that have clicked unfollow within the object to opt-out of getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_owners", + "label": "User IDs of all owners", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all owners of this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.285Z", + "createdAt": "2023-10-31T14:36:55.546Z", + "name": "hs_v2_cumulative_time_in_appointmentscheduled", + "label": "Cumulative time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.700Z", + "createdAt": "2023-10-31T14:38:49.348Z", + "name": "hs_v2_cumulative_time_in_closedlost", + "label": "Cumulative time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.380Z", + "createdAt": "2023-10-31T14:38:31.273Z", + "name": "hs_v2_cumulative_time_in_closedwon", + "label": "Cumulative time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.633Z", + "createdAt": "2023-10-31T14:38:16.005Z", + "name": "hs_v2_cumulative_time_in_contractsent", + "label": "Cumulative time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.903Z", + "createdAt": "2023-10-31T14:37:54.704Z", + "name": "hs_v2_cumulative_time_in_decisionmakerboughtin", + "label": "Cumulative time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.427Z", + "createdAt": "2023-10-31T14:37:39.160Z", + "name": "hs_v2_cumulative_time_in_presentationscheduled", + "label": "Cumulative time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.093Z", + "createdAt": "2023-10-31T14:37:19.856Z", + "name": "hs_v2_cumulative_time_in_qualifiedtobuy", + "label": "Cumulative time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.240Z", + "createdAt": "2023-11-15T15:17:23.332Z", + "name": "hs_v2_date_entered_appointmentscheduled", + "label": "Date entered \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.527Z", + "createdAt": "2023-11-28T15:49:52.548Z", + "name": "hs_v2_date_entered_closedlost", + "label": "Date entered \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:28.311Z", + "createdAt": "2023-11-15T15:21:44.137Z", + "name": "hs_v2_date_entered_closedwon", + "label": "Date entered \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.333Z", + "createdAt": "2023-11-15T15:21:21.172Z", + "name": "hs_v2_date_entered_contractsent", + "label": "Date entered \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.536Z", + "createdAt": "2023-11-15T15:21:03.201Z", + "name": "hs_v2_date_entered_decisionmakerboughtin", + "label": "Date entered \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.478Z", + "createdAt": "2023-11-15T15:20:42.940Z", + "name": "hs_v2_date_entered_presentationscheduled", + "label": "Date entered \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.176Z", + "createdAt": "2023-11-15T15:20:19.853Z", + "name": "hs_v2_date_entered_qualifiedtobuy", + "label": "Date entered \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.753Z", + "createdAt": "2023-10-31T14:14:27.022Z", + "name": "hs_v2_date_exited_appointmentscheduled", + "label": "Date exited \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.301Z", + "createdAt": "2023-10-31T14:16:30.735Z", + "name": "hs_v2_date_exited_closedlost", + "label": "Date exited \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.162Z", + "createdAt": "2023-10-31T14:16:10.149Z", + "name": "hs_v2_date_exited_closedwon", + "label": "Date exited \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.012Z", + "createdAt": "2023-10-31T14:15:48.428Z", + "name": "hs_v2_date_exited_contractsent", + "label": "Date exited \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.588Z", + "createdAt": "2023-10-31T14:15:30.251Z", + "name": "hs_v2_date_exited_decisionmakerboughtin", + "label": "Date exited \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.853Z", + "createdAt": "2023-11-28T15:26:12.794Z", + "name": "hs_v2_date_exited_presentationscheduled", + "label": "Date exited \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.482Z", + "createdAt": "2023-10-31T14:14:47.853Z", + "name": "hs_v2_date_exited_qualifiedtobuy", + "label": "Date exited \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.953Z", + "createdAt": "2023-10-31T14:27:02.455Z", + "name": "hs_v2_latest_time_in_appointmentscheduled", + "label": "Latest time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.591Z", + "createdAt": "2023-11-28T15:21:59.678Z", + "name": "hs_v2_latest_time_in_closedlost", + "label": "Latest time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.431Z", + "createdAt": "2023-11-28T15:23:54.642Z", + "name": "hs_v2_latest_time_in_closedwon", + "label": "Latest time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.365Z", + "createdAt": "2023-10-31T14:34:32.116Z", + "name": "hs_v2_latest_time_in_contractsent", + "label": "Latest time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.236Z", + "createdAt": "2023-10-31T14:34:12.684Z", + "name": "hs_v2_latest_time_in_decisionmakerboughtin", + "label": "Latest time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.804Z", + "createdAt": "2023-11-28T15:25:09.770Z", + "name": "hs_v2_latest_time_in_presentationscheduled", + "label": "Latest time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.644Z", + "createdAt": "2023-10-31T14:33:36.111Z", + "name": "hs_v2_latest_time_in_qualifiedtobuy", + "label": "Latest time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_was_imported", + "label": "Performed in an import", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Object is part of an import", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-06-30T15:57:38.224Z", + "name": "hubspot_owner_assigneddate", + "label": "Owner assigned date", + "type": "datetime", + "fieldType": "date", + "description": "The most recent timestamp of when an owner was assigned to this record. This value is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.418Z", + "name": "hubspot_owner_id", + "label": "Deal owner", + "type": "enumeration", + "fieldType": "select", + "description": "User the deal is assigned to. Assign additional users to a deal record by creating a custom user property.", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": 6, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-29T21:49:22.423Z", + "createdAt": "2020-06-30T15:57:38.380Z", + "name": "hubspot_team_id", + "label": "HubSpot Team", + "type": "enumeration", + "fieldType": "select", + "description": "Primary team of the deal owner. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-06-30T15:57:38.430Z", + "name": "notes_last_contacted", + "label": "Last Contacted", + "type": "datetime", + "fieldType": "date", + "description": "The last time a call, sales email, or meeting was logged for this deal. This is set automatically by HubSpot based on user actions.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.281Z", + "name": "notes_last_updated", + "label": "Last Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a note, call, email, meeting, or task was logged for a deal. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.326Z", + "name": "notes_next_activity_date", + "label": "Next Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The date of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2019-08-06T02:41:52.683Z", + "name": "num_associated_contacts", + "label": "Number of Associated Contacts", + "type": "number", + "fieldType": "number", + "description": "The number of contacts associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:06:03.441Z", + "createdAt": "2020-06-30T15:57:38.490Z", + "name": "num_contacted_notes", + "label": "Number of times contacted", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:05:17.168Z", + "createdAt": "2020-06-30T15:57:38.523Z", + "name": "num_notes", + "label": "Number of Sales Activities", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, task, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.191Z", + "name": "pipeline", + "label": "Pipeline", + "type": "enumeration", + "fieldType": "select", + "description": "The pipeline the deal is in. This determines which stages are options for the deal.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 4, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + } + ] +} \ No newline at end of file diff --git a/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json b/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json index 4bfa78db..a8f6ab01 100644 --- a/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json +++ b/integrations/hubspot/mocks/nango/get/proxy/crm/v3/properties/deals/fetch-properties.json @@ -1,4896 +1,4896 @@ { - "results": [ - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.293Z", - "name": "amount", - "label": "Amount", - "type": "number", - "fieldType": "number", - "description": "The total amount of the deal", - "groupName": "deal_revenue", - "options": [], - "displayOrder": 2, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2023-11-29T14:53:06.636Z", - "name": "amount_in_home_currency", - "label": "Amount in company currency", - "type": "number", - "fieldType": "calculation_equation", - "description": "The amount of the deal, using the exchange rate, in your company's currency", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:32:28.368Z", - "createdAt": "2020-06-30T15:57:38.315Z", - "name": "closed_lost_reason", - "label": "Closed Lost Reason", - "type": "string", - "fieldType": "textarea", - "description": "Reason why this deal was lost", - "groupName": "deal_activity", - "options": [], - "displayOrder": 11, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": false, - "readOnlyDefinition": false, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:30:05.213Z", - "createdAt": "2020-06-30T15:57:38.269Z", - "name": "closed_won_reason", - "label": "Closed Won Reason", - "type": "string", - "fieldType": "textarea", - "description": "Reason why this deal was won", - "groupName": "deal_activity", - "options": [], - "displayOrder": 12, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": false, - "readOnlyDefinition": false, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.500Z", - "name": "closedate", - "label": "Close Date", - "type": "datetime", - "fieldType": "date", - "description": "Date the deal was closed. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 5, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-04-12T20:49:12.385Z", - "createdAt": "2020-06-30T15:57:38.305Z", - "name": "createdate", - "label": "Create Date", - "type": "datetime", - "fieldType": "date", - "description": "Date the deal was created. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-12-22T18:11:17.355Z", - "createdAt": "2019-08-06T02:41:52.984Z", - "name": "days_to_close", - "label": "Days to close", - "type": "number", - "fieldType": "calculation_equation", - "description": "The number of days the deal took to close", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "max(0, round_down(((closedate - createdate) / 86400000), 0))", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-08-11T16:42:34.454Z", - "createdAt": "2020-06-30T15:57:38.478Z", - "name": "deal_currency_code", - "label": "Currency", - "type": "enumeration", - "fieldType": "select", - "description": "Currency code for the deal.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2019-08-06T02:41:52.132Z", - "name": "dealname", - "label": "Deal Name", - "type": "string", - "fieldType": "text", - "description": "The name given to this deal.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 0, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.180Z", - "name": "dealstage", - "label": "Deal Stage", - "type": "enumeration", - "fieldType": "radio", - "description": "The stage of the deal. Deal stages allow you to categorize and track the progress of the deals that you are working on.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 3, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyOptions": false, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:11:07.210Z", - "createdAt": "2019-08-06T02:41:52.542Z", - "name": "dealtype", - "label": "Deal Type", - "type": "enumeration", - "fieldType": "radio", - "description": "The type of deal. By default, categorize your deal as either a New Business or Existing Business.", - "groupName": "dealinformation", - "options": [ - { - "label": "New Business", - "value": "newbusiness", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Existing Business", - "value": "existingbusiness", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": 8, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyOptions": false, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:58:22.852Z", - "createdAt": "2019-08-06T02:41:52.595Z", - "name": "description", - "label": "Deal Description", - "type": "string", - "fieldType": "textarea", - "description": "Description of the deal", - "groupName": "dealinformation", - "options": [], - "displayOrder": 9, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:57:32.710Z", - "createdAt": "2020-06-30T15:57:38.391Z", - "name": "engagements_last_meeting_booked", - "label": "Date of last meeting booked in meetings tool", - "type": "datetime", - "fieldType": "date", - "description": "The date of the most recent meeting an associated contact has booked through the meetings tool.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:59:02.276Z", - "createdAt": "2020-06-30T15:57:38.202Z", - "name": "engagements_last_meeting_booked_campaign", - "label": "Campaign of last booking in meetings tool", - "type": "string", - "fieldType": "text", - "description": "This UTM parameter shows which marketing campaign (e.g. a specific email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:59:02.276Z", - "createdAt": "2020-06-30T15:57:38.512Z", - "name": "engagements_last_meeting_booked_medium", - "label": "Medium of last booking in meetings tool", - "type": "string", - "fieldType": "text", - "description": "This UTM parameter shows which channel (e.g. email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:59:02.276Z", - "createdAt": "2020-06-30T15:57:38.235Z", - "name": "engagements_last_meeting_booked_source", - "label": "Source of last booking in meetings tool", - "type": "string", - "fieldType": "text", - "description": "This UTM parameter shows which site (e.g. Twitter) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link. ", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-06-03T15:10:48.521Z", - "createdAt": "2020-06-30T15:57:38.357Z", - "name": "hs_acv", - "label": "Annual contract value", - "type": "number", - "fieldType": "number", - "description": "The annual contract value (ACV) of this deal.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2019-08-06T02:41:53.903Z", - "name": "hs_all_accessible_team_ids", - "label": "All teams", - "type": "enumeration", - "fieldType": "select", - "description": "The team IDs, including the team hierarchy, of all default and custom owner properties for this record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 10, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-12-12T14:52:22.589Z", - "createdAt": "1970-01-01T00:00:00Z", - "name": "hs_all_assigned_business_unit_ids", - "label": "Business units", - "type": "enumeration", - "fieldType": "checkbox", - "description": "The business units this record is assigned to.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-15T18:53:29.419Z", - "createdAt": "2022-05-02T19:41:37.305Z", - "name": "hs_all_collaborator_owner_ids", - "label": "Deal Collaborator", - "type": "enumeration", - "fieldType": "checkbox", - "description": "Owner ids of the users involved in closing the deal", - "groupName": "dealinformation", - "options": [], - "referencedObjectType": "OWNER", - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-08-11T16:42:34.454Z", - "createdAt": "2021-11-23T15:31:07.889Z", - "name": "hs_all_deal_split_owner_ids", - "label": "Deal Split Users", - "type": "enumeration", - "fieldType": "select", - "description": "The owner ids of all associated Deal Splits. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2019-08-06T02:41:53.824Z", - "name": "hs_all_owner_ids", - "label": "All owner IDs", - "type": "enumeration", - "fieldType": "select", - "description": "Values of all default and custom owner properties for this record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 8, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2019-08-06T02:41:53.865Z", - "name": "hs_all_team_ids", - "label": "All team IDs", - "type": "enumeration", - "fieldType": "select", - "description": "The team IDs of all default and custom owner properties for this record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 9, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-06T19:22:23.694Z", - "name": "hs_analytics_latest_source", - "label": "Latest Source", - "type": "enumeration", - "fieldType": "number", - "description": "Source for the contact either directly or indirectly associated with the last session activity for this deal", - "groupName": "analyticsinformation", - "options": [ - { - "label": "Organic Search", - "value": "ORGANIC_SEARCH", - "description": "", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Paid Search", - "value": "PAID_SEARCH", - "description": "", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Email Marketing", - "value": "EMAIL_MARKETING", - "description": "", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Organic Social", - "value": "SOCIAL_MEDIA", - "description": "", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Referrals", - "value": "REFERRALS", - "description": "", - "displayOrder": 4, - "hidden": false - }, - { - "label": "Other Campaigns", - "value": "OTHER_CAMPAIGNS", - "description": "", - "displayOrder": 5, - "hidden": false - }, - { - "label": "Direct Traffic", - "value": "DIRECT_TRAFFIC", - "description": "", - "displayOrder": 6, - "hidden": false - }, - { - "label": "Offline Sources", - "value": "OFFLINE", - "description": "", - "displayOrder": 7, - "hidden": false - }, - { - "label": "Paid Social", - "value": "PAID_SOCIAL", - "description": "", - "displayOrder": 8, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_contact) else string(hs_analytics_latest_source_company)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:06:22.930Z", - "name": "hs_analytics_latest_source_company", - "label": "Latest Source Company", - "type": "enumeration", - "fieldType": "select", - "description": "Source for the company with an associated contact with the last session activity for this deal", - "groupName": "analyticsinformation", - "options": [ - { - "label": "Organic Search", - "value": "ORGANIC_SEARCH", - "description": "", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Paid Search", - "value": "PAID_SEARCH", - "description": "", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Email Marketing", - "value": "EMAIL_MARKETING", - "description": "", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Organic Social", - "value": "SOCIAL_MEDIA", - "description": "", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Referrals", - "value": "REFERRALS", - "description": "", - "displayOrder": 4, - "hidden": false - }, - { - "label": "Other Campaigns", - "value": "OTHER_CAMPAIGNS", - "description": "", - "displayOrder": 5, - "hidden": false - }, - { - "label": "Direct Traffic", - "value": "DIRECT_TRAFFIC", - "description": "", - "displayOrder": 6, - "hidden": false - }, - { - "label": "Offline Sources", - "value": "OFFLINE", - "description": "", - "displayOrder": 7, - "hidden": false - }, - { - "label": "Paid Social", - "value": "PAID_SOCIAL", - "description": "", - "displayOrder": 8, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:03:52.928Z", - "name": "hs_analytics_latest_source_contact", - "label": "Latest Source Contact", - "type": "enumeration", - "fieldType": "select", - "description": "Source for the directly associated contact with the last session activity for this deal", - "groupName": "analyticsinformation", - "options": [ - { - "label": "Organic Search", - "value": "ORGANIC_SEARCH", - "description": "", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Paid Search", - "value": "PAID_SEARCH", - "description": "", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Email Marketing", - "value": "EMAIL_MARKETING", - "description": "", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Organic Social", - "value": "SOCIAL_MEDIA", - "description": "", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Referrals", - "value": "REFERRALS", - "description": "", - "displayOrder": 4, - "hidden": false - }, - { - "label": "Other Campaigns", - "value": "OTHER_CAMPAIGNS", - "description": "", - "displayOrder": 5, - "hidden": false - }, - { - "label": "Direct Traffic", - "value": "DIRECT_TRAFFIC", - "description": "", - "displayOrder": 6, - "hidden": false - }, - { - "label": "Offline Sources", - "value": "OFFLINE", - "description": "", - "displayOrder": 7, - "hidden": false - }, - { - "label": "Paid Social", - "value": "PAID_SOCIAL", - "description": "", - "displayOrder": 8, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-06T19:25:58.108Z", - "name": "hs_analytics_latest_source_data_1", - "label": "Latest Source Data 1", - "type": "string", - "fieldType": "number", - "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_1_contact) else string(hs_analytics_latest_source_data_1_company)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:10:23.992Z", - "name": "hs_analytics_latest_source_data_1_company", - "label": "Latest Source Data 1 Company", - "type": "string", - "fieldType": "text", - "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal (via a company association)", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:09:39.907Z", - "name": "hs_analytics_latest_source_data_1_contact", - "label": "Latest Source Data 1 Contact", - "type": "string", - "fieldType": "text", - "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-06T19:26:53.632Z", - "name": "hs_analytics_latest_source_data_2", - "label": "Latest Source Data 2", - "type": "string", - "fieldType": "number", - "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_2_contact) else string(hs_analytics_latest_source_data_2_company)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:13:35.323Z", - "name": "hs_analytics_latest_source_data_2_company", - "label": "Latest Source Data 2 Company", - "type": "string", - "fieldType": "text", - "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:12:11.033Z", - "name": "hs_analytics_latest_source_data_2_contact", - "label": "Latest Source Data 2 Contact", - "type": "string", - "fieldType": "text", - "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-06T19:28:22.477Z", - "name": "hs_analytics_latest_source_timestamp", - "label": "Latest Source Timestamp", - "type": "datetime", - "fieldType": "number", - "description": "Timestamp of when latest source occurred for either a directly or indirectly associated contact", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then hs_analytics_latest_source_timestamp_contact else hs_analytics_latest_source_timestamp_company", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-05T21:43:47.114Z", - "createdAt": "2022-05-02T21:23:31.015Z", - "name": "hs_analytics_latest_source_timestamp_company", - "label": "Latest Source Timestamp Company", - "type": "datetime", - "fieldType": "date", - "description": "Timestamp of when latest source occurred for an indirectly associated contact", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-09-14T18:51:50.301Z", - "createdAt": "2022-05-02T21:16:19.566Z", - "name": "hs_analytics_latest_source_timestamp_contact", - "label": "Latest Source Timestamp Contact", - "type": "datetime", - "fieldType": "date", - "description": "Timestamp of when latest source occurred for a directly associated contact", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-21T13:08:57.187Z", - "createdAt": "2019-08-06T02:41:53.038Z", - "name": "hs_analytics_source", - "label": "Original Source", - "type": "enumeration", - "fieldType": "select", - "description": "Original source for the contact with the earliest activity for this deal.", - "groupName": "analyticsinformation", - "options": [ - { - "label": "Organic Search", - "value": "ORGANIC_SEARCH", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Paid Search", - "value": "PAID_SEARCH", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Email Marketing", - "value": "EMAIL_MARKETING", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Organic Social", - "value": "SOCIAL_MEDIA", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Referrals", - "value": "REFERRALS", - "displayOrder": 4, - "hidden": false - }, - { - "label": "Other Campaigns", - "value": "OTHER_CAMPAIGNS", - "displayOrder": 5, - "hidden": false - }, - { - "label": "Direct Traffic", - "value": "DIRECT_TRAFFIC", - "displayOrder": 6, - "hidden": false - }, - { - "label": "Offline Sources", - "value": "OFFLINE", - "displayOrder": 7, - "hidden": false - }, - { - "label": "Paid Social", - "value": "PAID_SOCIAL", - "displayOrder": 8, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyOptions": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-21T13:09:38.600Z", - "createdAt": "2019-08-06T02:41:53.115Z", - "name": "hs_analytics_source_data_1", - "label": "Original Source Drill-Down 1", - "type": "string", - "fieldType": "text", - "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-21T13:03:42.294Z", - "createdAt": "2019-08-06T02:41:53.170Z", - "name": "hs_analytics_source_data_2", - "label": "Original Source Drill-Down 2", - "type": "string", - "fieldType": "text", - "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", - "groupName": "analyticsinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-27T23:55:02.326Z", - "createdAt": "2020-06-30T15:57:38.247Z", - "name": "hs_arr", - "label": "Annual recurring revenue", - "type": "number", - "fieldType": "number", - "description": "The annual recurring revenue (ARR) of this deal.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-08-11T16:42:34.454Z", - "createdAt": "2019-08-06T02:41:53.315Z", - "name": "hs_campaign", - "label": "HubSpot Campaign", - "type": "string", - "fieldType": "text", - "description": "The marketing campaign the deal is associated with", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:32:28.368Z", - "createdAt": "2019-10-14T20:45:57.018Z", - "name": "hs_closed_amount", - "label": "Closed Deal Amount", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the amount if the deal is closed. Else, returns 0.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:11:07.210Z", - "createdAt": "2019-10-14T20:45:57.070Z", - "name": "hs_closed_amount_in_home_currency", - "label": "Closed Deal Amount In Home Currency", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the amount in home currency if the deal is closed. Else, returns 0.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount_in_home_currency else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-06-19T00:55:26.343Z", - "createdAt": "2024-06-19T00:55:26.343Z", - "name": "hs_closed_deal_close_date", - "label": "Closed Deal Close Date", - "type": "number", - "fieldType": "calculation_equation", - "description": "Close date populated only if this deal is closed and valid", - "groupName": "dealscripted", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": false, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(closedate, 0) else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-06-17T13:06:21.303Z", - "createdAt": "2024-06-17T13:06:21.303Z", - "name": "hs_closed_deal_create_date", - "label": "Closed Deal Create Date", - "type": "number", - "fieldType": "calculation_equation", - "description": "Create date populated only if this deal is closed", - "groupName": "dealscripted", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": false, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(createdate, 0) else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-03-13T19:51:21.755Z", - "createdAt": "2023-05-16T20:21:20.155Z", - "name": "hs_closed_won_count", - "label": "Is Closed Won (numeric)", - "type": "number", - "fieldType": "calculation_equation", - "description": "This property is 1 if the deal is closed won, otherwise 0.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if bool(hs_is_closed_won) then 1 else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-03-13T19:51:21.755Z", - "createdAt": "2023-05-18T17:56:28.363Z", - "name": "hs_closed_won_date", - "label": "Closed Won Date (Internal)", - "type": "datetime", - "fieldType": "date", - "description": "Returns closedate if this deal is closed won", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if bool(hs_is_closed_won) then closedate endif", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2020-02-24T15:51:11.435Z", - "name": "hs_created_by_user_id", - "label": "Created by user ID", - "type": "number", - "fieldType": "number", - "description": "The user who created this record. This value is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-27T23:56:18.537Z", - "createdAt": "2019-08-06T02:41:52.503Z", - "name": "hs_createdate", - "label": "HubSpot Create Date", - "type": "datetime", - "fieldType": "date", - "description": "The date the deal was created. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 7, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:38:49.710Z", - "createdAt": "2020-02-11T18:42:41.452Z", - "name": "hs_date_entered_appointmentscheduled", - "label": "Date entered 'Appointment Scheduled (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:47:20.508Z", - "createdAt": "2020-02-11T18:44:30.382Z", - "name": "hs_date_entered_closedlost", - "label": "Date entered 'Closed Lost (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:29:49.239Z", - "createdAt": "2020-02-11T18:44:13.551Z", - "name": "hs_date_entered_closedwon", - "label": "Date entered 'Closed Won (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:43:57.538Z", - "name": "hs_date_entered_contractsent", - "label": "Date entered 'Contract Sent (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:26:54.092Z", - "createdAt": "2020-02-11T18:43:41.289Z", - "name": "hs_date_entered_decisionmakerboughtin", - "label": "Date entered 'Decision Maker Bought-In (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:50:13.523Z", - "createdAt": "2020-02-11T18:43:26.610Z", - "name": "hs_date_entered_presentationscheduled", - "label": "Date entered 'Presentation Scheduled (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:26:54.092Z", - "createdAt": "2020-02-11T18:43:10.231Z", - "name": "hs_date_entered_qualifiedtobuy", - "label": "Date entered 'Qualified To Buy (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:26:54.092Z", - "createdAt": "2020-02-11T18:42:49.082Z", - "name": "hs_date_exited_appointmentscheduled", - "label": "Date exited 'Appointment Scheduled (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:29:49.239Z", - "createdAt": "2020-02-11T18:44:38.966Z", - "name": "hs_date_exited_closedlost", - "label": "Date exited 'Closed Lost (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:50:13.523Z", - "createdAt": "2020-02-11T18:44:18.739Z", - "name": "hs_date_exited_closedwon", - "label": "Date exited 'Closed Won (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:47:20.508Z", - "createdAt": "2020-02-11T18:44:02.815Z", - "name": "hs_date_exited_contractsent", - "label": "Date exited 'Contract Sent (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:50:13.523Z", - "createdAt": "2020-02-11T18:43:46.148Z", - "name": "hs_date_exited_decisionmakerboughtin", - "label": "Date exited 'Decision Maker Bought-In (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:26:54.092Z", - "createdAt": "2020-02-11T18:43:31.307Z", - "name": "hs_date_exited_presentationscheduled", - "label": "Date exited 'Presentation Scheduled (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:43:15.688Z", - "name": "hs_date_exited_qualifiedtobuy", - "label": "Date exited 'Qualified To Buy (Sales Pipeline)'", - "type": "datetime", - "fieldType": "calculation_read_time", - "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-08-07T15:27:11.457Z", - "createdAt": "2023-08-07T15:27:11.457Z", - "name": "hs_days_to_close_raw", - "label": "Days to close (without rounding)", - "type": "number", - "fieldType": "calculation_equation", - "description": "The number of days the deal took to close, without rounding", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "(max(0, (closedate - createdate)) / 86400000)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:37:00.799Z", - "createdAt": "2019-08-06T02:41:53.235Z", - "name": "hs_deal_amount_calculation_preference", - "label": "Deal amount calculation preference", - "type": "enumeration", - "fieldType": "radio", - "description": "Specifies how deal amount should be calculated from line items", - "groupName": "dealinformation", - "options": [ - { - "label": "Total Contract Value", - "value": "TCV", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Annual Recurring Revenue", - "value": "ARR", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Monthly Recurring Revenue", - "value": "MRR", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Custom", - "value": "CUSTOM", - "displayOrder": 3, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyOptions": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-11-08T17:23:23.010Z", - "createdAt": "2023-10-18T19:56:30.580Z", - "name": "hs_deal_score", - "label": "Deal Score", - "type": "number", - "fieldType": "number", - "description": "The predictive deal score calculated by Hubspot AI to score the deal health", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:40:41.523Z", - "createdAt": "2021-07-29T14:25:44.469Z", - "name": "hs_deal_stage_probability", - "label": "Deal probability", - "type": "number", - "fieldType": "number", - "description": "The probability a deal will close. This defaults to the deal stage probability setting.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-16T17:49:44.961Z", - "createdAt": "2021-05-20T13:32:10.289Z", - "name": "hs_deal_stage_probability_shadow", - "label": "Deal stage probability shadow", - "type": "number", - "fieldType": "calculation_equation", - "description": "Fall back property for calculating the deal stage when no customer override exist. Probability between 0 and 1 of deal stage. Defaults to 0 for unknown deal stages.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(pipeline_probability(string(dealstage))) then pipeline_probability(string(dealstage)) else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-01-19T19:21:11.345Z", - "createdAt": "2023-11-29T14:53:04.344Z", - "name": "hs_exchange_rate", - "label": "Exchange rate", - "type": "number", - "fieldType": "number", - "description": "This is the exchange rate used to convert the deal amount into your company currency.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:40:41.523Z", - "createdAt": "2020-10-29T20:22:45.530Z", - "name": "hs_forecast_amount", - "label": "Forecast amount", - "type": "number", - "fieldType": "number", - "description": "The custom forecasted deal value calculated by multiplying the forecast probability and deal amount in your company’s currency.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if is_present(hs_forecast_probability) then (hs_forecast_probability * amount_in_home_currency) else amount_in_home_currency", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-16T17:51:55.879Z", - "createdAt": "2020-10-29T20:17:48.778Z", - "name": "hs_forecast_probability", - "label": "Forecast probability", - "type": "number", - "fieldType": "number", - "description": "The custom percent probability a deal will close.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-05-16T14:05:17.485Z", - "createdAt": "2024-05-16T14:05:17.485Z", - "name": "hs_has_empty_conditional_stage_properties", - "label": "Has Empty Conditional Stage Properties", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "True if the deal is missing conditional stage property values required to progress to the next deal stage. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "dealinformation", - "options": [ - { - "label": "Yes", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "No", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-03-25T15:11:56.356Z", - "createdAt": "2024-01-10T18:05:14.186Z", - "name": "hs_is_active_shared_deal", - "label": "Is Active Shared Deal", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "Indicates if the current deal is an active shared deal. It is set automatically based on the value of hs_num_associated_active_deal_registrations.", - "groupName": "deal_activity", - "options": [ - { - "label": "Yes", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "No", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:37:00.799Z", - "createdAt": "2019-10-07T15:45:48.973Z", - "name": "hs_is_closed", - "label": "Is Deal Closed?", - "type": "bool", - "fieldType": "calculation_equation", - "description": "True if the deal was won or lost.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "(pipeline_probability(string(dealstage)) <= 0 or pipeline_probability(string(dealstage)) >= 1)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-07-31T16:24:00.492Z", - "createdAt": "2024-07-31T16:24:00.492Z", - "name": "hs_is_closed_count", - "label": "Is Closed (numeric)", - "type": "number", - "fieldType": "calculation_equation", - "description": "This property is 1 if the deal is closed (\"Closed Won\" or \"Closed Lost\"), otherwise 0", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if bool(hs_is_closed) then 1 else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-14T21:11:56.135Z", - "createdAt": "2024-08-14T21:11:56.135Z", - "name": "hs_is_closed_lost", - "label": "Is closed lost", - "type": "bool", - "fieldType": "calculation_equation", - "description": "True if the deal is in the closed lost state, false otherwise", - "groupName": "deal_activity", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability <= 0) then true else false", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-21T19:08:46.054Z", - "createdAt": "2021-03-19T17:16:09.655Z", - "name": "hs_is_closed_won", - "label": "Is Closed Won", - "type": "bool", - "fieldType": "calculation_equation", - "description": "True if the deal is in the closed won state, false otherwise", - "groupName": "deal_activity", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then true else false", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:40:41.523Z", - "createdAt": "2021-09-01T17:20:22.955Z", - "name": "hs_is_deal_split", - "label": "Deal Split Added", - "type": "bool", - "fieldType": "calculation_equation", - "description": "Indicates if the deal is split between multiple users.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_num_associated_deal_splits) and hs_num_associated_deal_splits > 1) then true else false", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-05-29T18:11:13.359Z", - "createdAt": "2024-05-29T18:11:13.359Z", - "name": "hs_is_in_first_deal_stage", - "label": "Is In First Deal Stage", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "True if the deal is in the first stage of its pipeline. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "dealinformation", - "options": [ - { - "label": "Yes", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "No", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-09T17:22:38.951Z", - "createdAt": "2023-08-04T16:56:09.192Z", - "name": "hs_is_open_count", - "label": "Is Open (numeric)", - "type": "number", - "fieldType": "calculation_equation", - "description": "This property is 1 if the deal is not closed won or closed lost, otherwise 0", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if bool(hs_is_closed) then 0 else 1", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:02:40.168Z", - "createdAt": "2020-06-30T15:57:38.258Z", - "name": "hs_lastmodifieddate", - "label": "Last Modified Date", - "type": "datetime", - "fieldType": "date", - "description": "Most recent timestamp of any property update for this deal. This includes HubSpot internal properties, which can be visible or hidden. This property is updated automatically.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-19T15:11:03.313Z", - "createdAt": "2024-03-05T17:51:26.432Z", - "name": "hs_latest_approval_status", - "label": "Latest Approval Status", - "type": "string", - "fieldType": "text", - "description": "The latest approval status. Used by HubSpot to track pipeline approval processes.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-22T19:52:16.821Z", - "createdAt": "2024-03-18T20:26:26.241Z", - "name": "hs_latest_approval_status_approval_id", - "label": "Latest Approval Status Approval ID", - "type": "number", - "fieldType": "number", - "description": "The ID of the approval object containing the latest approval status.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:34:28.356Z", - "createdAt": "2020-02-07T22:25:22.440Z", - "name": "hs_latest_meeting_activity", - "label": "Latest meeting activity", - "type": "datetime", - "fieldType": "date", - "description": "The date of the most recent meeting (past or upcoming) logged for, scheduled with, or booked by a contact associated with this deal.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:03:10.610Z", - "createdAt": "2020-02-07T22:31:06.307Z", - "name": "hs_likelihood_to_close", - "label": "Likelihood to close by the close date", - "type": "number", - "fieldType": "number", - "description": "Hubspot predicted likelihood between 0 and 1 of the deal to close by the close date.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:42:11.216Z", - "createdAt": "2020-08-04T17:58:31.672Z", - "name": "hs_line_item_global_term_hs_discount_percentage", - "label": "Global Term Line Item Discount Percentage", - "type": "string", - "fieldType": "text", - "description": "For internal HubSpot Application use only. Global term for the discount percentage applied.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:05:24.809Z", - "createdAt": "2020-09-11T16:26:50.864Z", - "name": "hs_line_item_global_term_hs_discount_percentage_enabled", - "label": "Global Term Line Item Discount Percentage Enabled", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "For internal HubSpot Application use only. Indicates if the Global term for the discount percentage is enabled.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:42:11.216Z", - "createdAt": "2020-08-04T17:58:44.389Z", - "name": "hs_line_item_global_term_hs_recurring_billing_period", - "label": "Global Term Line Item Recurring Billing Period", - "type": "string", - "fieldType": "text", - "description": "For internal HubSpot Application use only. Global term for product recurring billing duration.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:42:11.374Z", - "createdAt": "2020-09-11T16:27:03.492Z", - "name": "hs_line_item_global_term_hs_recurring_billing_period_enabled", - "label": "Global Term Line Item Recurring Billing Period Enabled", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "For internal HubSpot Application use only. Indicates if the Global term for product recurring billing duration is enabled.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:42:11.216Z", - "createdAt": "2020-08-04T17:58:50.722Z", - "name": "hs_line_item_global_term_hs_recurring_billing_start_date", - "label": "Global Term Line Item Recurring Billing Start Date", - "type": "string", - "fieldType": "text", - "description": "For internal HubSpot Application use only. Global term for recurring billing start date for a line item.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:43:51.982Z", - "createdAt": "2020-09-11T16:27:10.044Z", - "name": "hs_line_item_global_term_hs_recurring_billing_start_date_enabled", - "label": "Global Term Line Item Recurring Billing Start Date Enabled", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "For internal HubSpot Application use only. Indicates if the Global term for recurring billing start date for a line item is enabled.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:42:11.374Z", - "createdAt": "2020-08-04T17:58:37.932Z", - "name": "hs_line_item_global_term_recurringbillingfrequency", - "label": "Global Term Line Item Recurring Billing Frequency", - "type": "string", - "fieldType": "text", - "description": "For internal HubSpot Application use only. Global term for how frequently the product is billed.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T21:10:51.287Z", - "createdAt": "2020-09-11T16:26:57.093Z", - "name": "hs_line_item_global_term_recurringbillingfrequency_enabled", - "label": "Global Term Line Item Recurring Billing Frequency Enabled", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "For internal HubSpot Application use only. Indicates if the Global term for how frequently the product is billed is enabled", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": false, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-16T17:51:55.879Z", - "createdAt": "2020-06-30T15:57:38.339Z", - "name": "hs_manual_forecast_category", - "label": "Forecast category", - "type": "enumeration", - "fieldType": "select", - "description": "The likelihood a deal will close. This property is used for manual forecasting your deals.", - "groupName": "dealinformation", - "options": [ - { - "label": "Not forecasted", - "value": "OMIT", - "description": "", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Pipeline", - "value": "PIPELINE", - "description": "", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Best case", - "value": "BEST_CASE", - "description": "", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Commit", - "value": "COMMIT", - "description": "", - "displayOrder": 4, - "hidden": false - }, - { - "label": "Closed won", - "value": "CLOSED", - "description": "", - "displayOrder": 5, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyOptions": false, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-26T22:36:33.896Z", - "createdAt": "1970-01-01T00:00:00Z", - "name": "hs_merged_object_ids", - "label": "Merged Deal IDs", - "type": "enumeration", - "fieldType": "checkbox", - "description": "The list of Deal record IDs that have been merged into this Deal. This value is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:06:29.497Z", - "createdAt": "2020-06-30T15:57:38.442Z", - "name": "hs_mrr", - "label": "Monthly recurring revenue", - "type": "number", - "fieldType": "number", - "description": "The monthly recurring revenue (MRR) of this deal.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:40:41.523Z", - "createdAt": "2020-07-10T20:41:18.146Z", - "name": "hs_next_step", - "label": "Next step", - "type": "string", - "fieldType": "textarea", - "description": "A short description of the next step for the deal", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-05T16:53:28.980Z", - "createdAt": "2024-08-05T16:53:28.980Z", - "name": "hs_next_step_updated_at", - "label": "Next Step Updated At", - "type": "datetime", - "fieldType": "calculation_equation", - "description": "Timestamp of the most recent update to Next Step property", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "string_to_number(timestamp(hs_next_step))", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-05-06T18:47:41.895Z", - "createdAt": "2024-05-06T18:47:41.895Z", - "name": "hs_notes_last_activity", - "label": "Last Activity", - "type": "object_coordinates", - "fieldType": "text", - "description": "The coordinates of the last activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-03-13T21:40:39.783Z", - "createdAt": "2024-03-13T21:40:39.783Z", - "name": "hs_notes_next_activity", - "label": "Next Activity", - "type": "object_coordinates", - "fieldType": "text", - "description": "The coordinates of the next upcoming activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-27T16:35:27.302Z", - "createdAt": "2024-02-27T16:35:27.302Z", - "name": "hs_notes_next_activity_type", - "label": "Next Activity Type", - "type": "enumeration", - "fieldType": "select", - "description": "The type of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", - "groupName": "dealinformation", - "options": [ - { - "label": "Call", - "value": "CALL", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Conversation session", - "value": "CONVERSATION_SESSION", - "displayOrder": 1, - "hidden": false - }, - { - "label": "Email reply from contact", - "value": "INCOMING_EMAIL", - "displayOrder": 2, - "hidden": false - }, - { - "label": "Email sent to contact", - "value": "EMAIL", - "displayOrder": 3, - "hidden": false - }, - { - "label": "Forwarded email", - "value": "FORWARDED_EMAI", - "displayOrder": 4, - "hidden": false - }, - { - "label": "LinkedIn message", - "value": "LINKEDIN_MESSAGE", - "displayOrder": 5, - "hidden": false - }, - { - "label": "Meeting", - "value": "MEETING", - "displayOrder": 6, - "hidden": false - }, - { - "label": "Note", - "value": "NOTE", - "displayOrder": 7, - "hidden": false - }, - { - "label": "Postal mail", - "value": "POSTAL_MAIL", - "displayOrder": 8, - "hidden": false - }, - { - "label": "Publishing task", - "value": "PUBLISHING_TASK", - "displayOrder": 9, - "hidden": false - }, - { - "label": "SMS", - "value": "SMS", - "displayOrder": 10, - "hidden": false - }, - { - "label": "Task", - "value": "TASK", - "displayOrder": 11, - "hidden": false - }, - { - "label": "WhatsApp", - "value": "WHATS_APP", - "displayOrder": 12, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:07:00.029Z", - "createdAt": "2021-09-07T12:44:12.716Z", - "name": "hs_num_associated_active_deal_registrations", - "label": "Number of Active Deal Registrations", - "type": "number", - "fieldType": "number", - "description": "The number of active deal registrations associated with this deal. This property is set automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:07:15.269Z", - "createdAt": "2021-09-07T12:43:20.975Z", - "name": "hs_num_associated_deal_registrations", - "label": "Number of Deal Registrations", - "type": "number", - "fieldType": "number", - "description": "The number of deal registrations associated with this deal. This property is set automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-16T17:49:44.961Z", - "createdAt": "2021-03-18T20:41:32.514Z", - "name": "hs_num_associated_deal_splits", - "label": "Number of Deal Splits", - "type": "number", - "fieldType": "number", - "description": "The number of deal splits associated with this deal. This property is set automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-22T13:37:58.912Z", - "createdAt": "2023-05-22T13:37:58.912Z", - "name": "hs_num_of_associated_line_items", - "label": "Number of Associated Line Items", - "type": "number", - "fieldType": "number", - "description": "The number of line items associated with this deal", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:37:00.799Z", - "createdAt": "2021-04-02T19:12:50.614Z", - "name": "hs_num_target_accounts", - "label": "Number of target accounts", - "type": "number", - "fieldType": "number", - "description": "The number of target account companies associated with this deal. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_id", - "label": "Record ID", - "type": "number", - "fieldType": "number", - "description": "The unique ID for this record. This value is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source", - "label": "Record creation source", - "type": "string", - "fieldType": "text", - "description": "Raw internal PropertySource present in the RequestMeta when this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_detail_1", - "label": "Record source detail 1", - "type": "string", - "fieldType": "text", - "description": "First level of detail on how this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_detail_2", - "label": "Record source detail 2", - "type": "string", - "fieldType": "text", - "description": "Second level of detail on how this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_detail_3", - "label": "Record source detail 3", - "type": "string", - "fieldType": "text", - "description": "Third level of detail on how this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_id", - "label": "Record creation source ID", - "type": "string", - "fieldType": "text", - "description": "Raw internal sourceId present in the RequestMeta when this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_label", - "label": "Record source", - "type": "enumeration", - "fieldType": "select", - "description": "How this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_object_source_user_id", - "label": "Record creation source user ID", - "type": "number", - "fieldType": "number", - "description": "Raw internal userId present in the RequestMeta when this record was created.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-06-12T05:34:12.696Z", - "createdAt": "2024-06-12T05:34:12.696Z", - "name": "hs_open_deal_create_date", - "label": "Open deal create date", - "type": "number", - "fieldType": "calculation_equation", - "description": "Create date populated only if this deal is open", - "groupName": "dealscripted", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": false, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if bool(hs_is_closed) then 0 else time_between(createdate, 0)", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-02-21T19:46:23.447Z", - "createdAt": "2022-07-25T20:58:45.636Z", - "name": "hs_pinned_engagement_id", - "label": "Pinned Engagement ID", - "type": "number", - "fieldType": "number", - "description": "The object ID of the current pinned engagement. This will only be shown if there is already an association to the engagement.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:34:28.356Z", - "createdAt": "2020-02-07T22:33:43.508Z", - "name": "hs_predicted_amount", - "label": "The predicted deal amount", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the multiplication of the deal amount times the predicted likelihood of the deal to close by the close date.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount)) then (hs_likelihood_to_close * amount) else ''", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:08:31.557Z", - "createdAt": "2020-02-07T22:38:42.351Z", - "name": "hs_predicted_amount_in_home_currency", - "label": "The predicted deal amount in your company's currency", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the multiplication of the deal amount in your company's currency times the predicted likelihood of the deal to close by the close date.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount_in_home_currency)) then (hs_likelihood_to_close * amount_in_home_currency) else ''", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:34:28.356Z", - "createdAt": "2021-04-13T18:44:53.526Z", - "name": "hs_priority", - "label": "Priority", - "type": "enumeration", - "fieldType": "select", - "description": "", - "groupName": "dealinformation", - "options": [ - { - "label": "Low", - "value": "low", - "displayOrder": 0, - "hidden": false - }, - { - "label": "Medium", - "value": "medium", - "displayOrder": 1, - "hidden": false - }, - { - "label": "High", - "value": "high", - "displayOrder": 2, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:40:41.523Z", - "createdAt": "2021-07-29T14:26:39.754Z", - "name": "hs_projected_amount", - "label": "Weighted amount", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the multiplication of the amount times the probability of the deal closing.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount) else 0", - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-05-18T15:39:50.422Z", - "createdAt": "2021-07-29T14:27:23.100Z", - "name": "hs_projected_amount_in_home_currency", - "label": "Weighted amount in company currency", - "type": "number", - "fieldType": "calculation_equation", - "description": "Returns the multiplication of the amount in home currency times the probability of the deal closing.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount_in_home_currency) else 0", - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_read_only", - "label": "Read only object", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "Determines whether a record can be edited by a user.", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:30:05.213Z", - "createdAt": "2019-08-06T02:41:53.649Z", - "name": "hs_sales_email_last_replied", - "label": "Recent Sales Email Replied Date", - "type": "datetime", - "fieldType": "date", - "description": "The last time a tracked sales email was replied to for this deal", - "groupName": "dealinformation", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-26T22:57:36.328Z", - "createdAt": "1970-01-01T00:00:00Z", - "name": "hs_shared_team_ids", - "label": "Shared teams", - "type": "enumeration", - "fieldType": "checkbox", - "description": "Additional teams whose users can access the Deal based on their permissions. This can be set manually or through Workflows or APIs.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-26T22:46:14.081Z", - "createdAt": "1970-01-01T00:00:00Z", - "name": "hs_shared_user_ids", - "label": "Shared users", - "type": "enumeration", - "fieldType": "checkbox", - "description": "Additional users that can access the Deal based on their permissions. This can be set manually or through Workflows and APIs.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-04-20T17:16:59.235Z", - "createdAt": "2023-04-20T17:16:59.235Z", - "name": "hs_source_object_id", - "label": "Source Object ID", - "type": "number", - "fieldType": "number", - "description": "The ID of the object from which the data was migrated. This is set automatically during portal data migration.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-11-20T16:18:04.288Z", - "createdAt": "2023-01-13T15:52:17.575Z", - "name": "hs_tag_ids", - "label": "Deal Tags", - "type": "enumeration", - "fieldType": "checkbox", - "description": "List of tag ids applicable to a deal. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2022-05-28T00:10:33.836Z", - "createdAt": "2020-06-30T15:57:38.369Z", - "name": "hs_tcv", - "label": "Total contract value", - "type": "number", - "fieldType": "number", - "description": "The total contract value (TCV) of this deal.", - "groupName": "deal_revenue", - "options": [], - "displayOrder": -1, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "showCurrencySymbol": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:38:49.710Z", - "createdAt": "2020-02-11T18:43:02.193Z", - "name": "hs_time_in_appointmentscheduled", - "label": "Time in 'Appointment Scheduled (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:47:20.508Z", - "createdAt": "2020-02-11T18:44:44.326Z", - "name": "hs_time_in_closedlost", - "label": "Time in 'Closed Lost (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:44:24.100Z", - "name": "hs_time_in_closedwon", - "label": "Time in 'Closed Won (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:50:13.523Z", - "createdAt": "2020-02-11T18:44:08.472Z", - "name": "hs_time_in_contractsent", - "label": "Time in 'Contract Sent (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:43:51.900Z", - "name": "hs_time_in_decisionmakerboughtin", - "label": "Time in 'Decision Maker Bought-In (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:43:36.284Z", - "name": "hs_time_in_presentationscheduled", - "label": "Time in 'Presentation Scheduled (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T20:34:06.588Z", - "createdAt": "2020-02-11T18:43:21.488Z", - "name": "hs_time_in_qualifiedtobuy", - "label": "Time in 'Qualified To Buy (Sales Pipeline)'", - "type": "number", - "fieldType": "calculation_read_time", - "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_unique_creation_key", - "label": "Unique creation key", - "type": "string", - "fieldType": "text", - "description": "Unique property used for idempotent creates", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": true, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2020-02-24T15:53:25.402Z", - "name": "hs_updated_by_user_id", - "label": "Updated by user ID", - "type": "number", - "fieldType": "number", - "description": "The user who last updated this record. This value is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_user_ids_of_all_notification_followers", - "label": "User IDs of all notification followers", - "type": "enumeration", - "fieldType": "checkbox", - "description": "The user IDs of all users that have clicked follow within the object to opt-in to getting follow notifications", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_user_ids_of_all_notification_unfollowers", - "label": "User IDs of all notification unfollowers", - "type": "enumeration", - "fieldType": "checkbox", - "description": "The user IDs of all object owners that have clicked unfollow within the object to opt-out of getting follow notifications", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_user_ids_of_all_owners", - "label": "User IDs of all owners", - "type": "enumeration", - "fieldType": "checkbox", - "description": "The user IDs of all owners of this record.", - "groupName": "dealinformation", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.285Z", - "createdAt": "2023-10-31T14:36:55.546Z", - "name": "hs_v2_cumulative_time_in_appointmentscheduled", - "label": "Cumulative time in \"Appointment Scheduled (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.700Z", - "createdAt": "2023-10-31T14:38:49.348Z", - "name": "hs_v2_cumulative_time_in_closedlost", - "label": "Cumulative time in \"Closed Lost (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.380Z", - "createdAt": "2023-10-31T14:38:31.273Z", - "name": "hs_v2_cumulative_time_in_closedwon", - "label": "Cumulative time in \"Closed Won (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.633Z", - "createdAt": "2023-10-31T14:38:16.005Z", - "name": "hs_v2_cumulative_time_in_contractsent", - "label": "Cumulative time in \"Contract Sent (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.903Z", - "createdAt": "2023-10-31T14:37:54.704Z", - "name": "hs_v2_cumulative_time_in_decisionmakerboughtin", - "label": "Cumulative time in \"Decision Maker Bought-In (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.427Z", - "createdAt": "2023-10-31T14:37:39.160Z", - "name": "hs_v2_cumulative_time_in_presentationscheduled", - "label": "Cumulative time in \"Presentation Scheduled (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.093Z", - "createdAt": "2023-10-31T14:37:19.856Z", - "name": "hs_v2_cumulative_time_in_qualifiedtobuy", - "label": "Cumulative time in \"Qualified To Buy (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The cumulative time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.240Z", - "createdAt": "2023-11-15T15:17:23.332Z", - "name": "hs_v2_date_entered_appointmentscheduled", - "label": "Date entered \"Appointment Scheduled (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.527Z", - "createdAt": "2023-11-28T15:49:52.548Z", - "name": "hs_v2_date_entered_closedlost", - "label": "Date entered \"Closed Lost (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:28.311Z", - "createdAt": "2023-11-15T15:21:44.137Z", - "name": "hs_v2_date_entered_closedwon", - "label": "Date entered \"Closed Won (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.333Z", - "createdAt": "2023-11-15T15:21:21.172Z", - "name": "hs_v2_date_entered_contractsent", - "label": "Date entered \"Contract Sent (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.536Z", - "createdAt": "2023-11-15T15:21:03.201Z", - "name": "hs_v2_date_entered_decisionmakerboughtin", - "label": "Date entered \"Decision Maker Bought-In (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.478Z", - "createdAt": "2023-11-15T15:20:42.940Z", - "name": "hs_v2_date_entered_presentationscheduled", - "label": "Date entered \"Presentation Scheduled (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.176Z", - "createdAt": "2023-11-15T15:20:19.853Z", - "name": "hs_v2_date_entered_qualifiedtobuy", - "label": "Date entered \"Qualified To Buy (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.753Z", - "createdAt": "2023-10-31T14:14:27.022Z", - "name": "hs_v2_date_exited_appointmentscheduled", - "label": "Date exited \"Appointment Scheduled (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.301Z", - "createdAt": "2023-10-31T14:16:30.735Z", - "name": "hs_v2_date_exited_closedlost", - "label": "Date exited \"Closed Lost (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.162Z", - "createdAt": "2023-10-31T14:16:10.149Z", - "name": "hs_v2_date_exited_closedwon", - "label": "Date exited \"Closed Won (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.012Z", - "createdAt": "2023-10-31T14:15:48.428Z", - "name": "hs_v2_date_exited_contractsent", - "label": "Date exited \"Contract Sent (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.588Z", - "createdAt": "2023-10-31T14:15:30.251Z", - "name": "hs_v2_date_exited_decisionmakerboughtin", - "label": "Date exited \"Decision Maker Bought-In (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.853Z", - "createdAt": "2023-11-28T15:26:12.794Z", - "name": "hs_v2_date_exited_presentationscheduled", - "label": "Date exited \"Presentation Scheduled (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.482Z", - "createdAt": "2023-10-31T14:14:47.853Z", - "name": "hs_v2_date_exited_qualifiedtobuy", - "label": "Date exited \"Qualified To Buy (Sales Pipeline)\"", - "type": "datetime", - "fieldType": "date", - "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.953Z", - "createdAt": "2023-10-31T14:27:02.455Z", - "name": "hs_v2_latest_time_in_appointmentscheduled", - "label": "Latest time in \"Appointment Scheduled (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.591Z", - "createdAt": "2023-11-28T15:21:59.678Z", - "name": "hs_v2_latest_time_in_closedlost", - "label": "Latest time in \"Closed Lost (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.431Z", - "createdAt": "2023-11-28T15:23:54.642Z", - "name": "hs_v2_latest_time_in_closedwon", - "label": "Latest time in \"Closed Won (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.365Z", - "createdAt": "2023-10-31T14:34:32.116Z", - "name": "hs_v2_latest_time_in_contractsent", - "label": "Latest time in \"Contract Sent (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:30.236Z", - "createdAt": "2023-10-31T14:34:12.684Z", - "name": "hs_v2_latest_time_in_decisionmakerboughtin", - "label": "Latest time in \"Decision Maker Bought-In (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.804Z", - "createdAt": "2023-11-28T15:25:09.770Z", - "name": "hs_v2_latest_time_in_presentationscheduled", - "label": "Latest time in \"Presentation Scheduled (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-04-10T14:50:29.644Z", - "createdAt": "2023-10-31T14:33:36.111Z", - "name": "hs_v2_latest_time_in_qualifiedtobuy", - "label": "Latest time in \"Qualified To Buy (Sales Pipeline)\"", - "type": "number", - "fieldType": "number", - "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline since it last entered this stage", - "groupName": "dealstages", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "name": "hs_was_imported", - "label": "Performed in an import", - "type": "bool", - "fieldType": "booleancheckbox", - "description": "Object is part of an import", - "groupName": "dealinformation", - "options": [ - { - "label": "True", - "value": "true", - "displayOrder": 0, - "hidden": false - }, - { - "label": "False", - "value": "false", - "displayOrder": 1, - "hidden": false - } - ], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": true, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-28T22:14:26.856Z", - "createdAt": "2020-06-30T15:57:38.224Z", - "name": "hubspot_owner_assigneddate", - "label": "Owner assigned date", - "type": "datetime", - "fieldType": "date", - "description": "The most recent timestamp of when an owner was assigned to this record. This value is set automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": -1, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.418Z", - "name": "hubspot_owner_id", - "label": "Deal owner", - "type": "enumeration", - "fieldType": "select", - "description": "User the deal is assigned to. Assign additional users to a deal record by creating a custom user property.", - "groupName": "dealinformation", - "options": [], - "referencedObjectType": "OWNER", - "displayOrder": 6, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-08-29T21:49:22.423Z", - "createdAt": "2020-06-30T15:57:38.380Z", - "name": "hubspot_team_id", - "label": "HubSpot Team", - "type": "enumeration", - "fieldType": "select", - "description": "Primary team of the deal owner. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 7, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:34:28.356Z", - "createdAt": "2020-06-30T15:57:38.430Z", - "name": "notes_last_contacted", - "label": "Last Contacted", - "type": "datetime", - "fieldType": "date", - "description": "The last time a call, sales email, or meeting was logged for this deal. This is set automatically by HubSpot based on user actions.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.281Z", - "name": "notes_last_updated", - "label": "Last Activity Date", - "type": "datetime", - "fieldType": "date", - "description": "The last time a note, call, email, meeting, or task was logged for a deal. This is updated automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:32:28.368Z", - "createdAt": "2020-06-30T15:57:38.326Z", - "name": "notes_next_activity_date", - "label": "Next Activity Date", - "type": "datetime", - "fieldType": "date", - "description": "The date of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2023-06-20T22:34:28.356Z", - "createdAt": "2019-08-06T02:41:52.683Z", - "name": "num_associated_contacts", - "label": "Number of Associated Contacts", - "type": "number", - "fieldType": "number", - "description": "The number of contacts associated with this deal. This property is set automatically by HubSpot.", - "groupName": "dealinformation", - "options": [], - "displayOrder": 10, - "calculated": true, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-19T21:06:03.441Z", - "createdAt": "2020-06-30T15:57:38.490Z", - "name": "num_contacted_notes", - "label": "Number of times contacted", - "type": "number", - "fieldType": "number", - "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-08-19T21:05:17.168Z", - "createdAt": "2020-06-30T15:57:38.523Z", - "name": "num_notes", - "label": "Number of Sales Activities", - "type": "number", - "fieldType": "number", - "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, task, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 6, - "calculated": false, - "externalOptions": false, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": true - }, - "formField": false, - "dataSensitivity": "non_sensitive" - }, - { - "updatedAt": "2024-09-05T17:14:04.747Z", - "createdAt": "2020-06-30T15:57:38.191Z", - "name": "pipeline", - "label": "Pipeline", - "type": "enumeration", - "fieldType": "select", - "description": "The pipeline the deal is in. This determines which stages are options for the deal.", - "groupName": "deal_activity", - "options": [], - "displayOrder": 4, - "calculated": false, - "externalOptions": true, - "hasUniqueValue": false, - "hidden": false, - "hubspotDefined": true, - "modificationMetadata": { - "archivable": true, - "readOnlyDefinition": true, - "readOnlyValue": false - }, - "formField": false, - "dataSensitivity": "non_sensitive" + "results": [ + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.293Z", + "name": "amount", + "label": "Amount", + "type": "number", + "fieldType": "number", + "description": "The total amount of the deal", + "groupName": "deal_revenue", + "options": [], + "displayOrder": 2, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2023-11-29T14:53:06.636Z", + "name": "amount_in_home_currency", + "label": "Amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "The amount of the deal, using the exchange rate, in your company's currency", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_exchange_rate) then (amount * hs_exchange_rate) else amount", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.315Z", + "name": "closed_lost_reason", + "label": "Closed Lost Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was lost", + "groupName": "deal_activity", + "options": [], + "displayOrder": 11, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2020-06-30T15:57:38.269Z", + "name": "closed_won_reason", + "label": "Closed Won Reason", + "type": "string", + "fieldType": "textarea", + "description": "Reason why this deal was won", + "groupName": "deal_activity", + "options": [], + "displayOrder": 12, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": false, + "readOnlyDefinition": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.500Z", + "name": "closedate", + "label": "Close Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was closed. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 5, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-12T20:49:12.385Z", + "createdAt": "2020-06-30T15:57:38.305Z", + "name": "createdate", + "label": "Create Date", + "type": "datetime", + "fieldType": "date", + "description": "Date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-22T18:11:17.355Z", + "createdAt": "2019-08-06T02:41:52.984Z", + "name": "days_to_close", + "label": "Days to close", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "max(0, round_down(((closedate - createdate) / 86400000), 0))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2020-06-30T15:57:38.478Z", + "name": "deal_currency_code", + "label": "Currency", + "type": "enumeration", + "fieldType": "select", + "description": "Currency code for the deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2019-08-06T02:41:52.132Z", + "name": "dealname", + "label": "Deal Name", + "type": "string", + "fieldType": "text", + "description": "The name given to this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 0, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.180Z", + "name": "dealstage", + "label": "Deal Stage", + "type": "enumeration", + "fieldType": "radio", + "description": "The stage of the deal. Deal stages allow you to categorize and track the progress of the deals that you are working on.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 3, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-08-06T02:41:52.542Z", + "name": "dealtype", + "label": "Deal Type", + "type": "enumeration", + "fieldType": "radio", + "description": "The type of deal. By default, categorize your deal as either a New Business or Existing Business.", + "groupName": "dealinformation", + "options": [ + { + "label": "New Business", + "value": "newbusiness", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Existing Business", + "value": "existingbusiness", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": 8, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:58:22.852Z", + "createdAt": "2019-08-06T02:41:52.595Z", + "name": "description", + "label": "Deal Description", + "type": "string", + "fieldType": "textarea", + "description": "Description of the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:57:32.710Z", + "createdAt": "2020-06-30T15:57:38.391Z", + "name": "engagements_last_meeting_booked", + "label": "Date of last meeting booked in meetings tool", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting an associated contact has booked through the meetings tool.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.202Z", + "name": "engagements_last_meeting_booked_campaign", + "label": "Campaign of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which marketing campaign (e.g. a specific email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.512Z", + "name": "engagements_last_meeting_booked_medium", + "label": "Medium of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which channel (e.g. email) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:59:02.276Z", + "createdAt": "2020-06-30T15:57:38.235Z", + "name": "engagements_last_meeting_booked_source", + "label": "Source of last booking in meetings tool", + "type": "string", + "fieldType": "text", + "description": "This UTM parameter shows which site (e.g. Twitter) referred an associated contact to the meetings tool for their most recent booking. This property is only populated when you add tracking parameters to your meeting link. ", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-03T15:10:48.521Z", + "createdAt": "2020-06-30T15:57:38.357Z", + "name": "hs_acv", + "label": "Annual contract value", + "type": "number", + "fieldType": "number", + "description": "The annual contract value (ACV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.903Z", + "name": "hs_all_accessible_team_ids", + "label": "All teams", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs, including the team hierarchy, of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-12-12T14:52:22.589Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_all_assigned_business_unit_ids", + "label": "Business units", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The business units this record is assigned to.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-15T18:53:29.419Z", + "createdAt": "2022-05-02T19:41:37.305Z", + "name": "hs_all_collaborator_owner_ids", + "label": "Deal Collaborator", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Owner ids of the users involved in closing the deal", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2021-11-23T15:31:07.889Z", + "name": "hs_all_deal_split_owner_ids", + "label": "Deal Split Users", + "type": "enumeration", + "fieldType": "select", + "description": "The owner ids of all associated Deal Splits. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.824Z", + "name": "hs_all_owner_ids", + "label": "All owner IDs", + "type": "enumeration", + "fieldType": "select", + "description": "Values of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 8, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2019-08-06T02:41:53.865Z", + "name": "hs_all_team_ids", + "label": "All team IDs", + "type": "enumeration", + "fieldType": "select", + "description": "The team IDs of all default and custom owner properties for this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 9, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:22:23.694Z", + "name": "hs_analytics_latest_source", + "label": "Latest Source", + "type": "enumeration", + "fieldType": "number", + "description": "Source for the contact either directly or indirectly associated with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_contact) else string(hs_analytics_latest_source_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:06:22.930Z", + "name": "hs_analytics_latest_source_company", + "label": "Latest Source Company", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the company with an associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:03:52.928Z", + "name": "hs_analytics_latest_source_contact", + "label": "Latest Source Contact", + "type": "enumeration", + "fieldType": "select", + "description": "Source for the directly associated contact with the last session activity for this deal", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "description": "", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "description": "", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "description": "", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "description": "", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "description": "", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:25:58.108Z", + "name": "hs_analytics_latest_source_data_1", + "label": "Latest Source Data 1", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_1_contact) else string(hs_analytics_latest_source_data_1_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:10:23.992Z", + "name": "hs_analytics_latest_source_data_1_company", + "label": "Latest Source Data 1 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal (via a company association)", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:09:39.907Z", + "name": "hs_analytics_latest_source_data_1_contact", + "label": "Latest Source Data 1 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:26:53.632Z", + "name": "hs_analytics_latest_source_data_2", + "label": "Latest Source Data 2", + "type": "string", + "fieldType": "number", + "description": "Additional source details of the last session attributed to any contacts that are directly or indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then string(hs_analytics_latest_source_data_2_contact) else string(hs_analytics_latest_source_data_2_company)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:13:35.323Z", + "name": "hs_analytics_latest_source_data_2_company", + "label": "Latest Source Data 2 Company", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are indirectly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:12:11.033Z", + "name": "hs_analytics_latest_source_data_2_contact", + "label": "Latest Source Data 2 Contact", + "type": "string", + "fieldType": "text", + "description": "Additional source details of the last session attributed to any contacts that are directly associated with this deal", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-06T19:28:22.477Z", + "name": "hs_analytics_latest_source_timestamp", + "label": "Latest Source Timestamp", + "type": "datetime", + "fieldType": "number", + "description": "Timestamp of when latest source occurred for either a directly or indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(string(hs_analytics_latest_source_contact)) then hs_analytics_latest_source_timestamp_contact else hs_analytics_latest_source_timestamp_company", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-05T21:43:47.114Z", + "createdAt": "2022-05-02T21:23:31.015Z", + "name": "hs_analytics_latest_source_timestamp_company", + "label": "Latest Source Timestamp Company", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for an indirectly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-09-14T18:51:50.301Z", + "createdAt": "2022-05-02T21:16:19.566Z", + "name": "hs_analytics_latest_source_timestamp_contact", + "label": "Latest Source Timestamp Contact", + "type": "datetime", + "fieldType": "date", + "description": "Timestamp of when latest source occurred for a directly associated contact", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:08:57.187Z", + "createdAt": "2019-08-06T02:41:53.038Z", + "name": "hs_analytics_source", + "label": "Original Source", + "type": "enumeration", + "fieldType": "select", + "description": "Original source for the contact with the earliest activity for this deal.", + "groupName": "analyticsinformation", + "options": [ + { + "label": "Organic Search", + "value": "ORGANIC_SEARCH", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Paid Search", + "value": "PAID_SEARCH", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email Marketing", + "value": "EMAIL_MARKETING", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Organic Social", + "value": "SOCIAL_MEDIA", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Referrals", + "value": "REFERRALS", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Other Campaigns", + "value": "OTHER_CAMPAIGNS", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Direct Traffic", + "value": "DIRECT_TRAFFIC", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Offline Sources", + "value": "OFFLINE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Paid Social", + "value": "PAID_SOCIAL", + "displayOrder": 8, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:09:38.600Z", + "createdAt": "2019-08-06T02:41:53.115Z", + "name": "hs_analytics_source_data_1", + "label": "Original Source Drill-Down 1", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T13:03:42.294Z", + "createdAt": "2019-08-06T02:41:53.170Z", + "name": "hs_analytics_source_data_2", + "label": "Original Source Drill-Down 2", + "type": "string", + "fieldType": "text", + "description": "Additional information about the original source for the associated contact, or associated company if there is no contact, with the oldest value for the Time first seen property.", + "groupName": "analyticsinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:55:02.326Z", + "createdAt": "2020-06-30T15:57:38.247Z", + "name": "hs_arr", + "label": "Annual recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The annual recurring revenue (ARR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-11T16:42:34.454Z", + "createdAt": "2019-08-06T02:41:53.315Z", + "name": "hs_campaign", + "label": "HubSpot Campaign", + "type": "string", + "fieldType": "text", + "description": "The marketing campaign the deal is associated with", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2019-10-14T20:45:57.018Z", + "name": "hs_closed_amount", + "label": "Closed Deal Amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:11:07.210Z", + "createdAt": "2019-10-14T20:45:57.070Z", + "name": "hs_closed_amount_in_home_currency", + "label": "Closed Deal Amount In Home Currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the amount in home currency if the deal is closed. Else, returns 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then amount_in_home_currency else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-19T00:55:26.343Z", + "createdAt": "2024-06-19T00:55:26.343Z", + "name": "hs_closed_deal_close_date", + "label": "Closed Deal Close Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Close date populated only if this deal is closed and valid", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(closedate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-17T13:06:21.303Z", + "createdAt": "2024-06-17T13:06:21.303Z", + "name": "hs_closed_deal_create_date", + "label": "Closed Deal Create Date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is closed", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (bool(hs_is_closed) and createdate < closedate) then time_between(createdate, 0) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-16T20:21:20.155Z", + "name": "hs_closed_won_count", + "label": "Is Closed Won (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed won, otherwise 0.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T19:51:21.755Z", + "createdAt": "2023-05-18T17:56:28.363Z", + "name": "hs_closed_won_date", + "label": "Closed Won Date (Internal)", + "type": "datetime", + "fieldType": "date", + "description": "Returns closedate if this deal is closed won", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed_won) then closedate endif", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:51:11.435Z", + "name": "hs_created_by_user_id", + "label": "Created by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who created this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-27T23:56:18.537Z", + "createdAt": "2019-08-06T02:41:52.503Z", + "name": "hs_createdate", + "label": "HubSpot Create Date", + "type": "datetime", + "fieldType": "date", + "description": "The date the deal was created. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:42:41.452Z", + "name": "hs_date_entered_appointmentscheduled", + "label": "Date entered 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:30.382Z", + "name": "hs_date_entered_closedlost", + "label": "Date entered 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:13.551Z", + "name": "hs_date_entered_closedwon", + "label": "Date entered 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:57.538Z", + "name": "hs_date_entered_contractsent", + "label": "Date entered 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:41.289Z", + "name": "hs_date_entered_decisionmakerboughtin", + "label": "Date entered 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:26.610Z", + "name": "hs_date_entered_presentationscheduled", + "label": "Date entered 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:10.231Z", + "name": "hs_date_entered_qualifiedtobuy", + "label": "Date entered 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:42:49.082Z", + "name": "hs_date_exited_appointmentscheduled", + "label": "Date exited 'Appointment Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:29:49.239Z", + "createdAt": "2020-02-11T18:44:38.966Z", + "name": "hs_date_exited_closedlost", + "label": "Date exited 'Closed Lost (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:18.739Z", + "name": "hs_date_exited_closedwon", + "label": "Date exited 'Closed Won (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:02.815Z", + "name": "hs_date_exited_contractsent", + "label": "Date exited 'Contract Sent (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:43:46.148Z", + "name": "hs_date_exited_decisionmakerboughtin", + "label": "Date exited 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:26:54.092Z", + "createdAt": "2020-02-11T18:43:31.307Z", + "name": "hs_date_exited_presentationscheduled", + "label": "Date exited 'Presentation Scheduled (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:15.688Z", + "name": "hs_date_exited_qualifiedtobuy", + "label": "Date exited 'Qualified To Buy (Sales Pipeline)'", + "type": "datetime", + "fieldType": "calculation_read_time", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-07T15:27:11.457Z", + "createdAt": "2023-08-07T15:27:11.457Z", + "name": "hs_days_to_close_raw", + "label": "Days to close (without rounding)", + "type": "number", + "fieldType": "calculation_equation", + "description": "The number of days the deal took to close, without rounding", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(max(0, (closedate - createdate)) / 86400000)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-08-06T02:41:53.235Z", + "name": "hs_deal_amount_calculation_preference", + "label": "Deal amount calculation preference", + "type": "enumeration", + "fieldType": "radio", + "description": "Specifies how deal amount should be calculated from line items", + "groupName": "dealinformation", + "options": [ + { + "label": "Total Contract Value", + "value": "TCV", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Annual Recurring Revenue", + "value": "ARR", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Monthly Recurring Revenue", + "value": "MRR", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Custom", + "value": "CUSTOM", + "displayOrder": 3, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-08T17:23:23.010Z", + "createdAt": "2023-10-18T19:56:30.580Z", + "name": "hs_deal_score", + "label": "Deal Score", + "type": "number", + "fieldType": "number", + "description": "The predictive deal score calculated by Hubspot AI to score the deal health", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:25:44.469Z", + "name": "hs_deal_stage_probability", + "label": "Deal probability", + "type": "number", + "fieldType": "number", + "description": "The probability a deal will close. This defaults to the deal stage probability setting.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-05-20T13:32:10.289Z", + "name": "hs_deal_stage_probability_shadow", + "label": "Deal stage probability shadow", + "type": "number", + "fieldType": "calculation_equation", + "description": "Fall back property for calculating the deal stage when no customer override exist. Probability between 0 and 1 of deal stage. Defaults to 0 for unknown deal stages.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(pipeline_probability(string(dealstage))) then pipeline_probability(string(dealstage)) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-01-19T19:21:11.345Z", + "createdAt": "2023-11-29T14:53:04.344Z", + "name": "hs_exchange_rate", + "label": "Exchange rate", + "type": "number", + "fieldType": "number", + "description": "This is the exchange rate used to convert the deal amount into your company currency.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-10-29T20:22:45.530Z", + "name": "hs_forecast_amount", + "label": "Forecast amount", + "type": "number", + "fieldType": "number", + "description": "The custom forecasted deal value calculated by multiplying the forecast probability and deal amount in your company’s currency.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if is_present(hs_forecast_probability) then (hs_forecast_probability * amount_in_home_currency) else amount_in_home_currency", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-10-29T20:17:48.778Z", + "name": "hs_forecast_probability", + "label": "Forecast probability", + "type": "number", + "fieldType": "number", + "description": "The custom percent probability a deal will close.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-16T14:05:17.485Z", + "createdAt": "2024-05-16T14:05:17.485Z", + "name": "hs_has_empty_conditional_stage_properties", + "label": "Has Empty Conditional Stage Properties", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is missing conditional stage property values required to progress to the next deal stage. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-25T15:11:56.356Z", + "createdAt": "2024-01-10T18:05:14.186Z", + "name": "hs_is_active_shared_deal", + "label": "Is Active Shared Deal", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Indicates if the current deal is an active shared deal. It is set automatically based on the value of hs_num_associated_active_deal_registrations.", + "groupName": "deal_activity", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2019-10-07T15:45:48.973Z", + "name": "hs_is_closed", + "label": "Is Deal Closed?", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal was won or lost.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "(pipeline_probability(string(dealstage)) <= 0 or pipeline_probability(string(dealstage)) >= 1)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-07-31T16:24:00.492Z", + "createdAt": "2024-07-31T16:24:00.492Z", + "name": "hs_is_closed_count", + "label": "Is Closed (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is closed (\"Closed Won\" or \"Closed Lost\"), otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 1 else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-14T21:11:56.135Z", + "createdAt": "2024-08-14T21:11:56.135Z", + "name": "hs_is_closed_lost", + "label": "Is closed lost", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed lost state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability <= 0) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-21T19:08:46.054Z", + "createdAt": "2021-03-19T17:16:09.655Z", + "name": "hs_is_closed_won", + "label": "Is Closed Won", + "type": "bool", + "fieldType": "calculation_equation", + "description": "True if the deal is in the closed won state, false otherwise", + "groupName": "deal_activity", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(pipeline_probability(string(dealstage))) and pipeline_probability(string(dealstage)) >= 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-09-01T17:20:22.955Z", + "name": "hs_is_deal_split", + "label": "Deal Split Added", + "type": "bool", + "fieldType": "calculation_equation", + "description": "Indicates if the deal is split between multiple users.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_num_associated_deal_splits) and hs_num_associated_deal_splits > 1) then true else false", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-29T18:11:13.359Z", + "createdAt": "2024-05-29T18:11:13.359Z", + "name": "hs_is_in_first_deal_stage", + "label": "Is In First Deal Stage", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "True if the deal is in the first stage of its pipeline. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [ + { + "label": "Yes", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "No", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-09T17:22:38.951Z", + "createdAt": "2023-08-04T16:56:09.192Z", + "name": "hs_is_open_count", + "label": "Is Open (numeric)", + "type": "number", + "fieldType": "calculation_equation", + "description": "This property is 1 if the deal is not closed won or closed lost, otherwise 0", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else 1", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:02:40.168Z", + "createdAt": "2020-06-30T15:57:38.258Z", + "name": "hs_lastmodifieddate", + "label": "Last Modified Date", + "type": "datetime", + "fieldType": "date", + "description": "Most recent timestamp of any property update for this deal. This includes HubSpot internal properties, which can be visible or hidden. This property is updated automatically.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-19T15:11:03.313Z", + "createdAt": "2024-03-05T17:51:26.432Z", + "name": "hs_latest_approval_status", + "label": "Latest Approval Status", + "type": "string", + "fieldType": "text", + "description": "The latest approval status. Used by HubSpot to track pipeline approval processes.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-22T19:52:16.821Z", + "createdAt": "2024-03-18T20:26:26.241Z", + "name": "hs_latest_approval_status_approval_id", + "label": "Latest Approval Status Approval ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the approval object containing the latest approval status.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:25:22.440Z", + "name": "hs_latest_meeting_activity", + "label": "Latest meeting activity", + "type": "datetime", + "fieldType": "date", + "description": "The date of the most recent meeting (past or upcoming) logged for, scheduled with, or booked by a contact associated with this deal.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:03:10.610Z", + "createdAt": "2020-02-07T22:31:06.307Z", + "name": "hs_likelihood_to_close", + "label": "Likelihood to close by the close date", + "type": "number", + "fieldType": "number", + "description": "Hubspot predicted likelihood between 0 and 1 of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:31.672Z", + "name": "hs_line_item_global_term_hs_discount_percentage", + "label": "Global Term Line Item Discount Percentage", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for the discount percentage applied.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:05:24.809Z", + "createdAt": "2020-09-11T16:26:50.864Z", + "name": "hs_line_item_global_term_hs_discount_percentage_enabled", + "label": "Global Term Line Item Discount Percentage Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for the discount percentage is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:44.389Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period", + "label": "Global Term Line Item Recurring Billing Period", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for product recurring billing duration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-09-11T16:27:03.492Z", + "name": "hs_line_item_global_term_hs_recurring_billing_period_enabled", + "label": "Global Term Line Item Recurring Billing Period Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for product recurring billing duration is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.216Z", + "createdAt": "2020-08-04T17:58:50.722Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date", + "label": "Global Term Line Item Recurring Billing Start Date", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for recurring billing start date for a line item.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:43:51.982Z", + "createdAt": "2020-09-11T16:27:10.044Z", + "name": "hs_line_item_global_term_hs_recurring_billing_start_date_enabled", + "label": "Global Term Line Item Recurring Billing Start Date Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for recurring billing start date for a line item is enabled.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:42:11.374Z", + "createdAt": "2020-08-04T17:58:37.932Z", + "name": "hs_line_item_global_term_recurringbillingfrequency", + "label": "Global Term Line Item Recurring Billing Frequency", + "type": "string", + "fieldType": "text", + "description": "For internal HubSpot Application use only. Global term for how frequently the product is billed.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T21:10:51.287Z", + "createdAt": "2020-09-11T16:26:57.093Z", + "name": "hs_line_item_global_term_recurringbillingfrequency_enabled", + "label": "Global Term Line Item Recurring Billing Frequency Enabled", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "For internal HubSpot Application use only. Indicates if the Global term for how frequently the product is billed is enabled", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": false, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:51:55.879Z", + "createdAt": "2020-06-30T15:57:38.339Z", + "name": "hs_manual_forecast_category", + "label": "Forecast category", + "type": "enumeration", + "fieldType": "select", + "description": "The likelihood a deal will close. This property is used for manual forecasting your deals.", + "groupName": "dealinformation", + "options": [ + { + "label": "Not forecasted", + "value": "OMIT", + "description": "", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Pipeline", + "value": "PIPELINE", + "description": "", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Best case", + "value": "BEST_CASE", + "description": "", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Commit", + "value": "COMMIT", + "description": "", + "displayOrder": 4, + "hidden": false + }, + { + "label": "Closed won", + "value": "CLOSED", + "description": "", + "displayOrder": 5, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyOptions": false, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:36:33.896Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_merged_object_ids", + "label": "Merged Deal IDs", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The list of Deal record IDs that have been merged into this Deal. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:06:29.497Z", + "createdAt": "2020-06-30T15:57:38.442Z", + "name": "hs_mrr", + "label": "Monthly recurring revenue", + "type": "number", + "fieldType": "number", + "description": "The monthly recurring revenue (MRR) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2020-07-10T20:41:18.146Z", + "name": "hs_next_step", + "label": "Next step", + "type": "string", + "fieldType": "textarea", + "description": "A short description of the next step for the deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-05T16:53:28.980Z", + "createdAt": "2024-08-05T16:53:28.980Z", + "name": "hs_next_step_updated_at", + "label": "Next Step Updated At", + "type": "datetime", + "fieldType": "calculation_equation", + "description": "Timestamp of the most recent update to Next Step property", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "string_to_number(timestamp(hs_next_step))", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-05-06T18:47:41.895Z", + "createdAt": "2024-05-06T18:47:41.895Z", + "name": "hs_notes_last_activity", + "label": "Last Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the last activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-03-13T21:40:39.783Z", + "createdAt": "2024-03-13T21:40:39.783Z", + "name": "hs_notes_next_activity", + "label": "Next Activity", + "type": "object_coordinates", + "fieldType": "text", + "description": "The coordinates of the next upcoming activity for a deal. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-27T16:35:27.302Z", + "createdAt": "2024-02-27T16:35:27.302Z", + "name": "hs_notes_next_activity_type", + "label": "Next Activity Type", + "type": "enumeration", + "fieldType": "select", + "description": "The type of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "dealinformation", + "options": [ + { + "label": "Call", + "value": "CALL", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Conversation session", + "value": "CONVERSATION_SESSION", + "displayOrder": 1, + "hidden": false + }, + { + "label": "Email reply from contact", + "value": "INCOMING_EMAIL", + "displayOrder": 2, + "hidden": false + }, + { + "label": "Email sent to contact", + "value": "EMAIL", + "displayOrder": 3, + "hidden": false + }, + { + "label": "Forwarded email", + "value": "FORWARDED_EMAI", + "displayOrder": 4, + "hidden": false + }, + { + "label": "LinkedIn message", + "value": "LINKEDIN_MESSAGE", + "displayOrder": 5, + "hidden": false + }, + { + "label": "Meeting", + "value": "MEETING", + "displayOrder": 6, + "hidden": false + }, + { + "label": "Note", + "value": "NOTE", + "displayOrder": 7, + "hidden": false + }, + { + "label": "Postal mail", + "value": "POSTAL_MAIL", + "displayOrder": 8, + "hidden": false + }, + { + "label": "Publishing task", + "value": "PUBLISHING_TASK", + "displayOrder": 9, + "hidden": false + }, + { + "label": "SMS", + "value": "SMS", + "displayOrder": 10, + "hidden": false + }, + { + "label": "Task", + "value": "TASK", + "displayOrder": 11, + "hidden": false + }, + { + "label": "WhatsApp", + "value": "WHATS_APP", + "displayOrder": 12, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:00.029Z", + "createdAt": "2021-09-07T12:44:12.716Z", + "name": "hs_num_associated_active_deal_registrations", + "label": "Number of Active Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of active deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:07:15.269Z", + "createdAt": "2021-09-07T12:43:20.975Z", + "name": "hs_num_associated_deal_registrations", + "label": "Number of Deal Registrations", + "type": "number", + "fieldType": "number", + "description": "The number of deal registrations associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-16T17:49:44.961Z", + "createdAt": "2021-03-18T20:41:32.514Z", + "name": "hs_num_associated_deal_splits", + "label": "Number of Deal Splits", + "type": "number", + "fieldType": "number", + "description": "The number of deal splits associated with this deal. This property is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-22T13:37:58.912Z", + "createdAt": "2023-05-22T13:37:58.912Z", + "name": "hs_num_of_associated_line_items", + "label": "Number of Associated Line Items", + "type": "number", + "fieldType": "number", + "description": "The number of line items associated with this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:37:00.799Z", + "createdAt": "2021-04-02T19:12:50.614Z", + "name": "hs_num_target_accounts", + "label": "Number of target accounts", + "type": "number", + "fieldType": "number", + "description": "The number of target account companies associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_id", + "label": "Record ID", + "type": "number", + "fieldType": "number", + "description": "The unique ID for this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source", + "label": "Record creation source", + "type": "string", + "fieldType": "text", + "description": "Raw internal PropertySource present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_1", + "label": "Record source detail 1", + "type": "string", + "fieldType": "text", + "description": "First level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_2", + "label": "Record source detail 2", + "type": "string", + "fieldType": "text", + "description": "Second level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_detail_3", + "label": "Record source detail 3", + "type": "string", + "fieldType": "text", + "description": "Third level of detail on how this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_id", + "label": "Record creation source ID", + "type": "string", + "fieldType": "text", + "description": "Raw internal sourceId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_label", + "label": "Record source", + "type": "enumeration", + "fieldType": "select", + "description": "How this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_object_source_user_id", + "label": "Record creation source user ID", + "type": "number", + "fieldType": "number", + "description": "Raw internal userId present in the RequestMeta when this record was created.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-06-12T05:34:12.696Z", + "createdAt": "2024-06-12T05:34:12.696Z", + "name": "hs_open_deal_create_date", + "label": "Open deal create date", + "type": "number", + "fieldType": "calculation_equation", + "description": "Create date populated only if this deal is open", + "groupName": "dealscripted", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": false, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if bool(hs_is_closed) then 0 else time_between(createdate, 0)", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-02-21T19:46:23.447Z", + "createdAt": "2022-07-25T20:58:45.636Z", + "name": "hs_pinned_engagement_id", + "label": "Pinned Engagement ID", + "type": "number", + "fieldType": "number", + "description": "The object ID of the current pinned engagement. This will only be shown if there is already an association to the engagement.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-02-07T22:33:43.508Z", + "name": "hs_predicted_amount", + "label": "The predicted deal amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount)) then (hs_likelihood_to_close * amount) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:08:31.557Z", + "createdAt": "2020-02-07T22:38:42.351Z", + "name": "hs_predicted_amount_in_home_currency", + "label": "The predicted deal amount in your company's currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the deal amount in your company's currency times the predicted likelihood of the deal to close by the close date.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_likelihood_to_close) and hs_likelihood_to_close >= 0 and hs_likelihood_to_close <= 1 and is_present(amount_in_home_currency)) then (hs_likelihood_to_close * amount_in_home_currency) else ''", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2021-04-13T18:44:53.526Z", + "name": "hs_priority", + "label": "Priority", + "type": "enumeration", + "fieldType": "select", + "description": "", + "groupName": "dealinformation", + "options": [ + { + "label": "Low", + "value": "low", + "displayOrder": 0, + "hidden": false + }, + { + "label": "Medium", + "value": "medium", + "displayOrder": 1, + "hidden": false + }, + { + "label": "High", + "value": "high", + "displayOrder": 2, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:40:41.523Z", + "createdAt": "2021-07-29T14:26:39.754Z", + "name": "hs_projected_amount", + "label": "Weighted amount", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-05-18T15:39:50.422Z", + "createdAt": "2021-07-29T14:27:23.100Z", + "name": "hs_projected_amount_in_home_currency", + "label": "Weighted amount in company currency", + "type": "number", + "fieldType": "calculation_equation", + "description": "Returns the multiplication of the amount in home currency times the probability of the deal closing.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "calculationFormula": "if (is_present(hs_deal_stage_probability) and hs_deal_stage_probability >= 0) then (hs_deal_stage_probability * amount_in_home_currency) else 0", + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_read_only", + "label": "Read only object", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Determines whether a record can be edited by a user.", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false + } + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:30:05.213Z", + "createdAt": "2019-08-06T02:41:53.649Z", + "name": "hs_sales_email_last_replied", + "label": "Recent Sales Email Replied Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a tracked sales email was replied to for this deal", + "groupName": "dealinformation", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:57:36.328Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_team_ids", + "label": "Shared teams", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional teams whose users can access the Deal based on their permissions. This can be set manually or through Workflows or APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-26T22:46:14.081Z", + "createdAt": "1970-01-01T00:00:00Z", + "name": "hs_shared_user_ids", + "label": "Shared users", + "type": "enumeration", + "fieldType": "checkbox", + "description": "Additional users that can access the Deal based on their permissions. This can be set manually or through Workflows and APIs.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-04-20T17:16:59.235Z", + "createdAt": "2023-04-20T17:16:59.235Z", + "name": "hs_source_object_id", + "label": "Source Object ID", + "type": "number", + "fieldType": "number", + "description": "The ID of the object from which the data was migrated. This is set automatically during portal data migration.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-11-20T16:18:04.288Z", + "createdAt": "2023-01-13T15:52:17.575Z", + "name": "hs_tag_ids", + "label": "Deal Tags", + "type": "enumeration", + "fieldType": "checkbox", + "description": "List of tag ids applicable to a deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2022-05-28T00:10:33.836Z", + "createdAt": "2020-06-30T15:57:38.369Z", + "name": "hs_tcv", + "label": "Total contract value", + "type": "number", + "fieldType": "number", + "description": "The total contract value (TCV) of this deal.", + "groupName": "deal_revenue", + "options": [], + "displayOrder": -1, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "showCurrencySymbol": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:38:49.710Z", + "createdAt": "2020-02-11T18:43:02.193Z", + "name": "hs_time_in_appointmentscheduled", + "label": "Time in 'Appointment Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:47:20.508Z", + "createdAt": "2020-02-11T18:44:44.326Z", + "name": "hs_time_in_closedlost", + "label": "Time in 'Closed Lost (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:44:24.100Z", + "name": "hs_time_in_closedwon", + "label": "Time in 'Closed Won (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:50:13.523Z", + "createdAt": "2020-02-11T18:44:08.472Z", + "name": "hs_time_in_contractsent", + "label": "Time in 'Contract Sent (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:51.900Z", + "name": "hs_time_in_decisionmakerboughtin", + "label": "Time in 'Decision Maker Bought-In (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:36.284Z", + "name": "hs_time_in_presentationscheduled", + "label": "Time in 'Presentation Scheduled (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T20:34:06.588Z", + "createdAt": "2020-02-11T18:43:21.488Z", + "name": "hs_time_in_qualifiedtobuy", + "label": "Time in 'Qualified To Buy (Sales Pipeline)'", + "type": "number", + "fieldType": "calculation_read_time", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_unique_creation_key", + "label": "Unique creation key", + "type": "string", + "fieldType": "text", + "description": "Unique property used for idempotent creates", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": true, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-02-24T15:53:25.402Z", + "name": "hs_updated_by_user_id", + "label": "Updated by user ID", + "type": "number", + "fieldType": "number", + "description": "The user who last updated this record. This value is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_followers", + "label": "User IDs of all notification followers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all users that have clicked follow within the object to opt-in to getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_notification_unfollowers", + "label": "User IDs of all notification unfollowers", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all object owners that have clicked unfollow within the object to opt-out of getting follow notifications", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_user_ids_of_all_owners", + "label": "User IDs of all owners", + "type": "enumeration", + "fieldType": "checkbox", + "description": "The user IDs of all owners of this record.", + "groupName": "dealinformation", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.285Z", + "createdAt": "2023-10-31T14:36:55.546Z", + "name": "hs_v2_cumulative_time_in_appointmentscheduled", + "label": "Cumulative time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.700Z", + "createdAt": "2023-10-31T14:38:49.348Z", + "name": "hs_v2_cumulative_time_in_closedlost", + "label": "Cumulative time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.380Z", + "createdAt": "2023-10-31T14:38:31.273Z", + "name": "hs_v2_cumulative_time_in_closedwon", + "label": "Cumulative time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.633Z", + "createdAt": "2023-10-31T14:38:16.005Z", + "name": "hs_v2_cumulative_time_in_contractsent", + "label": "Cumulative time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.903Z", + "createdAt": "2023-10-31T14:37:54.704Z", + "name": "hs_v2_cumulative_time_in_decisionmakerboughtin", + "label": "Cumulative time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.427Z", + "createdAt": "2023-10-31T14:37:39.160Z", + "name": "hs_v2_cumulative_time_in_presentationscheduled", + "label": "Cumulative time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.093Z", + "createdAt": "2023-10-31T14:37:19.856Z", + "name": "hs_v2_cumulative_time_in_qualifiedtobuy", + "label": "Cumulative time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The cumulative time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.240Z", + "createdAt": "2023-11-15T15:17:23.332Z", + "name": "hs_v2_date_entered_appointmentscheduled", + "label": "Date entered \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.527Z", + "createdAt": "2023-11-28T15:49:52.548Z", + "name": "hs_v2_date_entered_closedlost", + "label": "Date entered \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:28.311Z", + "createdAt": "2023-11-15T15:21:44.137Z", + "name": "hs_v2_date_entered_closedwon", + "label": "Date entered \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.333Z", + "createdAt": "2023-11-15T15:21:21.172Z", + "name": "hs_v2_date_entered_contractsent", + "label": "Date entered \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.536Z", + "createdAt": "2023-11-15T15:21:03.201Z", + "name": "hs_v2_date_entered_decisionmakerboughtin", + "label": "Date entered \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.478Z", + "createdAt": "2023-11-15T15:20:42.940Z", + "name": "hs_v2_date_entered_presentationscheduled", + "label": "Date entered \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.176Z", + "createdAt": "2023-11-15T15:20:19.853Z", + "name": "hs_v2_date_entered_qualifiedtobuy", + "label": "Date entered \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal entered the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.753Z", + "createdAt": "2023-10-31T14:14:27.022Z", + "name": "hs_v2_date_exited_appointmentscheduled", + "label": "Date exited \"Appointment Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.301Z", + "createdAt": "2023-10-31T14:16:30.735Z", + "name": "hs_v2_date_exited_closedlost", + "label": "Date exited \"Closed Lost (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Lost' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.162Z", + "createdAt": "2023-10-31T14:16:10.149Z", + "name": "hs_v2_date_exited_closedwon", + "label": "Date exited \"Closed Won (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Closed Won' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.012Z", + "createdAt": "2023-10-31T14:15:48.428Z", + "name": "hs_v2_date_exited_contractsent", + "label": "Date exited \"Contract Sent (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Contract Sent' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.588Z", + "createdAt": "2023-10-31T14:15:30.251Z", + "name": "hs_v2_date_exited_decisionmakerboughtin", + "label": "Date exited \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.853Z", + "createdAt": "2023-11-28T15:26:12.794Z", + "name": "hs_v2_date_exited_presentationscheduled", + "label": "Date exited \"Presentation Scheduled (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.482Z", + "createdAt": "2023-10-31T14:14:47.853Z", + "name": "hs_v2_date_exited_qualifiedtobuy", + "label": "Date exited \"Qualified To Buy (Sales Pipeline)\"", + "type": "datetime", + "fieldType": "date", + "description": "The date and time when the deal exited the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.953Z", + "createdAt": "2023-10-31T14:27:02.455Z", + "name": "hs_v2_latest_time_in_appointmentscheduled", + "label": "Latest time in \"Appointment Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Appointment Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.591Z", + "createdAt": "2023-11-28T15:21:59.678Z", + "name": "hs_v2_latest_time_in_closedlost", + "label": "Latest time in \"Closed Lost (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Lost' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.431Z", + "createdAt": "2023-11-28T15:23:54.642Z", + "name": "hs_v2_latest_time_in_closedwon", + "label": "Latest time in \"Closed Won (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Closed Won' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.365Z", + "createdAt": "2023-10-31T14:34:32.116Z", + "name": "hs_v2_latest_time_in_contractsent", + "label": "Latest time in \"Contract Sent (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Contract Sent' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:30.236Z", + "createdAt": "2023-10-31T14:34:12.684Z", + "name": "hs_v2_latest_time_in_decisionmakerboughtin", + "label": "Latest time in \"Decision Maker Bought-In (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Decision Maker Bought-In' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.804Z", + "createdAt": "2023-11-28T15:25:09.770Z", + "name": "hs_v2_latest_time_in_presentationscheduled", + "label": "Latest time in \"Presentation Scheduled (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Presentation Scheduled' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-04-10T14:50:29.644Z", + "createdAt": "2023-10-31T14:33:36.111Z", + "name": "hs_v2_latest_time_in_qualifiedtobuy", + "label": "Latest time in \"Qualified To Buy (Sales Pipeline)\"", + "type": "number", + "fieldType": "number", + "description": "The total time in seconds spent by the deal in the 'Qualified To Buy' stage, 'Sales Pipeline' pipeline since it last entered this stage", + "groupName": "dealstages", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "name": "hs_was_imported", + "label": "Performed in an import", + "type": "bool", + "fieldType": "booleancheckbox", + "description": "Object is part of an import", + "groupName": "dealinformation", + "options": [ + { + "label": "True", + "value": "true", + "displayOrder": 0, + "hidden": false + }, + { + "label": "False", + "value": "false", + "displayOrder": 1, + "hidden": false } - ] -} + ], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": true, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-28T22:14:26.856Z", + "createdAt": "2020-06-30T15:57:38.224Z", + "name": "hubspot_owner_assigneddate", + "label": "Owner assigned date", + "type": "datetime", + "fieldType": "date", + "description": "The most recent timestamp of when an owner was assigned to this record. This value is set automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": -1, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.418Z", + "name": "hubspot_owner_id", + "label": "Deal owner", + "type": "enumeration", + "fieldType": "select", + "description": "User the deal is assigned to. Assign additional users to a deal record by creating a custom user property.", + "groupName": "dealinformation", + "options": [], + "referencedObjectType": "OWNER", + "displayOrder": 6, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-08-29T21:49:22.423Z", + "createdAt": "2020-06-30T15:57:38.380Z", + "name": "hubspot_team_id", + "label": "HubSpot Team", + "type": "enumeration", + "fieldType": "select", + "description": "Primary team of the deal owner. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 7, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2020-06-30T15:57:38.430Z", + "name": "notes_last_contacted", + "label": "Last Contacted", + "type": "datetime", + "fieldType": "date", + "description": "The last time a call, sales email, or meeting was logged for this deal. This is set automatically by HubSpot based on user actions.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.281Z", + "name": "notes_last_updated", + "label": "Last Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The last time a note, call, email, meeting, or task was logged for a deal. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:32:28.368Z", + "createdAt": "2020-06-30T15:57:38.326Z", + "name": "notes_next_activity_date", + "label": "Next Activity Date", + "type": "datetime", + "fieldType": "date", + "description": "The date of the next upcoming activity for a deal. This property is set automatically by HubSpot based on user action. This includes logging a future call, sales email, or meeting using the Log feature, as well as creating a future task or scheduling a future meeting. This is updated automatically by HubSpot.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2023-06-20T22:34:28.356Z", + "createdAt": "2019-08-06T02:41:52.683Z", + "name": "num_associated_contacts", + "label": "Number of Associated Contacts", + "type": "number", + "fieldType": "number", + "description": "The number of contacts associated with this deal. This property is set automatically by HubSpot.", + "groupName": "dealinformation", + "options": [], + "displayOrder": 10, + "calculated": true, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:06:03.441Z", + "createdAt": "2020-06-30T15:57:38.490Z", + "name": "num_contacted_notes", + "label": "Number of times contacted", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, sales email, SMS, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-08-19T21:05:17.168Z", + "createdAt": "2020-06-30T15:57:38.523Z", + "name": "num_notes", + "label": "Number of Sales Activities", + "type": "number", + "fieldType": "number", + "description": "The number of times a call, chat conversation, LinkedIn message, postal mail, meeting, note, sales email, SMS, task, or WhatsApp message was logged for a deal record. This is set automatically by HubSpot based on user actions in the deal record.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 6, + "calculated": false, + "externalOptions": false, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": true + }, + "formField": false, + "dataSensitivity": "non_sensitive" + }, + { + "updatedAt": "2024-09-05T17:14:04.747Z", + "createdAt": "2020-06-30T15:57:38.191Z", + "name": "pipeline", + "label": "Pipeline", + "type": "enumeration", + "fieldType": "select", + "description": "The pipeline the deal is in. This determines which stages are options for the deal.", + "groupName": "deal_activity", + "options": [], + "displayOrder": 4, + "calculated": false, + "externalOptions": true, + "hasUniqueValue": false, + "hidden": false, + "hubspotDefined": true, + "modificationMetadata": { + "archivable": true, + "readOnlyDefinition": true, + "readOnlyValue": false + }, + "formField": false, + "dataSensitivity": "non_sensitive" + } + ] +} \ No newline at end of file From 05ad7155596968dca09c30ff35b7d93ed0caa45e Mon Sep 17 00:00:00 2001 From: Khaliq Date: Thu, 3 Oct 2024 00:01:19 +0300 Subject: [PATCH 4/4] fix lint --- integrations/hubspot/actions/fetch-properties.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integrations/hubspot/actions/fetch-properties.ts b/integrations/hubspot/actions/fetch-properties.ts index 1ffa49e5..64b996fb 100644 --- a/integrations/hubspot/actions/fetch-properties.ts +++ b/integrations/hubspot/actions/fetch-properties.ts @@ -14,6 +14,5 @@ export default async function runAction(nango: NangoAction, input: InputProperty }; const response = await nango.get(config); - return response.data + return response.data; } -