@randock/nameshift-api-client 0.0.361 → 0.0.362
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.362
|
|
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.362 --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
|
+
0e0877d67cf4c5a3691fe94ec5e6dbf74252e552b57cd58f19e0dce99b0f8e877666eb019e3cd12674359bd833149027
|
|
@@ -123,6 +123,12 @@ export interface DomainSalesInformationDto {
|
|
|
123
123
|
* @memberof DomainSalesInformationDto
|
|
124
124
|
*/
|
|
125
125
|
auctionId: string | null;
|
|
126
|
+
/**
|
|
127
|
+
* The domain "locked" status
|
|
128
|
+
* @type {boolean}
|
|
129
|
+
* @memberof DomainSalesInformationDto
|
|
130
|
+
*/
|
|
131
|
+
locked: boolean;
|
|
126
132
|
/**
|
|
127
133
|
* Lead buyer settings
|
|
128
134
|
* @type {LeadBuyerConfigDto}
|
|
@@ -62,6 +62,8 @@ function instanceOfDomainSalesInformationDto(value) {
|
|
|
62
62
|
return false;
|
|
63
63
|
if (!('auctionId' in value) || value['auctionId'] === undefined)
|
|
64
64
|
return false;
|
|
65
|
+
if (!('locked' in value) || value['locked'] === undefined)
|
|
66
|
+
return false;
|
|
65
67
|
if (!('leadBuyerSettings' in value) || value['leadBuyerSettings'] === undefined)
|
|
66
68
|
return false;
|
|
67
69
|
return true;
|
|
@@ -91,6 +93,7 @@ function DomainSalesInformationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
91
93
|
'seoEnabled': json['seoEnabled'],
|
|
92
94
|
'hasActiveAuction': json['hasActiveAuction'],
|
|
93
95
|
'auctionId': json['auctionId'],
|
|
96
|
+
'locked': json['locked'],
|
|
94
97
|
'leadBuyerSettings': (0, LeadBuyerConfigDto_1.LeadBuyerConfigDtoFromJSON)(json['leadBuyerSettings']),
|
|
95
98
|
};
|
|
96
99
|
}
|
|
@@ -120,6 +123,7 @@ function DomainSalesInformationDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
120
123
|
'seoEnabled': value['seoEnabled'],
|
|
121
124
|
'hasActiveAuction': value['hasActiveAuction'],
|
|
122
125
|
'auctionId': value['auctionId'],
|
|
126
|
+
'locked': value['locked'],
|
|
123
127
|
'leadBuyerSettings': (0, LeadBuyerConfigDto_1.LeadBuyerConfigDtoToJSON)(value['leadBuyerSettings']),
|
|
124
128
|
};
|
|
125
129
|
}
|
package/package.json
CHANGED
|
@@ -164,6 +164,12 @@ export interface DomainSalesInformationDto {
|
|
|
164
164
|
* @memberof DomainSalesInformationDto
|
|
165
165
|
*/
|
|
166
166
|
auctionId: string | null;
|
|
167
|
+
/**
|
|
168
|
+
* The domain "locked" status
|
|
169
|
+
* @type {boolean}
|
|
170
|
+
* @memberof DomainSalesInformationDto
|
|
171
|
+
*/
|
|
172
|
+
locked: boolean;
|
|
167
173
|
/**
|
|
168
174
|
* Lead buyer settings
|
|
169
175
|
* @type {LeadBuyerConfigDto}
|
|
@@ -193,6 +199,7 @@ export function instanceOfDomainSalesInformationDto(value: object): value is Dom
|
|
|
193
199
|
if (!('seoEnabled' in value) || value['seoEnabled'] === undefined) return false;
|
|
194
200
|
if (!('hasActiveAuction' in value) || value['hasActiveAuction'] === undefined) return false;
|
|
195
201
|
if (!('auctionId' in value) || value['auctionId'] === undefined) return false;
|
|
202
|
+
if (!('locked' in value) || value['locked'] === undefined) return false;
|
|
196
203
|
if (!('leadBuyerSettings' in value) || value['leadBuyerSettings'] === undefined) return false;
|
|
197
204
|
return true;
|
|
198
205
|
}
|
|
@@ -224,6 +231,7 @@ export function DomainSalesInformationDtoFromJSONTyped(json: any, ignoreDiscrimi
|
|
|
224
231
|
'seoEnabled': json['seoEnabled'],
|
|
225
232
|
'hasActiveAuction': json['hasActiveAuction'],
|
|
226
233
|
'auctionId': json['auctionId'],
|
|
234
|
+
'locked': json['locked'],
|
|
227
235
|
'leadBuyerSettings': LeadBuyerConfigDtoFromJSON(json['leadBuyerSettings']),
|
|
228
236
|
};
|
|
229
237
|
}
|
|
@@ -256,6 +264,7 @@ export function DomainSalesInformationDtoToJSONTyped(value?: DomainSalesInformat
|
|
|
256
264
|
'seoEnabled': value['seoEnabled'],
|
|
257
265
|
'hasActiveAuction': value['hasActiveAuction'],
|
|
258
266
|
'auctionId': value['auctionId'],
|
|
267
|
+
'locked': value['locked'],
|
|
259
268
|
'leadBuyerSettings': LeadBuyerConfigDtoToJSON(value['leadBuyerSettings']),
|
|
260
269
|
};
|
|
261
270
|
}
|