@dynamic-labs/sdk-api 0.0.203 → 0.0.204
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
|
@@ -14,7 +14,7 @@ function GatesResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
14
14
|
return json;
|
|
15
15
|
}
|
|
16
16
|
return {
|
|
17
|
-
'
|
|
17
|
+
'gates': !runtime.exists(json, 'gates') ? undefined : (json['gates'].map(Gate.GateFromJSON)),
|
|
18
18
|
};
|
|
19
19
|
}
|
|
20
20
|
function GatesResponseToJSON(value) {
|
|
@@ -25,7 +25,7 @@ function GatesResponseToJSON(value) {
|
|
|
25
25
|
return null;
|
|
26
26
|
}
|
|
27
27
|
return {
|
|
28
|
-
'
|
|
28
|
+
'gates': value.gates === undefined ? undefined : (value.gates.map(Gate.GateToJSON)),
|
|
29
29
|
};
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -21,7 +21,7 @@ export interface GatesResponse {
|
|
|
21
21
|
* @type {Array<Gate>}
|
|
22
22
|
* @memberof GatesResponse
|
|
23
23
|
*/
|
|
24
|
-
|
|
24
|
+
gates?: Array<Gate>;
|
|
25
25
|
}
|
|
26
26
|
export declare function GatesResponseFromJSON(json: any): GatesResponse;
|
|
27
27
|
export declare function GatesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatesResponse;
|
|
@@ -10,7 +10,7 @@ function GatesResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
10
10
|
return json;
|
|
11
11
|
}
|
|
12
12
|
return {
|
|
13
|
-
'
|
|
13
|
+
'gates': !exists(json, 'gates') ? undefined : (json['gates'].map(GateFromJSON)),
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
16
|
function GatesResponseToJSON(value) {
|
|
@@ -21,7 +21,7 @@ function GatesResponseToJSON(value) {
|
|
|
21
21
|
return null;
|
|
22
22
|
}
|
|
23
23
|
return {
|
|
24
|
-
'
|
|
24
|
+
'gates': value.gates === undefined ? undefined : (value.gates.map(GateToJSON)),
|
|
25
25
|
};
|
|
26
26
|
}
|
|
27
27
|
|