@randock/nameshift-api-client 0.0.80 → 0.0.82
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 -2
- package/README.md +3 -3
- package/dist/apis/BuyersApi.d.ts +11 -10
- package/dist/apis/BuyersApi.js +47 -42
- package/dist/models/DomainTransferDetailWorkflowStepDto.d.ts +7 -0
- package/dist/models/DomainTransferDetailWorkflowStepDto.js +5 -0
- package/dist/models/DomainTransferDetailsDto.d.ts +4 -4
- package/dist/models/DomainTransferDetailsDto.js +4 -4
- package/dist/models/DomainTransferDetailsValidationDto.d.ts +94 -0
- package/dist/models/DomainTransferDetailsValidationDto.js +92 -0
- package/dist/models/SetDomainTransferConfirmationInput.d.ts +51 -0
- package/dist/models/SetDomainTransferConfirmationInput.js +62 -0
- package/dist/models/index.d.ts +2 -2
- package/dist/models/index.js +2 -2
- package/package.json +1 -1
- package/src/apis/BuyersApi.ts +58 -44
- package/src/models/DomainTransferDetailWorkflowStepDto.ts +15 -0
- package/src/models/DomainTransferDetailsDto.ts +12 -12
- package/src/models/DomainTransferDetailsValidationDto.ts +152 -0
- package/src/models/SetDomainTransferConfirmationInput.ts +90 -0
- package/src/models/index.ts +2 -2
- package/dist/models/DomainTransferDetailsBuyerConfirmationDto.d.ts +0 -37
- package/dist/models/DomainTransferDetailsBuyerConfirmationDto.js +0 -51
- package/dist/models/DomainTransferDetailsDtoBuyerConfirmation.d.ts +0 -37
- package/dist/models/DomainTransferDetailsDtoBuyerConfirmation.js +0 -51
- package/src/models/DomainTransferDetailsBuyerConfirmationDto.ts +0 -70
- package/src/models/DomainTransferDetailsDtoBuyerConfirmation.ts +0 -70
package/src/models/index.ts
CHANGED
|
@@ -27,15 +27,14 @@ export * from './DomainTransferAgentDto';
|
|
|
27
27
|
export * from './DomainTransferDetailWorkflowStepActionDto';
|
|
28
28
|
export * from './DomainTransferDetailWorkflowStepDto';
|
|
29
29
|
export * from './DomainTransferDetailsAuthCodeDto';
|
|
30
|
-
export * from './DomainTransferDetailsBuyerConfirmationDto';
|
|
31
30
|
export * from './DomainTransferDetailsDomainDto';
|
|
32
31
|
export * from './DomainTransferDetailsDto';
|
|
33
32
|
export * from './DomainTransferDetailsDtoAuthCode';
|
|
34
|
-
export * from './DomainTransferDetailsDtoBuyerConfirmation';
|
|
35
33
|
export * from './DomainTransferDetailsOrderBuyerDto';
|
|
36
34
|
export * from './DomainTransferDetailsOrderDto';
|
|
37
35
|
export * from './DomainTransferDetailsOrderSellerDto';
|
|
38
36
|
export * from './DomainTransferDetailsOrderSellerUserDto';
|
|
37
|
+
export * from './DomainTransferDetailsValidationDto';
|
|
39
38
|
export * from './DomainTransferDomainDto';
|
|
40
39
|
export * from './DomainTransferDto';
|
|
41
40
|
export * from './DomainTransferDtoAgent';
|
|
@@ -94,6 +93,7 @@ export * from './SellerDomainTransferDto';
|
|
|
94
93
|
export * from './SellerDomainTransferDtoAuthCode';
|
|
95
94
|
export * from './SellerDomainTransferListItemDomainDto';
|
|
96
95
|
export * from './SellerDomainTransferListItemDto';
|
|
96
|
+
export * from './SetDomainTransferConfirmationInput';
|
|
97
97
|
export * from './SetNewPasswordInput';
|
|
98
98
|
export * from './StoreBuyerLocaleInput';
|
|
99
99
|
export * from './StoreUserLocaleInput';
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface DomainTransferDetailsBuyerConfirmationDto
|
|
16
|
-
*/
|
|
17
|
-
export interface DomainTransferDetailsBuyerConfirmationDto {
|
|
18
|
-
/**
|
|
19
|
-
* The domain transfer buyer confirmation status
|
|
20
|
-
* @type {boolean}
|
|
21
|
-
* @memberof DomainTransferDetailsBuyerConfirmationDto
|
|
22
|
-
*/
|
|
23
|
-
confirmed: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* The domain transfer buyer confirmation date
|
|
26
|
-
* @type {Date}
|
|
27
|
-
* @memberof DomainTransferDetailsBuyerConfirmationDto
|
|
28
|
-
*/
|
|
29
|
-
updatedAt: Date;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Check if a given object implements the DomainTransferDetailsBuyerConfirmationDto interface.
|
|
33
|
-
*/
|
|
34
|
-
export declare function instanceOfDomainTransferDetailsBuyerConfirmationDto(value: object): value is DomainTransferDetailsBuyerConfirmationDto;
|
|
35
|
-
export declare function DomainTransferDetailsBuyerConfirmationDtoFromJSON(json: any): DomainTransferDetailsBuyerConfirmationDto;
|
|
36
|
-
export declare function DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsBuyerConfirmationDto;
|
|
37
|
-
export declare function DomainTransferDetailsBuyerConfirmationDtoToJSON(value?: DomainTransferDetailsBuyerConfirmationDto | null): any;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.DomainTransferDetailsBuyerConfirmationDtoToJSON = exports.DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped = exports.DomainTransferDetailsBuyerConfirmationDtoFromJSON = exports.instanceOfDomainTransferDetailsBuyerConfirmationDto = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the DomainTransferDetailsBuyerConfirmationDto interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfDomainTransferDetailsBuyerConfirmationDto(value) {
|
|
21
|
-
if (!('confirmed' in value) || value['confirmed'] === undefined)
|
|
22
|
-
return false;
|
|
23
|
-
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
24
|
-
return false;
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
exports.instanceOfDomainTransferDetailsBuyerConfirmationDto = instanceOfDomainTransferDetailsBuyerConfirmationDto;
|
|
28
|
-
function DomainTransferDetailsBuyerConfirmationDtoFromJSON(json) {
|
|
29
|
-
return DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json, false);
|
|
30
|
-
}
|
|
31
|
-
exports.DomainTransferDetailsBuyerConfirmationDtoFromJSON = DomainTransferDetailsBuyerConfirmationDtoFromJSON;
|
|
32
|
-
function DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
if (json == null) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
return {
|
|
37
|
-
'confirmed': json['confirmed'],
|
|
38
|
-
'updatedAt': (new Date(json['updatedAt'])),
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
exports.DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped = DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped;
|
|
42
|
-
function DomainTransferDetailsBuyerConfirmationDtoToJSON(value) {
|
|
43
|
-
if (value == null) {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
'confirmed': value['confirmed'],
|
|
48
|
-
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
exports.DomainTransferDetailsBuyerConfirmationDtoToJSON = DomainTransferDetailsBuyerConfirmationDtoToJSON;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Nameshift
|
|
3
|
-
* Nameshift API
|
|
4
|
-
*
|
|
5
|
-
* The version of the OpenAPI document: 1.0
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
-
* https://openapi-generator.tech
|
|
10
|
-
* Do not edit the class manually.
|
|
11
|
-
*/
|
|
12
|
-
/**
|
|
13
|
-
* The domain transfer buyer confirmation status
|
|
14
|
-
* @export
|
|
15
|
-
* @interface DomainTransferDetailsDtoBuyerConfirmation
|
|
16
|
-
*/
|
|
17
|
-
export interface DomainTransferDetailsDtoBuyerConfirmation {
|
|
18
|
-
/**
|
|
19
|
-
* The domain transfer buyer confirmation status
|
|
20
|
-
* @type {boolean}
|
|
21
|
-
* @memberof DomainTransferDetailsDtoBuyerConfirmation
|
|
22
|
-
*/
|
|
23
|
-
confirmed: boolean;
|
|
24
|
-
/**
|
|
25
|
-
* The domain transfer buyer confirmation date
|
|
26
|
-
* @type {Date}
|
|
27
|
-
* @memberof DomainTransferDetailsDtoBuyerConfirmation
|
|
28
|
-
*/
|
|
29
|
-
updatedAt: Date;
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* Check if a given object implements the DomainTransferDetailsDtoBuyerConfirmation interface.
|
|
33
|
-
*/
|
|
34
|
-
export declare function instanceOfDomainTransferDetailsDtoBuyerConfirmation(value: object): value is DomainTransferDetailsDtoBuyerConfirmation;
|
|
35
|
-
export declare function DomainTransferDetailsDtoBuyerConfirmationFromJSON(json: any): DomainTransferDetailsDtoBuyerConfirmation;
|
|
36
|
-
export declare function DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsDtoBuyerConfirmation;
|
|
37
|
-
export declare function DomainTransferDetailsDtoBuyerConfirmationToJSON(value?: DomainTransferDetailsDtoBuyerConfirmation | null): any;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Nameshift
|
|
6
|
-
* Nameshift API
|
|
7
|
-
*
|
|
8
|
-
* The version of the OpenAPI document: 1.0
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
-
* https://openapi-generator.tech
|
|
13
|
-
* Do not edit the class manually.
|
|
14
|
-
*/
|
|
15
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.DomainTransferDetailsDtoBuyerConfirmationToJSON = exports.DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped = exports.DomainTransferDetailsDtoBuyerConfirmationFromJSON = exports.instanceOfDomainTransferDetailsDtoBuyerConfirmation = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the DomainTransferDetailsDtoBuyerConfirmation interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfDomainTransferDetailsDtoBuyerConfirmation(value) {
|
|
21
|
-
if (!('confirmed' in value) || value['confirmed'] === undefined)
|
|
22
|
-
return false;
|
|
23
|
-
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
24
|
-
return false;
|
|
25
|
-
return true;
|
|
26
|
-
}
|
|
27
|
-
exports.instanceOfDomainTransferDetailsDtoBuyerConfirmation = instanceOfDomainTransferDetailsDtoBuyerConfirmation;
|
|
28
|
-
function DomainTransferDetailsDtoBuyerConfirmationFromJSON(json) {
|
|
29
|
-
return DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json, false);
|
|
30
|
-
}
|
|
31
|
-
exports.DomainTransferDetailsDtoBuyerConfirmationFromJSON = DomainTransferDetailsDtoBuyerConfirmationFromJSON;
|
|
32
|
-
function DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
if (json == null) {
|
|
34
|
-
return json;
|
|
35
|
-
}
|
|
36
|
-
return {
|
|
37
|
-
'confirmed': json['confirmed'],
|
|
38
|
-
'updatedAt': (new Date(json['updatedAt'])),
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
exports.DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped = DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped;
|
|
42
|
-
function DomainTransferDetailsDtoBuyerConfirmationToJSON(value) {
|
|
43
|
-
if (value == null) {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
'confirmed': value['confirmed'],
|
|
48
|
-
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
exports.DomainTransferDetailsDtoBuyerConfirmationToJSON = DomainTransferDetailsDtoBuyerConfirmationToJSON;
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Nameshift
|
|
5
|
-
* Nameshift API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
*
|
|
18
|
-
* @export
|
|
19
|
-
* @interface DomainTransferDetailsBuyerConfirmationDto
|
|
20
|
-
*/
|
|
21
|
-
export interface DomainTransferDetailsBuyerConfirmationDto {
|
|
22
|
-
/**
|
|
23
|
-
* The domain transfer buyer confirmation status
|
|
24
|
-
* @type {boolean}
|
|
25
|
-
* @memberof DomainTransferDetailsBuyerConfirmationDto
|
|
26
|
-
*/
|
|
27
|
-
confirmed: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* The domain transfer buyer confirmation date
|
|
30
|
-
* @type {Date}
|
|
31
|
-
* @memberof DomainTransferDetailsBuyerConfirmationDto
|
|
32
|
-
*/
|
|
33
|
-
updatedAt: Date;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the DomainTransferDetailsBuyerConfirmationDto interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfDomainTransferDetailsBuyerConfirmationDto(value: object): value is DomainTransferDetailsBuyerConfirmationDto {
|
|
40
|
-
if (!('confirmed' in value) || value['confirmed'] === undefined) return false;
|
|
41
|
-
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
42
|
-
return true;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function DomainTransferDetailsBuyerConfirmationDtoFromJSON(json: any): DomainTransferDetailsBuyerConfirmationDto {
|
|
46
|
-
return DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function DomainTransferDetailsBuyerConfirmationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsBuyerConfirmationDto {
|
|
50
|
-
if (json == null) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'confirmed': json['confirmed'],
|
|
56
|
-
'updatedAt': (new Date(json['updatedAt'])),
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function DomainTransferDetailsBuyerConfirmationDtoToJSON(value?: DomainTransferDetailsBuyerConfirmationDto | null): any {
|
|
61
|
-
if (value == null) {
|
|
62
|
-
return value;
|
|
63
|
-
}
|
|
64
|
-
return {
|
|
65
|
-
|
|
66
|
-
'confirmed': value['confirmed'],
|
|
67
|
-
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
68
|
-
};
|
|
69
|
-
}
|
|
70
|
-
|
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Nameshift
|
|
5
|
-
* Nameshift API
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
-
* https://openapi-generator.tech
|
|
12
|
-
* Do not edit the class manually.
|
|
13
|
-
*/
|
|
14
|
-
|
|
15
|
-
import { mapValues } from '../runtime';
|
|
16
|
-
/**
|
|
17
|
-
* The domain transfer buyer confirmation status
|
|
18
|
-
* @export
|
|
19
|
-
* @interface DomainTransferDetailsDtoBuyerConfirmation
|
|
20
|
-
*/
|
|
21
|
-
export interface DomainTransferDetailsDtoBuyerConfirmation {
|
|
22
|
-
/**
|
|
23
|
-
* The domain transfer buyer confirmation status
|
|
24
|
-
* @type {boolean}
|
|
25
|
-
* @memberof DomainTransferDetailsDtoBuyerConfirmation
|
|
26
|
-
*/
|
|
27
|
-
confirmed: boolean;
|
|
28
|
-
/**
|
|
29
|
-
* The domain transfer buyer confirmation date
|
|
30
|
-
* @type {Date}
|
|
31
|
-
* @memberof DomainTransferDetailsDtoBuyerConfirmation
|
|
32
|
-
*/
|
|
33
|
-
updatedAt: Date;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Check if a given object implements the DomainTransferDetailsDtoBuyerConfirmation interface.
|
|
38
|
-
*/
|
|
39
|
-
export function instanceOfDomainTransferDetailsDtoBuyerConfirmation(value: object): value is DomainTransferDetailsDtoBuyerConfirmation {
|
|
40
|
-
if (!('confirmed' in value) || value['confirmed'] === undefined) return false;
|
|
41
|
-
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
42
|
-
return true;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
export function DomainTransferDetailsDtoBuyerConfirmationFromJSON(json: any): DomainTransferDetailsDtoBuyerConfirmation {
|
|
46
|
-
return DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json, false);
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
export function DomainTransferDetailsDtoBuyerConfirmationFromJSONTyped(json: any, ignoreDiscriminator: boolean): DomainTransferDetailsDtoBuyerConfirmation {
|
|
50
|
-
if (json == null) {
|
|
51
|
-
return json;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
|
|
55
|
-
'confirmed': json['confirmed'],
|
|
56
|
-
'updatedAt': (new Date(json['updatedAt'])),
|
|
57
|
-
};
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
export function DomainTransferDetailsDtoBuyerConfirmationToJSON(value?: DomainTransferDetailsDtoBuyerConfirmation | null): any {
|
|
61
|
-
if (value == null) {
|
|
62
|
-
return value;
|
|
63
|
-
}
|
|
64
|
-
return {
|
|
65
|
-
|
|
66
|
-
'confirmed': value['confirmed'],
|
|
67
|
-
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
68
|
-
};
|
|
69
|
-
}
|
|
70
|
-
|