@randock/nameshift-api-client 0.0.286 → 0.0.287
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/README.md +3 -3
- package/dist/models/DomainTransferDetailsValidationDto.d.ts +1 -0
- package/dist/models/DomainTransferDetailsValidationDto.js +2 -1
- package/dist/models/SetDomainTransferConfirmationInput.d.ts +1 -0
- package/dist/models/SetDomainTransferConfirmationInput.js +2 -1
- package/package.json +1 -1
- package/src/models/DomainTransferDetailsValidationDto.ts +2 -1
- package/src/models/SetDomainTransferConfirmationInput.ts +2 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @randock/nameshift-api-client@0.0.
|
|
1
|
+
## @randock/nameshift-api-client@0.0.287
|
|
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.287 --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
|
+
b103270a33b2a169cdcea33e8f0b6058d0a5cdda3119ac1bbb113fac290837462f6ea38a837cdd97debfec6493bde337
|
|
@@ -76,6 +76,7 @@ export interface DomainTransferDetailsValidationDto {
|
|
|
76
76
|
export declare const DomainTransferDetailsValidationDtoReasonEnum: {
|
|
77
77
|
readonly INVALID_AUTH_CODE: "invalid_auth_code";
|
|
78
78
|
readonly OTHER: "other";
|
|
79
|
+
readonly AUTO_CONFIRMED_BY_SYSTEM: "auto_confirmed_by_system";
|
|
79
80
|
};
|
|
80
81
|
export type DomainTransferDetailsValidationDtoReasonEnum = typeof DomainTransferDetailsValidationDtoReasonEnum[keyof typeof DomainTransferDetailsValidationDtoReasonEnum];
|
|
81
82
|
/**
|
|
@@ -24,7 +24,8 @@ exports.DomainTransferDetailsValidationDtoToJSONTyped = DomainTransferDetailsVal
|
|
|
24
24
|
*/
|
|
25
25
|
exports.DomainTransferDetailsValidationDtoReasonEnum = {
|
|
26
26
|
INVALID_AUTH_CODE: 'invalid_auth_code',
|
|
27
|
-
OTHER: 'other'
|
|
27
|
+
OTHER: 'other',
|
|
28
|
+
AUTO_CONFIRMED_BY_SYSTEM: 'auto_confirmed_by_system'
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
30
31
|
* @export
|
|
@@ -40,6 +40,7 @@ export interface SetDomainTransferConfirmationInput {
|
|
|
40
40
|
export declare const SetDomainTransferConfirmationInputConfirmationReasonEnum: {
|
|
41
41
|
readonly INVALID_AUTH_CODE: "invalid_auth_code";
|
|
42
42
|
readonly OTHER: "other";
|
|
43
|
+
readonly AUTO_CONFIRMED_BY_SYSTEM: "auto_confirmed_by_system";
|
|
43
44
|
};
|
|
44
45
|
export type SetDomainTransferConfirmationInputConfirmationReasonEnum = typeof SetDomainTransferConfirmationInputConfirmationReasonEnum[keyof typeof SetDomainTransferConfirmationInputConfirmationReasonEnum];
|
|
45
46
|
/**
|
|
@@ -24,7 +24,8 @@ exports.SetDomainTransferConfirmationInputToJSONTyped = SetDomainTransferConfirm
|
|
|
24
24
|
*/
|
|
25
25
|
exports.SetDomainTransferConfirmationInputConfirmationReasonEnum = {
|
|
26
26
|
INVALID_AUTH_CODE: 'invalid_auth_code',
|
|
27
|
-
OTHER: 'other'
|
|
27
|
+
OTHER: 'other',
|
|
28
|
+
AUTO_CONFIRMED_BY_SYSTEM: 'auto_confirmed_by_system'
|
|
28
29
|
};
|
|
29
30
|
/**
|
|
30
31
|
* Check if a given object implements the SetDomainTransferConfirmationInput interface.
|
package/package.json
CHANGED
|
@@ -81,7 +81,8 @@ export interface DomainTransferDetailsValidationDto {
|
|
|
81
81
|
*/
|
|
82
82
|
export const DomainTransferDetailsValidationDtoReasonEnum = {
|
|
83
83
|
INVALID_AUTH_CODE: 'invalid_auth_code',
|
|
84
|
-
OTHER: 'other'
|
|
84
|
+
OTHER: 'other',
|
|
85
|
+
AUTO_CONFIRMED_BY_SYSTEM: 'auto_confirmed_by_system'
|
|
85
86
|
} as const;
|
|
86
87
|
export type DomainTransferDetailsValidationDtoReasonEnum = typeof DomainTransferDetailsValidationDtoReasonEnum[keyof typeof DomainTransferDetailsValidationDtoReasonEnum];
|
|
87
88
|
|
|
@@ -45,7 +45,8 @@ export interface SetDomainTransferConfirmationInput {
|
|
|
45
45
|
*/
|
|
46
46
|
export const SetDomainTransferConfirmationInputConfirmationReasonEnum = {
|
|
47
47
|
INVALID_AUTH_CODE: 'invalid_auth_code',
|
|
48
|
-
OTHER: 'other'
|
|
48
|
+
OTHER: 'other',
|
|
49
|
+
AUTO_CONFIRMED_BY_SYSTEM: 'auto_confirmed_by_system'
|
|
49
50
|
} as const;
|
|
50
51
|
export type SetDomainTransferConfirmationInputConfirmationReasonEnum = typeof SetDomainTransferConfirmationInputConfirmationReasonEnum[keyof typeof SetDomainTransferConfirmationInputConfirmationReasonEnum];
|
|
51
52
|
|