@cardanowall/sdk-ts 0.3.0 → 0.5.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 (49) hide show
  1. package/dist/client/index.cjs +1146 -365
  2. package/dist/client/index.cjs.map +1 -1
  3. package/dist/client/index.d.cts +48 -7
  4. package/dist/client/index.d.ts +48 -7
  5. package/dist/client/index.js +1144 -367
  6. package/dist/client/index.js.map +1 -1
  7. package/dist/conformance/cli.cjs +4400 -2121
  8. package/dist/conformance/cli.cjs.map +1 -1
  9. package/dist/conformance/cli.js +4401 -2122
  10. package/dist/conformance/cli.js.map +1 -1
  11. package/dist/fetch/index.cjs +33 -14
  12. package/dist/fetch/index.cjs.map +1 -1
  13. package/dist/fetch/index.d.cts +2 -2
  14. package/dist/fetch/index.d.ts +2 -2
  15. package/dist/fetch/index.js +32 -15
  16. package/dist/fetch/index.js.map +1 -1
  17. package/dist/{fetch-outbound-BT5-NiYN.d.cts → fetch-outbound-dOK3ZxYa.d.cts} +7 -3
  18. package/dist/{fetch-outbound-BT5-NiYN.d.ts → fetch-outbound-dOK3ZxYa.d.ts} +7 -3
  19. package/dist/hash/index.cjs +1 -1
  20. package/dist/hash/index.cjs.map +1 -1
  21. package/dist/hash/index.js +1 -1
  22. package/dist/hash/index.js.map +1 -1
  23. package/dist/identity/index.cjs +356 -230
  24. package/dist/identity/index.cjs.map +1 -1
  25. package/dist/identity/index.d.cts +3 -2
  26. package/dist/identity/index.d.ts +3 -2
  27. package/dist/identity/index.js +356 -230
  28. package/dist/identity/index.js.map +1 -1
  29. package/dist/index.cjs +5480 -2520
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.d.cts +7 -7
  32. package/dist/index.d.ts +7 -7
  33. package/dist/index.js +5460 -2516
  34. package/dist/index.js.map +1 -1
  35. package/dist/merkle/index.cjs +1 -1
  36. package/dist/merkle/index.js +1 -1
  37. package/dist/types-Cexm4VH9.d.cts +119 -0
  38. package/dist/types-CgoBub9J.d.ts +119 -0
  39. package/dist/{types-DGsZTMuZ.d.cts → types-DNu_IrWZ.d.cts} +236 -7
  40. package/dist/{types-DGsZTMuZ.d.ts → types-DNu_IrWZ.d.ts} +236 -7
  41. package/dist/verifier/index.cjs +4419 -2147
  42. package/dist/verifier/index.cjs.map +1 -1
  43. package/dist/verifier/index.d.cts +159 -111
  44. package/dist/verifier/index.d.ts +159 -111
  45. package/dist/verifier/index.js +4407 -2143
  46. package/dist/verifier/index.js.map +1 -1
  47. package/package.json +3 -3
  48. package/dist/types-B8Q3gW54.d.ts +0 -123
  49. package/dist/types-CLXdbjqr.d.cts +0 -123
@@ -1,6 +1,6 @@
1
1
  import { DerivedEd25519KeyPair, DerivedX25519KeyPair, DerivedMlKem768X25519KeyPair } from '@cardanowall/crypto-core/seed-derive';
2
- import { SealedEnvelope, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
3
- import { S as Signer } from '../types-DGsZTMuZ.cjs';
2
+ import { SealedEnvelope, ItemHashes, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
3
+ import { S as Signer } from '../types-DNu_IrWZ.cjs';
4
4
 
5
5
  interface SeedKeys {
6
6
  readonly ed25519: DerivedEd25519KeyPair;
@@ -21,6 +21,7 @@ interface DecryptSealedFromSeedArgs {
21
21
  readonly seed: Uint8Array;
22
22
  readonly envelope: SealedEnvelope;
23
23
  readonly ciphertext: Uint8Array;
24
+ readonly hashes: ItemHashes;
24
25
  }
25
26
  declare function decryptSealedFromSeed(args: DecryptSealedFromSeedArgs): UnwrapResult;
26
27
 
@@ -1,6 +1,6 @@
1
1
  import { DerivedEd25519KeyPair, DerivedX25519KeyPair, DerivedMlKem768X25519KeyPair } from '@cardanowall/crypto-core/seed-derive';
2
- import { SealedEnvelope, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
3
- import { S as Signer } from '../types-DGsZTMuZ.js';
2
+ import { SealedEnvelope, ItemHashes, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
3
+ import { S as Signer } from '../types-DNu_IrWZ.js';
4
4
 
5
5
  interface SeedKeys {
6
6
  readonly ed25519: DerivedEd25519KeyPair;
@@ -21,6 +21,7 @@ interface DecryptSealedFromSeedArgs {
21
21
  readonly seed: Uint8Array;
22
22
  readonly envelope: SealedEnvelope;
23
23
  readonly ciphertext: Uint8Array;
24
+ readonly hashes: ItemHashes;
24
25
  }
25
26
  declare function decryptSealedFromSeed(args: DecryptSealedFromSeedArgs): UnwrapResult;
26
27