@bloqzapi/api-ts 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/openapi.d.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloqzapi/api-ts",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Bloqz Intent API SDK (TypeScript)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/openapi.d.ts CHANGED
@@ -262,6 +262,8 @@ export interface components {
262
262
  action: "stake" | "swap" | "transfer" | "bridge";
263
263
  asset?: string;
264
264
  amount?: string;
265
+ fiatAmount?: string;
266
+ fiatCurrency?: string;
265
267
  /** @enum {string} */
266
268
  chain?: "ethereum" | "polygon" | "arbitrum" | "optimism" | "base" | "solana" | "bsc";
267
269
  protocol?: string;
@@ -295,6 +297,8 @@ export interface components {
295
297
  action: "stake" | "swap" | "transfer" | "bridge";
296
298
  asset?: string;
297
299
  amount?: string;
300
+ fiatAmount?: string;
301
+ fiatCurrency?: string;
298
302
  /** @enum {string} */
299
303
  chain?: "ethereum" | "polygon" | "arbitrum" | "optimism" | "base" | "solana" | "bsc";
300
304
  protocol?: string;