@segment/action-destinations 3.89.1-alpha.2 → 3.90.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/dist/destinations/cordial/addProductToCart/index.js +1 -1
  2. package/dist/destinations/cordial/addProductToCart/index.js.map +1 -1
  3. package/dist/destinations/cordial/index.js +1 -1
  4. package/dist/destinations/cordial/index.js.map +1 -1
  5. package/dist/destinations/cordial/removeProductFromCart/index.js.map +1 -1
  6. package/dist/destinations/cordial/upsertOrder/index.js +8 -8
  7. package/dist/destinations/cordial/upsertOrder/index.js.map +1 -1
  8. package/dist/destinations/customerio/trackEvent/index.js.map +1 -1
  9. package/dist/destinations/facebook-conversions-api/constants.d.ts +1 -1
  10. package/dist/destinations/facebook-conversions-api/constants.js +1 -1
  11. package/dist/destinations/google-analytics-4/ga4-properties.js +1 -1
  12. package/dist/destinations/google-analytics-4/ga4-properties.js.map +1 -1
  13. package/dist/destinations/google-enhanced-conversions/postConversion/index.js +2 -3
  14. package/dist/destinations/google-enhanced-conversions/postConversion/index.js.map +1 -1
  15. package/dist/destinations/index.js +0 -2
  16. package/dist/destinations/index.js.map +1 -1
  17. package/dist/destinations/personas-messaging-sendgrid/sendEmail/index.js +12 -19
  18. package/dist/destinations/personas-messaging-sendgrid/sendEmail/index.js.map +1 -1
  19. package/dist/destinations/personas-messaging-twilio/sendSms/index.js +17 -4
  20. package/dist/destinations/personas-messaging-twilio/sendSms/index.js.map +1 -1
  21. package/package.json +4 -4
  22. package/dist/destinations/intercom/generated-types.d.ts +0 -2
  23. package/dist/destinations/intercom/generated-types.js +0 -3
  24. package/dist/destinations/intercom/generated-types.js.map +0 -1
  25. package/dist/destinations/intercom/groupIdentifyContact/generated-types.d.ts +0 -14
  26. package/dist/destinations/intercom/groupIdentifyContact/generated-types.js +0 -3
  27. package/dist/destinations/intercom/groupIdentifyContact/generated-types.js.map +0 -1
  28. package/dist/destinations/intercom/groupIdentifyContact/index.d.ts +0 -5
  29. package/dist/destinations/intercom/groupIdentifyContact/index.js +0 -122
  30. package/dist/destinations/intercom/groupIdentifyContact/index.js.map +0 -1
  31. package/dist/destinations/intercom/identifyContact/generated-types.d.ts +0 -15
  32. package/dist/destinations/intercom/identifyContact/generated-types.js +0 -3
  33. package/dist/destinations/intercom/identifyContact/generated-types.js.map +0 -1
  34. package/dist/destinations/intercom/identifyContact/index.d.ts +0 -5
  35. package/dist/destinations/intercom/identifyContact/index.js +0 -153
  36. package/dist/destinations/intercom/identifyContact/index.js.map +0 -1
  37. package/dist/destinations/intercom/index.d.ts +0 -4
  38. package/dist/destinations/intercom/index.js +0 -37
  39. package/dist/destinations/intercom/index.js.map +0 -1
  40. package/dist/destinations/pardot/generated-types.d.ts +0 -5
  41. package/dist/destinations/pardot/generated-types.js +0 -3
  42. package/dist/destinations/pardot/generated-types.js.map +0 -1
  43. package/dist/destinations/pardot/index.d.ts +0 -4
  44. package/dist/destinations/pardot/index.js +0 -62
  45. package/dist/destinations/pardot/index.js.map +0 -1
  46. package/dist/destinations/pardot/pa-operations.d.ts +0 -17
  47. package/dist/destinations/pardot/pa-operations.js +0 -51
  48. package/dist/destinations/pardot/pa-operations.js.map +0 -1
  49. package/dist/destinations/pardot/pa-properties.d.ts +0 -2
  50. package/dist/destinations/pardot/pa-properties.js +0 -13
  51. package/dist/destinations/pardot/pa-properties.js.map +0 -1
  52. package/dist/destinations/pardot/pa-type.d.ts +0 -15
  53. package/dist/destinations/pardot/pa-type.js +0 -3
  54. package/dist/destinations/pardot/pa-type.js.map +0 -1
  55. package/dist/destinations/pardot/prospects/generated-types.d.ts +0 -19
  56. package/dist/destinations/pardot/prospects/generated-types.js +0 -3
  57. package/dist/destinations/pardot/prospects/generated-types.js.map +0 -1
  58. package/dist/destinations/pardot/prospects/index.d.ts +0 -5
  59. package/dist/destinations/pardot/prospects/index.js +0 -204
  60. package/dist/destinations/pardot/prospects/index.js.map +0 -1
