@randock/nameshift-api-client 0.0.377 → 0.0.378

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.377
1
+ ## @randock/nameshift-api-client@0.0.378
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.377 --save
39
+ npm install @randock/nameshift-api-client@0.0.378 --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
- ed979396fc42a8197f83c39a33a36d2c9ebdce423bbf32aaf6fb85dbd54c59a61274bb4c65a42f0a31bff44d93b61888
47
+ 11732875d58ffd9224b3e64e155b6f09c00f983e9b3ceb4e13e160399b11920f02dbbc83045fd9f3500df245397fa02e
@@ -76,6 +76,24 @@ export interface IntersectionDomainDtoWithAccountDto {
76
76
  * @memberof IntersectionDomainDtoWithAccountDto
77
77
  */
78
78
  nameservers: boolean;
79
+ /**
80
+ * The date when the nameservers were last checked
81
+ * @type {Date}
82
+ * @memberof IntersectionDomainDtoWithAccountDto
83
+ */
84
+ nameserversUpdatedAt: Date | null;
85
+ /**
86
+ * Whether the domain points to our server or not.
87
+ * @type {boolean}
88
+ * @memberof IntersectionDomainDtoWithAccountDto
89
+ */
90
+ pointsToOurServer: boolean | null;
91
+ /**
92
+ * The date when the domain points to our server was last checked
93
+ * @type {Date}
94
+ * @memberof IntersectionDomainDtoWithAccountDto
95
+ */
96
+ pointsToOurServerUpdatedAt: Date | null;
79
97
  /**
80
98
  * The ASCII domain name (example.com, xn--maana-pta.com)
81
99
  * @type {string}
@@ -47,6 +47,12 @@ function instanceOfIntersectionDomainDtoWithAccountDto(value) {
47
47
  return false;
48
48
  if (!('nameservers' in value) || value['nameservers'] === undefined)
49
49
  return false;
50
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined)
51
+ return false;
52
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined)
53
+ return false;
54
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined)
55
+ return false;
50
56
  if (!('name' in value) || value['name'] === undefined)
51
57
  return false;
52
58
  if (!('displayName' in value) || value['displayName'] === undefined)
@@ -100,6 +106,9 @@ function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json, ignoreDiscrimina
100
106
  'tld': json['tld'],
101
107
  'verified': json['verified'],
102
108
  'nameservers': json['nameservers'],
109
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
110
+ 'pointsToOurServer': json['pointsToOurServer'],
111
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
103
112
  'name': json['name'],
104
113
  'displayName': json['displayName'],
105
114
  'currencyCode': json['currencyCode'],
@@ -137,6 +146,9 @@ function IntersectionDomainDtoWithAccountDtoToJSONTyped(value, ignoreDiscriminat
137
146
  'tld': value['tld'],
138
147
  'verified': value['verified'],
139
148
  'nameservers': value['nameservers'],
149
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : value['nameserversUpdatedAt'].toISOString()),
150
+ 'pointsToOurServer': value['pointsToOurServer'],
151
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : value['pointsToOurServerUpdatedAt'].toISOString()),
140
152
  'name': value['name'],
141
153
  'displayName': value['displayName'],
142
154
  'currencyCode': value['currencyCode'],
@@ -76,6 +76,24 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
76
76
  * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
77
77
  */
78
78
  nameservers: boolean;
79
+ /**
80
+ * The date when the nameservers were last checked
81
+ * @type {Date}
82
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
83
+ */
84
+ nameserversUpdatedAt: Date | null;
85
+ /**
86
+ * Whether the domain points to our server or not.
87
+ * @type {boolean}
88
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
89
+ */
90
+ pointsToOurServer: boolean | null;
91
+ /**
92
+ * The date when the domain points to our server was last checked
93
+ * @type {Date}
94
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
95
+ */
96
+ pointsToOurServerUpdatedAt: Date | null;
79
97
  /**
80
98
  * The ASCII domain name (example.com, xn--maana-pta.com)
81
99
  * @type {string}
@@ -47,6 +47,12 @@ function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(value)
47
47
  return false;
48
48
  if (!('nameservers' in value) || value['nameservers'] === undefined)
49
49
  return false;
50
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined)
51
+ return false;
52
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined)
53
+ return false;
54
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined)
55
+ return false;
50
56
  if (!('name' in value) || value['name'] === undefined)
51
57
  return false;
52
58
  if (!('displayName' in value) || value['displayName'] === undefined)
@@ -102,6 +108,9 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyped(json
102
108
  'tld': json['tld'],
103
109
  'verified': json['verified'],
104
110
  'nameservers': json['nameservers'],
111
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
112
+ 'pointsToOurServer': json['pointsToOurServer'],
113
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
105
114
  'name': json['name'],
106
115
  'displayName': json['displayName'],
107
116
  'currencyCode': json['currencyCode'],
@@ -140,6 +149,9 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped(value,
140
149
  'tld': value['tld'],
141
150
  'verified': value['verified'],
142
151
  'nameservers': value['nameservers'],
152
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : value['nameserversUpdatedAt'].toISOString()),
153
+ 'pointsToOurServer': value['pointsToOurServer'],
154
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : value['pointsToOurServerUpdatedAt'].toISOString()),
143
155
  'name': value['name'],
144
156
  'displayName': value['displayName'],
145
157
  'currencyCode': value['currencyCode'],
@@ -76,6 +76,24 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
76
76
  * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
77
77
  */
78
78
  nameservers: boolean;
79
+ /**
80
+ * The date when the nameservers were last checked
81
+ * @type {Date}
82
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
83
+ */
84
+ nameserversUpdatedAt: Date | null;
85
+ /**
86
+ * Whether the domain points to our server or not.
87
+ * @type {boolean}
88
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
89
+ */
90
+ pointsToOurServer: boolean | null;
91
+ /**
92
+ * The date when the domain points to our server was last checked
93
+ * @type {Date}
94
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
95
+ */
96
+ pointsToOurServerUpdatedAt: Date | null;
79
97
  /**
80
98
  * The ASCII domain name (example.com, xn--maana-pta.com)
81
99
  * @type {string}
@@ -47,6 +47,12 @@ function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(value) {
47
47
  return false;
48
48
  if (!('nameservers' in value) || value['nameservers'] === undefined)
49
49
  return false;
50
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined)
51
+ return false;
52
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined)
53
+ return false;
54
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined)
55
+ return false;
50
56
  if (!('name' in value) || value['name'] === undefined)
51
57
  return false;
52
58
  if (!('displayName' in value) || value['displayName'] === undefined)
@@ -102,6 +108,9 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(json, i
102
108
  'tld': json['tld'],
103
109
  'verified': json['verified'],
104
110
  'nameservers': json['nameservers'],
111
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
112
+ 'pointsToOurServer': json['pointsToOurServer'],
113
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
105
114
  'name': json['name'],
106
115
  'displayName': json['displayName'],
107
116
  'currencyCode': json['currencyCode'],
@@ -140,6 +149,9 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(value, ig
140
149
  'tld': value['tld'],
141
150
  'verified': value['verified'],
142
151
  'nameservers': value['nameservers'],
152
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : value['nameserversUpdatedAt'].toISOString()),
153
+ 'pointsToOurServer': value['pointsToOurServer'],
154
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : value['pointsToOurServerUpdatedAt'].toISOString()),
143
155
  'name': value['name'],
144
156
  'displayName': value['displayName'],
145
157
  'currencyCode': value['currencyCode'],
@@ -82,6 +82,24 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
82
82
  * @memberof IntersectionDomainDtoWithSeoMetricsDto
83
83
  */
84
84
  nameservers: boolean;
85
+ /**
86
+ * The date when the nameservers were last checked
87
+ * @type {Date}
88
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
89
+ */
90
+ nameserversUpdatedAt: Date | null;
91
+ /**
92
+ * Whether the domain points to our server or not.
93
+ * @type {boolean}
94
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
95
+ */
96
+ pointsToOurServer: boolean | null;
97
+ /**
98
+ * The date when the domain points to our server was last checked
99
+ * @type {Date}
100
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
101
+ */
102
+ pointsToOurServerUpdatedAt: Date | null;
85
103
  /**
86
104
  * The ASCII domain name (example.com, xn--maana-pta.com)
87
105
  * @type {string}
@@ -49,6 +49,12 @@ function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value) {
49
49
  return false;
50
50
  if (!('nameservers' in value) || value['nameservers'] === undefined)
51
51
  return false;
52
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined)
53
+ return false;
54
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined)
55
+ return false;
56
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined)
57
+ return false;
52
58
  if (!('name' in value) || value['name'] === undefined)
53
59
  return false;
54
60
  if (!('displayName' in value) || value['displayName'] === undefined)
@@ -101,6 +107,9 @@ function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, ignoreDiscrim
101
107
  'tld': json['tld'],
102
108
  'verified': json['verified'],
103
109
  'nameservers': json['nameservers'],
110
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
111
+ 'pointsToOurServer': json['pointsToOurServer'],
112
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
104
113
  'name': json['name'],
105
114
  'displayName': json['displayName'],
106
115
  'currencyCode': json['currencyCode'],
@@ -138,6 +147,9 @@ function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value, ignoreDiscrimi
138
147
  'tld': value['tld'],
139
148
  'verified': value['verified'],
140
149
  'nameservers': value['nameservers'],
150
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : value['nameserversUpdatedAt'].toISOString()),
151
+ 'pointsToOurServer': value['pointsToOurServer'],
152
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : value['pointsToOurServerUpdatedAt'].toISOString()),
141
153
  'name': value['name'],
142
154
  'displayName': value['displayName'],
143
155
  'currencyCode': value['currencyCode'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@randock/nameshift-api-client",
3
- "version": "0.0.377",
3
+ "version": "0.0.378",
4
4
  "description": "OpenAPI client for @randock/nameshift-api-client",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -123,6 +123,24 @@ export interface IntersectionDomainDtoWithAccountDto {
123
123
  * @memberof IntersectionDomainDtoWithAccountDto
124
124
  */
125
125
  nameservers: boolean;
126
+ /**
127
+ * The date when the nameservers were last checked
128
+ * @type {Date}
129
+ * @memberof IntersectionDomainDtoWithAccountDto
130
+ */
131
+ nameserversUpdatedAt: Date | null;
132
+ /**
133
+ * Whether the domain points to our server or not.
134
+ * @type {boolean}
135
+ * @memberof IntersectionDomainDtoWithAccountDto
136
+ */
137
+ pointsToOurServer: boolean | null;
138
+ /**
139
+ * The date when the domain points to our server was last checked
140
+ * @type {Date}
141
+ * @memberof IntersectionDomainDtoWithAccountDto
142
+ */
143
+ pointsToOurServerUpdatedAt: Date | null;
126
144
  /**
127
145
  * The ASCII domain name (example.com, xn--maana-pta.com)
128
146
  * @type {string}
@@ -241,6 +259,9 @@ export function instanceOfIntersectionDomainDtoWithAccountDto(value: object): va
241
259
  if (!('tld' in value) || value['tld'] === undefined) return false;
242
260
  if (!('verified' in value) || value['verified'] === undefined) return false;
243
261
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
262
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined) return false;
263
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined) return false;
264
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined) return false;
244
265
  if (!('name' in value) || value['name'] === undefined) return false;
245
266
  if (!('displayName' in value) || value['displayName'] === undefined) return false;
246
267
  if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
@@ -280,6 +301,9 @@ export function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json: any, igno
280
301
  'tld': json['tld'],
281
302
  'verified': json['verified'],
282
303
  'nameservers': json['nameservers'],
304
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
305
+ 'pointsToOurServer': json['pointsToOurServer'],
306
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
283
307
  'name': json['name'],
284
308
  'displayName': json['displayName'],
285
309
  'currencyCode': json['currencyCode'],
@@ -320,6 +344,9 @@ export function IntersectionDomainDtoWithAccountDtoToJSONTyped(value?: Intersect
320
344
  'tld': value['tld'],
321
345
  'verified': value['verified'],
322
346
  'nameservers': value['nameservers'],
347
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : (value['nameserversUpdatedAt'] as any).toISOString()),
348
+ 'pointsToOurServer': value['pointsToOurServer'],
349
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : (value['pointsToOurServerUpdatedAt'] as any).toISOString()),
323
350
  'name': value['name'],
324
351
  'displayName': value['displayName'],
325
352
  'currencyCode': value['currencyCode'],
@@ -123,6 +123,24 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
123
123
  * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
124
124
  */
125
125
  nameservers: boolean;
126
+ /**
127
+ * The date when the nameservers were last checked
128
+ * @type {Date}
129
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
130
+ */
131
+ nameserversUpdatedAt: Date | null;
132
+ /**
133
+ * Whether the domain points to our server or not.
134
+ * @type {boolean}
135
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
136
+ */
137
+ pointsToOurServer: boolean | null;
138
+ /**
139
+ * The date when the domain points to our server was last checked
140
+ * @type {Date}
141
+ * @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
142
+ */
143
+ pointsToOurServerUpdatedAt: Date | null;
126
144
  /**
127
145
  * The ASCII domain name (example.com, xn--maana-pta.com)
128
146
  * @type {string}
@@ -247,6 +265,9 @@ export function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(
247
265
  if (!('tld' in value) || value['tld'] === undefined) return false;
248
266
  if (!('verified' in value) || value['verified'] === undefined) return false;
249
267
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
268
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined) return false;
269
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined) return false;
270
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined) return false;
250
271
  if (!('name' in value) || value['name'] === undefined) return false;
251
272
  if (!('displayName' in value) || value['displayName'] === undefined) return false;
252
273
  if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
@@ -287,6 +308,9 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyp
287
308
  'tld': json['tld'],
288
309
  'verified': json['verified'],
289
310
  'nameservers': json['nameservers'],
311
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
312
+ 'pointsToOurServer': json['pointsToOurServer'],
313
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
290
314
  'name': json['name'],
291
315
  'displayName': json['displayName'],
292
316
  'currencyCode': json['currencyCode'],
@@ -328,6 +352,9 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped
328
352
  'tld': value['tld'],
329
353
  'verified': value['verified'],
330
354
  'nameservers': value['nameservers'],
355
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : (value['nameserversUpdatedAt'] as any).toISOString()),
356
+ 'pointsToOurServer': value['pointsToOurServer'],
357
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : (value['pointsToOurServerUpdatedAt'] as any).toISOString()),
331
358
  'name': value['name'],
332
359
  'displayName': value['displayName'],
333
360
  'currencyCode': value['currencyCode'],
@@ -123,6 +123,24 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
123
123
  * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
124
124
  */
125
125
  nameservers: boolean;
126
+ /**
127
+ * The date when the nameservers were last checked
128
+ * @type {Date}
129
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
130
+ */
131
+ nameserversUpdatedAt: Date | null;
132
+ /**
133
+ * Whether the domain points to our server or not.
134
+ * @type {boolean}
135
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
136
+ */
137
+ pointsToOurServer: boolean | null;
138
+ /**
139
+ * The date when the domain points to our server was last checked
140
+ * @type {Date}
141
+ * @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
142
+ */
143
+ pointsToOurServerUpdatedAt: Date | null;
126
144
  /**
127
145
  * The ASCII domain name (example.com, xn--maana-pta.com)
128
146
  * @type {string}
@@ -247,6 +265,9 @@ export function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(val
247
265
  if (!('tld' in value) || value['tld'] === undefined) return false;
248
266
  if (!('verified' in value) || value['verified'] === undefined) return false;
249
267
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
268
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined) return false;
269
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined) return false;
270
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined) return false;
250
271
  if (!('name' in value) || value['name'] === undefined) return false;
251
272
  if (!('displayName' in value) || value['displayName'] === undefined) return false;
252
273
  if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
@@ -287,6 +308,9 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(
287
308
  'tld': json['tld'],
288
309
  'verified': json['verified'],
289
310
  'nameservers': json['nameservers'],
311
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
312
+ 'pointsToOurServer': json['pointsToOurServer'],
313
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
290
314
  'name': json['name'],
291
315
  'displayName': json['displayName'],
292
316
  'currencyCode': json['currencyCode'],
@@ -328,6 +352,9 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(va
328
352
  'tld': value['tld'],
329
353
  'verified': value['verified'],
330
354
  'nameservers': value['nameservers'],
355
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : (value['nameserversUpdatedAt'] as any).toISOString()),
356
+ 'pointsToOurServer': value['pointsToOurServer'],
357
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : (value['pointsToOurServerUpdatedAt'] as any).toISOString()),
331
358
  'name': value['name'],
332
359
  'displayName': value['displayName'],
333
360
  'currencyCode': value['currencyCode'],
@@ -129,6 +129,24 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
129
129
  * @memberof IntersectionDomainDtoWithSeoMetricsDto
130
130
  */
131
131
  nameservers: boolean;
132
+ /**
133
+ * The date when the nameservers were last checked
134
+ * @type {Date}
135
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
136
+ */
137
+ nameserversUpdatedAt: Date | null;
138
+ /**
139
+ * Whether the domain points to our server or not.
140
+ * @type {boolean}
141
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
142
+ */
143
+ pointsToOurServer: boolean | null;
144
+ /**
145
+ * The date when the domain points to our server was last checked
146
+ * @type {Date}
147
+ * @memberof IntersectionDomainDtoWithSeoMetricsDto
148
+ */
149
+ pointsToOurServerUpdatedAt: Date | null;
132
150
  /**
133
151
  * The ASCII domain name (example.com, xn--maana-pta.com)
134
152
  * @type {string}
@@ -242,6 +260,9 @@ export function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object):
242
260
  if (!('tld' in value) || value['tld'] === undefined) return false;
243
261
  if (!('verified' in value) || value['verified'] === undefined) return false;
244
262
  if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
263
+ if (!('nameserversUpdatedAt' in value) || value['nameserversUpdatedAt'] === undefined) return false;
264
+ if (!('pointsToOurServer' in value) || value['pointsToOurServer'] === undefined) return false;
265
+ if (!('pointsToOurServerUpdatedAt' in value) || value['pointsToOurServerUpdatedAt'] === undefined) return false;
245
266
  if (!('name' in value) || value['name'] === undefined) return false;
246
267
  if (!('displayName' in value) || value['displayName'] === undefined) return false;
247
268
  if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
@@ -281,6 +302,9 @@ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, i
281
302
  'tld': json['tld'],
282
303
  'verified': json['verified'],
283
304
  'nameservers': json['nameservers'],
305
+ 'nameserversUpdatedAt': (json['nameserversUpdatedAt'] == null ? null : new Date(json['nameserversUpdatedAt'])),
306
+ 'pointsToOurServer': json['pointsToOurServer'],
307
+ 'pointsToOurServerUpdatedAt': (json['pointsToOurServerUpdatedAt'] == null ? null : new Date(json['pointsToOurServerUpdatedAt'])),
284
308
  'name': json['name'],
285
309
  'displayName': json['displayName'],
286
310
  'currencyCode': json['currencyCode'],
@@ -321,6 +345,9 @@ export function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: Inters
321
345
  'tld': value['tld'],
322
346
  'verified': value['verified'],
323
347
  'nameservers': value['nameservers'],
348
+ 'nameserversUpdatedAt': (value['nameserversUpdatedAt'] == null ? null : (value['nameserversUpdatedAt'] as any).toISOString()),
349
+ 'pointsToOurServer': value['pointsToOurServer'],
350
+ 'pointsToOurServerUpdatedAt': (value['pointsToOurServerUpdatedAt'] == null ? null : (value['pointsToOurServerUpdatedAt'] as any).toISOString()),
324
351
  'name': value['name'],
325
352
  'displayName': value['displayName'],
326
353
  'currencyCode': value['currencyCode'],