@dynamic-labs/sdk-api-core 0.0.580 → 0.0.581

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.580",
3
+ "version": "0.0.581",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -29,6 +29,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
29
29
  'domainEnabledByProvider': !runtime.exists(json, 'domainEnabledByProvider') ? undefined : json['domainEnabledByProvider'],
30
30
  'defaultWalletVersion': !runtime.exists(json, 'defaultWalletVersion') ? undefined : EmbeddedWalletVersionEnum.EmbeddedWalletVersionEnumFromJSON(json['defaultWalletVersion']),
31
31
  'promptForKeyExport': !runtime.exists(json, 'promptForKeyExport') ? undefined : json['promptForKeyExport'],
32
+ 'transactionSimulation': !runtime.exists(json, 'transactionSimulation') ? undefined : json['transactionSimulation'],
32
33
  };
33
34
  }
34
35
  function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
@@ -51,6 +52,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
51
52
  'domainEnabledByProvider': value.domainEnabledByProvider,
52
53
  'defaultWalletVersion': EmbeddedWalletVersionEnum.EmbeddedWalletVersionEnumToJSON(value.defaultWalletVersion),
53
54
  'promptForKeyExport': value.promptForKeyExport,
55
+ 'transactionSimulation': value.transactionSimulation,
54
56
  };
55
57
  }
56
58
 
@@ -91,6 +91,12 @@ export interface ProjectSettingsSdkEmbeddedWallets {
91
91
  * @memberof ProjectSettingsSdkEmbeddedWallets
92
92
  */
93
93
  promptForKeyExport?: boolean;
94
+ /**
95
+ * When true, user transactions will show asset transfers in the Confirmation UI.
96
+ * @type {boolean}
97
+ * @memberof ProjectSettingsSdkEmbeddedWallets
98
+ */
99
+ transactionSimulation?: boolean;
94
100
  }
95
101
  export declare function ProjectSettingsSdkEmbeddedWalletsFromJSON(json: any): ProjectSettingsSdkEmbeddedWallets;
96
102
  export declare function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkEmbeddedWallets;
@@ -25,6 +25,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
25
25
  'domainEnabledByProvider': !exists(json, 'domainEnabledByProvider') ? undefined : json['domainEnabledByProvider'],
26
26
  'defaultWalletVersion': !exists(json, 'defaultWalletVersion') ? undefined : EmbeddedWalletVersionEnumFromJSON(json['defaultWalletVersion']),
27
27
  'promptForKeyExport': !exists(json, 'promptForKeyExport') ? undefined : json['promptForKeyExport'],
28
+ 'transactionSimulation': !exists(json, 'transactionSimulation') ? undefined : json['transactionSimulation'],
28
29
  };
29
30
  }
30
31
  function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
@@ -47,6 +48,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
47
48
  'domainEnabledByProvider': value.domainEnabledByProvider,
48
49
  'defaultWalletVersion': EmbeddedWalletVersionEnumToJSON(value.defaultWalletVersion),
49
50
  'promptForKeyExport': value.promptForKeyExport,
51
+ 'transactionSimulation': value.transactionSimulation,
50
52
  };
51
53
  }
52
54