@randock/nameshift-api-client 0.0.453 → 0.0.454
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/.openapi-generator/FILES +1 -1
- package/README.md +3 -3
- package/dist/models/{IntersectionDomainDtoWithSeoMetricsDto.d.ts → IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto.d.ts} +61 -43
- package/dist/models/{IntersectionDomainDtoWithSeoMetricsDto.js → IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto.js} +30 -15
- package/dist/models/List200Response2.d.ts +3 -3
- package/dist/models/List200Response2.js +3 -3
- package/dist/models/index.d.ts +1 -1
- package/dist/models/index.js +1 -1
- package/package.json +1 -1
- package/src/models/{IntersectionDomainDtoWithSeoMetricsDto.ts → IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto.ts} +67 -45
- package/src/models/List200Response2.ts +10 -10
- package/src/models/index.ts +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -295,7 +295,7 @@ src/models/HttpException.ts
|
|
|
295
295
|
src/models/IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto.ts
|
|
296
296
|
src/models/IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto.ts
|
|
297
297
|
src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts
|
|
298
|
-
src/models/
|
|
298
|
+
src/models/IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto.ts
|
|
299
299
|
src/models/IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto.ts
|
|
300
300
|
src/models/IntersectionTaskListTaskDto.ts
|
|
301
301
|
src/models/IntersectionTaskListTaskDtoData.ts
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.454
|
|
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.454 --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
|
+
5b8bb0cacdf2e5c77d1ab6862de7d940e23828cfaaa2d961ae97b216e6a11166444598d7f51511251452ee730ca22924
|
|
@@ -19,206 +19,224 @@ import type { DomainLeadPriceNegotiatorAiAgentConfigurationDto } from './DomainL
|
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
21
|
* @export
|
|
22
|
-
* @interface
|
|
22
|
+
* @interface IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
23
23
|
*/
|
|
24
|
-
export interface
|
|
24
|
+
export interface IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
25
25
|
/**
|
|
26
26
|
* Unique identifier of the domain.
|
|
27
27
|
* @type {string}
|
|
28
|
-
* @memberof
|
|
28
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
29
29
|
*/
|
|
30
30
|
id: string;
|
|
31
31
|
/**
|
|
32
32
|
* Account ID of the domain owner.
|
|
33
33
|
* @type {string}
|
|
34
|
-
* @memberof
|
|
34
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
35
35
|
*/
|
|
36
36
|
accountId: string;
|
|
37
37
|
/**
|
|
38
38
|
* Account ID of the hijacker managing the domain on behalf of the owner, if any.
|
|
39
39
|
* @type {string}
|
|
40
|
-
* @memberof
|
|
40
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
41
41
|
*/
|
|
42
42
|
hijackerId: string | null;
|
|
43
43
|
/**
|
|
44
44
|
* Top-level domain suffix (e.g. com, nl).
|
|
45
45
|
* @type {string}
|
|
46
|
-
* @memberof
|
|
46
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
47
47
|
*/
|
|
48
48
|
tld: string;
|
|
49
49
|
/**
|
|
50
50
|
* Whether the domain ownership is verified by the owner (via NS3 or TXT record).
|
|
51
51
|
* @type {boolean}
|
|
52
|
-
* @memberof
|
|
52
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
53
53
|
*/
|
|
54
54
|
verified: boolean;
|
|
55
55
|
/**
|
|
56
56
|
* Whether the required nameservers (NS1, NS2) are configured.
|
|
57
57
|
* @type {boolean}
|
|
58
|
-
* @memberof
|
|
58
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
59
59
|
*/
|
|
60
60
|
nameservers: boolean;
|
|
61
61
|
/**
|
|
62
62
|
* Timestamp of the last nameserver verification check.
|
|
63
63
|
* @type {Date}
|
|
64
|
-
* @memberof
|
|
64
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
65
65
|
*/
|
|
66
66
|
nameserversUpdatedAt: Date | null;
|
|
67
67
|
/**
|
|
68
68
|
* Whether the domain currently points to the platform server.
|
|
69
69
|
* @type {boolean}
|
|
70
|
-
* @memberof
|
|
70
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
71
71
|
*/
|
|
72
72
|
pointsToOurServer: boolean | null;
|
|
73
73
|
/**
|
|
74
74
|
* Timestamp of the last check whether the domain points to the platform server.
|
|
75
75
|
* @type {Date}
|
|
76
|
-
* @memberof
|
|
76
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
77
77
|
*/
|
|
78
78
|
pointsToOurServerUpdatedAt: Date | null;
|
|
79
79
|
/**
|
|
80
80
|
* ASCII punycode domain name (e.g. example.com, xn--maana-pta.com).
|
|
81
81
|
* @type {string}
|
|
82
|
-
* @memberof
|
|
82
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
83
83
|
*/
|
|
84
84
|
name: string;
|
|
85
85
|
/**
|
|
86
86
|
* Unicode display domain name (e.g. example.com, mañana.com).
|
|
87
87
|
* @type {string}
|
|
88
|
-
* @memberof
|
|
88
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
89
89
|
*/
|
|
90
90
|
displayName: string;
|
|
91
91
|
/**
|
|
92
92
|
* ISO 4217 currency code used for domain pricing.
|
|
93
93
|
* @type {string}
|
|
94
|
-
* @memberof
|
|
94
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
95
95
|
*/
|
|
96
96
|
currencyCode: string;
|
|
97
97
|
/**
|
|
98
98
|
* Buy-it-now (BIN) price for immediate purchase.
|
|
99
99
|
* @type {MoneyDto}
|
|
100
|
-
* @memberof
|
|
100
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
101
101
|
*/
|
|
102
102
|
buyNow: MoneyDto;
|
|
103
103
|
/**
|
|
104
104
|
* Lease-to-own payment plan configuration.
|
|
105
105
|
* @type {LeaseToOwnConfigurationDto}
|
|
106
|
-
* @memberof
|
|
106
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
107
107
|
*/
|
|
108
108
|
leaseToOwn: LeaseToOwnConfigurationDto;
|
|
109
109
|
/**
|
|
110
110
|
* Monthly rent subscription configuration.
|
|
111
111
|
* @type {RentConfigurationDto}
|
|
112
|
-
* @memberof
|
|
112
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
113
113
|
*/
|
|
114
114
|
rent: RentConfigurationDto;
|
|
115
115
|
/**
|
|
116
116
|
* Public landing page display and lead capture settings.
|
|
117
117
|
* @type {LandingPageSettingsDto}
|
|
118
|
-
* @memberof
|
|
118
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
119
119
|
*/
|
|
120
120
|
landingPageSettings: LandingPageSettingsDto;
|
|
121
121
|
/**
|
|
122
122
|
* Minimum offer amount buyers may submit.
|
|
123
123
|
* @type {MoneyDto}
|
|
124
|
-
* @memberof
|
|
124
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
125
125
|
*/
|
|
126
126
|
minOffer: MoneyDto;
|
|
127
127
|
/**
|
|
128
128
|
* Timestamp when the domain was created in the platform.
|
|
129
129
|
* @type {Date}
|
|
130
|
-
* @memberof
|
|
130
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
131
131
|
*/
|
|
132
132
|
createdAt: Date;
|
|
133
133
|
/**
|
|
134
134
|
* Timestamp when the domain was deleted, if applicable.
|
|
135
135
|
* @type {Date}
|
|
136
|
-
* @memberof
|
|
136
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
137
137
|
*/
|
|
138
138
|
deletedAt: Date | null;
|
|
139
139
|
/**
|
|
140
140
|
* Total pageviews tracked for this domain, or zero if none are tracked.
|
|
141
141
|
* @type {number}
|
|
142
|
-
* @memberof
|
|
142
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
143
143
|
*/
|
|
144
144
|
pageviews: number;
|
|
145
145
|
/**
|
|
146
146
|
* Whether third-party sales data sharing is enabled for this domain.
|
|
147
147
|
* @type {boolean}
|
|
148
|
-
* @memberof
|
|
148
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
149
149
|
*/
|
|
150
150
|
allowThirdPartySalesDataSharing: boolean | null;
|
|
151
151
|
/**
|
|
152
152
|
* Per-domain AI price negotiator agent configuration.
|
|
153
153
|
* @type {DomainLeadPriceNegotiatorAiAgentConfigurationDto}
|
|
154
|
-
* @memberof
|
|
154
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
155
155
|
*/
|
|
156
156
|
leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
|
|
157
157
|
/**
|
|
158
158
|
* Active or most recent auction details, when present.
|
|
159
159
|
* @type {DomainAuctionDto}
|
|
160
|
-
* @memberof
|
|
160
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
161
161
|
*/
|
|
162
162
|
auction: DomainAuctionDto | null;
|
|
163
163
|
/**
|
|
164
164
|
* Fee charged to the seller for running a paid auction.
|
|
165
165
|
* @type {MoneyDto}
|
|
166
|
-
* @memberof
|
|
166
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
167
167
|
*/
|
|
168
168
|
paidAuctionPrice: MoneyDto;
|
|
169
169
|
/**
|
|
170
170
|
* Whether the domain currently has an accepted lead.
|
|
171
171
|
* @type {boolean}
|
|
172
|
-
* @memberof
|
|
172
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
173
173
|
*/
|
|
174
174
|
hasAcceptedLead: boolean;
|
|
175
175
|
/**
|
|
176
176
|
* Whether a new auction can be created for this domain.
|
|
177
177
|
* @type {boolean}
|
|
178
|
-
* @memberof
|
|
178
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
179
179
|
*/
|
|
180
180
|
canCreateAuction: boolean;
|
|
181
181
|
/**
|
|
182
182
|
* Whether the domain can be deleted by the seller.
|
|
183
183
|
* @type {boolean}
|
|
184
|
-
* @memberof
|
|
184
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
185
185
|
*/
|
|
186
186
|
isDeleteable: boolean;
|
|
187
187
|
/**
|
|
188
188
|
* Whether the domain is currently locked from other sales.
|
|
189
189
|
* @type {boolean}
|
|
190
|
-
* @memberof
|
|
190
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
191
191
|
*/
|
|
192
192
|
isLocked: boolean;
|
|
193
193
|
/**
|
|
194
194
|
* End date of the current continuous lock period, or null if not locked.
|
|
195
195
|
* @type {Date}
|
|
196
|
-
* @memberof
|
|
196
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
197
197
|
*/
|
|
198
198
|
lockedUntil: Date | null;
|
|
199
199
|
/**
|
|
200
200
|
* Whether an admin picked this domain for the public showcase on the website.
|
|
201
201
|
* @type {boolean}
|
|
202
|
-
* @memberof
|
|
202
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
203
203
|
*/
|
|
204
204
|
showcased: boolean;
|
|
205
205
|
/**
|
|
206
206
|
* Marketplace this domain resolves to on our nameservers, overriding the account default. Null means the account default applies; "nameshift" means the domain opts out of it and stays on our own landing page.
|
|
207
207
|
* @type {string}
|
|
208
|
-
* @memberof
|
|
208
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
209
209
|
*/
|
|
210
|
-
marketplace:
|
|
210
|
+
marketplace: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum | null;
|
|
211
211
|
/**
|
|
212
212
|
* SEO metrics for the domain from Moz, Majestic, and historical sources.
|
|
213
213
|
* @type {SeoMetricsDto}
|
|
214
|
-
* @memberof
|
|
214
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
215
215
|
*/
|
|
216
216
|
seoMetrics: SeoMetricsDto | null;
|
|
217
|
+
/**
|
|
218
|
+
* Marketplace this domain resolves to with the account default already applied, so a consumer never has to combine the two. Null means we serve the domain ourselves, whether it inherited that or opted out of a default with "nameshift".
|
|
219
|
+
* @type {string}
|
|
220
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
221
|
+
*/
|
|
222
|
+
routedTo: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum | null;
|
|
217
223
|
}
|
|
218
224
|
/**
|
|
219
225
|
* @export
|
|
220
226
|
*/
|
|
221
|
-
export declare const
|
|
227
|
+
export declare const IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum: {
|
|
228
|
+
readonly NAMESHIFT: "nameshift";
|
|
229
|
+
readonly SEDO: "sedo";
|
|
230
|
+
readonly AFTERNIC: "afternic";
|
|
231
|
+
readonly ATOM: "atom";
|
|
232
|
+
readonly SPACESHIP: "spaceship";
|
|
233
|
+
readonly NAMECLUB: "nameclub";
|
|
234
|
+
};
|
|
235
|
+
export type IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum = typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum[keyof typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum];
|
|
236
|
+
/**
|
|
237
|
+
* @export
|
|
238
|
+
*/
|
|
239
|
+
export declare const IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum: {
|
|
222
240
|
readonly NAMESHIFT: "nameshift";
|
|
223
241
|
readonly SEDO: "sedo";
|
|
224
242
|
readonly AFTERNIC: "afternic";
|
|
@@ -226,12 +244,12 @@ export declare const IntersectionDomainDtoWithSeoMetricsDtoMarketplaceEnum: {
|
|
|
226
244
|
readonly SPACESHIP: "spaceship";
|
|
227
245
|
readonly NAMECLUB: "nameclub";
|
|
228
246
|
};
|
|
229
|
-
export type
|
|
247
|
+
export type IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum = typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum[keyof typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum];
|
|
230
248
|
/**
|
|
231
|
-
* Check if a given object implements the
|
|
249
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto interface.
|
|
232
250
|
*/
|
|
233
|
-
export declare function
|
|
234
|
-
export declare function
|
|
235
|
-
export declare function
|
|
236
|
-
export declare function
|
|
237
|
-
export declare function
|
|
251
|
+
export declare function instanceOfIntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto(value: object): value is IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto;
|
|
252
|
+
export declare function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON(json: any): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto;
|
|
253
|
+
export declare function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto;
|
|
254
|
+
export declare function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON(json: any): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto;
|
|
255
|
+
export declare function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped(value?: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
* Do not edit the class manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
16
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum = exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum = void 0;
|
|
17
|
+
exports.instanceOfIntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto = instanceOfIntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto;
|
|
18
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON = IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON;
|
|
19
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped = IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped;
|
|
20
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON = IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON;
|
|
21
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped = IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped;
|
|
22
22
|
var MoneyDto_1 = require("./MoneyDto");
|
|
23
23
|
var RentConfigurationDto_1 = require("./RentConfigurationDto");
|
|
24
24
|
var DomainAuctionDto_1 = require("./DomainAuctionDto");
|
|
@@ -29,7 +29,7 @@ var DomainLeadPriceNegotiatorAiAgentConfigurationDto_1 = require("./DomainLeadPr
|
|
|
29
29
|
/**
|
|
30
30
|
* @export
|
|
31
31
|
*/
|
|
32
|
-
exports.
|
|
32
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum = {
|
|
33
33
|
NAMESHIFT: 'nameshift',
|
|
34
34
|
SEDO: 'sedo',
|
|
35
35
|
AFTERNIC: 'afternic',
|
|
@@ -38,9 +38,20 @@ exports.IntersectionDomainDtoWithSeoMetricsDtoMarketplaceEnum = {
|
|
|
38
38
|
NAMECLUB: 'nameclub'
|
|
39
39
|
};
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* @export
|
|
42
42
|
*/
|
|
43
|
-
|
|
43
|
+
exports.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum = {
|
|
44
|
+
NAMESHIFT: 'nameshift',
|
|
45
|
+
SEDO: 'sedo',
|
|
46
|
+
AFTERNIC: 'afternic',
|
|
47
|
+
ATOM: 'atom',
|
|
48
|
+
SPACESHIP: 'spaceship',
|
|
49
|
+
NAMECLUB: 'nameclub'
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto interface.
|
|
53
|
+
*/
|
|
54
|
+
function instanceOfIntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto(value) {
|
|
44
55
|
if (!('id' in value) || value['id'] === undefined)
|
|
45
56
|
return false;
|
|
46
57
|
if (!('accountId' in value) || value['accountId'] === undefined)
|
|
@@ -105,12 +116,14 @@ function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value) {
|
|
|
105
116
|
return false;
|
|
106
117
|
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined)
|
|
107
118
|
return false;
|
|
119
|
+
if (!('routedTo' in value) || value['routedTo'] === undefined)
|
|
120
|
+
return false;
|
|
108
121
|
return true;
|
|
109
122
|
}
|
|
110
|
-
function
|
|
111
|
-
return
|
|
123
|
+
function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON(json) {
|
|
124
|
+
return IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped(json, false);
|
|
112
125
|
}
|
|
113
|
-
function
|
|
126
|
+
function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
114
127
|
if (json == null) {
|
|
115
128
|
return json;
|
|
116
129
|
}
|
|
@@ -147,12 +160,13 @@ function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json, ignoreDiscrim
|
|
|
147
160
|
'showcased': json['showcased'],
|
|
148
161
|
'marketplace': json['marketplace'],
|
|
149
162
|
'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoFromJSON)(json['seoMetrics']),
|
|
163
|
+
'routedTo': json['routedTo'],
|
|
150
164
|
};
|
|
151
165
|
}
|
|
152
|
-
function
|
|
153
|
-
return
|
|
166
|
+
function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON(json) {
|
|
167
|
+
return IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped(json, false);
|
|
154
168
|
}
|
|
155
|
-
function
|
|
169
|
+
function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped(value, ignoreDiscriminator) {
|
|
156
170
|
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
157
171
|
if (value == null) {
|
|
158
172
|
return value;
|
|
@@ -190,5 +204,6 @@ function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value, ignoreDiscrimi
|
|
|
190
204
|
'showcased': value['showcased'],
|
|
191
205
|
'marketplace': value['marketplace'],
|
|
192
206
|
'seoMetrics': (0, SeoMetricsDto_1.SeoMetricsDtoToJSON)(value['seoMetrics']),
|
|
207
|
+
'routedTo': value['routedTo'],
|
|
193
208
|
};
|
|
194
209
|
}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import type { PaginateResponseLinks } from './PaginateResponseLinks';
|
|
13
|
-
import type {
|
|
13
|
+
import type { IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto } from './IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto';
|
|
14
14
|
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
15
15
|
/**
|
|
16
16
|
*
|
|
@@ -20,10 +20,10 @@ import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
|
20
20
|
export interface List200Response2 {
|
|
21
21
|
/**
|
|
22
22
|
*
|
|
23
|
-
* @type {Array<
|
|
23
|
+
* @type {Array<IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto>}
|
|
24
24
|
* @memberof List200Response2
|
|
25
25
|
*/
|
|
26
|
-
data: Array<
|
|
26
|
+
data: Array<IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto>;
|
|
27
27
|
/**
|
|
28
28
|
*
|
|
29
29
|
* @type {PaginateResponseMeta}
|
|
@@ -19,7 +19,7 @@ exports.List200Response2FromJSONTyped = List200Response2FromJSONTyped;
|
|
|
19
19
|
exports.List200Response2ToJSON = List200Response2ToJSON;
|
|
20
20
|
exports.List200Response2ToJSONTyped = List200Response2ToJSONTyped;
|
|
21
21
|
var PaginateResponseLinks_1 = require("./PaginateResponseLinks");
|
|
22
|
-
var
|
|
22
|
+
var IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto_1 = require("./IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto");
|
|
23
23
|
var PaginateResponseMeta_1 = require("./PaginateResponseMeta");
|
|
24
24
|
/**
|
|
25
25
|
* Check if a given object implements the List200Response2 interface.
|
|
@@ -41,7 +41,7 @@ function List200Response2FromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
return json;
|
|
42
42
|
}
|
|
43
43
|
return {
|
|
44
|
-
'data': (json['data'].map(
|
|
44
|
+
'data': (json['data'].map(IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto_1.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON)),
|
|
45
45
|
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaFromJSON)(json['meta']),
|
|
46
46
|
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksFromJSON)(json['links']),
|
|
47
47
|
};
|
|
@@ -55,7 +55,7 @@ function List200Response2ToJSONTyped(value, ignoreDiscriminator) {
|
|
|
55
55
|
return value;
|
|
56
56
|
}
|
|
57
57
|
return {
|
|
58
|
-
'data': (value['data'].map(
|
|
58
|
+
'data': (value['data'].map(IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto_1.IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON)),
|
|
59
59
|
'meta': (0, PaginateResponseMeta_1.PaginateResponseMetaToJSON)(value['meta']),
|
|
60
60
|
'links': (0, PaginateResponseLinks_1.PaginateResponseLinksToJSON)(value['links']),
|
|
61
61
|
};
|
package/dist/models/index.d.ts
CHANGED
|
@@ -256,7 +256,7 @@ export * from './HttpException';
|
|
|
256
256
|
export * from './IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto';
|
|
257
257
|
export * from './IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto';
|
|
258
258
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
259
|
-
export * from './
|
|
259
|
+
export * from './IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto';
|
|
260
260
|
export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
|
|
261
261
|
export * from './IntersectionTaskListTaskDto';
|
|
262
262
|
export * from './IntersectionTaskListTaskDtoData';
|
package/dist/models/index.js
CHANGED
|
@@ -274,7 +274,7 @@ __exportStar(require("./HttpException"), exports);
|
|
|
274
274
|
__exportStar(require("./IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto"), exports);
|
|
275
275
|
__exportStar(require("./IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto"), exports);
|
|
276
276
|
__exportStar(require("./IntersectionDomainDtoWithHijackerDtoWithAccountDto"), exports);
|
|
277
|
-
__exportStar(require("./
|
|
277
|
+
__exportStar(require("./IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto"), exports);
|
|
278
278
|
__exportStar(require("./IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto"), exports);
|
|
279
279
|
__exportStar(require("./IntersectionTaskListTaskDto"), exports);
|
|
280
280
|
__exportStar(require("./IntersectionTaskListTaskDtoData"), exports);
|
package/package.json
CHANGED
|
@@ -66,208 +66,227 @@ import {
|
|
|
66
66
|
/**
|
|
67
67
|
*
|
|
68
68
|
* @export
|
|
69
|
-
* @interface
|
|
69
|
+
* @interface IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
70
70
|
*/
|
|
71
|
-
export interface
|
|
71
|
+
export interface IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
72
72
|
/**
|
|
73
73
|
* Unique identifier of the domain.
|
|
74
74
|
* @type {string}
|
|
75
|
-
* @memberof
|
|
75
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
76
76
|
*/
|
|
77
77
|
id: string;
|
|
78
78
|
/**
|
|
79
79
|
* Account ID of the domain owner.
|
|
80
80
|
* @type {string}
|
|
81
|
-
* @memberof
|
|
81
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
82
82
|
*/
|
|
83
83
|
accountId: string;
|
|
84
84
|
/**
|
|
85
85
|
* Account ID of the hijacker managing the domain on behalf of the owner, if any.
|
|
86
86
|
* @type {string}
|
|
87
|
-
* @memberof
|
|
87
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
88
88
|
*/
|
|
89
89
|
hijackerId: string | null;
|
|
90
90
|
/**
|
|
91
91
|
* Top-level domain suffix (e.g. com, nl).
|
|
92
92
|
* @type {string}
|
|
93
|
-
* @memberof
|
|
93
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
94
94
|
*/
|
|
95
95
|
tld: string;
|
|
96
96
|
/**
|
|
97
97
|
* Whether the domain ownership is verified by the owner (via NS3 or TXT record).
|
|
98
98
|
* @type {boolean}
|
|
99
|
-
* @memberof
|
|
99
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
100
100
|
*/
|
|
101
101
|
verified: boolean;
|
|
102
102
|
/**
|
|
103
103
|
* Whether the required nameservers (NS1, NS2) are configured.
|
|
104
104
|
* @type {boolean}
|
|
105
|
-
* @memberof
|
|
105
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
106
106
|
*/
|
|
107
107
|
nameservers: boolean;
|
|
108
108
|
/**
|
|
109
109
|
* Timestamp of the last nameserver verification check.
|
|
110
110
|
* @type {Date}
|
|
111
|
-
* @memberof
|
|
111
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
112
112
|
*/
|
|
113
113
|
nameserversUpdatedAt: Date | null;
|
|
114
114
|
/**
|
|
115
115
|
* Whether the domain currently points to the platform server.
|
|
116
116
|
* @type {boolean}
|
|
117
|
-
* @memberof
|
|
117
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
118
118
|
*/
|
|
119
119
|
pointsToOurServer: boolean | null;
|
|
120
120
|
/**
|
|
121
121
|
* Timestamp of the last check whether the domain points to the platform server.
|
|
122
122
|
* @type {Date}
|
|
123
|
-
* @memberof
|
|
123
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
124
124
|
*/
|
|
125
125
|
pointsToOurServerUpdatedAt: Date | null;
|
|
126
126
|
/**
|
|
127
127
|
* ASCII punycode domain name (e.g. example.com, xn--maana-pta.com).
|
|
128
128
|
* @type {string}
|
|
129
|
-
* @memberof
|
|
129
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
130
130
|
*/
|
|
131
131
|
name: string;
|
|
132
132
|
/**
|
|
133
133
|
* Unicode display domain name (e.g. example.com, mañana.com).
|
|
134
134
|
* @type {string}
|
|
135
|
-
* @memberof
|
|
135
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
136
136
|
*/
|
|
137
137
|
displayName: string;
|
|
138
138
|
/**
|
|
139
139
|
* ISO 4217 currency code used for domain pricing.
|
|
140
140
|
* @type {string}
|
|
141
|
-
* @memberof
|
|
141
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
142
142
|
*/
|
|
143
143
|
currencyCode: string;
|
|
144
144
|
/**
|
|
145
145
|
* Buy-it-now (BIN) price for immediate purchase.
|
|
146
146
|
* @type {MoneyDto}
|
|
147
|
-
* @memberof
|
|
147
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
148
148
|
*/
|
|
149
149
|
buyNow: MoneyDto;
|
|
150
150
|
/**
|
|
151
151
|
* Lease-to-own payment plan configuration.
|
|
152
152
|
* @type {LeaseToOwnConfigurationDto}
|
|
153
|
-
* @memberof
|
|
153
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
154
154
|
*/
|
|
155
155
|
leaseToOwn: LeaseToOwnConfigurationDto;
|
|
156
156
|
/**
|
|
157
157
|
* Monthly rent subscription configuration.
|
|
158
158
|
* @type {RentConfigurationDto}
|
|
159
|
-
* @memberof
|
|
159
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
160
160
|
*/
|
|
161
161
|
rent: RentConfigurationDto;
|
|
162
162
|
/**
|
|
163
163
|
* Public landing page display and lead capture settings.
|
|
164
164
|
* @type {LandingPageSettingsDto}
|
|
165
|
-
* @memberof
|
|
165
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
166
166
|
*/
|
|
167
167
|
landingPageSettings: LandingPageSettingsDto;
|
|
168
168
|
/**
|
|
169
169
|
* Minimum offer amount buyers may submit.
|
|
170
170
|
* @type {MoneyDto}
|
|
171
|
-
* @memberof
|
|
171
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
172
172
|
*/
|
|
173
173
|
minOffer: MoneyDto;
|
|
174
174
|
/**
|
|
175
175
|
* Timestamp when the domain was created in the platform.
|
|
176
176
|
* @type {Date}
|
|
177
|
-
* @memberof
|
|
177
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
178
178
|
*/
|
|
179
179
|
createdAt: Date;
|
|
180
180
|
/**
|
|
181
181
|
* Timestamp when the domain was deleted, if applicable.
|
|
182
182
|
* @type {Date}
|
|
183
|
-
* @memberof
|
|
183
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
184
184
|
*/
|
|
185
185
|
deletedAt: Date | null;
|
|
186
186
|
/**
|
|
187
187
|
* Total pageviews tracked for this domain, or zero if none are tracked.
|
|
188
188
|
* @type {number}
|
|
189
|
-
* @memberof
|
|
189
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
190
190
|
*/
|
|
191
191
|
pageviews: number;
|
|
192
192
|
/**
|
|
193
193
|
* Whether third-party sales data sharing is enabled for this domain.
|
|
194
194
|
* @type {boolean}
|
|
195
|
-
* @memberof
|
|
195
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
196
196
|
*/
|
|
197
197
|
allowThirdPartySalesDataSharing: boolean | null;
|
|
198
198
|
/**
|
|
199
199
|
* Per-domain AI price negotiator agent configuration.
|
|
200
200
|
* @type {DomainLeadPriceNegotiatorAiAgentConfigurationDto}
|
|
201
|
-
* @memberof
|
|
201
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
202
202
|
*/
|
|
203
203
|
leadPriceNegotiator: DomainLeadPriceNegotiatorAiAgentConfigurationDto | null;
|
|
204
204
|
/**
|
|
205
205
|
* Active or most recent auction details, when present.
|
|
206
206
|
* @type {DomainAuctionDto}
|
|
207
|
-
* @memberof
|
|
207
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
208
208
|
*/
|
|
209
209
|
auction: DomainAuctionDto | null;
|
|
210
210
|
/**
|
|
211
211
|
* Fee charged to the seller for running a paid auction.
|
|
212
212
|
* @type {MoneyDto}
|
|
213
|
-
* @memberof
|
|
213
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
214
214
|
*/
|
|
215
215
|
paidAuctionPrice: MoneyDto;
|
|
216
216
|
/**
|
|
217
217
|
* Whether the domain currently has an accepted lead.
|
|
218
218
|
* @type {boolean}
|
|
219
|
-
* @memberof
|
|
219
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
220
220
|
*/
|
|
221
221
|
hasAcceptedLead: boolean;
|
|
222
222
|
/**
|
|
223
223
|
* Whether a new auction can be created for this domain.
|
|
224
224
|
* @type {boolean}
|
|
225
|
-
* @memberof
|
|
225
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
226
226
|
*/
|
|
227
227
|
canCreateAuction: boolean;
|
|
228
228
|
/**
|
|
229
229
|
* Whether the domain can be deleted by the seller.
|
|
230
230
|
* @type {boolean}
|
|
231
|
-
* @memberof
|
|
231
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
232
232
|
*/
|
|
233
233
|
isDeleteable: boolean;
|
|
234
234
|
/**
|
|
235
235
|
* Whether the domain is currently locked from other sales.
|
|
236
236
|
* @type {boolean}
|
|
237
|
-
* @memberof
|
|
237
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
238
238
|
*/
|
|
239
239
|
isLocked: boolean;
|
|
240
240
|
/**
|
|
241
241
|
* End date of the current continuous lock period, or null if not locked.
|
|
242
242
|
* @type {Date}
|
|
243
|
-
* @memberof
|
|
243
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
244
244
|
*/
|
|
245
245
|
lockedUntil: Date | null;
|
|
246
246
|
/**
|
|
247
247
|
* Whether an admin picked this domain for the public showcase on the website.
|
|
248
248
|
* @type {boolean}
|
|
249
|
-
* @memberof
|
|
249
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
250
250
|
*/
|
|
251
251
|
showcased: boolean;
|
|
252
252
|
/**
|
|
253
253
|
* Marketplace this domain resolves to on our nameservers, overriding the account default. Null means the account default applies; "nameshift" means the domain opts out of it and stays on our own landing page.
|
|
254
254
|
* @type {string}
|
|
255
|
-
* @memberof
|
|
255
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
256
256
|
*/
|
|
257
|
-
marketplace:
|
|
257
|
+
marketplace: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum | null;
|
|
258
258
|
/**
|
|
259
259
|
* SEO metrics for the domain from Moz, Majestic, and historical sources.
|
|
260
260
|
* @type {SeoMetricsDto}
|
|
261
|
-
* @memberof
|
|
261
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
262
262
|
*/
|
|
263
263
|
seoMetrics: SeoMetricsDto | null;
|
|
264
|
+
/**
|
|
265
|
+
* Marketplace this domain resolves to with the account default already applied, so a consumer never has to combine the two. Null means we serve the domain ourselves, whether it inherited that or opted out of a default with "nameshift".
|
|
266
|
+
* @type {string}
|
|
267
|
+
* @memberof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto
|
|
268
|
+
*/
|
|
269
|
+
routedTo: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum | null;
|
|
264
270
|
}
|
|
265
271
|
|
|
266
272
|
|
|
267
273
|
/**
|
|
268
274
|
* @export
|
|
269
275
|
*/
|
|
270
|
-
export const
|
|
276
|
+
export const IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum = {
|
|
277
|
+
NAMESHIFT: 'nameshift',
|
|
278
|
+
SEDO: 'sedo',
|
|
279
|
+
AFTERNIC: 'afternic',
|
|
280
|
+
ATOM: 'atom',
|
|
281
|
+
SPACESHIP: 'spaceship',
|
|
282
|
+
NAMECLUB: 'nameclub'
|
|
283
|
+
} as const;
|
|
284
|
+
export type IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum = typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum[keyof typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoMarketplaceEnum];
|
|
285
|
+
|
|
286
|
+
/**
|
|
287
|
+
* @export
|
|
288
|
+
*/
|
|
289
|
+
export const IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum = {
|
|
271
290
|
NAMESHIFT: 'nameshift',
|
|
272
291
|
SEDO: 'sedo',
|
|
273
292
|
AFTERNIC: 'afternic',
|
|
@@ -275,13 +294,13 @@ export const IntersectionDomainDtoWithSeoMetricsDtoMarketplaceEnum = {
|
|
|
275
294
|
SPACESHIP: 'spaceship',
|
|
276
295
|
NAMECLUB: 'nameclub'
|
|
277
296
|
} as const;
|
|
278
|
-
export type
|
|
297
|
+
export type IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum = typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum[keyof typeof IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoRoutedToEnum];
|
|
279
298
|
|
|
280
299
|
|
|
281
300
|
/**
|
|
282
|
-
* Check if a given object implements the
|
|
301
|
+
* Check if a given object implements the IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto interface.
|
|
283
302
|
*/
|
|
284
|
-
export function
|
|
303
|
+
export function instanceOfIntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto(value: object): value is IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
285
304
|
if (!('id' in value) || value['id'] === undefined) return false;
|
|
286
305
|
if (!('accountId' in value) || value['accountId'] === undefined) return false;
|
|
287
306
|
if (!('hijackerId' in value) || value['hijackerId'] === undefined) return false;
|
|
@@ -314,14 +333,15 @@ export function instanceOfIntersectionDomainDtoWithSeoMetricsDto(value: object):
|
|
|
314
333
|
if (!('showcased' in value) || value['showcased'] === undefined) return false;
|
|
315
334
|
if (!('marketplace' in value) || value['marketplace'] === undefined) return false;
|
|
316
335
|
if (!('seoMetrics' in value) || value['seoMetrics'] === undefined) return false;
|
|
336
|
+
if (!('routedTo' in value) || value['routedTo'] === undefined) return false;
|
|
317
337
|
return true;
|
|
318
338
|
}
|
|
319
339
|
|
|
320
|
-
export function
|
|
321
|
-
return
|
|
340
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON(json: any): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
341
|
+
return IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped(json, false);
|
|
322
342
|
}
|
|
323
343
|
|
|
324
|
-
export function
|
|
344
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
325
345
|
if (json == null) {
|
|
326
346
|
return json;
|
|
327
347
|
}
|
|
@@ -359,14 +379,15 @@ export function IntersectionDomainDtoWithSeoMetricsDtoFromJSONTyped(json: any, i
|
|
|
359
379
|
'showcased': json['showcased'],
|
|
360
380
|
'marketplace': json['marketplace'],
|
|
361
381
|
'seoMetrics': SeoMetricsDtoFromJSON(json['seoMetrics']),
|
|
382
|
+
'routedTo': json['routedTo'],
|
|
362
383
|
};
|
|
363
384
|
}
|
|
364
385
|
|
|
365
|
-
export function
|
|
366
|
-
return
|
|
386
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON(json: any): IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto {
|
|
387
|
+
return IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped(json, false);
|
|
367
388
|
}
|
|
368
389
|
|
|
369
|
-
export function
|
|
390
|
+
export function IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped(value?: IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto | null, ignoreDiscriminator: boolean = false): any {
|
|
370
391
|
if (value == null) {
|
|
371
392
|
return value;
|
|
372
393
|
}
|
|
@@ -405,6 +426,7 @@ export function IntersectionDomainDtoWithSeoMetricsDtoToJSONTyped(value?: Inters
|
|
|
405
426
|
'showcased': value['showcased'],
|
|
406
427
|
'marketplace': value['marketplace'],
|
|
407
428
|
'seoMetrics': SeoMetricsDtoToJSON(value['seoMetrics']),
|
|
429
|
+
'routedTo': value['routedTo'],
|
|
408
430
|
};
|
|
409
431
|
}
|
|
410
432
|
|
|
@@ -20,13 +20,13 @@ import {
|
|
|
20
20
|
PaginateResponseLinksToJSON,
|
|
21
21
|
PaginateResponseLinksToJSONTyped,
|
|
22
22
|
} from './PaginateResponseLinks';
|
|
23
|
-
import type {
|
|
23
|
+
import type { IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto } from './IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto';
|
|
24
24
|
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
} from './
|
|
25
|
+
IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON,
|
|
26
|
+
IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSONTyped,
|
|
27
|
+
IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON,
|
|
28
|
+
IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSONTyped,
|
|
29
|
+
} from './IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto';
|
|
30
30
|
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
31
31
|
import {
|
|
32
32
|
PaginateResponseMetaFromJSON,
|
|
@@ -43,10 +43,10 @@ import {
|
|
|
43
43
|
export interface List200Response2 {
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {Array<
|
|
46
|
+
* @type {Array<IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto>}
|
|
47
47
|
* @memberof List200Response2
|
|
48
48
|
*/
|
|
49
|
-
data: Array<
|
|
49
|
+
data: Array<IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto>;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {PaginateResponseMeta}
|
|
@@ -81,7 +81,7 @@ export function List200Response2FromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
81
81
|
}
|
|
82
82
|
return {
|
|
83
83
|
|
|
84
|
-
'data': ((json['data'] as Array<any>).map(
|
|
84
|
+
'data': ((json['data'] as Array<any>).map(IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoFromJSON)),
|
|
85
85
|
'meta': PaginateResponseMetaFromJSON(json['meta']),
|
|
86
86
|
'links': PaginateResponseLinksFromJSON(json['links']),
|
|
87
87
|
};
|
|
@@ -98,7 +98,7 @@ export function List200Response2ToJSONTyped(value?: List200Response2 | null, ign
|
|
|
98
98
|
|
|
99
99
|
return {
|
|
100
100
|
|
|
101
|
-
'data': ((value['data'] as Array<any>).map(
|
|
101
|
+
'data': ((value['data'] as Array<any>).map(IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDtoToJSON)),
|
|
102
102
|
'meta': PaginateResponseMetaToJSON(value['meta']),
|
|
103
103
|
'links': PaginateResponseLinksToJSON(value['links']),
|
|
104
104
|
};
|
package/src/models/index.ts
CHANGED
|
@@ -258,7 +258,7 @@ export * from './HttpException';
|
|
|
258
258
|
export * from './IntersectionAccountDtoWithSettingsDtoWithNotificationsDtoWithFeatureFlagsDto';
|
|
259
259
|
export * from './IntersectionDomainDtoWithAccountDtoWithAuctionInfoDto';
|
|
260
260
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
261
|
-
export * from './
|
|
261
|
+
export * from './IntersectionDomainDtoWithSeoMetricsDtoWithRoutingDto';
|
|
262
262
|
export * from './IntersectionLeadDtoWithLeadDetailsDtoWithManualLeadBuyerDetailsDto';
|
|
263
263
|
export * from './IntersectionTaskListTaskDto';
|
|
264
264
|
export * from './IntersectionTaskListTaskDtoData';
|