@randock/nameshift-api-client 0.0.360 → 0.0.361

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.360
1
+ ## @randock/nameshift-api-client@0.0.361
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.360 --save
39
+ npm install @randock/nameshift-api-client@0.0.361 --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
- 7829aa320e2173d9bfedf54eaf6e68013a631f1b6c9ff94369c8e9ec72a1582d8aab46b3feae56a38c7a0e05f6a02af3
47
+ d55a6e9da71d5c84391ded117b424bf95af096a02f78660c411d864b67d9ea300a37a9a0c148e1deb99cbb9e0aec23b5
@@ -40,6 +40,12 @@ export interface IntersectionDomainDtoWithAccountDto {
40
40
  * @memberof IntersectionDomainDtoWithAccountDto
41
41
  */
42
42
  hijackerId: string | null;
43
+ /**
44
+ * Whether the domain can be deleted
45
+ * @type {boolean}
46
+ * @memberof IntersectionDomainDtoWithAccountDto
47
+ */
48
+ isDeleteable: boolean;
43
49
  /**
44
50
  * The TLD for this domain.
45
51
  * @type {string}
@@ -35,6 +35,8 @@ function instanceOfIntersectionDomainDtoWithAccountDto(value) {
35
35
  return false;
36
36
  if (!('hijackerId' in value) || value['hijackerId'] === undefined)
37
37
  return false;
38
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined)
39
+ return false;
38
40
  if (!('tld' in value) || value['tld'] === undefined)
39
41
  return false;
40
42
  if (!('verified' in value) || value['verified'] === undefined)
@@ -88,6 +90,7 @@ function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json, ignoreDiscrimina
88
90
  'id': json['id'],
89
91
  'accountId': json['accountId'],
90
92
  'hijackerId': json['hijackerId'],
93
+ 'isDeleteable': json['isDeleteable'],
91
94
  'tld': json['tld'],
92
95
  'verified': json['verified'],
93
96
  'nameservers': json['nameservers'],
@@ -122,6 +125,7 @@ function IntersectionDomainDtoWithAccountDtoToJSONTyped(value, ignoreDiscriminat
122
125
  'id': value['id'],
123
126
  'accountId': value['accountId'],
124
127
  'hijackerId': value['hijackerId'],
128
+ 'isDeleteable': value['isDeleteable'],
125
129
  'tld': value['tld'],
126
130
  'verified': value['verified'],
127
131
  'nameservers': value['nameservers'],
@@ -40,6 +40,12 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
40
40
  * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
41
41
  */
42
42
  hijackerId: string | null;
43
+ /**
44
+ * Whether the domain can be deleted
45
+ * @type {boolean}
46
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
47
+ */
48
+ isDeleteable: boolean;
43
49
  /**
44
50
  * The TLD for this domain.
45
51
  * @type {string}
@@ -35,6 +35,8 @@ function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(value)
35
35
  return false;
36
36
  if (!('hijackerId' in value) || value['hijackerId'] === undefined)
37
37
  return false;
38
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined)
39
+ return false;
38
40
  if (!('tld' in value) || value['tld'] === undefined)
39
41
  return false;
40
42
  if (!('verified' in value) || value['verified'] === undefined)
@@ -90,6 +92,7 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyped(json
90
92
  'id': json['id'],
91
93
  'accountId': json['accountId'],
92
94
  'hijackerId': json['hijackerId'],
95
+ 'isDeleteable': json['isDeleteable'],
93
96
  'tld': json['tld'],
94
97
  'verified': json['verified'],
95
98
  'nameservers': json['nameservers'],
@@ -125,6 +128,7 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped(value,
125
128
  'id': value['id'],
126
129
  'accountId': value['accountId'],
127
130
  'hijackerId': value['hijackerId'],
131
+ 'isDeleteable': value['isDeleteable'],
128
132
  'tld': value['tld'],
129
133
  'verified': value['verified'],
130
134
  'nameservers': value['nameservers'],
@@ -40,6 +40,12 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
40
40
  * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
41
41
  */
42
42
  hijackerId: string | null;
43
+ /**
44
+ * Whether the domain can be deleted
45
+ * @type {boolean}
46
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
47
+ */
48
+ isDeleteable: boolean;
43
49
  /**
44
50
  * The TLD for this domain.
45
51
  * @type {string}
@@ -35,6 +35,8 @@ function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(value) {
35
35
  return false;
36
36
  if (!('hijackerId' in value) || value['hijackerId'] === undefined)
37
37
  return false;
38
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined)
39
+ return false;
38
40
  if (!('tld' in value) || value['tld'] === undefined)
39
41
  return false;
40
42
  if (!('verified' in value) || value['verified'] === undefined)
@@ -90,6 +92,7 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(json, i
90
92
  'id': json['id'],
91
93
  'accountId': json['accountId'],
92
94
  'hijackerId': json['hijackerId'],
95
+ 'isDeleteable': json['isDeleteable'],
93
96
  'tld': json['tld'],
94
97
  'verified': json['verified'],
95
98
  'nameservers': json['nameservers'],
@@ -125,6 +128,7 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(value, ig
125
128
  'id': value['id'],
126
129
  'accountId': value['accountId'],
127
130
  'hijackerId': value['hijackerId'],
131
+ 'isDeleteable': value['isDeleteable'],
128
132
  'tld': value['tld'],
129
133
  'verified': value['verified'],
130
134
  'nameservers': value['nameservers'],
@@ -40,6 +40,12 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
40
40
  * @memberof IntersectionDomainDtoWithSeoMetricsDto
41
41
  */
42
42
  hijackerId: string | null;
43
+ /**
44
+ * Whether the domain can be deleted
45
+ * @type {boolean}
46
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
47
+ */
48
+ isDeleteable: boolean;
43
49
  /**
44
50
  * The SEO metrics for this domain
45
51
  * @type {SeoMetricsDto}
@@ -35,6 +35,8 @@ function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value) {
35
35
  return false;
36
36
  if (!('hijackerId' in value) || value['hijackerId'] === undefined)
37
37
  return false;
38
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined)
39
+ return false;
38
40
  if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
39
41
  return false;
40
42
  if (!('tld' in value) || value['tld'] === undefined)
@@ -88,6 +90,7 @@ function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, ignoreDiscrim
88
90
  'id': json['id'],
89
91
  'accountId': json['accountId'],
90
92
  'hijackerId': json['hijackerId'],
93
+ 'isDeleteable': json['isDeleteable'],
91
94
  'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoFromJSON)(json['seoMetrics']),
92
95
  'tld': json['tld'],
93
96
  'verified': json['verified'],
@@ -122,6 +125,7 @@ function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value, ignoreDiscrimi
122
125
  'id': value['id'],
123
126
  'accountId': value['accountId'],
124
127
  'hijackerId': value['hijackerId'],
128
+ 'isDeleteable': value['isDeleteable'],
125
129
  'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoToJSON)(value['seoMetrics']),
126
130
  'tld': value['tld'],
127
131
  'verified': value['verified'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.360",
3
+ "version": "0.0.361",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -87,6 +87,12 @@ export interface IntersectionDomainDtoWithAccountDto {
87
87
  * @memberof IntersectionDomainDtoWithAccountDto
88
88
  */
89
89
  hijackerId: string | null;
90
+ /**
91
+ * Whether the domain can be deleted
92
+ * @type {boolean}
93
+ * @memberof IntersectionDomainDtoWithAccountDto
94
+ */
95
+ isDeleteable: boolean;
90
96
  /**
91
97
  * The TLD for this domain.
92
98
  * @type {string}
@@ -217,6 +223,7 @@ export function instanceOfIntersectionDomainDtoWithAccountDto(value: object): va
217
223
  if (!('id' in value) || value['id'] === undefined) return false;
218
224
  if (!('accountId' in value) || value['accountId'] === undefined) return false;
219
225
  if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
226
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined) return false;
220
227
  if (!('tld' in value) || value['tld'] === undefined) return false;
221
228
  if (!('verified' in value) || value['verified'] === undefined) return false;
222
229
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
@@ -253,6 +260,7 @@ export function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json: any, igno
253
260
  'id': json['id'],
254
261
  'accountId': json['accountId'],
255
262
  'hijackerId': json['hijackerId'],
263
+ 'isDeleteable': json['isDeleteable'],
256
264
  'tld': json['tld'],
257
265
  'verified': json['verified'],
258
266
  'nameservers': json['nameservers'],
@@ -290,6 +298,7 @@ export function IntersectionDomainDtoWithAccountDtoToJSONTyped(value?: Intersect
290
298
  'id': value['id'],
291
299
  'accountId': value['accountId'],
292
300
  'hijackerId': value['hijackerId'],
301
+ 'isDeleteable': value['isDeleteable'],
293
302
  'tld': value['tld'],
294
303
  'verified': value['verified'],
295
304
  'nameservers': value['nameservers'],
@@ -87,6 +87,12 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
87
87
  * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
88
88
  */
89
89
  hijackerId: string | null;
90
+ /**
91
+ * Whether the domain can be deleted
92
+ * @type {boolean}
93
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
94
+ */
95
+ isDeleteable: boolean;
90
96
  /**
91
97
  * The TLD for this domain.
92
98
  * @type {string}
@@ -223,6 +229,7 @@ export function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(
223
229
  if (!('id' in value) || value['id'] === undefined) return false;
224
230
  if (!('accountId' in value) || value['accountId'] === undefined) return false;
225
231
  if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
232
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined) return false;
226
233
  if (!('tld' in value) || value['tld'] === undefined) return false;
227
234
  if (!('verified' in value) || value['verified'] === undefined) return false;
228
235
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
@@ -260,6 +267,7 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyp
260
267
  'id': json['id'],
261
268
  'accountId': json['accountId'],
262
269
  'hijackerId': json['hijackerId'],
270
+ 'isDeleteable': json['isDeleteable'],
263
271
  'tld': json['tld'],
264
272
  'verified': json['verified'],
265
273
  'nameservers': json['nameservers'],
@@ -298,6 +306,7 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped
298
306
  'id': value['id'],
299
307
  'accountId': value['accountId'],
300
308
  'hijackerId': value['hijackerId'],
309
+ 'isDeleteable': value['isDeleteable'],
301
310
  'tld': value['tld'],
302
311
  'verified': value['verified'],
303
312
  'nameservers': value['nameservers'],
@@ -87,6 +87,12 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
87
87
  * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
88
88
  */
89
89
  hijackerId: string | null;
90
+ /**
91
+ * Whether the domain can be deleted
92
+ * @type {boolean}
93
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
94
+ */
95
+ isDeleteable: boolean;
90
96
  /**
91
97
  * The TLD for this domain.
92
98
  * @type {string}
@@ -223,6 +229,7 @@ export function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(val
223
229
  if (!('id' in value) || value['id'] === undefined) return false;
224
230
  if (!('accountId' in value) || value['accountId'] === undefined) return false;
225
231
  if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
232
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined) return false;
226
233
  if (!('tld' in value) || value['tld'] === undefined) return false;
227
234
  if (!('verified' in value) || value['verified'] === undefined) return false;
228
235
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
@@ -260,6 +267,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(
260
267
  'id': json['id'],
261
268
  'accountId': json['accountId'],
262
269
  'hijackerId': json['hijackerId'],
270
+ 'isDeleteable': json['isDeleteable'],
263
271
  'tld': json['tld'],
264
272
  'verified': json['verified'],
265
273
  'nameservers': json['nameservers'],
@@ -298,6 +306,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(va
298
306
  'id': value['id'],
299
307
  'accountId': value['accountId'],
300
308
  'hijackerId': value['hijackerId'],
309
+ 'isDeleteable': value['isDeleteable'],
301
310
  'tld': value['tld'],
302
311
  'verified': value['verified'],
303
312
  'nameservers': value['nameservers'],
@@ -87,6 +87,12 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
87
87
  * @memberof IntersectionDomainDtoWithSeoMetricsDto
88
88
  */
89
89
  hijackerId: string | null;
90
+ /**
91
+ * Whether the domain can be deleted
92
+ * @type {boolean}
93
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
94
+ */
95
+ isDeleteable: boolean;
90
96
  /**
91
97
  * The SEO metrics for this domain
92
98
  * @type {SeoMetricsDto}
@@ -217,6 +223,7 @@ export function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object):
217
223
  if (!('id' in value) || value['id'] === undefined) return false;
218
224
  if (!('accountId' in value) || value['accountId'] === undefined) return false;
219
225
  if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
226
+ if (!('isDeleteable' in value) || value['isDeleteable'] === undefined) return false;
220
227
  if (!('seoMetrics' in value) || value['seoMetrics'] === undefined) return false;
221
228
  if (!('tld' in value) || value['tld'] === undefined) return false;
222
229
  if (!('verified' in value) || value['verified'] === undefined) return false;
@@ -253,6 +260,7 @@ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, i
253
260
  'id': json['id'],
254
261
  'accountId': json['accountId'],
255
262
  'hijackerId': json['hijackerId'],
263
+ 'isDeleteable': json['isDeleteable'],
256
264
  'seoMetrics': SeoMetricsDtoFromJSON(json['seoMetrics']),
257
265
  'tld': json['tld'],
258
266
  'verified': json['verified'],
@@ -290,6 +298,7 @@ export function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: Inters
290
298
  'id': value['id'],
291
299
  'accountId': value['accountId'],
292
300
  'hijackerId': value['hijackerId'],
301
+ 'isDeleteable': value['isDeleteable'],
293
302
  'seoMetrics': SeoMetricsDtoToJSON(value['seoMetrics']),
294
303
  'tld': value['tld'],
295
304
  'verified': value['verified'],