@cardanowall/sdk-ts 0.2.0 → 0.4.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 +2566 -1706
  2. package/dist/client/index.cjs.map +1 -1
  3. package/dist/client/index.d.cts +42 -5
  4. package/dist/client/index.d.ts +42 -5
  5. package/dist/client/index.js +2564 -1708
  6. package/dist/client/index.js.map +1 -1
  7. package/dist/conformance/cli.cjs +5978 -3438
  8. package/dist/conformance/cli.cjs.map +1 -1
  9. package/dist/conformance/cli.js +5978 -3438
  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 +460 -219
  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 +460 -219
  28. package/dist/identity/index.js.map +1 -1
  29. package/dist/index.cjs +6912 -3678
  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 +6890 -3672
  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-Dp4wUSFI.d.cts} +220 -1
  40. package/dist/{types-DGsZTMuZ.d.ts → types-Dp4wUSFI.d.ts} +220 -1
  41. package/dist/verifier/index.cjs +5738 -3205
  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 +5726 -3201
  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-Dp4wUSFI.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-Dp4wUSFI.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