@dynamic-labs/sdk-api-core 0.0.564 → 0.0.565

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.564",
3
+ "version": "0.0.565",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -19,6 +19,7 @@ function SimulateTransactionResponseFromJSONTyped(json, ignoreDiscriminator) {
19
19
  'outAssets': (json['outAssets'].map(AssetDiff.AssetDiffFromJSON)),
20
20
  'counterparties': !runtime.exists(json, 'counterparties') ? undefined : json['counterparties'],
21
21
  'priceData': PriceData.PriceDataFromJSON(json['priceData']),
22
+ 'showTotalFiat': json['showTotalFiat'],
22
23
  };
23
24
  }
24
25
  function SimulateTransactionResponseToJSON(value) {
@@ -33,6 +34,7 @@ function SimulateTransactionResponseToJSON(value) {
33
34
  'outAssets': (value.outAssets.map(AssetDiff.AssetDiffToJSON)),
34
35
  'counterparties': value.counterparties,
35
36
  'priceData': PriceData.PriceDataToJSON(value.priceData),
37
+ 'showTotalFiat': value.showTotalFiat,
36
38
  };
37
39
  }
38
40
 
@@ -41,6 +41,12 @@ export interface SimulateTransactionResponse {
41
41
  * @memberof SimulateTransactionResponse
42
42
  */
43
43
  priceData: PriceData;
44
+ /**
45
+ *
46
+ * @type {boolean}
47
+ * @memberof SimulateTransactionResponse
48
+ */
49
+ showTotalFiat: boolean;
44
50
  }
45
51
  export declare function SimulateTransactionResponseFromJSON(json: any): SimulateTransactionResponse;
46
52
  export declare function SimulateTransactionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SimulateTransactionResponse;
@@ -15,6 +15,7 @@ function SimulateTransactionResponseFromJSONTyped(json, ignoreDiscriminator) {
15
15
  'outAssets': (json['outAssets'].map(AssetDiffFromJSON)),
16
16
  'counterparties': !exists(json, 'counterparties') ? undefined : json['counterparties'],
17
17
  'priceData': PriceDataFromJSON(json['priceData']),
18
+ 'showTotalFiat': json['showTotalFiat'],
18
19
  };
19
20
  }
20
21
  function SimulateTransactionResponseToJSON(value) {
@@ -29,6 +30,7 @@ function SimulateTransactionResponseToJSON(value) {
29
30
  'outAssets': (value.outAssets.map(AssetDiffToJSON)),
30
31
  'counterparties': value.counterparties,
31
32
  'priceData': PriceDataToJSON(value.priceData),
33
+ 'showTotalFiat': value.showTotalFiat,
32
34
  };
33
35
  }
34
36