@temple-digital-group/temple-canton-js 2.0.0-beta.8 → 2.0.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 (42) hide show
  1. package/README.md +457 -447
  2. package/dist/api/index.js +3 -1
  3. package/dist/api/types.d.ts +1 -0
  4. package/dist/canton/deposits.js +4 -1
  5. package/dist/canton/withdrawals.js +19 -3
  6. package/index.js +15 -15
  7. package/package.json +49 -49
  8. package/src/api/config.d.ts +20 -20
  9. package/src/api/index.ts +322 -321
  10. package/src/api/tokenStore.ts +30 -30
  11. package/src/api/types.ts +196 -195
  12. package/src/auth0/index.d.ts +1 -1
  13. package/src/auth0/index.js +50 -50
  14. package/src/canton/deposits.ts +5 -1
  15. package/src/canton/helpers.ts +266 -266
  16. package/src/canton/index.d.ts +41 -41
  17. package/src/canton/index.js +3295 -3294
  18. package/src/canton/instrumentCatalog.d.ts +6 -6
  19. package/src/canton/instrumentCatalog.js +183 -183
  20. package/src/canton/request_schemas/cancel_orders_amulet.json +77 -77
  21. package/src/canton/request_schemas/cancel_orders_utility.json +68 -68
  22. package/src/canton/request_schemas/create_order_proposal_amulet.json +94 -94
  23. package/src/canton/request_schemas/create_order_proposal_utility.json +121 -121
  24. package/src/canton/request_schemas/create_utility_credential.json +31 -31
  25. package/src/canton/request_schemas/execute_transfer_factory.json +43 -43
  26. package/src/canton/request_schemas/get_allocation_factory.json +21 -21
  27. package/src/canton/request_schemas/get_amulet_holdings.json +21 -21
  28. package/src/canton/request_schemas/get_instrument_configurations.json +21 -21
  29. package/src/canton/request_schemas/get_locked_amulet_holdings.json +21 -21
  30. package/src/canton/request_schemas/get_order_proposals.json +21 -21
  31. package/src/canton/request_schemas/get_orders.json +21 -21
  32. package/src/canton/request_schemas/get_sender_credentials.json +22 -22
  33. package/src/canton/request_schemas/get_transfer_factory.json +28 -28
  34. package/src/canton/request_schemas/get_utility_holdings.json +21 -21
  35. package/src/canton/request_schemas/unlock_amulet.json +38 -38
  36. package/src/canton/walletAdapter.d.ts +7 -6
  37. package/src/canton/walletAdapter.js +112 -89
  38. package/src/canton/withdrawals.ts +511 -489
  39. package/src/config/index.d.ts +63 -63
  40. package/src/config/index.js +188 -188
  41. package/src/websocket/index.ts +341 -341
  42. package/src/websocket/ws.d.ts +24 -24
@@ -1,24 +1,24 @@
1
- declare module "ws" {
2
- import { EventEmitter } from "events";
3
-
4
- class WebSocket extends EventEmitter {
5
- static readonly CONNECTING: 0;
6
- static readonly OPEN: 1;
7
- static readonly CLOSING: 2;
8
- static readonly CLOSED: 3;
9
-
10
- readonly readyState: number;
11
-
12
- constructor(address: string, options?: { headers?: Record<string, string> });
13
-
14
- close(code?: number, reason?: string): void;
15
- send(data: string | Buffer): void;
16
-
17
- onopen: ((event: { target: WebSocket }) => void) | null;
18
- onclose: ((event: { code: number; reason: string; target: WebSocket }) => void) | null;
19
- onmessage: ((event: { data: unknown; target: WebSocket }) => void) | null;
20
- onerror: ((event: { error: unknown; target: WebSocket }) => void) | null;
21
- }
22
-
23
- export default WebSocket;
24
- }
1
+ declare module "ws" {
2
+ import { EventEmitter } from "events";
3
+
4
+ class WebSocket extends EventEmitter {
5
+ static readonly CONNECTING: 0;
6
+ static readonly OPEN: 1;
7
+ static readonly CLOSING: 2;
8
+ static readonly CLOSED: 3;
9
+
10
+ readonly readyState: number;
11
+
12
+ constructor(address: string, options?: { headers?: Record<string, string> });
13
+
14
+ close(code?: number, reason?: string): void;
15
+ send(data: string | Buffer): void;
16
+
17
+ onopen: ((event: { target: WebSocket }) => void) | null;
18
+ onclose: ((event: { code: number; reason: string; target: WebSocket }) => void) | null;
19
+ onmessage: ((event: { data: unknown; target: WebSocket }) => void) | null;
20
+ onerror: ((event: { error: unknown; target: WebSocket }) => void) | null;
21
+ }
22
+
23
+ export default WebSocket;
24
+ }