@dynamic-labs/sdk-api-core 0.0.698 → 0.0.699

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api-core",
3
- "version": "0.0.698",
3
+ "version": "0.0.699",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -24,6 +24,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
24
24
  }
25
25
  return {
26
26
  'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
27
+ 'enableExchanges': json['enableExchanges'],
27
28
  };
28
29
  }
29
30
  function FeatureFlagsToJSON(value) {
@@ -35,6 +36,7 @@ function FeatureFlagsToJSON(value) {
35
36
  }
36
37
  return {
37
38
  'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
39
+ 'enableExchanges': value.enableExchanges,
38
40
  };
39
41
  }
40
42
 
@@ -21,6 +21,12 @@ export interface FeatureFlags {
21
21
  * @memberof FeatureFlags
22
22
  */
23
23
  connectOnlyMultiAsset: boolean;
24
+ /**
25
+ *
26
+ * @type {boolean}
27
+ * @memberof FeatureFlags
28
+ */
29
+ enableExchanges: boolean;
24
30
  }
25
31
  export declare function FeatureFlagsFromJSON(json: any): FeatureFlags;
26
32
  export declare function FeatureFlagsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeatureFlags;
@@ -20,6 +20,7 @@ function FeatureFlagsFromJSONTyped(json, ignoreDiscriminator) {
20
20
  }
21
21
  return {
22
22
  'connectOnlyMultiAsset': json['connectOnlyMultiAsset'],
23
+ 'enableExchanges': json['enableExchanges'],
23
24
  };
24
25
  }
25
26
  function FeatureFlagsToJSON(value) {
@@ -31,6 +32,7 @@ function FeatureFlagsToJSON(value) {
31
32
  }
32
33
  return {
33
34
  'connectOnlyMultiAsset': value.connectOnlyMultiAsset,
35
+ 'enableExchanges': value.enableExchanges,
34
36
  };
35
37
  }
36
38