@cardanowall/sdk-ts 0.4.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.
- package/dist/client/index.cjs +6 -2
- package/dist/client/index.cjs.map +1 -1
- package/dist/client/index.d.cts +8 -4
- package/dist/client/index.d.ts +8 -4
- package/dist/client/index.js +6 -2
- package/dist/client/index.js.map +1 -1
- package/dist/identity/index.d.cts +1 -1
- package/dist/identity/index.d.ts +1 -1
- package/dist/index.cjs +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/{types-Dp4wUSFI.d.cts → types-DNu_IrWZ.d.cts} +16 -6
- package/dist/{types-Dp4wUSFI.d.ts → types-DNu_IrWZ.d.ts} +16 -6
- package/package.json +3 -3
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DerivedEd25519KeyPair, DerivedX25519KeyPair, DerivedMlKem768X25519KeyPair } from '@cardanowall/crypto-core/seed-derive';
|
|
2
2
|
import { SealedEnvelope, ItemHashes, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
|
|
3
|
-
import { S as Signer } from '../types-
|
|
3
|
+
import { S as Signer } from '../types-DNu_IrWZ.cjs';
|
|
4
4
|
|
|
5
5
|
interface SeedKeys {
|
|
6
6
|
readonly ed25519: DerivedEd25519KeyPair;
|
package/dist/identity/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { DerivedEd25519KeyPair, DerivedX25519KeyPair, DerivedMlKem768X25519KeyPair } from '@cardanowall/crypto-core/seed-derive';
|
|
2
2
|
import { SealedEnvelope, ItemHashes, UnwrapResult, RecipientKeyBundle } from '@cardanowall/crypto-core/sealed-poe';
|
|
3
|
-
import { S as Signer } from '../types-
|
|
3
|
+
import { S as Signer } from '../types-DNu_IrWZ.js';
|
|
4
4
|
|
|
5
5
|
interface SeedKeys {
|
|
6
6
|
readonly ed25519: DerivedEd25519KeyPair;
|
package/dist/index.cjs
CHANGED
|
@@ -9578,8 +9578,12 @@ var RecordsNamespace = class {
|
|
|
9578
9578
|
* between.
|
|
9579
9579
|
*
|
|
9580
9580
|
* Auth required (Bearer with `poe:read` scope, or NextAuth session
|
|
9581
|
-
* cookie).
|
|
9582
|
-
*
|
|
9581
|
+
* cookie). This is the hosted PUBLIC verifier: it accepts no decryption
|
|
9582
|
+
* credentials, and sealed items report as unverifiable without decryption.
|
|
9583
|
+
* To verify as a recipient (decrypt + plaintext-hash recheck), run the
|
|
9584
|
+
* `verifier` module locally with its `decryption` input — keys never leave
|
|
9585
|
+
* the process. Optional `fetch_content: false` skips content re-fetching;
|
|
9586
|
+
* affected claims report `not_checked`.
|
|
9583
9587
|
*/
|
|
9584
9588
|
async verify(txHash, input) {
|
|
9585
9589
|
const response = await this.config.fetch(
|