squarefi-bff-api-module 1.34.11 → 1.34.12

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.
@@ -1646,7 +1646,7 @@ export interface components {
1646
1646
  meta: components["schemas"]["CryptoCurrencyMetaDto"];
1647
1647
  is_enabled: boolean;
1648
1648
  /** @example true */
1649
- is_crypto: boolean;
1649
+ is_crypto: Record<string, never>;
1650
1650
  };
1651
1651
  FiatCurrencyMetaDto: {
1652
1652
  icon: string;
@@ -1668,7 +1668,7 @@ export interface components {
1668
1668
  meta: components["schemas"]["FiatCurrencyMetaDto"];
1669
1669
  is_enabled: boolean;
1670
1670
  /** @example false */
1671
- is_crypto: boolean;
1671
+ is_crypto: Record<string, never>;
1672
1672
  };
1673
1673
  AllCurrenciesResponseDto: {
1674
1674
  total: number;
@@ -2241,6 +2241,7 @@ export declare namespace API {
2241
2241
  from_date?: string;
2242
2242
  to_date?: string;
2243
2243
  crypto_id?: string;
2244
+ logo?: string;
2244
2245
  };
2245
2246
  type Response = string;
2246
2247
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.34.11",
3
+ "version": "1.34.12",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",