@randock/nameshift-api-client 0.0.345 → 0.0.347
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 +3 -3
- package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithAccountDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.d.ts +6 -0
- package/dist/models/IntersectionDomainDtoWithSeoMetricsDto.js +4 -0
- package/package.json +1 -1
- package/src/models/IntersectionDomainDtoWithAccountDto.ts +9 -0
- package/src/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.ts +9 -0
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +9 -0
- package/src/models/IntersectionDomainDtoWithSeoMetricsDto.ts +9 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.347
|
|
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.347 --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
|
+
ee256f25d179b05c3b4481ccda30d3a0ca93d4479dbc418d4408e50acbdf51b6ce7e2ee2d66c89dbbeee31338afe01b7
|
|
@@ -143,6 +143,12 @@ export interface IntersectionDomainDtoWithAccountDto {
|
|
|
143
143
|
* @memberof IntersectionDomainDtoWithAccountDto
|
|
144
144
|
*/
|
|
145
145
|
auction: DomainAuctionDto | null;
|
|
146
|
+
/**
|
|
147
|
+
* Whether the domain has an open lead
|
|
148
|
+
* @type {boolean}
|
|
149
|
+
* @memberof IntersectionDomainDtoWithAccountDto
|
|
150
|
+
*/
|
|
151
|
+
hasAcceptedLead: boolean;
|
|
146
152
|
/**
|
|
147
153
|
*
|
|
148
154
|
* @type {AccountDto}
|
|
@@ -69,6 +69,8 @@ function instanceOfIntersectionDomainDtoWithAccountDto(value) {
|
|
|
69
69
|
return false;
|
|
70
70
|
if (!('auction' in value) || value['auction'] === undefined)
|
|
71
71
|
return false;
|
|
72
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined)
|
|
73
|
+
return false;
|
|
72
74
|
if (!('account' in value) || value['account'] === undefined)
|
|
73
75
|
return false;
|
|
74
76
|
return true;
|
|
@@ -101,6 +103,7 @@ function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json, ignoreDiscrimina
|
|
|
101
103
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
102
104
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiator']),
|
|
103
105
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoFromJSON)(json['auction']),
|
|
106
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
104
107
|
'account': (0, AccountDto_1.AccountDtoFromJSON)(json['account']),
|
|
105
108
|
};
|
|
106
109
|
}
|
|
@@ -133,6 +136,7 @@ function IntersectionDomainDtoWithAccountDtoToJSONTyped(value, ignoreDiscriminat
|
|
|
133
136
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
134
137
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON)(value['leadPriceNegotiator']),
|
|
135
138
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoToJSON)(value['auction']),
|
|
139
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
136
140
|
'account': (0, AccountDto_1.AccountDtoToJSON)(value['account']),
|
|
137
141
|
};
|
|
138
142
|
}
|
|
@@ -143,6 +143,12 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
|
|
|
143
143
|
* @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
|
|
144
144
|
*/
|
|
145
145
|
auction: DomainAuctionDto | null;
|
|
146
|
+
/**
|
|
147
|
+
* Whether the domain has an open lead
|
|
148
|
+
* @type {boolean}
|
|
149
|
+
* @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
|
|
150
|
+
*/
|
|
151
|
+
hasAcceptedLead: boolean;
|
|
146
152
|
/**
|
|
147
153
|
*
|
|
148
154
|
* @type {AccountDto}
|
|
@@ -69,6 +69,8 @@ function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(value)
|
|
|
69
69
|
return false;
|
|
70
70
|
if (!('auction' in value) || value['auction'] === undefined)
|
|
71
71
|
return false;
|
|
72
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined)
|
|
73
|
+
return false;
|
|
72
74
|
if (!('account' in value) || value['account'] === undefined)
|
|
73
75
|
return false;
|
|
74
76
|
if (!('hasAuction' in value) || value['hasAuction'] === undefined)
|
|
@@ -103,6 +105,7 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyped(json
|
|
|
103
105
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
104
106
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiator']),
|
|
105
107
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoFromJSON)(json['auction']),
|
|
108
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
106
109
|
'account': (0, AccountDto_1.AccountDtoFromJSON)(json['account']),
|
|
107
110
|
'hasAuction': json['hasAuction'],
|
|
108
111
|
};
|
|
@@ -136,6 +139,7 @@ function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped(value,
|
|
|
136
139
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
137
140
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON)(value['leadPriceNegotiator']),
|
|
138
141
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoToJSON)(value['auction']),
|
|
142
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
139
143
|
'account': (0, AccountDto_1.AccountDtoToJSON)(value['account']),
|
|
140
144
|
'hasAuction': value['hasAuction'],
|
|
141
145
|
};
|
|
@@ -143,6 +143,12 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
|
|
|
143
143
|
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
144
144
|
*/
|
|
145
145
|
auction: DomainAuctionDto | null;
|
|
146
|
+
/**
|
|
147
|
+
* Whether the domain has an open lead
|
|
148
|
+
* @type {boolean}
|
|
149
|
+
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
150
|
+
*/
|
|
151
|
+
hasAcceptedLead: boolean;
|
|
146
152
|
/**
|
|
147
153
|
*
|
|
148
154
|
* @type {AccountDto}
|
|
@@ -69,6 +69,8 @@ function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(value) {
|
|
|
69
69
|
return false;
|
|
70
70
|
if (!('auction' in value) || value['auction'] === undefined)
|
|
71
71
|
return false;
|
|
72
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined)
|
|
73
|
+
return false;
|
|
72
74
|
if (!('hijacker' in value) || value['hijacker'] === undefined)
|
|
73
75
|
return false;
|
|
74
76
|
if (!('account' in value) || value['account'] === undefined)
|
|
@@ -103,6 +105,7 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(json, i
|
|
|
103
105
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
104
106
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiator']),
|
|
105
107
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoFromJSON)(json['auction']),
|
|
108
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
106
109
|
'hijacker': (0, AccountDto_1.AccountDtoFromJSON)(json['hijacker']),
|
|
107
110
|
'account': (0, AccountDto_1.AccountDtoFromJSON)(json['account']),
|
|
108
111
|
};
|
|
@@ -136,6 +139,7 @@ function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(value, ig
|
|
|
136
139
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
137
140
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON)(value['leadPriceNegotiator']),
|
|
138
141
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoToJSON)(value['auction']),
|
|
142
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
139
143
|
'hijacker': (0, AccountDto_1.AccountDtoToJSON)(value['hijacker']),
|
|
140
144
|
'account': (0, AccountDto_1.AccountDtoToJSON)(value['account']),
|
|
141
145
|
};
|
|
@@ -149,6 +149,12 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
|
|
|
149
149
|
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
150
150
|
*/
|
|
151
151
|
auction: DomainAuctionDto | null;
|
|
152
|
+
/**
|
|
153
|
+
* Whether the domain has an open lead
|
|
154
|
+
* @type {boolean}
|
|
155
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
156
|
+
*/
|
|
157
|
+
hasAcceptedLead: boolean;
|
|
152
158
|
}
|
|
153
159
|
/**
|
|
154
160
|
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDto interface.
|
|
@@ -71,6 +71,8 @@ function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value) {
|
|
|
71
71
|
return false;
|
|
72
72
|
if (!('auction' in value) || value['auction'] === undefined)
|
|
73
73
|
return false;
|
|
74
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined)
|
|
75
|
+
return false;
|
|
74
76
|
return true;
|
|
75
77
|
}
|
|
76
78
|
function IntersectionDomainDtoWithSeoMetricsDtoFromJSON(json) {
|
|
@@ -102,6 +104,7 @@ function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, ignoreDiscrim
|
|
|
102
104
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
103
105
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON)(json['leadPriceNegotiator']),
|
|
104
106
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoFromJSON)(json['auction']),
|
|
107
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
105
108
|
};
|
|
106
109
|
}
|
|
107
110
|
function IntersectionDomainDtoWithSeoMetricsDtoToJSON(json) {
|
|
@@ -134,5 +137,6 @@ function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value, ignoreDiscrimi
|
|
|
134
137
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
135
138
|
'leadPriceNegotiator': (0, DomainLeadPriceNegotiatorAiAgentConfigurationDto_1.DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON)(value['leadPriceNegotiator']),
|
|
136
139
|
'auction': (0, DomainAuctionDto_1.DomainAuctionDtoToJSON)(value['auction']),
|
|
140
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
137
141
|
};
|
|
138
142
|
}
|
package/package.json
CHANGED
|
@@ -190,6 +190,12 @@ export interface IntersectionDomainDtoWithAccountDto {
|
|
|
190
190
|
* @memberof IntersectionDomainDtoWithAccountDto
|
|
191
191
|
*/
|
|
192
192
|
auction: DomainAuctionDto | null;
|
|
193
|
+
/**
|
|
194
|
+
* Whether the domain has an open lead
|
|
195
|
+
* @type {boolean}
|
|
196
|
+
* @memberof IntersectionDomainDtoWithAccountDto
|
|
197
|
+
*/
|
|
198
|
+
hasAcceptedLead: boolean;
|
|
193
199
|
/**
|
|
194
200
|
*
|
|
195
201
|
* @type {AccountDto}
|
|
@@ -222,6 +228,7 @@ export function instanceOfIntersectionDomainDtoWithAccountDto(value: object): va
|
|
|
222
228
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined) return false;
|
|
223
229
|
if (!('leadPriceNegotiator' in value) || value['leadPriceNegotiator'] === undefined) return false;
|
|
224
230
|
if (!('auction' in value) || value['auction'] === undefined) return false;
|
|
231
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined) return false;
|
|
225
232
|
if (!('account' in value) || value['account'] === undefined) return false;
|
|
226
233
|
return true;
|
|
227
234
|
}
|
|
@@ -256,6 +263,7 @@ export function IntersectionDomainDtoWithAccountDtoFromJSONTyped(json: any, igno
|
|
|
256
263
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
257
264
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json['leadPriceNegotiator']),
|
|
258
265
|
'auction': DomainAuctionDtoFromJSON(json['auction']),
|
|
266
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
259
267
|
'account': AccountDtoFromJSON(json['account']),
|
|
260
268
|
};
|
|
261
269
|
}
|
|
@@ -291,6 +299,7 @@ export function IntersectionDomainDtoWithAccountDtoToJSONTyped(value?: Intersect
|
|
|
291
299
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
292
300
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON(value['leadPriceNegotiator']),
|
|
293
301
|
'auction': DomainAuctionDtoToJSON(value['auction']),
|
|
302
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
294
303
|
'account': AccountDtoToJSON(value['account']),
|
|
295
304
|
};
|
|
296
305
|
}
|
|
@@ -190,6 +190,12 @@ export interface IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto {
|
|
|
190
190
|
* @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
|
|
191
191
|
*/
|
|
192
192
|
auction: DomainAuctionDto | null;
|
|
193
|
+
/**
|
|
194
|
+
* Whether the domain has an open lead
|
|
195
|
+
* @type {boolean}
|
|
196
|
+
* @memberof IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto
|
|
197
|
+
*/
|
|
198
|
+
hasAcceptedLead: boolean;
|
|
193
199
|
/**
|
|
194
200
|
*
|
|
195
201
|
* @type {AccountDto}
|
|
@@ -228,6 +234,7 @@ export function instanceOfIntersectionDomainDtoWithAccountDtoWithAuctionInfoDto(
|
|
|
228
234
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined) return false;
|
|
229
235
|
if (!('leadPriceNegotiator' in value) || value['leadPriceNegotiator'] === undefined) return false;
|
|
230
236
|
if (!('auction' in value) || value['auction'] === undefined) return false;
|
|
237
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined) return false;
|
|
231
238
|
if (!('account' in value) || value['account'] === undefined) return false;
|
|
232
239
|
if (!('hasAuction' in value) || value['hasAuction'] === undefined) return false;
|
|
233
240
|
return true;
|
|
@@ -263,6 +270,7 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoFromJSONTyp
|
|
|
263
270
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
264
271
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json['leadPriceNegotiator']),
|
|
265
272
|
'auction': DomainAuctionDtoFromJSON(json['auction']),
|
|
273
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
266
274
|
'account': AccountDtoFromJSON(json['account']),
|
|
267
275
|
'hasAuction': json['hasAuction'],
|
|
268
276
|
};
|
|
@@ -299,6 +307,7 @@ export function IntersectionDomainDtoWithAccountDtoWithAuctionInfoDtoToJSONTyped
|
|
|
299
307
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
300
308
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON(value['leadPriceNegotiator']),
|
|
301
309
|
'auction': DomainAuctionDtoToJSON(value['auction']),
|
|
310
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
302
311
|
'account': AccountDtoToJSON(value['account']),
|
|
303
312
|
'hasAuction': value['hasAuction'],
|
|
304
313
|
};
|
|
@@ -190,6 +190,12 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
|
|
|
190
190
|
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
191
191
|
*/
|
|
192
192
|
auction: DomainAuctionDto | null;
|
|
193
|
+
/**
|
|
194
|
+
* Whether the domain has an open lead
|
|
195
|
+
* @type {boolean}
|
|
196
|
+
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
197
|
+
*/
|
|
198
|
+
hasAcceptedLead: boolean;
|
|
193
199
|
/**
|
|
194
200
|
*
|
|
195
201
|
* @type {AccountDto}
|
|
@@ -228,6 +234,7 @@ export function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(val
|
|
|
228
234
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined) return false;
|
|
229
235
|
if (!('leadPriceNegotiator' in value) || value['leadPriceNegotiator'] === undefined) return false;
|
|
230
236
|
if (!('auction' in value) || value['auction'] === undefined) return false;
|
|
237
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined) return false;
|
|
231
238
|
if (!('hijacker' in value) || value['hijacker'] === undefined) return false;
|
|
232
239
|
if (!('account' in value) || value['account'] === undefined) return false;
|
|
233
240
|
return true;
|
|
@@ -263,6 +270,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(
|
|
|
263
270
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
264
271
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json['leadPriceNegotiator']),
|
|
265
272
|
'auction': DomainAuctionDtoFromJSON(json['auction']),
|
|
273
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
266
274
|
'hijacker': AccountDtoFromJSON(json['hijacker']),
|
|
267
275
|
'account': AccountDtoFromJSON(json['account']),
|
|
268
276
|
};
|
|
@@ -299,6 +307,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSONTyped(va
|
|
|
299
307
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
300
308
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON(value['leadPriceNegotiator']),
|
|
301
309
|
'auction': DomainAuctionDtoToJSON(value['auction']),
|
|
310
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
302
311
|
'hijacker': AccountDtoToJSON(value['hijacker']),
|
|
303
312
|
'account': AccountDtoToJSON(value['account']),
|
|
304
313
|
};
|
|
@@ -196,6 +196,12 @@ export interface IntersectionDomainDtoWithSeoMetricsDto {
|
|
|
196
196
|
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
197
197
|
*/
|
|
198
198
|
auction: DomainAuctionDto | null;
|
|
199
|
+
/**
|
|
200
|
+
* Whether the domain has an open lead
|
|
201
|
+
* @type {boolean}
|
|
202
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDto
|
|
203
|
+
*/
|
|
204
|
+
hasAcceptedLead: boolean;
|
|
199
205
|
}
|
|
200
206
|
|
|
201
207
|
/**
|
|
@@ -223,6 +229,7 @@ export function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object):
|
|
|
223
229
|
if (!('allowThirdPartySalesDataSharing' in value) || value['allowThirdPartySalesDataSharing'] === undefined) return false;
|
|
224
230
|
if (!('leadPriceNegotiator' in value) || value['leadPriceNegotiator'] === undefined) return false;
|
|
225
231
|
if (!('auction' in value) || value['auction'] === undefined) return false;
|
|
232
|
+
if (!('hasAcceptedLead' in value) || value['hasAcceptedLead'] === undefined) return false;
|
|
226
233
|
return true;
|
|
227
234
|
}
|
|
228
235
|
|
|
@@ -257,6 +264,7 @@ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, i
|
|
|
257
264
|
'allowThirdPartySalesDataSharing': json['allowThirdPartySalesDataSharing'],
|
|
258
265
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoFromJSON(json['leadPriceNegotiator']),
|
|
259
266
|
'auction': DomainAuctionDtoFromJSON(json['auction']),
|
|
267
|
+
'hasAcceptedLead': json['hasAcceptedLead'],
|
|
260
268
|
};
|
|
261
269
|
}
|
|
262
270
|
|
|
@@ -292,6 +300,7 @@ export function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: Inters
|
|
|
292
300
|
'allowThirdPartySalesDataSharing': value['allowThirdPartySalesDataSharing'],
|
|
293
301
|
'leadPriceNegotiator': DomainLeadPriceNegotiatorAiAgentConfigurationDtoToJSON(value['leadPriceNegotiator']),
|
|
294
302
|
'auction': DomainAuctionDtoToJSON(value['auction']),
|
|
303
|
+
'hasAcceptedLead': value['hasAcceptedLead'],
|
|
295
304
|
};
|
|
296
305
|
}
|
|
297
306
|
|