@dynamic-labs/sdk-api-core 0.0.841 → 0.0.842

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.841",
3
+ "version": "0.0.842",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -30,6 +30,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
30
30
  'defaultWalletVersion': !runtime.exists(json, 'defaultWalletVersion') ? undefined : EmbeddedWalletVersionEnum.EmbeddedWalletVersionEnumFromJSON(json['defaultWalletVersion']),
31
31
  'promptForKeyExport': !runtime.exists(json, 'promptForKeyExport') ? undefined : json['promptForKeyExport'],
32
32
  'transactionSimulation': !runtime.exists(json, 'transactionSimulation') ? undefined : json['transactionSimulation'],
33
+ 'svmGasSponsorshipEnabled': !runtime.exists(json, 'svmGasSponsorshipEnabled') ? undefined : json['svmGasSponsorshipEnabled'],
33
34
  };
34
35
  }
35
36
  function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
@@ -53,6 +54,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
53
54
  'defaultWalletVersion': EmbeddedWalletVersionEnum.EmbeddedWalletVersionEnumToJSON(value.defaultWalletVersion),
54
55
  'promptForKeyExport': value.promptForKeyExport,
55
56
  'transactionSimulation': value.transactionSimulation,
57
+ 'svmGasSponsorshipEnabled': value.svmGasSponsorshipEnabled,
56
58
  };
57
59
  }
58
60
 
@@ -97,6 +97,12 @@ export interface ProjectSettingsSdkEmbeddedWallets {
97
97
  * @memberof ProjectSettingsSdkEmbeddedWallets
98
98
  */
99
99
  transactionSimulation?: boolean;
100
+ /**
101
+ * When true, network fees for Solana embedded wallet transactions will be sponsored.
102
+ * @type {boolean}
103
+ * @memberof ProjectSettingsSdkEmbeddedWallets
104
+ */
105
+ svmGasSponsorshipEnabled?: boolean;
100
106
  }
101
107
  export declare function ProjectSettingsSdkEmbeddedWalletsFromJSON(json: any): ProjectSettingsSdkEmbeddedWallets;
102
108
  export declare function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsSdkEmbeddedWallets;
@@ -26,6 +26,7 @@ function ProjectSettingsSdkEmbeddedWalletsFromJSONTyped(json, ignoreDiscriminato
26
26
  'defaultWalletVersion': !exists(json, 'defaultWalletVersion') ? undefined : EmbeddedWalletVersionEnumFromJSON(json['defaultWalletVersion']),
27
27
  'promptForKeyExport': !exists(json, 'promptForKeyExport') ? undefined : json['promptForKeyExport'],
28
28
  'transactionSimulation': !exists(json, 'transactionSimulation') ? undefined : json['transactionSimulation'],
29
+ 'svmGasSponsorshipEnabled': !exists(json, 'svmGasSponsorshipEnabled') ? undefined : json['svmGasSponsorshipEnabled'],
29
30
  };
30
31
  }
31
32
  function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
@@ -49,6 +50,7 @@ function ProjectSettingsSdkEmbeddedWalletsToJSON(value) {
49
50
  'defaultWalletVersion': EmbeddedWalletVersionEnumToJSON(value.defaultWalletVersion),
50
51
  'promptForKeyExport': value.promptForKeyExport,
51
52
  'transactionSimulation': value.transactionSimulation,
53
+ 'svmGasSponsorshipEnabled': value.svmGasSponsorshipEnabled,
52
54
  };
53
55
  }
54
56