@randock/nameshift-api-client 0.0.168 → 0.0.170
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 +2 -0
- package/README.md +3 -3
- package/dist/apis/DomainsApi.d.ts +3 -3
- package/dist/apis/DomainsApi.js +1 -1
- package/dist/apis/DomainsPublicApi.d.ts +3 -3
- package/dist/apis/DomainsPublicApi.js +1 -1
- package/dist/apis/TasksApi.d.ts +3 -3
- package/dist/apis/TasksApi.js +1 -1
- package/dist/models/DomainTransferDetailsOrderBuyerDto.d.ts +8 -2
- package/dist/models/DomainTransferDetailsOrderBuyerDto.js +4 -0
- package/dist/models/IntersectionDomainDtoWithAccountNameDto.d.ts +118 -0
- package/dist/models/IntersectionDomainDtoWithAccountNameDto.js +108 -0
- package/dist/models/List200Response1.d.ts +3 -3
- package/dist/models/List200Response1.js +3 -3
- package/dist/models/List200Response2.d.ts +3 -3
- package/dist/models/List200Response2.js +3 -3
- package/dist/models/List200Response3.d.ts +47 -0
- package/dist/models/List200Response3.js +62 -0
- package/dist/models/ListDomains200Response.d.ts +3 -3
- package/dist/models/ListDomains200Response.js +3 -3
- package/dist/models/index.d.ts +2 -0
- package/dist/models/index.js +2 -0
- package/package.json +1 -1
- package/src/apis/DomainsApi.ts +6 -6
- package/src/apis/DomainsPublicApi.ts +6 -6
- package/src/apis/TasksApi.ts +6 -6
- package/src/models/DomainTransferDetailsOrderBuyerDto.ts +11 -2
- package/src/models/IntersectionDomainDtoWithAccountNameDto.ts +201 -0
- package/src/models/List200Response1.ts +10 -10
- package/src/models/List200Response2.ts +10 -10
- package/src/models/List200Response3.ts +106 -0
- package/src/models/ListDomains200Response.ts +10 -10
- package/src/models/index.ts +2 -0
|
@@ -20,13 +20,13 @@ import {
|
|
|
20
20
|
PaginateResponseLinksToJSON,
|
|
21
21
|
PaginateResponseLinksToJSONTyped,
|
|
22
22
|
} from './PaginateResponseLinks';
|
|
23
|
-
import type {
|
|
23
|
+
import type { IntersectionDomainDtoWithAccountNameDto } from './IntersectionDomainDtoWithAccountNameDto';
|
|
24
24
|
import {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
} from './
|
|
25
|
+
IntersectionDomainDtoWithAccountNameDtoFromJSON,
|
|
26
|
+
IntersectionDomainDtoWithAccountNameDtoFromJSONTyped,
|
|
27
|
+
IntersectionDomainDtoWithAccountNameDtoToJSON,
|
|
28
|
+
IntersectionDomainDtoWithAccountNameDtoToJSONTyped,
|
|
29
|
+
} from './IntersectionDomainDtoWithAccountNameDto';
|
|
30
30
|
import type { PaginateResponseMeta } from './PaginateResponseMeta';
|
|
31
31
|
import {
|
|
32
32
|
PaginateResponseMetaFromJSON,
|
|
@@ -43,10 +43,10 @@ import {
|
|
|
43
43
|
export interface ListDomains200Response {
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
|
-
* @type {Array<
|
|
46
|
+
* @type {Array<IntersectionDomainDtoWithAccountNameDto>}
|
|
47
47
|
* @memberof ListDomains200Response
|
|
48
48
|
*/
|
|
49
|
-
data: Array<
|
|
49
|
+
data: Array<IntersectionDomainDtoWithAccountNameDto>;
|
|
50
50
|
/**
|
|
51
51
|
*
|
|
52
52
|
* @type {PaginateResponseMeta}
|
|
@@ -81,7 +81,7 @@ export function ListDomains200ResponseFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
81
81
|
}
|
|
82
82
|
return {
|
|
83
83
|
|
|
84
|
-
'data': ((json['data'] as Array<any>).map(
|
|
84
|
+
'data': ((json['data'] as Array<any>).map(IntersectionDomainDtoWithAccountNameDtoFromJSON)),
|
|
85
85
|
'meta': PaginateResponseMetaFromJSON(json['meta']),
|
|
86
86
|
'links': PaginateResponseLinksFromJSON(json['links']),
|
|
87
87
|
};
|
|
@@ -98,7 +98,7 @@ export function ListDomains200ResponseFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
98
98
|
|
|
99
99
|
return {
|
|
100
100
|
|
|
101
|
-
'data': ((value['data'] as Array<any>).map(
|
|
101
|
+
'data': ((value['data'] as Array<any>).map(IntersectionDomainDtoWithAccountNameDtoToJSON)),
|
|
102
102
|
'meta': PaginateResponseMetaToJSON(value['meta']),
|
|
103
103
|
'links': PaginateResponseLinksToJSON(value['links']),
|
|
104
104
|
};
|
package/src/models/index.ts
CHANGED
|
@@ -66,6 +66,7 @@ export * from './GetBuyerTransfers200Response';
|
|
|
66
66
|
export * from './HttpException';
|
|
67
67
|
export * from './IntersectionAccountDtoWithSettingsDtoWithNotificationsDto';
|
|
68
68
|
export * from './IntersectionDomainDtoWithAccountDto';
|
|
69
|
+
export * from './IntersectionDomainDtoWithAccountNameDto';
|
|
69
70
|
export * from './IntersectionDomainDtoWithHijackerDtoWithAccountDto';
|
|
70
71
|
export * from './IntersectionDomainSalesInformationDtoWithDomainStatsDto';
|
|
71
72
|
export * from './IntersectionLeadDtoWithLeadDetailsDtoWithBuyerDetailsDto';
|
|
@@ -84,6 +85,7 @@ export * from './LeadStatusDto';
|
|
|
84
85
|
export * from './List200Response';
|
|
85
86
|
export * from './List200Response1';
|
|
86
87
|
export * from './List200Response2';
|
|
88
|
+
export * from './List200Response3';
|
|
87
89
|
export * from './ListAccountDto';
|
|
88
90
|
export * from './ListAccounts200Response';
|
|
89
91
|
export * from './ListDomains200Response';
|