@randock/nameshift-api-client 0.0.130 → 0.0.131
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.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.131
|
|
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.131 --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
|
+
4abd2df55d1604278000378610d1e41dd9ddbfc25e2590f687d9de83f8afc117497acd726e628ae1010c7f4f8fe2e45b
|
|
@@ -35,6 +35,12 @@ export interface DomainTransferDetailWorkflowStepDto {
|
|
|
35
35
|
* @memberof DomainTransferDetailWorkflowStepDto
|
|
36
36
|
*/
|
|
37
37
|
name: string;
|
|
38
|
+
/**
|
|
39
|
+
* The domain transfer workflow step error reason
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof DomainTransferDetailWorkflowStepDto
|
|
42
|
+
*/
|
|
43
|
+
errorReason: string | null;
|
|
38
44
|
/**
|
|
39
45
|
* The domain transfer workflow step created at
|
|
40
46
|
* @type {Date}
|
|
@@ -67,6 +73,7 @@ export declare const DomainTransferDetailWorkflowStepDtoStatusEnum: {
|
|
|
67
73
|
readonly PENDING: "pending";
|
|
68
74
|
readonly FINISHED: "finished";
|
|
69
75
|
readonly WAITING_INTERACTION: "waitingInteraction";
|
|
76
|
+
readonly ERROR: "error";
|
|
70
77
|
};
|
|
71
78
|
export type DomainTransferDetailWorkflowStepDtoStatusEnum = typeof DomainTransferDetailWorkflowStepDtoStatusEnum[keyof typeof DomainTransferDetailWorkflowStepDtoStatusEnum];
|
|
72
79
|
/**
|
|
@@ -27,7 +27,8 @@ var DomainTransferDetailsValidationDto_1 = require("./DomainTransferDetailsValid
|
|
|
27
27
|
exports.DomainTransferDetailWorkflowStepDtoStatusEnum = {
|
|
28
28
|
PENDING: 'pending',
|
|
29
29
|
FINISHED: 'finished',
|
|
30
|
-
WAITING_INTERACTION: 'waitingInteraction'
|
|
30
|
+
WAITING_INTERACTION: 'waitingInteraction',
|
|
31
|
+
ERROR: 'error'
|
|
31
32
|
};
|
|
32
33
|
/**
|
|
33
34
|
* Check if a given object implements the DomainTransferDetailWorkflowStepDto interface.
|
|
@@ -39,6 +40,8 @@ function instanceOfDomainTransferDetailWorkflowStepDto(value) {
|
|
|
39
40
|
return false;
|
|
40
41
|
if (!('name' in value) || value['name'] === undefined)
|
|
41
42
|
return false;
|
|
43
|
+
if (!('errorReason' in value) || value['errorReason'] === undefined)
|
|
44
|
+
return false;
|
|
42
45
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
43
46
|
return false;
|
|
44
47
|
if (!('requirements' in value) || value['requirements'] === undefined)
|
|
@@ -60,6 +63,7 @@ function DomainTransferDetailWorkflowStepDtoFromJSONTyped(json, ignoreDiscrimina
|
|
|
60
63
|
'status': json['status'],
|
|
61
64
|
'id': json['id'],
|
|
62
65
|
'name': json['name'],
|
|
66
|
+
'errorReason': json['errorReason'],
|
|
63
67
|
'createdAt': (new Date(json['createdAt'])),
|
|
64
68
|
'requirements': json['requirements'],
|
|
65
69
|
'actions': (json['actions'].map(DomainTransferDetailWorkflowStepActionDto_1.DomainTransferDetailWorkflowStepActionDtoFromJSON)),
|
|
@@ -78,6 +82,7 @@ function DomainTransferDetailWorkflowStepDtoToJSONTyped(value, ignoreDiscriminat
|
|
|
78
82
|
'status': value['status'],
|
|
79
83
|
'id': value['id'],
|
|
80
84
|
'name': value['name'],
|
|
85
|
+
'errorReason': value['errorReason'],
|
|
81
86
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
82
87
|
'requirements': value['requirements'],
|
|
83
88
|
'actions': (value['actions'].map(DomainTransferDetailWorkflowStepActionDto_1.DomainTransferDetailWorkflowStepActionDtoToJSON)),
|
package/package.json
CHANGED
|
@@ -52,6 +52,12 @@ export interface DomainTransferDetailWorkflowStepDto {
|
|
|
52
52
|
* @memberof DomainTransferDetailWorkflowStepDto
|
|
53
53
|
*/
|
|
54
54
|
name: string;
|
|
55
|
+
/**
|
|
56
|
+
* The domain transfer workflow step error reason
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof DomainTransferDetailWorkflowStepDto
|
|
59
|
+
*/
|
|
60
|
+
errorReason: string | null;
|
|
55
61
|
/**
|
|
56
62
|
* The domain transfer workflow step created at
|
|
57
63
|
* @type {Date}
|
|
@@ -85,7 +91,8 @@ export interface DomainTransferDetailWorkflowStepDto {
|
|
|
85
91
|
export const DomainTransferDetailWorkflowStepDtoStatusEnum = {
|
|
86
92
|
PENDING: 'pending',
|
|
87
93
|
FINISHED: 'finished',
|
|
88
|
-
WAITING_INTERACTION: 'waitingInteraction'
|
|
94
|
+
WAITING_INTERACTION: 'waitingInteraction',
|
|
95
|
+
ERROR: 'error'
|
|
89
96
|
} as const;
|
|
90
97
|
export type DomainTransferDetailWorkflowStepDtoStatusEnum = typeof DomainTransferDetailWorkflowStepDtoStatusEnum[keyof typeof DomainTransferDetailWorkflowStepDtoStatusEnum];
|
|
91
98
|
|
|
@@ -97,6 +104,7 @@ export function instanceOfDomainTransferDetailWorkflowStepDto(value: object): va
|
|
|
97
104
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
98
105
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
99
106
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
107
|
+
if (!('errorReason' in value) || value['errorReason'] === undefined) return false;
|
|
100
108
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
101
109
|
if (!('requirements' in value) || value['requirements'] === undefined) return false;
|
|
102
110
|
if (!('actions' in value) || value['actions'] === undefined) return false;
|
|
@@ -117,6 +125,7 @@ export function DomainTransferDetailWorkflowStepDtoFromJSONTyped(json: any, igno
|
|
|
117
125
|
'status': json['status'],
|
|
118
126
|
'id': json['id'],
|
|
119
127
|
'name': json['name'],
|
|
128
|
+
'errorReason': json['errorReason'],
|
|
120
129
|
'createdAt': (new Date(json['createdAt'])),
|
|
121
130
|
'requirements': json['requirements'],
|
|
122
131
|
'actions': ((json['actions'] as Array<any>).map(DomainTransferDetailWorkflowStepActionDtoFromJSON)),
|
|
@@ -138,6 +147,7 @@ export function DomainTransferDetailWorkflowStepDtoFromJSONTyped(json: any, igno
|
|
|
138
147
|
'status': value['status'],
|
|
139
148
|
'id': value['id'],
|
|
140
149
|
'name': value['name'],
|
|
150
|
+
'errorReason': value['errorReason'],
|
|
141
151
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
142
152
|
'requirements': value['requirements'],
|
|
143
153
|
'actions': ((value['actions'] as Array<any>).map(DomainTransferDetailWorkflowStepActionDtoToJSON)),
|