@randock/nameshift-api-client 0.0.456 → 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 +3 -3
- package/dist/models/CreateOrderInput.d.ts +0 -6
- package/dist/models/CreateOrderInput.js +0 -2
- package/dist/models/CreateSubscriptionInput.d.ts +0 -6
- package/dist/models/CreateSubscriptionInput.js +0 -2
- package/dist/models/OrderCompanyTaxIdDto.d.ts +1 -7
- package/dist/models/OrderCompanyTaxIdDto.js +0 -1
- package/dist/models/SubscriptionCompanyTaxIdDto.d.ts +1 -7
- package/dist/models/SubscriptionCompanyTaxIdDto.js +0 -1
- package/dist/models/UpdateOrderInput.d.ts +0 -6
- package/dist/models/UpdateOrderInput.js +0 -2
- package/dist/models/UpdateSubscriptionInput.d.ts +0 -6
- package/dist/models/UpdateSubscriptionInput.js +0 -2
- package/package.json +1 -1
- package/src/models/CreateOrderInput.ts +0 -8
- package/src/models/CreateSubscriptionInput.ts +0 -8
- package/src/models/OrderCompanyTaxIdDto.ts +1 -8
- package/src/models/SubscriptionCompanyTaxIdDto.ts +1 -8
- package/src/models/UpdateOrderInput.ts +0 -8
- package/src/models/UpdateSubscriptionInput.ts +0 -8
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
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.
|
|
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
|
-
|
|
47
|
+
1e7ddcd162f261d25d71c0a77b773476499f6899669342ef74664cce9bcdc4fc8bb64cdd383965224169ca3d505320f3
|
|
@@ -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?:
|
|
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?:
|
|
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
|
@@ -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?:
|
|
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?:
|
|
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
|
|