@dynamic-labs-sdk/react-hooks 1.14.0 → 1.17.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 (32) hide show
  1. package/dist/foundation/hookKeyNamespace/hookKeyNamespace.d.ts +8 -0
  2. package/dist/foundation/hookKeyNamespace/hookKeyNamespace.d.ts.map +1 -0
  3. package/dist/foundation/useBaseMutation/index.d.ts +1 -1
  4. package/dist/foundation/useBaseMutation/index.d.ts.map +1 -1
  5. package/dist/foundation/useBaseMutation/useBaseMutation.d.ts +23 -1
  6. package/dist/foundation/useBaseMutation/useBaseMutation.d.ts.map +1 -1
  7. package/dist/foundation/useBaseQuery/index.d.ts +1 -1
  8. package/dist/foundation/useBaseQuery/index.d.ts.map +1 -1
  9. package/dist/foundation/useBaseQuery/queryKeyPrefix.d.ts +6 -0
  10. package/dist/foundation/useBaseQuery/queryKeyPrefix.d.ts.map +1 -0
  11. package/dist/foundation/useBaseQuery/useBaseQuery.d.ts +22 -1
  12. package/dist/foundation/useBaseQuery/useBaseQuery.d.ts.map +1 -1
  13. package/dist/foundation/useBaseState/useBaseState.d.ts +1 -1
  14. package/dist/foundation/useBaseState/useBaseState.d.ts.map +1 -1
  15. package/dist/hooks/wrappers/functions/useAuthenticateTotpMfaDevice/useAuthenticateTotpMfaDevice.d.ts.map +1 -1
  16. package/dist/hooks/wrappers/functions/useCompleteDeviceRegistration/useCompleteDeviceRegistration.d.ts.map +1 -1
  17. package/dist/hooks/wrappers/functions/useDeleteMfaDevice/useDeleteMfaDevice.d.ts.map +1 -1
  18. package/dist/hooks/wrappers/functions/useGetActiveNetworkData/useGetActiveNetworkData.d.ts.map +1 -1
  19. package/dist/hooks/wrappers/functions/useRegisterTotpMfaDevice/useRegisterTotpMfaDevice.d.ts.map +1 -1
  20. package/dist/hooks/wrappers/functions/useRevokeAllRegisteredDevices/useRevokeAllRegisteredDevices.d.ts.map +1 -1
  21. package/dist/hooks/wrappers/functions/useRevokeRegisteredDevice/useRevokeRegisteredDevice.d.ts.map +1 -1
  22. package/dist/hooks/wrappers/functions/useSetDefaultMfaDevice/useSetDefaultMfaDevice.d.ts.map +1 -1
  23. package/dist/index.cjs +115 -27
  24. package/dist/index.cjs.map +1 -1
  25. package/dist/index.esm.js +115 -27
  26. package/dist/index.esm.js.map +1 -1
  27. package/dist/middlewares/invalidatesQueries/index.d.ts +2 -0
  28. package/dist/middlewares/invalidatesQueries/index.d.ts.map +1 -0
  29. package/dist/middlewares/invalidatesQueries/invalidatesQueries.d.ts +19 -0
  30. package/dist/middlewares/invalidatesQueries/invalidatesQueries.d.ts.map +1 -0
  31. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  32. 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.14.0",
3
+ "version": "1.17.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.14.0"
20
+ "@dynamic-labs-sdk/assert-package-version": "1.17.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.14.0"
25
+ "@dynamic-labs-sdk/client": "1.17.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.14.0"
33
+ "@dynamic-labs-sdk/client": "1.17.0"
34
34
  },
35
35
  "scripts": {
36
36
  "build": "rm -rf dist && tsdown && pnpm exec tsc --emitDeclarationOnly -p ./tsconfig.lib.json",