@lit-protocol/vincent-policy-spending-limit 1.0.1 → 1.0.2

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 (34) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/CHANGELOG.md +14 -0
  3. package/dist/package.json +4 -1
  4. package/dist/src/generated/lit-action.js +2 -2
  5. package/dist/src/generated/vincent-bundled-policy.js +1 -0
  6. package/dist/src/generated/vincent-bundled-policy.js.map +1 -0
  7. package/dist/src/generated/vincent-policy-metadata.json +1 -1
  8. package/dist/src/index.js +1 -0
  9. package/dist/src/index.js.map +1 -0
  10. package/dist/src/lib/lit-action.js +1 -0
  11. package/dist/src/lib/lit-action.js.map +1 -0
  12. package/dist/src/lib/policy-helpers/calculate-usd-value.js +1 -0
  13. package/dist/src/lib/policy-helpers/calculate-usd-value.js.map +1 -0
  14. package/dist/src/lib/policy-helpers/check-spending-limit.js +1 -0
  15. package/dist/src/lib/policy-helpers/check-spending-limit.js.map +1 -0
  16. package/dist/src/lib/policy-helpers/get-eth-usd-price.js +1 -0
  17. package/dist/src/lib/policy-helpers/get-eth-usd-price.js.map +1 -0
  18. package/dist/src/lib/policy-helpers/get-token-amount-in-usd.js +1 -0
  19. package/dist/src/lib/policy-helpers/get-token-amount-in-usd.js.map +1 -0
  20. package/dist/src/lib/policy-helpers/get-uniswap-quote.js +1 -0
  21. package/dist/src/lib/policy-helpers/get-uniswap-quote.js.map +1 -0
  22. package/dist/src/lib/policy-helpers/index.js +1 -0
  23. package/dist/src/lib/policy-helpers/index.js.map +1 -0
  24. package/dist/src/lib/policy-helpers/send-spend-tx.js +1 -0
  25. package/dist/src/lib/policy-helpers/send-spend-tx.js.map +1 -0
  26. package/dist/src/lib/policy-helpers/sign-tx.js +1 -0
  27. package/dist/src/lib/policy-helpers/sign-tx.js.map +1 -0
  28. package/dist/src/lib/policy-helpers/spending-limit-contract.js +1 -0
  29. package/dist/src/lib/policy-helpers/spending-limit-contract.js.map +1 -0
  30. package/dist/src/lib/schemas.js +1 -0
  31. package/dist/src/lib/schemas.js.map +1 -0
  32. package/dist/src/lib/vincent-policy.js +1 -0
  33. package/dist/src/lib/vincent-policy.js.map +1 -0
  34. package/package.json +5 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,14 @@
1
+ ## 1.0.2 (2025-07-08)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - - Fixed a case where a deny response from a policy could be returned without being parsed by its deny result schema ([27a35240](https://github.com/LIT-Protocol/Vincent/commit/27a35240))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated tool-sdk to 1.0.2
10
+ - Updated app-sdk to 1.0.2
11
+
12
+ ### ❤️ Thank You
13
+
14
+ - Daryl Collins
@@ -0,0 +1,14 @@
1
+ ## 1.0.2 (2025-07-08)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - - Fixed a case where a deny response from a policy could be returned without being parsed by its deny result schema ([27a35240](https://github.com/LIT-Protocol/Vincent/commit/27a35240))
6
+
7
+ ### 🧱 Updated Dependencies
8
+
9
+ - Updated tool-sdk to 1.0.2
10
+ - Updated app-sdk to 1.0.2
11
+
12
+ ### ❤️ Thank You
13
+
14
+ - Daryl Collins
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lit-protocol/vincent-policy-spending-limit",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -11,6 +11,9 @@
11
11
  "tslib": "2.8.1",
12
12
  "zod": "^3.25.64"
13
13
  },
14
+ "peerDependencies": {
15
+ "@lit-protocol/vincent-app-sdk": "workspace:^"
16
+ },
14
17
  "devDependencies": {
15
18
  "esbuild": "^0.19.12",
16
19
  "esbuild-plugin-polyfill-node": "^0.3.0",