@dynamic-labs/sdk-api 0.0.586 → 0.0.587
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/package.json
CHANGED
|
@@ -2,19 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
+
var CustomHostnameUsageEnum = require('./CustomHostnameUsageEnum.cjs');
|
|
6
|
+
|
|
5
7
|
/* tslint:disable */
|
|
6
|
-
/* eslint-disable */
|
|
7
|
-
/**
|
|
8
|
-
* Dashboard API
|
|
9
|
-
* Dashboard API documentation
|
|
10
|
-
*
|
|
11
|
-
* The version of the OpenAPI document: 1.0.0
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
15
|
-
* https://openapi-generator.tech
|
|
16
|
-
* Do not edit the class manually.
|
|
17
|
-
*/
|
|
18
8
|
function CustomHostnameCreateRequestFromJSON(json) {
|
|
19
9
|
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
20
10
|
}
|
|
@@ -24,6 +14,7 @@ function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
24
14
|
}
|
|
25
15
|
return {
|
|
26
16
|
'hostname': json['hostname'],
|
|
17
|
+
'usage': CustomHostnameUsageEnum.CustomHostnameUsageEnumFromJSON(json['usage']),
|
|
27
18
|
};
|
|
28
19
|
}
|
|
29
20
|
function CustomHostnameCreateRequestToJSON(value) {
|
|
@@ -35,6 +26,7 @@ function CustomHostnameCreateRequestToJSON(value) {
|
|
|
35
26
|
}
|
|
36
27
|
return {
|
|
37
28
|
'hostname': value.hostname,
|
|
29
|
+
'usage': CustomHostnameUsageEnum.CustomHostnameUsageEnumToJSON(value.usage),
|
|
38
30
|
};
|
|
39
31
|
}
|
|
40
32
|
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { CustomHostnameUsageEnum } from './CustomHostnameUsageEnum';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -21,6 +22,12 @@ export interface CustomHostnameCreateRequest {
|
|
|
21
22
|
* @memberof CustomHostnameCreateRequest
|
|
22
23
|
*/
|
|
23
24
|
hostname: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {CustomHostnameUsageEnum}
|
|
28
|
+
* @memberof CustomHostnameCreateRequest
|
|
29
|
+
*/
|
|
30
|
+
usage: CustomHostnameUsageEnum;
|
|
24
31
|
}
|
|
25
32
|
export declare function CustomHostnameCreateRequestFromJSON(json: any): CustomHostnameCreateRequest;
|
|
26
33
|
export declare function CustomHostnameCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomHostnameCreateRequest;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
+
import { CustomHostnameUsageEnumFromJSON, CustomHostnameUsageEnumToJSON } from './CustomHostnameUsageEnum.js';
|
|
2
|
+
|
|
1
3
|
/* tslint:disable */
|
|
2
|
-
/* eslint-disable */
|
|
3
|
-
/**
|
|
4
|
-
* Dashboard API
|
|
5
|
-
* Dashboard API documentation
|
|
6
|
-
*
|
|
7
|
-
* The version of the OpenAPI document: 1.0.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
4
|
function CustomHostnameCreateRequestFromJSON(json) {
|
|
15
5
|
return CustomHostnameCreateRequestFromJSONTyped(json);
|
|
16
6
|
}
|
|
@@ -20,6 +10,7 @@ function CustomHostnameCreateRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
20
10
|
}
|
|
21
11
|
return {
|
|
22
12
|
'hostname': json['hostname'],
|
|
13
|
+
'usage': CustomHostnameUsageEnumFromJSON(json['usage']),
|
|
23
14
|
};
|
|
24
15
|
}
|
|
25
16
|
function CustomHostnameCreateRequestToJSON(value) {
|
|
@@ -31,6 +22,7 @@ function CustomHostnameCreateRequestToJSON(value) {
|
|
|
31
22
|
}
|
|
32
23
|
return {
|
|
33
24
|
'hostname': value.hostname,
|
|
25
|
+
'usage': CustomHostnameUsageEnumToJSON(value.usage),
|
|
34
26
|
};
|
|
35
27
|
}
|
|
36
28
|
|