@paradym/wallet-sdk 0.0.0-alpha-20260112103438 → 0.0.0-alpha-20260112112103
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/index.d.mts +6 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4,7 +4,7 @@ import * as react0 from "react";
|
|
|
4
4
|
import { PropsWithChildren } from "react";
|
|
5
5
|
import * as _credo_ts_core48 from "@credo-ts/core";
|
|
6
6
|
import { Agent, BaseLogger, ClaimFormat, ConsoleLogger, DidsModule, Kms, LogLevel, MdocRecord, MdocRecord as MdocRecord$1, PeerDidNumAlgo, SdJwtVcRecord, SdJwtVcRecord as SdJwtVcRecord$1, W3cCredentialRecord, W3cCredentialRecord as W3cCredentialRecord$1, W3cV2CredentialRecord, W3cV2CredentialRecord as W3cV2CredentialRecord$1, X509Certificate, X509Module, X509ModuleConfigOptions } from "@credo-ts/core";
|
|
7
|
-
import * as
|
|
7
|
+
import * as _tanstack_react_query0 from "@tanstack/react-query";
|
|
8
8
|
import { QueryClient } from "@tanstack/react-query";
|
|
9
9
|
import { AnonCredsDidCommCredentialFormatService, AnonCredsDidCommProofFormatService, AnonCredsModule, DidCommCredentialV1Protocol, DidCommProofV1Protocol, LegacyIndyDidCommCredentialFormatService, LegacyIndyDidCommProofFormatService } from "@credo-ts/anoncreds";
|
|
10
10
|
import * as _credo_ts_didcomm0 from "@credo-ts/didcomm";
|
|
@@ -418,7 +418,7 @@ declare function useCredentialByCategory(credentialCategory: string): {
|
|
|
418
418
|
//#endregion
|
|
419
419
|
//#region src/hooks/useDidCommConnectionActions.d.ts
|
|
420
420
|
declare function useDidCommConnectionActions(resolved?: ResolveOutOfBandInvitationResult): {
|
|
421
|
-
acceptConnection:
|
|
421
|
+
acceptConnection: _tanstack_react_query0.UseMutateAsyncFunction<{
|
|
422
422
|
flowType: "issue";
|
|
423
423
|
credentialExchangeId: string;
|
|
424
424
|
connectionId?: string;
|
|
@@ -444,8 +444,8 @@ declare function useDidCommConnectionActions(resolved?: ResolveOutOfBandInvitati
|
|
|
444
444
|
//#endregion
|
|
445
445
|
//#region src/hooks/useDidCommCredentialActions.d.ts
|
|
446
446
|
declare function useDidCommCredentialActions(credentialExchangeId: string): {
|
|
447
|
-
acceptCredential:
|
|
448
|
-
declineCredential:
|
|
447
|
+
acceptCredential: _tanstack_react_query0.UseMutateAsyncFunction<_credo_ts_core48.W3cCredentialRecord | undefined, Error, void, unknown>;
|
|
448
|
+
declineCredential: _tanstack_react_query0.UseMutateAsyncFunction<void, Error, void, unknown>;
|
|
449
449
|
acceptStatus: "success" | "error" | "idle" | "pending";
|
|
450
450
|
declineStatus: "success" | "error" | "idle" | "pending";
|
|
451
451
|
credentialExchange: _credo_ts_didcomm0.DidCommCredentialExchangeRecord | undefined;
|
|
@@ -465,10 +465,10 @@ declare function useDidCommCredentialActions(credentialExchangeId: string): {
|
|
|
465
465
|
//#endregion
|
|
466
466
|
//#region src/hooks/useDidCommPresentationActions.d.ts
|
|
467
467
|
declare function useDidCommPresentationActions(proofExchangeId: string): {
|
|
468
|
-
acceptPresentation:
|
|
468
|
+
acceptPresentation: _tanstack_react_query0.UseMutateAsyncFunction<void, Error, {
|
|
469
469
|
[inputDescriptorId: string]: string;
|
|
470
470
|
} | undefined, unknown>;
|
|
471
|
-
declinePresentation:
|
|
471
|
+
declinePresentation: _tanstack_react_query0.UseMutateAsyncFunction<void, Error, void, unknown>;
|
|
472
472
|
acceptStatus: "success" | "error" | "idle" | "pending";
|
|
473
473
|
declineStatus: "success" | "error" | "idle" | "pending";
|
|
474
474
|
proofExchange: _credo_ts_didcomm0.DidCommProofExchangeRecord | undefined;
|