@adtrackify/at-tracking-event-types 3.0.38 → 3.0.40
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/cjs/types/api/contact-acquisition.d.ts +16 -0
- package/dist/cjs/types/api/contact-acquisition.js +14 -0
- package/dist/cjs/types/api/contact-acquisition.js.map +1 -1
- package/dist/cjs/types/api/subscription.d.ts +5 -0
- package/dist/cjs/types/api/subscription.js.map +1 -1
- package/dist/esm/types/api/contact-acquisition.d.ts +16 -0
- package/dist/esm/types/api/contact-acquisition.js +13 -1
- package/dist/esm/types/api/contact-acquisition.js.map +1 -1
- package/dist/esm/types/api/subscription.d.ts +5 -0
- package/dist/esm/types/api/subscription.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
export declare enum EMAIL_STATUS {
|
|
2
|
+
DELIVERABLE = "deliverable",
|
|
3
|
+
UNDELIVERABLE = "undeliverable",
|
|
4
|
+
RISKY = "risky",
|
|
5
|
+
UNKNOWN = "unknown",
|
|
6
|
+
NO_EMAIL = "no_email"
|
|
7
|
+
}
|
|
8
|
+
export declare enum PURCHASED_CONTACT_STATUS {
|
|
9
|
+
ACTIVE = "active",
|
|
10
|
+
ALREADY_EXISTS = "already_exists"
|
|
11
|
+
}
|
|
1
12
|
export interface PurchasableContact {
|
|
2
13
|
id: string;
|
|
3
14
|
email: string;
|
|
@@ -7,14 +18,19 @@ export interface PurchasableContact {
|
|
|
7
18
|
diqPersonId?: string;
|
|
8
19
|
source: string;
|
|
9
20
|
contact: any;
|
|
21
|
+
emailVerification: any;
|
|
22
|
+
emailStatus: EMAIL_STATUS;
|
|
10
23
|
createdAt: string;
|
|
11
24
|
updatedAt: string;
|
|
12
25
|
}
|
|
13
26
|
export interface PurchasedContact {
|
|
27
|
+
id: string;
|
|
14
28
|
pixelId: string;
|
|
15
29
|
contactId: string;
|
|
16
30
|
accountId: string;
|
|
17
31
|
identityId: string;
|
|
32
|
+
emailStatus: EMAIL_STATUS;
|
|
33
|
+
purchasedStatus: PURCHASED_CONTACT_STATUS;
|
|
18
34
|
purchasedAt: string;
|
|
19
35
|
createdAt: string;
|
|
20
36
|
updatedAt: string;
|
|
@@ -1,3 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PURCHASED_CONTACT_STATUS = exports.EMAIL_STATUS = void 0;
|
|
4
|
+
var EMAIL_STATUS;
|
|
5
|
+
(function (EMAIL_STATUS) {
|
|
6
|
+
EMAIL_STATUS["DELIVERABLE"] = "deliverable";
|
|
7
|
+
EMAIL_STATUS["UNDELIVERABLE"] = "undeliverable";
|
|
8
|
+
EMAIL_STATUS["RISKY"] = "risky";
|
|
9
|
+
EMAIL_STATUS["UNKNOWN"] = "unknown";
|
|
10
|
+
EMAIL_STATUS["NO_EMAIL"] = "no_email";
|
|
11
|
+
})(EMAIL_STATUS = exports.EMAIL_STATUS || (exports.EMAIL_STATUS = {}));
|
|
12
|
+
var PURCHASED_CONTACT_STATUS;
|
|
13
|
+
(function (PURCHASED_CONTACT_STATUS) {
|
|
14
|
+
PURCHASED_CONTACT_STATUS["ACTIVE"] = "active";
|
|
15
|
+
PURCHASED_CONTACT_STATUS["ALREADY_EXISTS"] = "already_exists";
|
|
16
|
+
})(PURCHASED_CONTACT_STATUS = exports.PURCHASED_CONTACT_STATUS || (exports.PURCHASED_CONTACT_STATUS = {}));
|
|
3
17
|
//# sourceMappingURL=contact-acquisition.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":";;;AAAA,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,2CAA2B,CAAA;IAC3B,+CAA+B,CAAA;IAC/B,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;AACvB,CAAC,EANW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAMvB;AAED,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAClC,6CAAiB,CAAA;IACjB,6DAAiC,CAAA;AACnC,CAAC,EAHW,wBAAwB,GAAxB,gCAAwB,KAAxB,gCAAwB,QAGnC"}
|
|
@@ -12,9 +12,14 @@ export interface Subscription {
|
|
|
12
12
|
status?: SUBSCRIPTION_STATUS;
|
|
13
13
|
paymentStatus?: PAYMENT_STATUS;
|
|
14
14
|
paymentGateway?: PAYMENT_GATEWAY;
|
|
15
|
+
contactAcquisition: ContactAcquisition;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
18
|
}
|
|
19
|
+
export interface ContactAcquisition {
|
|
20
|
+
isEnabled: boolean;
|
|
21
|
+
maxMonthlyBudget: number;
|
|
22
|
+
}
|
|
18
23
|
export interface SubscriptionPlan {
|
|
19
24
|
id: string;
|
|
20
25
|
planName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../../../src/types/api/subscription.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../../../src/types/api/subscription.ts"],"names":[],"mappings":";;;AAqEA,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,+BAAe,CAAA;IACf,yCAAyB,CAAA;AAC3B,CAAC,EAHW,YAAY,GAAZ,oBAAY,KAAZ,oBAAY,QAGvB;AAYD,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;IACnB,2CAAiB,CAAA;AACnB,CAAC,EAHW,sBAAsB,GAAtB,8BAAsB,KAAtB,8BAAsB,QAGjC;AAED,IAAY,cAKX;AALD,WAAY,cAAc;IACxB,qCAAmB,CAAA;IACnB,uCAAqB,CAAA;IACrB,yCAAuB,CAAA;IACvB,mCAAiB,CAAA;AACnB,CAAC,EALW,cAAc,GAAd,sBAAc,KAAd,sBAAc,QAKzB;AAED,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC7B,wCAAiB,CAAA;IACjB,8CAAuB,CAAA;IACvB,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,2CAAoB,CAAA;AACtB,CAAC,EARW,mBAAmB,GAAnB,2BAAmB,KAAnB,2BAAmB,QAQ9B;AACD,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,oCAAiB,CAAA;IACjB,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;AACrB,CAAC,EAJW,eAAe,GAAf,uBAAe,KAAf,uBAAe,QAI1B"}
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
export declare enum EMAIL_STATUS {
|
|
2
|
+
DELIVERABLE = "deliverable",
|
|
3
|
+
UNDELIVERABLE = "undeliverable",
|
|
4
|
+
RISKY = "risky",
|
|
5
|
+
UNKNOWN = "unknown",
|
|
6
|
+
NO_EMAIL = "no_email"
|
|
7
|
+
}
|
|
8
|
+
export declare enum PURCHASED_CONTACT_STATUS {
|
|
9
|
+
ACTIVE = "active",
|
|
10
|
+
ALREADY_EXISTS = "already_exists"
|
|
11
|
+
}
|
|
1
12
|
export interface PurchasableContact {
|
|
2
13
|
id: string;
|
|
3
14
|
email: string;
|
|
@@ -7,14 +18,19 @@ export interface PurchasableContact {
|
|
|
7
18
|
diqPersonId?: string;
|
|
8
19
|
source: string;
|
|
9
20
|
contact: any;
|
|
21
|
+
emailVerification: any;
|
|
22
|
+
emailStatus: EMAIL_STATUS;
|
|
10
23
|
createdAt: string;
|
|
11
24
|
updatedAt: string;
|
|
12
25
|
}
|
|
13
26
|
export interface PurchasedContact {
|
|
27
|
+
id: string;
|
|
14
28
|
pixelId: string;
|
|
15
29
|
contactId: string;
|
|
16
30
|
accountId: string;
|
|
17
31
|
identityId: string;
|
|
32
|
+
emailStatus: EMAIL_STATUS;
|
|
33
|
+
purchasedStatus: PURCHASED_CONTACT_STATUS;
|
|
18
34
|
purchasedAt: string;
|
|
19
35
|
createdAt: string;
|
|
20
36
|
updatedAt: string;
|
|
@@ -1,2 +1,14 @@
|
|
|
1
|
-
export
|
|
1
|
+
export var EMAIL_STATUS;
|
|
2
|
+
(function (EMAIL_STATUS) {
|
|
3
|
+
EMAIL_STATUS["DELIVERABLE"] = "deliverable";
|
|
4
|
+
EMAIL_STATUS["UNDELIVERABLE"] = "undeliverable";
|
|
5
|
+
EMAIL_STATUS["RISKY"] = "risky";
|
|
6
|
+
EMAIL_STATUS["UNKNOWN"] = "unknown";
|
|
7
|
+
EMAIL_STATUS["NO_EMAIL"] = "no_email";
|
|
8
|
+
})(EMAIL_STATUS || (EMAIL_STATUS = {}));
|
|
9
|
+
export var PURCHASED_CONTACT_STATUS;
|
|
10
|
+
(function (PURCHASED_CONTACT_STATUS) {
|
|
11
|
+
PURCHASED_CONTACT_STATUS["ACTIVE"] = "active";
|
|
12
|
+
PURCHASED_CONTACT_STATUS["ALREADY_EXISTS"] = "already_exists";
|
|
13
|
+
})(PURCHASED_CONTACT_STATUS || (PURCHASED_CONTACT_STATUS = {}));
|
|
2
14
|
//# sourceMappingURL=contact-acquisition.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":""}
|
|
1
|
+
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":"AAAA,MAAM,CAAN,IAAY,YAMX;AAND,WAAY,YAAY;IACtB,2CAA2B,CAAA;IAC3B,+CAA+B,CAAA;IAC/B,+BAAe,CAAA;IACf,mCAAmB,CAAA;IACnB,qCAAqB,CAAA;AACvB,CAAC,EANW,YAAY,KAAZ,YAAY,QAMvB;AAED,MAAM,CAAN,IAAY,wBAGX;AAHD,WAAY,wBAAwB;IAClC,6CAAiB,CAAA;IACjB,6DAAiC,CAAA;AACnC,CAAC,EAHW,wBAAwB,KAAxB,wBAAwB,QAGnC"}
|
|
@@ -12,9 +12,14 @@ export interface Subscription {
|
|
|
12
12
|
status?: SUBSCRIPTION_STATUS;
|
|
13
13
|
paymentStatus?: PAYMENT_STATUS;
|
|
14
14
|
paymentGateway?: PAYMENT_GATEWAY;
|
|
15
|
+
contactAcquisition: ContactAcquisition;
|
|
15
16
|
createdAt: string;
|
|
16
17
|
updatedAt: string;
|
|
17
18
|
}
|
|
19
|
+
export interface ContactAcquisition {
|
|
20
|
+
isEnabled: boolean;
|
|
21
|
+
maxMonthlyBudget: number;
|
|
22
|
+
}
|
|
18
23
|
export interface SubscriptionPlan {
|
|
19
24
|
id: string;
|
|
20
25
|
planName: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../../../src/types/api/subscription.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"subscription.js","sourceRoot":"","sources":["../../../../src/types/api/subscription.ts"],"names":[],"mappings":"AAqEA,MAAM,CAAN,IAAY,YAGX;AAHD,WAAY,YAAY;IACtB,+BAAe,CAAA;IACf,yCAAyB,CAAA;AAC3B,CAAC,EAHW,YAAY,KAAZ,YAAY,QAGvB;AAYD,MAAM,CAAN,IAAY,sBAGX;AAHD,WAAY,sBAAsB;IAChC,6CAAmB,CAAA;IACnB,2CAAiB,CAAA;AACnB,CAAC,EAHW,sBAAsB,KAAtB,sBAAsB,QAGjC;AAED,MAAM,CAAN,IAAY,cAKX;AALD,WAAY,cAAc;IACxB,qCAAmB,CAAA;IACnB,uCAAqB,CAAA;IACrB,yCAAuB,CAAA;IACvB,mCAAiB,CAAA;AACnB,CAAC,EALW,cAAc,KAAd,cAAc,QAKzB;AAED,MAAM,CAAN,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC7B,wCAAiB,CAAA;IACjB,8CAAuB,CAAA;IACvB,4CAAqB,CAAA;IACrB,0CAAmB,CAAA;IACnB,wCAAiB,CAAA;IACjB,0CAAmB,CAAA;IACnB,2CAAoB,CAAA;AACtB,CAAC,EARW,mBAAmB,KAAnB,mBAAmB,QAQ9B;AACD,MAAM,CAAN,IAAY,eAIX;AAJD,WAAY,eAAe;IACzB,oCAAiB,CAAA;IACjB,oCAAiB,CAAA;IACjB,sCAAmB,CAAA;AACrB,CAAC,EAJW,eAAe,KAAf,eAAe,QAI1B"}
|