@privy-io/node 0.1.0 → 0.3.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 (66) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/internal/to-file.d.mts +1 -1
  3. package/internal/to-file.d.ts +1 -1
  4. package/internal/to-file.js +1 -1
  5. package/internal/to-file.mjs +1 -1
  6. package/lib/cryptography.d.mts +3 -0
  7. package/lib/cryptography.d.mts.map +1 -1
  8. package/lib/cryptography.d.ts +3 -0
  9. package/lib/cryptography.d.ts.map +1 -1
  10. package/lib/cryptography.js +8 -1
  11. package/lib/cryptography.js.map +1 -1
  12. package/lib/cryptography.mjs +7 -1
  13. package/lib/cryptography.mjs.map +1 -1
  14. package/package.json +4 -3
  15. package/public-api/PrivyClient.d.mts +5 -1
  16. package/public-api/PrivyClient.d.mts.map +1 -1
  17. package/public-api/PrivyClient.d.ts +5 -1
  18. package/public-api/PrivyClient.d.ts.map +1 -1
  19. package/public-api/PrivyClient.js +6 -1
  20. package/public-api/PrivyClient.js.map +1 -1
  21. package/public-api/PrivyClient.mjs +6 -1
  22. package/public-api/PrivyClient.mjs.map +1 -1
  23. package/public-api/services/webhooks.d.mts +34 -0
  24. package/public-api/services/webhooks.d.mts.map +1 -0
  25. package/public-api/services/webhooks.d.ts +34 -0
  26. package/public-api/services/webhooks.d.ts.map +1 -0
  27. package/public-api/services/webhooks.js +48 -0
  28. package/public-api/services/webhooks.js.map +1 -0
  29. package/public-api/services/webhooks.mjs +43 -0
  30. package/public-api/services/webhooks.mjs.map +1 -0
  31. package/resources/transactions.d.mts +1 -1
  32. package/resources/transactions.d.mts.map +1 -1
  33. package/resources/transactions.d.ts +1 -1
  34. package/resources/transactions.d.ts.map +1 -1
  35. package/resources/users.d.mts +18 -5
  36. package/resources/users.d.mts.map +1 -1
  37. package/resources/users.d.ts +18 -5
  38. package/resources/users.d.ts.map +1 -1
  39. package/resources/wallets/balance.d.mts +4 -4
  40. package/resources/wallets/balance.d.mts.map +1 -1
  41. package/resources/wallets/balance.d.ts +4 -4
  42. package/resources/wallets/balance.d.ts.map +1 -1
  43. package/resources/wallets/transactions.d.mts +6 -6
  44. package/resources/wallets/transactions.d.mts.map +1 -1
  45. package/resources/wallets/transactions.d.ts +6 -6
  46. package/resources/wallets/transactions.d.ts.map +1 -1
  47. package/resources/wallets/wallets.d.mts +4 -4
  48. package/resources/wallets/wallets.d.mts.map +1 -1
  49. package/resources/wallets/wallets.d.ts +4 -4
  50. package/resources/wallets/wallets.d.ts.map +1 -1
  51. package/resources/wallets/wallets.js.map +1 -1
  52. package/resources/wallets/wallets.mjs.map +1 -1
  53. package/src/internal/to-file.ts +1 -1
  54. package/src/lib/cryptography.ts +9 -1
  55. package/src/public-api/PrivyClient.ts +9 -0
  56. package/src/public-api/services/webhooks.ts +63 -0
  57. package/src/resources/transactions.ts +9 -1
  58. package/src/resources/users.ts +31 -2
  59. package/src/resources/wallets/balance.ts +39 -4
  60. package/src/resources/wallets/transactions.ts +44 -8
  61. package/src/resources/wallets/wallets.ts +8 -3
  62. package/src/version.ts +1 -1
  63. package/version.d.mts +1 -1
  64. package/version.d.ts +1 -1
  65. package/version.js +1 -1
  66. package/version.mjs +1 -1
@@ -297,7 +297,8 @@ export interface Wallet {
297
297
  | 'near'
298
298
  | 'spark'
299
299
  | 'ton'
300
- | 'starknet';
300
+ | 'starknet'
301
+ | 'movement';
301
302
 
302
303
  /**
303
304
  * Unix timestamp of when the wallet was created in milliseconds.
@@ -653,7 +654,8 @@ export interface WalletCreateParams {
653
654
  | 'near'
654
655
  | 'spark'
655
656
  | 'ton'
656
- | 'starknet';
657
+ | 'starknet'
658
+ | 'movement';
657
659
 
658
660
  /**
659
661
  * Body param: Additional signers for the wallet.
@@ -716,6 +718,8 @@ export interface WalletListParams extends CursorParams {
716
718
  | 'cosmos'
717
719
  | 'stellar'
718
720
  | 'sui'
721
+ | 'aptos'
722
+ | 'movement'
719
723
  | 'tron'
720
724
  | 'bitcoin-segwit'
721
725
  | 'near'
@@ -1536,7 +1540,8 @@ export namespace WalletCreateWalletsWithRecoveryParams {
1536
1540
  | 'near'
1537
1541
  | 'spark'
1538
1542
  | 'ton'
1539
- | 'starknet';
1543
+ | 'starknet'
1544
+ | 'movement';
1540
1545
 
1541
1546
  /**
1542
1547
  * List of policy IDs for policies that should be enforced on the wallet.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.1.0'; // x-release-please-version
1
+ export const VERSION = '0.3.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0";
1
+ export declare const VERSION = "0.3.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.1.0";
1
+ export declare const VERSION = "0.3.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.1.0'; // x-release-please-version
4
+ exports.VERSION = '0.3.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.1.0'; // x-release-please-version
1
+ export const VERSION = '0.3.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map