@randock/nameshift-api-client 0.0.80 → 0.0.81
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/DomainTransferDetailsDto.d.ts +4 -4
- package/dist/models/DomainTransferDetailsDto.js +4 -4
- package/dist/models/DomainTransferDetailsValidationDto.d.ts +57 -0
- package/dist/models/DomainTransferDetailsValidationDto.js +66 -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/DomainTransferDetailsDto.ts +12 -12
- package/src/models/DomainTransferDetailsValidationDto.ts +99 -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
|
@@ -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
|
-
|