@randock/nameshift-api-client 0.0.53 → 0.0.55
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 +3 -0
- package/README.md +3 -3
- package/dist/apis/DomainsApi.d.ts +2 -1
- package/dist/apis/DomainsApi.js +8 -3
- package/dist/models/DomainDto.d.ts +7 -1
- package/dist/models/DomainDto.js +4 -0
- package/dist/models/DomainSalesInformationDto.d.ts +13 -6
- package/dist/models/DomainSalesInformationDto.js +10 -5
- package/dist/models/DomainSalesInformationDtoBuyNowPrice.d.ts +37 -0
- package/dist/models/DomainSalesInformationDtoBuyNowPrice.js +51 -0
- package/dist/models/DomainSalesInformationDtoMinOfferPrice.d.ts +37 -0
- package/dist/models/DomainSalesInformationDtoMinOfferPrice.js +51 -0
- package/dist/models/IntersectionDomainDtoWithAccountDto.d.ts +7 -1
- package/dist/models/IntersectionDomainDtoWithAccountDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithDomainUrlDto.d.ts +99 -0
- package/dist/models/IntersectionDomainDtoWithDomainUrlDto.js +92 -0
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.d.ts +7 -1
- package/dist/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.js +4 -0
- package/dist/models/List200Response.d.ts +3 -3
- package/dist/models/List200Response.js +3 -3
- package/dist/models/index.d.ts +3 -0
- package/dist/models/index.js +3 -0
- package/package.json +1 -1
- package/src/apis/DomainsApi.ts +13 -1
- package/src/models/DomainDto.ts +10 -1
- package/src/models/DomainSalesInformationDto.ts +29 -14
- package/src/models/DomainSalesInformationDtoBuyNowPrice.ts +70 -0
- package/src/models/DomainSalesInformationDtoMinOfferPrice.ts +70 -0
- package/src/models/IntersectionDomainDtoWithAccountDto.ts +10 -1
- package/src/models/IntersectionDomainDtoWithDomainUrlDto.ts +168 -0
- package/src/models/IntersectionDomainDtoWithHijackerDtoWithAccountDto.ts +10 -1
- package/src/models/List200Response.ts +9 -9
- package/src/models/index.ts +3 -0
|
@@ -69,11 +69,17 @@ export interface IntersectionDomainDtoWithHijackerDtoWithAccountDto {
|
|
|
69
69
|
*/
|
|
70
70
|
nameservers: boolean;
|
|
71
71
|
/**
|
|
72
|
-
* The domain name (example.com)
|
|
72
|
+
* The ASCII domain name (example.com, xn--maana-pta.com)
|
|
73
73
|
* @type {string}
|
|
74
74
|
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
75
75
|
*/
|
|
76
76
|
name: string;
|
|
77
|
+
/**
|
|
78
|
+
* The unicode domain name (example.com, mañana.com)
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof IntersectionDomainDtoWithHijackerDtoWithAccountDto
|
|
81
|
+
*/
|
|
82
|
+
displayName: string;
|
|
77
83
|
/**
|
|
78
84
|
* /**
|
|
79
85
|
* The domain's currency code (ISO 4217)
|
|
@@ -118,6 +124,7 @@ export function instanceOfIntersectionDomainDtoWithHijackerDtoWithAccountDto(val
|
|
|
118
124
|
if (!('verified' in value) || value['verified'] === undefined) return false;
|
|
119
125
|
if (!('nameservers' in value) || value['nameservers'] === undefined) return false;
|
|
120
126
|
if (!('name' in value) || value['name'] === undefined) return false;
|
|
127
|
+
if (!('displayName' in value) || value['displayName'] === undefined) return false;
|
|
121
128
|
if (!('currencyCode' in value) || value['currencyCode'] === undefined) return false;
|
|
122
129
|
if (!('buyNow' in value) || value['buyNow'] === undefined) return false;
|
|
123
130
|
if (!('minOffer' in value) || value['minOffer'] === undefined) return false;
|
|
@@ -143,6 +150,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoFromJSONTyped(
|
|
|
143
150
|
'verified': json['verified'],
|
|
144
151
|
'nameservers': json['nameservers'],
|
|
145
152
|
'name': json['name'],
|
|
153
|
+
'displayName': json['displayName'],
|
|
146
154
|
'currencyCode': json['currencyCode'],
|
|
147
155
|
'buyNow': MoneyDtoFromJSON(json['buyNow']),
|
|
148
156
|
'minOffer': MoneyDtoFromJSON(json['minOffer']),
|
|
@@ -164,6 +172,7 @@ export function IntersectionDomainDtoWithHijackerDtoWithAccountDtoToJSON(value?:
|
|
|
164
172
|
'verified': value['verified'],
|
|
165
173
|
'nameservers': value['nameservers'],
|
|
166
174
|
'name': value['name'],
|
|
175
|
+
'displayName': value['displayName'],
|
|
167
176
|
'currencyCode': value['currencyCode'],
|
|
168
177
|
'buyNow': MoneyDtoToJSON(value['buyNow']),
|
|
169
178
|
'minOffer': MoneyDtoToJSON(value['minOffer']),
|
|
@@ -19,12 +19,12 @@ import {
|
|
|
19
19
|
PaginateResponseLinksFromJSONTyped,
|
|
20
20
|
PaginateResponseLinksToJSON,
|
|
21
21
|
} from './PaginateResponseLinks';
|
|
22
|
-
import type {
|
|
22
|
+
import type { IntersectionDomainDtoWithDomainUrlDto } from './IntersectionDomainDtoWithDomainUrlDto';
|
|
23
23
|
import {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
} from './
|
|
24
|
+
IntersectionDomainDtoWithDomainUrlDtoFromJSON,
|
|
25
|
+
IntersectionDomainDtoWithDomainUrlDtoFromJSONTyped,
|
|
26
|
+
IntersectionDomainDtoWithDomainUrlDtoToJSON,
|
|
27
|
+
} from './IntersectionDomainDtoWithDomainUrlDto';
|
|
28
28
|
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
29
29
|
import {
|
|
30
30
|
PaginateResponseMetaFromJSON,
|
|
@@ -40,10 +40,10 @@ import {
|
|
|
40
40
|
export interface List200Response {
|
|
41
41
|
/**
|
|
42
42
|
*
|
|
43
|
-
* @type {Array<
|
|
43
|
+
* @type {Array<IntersectionDomainDtoWithDomainUrlDto>}
|
|
44
44
|
* @memberof List200Response
|
|
45
45
|
*/
|
|
46
|
-
data: Array<
|
|
46
|
+
data: Array<IntersectionDomainDtoWithDomainUrlDto>;
|
|
47
47
|
/**
|
|
48
48
|
*
|
|
49
49
|
* @type {PaginateResponseMeta}
|
|
@@ -78,7 +78,7 @@ export function List200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
78
78
|
}
|
|
79
79
|
return {
|
|
80
80
|
|
|
81
|
-
'data': ((json['data'] as Array<any>).map(
|
|
81
|
+
'data': ((json['data'] as Array<any>).map(IntersectionDomainDtoWithDomainUrlDtoFromJSON)),
|
|
82
82
|
'meta': PaginateResponseMetaFromJSON(json['meta']),
|
|
83
83
|
'links': PaginateResponseLinksFromJSON(json['links']),
|
|
84
84
|
};
|
|
@@ -90,7 +90,7 @@ export function List200ResponseToJSON(value?: List200Response | null): any {
|
|
|
90
90
|
}
|
|
91
91
|
return {
|
|
92
92
|
|
|
93
|
-
'data': ((value['data'] as Array<any>).map(
|
|
93
|
+
'data': ((value['data'] as Array<any>).map(IntersectionDomainDtoWithDomainUrlDtoToJSON)),
|
|
94
94
|
'meta': PaginateResponseMetaToJSON(value['meta']),
|
|
95
95
|
'links': PaginateResponseLinksToJSON(value['links']),
|
|
96
96
|
};
|
package/src/models/index.ts
CHANGED
|
@@ -16,6 +16,8 @@ export * from './DashboardStatsDto';
|
|
|
16
16
|
export * from './DeleteDomainsInput';
|
|
17
17
|
export * from './DomainDto';
|
|
18
18
|
export * from './DomainSalesInformationDto';
|
|
19
|
+
export * from './DomainSalesInformationDtoBuyNowPrice';
|
|
20
|
+
export * from './DomainSalesInformationDtoMinOfferPrice';
|
|
19
21
|
export * from './DomainSellerDto';
|
|
20
22
|
export * from './DomainTransferAgentDto';
|
|
21
23
|
export * from './DomainTransferDomainDto';
|
|
@@ -27,6 +29,7 @@ export * from './GetAllDomainTransfers200Response';
|
|
|
27
29
|
export * from './HttpException';
|
|
28
30
|
export * from './IntersectionAccountDtoWithFinancialDtoWithSettingsDtoWithAddressDto';
|
|
29
31
|
export * from './IntersectionDomainDtoWithAccountDto';
|
|
32
|
+
export * from './IntersectionDomainDtoWithDomainUrlDto';
|
|
30
33
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
31
34
|
export * from './IntersectionLeadDtoWithLeadDetailsDto';
|
|
32
35
|
export * from './IntersectionLeadDtoWithListFieldsDto';
|