@activepieces/piece-mailgun 0.0.1
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/package.json +16 -0
- package/src/i18n/fr.json +126 -0
- package/src/i18n/translation.json +126 -0
- package/src/index.d.ts +9 -0
- package/src/index.d.ts.map +1 -0
- package/src/index.js +109 -0
- package/src/index.js.map +1 -0
- package/src/lib/actions/add-mailing-list-member.d.ts +15 -0
- package/src/lib/actions/add-mailing-list-member.d.ts.map +1 -0
- package/src/lib/actions/add-mailing-list-member.js +76 -0
- package/src/lib/actions/add-mailing-list-member.js.map +1 -0
- package/src/lib/actions/get-domain-stats.d.ts +12 -0
- package/src/lib/actions/get-domain-stats.d.ts.map +1 -0
- package/src/lib/actions/get-domain-stats.js +117 -0
- package/src/lib/actions/get-domain-stats.js.map +1 -0
- package/src/lib/actions/get-events.d.ts +15 -0
- package/src/lib/actions/get-events.d.ts.map +1 -0
- package/src/lib/actions/get-events.js +141 -0
- package/src/lib/actions/get-events.js.map +1 -0
- package/src/lib/actions/list-bounces.d.ts +11 -0
- package/src/lib/actions/list-bounces.d.ts.map +1 -0
- package/src/lib/actions/list-bounces.js +49 -0
- package/src/lib/actions/list-bounces.js.map +1 -0
- package/src/lib/actions/send-email.d.ts +18 -0
- package/src/lib/actions/send-email.d.ts.map +1 -0
- package/src/lib/actions/send-email.js +93 -0
- package/src/lib/actions/send-email.js.map +1 -0
- package/src/lib/actions/validate-email.d.ts +8 -0
- package/src/lib/actions/validate-email.d.ts.map +1 -0
- package/src/lib/actions/validate-email.js +54 -0
- package/src/lib/actions/validate-email.js.map +1 -0
- package/src/lib/common/index.d.ts +39 -0
- package/src/lib/common/index.d.ts.map +1 -0
- package/src/lib/common/index.js +165 -0
- package/src/lib/common/index.js.map +1 -0
- package/src/lib/triggers/common.d.ts +42 -0
- package/src/lib/triggers/common.d.ts.map +1 -0
- package/src/lib/triggers/common.js +102 -0
- package/src/lib/triggers/common.js.map +1 -0
- package/src/lib/triggers/new-bounce-event.d.ts +34 -0
- package/src/lib/triggers/new-bounce-event.d.ts.map +1 -0
- package/src/lib/triggers/new-bounce-event.js +29 -0
- package/src/lib/triggers/new-bounce-event.js.map +1 -0
- package/src/lib/triggers/new-click-event.d.ts +34 -0
- package/src/lib/triggers/new-click-event.d.ts.map +1 -0
- package/src/lib/triggers/new-click-event.js +29 -0
- package/src/lib/triggers/new-click-event.js.map +1 -0
- package/src/lib/triggers/new-complaint-event.d.ts +34 -0
- package/src/lib/triggers/new-complaint-event.d.ts.map +1 -0
- package/src/lib/triggers/new-complaint-event.js +24 -0
- package/src/lib/triggers/new-complaint-event.js.map +1 -0
- package/src/lib/triggers/new-delivery-event.d.ts +34 -0
- package/src/lib/triggers/new-delivery-event.d.ts.map +1 -0
- package/src/lib/triggers/new-delivery-event.js +26 -0
- package/src/lib/triggers/new-delivery-event.js.map +1 -0
- package/src/lib/triggers/new-failed-delivery-event.d.ts +34 -0
- package/src/lib/triggers/new-failed-delivery-event.d.ts.map +1 -0
- package/src/lib/triggers/new-failed-delivery-event.js +29 -0
- package/src/lib/triggers/new-failed-delivery-event.js.map +1 -0
- package/src/lib/triggers/new-open-event.d.ts +34 -0
- package/src/lib/triggers/new-open-event.d.ts.map +1 -0
- package/src/lib/triggers/new-open-event.js +28 -0
- package/src/lib/triggers/new-open-event.js.map +1 -0
- package/src/lib/triggers/new-unsubscribe-event.d.ts +34 -0
- package/src/lib/triggers/new-unsubscribe-event.d.ts.map +1 -0
- package/src/lib/triggers/new-unsubscribe-event.js +28 -0
- package/src/lib/triggers/new-unsubscribe-event.js.map +1 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const newFailedDeliveryEvent: import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
3
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
4
|
+
}>, {
|
|
5
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
6
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
7
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
8
|
+
}>>;
|
|
9
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
10
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
11
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
12
|
+
}>, {
|
|
13
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
14
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
15
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
16
|
+
}>>;
|
|
17
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
18
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
19
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
20
|
+
}>, {
|
|
21
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
22
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
23
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
24
|
+
}>>;
|
|
25
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
26
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
27
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
28
|
+
}>, {
|
|
29
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
30
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
31
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
32
|
+
}>>;
|
|
33
|
+
}>;
|
|
34
|
+
//# sourceMappingURL=new-failed-delivery-event.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-failed-delivery-event.d.ts","sourceRoot":"","sources":["../../../../src/lib/triggers/new-failed-delivery-event.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBjC,CAAC"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.newFailedDeliveryEvent = void 0;
|
|
4
|
+
const common_1 = require("./common");
|
|
5
|
+
exports.newFailedDeliveryEvent = (0, common_1.createMailgunWebhookTrigger)({
|
|
6
|
+
name: 'new_failed_delivery_event',
|
|
7
|
+
displayName: 'New Failed Delivery Event',
|
|
8
|
+
description: 'Triggers when an email temporarily fails to deliver in Mailgun (will be retried)',
|
|
9
|
+
eventType: 'temporary_fail',
|
|
10
|
+
testEventFilter: { event: 'failed', severity: 'temporary' },
|
|
11
|
+
sampleData: {
|
|
12
|
+
event: 'failed',
|
|
13
|
+
id: 'def123',
|
|
14
|
+
timestamp: 1710000000,
|
|
15
|
+
recipient: 'user@example.com',
|
|
16
|
+
domain: 'example.com',
|
|
17
|
+
severity: 'temporary',
|
|
18
|
+
reason: 'generic',
|
|
19
|
+
log_level: 'warn',
|
|
20
|
+
message_headers_message_id: '20240310120000.def123@example.com',
|
|
21
|
+
message_headers_from: 'sender@example.com',
|
|
22
|
+
message_headers_to: 'user@example.com',
|
|
23
|
+
message_headers_subject: 'Important update',
|
|
24
|
+
delivery_status_code: 452,
|
|
25
|
+
delivery_status_message: 'Mailbox full',
|
|
26
|
+
delivery_status_description: 'The recipient mailbox is full',
|
|
27
|
+
},
|
|
28
|
+
});
|
|
29
|
+
//# sourceMappingURL=new-failed-delivery-event.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-failed-delivery-event.js","sourceRoot":"","sources":["../../../../src/lib/triggers/new-failed-delivery-event.ts"],"names":[],"mappings":";;;AAAA,qCAAuD;AAE1C,QAAA,sBAAsB,GAAG,IAAA,oCAA2B,EAAC;IAChE,IAAI,EAAE,2BAA2B;IACjC,WAAW,EAAE,2BAA2B;IACxC,WAAW,EACT,kFAAkF;IACpF,SAAS,EAAE,gBAAgB;IAC3B,eAAe,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE;IAC3D,UAAU,EAAE;QACV,KAAK,EAAE,QAAQ;QACf,EAAE,EAAE,QAAQ;QACZ,SAAS,EAAE,UAAU;QACrB,SAAS,EAAE,kBAAkB;QAC7B,MAAM,EAAE,aAAa;QACrB,QAAQ,EAAE,WAAW;QACrB,MAAM,EAAE,SAAS;QACjB,SAAS,EAAE,MAAM;QACjB,0BAA0B,EAAE,mCAAmC;QAC/D,oBAAoB,EAAE,oBAAoB;QAC1C,kBAAkB,EAAE,kBAAkB;QACtC,uBAAuB,EAAE,kBAAkB;QAC3C,oBAAoB,EAAE,GAAG;QACzB,uBAAuB,EAAE,cAAc;QACvC,2BAA2B,EAAE,+BAA+B;KAC7D;CACF,CAAC,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const newOpenEvent: import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
3
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
4
|
+
}>, {
|
|
5
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
6
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
7
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
8
|
+
}>>;
|
|
9
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
10
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
11
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
12
|
+
}>, {
|
|
13
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
14
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
15
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
16
|
+
}>>;
|
|
17
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
18
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
19
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
20
|
+
}>, {
|
|
21
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
22
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
23
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
24
|
+
}>>;
|
|
25
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
26
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
27
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
28
|
+
}>, {
|
|
29
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
30
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
31
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
32
|
+
}>>;
|
|
33
|
+
}>;
|
|
34
|
+
//# sourceMappingURL=new-open-event.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-open-event.d.ts","sourceRoot":"","sources":["../../../../src/lib/triggers/new-open-event.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuBvB,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.newOpenEvent = void 0;
|
|
4
|
+
const common_1 = require("./common");
|
|
5
|
+
exports.newOpenEvent = (0, common_1.createMailgunWebhookTrigger)({
|
|
6
|
+
name: 'new_open_event',
|
|
7
|
+
displayName: 'New Open Event',
|
|
8
|
+
description: 'Triggers when a recipient opens an email in Mailgun',
|
|
9
|
+
eventType: 'opened',
|
|
10
|
+
testEventFilter: { event: 'opened' },
|
|
11
|
+
sampleData: {
|
|
12
|
+
event: 'opened',
|
|
13
|
+
id: 'ghi123',
|
|
14
|
+
timestamp: 1710000000,
|
|
15
|
+
recipient: 'user@example.com',
|
|
16
|
+
domain: 'example.com',
|
|
17
|
+
log_level: 'info',
|
|
18
|
+
ip: '192.168.1.1',
|
|
19
|
+
client_info_client_name: 'Chrome',
|
|
20
|
+
client_info_client_os: 'macOS',
|
|
21
|
+
client_info_device_type: 'desktop',
|
|
22
|
+
message_headers_message_id: '20240310120000.ghi123@example.com',
|
|
23
|
+
message_headers_from: 'sender@example.com',
|
|
24
|
+
message_headers_to: 'user@example.com',
|
|
25
|
+
message_headers_subject: 'Check out our new feature',
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
//# sourceMappingURL=new-open-event.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-open-event.js","sourceRoot":"","sources":["../../../../src/lib/triggers/new-open-event.ts"],"names":[],"mappings":";;;AAAA,qCAAuD;AAE1C,QAAA,YAAY,GAAG,IAAA,oCAA2B,EAAC;IACtD,IAAI,EAAE,gBAAgB;IACtB,WAAW,EAAE,gBAAgB;IAC7B,WAAW,EACT,qDAAqD;IACvD,SAAS,EAAE,QAAQ;IACnB,eAAe,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE;IACpC,UAAU,EAAE;QACV,KAAK,EAAE,QAAQ;QACf,EAAE,EAAE,QAAQ;QACZ,SAAS,EAAE,UAAU;QACrB,SAAS,EAAE,kBAAkB;QAC7B,MAAM,EAAE,aAAa;QACrB,SAAS,EAAE,MAAM;QACjB,EAAE,EAAE,aAAa;QACjB,uBAAuB,EAAE,QAAQ;QACjC,qBAAqB,EAAE,OAAO;QAC9B,uBAAuB,EAAE,SAAS;QAClC,0BAA0B,EAAE,mCAAmC;QAC/D,oBAAoB,EAAE,oBAAoB;QAC1C,kBAAkB,EAAE,kBAAkB;QACtC,uBAAuB,EAAE,2BAA2B;KACrD;CACF,CAAC,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
export declare const newUnsubscribeEvent: import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
2
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
3
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
4
|
+
}>, {
|
|
5
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
6
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
7
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
8
|
+
}>>;
|
|
9
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.POLLING, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
10
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
11
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
12
|
+
}>, {
|
|
13
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
14
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
15
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
16
|
+
}>>;
|
|
17
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.MANUAL, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
18
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
19
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
20
|
+
}>, {
|
|
21
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
22
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
23
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
24
|
+
}>>;
|
|
25
|
+
}> | import("@activepieces/pieces-framework").ITrigger<import("@activepieces/shared").TriggerStrategy.APP_WEBHOOK, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
26
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
27
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
28
|
+
}>, {
|
|
29
|
+
domain: import("@activepieces/pieces-framework").DropdownProperty<string, true, import("@activepieces/pieces-framework").CustomAuthProperty<{
|
|
30
|
+
api_key: import("@activepieces/pieces-framework").SecretTextProperty<true>;
|
|
31
|
+
region: import("@activepieces/pieces-framework").StaticDropdownProperty<string, true>;
|
|
32
|
+
}>>;
|
|
33
|
+
}>;
|
|
34
|
+
//# sourceMappingURL=new-unsubscribe-event.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-unsubscribe-event.d.ts","sourceRoot":"","sources":["../../../../src/lib/triggers/new-unsubscribe-event.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuB9B,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.newUnsubscribeEvent = void 0;
|
|
4
|
+
const common_1 = require("./common");
|
|
5
|
+
exports.newUnsubscribeEvent = (0, common_1.createMailgunWebhookTrigger)({
|
|
6
|
+
name: 'new_unsubscribe_event',
|
|
7
|
+
displayName: 'New Unsubscribe Event',
|
|
8
|
+
description: 'Triggers when a recipient unsubscribes from emails in Mailgun',
|
|
9
|
+
eventType: 'unsubscribed',
|
|
10
|
+
testEventFilter: { event: 'unsubscribed' },
|
|
11
|
+
sampleData: {
|
|
12
|
+
event: 'unsubscribed',
|
|
13
|
+
id: 'jkl123',
|
|
14
|
+
timestamp: 1710000000,
|
|
15
|
+
recipient: 'user@example.com',
|
|
16
|
+
domain: 'example.com',
|
|
17
|
+
log_level: 'info',
|
|
18
|
+
ip: '192.168.1.1',
|
|
19
|
+
client_info_client_name: 'Chrome',
|
|
20
|
+
client_info_client_os: 'macOS',
|
|
21
|
+
client_info_device_type: 'desktop',
|
|
22
|
+
message_headers_message_id: '20240310120000.jkl123@example.com',
|
|
23
|
+
message_headers_from: 'sender@example.com',
|
|
24
|
+
message_headers_to: 'user@example.com',
|
|
25
|
+
message_headers_subject: 'Weekly newsletter',
|
|
26
|
+
},
|
|
27
|
+
});
|
|
28
|
+
//# sourceMappingURL=new-unsubscribe-event.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"new-unsubscribe-event.js","sourceRoot":"","sources":["../../../../src/lib/triggers/new-unsubscribe-event.ts"],"names":[],"mappings":";;;AAAA,qCAAuD;AAE1C,QAAA,mBAAmB,GAAG,IAAA,oCAA2B,EAAC;IAC7D,IAAI,EAAE,uBAAuB;IAC7B,WAAW,EAAE,uBAAuB;IACpC,WAAW,EACT,+DAA+D;IACjE,SAAS,EAAE,cAAc;IACzB,eAAe,EAAE,EAAE,KAAK,EAAE,cAAc,EAAE;IAC1C,UAAU,EAAE;QACV,KAAK,EAAE,cAAc;QACrB,EAAE,EAAE,QAAQ;QACZ,SAAS,EAAE,UAAU;QACrB,SAAS,EAAE,kBAAkB;QAC7B,MAAM,EAAE,aAAa;QACrB,SAAS,EAAE,MAAM;QACjB,EAAE,EAAE,aAAa;QACjB,uBAAuB,EAAE,QAAQ;QACjC,qBAAqB,EAAE,OAAO;QAC9B,uBAAuB,EAAE,SAAS;QAClC,0BAA0B,EAAE,mCAAmC;QAC/D,oBAAoB,EAAE,oBAAoB;QAC1C,kBAAkB,EAAE,kBAAkB;QACtC,uBAAuB,EAAE,mBAAmB;KAC7C;CACF,CAAC,CAAC"}
|