@firela/api-types 0.0.0-canary.5fa96f73 → 0.0.0-canary.610daafc

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/dist/index.d.mts CHANGED
@@ -3837,6 +3837,10 @@ type AccountItemDto = {
3837
3837
  * Currency code
3838
3838
  */
3839
3839
  currency: string;
3840
+ /**
3841
+ * FX-converted balance in base currency; omitted when not convertible
3842
+ */
3843
+ convertedBalance?: string;
3840
3844
  };
3841
3845
  type PlatformGroupDto = {
3842
3846
  /**
@@ -3935,6 +3939,10 @@ type AccountItemWithAssetClassDto = {
3935
3939
  * Currency code
3936
3940
  */
3937
3941
  currency: string;
3942
+ /**
3943
+ * FX-converted balance in base currency; omitted when not convertible
3944
+ */
3945
+ convertedBalance?: string;
3938
3946
  /**
3939
3947
  * Asset class
3940
3948
  */
package/dist/index.d.ts CHANGED
@@ -3837,6 +3837,10 @@ type AccountItemDto = {
3837
3837
  * Currency code
3838
3838
  */
3839
3839
  currency: string;
3840
+ /**
3841
+ * FX-converted balance in base currency; omitted when not convertible
3842
+ */
3843
+ convertedBalance?: string;
3840
3844
  };
3841
3845
  type PlatformGroupDto = {
3842
3846
  /**
@@ -3935,6 +3939,10 @@ type AccountItemWithAssetClassDto = {
3935
3939
  * Currency code
3936
3940
  */
3937
3941
  currency: string;
3942
+ /**
3943
+ * FX-converted balance in base currency; omitted when not convertible
3944
+ */
3945
+ convertedBalance?: string;
3938
3946
  /**
3939
3947
  * Asset class
3940
3948
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@firela/api-types",
3
- "version": "0.0.0-canary.5fa96f73",
3
+ "version": "0.0.0-canary.610daafc",
4
4
  "description": "TypeScript types generated from IGN OpenAPI specification",
5
5
  "license": "MIT",
6
6
  "author": "FireLa Team",
@@ -6179,6 +6179,12 @@ export const $AccountItemDto = {
6179
6179
  type: 'string',
6180
6180
  description: 'Currency code',
6181
6181
  example: 'CNY'
6182
+ },
6183
+ convertedBalance: {
6184
+ type: 'string',
6185
+ description:
6186
+ 'FX-converted balance in base currency; omitted when not convertible',
6187
+ example: '50000.00'
6182
6188
  }
6183
6189
  },
6184
6190
  required: ['id', 'name', 'displayName', 'balance', 'currency']
@@ -6343,6 +6349,12 @@ export const $AccountItemWithAssetClassDto = {
6343
6349
  description: 'Currency code',
6344
6350
  example: 'CNY'
6345
6351
  },
6352
+ convertedBalance: {
6353
+ type: 'string',
6354
+ description:
6355
+ 'FX-converted balance in base currency; omitted when not convertible',
6356
+ example: '50000.00'
6357
+ },
6346
6358
  assetClass: {
6347
6359
  type: 'string',
6348
6360
  description: 'Asset class',
@@ -4313,6 +4313,10 @@ export type AccountItemDto = {
4313
4313
  * Currency code
4314
4314
  */
4315
4315
  currency: string;
4316
+ /**
4317
+ * FX-converted balance in base currency; omitted when not convertible
4318
+ */
4319
+ convertedBalance?: string;
4316
4320
  };
4317
4321
 
4318
4322
  export type PlatformGroupDto = {
@@ -4416,6 +4420,10 @@ export type AccountItemWithAssetClassDto = {
4416
4420
  * Currency code
4417
4421
  */
4418
4422
  currency: string;
4423
+ /**
4424
+ * FX-converted balance in base currency; omitted when not convertible
4425
+ */
4426
+ convertedBalance?: string;
4419
4427
  /**
4420
4428
  * Asset class
4421
4429
  */