@dynamic-labs-sdk/react-hooks 1.9.0 → 1.11.0

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 (36) hide show
  1. package/dist/exports/index.d.ts +13 -6
  2. package/dist/exports/index.d.ts.map +1 -1
  3. package/dist/hooks/wrappers/functions/useAttachFlowSource/index.d.ts +3 -0
  4. package/dist/hooks/wrappers/functions/useAttachFlowSource/index.d.ts.map +1 -0
  5. package/dist/hooks/wrappers/functions/useAttachFlowSource/useAttachFlowSource.d.ts +29 -0
  6. package/dist/hooks/wrappers/functions/useAttachFlowSource/useAttachFlowSource.d.ts.map +1 -0
  7. package/dist/hooks/wrappers/functions/useBroadcastFlow/index.d.ts +3 -0
  8. package/dist/hooks/wrappers/functions/useBroadcastFlow/index.d.ts.map +1 -0
  9. package/dist/hooks/wrappers/functions/useBroadcastFlow/useBroadcastFlow.d.ts +29 -0
  10. package/dist/hooks/wrappers/functions/useBroadcastFlow/useBroadcastFlow.d.ts.map +1 -0
  11. package/dist/hooks/wrappers/functions/useCancelFlow/index.d.ts +3 -0
  12. package/dist/hooks/wrappers/functions/useCancelFlow/index.d.ts.map +1 -0
  13. package/dist/hooks/wrappers/functions/useCancelFlow/useCancelFlow.d.ts +28 -0
  14. package/dist/hooks/wrappers/functions/useCancelFlow/useCancelFlow.d.ts.map +1 -0
  15. package/dist/hooks/wrappers/functions/useGetFlow/index.d.ts +3 -0
  16. package/dist/hooks/wrappers/functions/useGetFlow/index.d.ts.map +1 -0
  17. package/dist/hooks/wrappers/functions/useGetFlow/useGetFlow.d.ts +27 -0
  18. package/dist/hooks/wrappers/functions/useGetFlow/useGetFlow.d.ts.map +1 -0
  19. package/dist/hooks/wrappers/functions/useGetFlowQuote/index.d.ts +3 -0
  20. package/dist/hooks/wrappers/functions/useGetFlowQuote/index.d.ts.map +1 -0
  21. package/dist/hooks/wrappers/functions/useGetFlowQuote/useGetFlowQuote.d.ts +28 -0
  22. package/dist/hooks/wrappers/functions/useGetFlowQuote/useGetFlowQuote.d.ts.map +1 -0
  23. package/dist/hooks/wrappers/functions/usePrepareFlowSigning/index.d.ts +3 -0
  24. package/dist/hooks/wrappers/functions/usePrepareFlowSigning/index.d.ts.map +1 -0
  25. package/dist/hooks/wrappers/functions/usePrepareFlowSigning/usePrepareFlowSigning.d.ts +28 -0
  26. package/dist/hooks/wrappers/functions/usePrepareFlowSigning/usePrepareFlowSigning.d.ts.map +1 -0
  27. package/dist/hooks/wrappers/functions/useSubmitFlowTransaction/index.d.ts +3 -0
  28. package/dist/hooks/wrappers/functions/useSubmitFlowTransaction/index.d.ts.map +1 -0
  29. package/dist/hooks/wrappers/functions/useSubmitFlowTransaction/useSubmitFlowTransaction.d.ts +29 -0
  30. package/dist/hooks/wrappers/functions/useSubmitFlowTransaction/useSubmitFlowTransaction.d.ts.map +1 -0
  31. package/dist/index.cjs +223 -68
  32. package/dist/index.cjs.map +1 -1
  33. package/dist/index.esm.js +218 -70
  34. package/dist/index.esm.js.map +1 -1
  35. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  36. package/package.json +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs-sdk/react-hooks",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.esm.js",
@@ -17,12 +17,12 @@
17
17
  }
18
18
  },
19
19
  "dependencies": {
20
- "@dynamic-labs-sdk/assert-package-version": "1.9.0"
20
+ "@dynamic-labs-sdk/assert-package-version": "1.11.0"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "@tanstack/react-query": "^5.0.0",
24
24
  "react": "^18.0.0 || ^19.0.0",
25
- "@dynamic-labs-sdk/client": "1.9.0"
25
+ "@dynamic-labs-sdk/client": "1.11.0"
26
26
  },
27
27
  "devDependencies": {
28
28
  "@tanstack/react-query": "5.81.2",
@@ -30,7 +30,7 @@
30
30
  "react": "19.1.0",
31
31
  "react-dom": "19.1.0",
32
32
  "vitest": "4.1.6",
33
- "@dynamic-labs-sdk/client": "1.9.0"
33
+ "@dynamic-labs-sdk/client": "1.11.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "rm -rf dist && tsdown && pnpm exec tsc --emitDeclarationOnly -p ./tsconfig.lib.json",