@dynamic-labs/sdk-api-core 0.0.625 → 0.0.626
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 runtime = require('../runtime.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 NameServiceSdkSettingsEvmFromJSON(json) {
|
|
19
9
|
return NameServiceSdkSettingsEvmFromJSONTyped(json);
|
|
20
10
|
}
|
|
@@ -23,7 +13,7 @@ function NameServiceSdkSettingsEvmFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
13
|
return json;
|
|
24
14
|
}
|
|
25
15
|
return {
|
|
26
|
-
'domain': json['domain'],
|
|
16
|
+
'domain': !runtime.exists(json, 'domain') ? undefined : json['domain'],
|
|
27
17
|
};
|
|
28
18
|
}
|
|
29
19
|
function NameServiceSdkSettingsEvmToJSON(value) {
|
|
@@ -20,7 +20,7 @@ export interface NameServiceSdkSettingsEvm {
|
|
|
20
20
|
* @type {string}
|
|
21
21
|
* @memberof NameServiceSdkSettingsEvm
|
|
22
22
|
*/
|
|
23
|
-
domain
|
|
23
|
+
domain?: string;
|
|
24
24
|
}
|
|
25
25
|
export declare function NameServiceSdkSettingsEvmFromJSON(json: any): NameServiceSdkSettingsEvm;
|
|
26
26
|
export declare function NameServiceSdkSettingsEvmFromJSONTyped(json: any, ignoreDiscriminator: boolean): NameServiceSdkSettingsEvm;
|
|
@@ -1,16 +1,6 @@
|
|
|
1
|
+
import { exists } from '../runtime.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 NameServiceSdkSettingsEvmFromJSON(json) {
|
|
15
5
|
return NameServiceSdkSettingsEvmFromJSONTyped(json);
|
|
16
6
|
}
|
|
@@ -19,7 +9,7 @@ function NameServiceSdkSettingsEvmFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
9
|
return json;
|
|
20
10
|
}
|
|
21
11
|
return {
|
|
22
|
-
'domain': json['domain'],
|
|
12
|
+
'domain': !exists(json, 'domain') ? undefined : json['domain'],
|
|
23
13
|
};
|
|
24
14
|
}
|
|
25
15
|
function NameServiceSdkSettingsEvmToJSON(value) {
|