@randock/nameshift-api-client 0.0.438 → 0.0.439
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/SubscriptionDetailsDto.d.ts +1 -0
- package/dist/models/SubscriptionDetailsDto.js +2 -1
- package/dist/models/SubscriptionListItemDto.d.ts +1 -0
- package/dist/models/SubscriptionListItemDto.js +2 -1
- package/package.json +1 -1
- package/src/models/SubscriptionDetailsDto.ts +2 -1
- package/src/models/SubscriptionListItemDto.ts +2 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.439
|
|
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.439 --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
|
+
52670249d4cb5cc17deebcee3d4a76975352dddd0c7bb60e56dfdbb76320d22089fe17011e449cf4e7e0804afd41d024
|
|
@@ -287,6 +287,7 @@ export type SubscriptionDetailsDtoRenewStatusEnum = typeof SubscriptionDetailsDt
|
|
|
287
287
|
export declare const SubscriptionDetailsDtoRenewStatusReasonEnum: {
|
|
288
288
|
readonly IMPOSSIBLE_TO_PAY: "impossible_to_pay";
|
|
289
289
|
readonly REQUIRE_RETRY: "require_retry";
|
|
290
|
+
readonly INVALID_VAT_NUMBER: "invalid_vat_number";
|
|
290
291
|
};
|
|
291
292
|
export type SubscriptionDetailsDtoRenewStatusReasonEnum = typeof SubscriptionDetailsDtoRenewStatusReasonEnum[keyof typeof SubscriptionDetailsDtoRenewStatusReasonEnum];
|
|
292
293
|
/**
|
|
@@ -58,7 +58,8 @@ exports.SubscriptionDetailsDtoRenewStatusEnum = {
|
|
|
58
58
|
*/
|
|
59
59
|
exports.SubscriptionDetailsDtoRenewStatusReasonEnum = {
|
|
60
60
|
IMPOSSIBLE_TO_PAY: 'impossible_to_pay',
|
|
61
|
-
REQUIRE_RETRY: 'require_retry'
|
|
61
|
+
REQUIRE_RETRY: 'require_retry',
|
|
62
|
+
INVALID_VAT_NUMBER: 'invalid_vat_number'
|
|
62
63
|
};
|
|
63
64
|
/**
|
|
64
65
|
* @export
|
|
@@ -269,6 +269,7 @@ export type SubscriptionListItemDtoRenewStatusEnum = typeof SubscriptionListItem
|
|
|
269
269
|
export declare const SubscriptionListItemDtoRenewStatusReasonEnum: {
|
|
270
270
|
readonly IMPOSSIBLE_TO_PAY: "impossible_to_pay";
|
|
271
271
|
readonly REQUIRE_RETRY: "require_retry";
|
|
272
|
+
readonly INVALID_VAT_NUMBER: "invalid_vat_number";
|
|
272
273
|
};
|
|
273
274
|
export type SubscriptionListItemDtoRenewStatusReasonEnum = typeof SubscriptionListItemDtoRenewStatusReasonEnum[keyof typeof SubscriptionListItemDtoRenewStatusReasonEnum];
|
|
274
275
|
/**
|
|
@@ -63,7 +63,8 @@ exports.SubscriptionListItemDtoRenewStatusEnum = {
|
|
|
63
63
|
*/
|
|
64
64
|
exports.SubscriptionListItemDtoRenewStatusReasonEnum = {
|
|
65
65
|
IMPOSSIBLE_TO_PAY: 'impossible_to_pay',
|
|
66
|
-
REQUIRE_RETRY: 'require_retry'
|
|
66
|
+
REQUIRE_RETRY: 'require_retry',
|
|
67
|
+
INVALID_VAT_NUMBER: 'invalid_vat_number'
|
|
67
68
|
};
|
|
68
69
|
/**
|
|
69
70
|
* @export
|
package/package.json
CHANGED
|
@@ -350,7 +350,8 @@ export type SubscriptionDetailsDtoRenewStatusEnum = typeof SubscriptionDetailsDt
|
|
|
350
350
|
*/
|
|
351
351
|
export const SubscriptionDetailsDtoRenewStatusReasonEnum = {
|
|
352
352
|
IMPOSSIBLE_TO_PAY: 'impossible_to_pay',
|
|
353
|
-
REQUIRE_RETRY: 'require_retry'
|
|
353
|
+
REQUIRE_RETRY: 'require_retry',
|
|
354
|
+
INVALID_VAT_NUMBER: 'invalid_vat_number'
|
|
354
355
|
} as const;
|
|
355
356
|
export type SubscriptionDetailsDtoRenewStatusReasonEnum = typeof SubscriptionDetailsDtoRenewStatusReasonEnum[keyof typeof SubscriptionDetailsDtoRenewStatusReasonEnum];
|
|
356
357
|
|
|
@@ -321,7 +321,8 @@ export type SubscriptionListItemDtoRenewStatusEnum = typeof SubscriptionListItem
|
|
|
321
321
|
*/
|
|
322
322
|
export const SubscriptionListItemDtoRenewStatusReasonEnum = {
|
|
323
323
|
IMPOSSIBLE_TO_PAY: 'impossible_to_pay',
|
|
324
|
-
REQUIRE_RETRY: 'require_retry'
|
|
324
|
+
REQUIRE_RETRY: 'require_retry',
|
|
325
|
+
INVALID_VAT_NUMBER: 'invalid_vat_number'
|
|
325
326
|
} as const;
|
|
326
327
|
export type SubscriptionListItemDtoRenewStatusReasonEnum = typeof SubscriptionListItemDtoRenewStatusReasonEnum[keyof typeof SubscriptionListItemDtoRenewStatusReasonEnum];
|
|
327
328
|
|