@randock/nameshift-api-client 0.0.455 → 0.0.457

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.455
1
+ ## @randock/nameshift-api-client@0.0.457
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.455 --save
39
+ npm install @randock/nameshift-api-client@0.0.457 --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
- e00f04d5045aa291525532755871ef2fa554e6641bf016fc32c99f094629535f40c630c15dd8f09551ca109e23e73ba0
47
+ 1e7ddcd162f261d25d71c0a77b773476499f6899669342ef74664cce9bcdc4fc8bb64cdd383965224169ca3d505320f3
@@ -23,6 +23,7 @@ export interface DomainsApiBatchUpdateRequest {
23
23
  }
24
24
  export interface DomainsApiBulkUpdateDomainsWithFiltersRequest {
25
25
  bulkUpdateDomainsWithFiltersInput: BulkUpdateDomainsWithFiltersInput;
26
+ searchFilter?: string;
26
27
  filter?: object;
27
28
  }
28
29
  export interface DomainsApiCheckDnsRequest {
@@ -57,6 +58,7 @@ export interface DomainsApiGetDomainExchangeRateRequest {
57
58
  domainId: string;
58
59
  }
59
60
  export interface DomainsApiGetDomainFiltersCurrenciesRequest {
61
+ searchFilter?: string;
60
62
  filter?: object;
61
63
  }
62
64
  export interface DomainsApiGetDomainTransferRequest {
@@ -311,6 +311,9 @@ var DomainsApi = /** @class */ (function (_super) {
311
311
  throw new runtime.RequiredError('bulkUpdateDomainsWithFiltersInput', 'Required parameter "bulkUpdateDomainsWithFiltersInput" was null or undefined when calling bulkUpdateDomainsWithFilters().');
312
312
  }
313
313
  queryParameters = {};
314
+ if (requestParameters['searchFilter'] != null) {
315
+ queryParameters['searchFilter'] = requestParameters['searchFilter'];
316
+ }
314
317
  if (requestParameters['filter'] != null) {
315
318
  queryParameters['filter'] = requestParameters['filter'];
316
319
  }
@@ -1013,6 +1016,9 @@ var DomainsApi = /** @class */ (function (_super) {
1013
1016
  switch (_c.label) {
1014
1017
  case 0:
1015
1018
  queryParameters = {};
1019
+ if (requestParameters['searchFilter'] != null) {
1020
+ queryParameters['searchFilter'] = requestParameters['searchFilter'];
1021
+ }
1016
1022
  if (requestParameters['filter'] != null) {
1017
1023
  queryParameters['filter'] = requestParameters['filter'];
1018
1024
  }
@@ -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'],
@@ -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.455",
3
+ "version": "0.0.457",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -103,6 +103,7 @@ export interface DomainsApiBatchUpdateRequest {
103
103
 
104
104
  export interface DomainsApiBulkUpdateDomainsWithFiltersRequest {
105
105
  bulkUpdateDomainsWithFiltersInput: BulkUpdateDomainsWithFiltersInput;
106
+ searchFilter?: string;
106
107
  filter?: object;
107
108
  }
108
109
 
@@ -144,6 +145,7 @@ export interface DomainsApiGetDomainExchangeRateRequest {
144
145
  }
145
146
 
146
147
  export interface DomainsApiGetDomainFiltersCurrenciesRequest {
148
+ searchFilter?: string;
147
149
  filter?: object;
148
150
  }
149
151
 
@@ -387,6 +389,10 @@ export class DomainsApi extends runtime.BaseAPI {
387
389
 
388
390
  const queryParameters: any = {};
389
391
 
392
+ if (requestParameters['searchFilter'] != null) {
393
+ queryParameters['searchFilter'] = requestParameters['searchFilter'];
394
+ }
395
+
390
396
  if (requestParameters['filter'] != null) {
391
397
  queryParameters['filter'] = requestParameters['filter'];
392
398
  }
@@ -912,6 +918,10 @@ export class DomainsApi extends runtime.BaseAPI {
912
918
  async getDomainFiltersCurrenciesRaw(requestParameters: DomainsApiGetDomainFiltersCurrenciesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<string>>> {
913
919
  const queryParameters: any = {};
914
920
 
921
+ if (requestParameters['searchFilter'] != null) {
922
+ queryParameters['searchFilter'] = requestParameters['searchFilter'];
923
+ }
924
+
915
925
  if (requestParameters['filter'] != null) {
916
926
  queryParameters['filter'] = requestParameters['filter'];
917
927
  }
@@ -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'],
@@ -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