@adtrackify/at-tracking-event-types 3.1.90 → 3.1.92
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 +123 -4
- package/dist/cjs/types/api/contact-acquisition.js +6 -1
- package/dist/cjs/types/api/contact-acquisition.js.map +1 -1
- package/dist/esm/types/api/contact-acquisition.d.ts +123 -4
- package/dist/esm/types/api/contact-acquisition.js +5 -0
- package/dist/esm/types/api/contact-acquisition.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { IPDataResponse } from '../event';
|
|
2
|
+
export declare enum CONTACT_ACQUISITION_SOURCE {
|
|
3
|
+
DRIVE_IQ = "driveIQ",
|
|
4
|
+
BDEX = "bdex"
|
|
5
|
+
}
|
|
2
6
|
export declare enum EMAIL_STATUS {
|
|
3
7
|
DELIVERABLE = "deliverable",
|
|
4
8
|
UNDELIVERABLE = "undeliverable",
|
|
@@ -15,13 +19,13 @@ export interface PurchasableContact {
|
|
|
15
19
|
email: string;
|
|
16
20
|
ipAddress: string;
|
|
17
21
|
ipAddressEnrichment: IPDataResponse;
|
|
18
|
-
userAgent
|
|
22
|
+
userAgent?: string;
|
|
19
23
|
url: string;
|
|
20
24
|
diqPersonId?: string;
|
|
21
|
-
source:
|
|
22
|
-
contact:
|
|
23
|
-
emailVerification: any;
|
|
25
|
+
source: CONTACT_ACQUISITION_SOURCE;
|
|
26
|
+
contact: BdexContact | DiqContact;
|
|
24
27
|
emailStatus: EMAIL_STATUS;
|
|
28
|
+
emailVerification?: any;
|
|
25
29
|
createdAt: string;
|
|
26
30
|
updatedAt: string;
|
|
27
31
|
}
|
|
@@ -37,3 +41,118 @@ export interface PurchasedContact {
|
|
|
37
41
|
createdAt: string;
|
|
38
42
|
updatedAt: string;
|
|
39
43
|
}
|
|
44
|
+
export interface BdexContact {
|
|
45
|
+
id: string;
|
|
46
|
+
dt_hour?: string;
|
|
47
|
+
domain?: string;
|
|
48
|
+
ip_address?: string;
|
|
49
|
+
ip_city_name?: string;
|
|
50
|
+
ip_region_name?: string;
|
|
51
|
+
ip_usage_type?: string;
|
|
52
|
+
first_name?: string;
|
|
53
|
+
last_name?: string;
|
|
54
|
+
address1?: string;
|
|
55
|
+
address2?: string;
|
|
56
|
+
city?: string;
|
|
57
|
+
state?: string;
|
|
58
|
+
postal_code?: string;
|
|
59
|
+
email_address: string;
|
|
60
|
+
hh_ip_rank?: string;
|
|
61
|
+
hh_ip_distance_in_miles?: string;
|
|
62
|
+
customer?: string;
|
|
63
|
+
href?: string;
|
|
64
|
+
times_seen?: string;
|
|
65
|
+
pixelId: string;
|
|
66
|
+
identityId: string;
|
|
67
|
+
sessionId: string;
|
|
68
|
+
}
|
|
69
|
+
export interface DiqContact {
|
|
70
|
+
id: string;
|
|
71
|
+
address: string;
|
|
72
|
+
adultsInHousehold: number;
|
|
73
|
+
age: number;
|
|
74
|
+
bebacks: number;
|
|
75
|
+
behaviors: any | null;
|
|
76
|
+
carrierRoute: string;
|
|
77
|
+
childrenAgeRanges: any | null;
|
|
78
|
+
childrenBetweenAges0_3: number;
|
|
79
|
+
childrenBetweenAges10_12: number;
|
|
80
|
+
childrenBetweenAges13_18: number;
|
|
81
|
+
childrenBetweenAges4_6: number;
|
|
82
|
+
childrenBetweenAges7_9: number;
|
|
83
|
+
childrenInHousehold: any | null;
|
|
84
|
+
city: string;
|
|
85
|
+
countyName: string;
|
|
86
|
+
creditRange: any | null;
|
|
87
|
+
date: string;
|
|
88
|
+
diqId: string;
|
|
89
|
+
dnc: any | null;
|
|
90
|
+
dpbc: number;
|
|
91
|
+
dpv: number;
|
|
92
|
+
dwellingType: string;
|
|
93
|
+
education: string;
|
|
94
|
+
email: string;
|
|
95
|
+
emailVerificationDate: string;
|
|
96
|
+
ethnicGroup: string;
|
|
97
|
+
facebook: any | null;
|
|
98
|
+
fipsCountyCode: number;
|
|
99
|
+
fipsStateCode: number;
|
|
100
|
+
firstName: string;
|
|
101
|
+
gender: any | null;
|
|
102
|
+
generation: string;
|
|
103
|
+
homeHeatType: any | null;
|
|
104
|
+
homeOwner: any | null;
|
|
105
|
+
homePrice: any | null;
|
|
106
|
+
homePurchasedYearsAgo: any | null;
|
|
107
|
+
homeValue: any | null;
|
|
108
|
+
householdIncome: string;
|
|
109
|
+
householdNetWorth: any | null;
|
|
110
|
+
incomeLevels: string;
|
|
111
|
+
interests: any | null;
|
|
112
|
+
ip: string;
|
|
113
|
+
isMultilingual: any | null;
|
|
114
|
+
isPoliticalContributor: number;
|
|
115
|
+
isPrimaryResidence: any | null;
|
|
116
|
+
language: any | null;
|
|
117
|
+
lastName: string;
|
|
118
|
+
linkedIn: any | null;
|
|
119
|
+
maid: string;
|
|
120
|
+
maidOs: string;
|
|
121
|
+
maritalStatus: any | null;
|
|
122
|
+
mortgageAge: any | null;
|
|
123
|
+
mortgageAmount: any | null;
|
|
124
|
+
mortgageLoanType: any | null;
|
|
125
|
+
mortgageRefinanceAge: any | null;
|
|
126
|
+
mortgageRefinanceAmount: any | null;
|
|
127
|
+
mortgageRefinanceType: any | null;
|
|
128
|
+
netWorth: any | null;
|
|
129
|
+
newCreditOfferedHousehold: any | null;
|
|
130
|
+
numberOfVehiclesInHousehold: any | null;
|
|
131
|
+
occupationDetail: any | null;
|
|
132
|
+
optIn: boolean;
|
|
133
|
+
optInDate: string;
|
|
134
|
+
optInIp: string;
|
|
135
|
+
optInUrl: string;
|
|
136
|
+
ownsAmexCard: number;
|
|
137
|
+
ownsBankCard: number;
|
|
138
|
+
ownsInvestment: number;
|
|
139
|
+
ownsPremiumAmexCard: number;
|
|
140
|
+
ownsPremiumCard: number;
|
|
141
|
+
ownsStocksAndBonds: number;
|
|
142
|
+
peopleInHousehold: number;
|
|
143
|
+
personality: any | null;
|
|
144
|
+
personId: string;
|
|
145
|
+
pixelFirstHitDate: string;
|
|
146
|
+
pixelLastHitDate: string;
|
|
147
|
+
politicalParty: any | null;
|
|
148
|
+
premiumIncomeHousehold: any | null;
|
|
149
|
+
religion: any | null;
|
|
150
|
+
state: string;
|
|
151
|
+
twitter: any | null;
|
|
152
|
+
urbanicity: string;
|
|
153
|
+
url: string;
|
|
154
|
+
userAgent: string;
|
|
155
|
+
veteransInHousehold: number;
|
|
156
|
+
zip: string;
|
|
157
|
+
zip4: number;
|
|
158
|
+
}
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PURCHASED_CONTACT_STATUS = exports.EMAIL_STATUS = void 0;
|
|
3
|
+
exports.PURCHASED_CONTACT_STATUS = exports.EMAIL_STATUS = exports.CONTACT_ACQUISITION_SOURCE = void 0;
|
|
4
|
+
var CONTACT_ACQUISITION_SOURCE;
|
|
5
|
+
(function (CONTACT_ACQUISITION_SOURCE) {
|
|
6
|
+
CONTACT_ACQUISITION_SOURCE["DRIVE_IQ"] = "driveIQ";
|
|
7
|
+
CONTACT_ACQUISITION_SOURCE["BDEX"] = "bdex";
|
|
8
|
+
})(CONTACT_ACQUISITION_SOURCE = exports.CONTACT_ACQUISITION_SOURCE || (exports.CONTACT_ACQUISITION_SOURCE = {}));
|
|
4
9
|
var EMAIL_STATUS;
|
|
5
10
|
(function (EMAIL_STATUS) {
|
|
6
11
|
EMAIL_STATUS["DELIVERABLE"] = "deliverable";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":";;;AAEA,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"}
|
|
1
|
+
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":";;;AAEA,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,kDAAoB,CAAA;IACpB,2CAAa,CAAA;AACf,CAAC,EAHW,0BAA0B,GAA1B,kCAA0B,KAA1B,kCAA0B,QAGrC;AAED,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"}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { IPDataResponse } from '../event';
|
|
2
|
+
export declare enum CONTACT_ACQUISITION_SOURCE {
|
|
3
|
+
DRIVE_IQ = "driveIQ",
|
|
4
|
+
BDEX = "bdex"
|
|
5
|
+
}
|
|
2
6
|
export declare enum EMAIL_STATUS {
|
|
3
7
|
DELIVERABLE = "deliverable",
|
|
4
8
|
UNDELIVERABLE = "undeliverable",
|
|
@@ -15,13 +19,13 @@ export interface PurchasableContact {
|
|
|
15
19
|
email: string;
|
|
16
20
|
ipAddress: string;
|
|
17
21
|
ipAddressEnrichment: IPDataResponse;
|
|
18
|
-
userAgent
|
|
22
|
+
userAgent?: string;
|
|
19
23
|
url: string;
|
|
20
24
|
diqPersonId?: string;
|
|
21
|
-
source:
|
|
22
|
-
contact:
|
|
23
|
-
emailVerification: any;
|
|
25
|
+
source: CONTACT_ACQUISITION_SOURCE;
|
|
26
|
+
contact: BdexContact | DiqContact;
|
|
24
27
|
emailStatus: EMAIL_STATUS;
|
|
28
|
+
emailVerification?: any;
|
|
25
29
|
createdAt: string;
|
|
26
30
|
updatedAt: string;
|
|
27
31
|
}
|
|
@@ -37,3 +41,118 @@ export interface PurchasedContact {
|
|
|
37
41
|
createdAt: string;
|
|
38
42
|
updatedAt: string;
|
|
39
43
|
}
|
|
44
|
+
export interface BdexContact {
|
|
45
|
+
id: string;
|
|
46
|
+
dt_hour?: string;
|
|
47
|
+
domain?: string;
|
|
48
|
+
ip_address?: string;
|
|
49
|
+
ip_city_name?: string;
|
|
50
|
+
ip_region_name?: string;
|
|
51
|
+
ip_usage_type?: string;
|
|
52
|
+
first_name?: string;
|
|
53
|
+
last_name?: string;
|
|
54
|
+
address1?: string;
|
|
55
|
+
address2?: string;
|
|
56
|
+
city?: string;
|
|
57
|
+
state?: string;
|
|
58
|
+
postal_code?: string;
|
|
59
|
+
email_address: string;
|
|
60
|
+
hh_ip_rank?: string;
|
|
61
|
+
hh_ip_distance_in_miles?: string;
|
|
62
|
+
customer?: string;
|
|
63
|
+
href?: string;
|
|
64
|
+
times_seen?: string;
|
|
65
|
+
pixelId: string;
|
|
66
|
+
identityId: string;
|
|
67
|
+
sessionId: string;
|
|
68
|
+
}
|
|
69
|
+
export interface DiqContact {
|
|
70
|
+
id: string;
|
|
71
|
+
address: string;
|
|
72
|
+
adultsInHousehold: number;
|
|
73
|
+
age: number;
|
|
74
|
+
bebacks: number;
|
|
75
|
+
behaviors: any | null;
|
|
76
|
+
carrierRoute: string;
|
|
77
|
+
childrenAgeRanges: any | null;
|
|
78
|
+
childrenBetweenAges0_3: number;
|
|
79
|
+
childrenBetweenAges10_12: number;
|
|
80
|
+
childrenBetweenAges13_18: number;
|
|
81
|
+
childrenBetweenAges4_6: number;
|
|
82
|
+
childrenBetweenAges7_9: number;
|
|
83
|
+
childrenInHousehold: any | null;
|
|
84
|
+
city: string;
|
|
85
|
+
countyName: string;
|
|
86
|
+
creditRange: any | null;
|
|
87
|
+
date: string;
|
|
88
|
+
diqId: string;
|
|
89
|
+
dnc: any | null;
|
|
90
|
+
dpbc: number;
|
|
91
|
+
dpv: number;
|
|
92
|
+
dwellingType: string;
|
|
93
|
+
education: string;
|
|
94
|
+
email: string;
|
|
95
|
+
emailVerificationDate: string;
|
|
96
|
+
ethnicGroup: string;
|
|
97
|
+
facebook: any | null;
|
|
98
|
+
fipsCountyCode: number;
|
|
99
|
+
fipsStateCode: number;
|
|
100
|
+
firstName: string;
|
|
101
|
+
gender: any | null;
|
|
102
|
+
generation: string;
|
|
103
|
+
homeHeatType: any | null;
|
|
104
|
+
homeOwner: any | null;
|
|
105
|
+
homePrice: any | null;
|
|
106
|
+
homePurchasedYearsAgo: any | null;
|
|
107
|
+
homeValue: any | null;
|
|
108
|
+
householdIncome: string;
|
|
109
|
+
householdNetWorth: any | null;
|
|
110
|
+
incomeLevels: string;
|
|
111
|
+
interests: any | null;
|
|
112
|
+
ip: string;
|
|
113
|
+
isMultilingual: any | null;
|
|
114
|
+
isPoliticalContributor: number;
|
|
115
|
+
isPrimaryResidence: any | null;
|
|
116
|
+
language: any | null;
|
|
117
|
+
lastName: string;
|
|
118
|
+
linkedIn: any | null;
|
|
119
|
+
maid: string;
|
|
120
|
+
maidOs: string;
|
|
121
|
+
maritalStatus: any | null;
|
|
122
|
+
mortgageAge: any | null;
|
|
123
|
+
mortgageAmount: any | null;
|
|
124
|
+
mortgageLoanType: any | null;
|
|
125
|
+
mortgageRefinanceAge: any | null;
|
|
126
|
+
mortgageRefinanceAmount: any | null;
|
|
127
|
+
mortgageRefinanceType: any | null;
|
|
128
|
+
netWorth: any | null;
|
|
129
|
+
newCreditOfferedHousehold: any | null;
|
|
130
|
+
numberOfVehiclesInHousehold: any | null;
|
|
131
|
+
occupationDetail: any | null;
|
|
132
|
+
optIn: boolean;
|
|
133
|
+
optInDate: string;
|
|
134
|
+
optInIp: string;
|
|
135
|
+
optInUrl: string;
|
|
136
|
+
ownsAmexCard: number;
|
|
137
|
+
ownsBankCard: number;
|
|
138
|
+
ownsInvestment: number;
|
|
139
|
+
ownsPremiumAmexCard: number;
|
|
140
|
+
ownsPremiumCard: number;
|
|
141
|
+
ownsStocksAndBonds: number;
|
|
142
|
+
peopleInHousehold: number;
|
|
143
|
+
personality: any | null;
|
|
144
|
+
personId: string;
|
|
145
|
+
pixelFirstHitDate: string;
|
|
146
|
+
pixelLastHitDate: string;
|
|
147
|
+
politicalParty: any | null;
|
|
148
|
+
premiumIncomeHousehold: any | null;
|
|
149
|
+
religion: any | null;
|
|
150
|
+
state: string;
|
|
151
|
+
twitter: any | null;
|
|
152
|
+
urbanicity: string;
|
|
153
|
+
url: string;
|
|
154
|
+
userAgent: string;
|
|
155
|
+
veteransInHousehold: number;
|
|
156
|
+
zip: string;
|
|
157
|
+
zip4: number;
|
|
158
|
+
}
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export var CONTACT_ACQUISITION_SOURCE;
|
|
2
|
+
(function (CONTACT_ACQUISITION_SOURCE) {
|
|
3
|
+
CONTACT_ACQUISITION_SOURCE["DRIVE_IQ"] = "driveIQ";
|
|
4
|
+
CONTACT_ACQUISITION_SOURCE["BDEX"] = "bdex";
|
|
5
|
+
})(CONTACT_ACQUISITION_SOURCE || (CONTACT_ACQUISITION_SOURCE = {}));
|
|
1
6
|
export var EMAIL_STATUS;
|
|
2
7
|
(function (EMAIL_STATUS) {
|
|
3
8
|
EMAIL_STATUS["DELIVERABLE"] = "deliverable";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":"AAEA,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"}
|
|
1
|
+
{"version":3,"file":"contact-acquisition.js","sourceRoot":"","sources":["../../../../src/types/api/contact-acquisition.ts"],"names":[],"mappings":"AAEA,MAAM,CAAN,IAAY,0BAGX;AAHD,WAAY,0BAA0B;IACpC,kDAAoB,CAAA;IACpB,2CAAa,CAAA;AACf,CAAC,EAHW,0BAA0B,KAA1B,0BAA0B,QAGrC;AAED,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"}
|