@@ -1,122 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const actions_core_1 = require("@segment/actions-core");
4
- const action = {
5
- title: 'Group Identify Contact',
6
- description: "Create or Update A Company. Note: Companies will be only visible in Intercom's Dashboard when there is at least one associated contact.",
7
- defaultSubscription: 'type = "group"',
8
- platform: 'web',
9
- fields: {
10
- remote_created_at: {
11
- type: 'datetime',
12
- description: 'The time the company was created by you.',
13
- label: 'Remote Created At',
14
- default: {
15
- '@path': '$.traits.createdAt'
16
- }
17
- },
18
- company_id: {
19
- type: 'string',
20
- description: "The unique identifier of the company. Can't be updated.",
21
- label: 'Company ID',
22
- required: true,
23
- default: {
24
- '@path': '$.groupId'
25
- }
26
- },
27
- contact_id: {
28
- type: 'string',
29
- description: 'Attach this contact to the company. This ID is NOT the external_id or email; it is the Intercom unique identifier.',
30
- label: 'Contact ID',
31
- default: {
32
- '@path': '$.userId'
33
- }
34
- },
35
- name: {
36
- type: 'string',
37
- description: 'The name of the company.',
38
- label: 'Name',
39
- default: {
40
- '@path': '$.traits.name'
41
- }
42
- },
43
- monthly_spend: {
44
- type: 'number',
45
- description: 'The monthly spend of the company.',
46
- label: 'Monthly Spend',
47
- default: {
48
- '@path': '$.traits.plan'
49
- }
50
- },
51
- plan: {
52
- type: 'string',
53
- description: 'The plan of the company.',
54
- label: 'Plan',
55
- default: {
56
- '@path': '$.traits.plan'
57
- }
58
- },
59
- size: {
60
- type: 'number',
61
- description: 'The size of the company.',
62
- label: 'Size',
63
- default: {
64
- '@path': '$.traits.employees'
65
- }
66
- },
67
- website: {
68
- type: 'string',
69
- description: 'The website of the company.',
70
- label: 'Website',
71
- default: {
72
- '@path': '$.traits.website'
73
- }
74
- },
75
- industry: {
76
- type: 'string',
77
- description: 'The industry of the company.',
78
- label: 'Industry',
79
- default: {
80
- '@path': '$.traits.industry'
81
- }
82
- },
83
- custom_attributes: {
84
- type: 'object',
85
- description: 'Passing any traits not mapped to individual fields as Custom Attributes. Note: Will throw an error if you pass an attribute that isn`t explicitly defined.',
86
- label: 'Custom Attributes'
87
- }
88
- },
89
- perform: async (request, { payload }) => {
90
- const contactId = payload.contact_id;
91
- delete payload.contact_id;
92
- const response = await createOrUpdateIntercomCompany(request, payload);
93
- if (contactId) {
94
- try {
95
- const companyId = response.data.id;
96
- return await attachContactToIntercomCompany(request, contactId, companyId);
97
- }
98
- catch (error) {
99
- if (error?.response?.status === 404) {
100
- throw new actions_core_1.RetryableError(`Contact doesn't exist, retrying`);
101
- }
102
- throw error;
103
- }
104
- }
105
- }
106
- };
107
- function createOrUpdateIntercomCompany(request, payload) {
108
- return request(`https://api.intercom.io/companies`, {
109
- method: 'POST',
110
- json: payload
111
- });
112
- }
113
- function attachContactToIntercomCompany(request, contactId, companyId) {
114
- return request(`https://api.intercom.io/contacts/${contactId}/companies`, {
115
- method: 'POST',
116
- json: {
117
- id: companyId
118
- }
119
- });
120
- }
121
- exports.default = action;
122
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/destinations/intercom/groupIdentifyContact/index.ts"],"names":[],"mappings":"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"}
@@ -1,15 +0,0 @@
1
- export interface Payload {
2
- role: string;
3
- external_id?: string;
4
- email?: string;
5
- phone?: string;
6
- name?: string;
7
- avatar?: string;
8
- signed_up_at?: string | number;
9
- last_seen_at?: string | number;
10
- owner_id?: number;
11
- unsubscribed_from_emails?: boolean;
12
- custom_attributes?: {
13
- [k: string]: unknown;
14
- };
15
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=generated-types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../../../src/destinations/intercom/identifyContact/generated-types.ts"],"names":[],"mappings":""}
@@ -1,5 +0,0 @@
1
- import { ActionDefinition } from '@segment/actions-core';
2
- import type { Settings } from '../generated-types';
3
- import type { Payload } from './generated-types';
4
- declare const action: ActionDefinition<Settings, Payload>;
5
- export default action;
@@ -1,153 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const actions_core_1 = require("@segment/actions-core");
4
- const action = {
5
- title: 'Identify Contact',
6
- description: 'Create or Update a Contact.',
7
- defaultSubscription: 'type = "identify"',
8
- platform: 'web',
9
- fields: {
10
- role: {
11
- type: 'string',
12
- required: true,
13
- description: 'The role of the contact. Accepted values are `user` or `lead`. Can only be updated if `lead`.',
14
- label: 'Role',
15
- default: 'lead'
16
- },
17
- external_id: {
18
- type: 'string',
19
- description: 'A unique identifier generated outside Intercom. Required if role=user and email is blank.',
20
- label: 'External ID',
21
- default: {
22
- '@path': '$.userId'
23
- }
24
- },
25
- email: {
26
- type: 'string',
27
- description: "The contact's email. Required if role=user and external_id is blank.",
28
- label: 'Email',
29
- format: 'email',
30
- default: {
31
- '@path': '$.traits.email'
32
- }
33
- },
34
- phone: {
35
- label: 'Phone Number',
36
- description: "The contact's phone number.",
37
- type: 'string',
38
- default: {
39
- '@path': '$.traits.phone'
40
- }
41
- },
42
- name: {
43
- type: 'string',
44
- description: "The contact's name.",
45
- label: 'Name',
46
- default: {
47
- '@path': '$.traits.name'
48
- }
49
- },
50
- avatar: {
51
- label: 'Avatar',
52
- description: 'URL of image to be associated with contact profile.',
53
- type: 'string',
54
- format: 'uri',
55
- default: {
56
- '@path': '$.traits.avatar'
57
- }
58
- },
59
- signed_up_at: {
60
- label: 'Signed Up At',
61
- type: 'datetime',
62
- description: 'The timestamp when the contact was created.',
63
- default: {
64
- '@path': '$.createdAt'
65
- }
66
- },
67
- last_seen_at: {
68
- label: 'Timestamp',
69
- type: 'datetime',
70
- description: 'The timestamp the contact was last seen.',
71
- default: {
72
- '@path': '$.timestamp'
73
- }
74
- },
75
- owner_id: {
76
- label: 'Owner Id',
77
- type: 'number',
78
- description: 'The id of an admin that has been assigned account ownership of the contact.'
79
- },
80
- unsubscribed_from_emails: {
81
- label: 'Unsubscribed From Emails',
82
- type: 'boolean',
83
- description: 'Whether the contact is unsubscribed from emails.'
84
- },
85
- custom_attributes: {
86
- label: 'Custom Attributes',
87
- description: 'The custom attributes which are set for the contact. Note: Will throw an error if the object has an attribute that isn`t explicitly defined on Intercom.',
88
- type: 'object',
89
- default: {
90
- '@path': '$.traits.customAttributes'
91
- }
92
- }
93
- },
94
- perform: async (request, { payload }) => {
95
- try {
96
- const contact = await searchIntercomContact(request, payload);
97
- if (contact) {
98
- return updateIntercomContact(request, contact.id, payload);
99
- }
100
- return await createIntercomContact(request, payload);
101
- }
102
- catch (error) {
103
- if (error?.response?.status === 409) {
104
- throw new actions_core_1.RetryableError('Contact was reported duplicated but could not be searched for, probably due to Intercom search cache not being updated');
105
- }
106
- throw error;
107
- }
108
- }
109
- };
110
- async function createIntercomContact(request, payload) {
111
- return request('https://api.intercom.io/contacts', {
112
- method: 'POST',
113
- json: payload
114
- });
115
- }
116
- async function searchIntercomContact(request, payload) {
117
- const searchFields = {
118
- email: payload.email,
119
- external_id: payload.external_id,
120
- role: payload.role
121
- };
122
- const value = [];
123
- for (const [key, fieldValue] of Object.entries(searchFields)) {
124
- if (fieldValue) {
125
- value.push({
126
- field: key,
127
- operator: '=',
128
- value: fieldValue
129
- });
130
- }
131
- }
132
- const query = {
133
- operator: 'AND',
134
- value
135
- };
136
- const response = await request('https://api.intercom.io/contacts/search', {
137
- method: 'POST',
138
- json: { query }
139
- });
140
- if (response.data.total_count === 1) {
141
- return response.data.data[0];
142
- }
143
- }
144
- async function updateIntercomContact(request, contactId, payload) {
145
- return request(`https://api.intercom.io/contacts/${contactId}`, {
146
- method: 'PUT',
147
- json: {
148
- ...payload
149
- }
150
- });
151
- }
152
- exports.default = action;
153
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/destinations/intercom/identifyContact/index.ts"],"names":[],"mappings":"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"}
@@ -1,4 +0,0 @@
1
- import type { DestinationDefinition } from '@segment/actions-core';
2
- import type { Settings } from './generated-types';
3
- declare const destination: DestinationDefinition<Settings>;
4
- export default destination;
@@ -1,37 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const identifyContact_1 = __importDefault(require("./identifyContact"));
7
- const groupIdentifyContact_1 = __importDefault(require("./groupIdentifyContact"));
8
- const destination = {
9
- name: 'Intercom (Actions)',
10
- slug: 'actions-intercom',
11
- mode: 'cloud',
12
- authentication: {
13
- scheme: 'oauth2',
14
- fields: {},
15
- testAuthentication: (request) => {
16
- return request('https://api.intercom.io/admins');
17
- }
18
- },
19
- extendRequest({ auth }) {
20
- return {
21
- headers: {
22
- authorization: `Bearer ${auth?.accessToken}`
23
- }
24
- };
25
- },
26
- onDelete: async (request, { payload }) => {
27
- return request(`https://api.intercom.io/contacts/${payload.userId}`, {
28
- method: 'DELETE'
29
- });
30
- },
31
- actions: {
32
- identifyContact: identifyContact_1.default,
33
- groupIdentifyContact: groupIdentifyContact_1.default
34
- }
35
- };
36
- exports.default = destination;
37
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/destinations/intercom/index.ts"],"names":[],"mappings":";;;;;AAEA,wEAA+C;AAC/C,kFAAyD;AAEzD,MAAM,WAAW,GAAoC;IACnD,IAAI,EAAE,oBAAoB;IAC1B,IAAI,EAAE,kBAAkB;IACxB,IAAI,EAAE,OAAO;IAEb,cAAc,EAAE;QACd,MAAM,EAAE,QAAQ;QAChB,MAAM,EAAE,EAAE;QACV,kBAAkB,EAAE,CAAC,OAAO,EAAE,EAAE;YAG9B,OAAO,OAAO,CAAC,gCAAgC,CAAC,CAAA;QAClD,CAAC;KACF;IACD,aAAa,CAAC,EAAE,IAAI,EAAE;QACpB,OAAO;YACL,OAAO,EAAE;gBACP,aAAa,EAAE,UAAU,IAAI,EAAE,WAAW,EAAE;aAC7C;SACF,CAAA;IACH,CAAC;IAED,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE;QACvC,OAAO,OAAO,CAAC,oCAAoC,OAAO,CAAC,MAAM,EAAE,EAAE;YACnE,MAAM,EAAE,QAAQ;SACjB,CAAC,CAAA;IACJ,CAAC;IAED,OAAO,EAAE;QACP,eAAe,EAAf,yBAAe;QACf,oBAAoB,EAApB,8BAAoB;KACrB;CACF,CAAA;AAED,kBAAe,WAAW,CAAA"}
@@ -1,5 +0,0 @@
1
- export interface Settings {
2
- businessUnitID: string;
3
- accountID: string;
4
- isSandbox: boolean;
5
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=generated-types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../../src/destinations/pardot/generated-types.ts"],"names":[],"mappings":""}
@@ -1,4 +0,0 @@
1
- import type { DestinationDefinition } from '@segment/actions-core';
2
- import type { Settings } from './generated-types';
3
- declare const destination: DestinationDefinition<Settings>;
4
- export default destination;
@@ -1,62 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const prospects_1 = __importDefault(require("./prospects"));
7
- const destination = {
8
- name: 'Pardot Actions',
9
- slug: 'actions-pardot',
10
- mode: 'cloud',
11
- authentication: {
12
- scheme: 'oauth2',
13
- fields: {
14
- businessUnitID: {
15
- label: 'Pardot Business Unit ID',
16
- description: 'The Pardot Business Unit ID associated with your Pardot Account. ' +
17
- 'To find your Business Unit ID in Salesforce, go to **Setup** and search for `Pardot`. Your Pardot Business Unit ID is an 18-character string that starts with `0Uv`. If you cannot access the Pardot Account Setup information, ask your Salesforce Administrator to find the Pardot Business Unit ID for you.',
18
- type: 'string',
19
- required: true
20
- },
21
- accountID: {
22
- label: 'Account ID',
23
- description: 'You can find your Account ID (`piAId`) under **Marketing > Campaigns** in your [Pardot account](https://pi.pardot.com/campaign). After selecting your desired website campaign, press **View Tracking Code**. ',
24
- type: 'string',
25
- required: true
26
- },
27
- isSandbox: {
28
- label: 'Sandbox Instance',
29
- description: 'Enable to authenticate into a sandbox instance. You can log in to a sandbox by appending the sandbox name to your Salesforce username. For example, if a username for a production org is user@acme.com and the sandbox is named `test`, the username to log in to the sandbox is user@acme.com.test. If you are already authenticated, please disconnect and reconnect with your sandbox username.',
30
- type: 'boolean',
31
- default: false,
32
- required: true
33
- }
34
- },
35
- refreshAccessToken: async (request, { auth, settings }) => {
36
- const baseUrl = settings.isSandbox ? 'https://test.salesforce.com' : 'https://login.salesforce.com';
37
- const res = await request(`${baseUrl}/services/oauth2/token`, {
38
- method: 'POST',
39
- body: new URLSearchParams({
40
- refresh_token: auth.refreshToken,
41
- client_id: auth.clientId,
42
- client_secret: auth.clientSecret,
43
- grant_type: 'refresh_token'
44
- })
45
- });
46
- return { accessToken: res.data.access_token };
47
- }
48
- },
49
- extendRequest({ settings, auth }) {
50
- return {
51
- headers: {
52
- Authorization: `Bearer ${auth?.accessToken}`,
53
- 'Pardot-Business-Unit-Id': settings.businessUnitID
54
- }
55
- };
56
- },
57
- actions: {
58
- prospects: prospects_1.default
59
- }
60
- };
61
- exports.default = destination;
62
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/destinations/pardot/index.ts"],"names":[],"mappings":";;;;;AAEA,4DAAmC;AAMnC,MAAM,WAAW,GAAoC;IACnD,IAAI,EAAE,gBAAgB;IACtB,IAAI,EAAE,gBAAgB;IACtB,IAAI,EAAE,OAAO;IAEb,cAAc,EAAE;QACd,MAAM,EAAE,QAAQ;QAChB,MAAM,EAAE;YACN,cAAc,EAAE;gBACd,KAAK,EAAE,yBAAyB;gBAChC,WAAW,EACT,mEAAmE;oBACnE,iTAAiT;gBACnT,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;aACf;YACD,SAAS,EAAE;gBACT,KAAK,EAAE,YAAY;gBACnB,WAAW,EACT,gNAAgN;gBAClN,IAAI,EAAE,QAAQ;gBACd,QAAQ,EAAE,IAAI;aACf;YACD,SAAS,EAAE;gBACT,KAAK,EAAE,kBAAkB;gBACzB,WAAW,EACT,qYAAqY;gBACvY,IAAI,EAAE,SAAS;gBACf,OAAO,EAAE,KAAK;gBACd,QAAQ,EAAE,IAAI;aACf;SACF;QACD,kBAAkB,EAAE,KAAK,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE,EAAE;YAExD,MAAM,OAAO,GAAG,QAAQ,CAAC,SAAS,CAAC,CAAC,CAAC,6BAA6B,CAAC,CAAC,CAAC,8BAA8B,CAAA;YACnG,MAAM,GAAG,GAAG,MAAM,OAAO,CAAuB,GAAG,OAAO,wBAAwB,EAAE;gBAClF,MAAM,EAAE,MAAM;gBACd,IAAI,EAAE,IAAI,eAAe,CAAC;oBACxB,aAAa,EAAE,IAAI,CAAC,YAAY;oBAChC,SAAS,EAAE,IAAI,CAAC,QAAQ;oBACxB,aAAa,EAAE,IAAI,CAAC,YAAY;oBAChC,UAAU,EAAE,eAAe;iBAC5B,CAAC;aACH,CAAC,CAAA;YACF,OAAO,EAAE,WAAW,EAAE,GAAG,CAAC,IAAI,CAAC,YAAY,EAAE,CAAA;QAC/C,CAAC;KACF;IACD,aAAa,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE;QAC9B,OAAO;YACL,OAAO,EAAE;gBACP,aAAa,EAAE,UAAU,IAAI,EAAE,WAAW,EAAE;gBAC5C,yBAAyB,EAAE,QAAQ,CAAC,cAAc;aACnD;SACF,CAAA;IACH,CAAC;IAED,OAAO,EAAE;QACP,SAAS,EAAT,mBAAS;KACV;CACF,CAAA;AAED,kBAAe,WAAW,CAAA"}
@@ -1,17 +0,0 @@
1
- import { RequestClient } from '@segment/actions-core';
2
- import type { Payload as ProspectsPayload } from './prospects/generated-types';
3
- export declare const API_VERSION = "v5";
4
- interface ProspectUpsertResponseData {
5
- id: string;
6
- email: string;
7
- }
8
- export default class Pardot {
9
- businessUnitID: string;
10
- baseUrl: string;
11
- request: RequestClient;
12
- constructor(businessUnitID: string, baseUrl: string, request: RequestClient);
13
- upsertRecord: (payload: ProspectsPayload) => Promise<import("@segment/actions-core").ModifiedResponse<ProspectUpsertResponseData>>;
14
- private ProspectsShape;
15
- private buildProspectJSON;
16
- }
17
- export {};
@@ -1,51 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.API_VERSION = void 0;
4
- exports.API_VERSION = 'v5';
5
- class Pardot {
6
- constructor(businessUnitID, baseUrl, request) {
7
- this.upsertRecord = async (payload) => {
8
- const prospect = this.buildProspectJSON(payload);
9
- return this.request(`${this.baseUrl}/api/${exports.API_VERSION}/objects/prospects/do/upsertLatestByEmail`, {
10
- method: 'post',
11
- headers: {
12
- 'Content-Type': 'application/json'
13
- },
14
- json: {
15
- matchEmail: payload.email,
16
- prospect: prospect,
17
- secondaryDeletedSearch: payload.secondaryDeletedSearch
18
- }
19
- });
20
- };
21
- this.ProspectsShape = (payload) => {
22
- return {
23
- email: payload.email,
24
- firstName: payload.firstName,
25
- lastName: payload.lastName,
26
- salutation: payload.salutation,
27
- phone: payload.phone,
28
- company: payload.company,
29
- jobTitle: payload.jobTitle,
30
- industry: payload.industry,
31
- city: payload.city,
32
- state: payload.state,
33
- zip: payload.zip,
34
- country: payload.country,
35
- website: payload.website
36
- };
37
- };
38
- this.buildProspectJSON = (payload) => {
39
- let baseShape = this.ProspectsShape(payload);
40
- if (payload.customFields) {
41
- baseShape = { ...baseShape, ...payload.customFields };
42
- }
43
- return baseShape;
44
- };
45
- this.businessUnitID = businessUnitID;
46
- this.baseUrl = baseUrl;
47
- this.request = request;
48
- }
49
- }
50
- exports.default = Pardot;
51
- //# sourceMappingURL=pa-operations.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pa-operations.js","sourceRoot":"","sources":["../../../src/destinations/pardot/pa-operations.ts"],"names":[],"mappings":";;;AAIa,QAAA,WAAW,GAAG,IAAI,CAAA;AAO/B,MAAqB,MAAM;IAKzB,YAAY,cAAsB,EAAE,OAAe,EAAE,OAAsB;QAM3E,iBAAY,GAAG,KAAK,EAAE,OAAyB,EAAE,EAAE;YACjD,MAAM,QAAQ,GAAG,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAA;YAEhD,OAAO,IAAI,CAAC,OAAO,CACjB,GAAG,IAAI,CAAC,OAAO,QAAQ,mBAAW,2CAA2C,EAC7E;gBACE,MAAM,EAAE,MAAM;gBACd,OAAO,EAAE;oBACP,cAAc,EAAE,kBAAkB;iBACnC;gBACD,IAAI,EAAE;oBACJ,UAAU,EAAE,OAAO,CAAC,KAAK;oBACzB,QAAQ,EAAE,QAAQ;oBAClB,sBAAsB,EAAE,OAAO,CAAC,sBAAsB;iBACvD;aACF,CACF,CAAA;QACH,CAAC,CAAA;QAEO,mBAAc,GAAG,CAAC,OAAyB,EAAiB,EAAE;YACpE,OAAO;gBACL,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,SAAS,EAAE,OAAO,CAAC,SAAS;gBAC5B,QAAQ,EAAE,OAAO,CAAC,QAAQ;gBAC1B,UAAU,EAAE,OAAO,CAAC,UAAU;gBAC9B,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,OAAO,EAAE,OAAO,CAAC,OAAO;gBACxB,QAAQ,EAAE,OAAO,CAAC,QAAQ;gBAC1B,QAAQ,EAAE,OAAO,CAAC,QAAQ;gBAC1B,IAAI,EAAE,OAAO,CAAC,IAAI;gBAClB,KAAK,EAAE,OAAO,CAAC,KAAK;gBACpB,GAAG,EAAE,OAAO,CAAC,GAAG;gBAChB,OAAO,EAAE,OAAO,CAAC,OAAO;gBACxB,OAAO,EAAE,OAAO,CAAC,OAAO;aACzB,CAAA;QACH,CAAC,CAAA;QAEO,sBAAiB,GAAG,CAAC,OAAyB,EAAE,EAAE;YACxD,IAAI,SAAS,GAAG,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAA;YAE5C,IAAI,OAAO,CAAC,YAAY,EAAE;gBACxB,SAAS,GAAG,EAAE,GAAG,SAAS,EAAE,GAAG,OAAO,CAAC,YAAY,EAAE,CAAA;aACtD;YAED,OAAO,SAAS,CAAA;QAClB,CAAC,CAAA;QAlDC,IAAI,CAAC,cAAc,GAAG,cAAc,CAAA;QACpC,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,CAAC;CAgDF;AAzDD,yBAyDC"}
@@ -1,2 +0,0 @@
1
- import { InputField } from '@segment/actions-core/src/destination-kit/types';
2
- export declare const customFields: InputField;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.customFields = void 0;
4
- exports.customFields = {
5
- label: 'Other Fields',
6
- description: `
7
- Additional prospect fields to send to Pardot.
8
- Only editable fields are accepted. Please see [Pardot docs](https://developer.salesforce.com/docs/marketing/pardot/guide/prospect-v5.html#fields) for more details. On the left-hand side, input the Pardot field name. On the right-hand side, map the Segment field that contains the value.`,
9
- type: 'object',
10
- required: false,
11
- defaultObjectUI: 'keyvalue'
12
- };
13
- //# sourceMappingURL=pa-properties.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pa-properties.js","sourceRoot":"","sources":["../../../src/destinations/pardot/pa-properties.ts"],"names":[],"mappings":";;;AAEa,QAAA,YAAY,GAAe;IACtC,KAAK,EAAE,cAAc;IACrB,WAAW,EAAE;;iSAEkR;IAC/R,IAAI,EAAE,QAAQ;IACd,QAAQ,EAAE,KAAK;IACf,eAAe,EAAE,UAAU;CAC5B,CAAA"}
@@ -1,15 +0,0 @@
1
- export declare type ProspectsType = {
2
- email: string;
3
- firstName?: string;
4
- lastName?: string;
5
- salutation?: string;
6
- phone?: string;
7
- company?: string;
8
- jobTitle?: string;
9
- industry?: string;
10
- city?: string;
11
- state?: string;
12
- zip?: string;
13
- country?: string;
14
- website?: string;
15
- };
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=pa-type.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"pa-type.js","sourceRoot":"","sources":["../../../src/destinations/pardot/pa-type.ts"],"names":[],"mappings":""}
@@ -1,19 +0,0 @@
1
- export interface Payload {
2
- email: string;
3
- firstName?: string;
4
- lastName?: string;
5
- salutation?: string;
6
- phone?: string;
7
- company?: string;
8
- jobTitle?: string;
9
- industry?: string;
10
- city?: string;
11
- state?: string;
12
- zip?: string;
13
- country?: string;
14
- website?: string;
15
- secondaryDeletedSearch: boolean;
16
- customFields?: {
17
- [k: string]: unknown;
18
- };
19
- }
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=generated-types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../../../src/destinations/pardot/prospects/generated-types.ts"],"names":[],"mappings":""}
@@ -1,5 +0,0 @@
1
- import { ActionDefinition } from '@segment/actions-core';
2
- import type { Settings } from '../generated-types';
3
- import type { Payload } from './generated-types';
4
- declare const action: ActionDefinition<Settings, Payload>;
5
- export default action;