@segment/action-destinations 3.88.0 → 3.88.1-alpha.10
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.
- package/dist/destinations/cordial/addProductToCart/index.js +1 -1
- package/dist/destinations/cordial/addProductToCart/index.js.map +1 -1
- package/dist/destinations/cordial/index.js +1 -1
- package/dist/destinations/cordial/index.js.map +1 -1
- package/dist/destinations/cordial/removeProductFromCart/index.js.map +1 -1
- package/dist/destinations/cordial/upsertOrder/index.js +8 -8
- package/dist/destinations/cordial/upsertOrder/index.js.map +1 -1
- package/dist/destinations/customerio/trackEvent/index.js.map +1 -1
- package/dist/destinations/google-enhanced-conversions/postConversion/index.js +3 -2
- package/dist/destinations/google-enhanced-conversions/postConversion/index.js.map +1 -1
- package/dist/destinations/google-sheets/postSheet/generated-types.d.ts +1 -0
- package/dist/destinations/google-sheets/postSheet/index.js +6 -0
- package/dist/destinations/google-sheets/postSheet/index.js.map +1 -1
- package/dist/destinations/index.js +2 -0
- package/dist/destinations/index.js.map +1 -1
- package/dist/destinations/intercom/generated-types.d.ts +2 -0
- package/dist/destinations/intercom/generated-types.js +3 -0
- package/dist/destinations/intercom/generated-types.js.map +1 -0
- package/dist/destinations/intercom/groupIdentifyContact/generated-types.d.ts +14 -0
- package/dist/destinations/intercom/groupIdentifyContact/generated-types.js +3 -0
- package/dist/destinations/intercom/groupIdentifyContact/generated-types.js.map +1 -0
- package/dist/destinations/intercom/groupIdentifyContact/index.d.ts +5 -0
- package/dist/destinations/intercom/groupIdentifyContact/index.js +122 -0
- package/dist/destinations/intercom/groupIdentifyContact/index.js.map +1 -0
- package/dist/destinations/intercom/identifyContact/generated-types.d.ts +15 -0
- package/dist/destinations/intercom/identifyContact/generated-types.js +3 -0
- package/dist/destinations/intercom/identifyContact/generated-types.js.map +1 -0
- package/dist/destinations/intercom/identifyContact/index.d.ts +5 -0
- package/dist/destinations/intercom/identifyContact/index.js +153 -0
- package/dist/destinations/intercom/identifyContact/index.js.map +1 -0
- package/dist/destinations/intercom/index.d.ts +4 -0
- package/dist/destinations/intercom/index.js +37 -0
- package/dist/destinations/intercom/index.js.map +1 -0
- package/dist/destinations/pardot/generated-types.d.ts +5 -0
- package/dist/destinations/pardot/generated-types.js +3 -0
- package/dist/destinations/pardot/generated-types.js.map +1 -0
- package/dist/destinations/pardot/index.d.ts +4 -0
- package/dist/destinations/pardot/index.js +62 -0
- package/dist/destinations/pardot/index.js.map +1 -0
- package/dist/destinations/pardot/pa-operations.d.ts +17 -0
- package/dist/destinations/pardot/pa-operations.js +51 -0
- package/dist/destinations/pardot/pa-operations.js.map +1 -0
- package/dist/destinations/pardot/pa-properties.d.ts +2 -0
- package/dist/destinations/pardot/pa-properties.js +13 -0
- package/dist/destinations/pardot/pa-properties.js.map +1 -0
- package/dist/destinations/pardot/pa-type.d.ts +15 -0
- package/dist/destinations/pardot/pa-type.js +3 -0
- package/dist/destinations/pardot/pa-type.js.map +1 -0
- package/dist/destinations/pardot/prospects/generated-types.d.ts +19 -0
- package/dist/destinations/pardot/prospects/generated-types.js +3 -0
- package/dist/destinations/pardot/prospects/generated-types.js.map +1 -0
- package/dist/destinations/pardot/prospects/index.d.ts +5 -0
- package/dist/destinations/pardot/prospects/index.js +204 -0
- package/dist/destinations/pardot/prospects/index.js.map +1 -0
- package/dist/destinations/personas-messaging-sendgrid/sendEmail/index.js +23 -2
- package/dist/destinations/personas-messaging-sendgrid/sendEmail/index.js.map +1 -1
- package/package.json +4 -4
|
@@ -0,0 +1,37 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../../src/destinations/pardot/generated-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,17 @@
|
|
|
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 {};
|
|
@@ -0,0 +1,51 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
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
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pa-type.js","sourceRoot":"","sources":["../../../src/destinations/pardot/pa-type.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,19 @@
|
|
|
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
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generated-types.js","sourceRoot":"","sources":["../../../../src/destinations/pardot/prospects/generated-types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,204 @@
|
|
|
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 actions_core_1 = require("@segment/actions-core");
|
|
7
|
+
const pa_operations_1 = __importDefault(require("../pa-operations"));
|
|
8
|
+
const pa_properties_1 = require("../pa-properties");
|
|
9
|
+
const action = {
|
|
10
|
+
title: 'Prospect',
|
|
11
|
+
description: 'Represents an opportunity, which is a sale or pending deal.',
|
|
12
|
+
fields: {
|
|
13
|
+
email: {
|
|
14
|
+
label: 'Email Address',
|
|
15
|
+
description: `The prospect's email address.
|
|
16
|
+
Used to upsert prospect. If multiple prospects have the given email, the prospect with the latest activity is updated. If there's no prospect with the given email, a prospect is created. Please note that Pardot treats email address as case sensitive and will create multiple prospects for casing differences.`,
|
|
17
|
+
type: 'string',
|
|
18
|
+
required: true,
|
|
19
|
+
default: {
|
|
20
|
+
'@if': {
|
|
21
|
+
exists: { '@path': '$.traits.email' },
|
|
22
|
+
then: { '@path': '$.traits.email' },
|
|
23
|
+
else: { '@path': '$.properties.email' }
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
firstName: {
|
|
28
|
+
label: 'First Name',
|
|
29
|
+
description: "The prospect's first name.",
|
|
30
|
+
type: 'string',
|
|
31
|
+
required: false,
|
|
32
|
+
default: {
|
|
33
|
+
'@if': {
|
|
34
|
+
exists: { '@path': '$.traits.first_name' },
|
|
35
|
+
then: { '@path': '$.traits.first_name' },
|
|
36
|
+
else: { '@path': '$.properties.first_name' }
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
lastName: {
|
|
41
|
+
label: 'Last Name',
|
|
42
|
+
description: "The prospect's last name.",
|
|
43
|
+
type: 'string',
|
|
44
|
+
required: false,
|
|
45
|
+
default: {
|
|
46
|
+
'@if': {
|
|
47
|
+
exists: { '@path': '$.traits.last_name' },
|
|
48
|
+
then: { '@path': '$.traits.last_name' },
|
|
49
|
+
else: { '@path': '$.properties.last_name' }
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
salutation: {
|
|
54
|
+
label: 'Salutation',
|
|
55
|
+
description: "The prospect's formal prefix.",
|
|
56
|
+
type: 'string',
|
|
57
|
+
required: false
|
|
58
|
+
},
|
|
59
|
+
phone: {
|
|
60
|
+
label: 'Phone Number',
|
|
61
|
+
description: "The prospect's phone number.",
|
|
62
|
+
type: 'string',
|
|
63
|
+
required: false,
|
|
64
|
+
default: {
|
|
65
|
+
'@if': {
|
|
66
|
+
exists: { '@path': '$.traits.phone' },
|
|
67
|
+
then: { '@path': '$.traits.phone' },
|
|
68
|
+
else: { '@path': '$.properties.phone' }
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
company: {
|
|
73
|
+
label: 'Company',
|
|
74
|
+
description: "The prospect's company.",
|
|
75
|
+
type: 'string',
|
|
76
|
+
required: false,
|
|
77
|
+
default: {
|
|
78
|
+
'@if': {
|
|
79
|
+
exists: { '@path': '$.traits.company' },
|
|
80
|
+
then: { '@path': '$.traits.company' },
|
|
81
|
+
else: { '@path': '$.properties.company' }
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
jobTitle: {
|
|
86
|
+
label: 'Job Title',
|
|
87
|
+
description: "The prospect's job title.",
|
|
88
|
+
type: 'string',
|
|
89
|
+
required: false,
|
|
90
|
+
default: {
|
|
91
|
+
'@if': {
|
|
92
|
+
exists: { '@path': '$.traits.title' },
|
|
93
|
+
then: { '@path': '$.traits.title' },
|
|
94
|
+
else: { '@path': '$.properties.title' }
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
industry: {
|
|
99
|
+
label: 'Industry',
|
|
100
|
+
description: "The prospect's industry.",
|
|
101
|
+
type: 'string',
|
|
102
|
+
required: false
|
|
103
|
+
},
|
|
104
|
+
city: {
|
|
105
|
+
label: 'City',
|
|
106
|
+
description: "The prospect's city.",
|
|
107
|
+
type: 'string',
|
|
108
|
+
required: false,
|
|
109
|
+
default: {
|
|
110
|
+
'@if': {
|
|
111
|
+
exists: { '@path': '$.traits.address.city' },
|
|
112
|
+
then: { '@path': '$.traits.address.city' },
|
|
113
|
+
else: { '@path': '$.properties.address.city' }
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
state: {
|
|
118
|
+
label: 'State',
|
|
119
|
+
description: "The prospect's US state.",
|
|
120
|
+
type: 'string',
|
|
121
|
+
required: false,
|
|
122
|
+
default: {
|
|
123
|
+
'@if': {
|
|
124
|
+
exists: { '@path': '$.traits.address.state' },
|
|
125
|
+
then: { '@path': '$.traits.address.state' },
|
|
126
|
+
else: { '@path': '$.properties.address.state' }
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
zip: {
|
|
131
|
+
label: 'Zip Code',
|
|
132
|
+
description: "The prospect's postal code.",
|
|
133
|
+
type: 'string',
|
|
134
|
+
required: false,
|
|
135
|
+
default: {
|
|
136
|
+
'@if': {
|
|
137
|
+
exists: { '@path': '$.traits.address.postal_code' },
|
|
138
|
+
then: { '@path': '$.traits.address.postal_code' },
|
|
139
|
+
else: { '@path': '$.properties.address.postal_code' }
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
country: {
|
|
144
|
+
label: 'Country',
|
|
145
|
+
description: "The prospect's country.",
|
|
146
|
+
type: 'string',
|
|
147
|
+
required: false,
|
|
148
|
+
default: {
|
|
149
|
+
'@if': {
|
|
150
|
+
exists: { '@path': '$.traits.address.country' },
|
|
151
|
+
then: { '@path': '$.traits.address.country' },
|
|
152
|
+
else: { '@path': '$.properties.address.country' }
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
website: {
|
|
157
|
+
label: 'Website',
|
|
158
|
+
description: "The prospect's website URL.",
|
|
159
|
+
type: 'string',
|
|
160
|
+
required: false,
|
|
161
|
+
default: {
|
|
162
|
+
'@if': {
|
|
163
|
+
exists: { '@path': '$.traits.website' },
|
|
164
|
+
then: { '@path': '$.traits.website' },
|
|
165
|
+
else: { '@path': '$.properties.website' }
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
},
|
|
169
|
+
secondaryDeletedSearch: {
|
|
170
|
+
label: 'Search Deleted Prospects',
|
|
171
|
+
description: `If true, the request’s search includes deleted records. This property only affects [AMPSEA accounts](https://help.salesforce.com/s/articleView?id=sf.pardot_admin_ampsea_parent.htm&type=5).
|
|
172
|
+
If all records with a matching email address are deleted, the one with the latest activity is undeleted and updated. Otherwise, a new prospect is created.`,
|
|
173
|
+
type: 'boolean',
|
|
174
|
+
required: true,
|
|
175
|
+
default: true
|
|
176
|
+
},
|
|
177
|
+
customFields: pa_properties_1.customFields
|
|
178
|
+
},
|
|
179
|
+
perform: async (request, { settings, payload }) => {
|
|
180
|
+
const baseUrl = settings.isSandbox ? 'https://pi.demo.pardot.com' : 'https://pi.pardot.com';
|
|
181
|
+
const pa = new pa_operations_1.default(settings.businessUnitID, baseUrl, request);
|
|
182
|
+
try {
|
|
183
|
+
return await pa.upsertRecord(payload);
|
|
184
|
+
}
|
|
185
|
+
catch (err) {
|
|
186
|
+
const error = err;
|
|
187
|
+
const statusCode = error.response.status;
|
|
188
|
+
if (error.response.headers.get('content-type')?.includes('application/json')) {
|
|
189
|
+
const data = error.response.data;
|
|
190
|
+
throw new actions_core_1.IntegrationError(`Pardot responded witha error code ${data.code}: ${data.message}. This means Pardot has received the call, but consider the payload to be invalid. To identify the exact error, please refer to ` +
|
|
191
|
+
`[Pardot doc](https://developer.salesforce.com/docs/marketing/pardot/guide/error-codes.html?q=error#numerical-list-of-error-codes) and search for the error code you received`, 'PARDOT_ERROR', 400);
|
|
192
|
+
}
|
|
193
|
+
else if (error.response.headers.get('content-type')?.includes('text/xml')) {
|
|
194
|
+
if (statusCode === 403 || statusCode === 400) {
|
|
195
|
+
throw new actions_core_1.IntegrationError(`The Business Unit ID or access_token is invalid. This error is also returned when you use the wrong instance (Sandbox or Prod). ` +
|
|
196
|
+
`If you toggled the Sandbox instance, please disconnect and reconnect with your corresponding username.`, 'PARDOT_ERROR', 403);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
throw err;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
};
|
|
203
|
+
exports.default = action;
|
|
204
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/destinations/pardot/prospects/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -222,16 +222,22 @@ const action = {
|
|
|
222
222
|
required: false
|
|
223
223
|
}
|
|
224
224
|
},
|
|
225
|
-
perform: async (request, { settings, payload }) => {
|
|
225
|
+
perform: async (request, { settings, payload, statsContext }) => {
|
|
226
|
+
const statsClient = statsContext?.statsClient;
|
|
227
|
+
const tags = statsContext?.tags;
|
|
228
|
+
tags?.push(settings.spaceId);
|
|
226
229
|
if (!payload.send) {
|
|
230
|
+
statsClient?.incr('te_sendgrid_send_disabled', 1, tags);
|
|
227
231
|
return;
|
|
228
232
|
}
|
|
229
233
|
const emailProfile = payload?.externalIds?.find((meta) => meta.type === 'email');
|
|
230
234
|
if (!emailProfile?.subscriptionStatus ||
|
|
231
235
|
['unsubscribed', 'did not subscribed', 'false'].includes(emailProfile.subscriptionStatus)) {
|
|
236
|
+
statsClient?.incr('te_sendgrid_notsubscribed', 1, tags);
|
|
232
237
|
return;
|
|
233
238
|
}
|
|
234
239
|
else if (['subscribed', 'true'].includes(emailProfile?.subscriptionStatus)) {
|
|
240
|
+
statsClient?.incr('te_sendgrid_subscribed', 1, tags);
|
|
235
241
|
const traits = await fetchProfileTraits(request, settings, payload.userId);
|
|
236
242
|
const profile = {
|
|
237
243
|
email: emailProfile.id,
|
|
@@ -242,6 +248,7 @@ const action = {
|
|
|
242
248
|
return;
|
|
243
249
|
}
|
|
244
250
|
if (isRestrictedDomain(toEmail)) {
|
|
251
|
+
statsClient?.incr('te_sendgrid_restricted_domain', 1, tags);
|
|
245
252
|
throw new actions_core_1.IntegrationError('Emails with gmailx.com, yahoox.com, aolx.com, and hotmailx.com domains are blocked.', 'Invalid input', 400);
|
|
246
253
|
}
|
|
247
254
|
let name;
|
|
@@ -273,7 +280,7 @@ const action = {
|
|
|
273
280
|
const parsedPreviewText = await parseTemplating(payload.previewText, profile, 'Preview text');
|
|
274
281
|
parsedBodyHtml = insertEmailPreviewText(parsedBodyHtml, parsedPreviewText);
|
|
275
282
|
}
|
|
276
|
-
|
|
283
|
+
const response = await request('https://api.sendgrid.com/v3/mail/send', {
|
|
277
284
|
method: 'post',
|
|
278
285
|
headers: {
|
|
279
286
|
authorization: `Bearer ${settings.sendGridApiKey}`
|
|
@@ -321,6 +328,20 @@ const action = {
|
|
|
321
328
|
}
|
|
322
329
|
}
|
|
323
330
|
});
|
|
331
|
+
if (response.status > 200 && response.status < 300) {
|
|
332
|
+
tags?.push('2xx');
|
|
333
|
+
}
|
|
334
|
+
if (response.status > 400 && response.status < 413) {
|
|
335
|
+
tags?.push('4xx');
|
|
336
|
+
}
|
|
337
|
+
if (response.status == 429) {
|
|
338
|
+
tags?.push('429');
|
|
339
|
+
}
|
|
340
|
+
if (response.status > 500) {
|
|
341
|
+
tags?.push('5xx');
|
|
342
|
+
}
|
|
343
|
+
statsClient?.incr('te_sendgrid_response', 1, tags);
|
|
344
|
+
return response;
|
|
324
345
|
}
|
|
325
346
|
else {
|
|
326
347
|
throw new actions_core_1.IntegrationError(`Failed to process the subscription state: "${emailProfile.subscriptionStatus}"`, 'Invalid subscriptionStatus value', 400);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/destinations/personas-messaging-sendgrid/sendEmail/index.ts"],"names":[],"mappings":";;;;;AAAA,wDAA0F;AAG1F,uCAA6C;AAC7C,sDAA6B;AAC7B,6CAAwC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/destinations/personas-messaging-sendgrid/sendEmail/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@segment/action-destinations",
|
|
3
3
|
"description": "Destination Actions engine and definitions.",
|
|
4
|
-
"version": "3.88.
|
|
4
|
+
"version": "3.88.1-alpha.10",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/segmentio/action-destinations",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@amplitude/ua-parser-js": "^0.7.25",
|
|
40
40
|
"@segment/a1-notation": "^2.1.4",
|
|
41
|
-
"@segment/actions-core": "^3.31.
|
|
42
|
-
"@segment/actions-shared": "^1.14.
|
|
41
|
+
"@segment/actions-core": "^3.31.1-alpha.5",
|
|
42
|
+
"@segment/actions-shared": "^1.14.1-alpha.6",
|
|
43
43
|
"cheerio": "^1.0.0-rc.10",
|
|
44
44
|
"dayjs": "^1.10.7",
|
|
45
45
|
"escape-goat": "^3",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"lcov"
|
|
66
66
|
]
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "a993012a6b213a83505789812b0b65df2674e220"
|
|
69
69
|
}
|