@@ -122,6 +122,7 @@ export declare class CreateChild {
122
122
'lastName' : string ;
123
123
'companyName' : string ;
124
124
'password' : string ;
125
+ 'language' : CreateChild . LanguageEnum ;
125
126
static discriminator : undefined ;
126
127
static attributeTypeMap : Array < {
127
128
name : string ;
@@ -134,6 +135,16 @@ export declare class CreateChild {
134
135
type : string ;
135
136
} [ ] ;
136
137
}
138
+ export declare namespace CreateChild {
139
+ enum LanguageEnum {
140
+ Fr ,
141
+ Es ,
142
+ Pt ,
143
+ It ,
144
+ De ,
145
+ En
146
+ }
147
+ }
137
148
export declare class CreateContact {
138
149
'email' : string ;
139
150
'attributes' : any ;
@@ -282,6 +293,7 @@ export declare class CreateModel {
282
293
}
283
294
export declare class CreateReseller {
284
295
'authKey' : string ;
296
+ 'id' : number ;
285
297
static discriminator : undefined ;
286
298
static attributeTypeMap : Array < {
287
299
name : string ;
@@ -475,6 +487,7 @@ export declare class CreateWebhook {
475
487
}
476
488
export declare namespace CreateWebhook {
477
489
enum EventsEnum {
490
+ Sent ,
478
491
HardBounce ,
479
492
SoftBounce ,
480
493
Blocked ,
@@ -1794,6 +1807,7 @@ export declare class GetSmtpTemplateOverview {
1794
1807
'htmlContent' : string ;
1795
1808
'createdAt' : Date ;
1796
1809
'modifiedAt' : Date ;
1810
+ 'doiTemplate' : boolean ;
1797
1811
static discriminator : undefined ;
1798
1812
static attributeTypeMap : Array < {
1799
1813
name : string ;
@@ -2153,6 +2167,7 @@ export declare class PostContactInfoContacts {
2153
2167
'success' : Array < string > ;
2154
2168
'failure' : Array < string > ;
2155
2169
'total' : number ;
2170
+ 'processId' : number ;
2156
2171
static discriminator : undefined ;
2157
2172
static attributeTypeMap : Array < {
2158
2173
name : string ;
@@ -2762,6 +2777,7 @@ export declare class UpdateChildAccountStatus {
2762
2777
'transactionalEmail' : boolean ;
2763
2778
'transactionalSms' : boolean ;
2764
2779
'marketingAutomation' : boolean ;
2780
+ 'smsCampaign' : boolean ;
2765
2781
static discriminator : undefined ;
2766
2782
static attributeTypeMap : Array < {
2767
2783
name : string ;
@@ -3698,67 +3714,67 @@ export declare class ResellerApi {
3698
3714
basePath : string ;
3699
3715
setDefaultAuthentication ( auth : Authentication ) : void ;
3700
3716
setApiKey ( key : ResellerApiApiKeys , value : string ) : void ;
3701
- addCredits ( childAuthKey : string , addCredits : AddCredits ) : Promise < {
3717
+ addCredits ( childIdentifier : string , addCredits : AddCredits ) : Promise < {
3702
3718
response : http . IncomingMessage ;
3703
3719
body : RemainingCreditModel ;
3704
3720
} > ;
3705
- associateIpToChild ( childAuthKey : string , ip : ManageIp ) : Promise < {
3721
+ associateIpToChild ( childIdentifier : string , ip : ManageIp ) : Promise < {
3706
3722
response : http . IncomingMessage ;
3707
3723
body ?: any ;
3708
3724
} > ;
3709
- createChildDomain ( childAuthKey : string , addChildDomain : AddChildDomain ) : Promise < {
3725
+ createChildDomain ( childIdentifier : string , addChildDomain : AddChildDomain ) : Promise < {
3710
3726
response : http . IncomingMessage ;
3711
3727
body ?: any ;
3712
3728
} > ;
3713
3729
createResellerChild ( resellerChild ?: CreateChild ) : Promise < {
3714
3730
response : http . IncomingMessage ;
3715
3731
body : CreateReseller ;
3716
3732
} > ;
3717
- deleteChildDomain ( childAuthKey : string , domainName : string ) : Promise < {
3733
+ deleteChildDomain ( childIdentifier : string , domainName : string ) : Promise < {
3718
3734
response : http . IncomingMessage ;
3719
3735
body ?: any ;
3720
3736
} > ;
3721
- deleteResellerChild ( childAuthKey : string ) : Promise < {
3737
+ deleteResellerChild ( childIdentifier : string ) : Promise < {
3722
3738
response : http . IncomingMessage ;
3723
3739
body ?: any ;
3724
3740
} > ;
3725
- dissociateIpFromChild ( childAuthKey : string , ip : ManageIp ) : Promise < {
3741
+ dissociateIpFromChild ( childIdentifier : string , ip : ManageIp ) : Promise < {
3726
3742
response : http . IncomingMessage ;
3727
3743
body ?: any ;
3728
3744
} > ;
3729
- getChildAccountCreationStatus ( childAuthKey : string ) : Promise < {
3745
+ getChildAccountCreationStatus ( childIdentifier : string ) : Promise < {
3730
3746
response : http . IncomingMessage ;
3731
3747
body : GetChildAccountCreationStatus ;
3732
3748
} > ;
3733
- getChildDomains ( childAuthKey : string ) : Promise < {
3749
+ getChildDomains ( childIdentifier : string ) : Promise < {
3734
3750
response : http . IncomingMessage ;
3735
3751
body : GetChildDomains ;
3736
3752
} > ;
3737
- getChildInfo ( childAuthKey : string ) : Promise < {
3753
+ getChildInfo ( childIdentifier : string ) : Promise < {
3738
3754
response : http . IncomingMessage ;
3739
3755
body : GetChildInfo ;
3740
3756
} > ;
3741
3757
getResellerChilds ( limit ?: number , offset ?: number ) : Promise < {
3742
3758
response : http . IncomingMessage ;
3743
3759
body : GetChildrenList ;
3744
3760
} > ;
3745
- getSsoToken ( childAuthKey : string ) : Promise < {
3761
+ getSsoToken ( childIdentifier : string ) : Promise < {
3746
3762
response : http . IncomingMessage ;
3747
3763
body : GetSsoToken ;
3748
3764
} > ;
3749
- removeCredits ( childAuthKey : string , removeCredits : RemoveCredits ) : Promise < {
3765
+ removeCredits ( childIdentifier : string , removeCredits : RemoveCredits ) : Promise < {
3750
3766
response : http . IncomingMessage ;
3751
3767
body : RemainingCreditModel ;
3752
3768
} > ;
3753
- updateChildAccountStatus ( childAuthKey : string , updateChildAccountStatus : UpdateChildAccountStatus ) : Promise < {
3769
+ updateChildAccountStatus ( childIdentifier : string , updateChildAccountStatus : UpdateChildAccountStatus ) : Promise < {
3754
3770
response : http . IncomingMessage ;
3755
3771
body ?: any ;
3756
3772
} > ;
3757
- updateChildDomain ( childAuthKey : string , domainName : string , updateChildDomain : UpdateChildDomain ) : Promise < {
3773
+ updateChildDomain ( childIdentifier : string , domainName : string , updateChildDomain : UpdateChildDomain ) : Promise < {
3758
3774
response : http . IncomingMessage ;
3759
3775
body ?: any ;
3760
3776
} > ;
3761
- updateResellerChild ( childAuthKey : string , resellerChild : UpdateChild ) : Promise < {
3777
+ updateResellerChild ( childIdentifier : string , resellerChild : UpdateChild ) : Promise < {
3762
3778
response : http . IncomingMessage ;
3763
3779
body ?: any ;
3764
3780
} > ;
0 commit comments