@randock/nameshift-api-client 0.0.390 → 0.0.391
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.391
|
|
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.391 --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
|
+
a6a5cb195c553c99861689cc42d8a88e46c3389f243a1807427ff7715524f1e336a3bf2b8b0224a6d759a385e90ae956
|
|
@@ -40,6 +40,12 @@ export interface BuyerDomainTransferListItemDto {
|
|
|
40
40
|
* @memberof BuyerDomainTransferListItemDto
|
|
41
41
|
*/
|
|
42
42
|
requirements: object;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof BuyerDomainTransferListItemDto
|
|
47
|
+
*/
|
|
48
|
+
invoiceId: string;
|
|
43
49
|
/**
|
|
44
50
|
* The buyer domain transfer ID
|
|
45
51
|
* @type {object}
|
|
@@ -70,6 +76,12 @@ export interface BuyerDomainTransferListItemDto {
|
|
|
70
76
|
* @memberof BuyerDomainTransferListItemDto
|
|
71
77
|
*/
|
|
72
78
|
isOfferExpired: boolean;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof BuyerDomainTransferListItemDto
|
|
83
|
+
*/
|
|
84
|
+
invoiceNumber: string | null;
|
|
73
85
|
}
|
|
74
86
|
/**
|
|
75
87
|
* @export
|
|
@@ -52,6 +52,8 @@ function instanceOfBuyerDomainTransferListItemDto(value) {
|
|
|
52
52
|
return false;
|
|
53
53
|
if (!('requirements' in value) || value['requirements'] === undefined)
|
|
54
54
|
return false;
|
|
55
|
+
if (!('invoiceId' in value) || value['invoiceId'] === undefined)
|
|
56
|
+
return false;
|
|
55
57
|
if (!('domainTransferId' in value) || value['domainTransferId'] === undefined)
|
|
56
58
|
return false;
|
|
57
59
|
if (!('domain' in value) || value['domain'] === undefined)
|
|
@@ -62,6 +64,8 @@ function instanceOfBuyerDomainTransferListItemDto(value) {
|
|
|
62
64
|
return false;
|
|
63
65
|
if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined)
|
|
64
66
|
return false;
|
|
67
|
+
if (!('invoiceNumber' in value) || value['invoiceNumber'] === undefined)
|
|
68
|
+
return false;
|
|
65
69
|
return true;
|
|
66
70
|
}
|
|
67
71
|
function BuyerDomainTransferListItemDtoFromJSON(json) {
|
|
@@ -76,11 +80,13 @@ function BuyerDomainTransferListItemDtoFromJSONTyped(json, ignoreDiscriminator)
|
|
|
76
80
|
'invoiceStatus': json['invoiceStatus'],
|
|
77
81
|
'domainTransferStatus': json['domainTransferStatus'],
|
|
78
82
|
'requirements': json['requirements'],
|
|
83
|
+
'invoiceId': json['invoiceId'],
|
|
79
84
|
'domainTransferId': json['domainTransferId'],
|
|
80
85
|
'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoFromJSON)(json['domain']),
|
|
81
86
|
'createdAt': (new Date(json['createdAt'])),
|
|
82
87
|
'ipsTag': json['ipsTag'],
|
|
83
88
|
'isOfferExpired': json['isOfferExpired'],
|
|
89
|
+
'invoiceNumber': json['invoiceNumber'],
|
|
84
90
|
};
|
|
85
91
|
}
|
|
86
92
|
function BuyerDomainTransferListItemDtoToJSON(json) {
|
|
@@ -96,10 +102,12 @@ function BuyerDomainTransferListItemDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
96
102
|
'invoiceStatus': value['invoiceStatus'],
|
|
97
103
|
'domainTransferStatus': value['domainTransferStatus'],
|
|
98
104
|
'requirements': value['requirements'],
|
|
105
|
+
'invoiceId': value['invoiceId'],
|
|
99
106
|
'domainTransferId': value['domainTransferId'],
|
|
100
107
|
'domain': (0, BuyerDomainTransferListItemDomainDto_1.BuyerDomainTransferListItemDomainDtoToJSON)(value['domain']),
|
|
101
108
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
102
109
|
'ipsTag': value['ipsTag'],
|
|
103
110
|
'isOfferExpired': value['isOfferExpired'],
|
|
111
|
+
'invoiceNumber': value['invoiceNumber'],
|
|
104
112
|
};
|
|
105
113
|
}
|
package/package.json
CHANGED
|
@@ -51,6 +51,12 @@ export interface BuyerDomainTransferListItemDto {
|
|
|
51
51
|
* @memberof BuyerDomainTransferListItemDto
|
|
52
52
|
*/
|
|
53
53
|
requirements: object;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BuyerDomainTransferListItemDto
|
|
58
|
+
*/
|
|
59
|
+
invoiceId: string;
|
|
54
60
|
/**
|
|
55
61
|
* The buyer domain transfer ID
|
|
56
62
|
* @type {object}
|
|
@@ -81,6 +87,12 @@ export interface BuyerDomainTransferListItemDto {
|
|
|
81
87
|
* @memberof BuyerDomainTransferListItemDto
|
|
82
88
|
*/
|
|
83
89
|
isOfferExpired: boolean;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof BuyerDomainTransferListItemDto
|
|
94
|
+
*/
|
|
95
|
+
invoiceNumber: string | null;
|
|
84
96
|
}
|
|
85
97
|
|
|
86
98
|
|
|
@@ -117,11 +129,13 @@ export function instanceOfBuyerDomainTransferListItemDto(value: object): value i
|
|
|
117
129
|
if (!('invoiceStatus' in value) || value['invoiceStatus'] === undefined) return false;
|
|
118
130
|
if (!('domainTransferStatus' in value) || value['domainTransferStatus'] === undefined) return false;
|
|
119
131
|
if (!('requirements' in value) || value['requirements'] === undefined) return false;
|
|
132
|
+
if (!('invoiceId' in value) || value['invoiceId'] === undefined) return false;
|
|
120
133
|
if (!('domainTransferId' in value) || value['domainTransferId'] === undefined) return false;
|
|
121
134
|
if (!('domain' in value) || value['domain'] === undefined) return false;
|
|
122
135
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
123
136
|
if (!('ipsTag' in value) || value['ipsTag'] === undefined) return false;
|
|
124
137
|
if (!('isOfferExpired' in value) || value['isOfferExpired'] === undefined) return false;
|
|
138
|
+
if (!('invoiceNumber' in value) || value['invoiceNumber'] === undefined) return false;
|
|
125
139
|
return true;
|
|
126
140
|
}
|
|
127
141
|
|
|
@@ -139,11 +153,13 @@ export function BuyerDomainTransferListItemDtoFromJSONTyped(json: any, ignoreDis
|
|
|
139
153
|
'invoiceStatus': json['invoiceStatus'],
|
|
140
154
|
'domainTransferStatus': json['domainTransferStatus'],
|
|
141
155
|
'requirements': json['requirements'],
|
|
156
|
+
'invoiceId': json['invoiceId'],
|
|
142
157
|
'domainTransferId': json['domainTransferId'],
|
|
143
158
|
'domain': BuyerDomainTransferListItemDomainDtoFromJSON(json['domain']),
|
|
144
159
|
'createdAt': (new Date(json['createdAt'])),
|
|
145
160
|
'ipsTag': json['ipsTag'],
|
|
146
161
|
'isOfferExpired': json['isOfferExpired'],
|
|
162
|
+
'invoiceNumber': json['invoiceNumber'],
|
|
147
163
|
};
|
|
148
164
|
}
|
|
149
165
|
|
|
@@ -162,11 +178,13 @@ export function BuyerDomainTransferListItemDtoToJSONTyped(value?: BuyerDomainTra
|
|
|
162
178
|
'invoiceStatus': value['invoiceStatus'],
|
|
163
179
|
'domainTransferStatus': value['domainTransferStatus'],
|
|
164
180
|
'requirements': value['requirements'],
|
|
181
|
+
'invoiceId': value['invoiceId'],
|
|
165
182
|
'domainTransferId': value['domainTransferId'],
|
|
166
183
|
'domain': BuyerDomainTransferListItemDomainDtoToJSON(value['domain']),
|
|
167
184
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
168
185
|
'ipsTag': value['ipsTag'],
|
|
169
186
|
'isOfferExpired': value['isOfferExpired'],
|
|
187
|
+
'invoiceNumber': value['invoiceNumber'],
|
|
170
188
|
};
|
|
171
189
|
}
|
|
172
190
|
|