@dzapio/sdk 2.0.37 → 2.0.38

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
@@ -892,8 +892,11 @@ type ZapStatusStep = {
892
892
  };
893
893
  type ZapStatusResponse = {
894
894
  status: ZapStatus;
895
- steps: ZapStatusStep[];
895
+ account: string;
896
896
  recipient: string;
897
+ input: ZapStatusAsset[];
898
+ output: ZapStatusAsset[];
899
+ steps: ZapStatusStep[];
897
900
  timestamp: number;
898
901
  completedAt: number;
899
902
  };
package/dist/index.d.ts CHANGED
@@ -892,8 +892,11 @@ type ZapStatusStep = {
892
892
  };
893
893
  type ZapStatusResponse = {
894
894
  status: ZapStatus;
895
- steps: ZapStatusStep[];
895
+ account: string;
896
896
  recipient: string;
897
+ input: ZapStatusAsset[];
898
+ output: ZapStatusAsset[];
899
+ steps: ZapStatusStep[];
897
900
  timestamp: number;
898
901
  completedAt: number;
899
902
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzapio/sdk",
3
- "version": "2.0.37",
3
+ "version": "2.0.38",
4
4
  "description": "A TypeScript/JavaScript SDK for interacting with the DZap protocol, providing utilities for DeFi operations including Swaps, Bridges, and Zaps.",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",