@randock/nameshift-api-client 0.0.456 → 0.0.458

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @randock/nameshift-api-client@0.0.456
1
+ ## @randock/nameshift-api-client@0.0.458
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @randock/nameshift-api-client@0.0.456 --save
39
+ npm install @randock/nameshift-api-client@0.0.458 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -44,4 +44,4 @@ _unPublished (not recommended):_
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
46
  ```
47
- 1178fc7a7898c3e3b621b0d438673bc41fa7c502b93b2edcb52c643266cad88143250963b6ec7a44357f91dfa2ec1807
47
+ 08bf50aadab383831f03f11bd8ec50ed5b70c0c6d30f405afb0b4b6d00b42a9971997bc6a8dd86379560ea0fa5e84846
@@ -100,12 +100,6 @@ export interface CreateOrderInput {
100
100
  * @memberof CreateOrderInput
101
101
  */
102
102
  forceValidateVatId?: boolean;
103
- /**
104
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
105
- * @type {boolean}
106
- * @memberof CreateOrderInput
107
- */
108
- payAction?: boolean;
109
103
  /**
110
104
  * Full domain name to purchase
111
105
  * @type {string}
@@ -49,7 +49,6 @@ function CreateOrderInputFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
50
50
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
51
51
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
52
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
53
52
  'domainName': json['domainName'],
54
53
  'leadId': json['leadId'] == null ? undefined : json['leadId'],
55
54
  'affiliateId': json['affiliateId'] == null ? undefined : json['affiliateId'],
@@ -78,7 +77,6 @@ function CreateOrderInputToJSONTyped(value, ignoreDiscriminator) {
78
77
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
79
78
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
80
79
  'forceValidateVatId': value['forceValidateVatId'],
81
- 'payAction': value['payAction'],
82
80
  'domainName': value['domainName'],
83
81
  'leadId': value['leadId'],
84
82
  'affiliateId': value['affiliateId'],
@@ -113,12 +113,6 @@ export interface CreateSubscriptionInput {
113
113
  * @memberof CreateSubscriptionInput
114
114
  */
115
115
  forceValidateVatId?: boolean;
116
- /**
117
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
118
- * @type {boolean}
119
- * @memberof CreateSubscriptionInput
120
- */
121
- payAction?: boolean;
122
116
  /**
123
117
  * Full domain name for the subscription
124
118
  * @type {string}
@@ -62,7 +62,6 @@ function CreateSubscriptionInputFromJSONTyped(json, ignoreDiscriminator) {
62
62
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
63
63
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
64
64
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
65
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
66
65
  'domainName': json['domainName'],
67
66
  'subscriptionType': json['subscriptionType'],
68
67
  'affiliateId': json['affiliateId'] == null ? undefined : json['affiliateId'],
@@ -93,7 +92,6 @@ function CreateSubscriptionInputToJSONTyped(value, ignoreDiscriminator) {
93
92
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
94
93
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
95
94
  'forceValidateVatId': value['forceValidateVatId'],
96
- 'payAction': value['payAction'],
97
95
  'domainName': value['domainName'],
98
96
  'subscriptionType': value['subscriptionType'],
99
97
  'affiliateId': value['affiliateId'],
@@ -29,6 +29,14 @@ export interface GetAccountNameshiftCommissionsResponseDto {
29
29
  * @memberof GetAccountNameshiftCommissionsResponseDto
30
30
  */
31
31
  details: Array<AccountNameshiftCommissionItemDto>;
32
+ /**
33
+ * The account's live domain count per extension, keyed by lower-case TLD (for example { "com": 241 }). Extensions the account holds no domains in are omitted. Lets a client weight each commission rule by how much of the portfolio it governs.
34
+ * @type {{ [key: string]: number; }}
35
+ * @memberof GetAccountNameshiftCommissionsResponseDto
36
+ */
37
+ domainCountsByTld: {
38
+ [key: string]: number;
39
+ };
32
40
  }
33
41
  /**
34
42
  * Check if a given object implements the GetAccountNameshiftCommissionsResponseDto interface.
@@ -28,6 +28,8 @@ function instanceOfGetAccountNameshiftCommissionsResponseDto(value) {
28
28
  return false;
29
29
  if (!('details' in value) || value['details'] === undefined)
30
30
  return false;
31
+ if (!('domainCountsByTld' in value) || value['domainCountsByTld'] === undefined)
32
+ return false;
31
33
  return true;
32
34
  }
33
35
  function GetAccountNameshiftCommissionsResponseDtoFromJSON(json) {
@@ -40,6 +42,7 @@ function GetAccountNameshiftCommissionsResponseDtoFromJSONTyped(json, ignoreDisc
40
42
  return {
41
43
  'current': (0, AccountNameshiftCommissionBySubtypePercentagesDto_1.AccountNameshiftCommissionBySubtypePercentagesDtoFromJSON)(json['current']),
42
44
  'details': (json['details'].map(AccountNameshiftCommissionItemDto_1.AccountNameshiftCommissionItemDtoFromJSON)),
45
+ 'domainCountsByTld': json['domainCountsByTld'],
43
46
  };
44
47
  }
45
48
  function GetAccountNameshiftCommissionsResponseDtoToJSON(json) {
@@ -53,5 +56,6 @@ function GetAccountNameshiftCommissionsResponseDtoToJSONTyped(value, ignoreDiscr
53
56
  return {
54
57
  'current': (0, AccountNameshiftCommissionBySubtypePercentagesDto_1.AccountNameshiftCommissionBySubtypePercentagesDtoToJSON)(value['current']),
55
58
  'details': (value['details'].map(AccountNameshiftCommissionItemDto_1.AccountNameshiftCommissionItemDtoToJSON)),
59
+ 'domainCountsByTld': value['domainCountsByTld'],
56
60
  };
57
61
  }
@@ -33,12 +33,6 @@ export interface OrderCompanyTaxIdDto {
33
33
  * @memberof OrderCompanyTaxIdDto
34
34
  */
35
35
  countryCode: string;
36
- /**
37
- * Whether the tax ID passed validation.
38
- * @type {boolean}
39
- * @memberof OrderCompanyTaxIdDto
40
- */
41
- readonly isValid?: boolean | null;
42
36
  }
43
37
  /**
44
38
  * Check if a given object implements the OrderCompanyTaxIdDto interface.
@@ -47,4 +41,4 @@ export declare function instanceOfOrderCompanyTaxIdDto(value: object): value is
47
41
  export declare function OrderCompanyTaxIdDtoFromJSON(json: any): OrderCompanyTaxIdDto;
48
42
  export declare function OrderCompanyTaxIdDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderCompanyTaxIdDto;
49
43
  export declare function OrderCompanyTaxIdDtoToJSON(json: any): OrderCompanyTaxIdDto;
50
- export declare function OrderCompanyTaxIdDtoToJSONTyped(value?: Omit<OrderCompanyTaxIdDto, 'isValid'> | null, ignoreDiscriminator?: boolean): any;
44
+ export declare function OrderCompanyTaxIdDtoToJSONTyped(value?: OrderCompanyTaxIdDto | null, ignoreDiscriminator?: boolean): any;
@@ -41,7 +41,6 @@ function OrderCompanyTaxIdDtoFromJSONTyped(json, ignoreDiscriminator) {
41
41
  'value': json['value'],
42
42
  'type': json['type'],
43
43
  'countryCode': json['countryCode'],
44
- 'isValid': json['isValid'] == null ? undefined : json['isValid'],
45
44
  };
46
45
  }
47
46
  function OrderCompanyTaxIdDtoToJSON(json) {
@@ -33,12 +33,6 @@ export interface SubscriptionCompanyTaxIdDto {
33
33
  * @memberof SubscriptionCompanyTaxIdDto
34
34
  */
35
35
  countryCode: string;
36
- /**
37
- * Whether the tax ID passed validation.
38
- * @type {boolean}
39
- * @memberof SubscriptionCompanyTaxIdDto
40
- */
41
- readonly isValid?: boolean | null;
42
36
  }
43
37
  /**
44
38
  * Check if a given object implements the SubscriptionCompanyTaxIdDto interface.
@@ -47,4 +41,4 @@ export declare function instanceOfSubscriptionCompanyTaxIdDto(value: object): va
47
41
  export declare function SubscriptionCompanyTaxIdDtoFromJSON(json: any): SubscriptionCompanyTaxIdDto;
48
42
  export declare function SubscriptionCompanyTaxIdDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionCompanyTaxIdDto;
49
43
  export declare function SubscriptionCompanyTaxIdDtoToJSON(json: any): SubscriptionCompanyTaxIdDto;
50
- export declare function SubscriptionCompanyTaxIdDtoToJSONTyped(value?: Omit<SubscriptionCompanyTaxIdDto, 'isValid'> | null, ignoreDiscriminator?: boolean): any;
44
+ export declare function SubscriptionCompanyTaxIdDtoToJSONTyped(value?: SubscriptionCompanyTaxIdDto | null, ignoreDiscriminator?: boolean): any;
@@ -41,7 +41,6 @@ function SubscriptionCompanyTaxIdDtoFromJSONTyped(json, ignoreDiscriminator) {
41
41
  'value': json['value'],
42
42
  'type': json['type'],
43
43
  'countryCode': json['countryCode'],
44
- 'isValid': json['isValid'] == null ? undefined : json['isValid'],
45
44
  };
46
45
  }
47
46
  function SubscriptionCompanyTaxIdDtoToJSON(json) {
@@ -100,12 +100,6 @@ export interface UpdateOrderInput {
100
100
  * @memberof UpdateOrderInput
101
101
  */
102
102
  forceValidateVatId?: boolean;
103
- /**
104
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
105
- * @type {boolean}
106
- * @memberof UpdateOrderInput
107
- */
108
- payAction?: boolean;
109
103
  }
110
104
  /**
111
105
  * Check if a given object implements the UpdateOrderInput interface.
@@ -47,7 +47,6 @@ function UpdateOrderInputFromJSONTyped(json, ignoreDiscriminator) {
47
47
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
48
48
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
49
49
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
50
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
51
50
  };
52
51
  }
53
52
  function UpdateOrderInputToJSON(json) {
@@ -73,6 +72,5 @@ function UpdateOrderInputToJSONTyped(value, ignoreDiscriminator) {
73
72
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
74
73
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
75
74
  'forceValidateVatId': value['forceValidateVatId'],
76
- 'payAction': value['payAction'],
77
75
  };
78
76
  }
@@ -113,12 +113,6 @@ export interface UpdateSubscriptionInput {
113
113
  * @memberof UpdateSubscriptionInput
114
114
  */
115
115
  forceValidateVatId?: boolean;
116
- /**
117
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
118
- * @type {boolean}
119
- * @memberof UpdateSubscriptionInput
120
- */
121
- payAction?: boolean;
122
116
  }
123
117
  /**
124
118
  * Check if a given object implements the UpdateSubscriptionInput interface.
@@ -50,7 +50,6 @@ function UpdateSubscriptionInputFromJSONTyped(json, ignoreDiscriminator) {
50
50
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
51
51
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
52
52
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
53
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
54
53
  };
55
54
  }
56
55
  function UpdateSubscriptionInputToJSON(json) {
@@ -78,6 +77,5 @@ function UpdateSubscriptionInputToJSONTyped(value, ignoreDiscriminator) {
78
77
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
79
78
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
80
79
  'forceValidateVatId': value['forceValidateVatId'],
81
- 'payAction': value['payAction'],
82
80
  };
83
81
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.456",
3
+ "version": "0.0.458",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -111,12 +111,6 @@ export interface CreateOrderInput {
111
111
  * @memberof CreateOrderInput
112
112
  */
113
113
  forceValidateVatId?: boolean;
114
- /**
115
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
116
- * @type {boolean}
117
- * @memberof CreateOrderInput
118
- */
119
- payAction?: boolean;
120
114
  /**
121
115
  * Full domain name to purchase
122
116
  * @type {string}
@@ -169,7 +163,6 @@ export function CreateOrderInputFromJSONTyped(json: any, ignoreDiscriminator: bo
169
163
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
170
164
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
171
165
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
172
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
173
166
  'domainName': json['domainName'],
174
167
  'leadId': json['leadId'] == null ? undefined : json['leadId'],
175
168
  'affiliateId': json['affiliateId'] == null ? undefined : json['affiliateId'],
@@ -201,7 +194,6 @@ export function CreateOrderInputToJSONTyped(value?: CreateOrderInput | null, ign
201
194
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
202
195
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
203
196
  'forceValidateVatId': value['forceValidateVatId'],
204
- 'payAction': value['payAction'],
205
197
  'domainName': value['domainName'],
206
198
  'leadId': value['leadId'],
207
199
  'affiliateId': value['affiliateId'],
@@ -130,12 +130,6 @@ export interface CreateSubscriptionInput {
130
130
  * @memberof CreateSubscriptionInput
131
131
  */
132
132
  forceValidateVatId?: boolean;
133
- /**
134
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
135
- * @type {boolean}
136
- * @memberof CreateSubscriptionInput
137
- */
138
- payAction?: boolean;
139
133
  /**
140
134
  * Full domain name for the subscription
141
135
  * @type {string}
@@ -202,7 +196,6 @@ export function CreateSubscriptionInputFromJSONTyped(json: any, ignoreDiscrimina
202
196
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
203
197
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
204
198
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
205
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
206
199
  'domainName': json['domainName'],
207
200
  'subscriptionType': json['subscriptionType'],
208
201
  'affiliateId': json['affiliateId'] == null ? undefined : json['affiliateId'],
@@ -236,7 +229,6 @@ export function CreateSubscriptionInputToJSONTyped(value?: CreateSubscriptionInp
236
229
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
237
230
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
238
231
  'forceValidateVatId': value['forceValidateVatId'],
239
- 'payAction': value['payAction'],
240
232
  'domainName': value['domainName'],
241
233
  'subscriptionType': value['subscriptionType'],
242
234
  'affiliateId': value['affiliateId'],
@@ -46,6 +46,12 @@ export interface GetAccountNameshiftCommissionsResponseDto {
46
46
  * @memberof GetAccountNameshiftCommissionsResponseDto
47
47
  */
48
48
  details: Array<AccountNameshiftCommissionItemDto>;
49
+ /**
50
+ * The account's live domain count per extension, keyed by lower-case TLD (for example { "com": 241 }). Extensions the account holds no domains in are omitted. Lets a client weight each commission rule by how much of the portfolio it governs.
51
+ * @type {{ [key: string]: number; }}
52
+ * @memberof GetAccountNameshiftCommissionsResponseDto
53
+ */
54
+ domainCountsByTld: { [key: string]: number; };
49
55
  }
50
56
 
51
57
  /**
@@ -54,6 +60,7 @@ export interface GetAccountNameshiftCommissionsResponseDto {
54
60
  export function instanceOfGetAccountNameshiftCommissionsResponseDto(value: object): value is GetAccountNameshiftCommissionsResponseDto {
55
61
  if (!('current' in value) || value['current'] === undefined) return false;
56
62
  if (!('details' in value) || value['details'] === undefined) return false;
63
+ if (!('domainCountsByTld' in value) || value['domainCountsByTld'] === undefined) return false;
57
64
  return true;
58
65
  }
59
66
 
@@ -69,6 +76,7 @@ export function GetAccountNameshiftCommissionsResponseDtoFromJSONTyped(json: any
69
76
 
70
77
  'current': AccountNameshiftCommissionBySubtypePercentagesDtoFromJSON(json['current']),
71
78
  'details': ((json['details'] as Array<any>).map(AccountNameshiftCommissionItemDtoFromJSON)),
79
+ 'domainCountsByTld': json['domainCountsByTld'],
72
80
  };
73
81
  }
74
82
 
@@ -85,6 +93,7 @@ export function GetAccountNameshiftCommissionsResponseDtoToJSONTyped(value?: Get
85
93
 
86
94
  'current': AccountNameshiftCommissionBySubtypePercentagesDtoToJSON(value['current']),
87
95
  'details': ((value['details'] as Array<any>).map(AccountNameshiftCommissionItemDtoToJSON)),
96
+ 'domainCountsByTld': value['domainCountsByTld'],
88
97
  };
89
98
  }
90
99
 
@@ -37,12 +37,6 @@ export interface OrderCompanyTaxIdDto {
37
37
  * @memberof OrderCompanyTaxIdDto
38
38
  */
39
39
  countryCode: string;
40
- /**
41
- * Whether the tax ID passed validation.
42
- * @type {boolean}
43
- * @memberof OrderCompanyTaxIdDto
44
- */
45
- readonly isValid?: boolean | null;
46
40
  }
47
41
 
48
42
  /**
@@ -68,7 +62,6 @@ export function OrderCompanyTaxIdDtoFromJSONTyped(json: any, ignoreDiscriminator
68
62
  'value': json['value'],
69
63
  'type': json['type'],
70
64
  'countryCode': json['countryCode'],
71
- 'isValid': json['isValid'] == null ? undefined : json['isValid'],
72
65
  };
73
66
  }
74
67
 
@@ -76,7 +69,7 @@ export function OrderCompanyTaxIdDtoToJSON(json: any): OrderCompanyTaxIdDto {
76
69
  return OrderCompanyTaxIdDtoToJSONTyped(json, false);
77
70
  }
78
71
 
79
- export function OrderCompanyTaxIdDtoToJSONTyped(value?: Omit<OrderCompanyTaxIdDto, 'isValid'> | null, ignoreDiscriminator: boolean = false): any {
72
+ export function OrderCompanyTaxIdDtoToJSONTyped(value?: OrderCompanyTaxIdDto | null, ignoreDiscriminator: boolean = false): any {
80
73
  if (value == null) {
81
74
  return value;
82
75
  }
@@ -37,12 +37,6 @@ export interface SubscriptionCompanyTaxIdDto {
37
37
  * @memberof SubscriptionCompanyTaxIdDto
38
38
  */
39
39
  countryCode: string;
40
- /**
41
- * Whether the tax ID passed validation.
42
- * @type {boolean}
43
- * @memberof SubscriptionCompanyTaxIdDto
44
- */
45
- readonly isValid?: boolean | null;
46
40
  }
47
41
 
48
42
  /**
@@ -68,7 +62,6 @@ export function SubscriptionCompanyTaxIdDtoFromJSONTyped(json: any, ignoreDiscri
68
62
  'value': json['value'],
69
63
  'type': json['type'],
70
64
  'countryCode': json['countryCode'],
71
- 'isValid': json['isValid'] == null ? undefined : json['isValid'],
72
65
  };
73
66
  }
74
67
 
@@ -76,7 +69,7 @@ export function SubscriptionCompanyTaxIdDtoToJSON(json: any): SubscriptionCompan
76
69
  return SubscriptionCompanyTaxIdDtoToJSONTyped(json, false);
77
70
  }
78
71
 
79
- export function SubscriptionCompanyTaxIdDtoToJSONTyped(value?: Omit<SubscriptionCompanyTaxIdDto, 'isValid'> | null, ignoreDiscriminator: boolean = false): any {
72
+ export function SubscriptionCompanyTaxIdDtoToJSONTyped(value?: SubscriptionCompanyTaxIdDto | null, ignoreDiscriminator: boolean = false): any {
80
73
  if (value == null) {
81
74
  return value;
82
75
  }
@@ -111,12 +111,6 @@ export interface UpdateOrderInput {
111
111
  * @memberof UpdateOrderInput
112
112
  */
113
113
  forceValidateVatId?: boolean;
114
- /**
115
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
116
- * @type {boolean}
117
- * @memberof UpdateOrderInput
118
- */
119
- payAction?: boolean;
120
114
  }
121
115
 
122
116
  /**
@@ -150,7 +144,6 @@ export function UpdateOrderInputFromJSONTyped(json: any, ignoreDiscriminator: bo
150
144
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
151
145
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
152
146
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
153
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
154
147
  };
155
148
  }
156
149
 
@@ -179,7 +172,6 @@ export function UpdateOrderInputToJSONTyped(value?: UpdateOrderInput | null, ign
179
172
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
180
173
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
181
174
  'forceValidateVatId': value['forceValidateVatId'],
182
- 'payAction': value['payAction'],
183
175
  };
184
176
  }
185
177
 
@@ -130,12 +130,6 @@ export interface UpdateSubscriptionInput {
130
130
  * @memberof UpdateSubscriptionInput
131
131
  */
132
132
  forceValidateVatId?: boolean;
133
- /**
134
- * When true, invalid VAT ID validation errors are treated as blocking (throws). When omitted/false, invalid VAT is stored as validated=false and the update continues.
135
- * @type {boolean}
136
- * @memberof UpdateSubscriptionInput
137
- */
138
- payAction?: boolean;
139
133
  }
140
134
 
141
135
  /**
@@ -171,7 +165,6 @@ export function UpdateSubscriptionInputFromJSONTyped(json: any, ignoreDiscrimina
171
165
  'selfDeclaredTaxCountry': json['selfDeclaredTaxCountry'] == null ? undefined : json['selfDeclaredTaxCountry'],
172
166
  'forceUpdatePaymentMethods': json['forceUpdatePaymentMethods'] == null ? undefined : json['forceUpdatePaymentMethods'],
173
167
  'forceValidateVatId': json['forceValidateVatId'] == null ? undefined : json['forceValidateVatId'],
174
- 'payAction': json['payAction'] == null ? undefined : json['payAction'],
175
168
  };
176
169
  }
177
170
 
@@ -202,7 +195,6 @@ export function UpdateSubscriptionInputToJSONTyped(value?: UpdateSubscriptionInp
202
195
  'selfDeclaredTaxCountry': value['selfDeclaredTaxCountry'],
203
196
  'forceUpdatePaymentMethods': value['forceUpdatePaymentMethods'],
204
197
  'forceValidateVatId': value['forceValidateVatId'],
205
- 'payAction': value['payAction'],
206
198
  };
207
199
  }
208
200