@randock/nameshift-api-client 0.0.194 → 0.0.196
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/.openapi-generator/VERSION +1 -1
- package/README.md +3 -3
- package/dist/models/ConcreteDomainTransferTaskData.d.ts +1 -0
- package/dist/models/ConcreteDomainTransferTaskData.js +2 -1
- package/dist/models/DomainTransferDetailsWorkflowDto.d.ts +2 -0
- package/dist/models/DomainTransferDetailsWorkflowDto.js +3 -1
- package/dist/models/DomainTransferWorkflowDto.d.ts +2 -0
- package/dist/models/DomainTransferWorkflowDto.js +3 -1
- package/package.json +1 -1
- package/src/models/ConcreteDomainTransferTaskData.ts +2 -1
- package/src/models/DomainTransferDetailsWorkflowDto.ts +3 -1
- package/src/models/DomainTransferWorkflowDto.ts +3 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
7.
|
|
1
|
+
7.12.0-SNAPSHOT
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.196
|
|
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.196 --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
|
+
e256131b225c6a01b0c0b12451665af08c1b127610d7557961d1fe17eca388a177bfe67dd3fc818befaa65946cd742fd
|
|
@@ -30,6 +30,7 @@ export declare const ConcreteDomainTransferTaskDataRequirementsEnum: {
|
|
|
30
30
|
readonly BUYER_CONFIRMATION: "buyer_confirmation";
|
|
31
31
|
readonly OWNED_DOMAIN: "owned_domain";
|
|
32
32
|
readonly OWNED_DOMAIN_TAKEN_BY_BUYER: "owned_domain_taken_by_buyer";
|
|
33
|
+
readonly OWNED_DOMAIN_TAKEN_BY_SELLER: "owned_domain_taken_by_seller";
|
|
33
34
|
};
|
|
34
35
|
export type ConcreteDomainTransferTaskDataRequirementsEnum = typeof ConcreteDomainTransferTaskDataRequirementsEnum[keyof typeof ConcreteDomainTransferTaskDataRequirementsEnum];
|
|
35
36
|
/**
|
|
@@ -26,7 +26,8 @@ exports.ConcreteDomainTransferTaskDataRequirementsEnum = {
|
|
|
26
26
|
AUTH_CODE: 'auth_code',
|
|
27
27
|
BUYER_CONFIRMATION: 'buyer_confirmation',
|
|
28
28
|
OWNED_DOMAIN: 'owned_domain',
|
|
29
|
-
OWNED_DOMAIN_TAKEN_BY_BUYER: 'owned_domain_taken_by_buyer'
|
|
29
|
+
OWNED_DOMAIN_TAKEN_BY_BUYER: 'owned_domain_taken_by_buyer',
|
|
30
|
+
OWNED_DOMAIN_TAKEN_BY_SELLER: 'owned_domain_taken_by_seller'
|
|
30
31
|
};
|
|
31
32
|
/**
|
|
32
33
|
* Check if a given object implements the ConcreteDomainTransferTaskData interface.
|
|
@@ -35,6 +35,8 @@ export interface DomainTransferDetailsWorkflowDto {
|
|
|
35
35
|
export declare const DomainTransferDetailsWorkflowDtoPathEnum: {
|
|
36
36
|
readonly DIRECT: "direct";
|
|
37
37
|
readonly INTERMEDIARY: "intermediary";
|
|
38
|
+
readonly MANUAL: "manual";
|
|
39
|
+
readonly AUTO: "auto";
|
|
38
40
|
};
|
|
39
41
|
export type DomainTransferDetailsWorkflowDtoPathEnum = typeof DomainTransferDetailsWorkflowDtoPathEnum[keyof typeof DomainTransferDetailsWorkflowDtoPathEnum];
|
|
40
42
|
/**
|
|
@@ -25,7 +25,9 @@ var DomainTransferDetailWorkflowStepDto_1 = require("./DomainTransferDetailWorkf
|
|
|
25
25
|
*/
|
|
26
26
|
exports.DomainTransferDetailsWorkflowDtoPathEnum = {
|
|
27
27
|
DIRECT: 'direct',
|
|
28
|
-
INTERMEDIARY: 'intermediary'
|
|
28
|
+
INTERMEDIARY: 'intermediary',
|
|
29
|
+
MANUAL: 'manual',
|
|
30
|
+
AUTO: 'auto'
|
|
29
31
|
};
|
|
30
32
|
/**
|
|
31
33
|
* Check if a given object implements the DomainTransferDetailsWorkflowDto interface.
|
|
@@ -28,6 +28,8 @@ export interface DomainTransferWorkflowDto {
|
|
|
28
28
|
export declare const DomainTransferWorkflowDtoPathEnum: {
|
|
29
29
|
readonly DIRECT: "direct";
|
|
30
30
|
readonly INTERMEDIARY: "intermediary";
|
|
31
|
+
readonly MANUAL: "manual";
|
|
32
|
+
readonly AUTO: "auto";
|
|
31
33
|
};
|
|
32
34
|
export type DomainTransferWorkflowDtoPathEnum = typeof DomainTransferWorkflowDtoPathEnum[keyof typeof DomainTransferWorkflowDtoPathEnum];
|
|
33
35
|
/**
|
|
@@ -24,7 +24,9 @@ exports.DomainTransferWorkflowDtoToJSONTyped = DomainTransferWorkflowDtoToJSONTy
|
|
|
24
24
|
*/
|
|
25
25
|
exports.DomainTransferWorkflowDtoPathEnum = {
|
|
26
26
|
DIRECT: 'direct',
|
|
27
|
-
INTERMEDIARY: 'intermediary'
|
|
27
|
+
INTERMEDIARY: 'intermediary',
|
|
28
|
+
MANUAL: 'manual',
|
|
29
|
+
AUTO: 'auto'
|
|
28
30
|
};
|
|
29
31
|
/**
|
|
30
32
|
* Check if a given object implements the DomainTransferWorkflowDto interface.
|
package/package.json
CHANGED
|
@@ -35,7 +35,8 @@ export const ConcreteDomainTransferTaskDataRequirementsEnum = {
|
|
|
35
35
|
AUTH_CODE: 'auth_code',
|
|
36
36
|
BUYER_CONFIRMATION: 'buyer_confirmation',
|
|
37
37
|
OWNED_DOMAIN: 'owned_domain',
|
|
38
|
-
OWNED_DOMAIN_TAKEN_BY_BUYER: 'owned_domain_taken_by_buyer'
|
|
38
|
+
OWNED_DOMAIN_TAKEN_BY_BUYER: 'owned_domain_taken_by_buyer',
|
|
39
|
+
OWNED_DOMAIN_TAKEN_BY_SELLER: 'owned_domain_taken_by_seller'
|
|
39
40
|
} as const;
|
|
40
41
|
export type ConcreteDomainTransferTaskDataRequirementsEnum = typeof ConcreteDomainTransferTaskDataRequirementsEnum[keyof typeof ConcreteDomainTransferTaskDataRequirementsEnum];
|
|
41
42
|
|
|
@@ -47,7 +47,9 @@ export interface DomainTransferDetailsWorkflowDto {
|
|
|
47
47
|
*/
|
|
48
48
|
export const DomainTransferDetailsWorkflowDtoPathEnum = {
|
|
49
49
|
DIRECT: 'direct',
|
|
50
|
-
INTERMEDIARY: 'intermediary'
|
|
50
|
+
INTERMEDIARY: 'intermediary',
|
|
51
|
+
MANUAL: 'manual',
|
|
52
|
+
AUTO: 'auto'
|
|
51
53
|
} as const;
|
|
52
54
|
export type DomainTransferDetailsWorkflowDtoPathEnum = typeof DomainTransferDetailsWorkflowDtoPathEnum[keyof typeof DomainTransferDetailsWorkflowDtoPathEnum];
|
|
53
55
|
|
|
@@ -33,7 +33,9 @@ export interface DomainTransferWorkflowDto {
|
|
|
33
33
|
*/
|
|
34
34
|
export const DomainTransferWorkflowDtoPathEnum = {
|
|
35
35
|
DIRECT: 'direct',
|
|
36
|
-
INTERMEDIARY: 'intermediary'
|
|
36
|
+
INTERMEDIARY: 'intermediary',
|
|
37
|
+
MANUAL: 'manual',
|
|
38
|
+
AUTO: 'auto'
|
|
37
39
|
} as const;
|
|
38
40
|
export type DomainTransferWorkflowDtoPathEnum = typeof DomainTransferWorkflowDtoPathEnum[keyof typeof DomainTransferWorkflowDtoPathEnum];
|
|
39
41
|
|