@@ -154,6 +154,25 @@ export declare class CreateContact {
154
154
type : string ;
155
155
} [ ] ;
156
156
}
157
+ export declare class CreateDoiContact {
158
+ 'email' : string ;
159
+ 'attributes' : any ;
160
+ 'includeListIds' : Array < number > ;
161
+ 'excludeListIds' : Array < number > ;
162
+ 'templateId' : number ;
163
+ 'redirectionUrl' : string ;
164
+ static discriminator : undefined ;
165
+ static attributeTypeMap : Array < {
166
+ name : string ;
167
+ baseName : string ;
168
+ type : string ;
169
+ } > ;
170
+ static getAttributeTypeMap ( ) : {
171
+ name : string ;
172
+ baseName : string ;
173
+ type : string ;
174
+ } [ ] ;
175
+ }
157
176
export declare class CreateEmailCampaign {
158
177
'tag' : string ;
159
178
'sender' : CreateEmailCampaignSender ;
@@ -1917,7 +1936,7 @@ export declare class GetTransacBlockedContactsContacts {
1917
1936
'email' : string ;
1918
1937
'senderEmail' : string ;
1919
1938
'reason' : GetTransacBlockedContactsReason ;
1920
- 'blockedAt' : string ;
1939
+ 'blockedAt' : Date ;
1921
1940
static discriminator : undefined ;
1922
1941
static attributeTypeMap : Array < {
1923
1942
name : string ;
@@ -2011,6 +2030,8 @@ export declare class GetTransacEmailsListTransactionalEmails {
2011
2030
'messageId' : string ;
2012
2031
'uuid' : string ;
2013
2032
'date' : Date ;
2033
+ 'from' : string ;
2034
+ 'tags' : Array < string > ;
2014
2035
static discriminator : undefined ;
2015
2036
static attributeTypeMap : Array < {
2016
2037
name : string ;
@@ -3053,6 +3074,7 @@ export declare class GetExtendedCampaignOverview {
3053
3074
'mirrorActive' : boolean ;
3054
3075
'recurring' : boolean ;
3055
3076
'sentDate' : Date ;
3077
+ 'returnBounce' : number ;
3056
3078
static discriminator : undefined ;
3057
3079
static attributeTypeMap : Array < {
3058
3080
name : string ;
@@ -3224,6 +3246,7 @@ export declare class GetEmailCampaign {
3224
3246
'mirrorActive' : boolean ;
3225
3247
'recurring' : boolean ;
3226
3248
'sentDate' : Date ;
3249
+ 'returnBounce' : number ;
3227
3250
'recipients' : any ;
3228
3251
'statistics' : any ;
3229
3252
static discriminator : undefined ;
@@ -3364,6 +3387,10 @@ export declare class ContactsApi {
3364
3387
response : http . IncomingMessage ;
3365
3388
body : CreateUpdateContactModel ;
3366
3389
} > ;
3390
+ createDoiContact ( createDoiContact : CreateDoiContact ) : Promise < {
3391
+ response : http . IncomingMessage ;
3392
+ body ?: any ;
3393
+ } > ;
3367
3394
createFolder ( createFolder : CreateUpdateFolder ) : Promise < {
3368
3395
response : http . IncomingMessage ;
3369
3396
body : CreateModel ;
@@ -3396,7 +3423,7 @@ export declare class ContactsApi {
3396
3423
response : http . IncomingMessage ;
3397
3424
body : GetExtendedContactDetails ;
3398
3425
} > ;
3399
- getContactStats ( email : string ) : Promise < {
3426
+ getContactStats ( email : string , startDate ?: string , endDate ?: string ) : Promise < {
3400
3427
response : http . IncomingMessage ;
3401
3428
body : GetContactCampaignStats ;
3402
3429
} > ;
0 commit comments