@triveria/wallet 0.0.185 → 0.0.186
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/api.d.ts +41 -41
- package/package.json +1 -1
package/api.d.ts
CHANGED
|
@@ -2595,7 +2595,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2595
2595
|
* @param {*} [options] Override http request option.
|
|
2596
2596
|
* @throws {RequiredError}
|
|
2597
2597
|
*/
|
|
2598
|
-
credentialAddToIssuanceQueue(credentialId: string, walletId: string, issuanceQueueCredentialAdd?: IssuanceQueueCredentialAdd, options?:
|
|
2598
|
+
credentialAddToIssuanceQueue(credentialId: string, walletId: string, issuanceQueueCredentialAdd?: IssuanceQueueCredentialAdd, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2599
2599
|
/**
|
|
2600
2600
|
* Creates a new draft credential.
|
|
2601
2601
|
* @param {string} walletId
|
|
@@ -2603,7 +2603,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2603
2603
|
* @param {*} [options] Override http request option.
|
|
2604
2604
|
* @throws {RequiredError}
|
|
2605
2605
|
*/
|
|
2606
|
-
credentialCreate(walletId: string, credentialPayload?: CredentialPayload, options?:
|
|
2606
|
+
credentialCreate(walletId: string, credentialPayload?: CredentialPayload, options?: RawAxiosRequestConfig): AxiosPromise<CredentialIdObject>;
|
|
2607
2607
|
/**
|
|
2608
2608
|
* Retrieves a specific verifiable credential based on the provided identifier. Upon retrieval the status of the credential is checked on the fly and therefore guaranteed.
|
|
2609
2609
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2611,7 +2611,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2611
2611
|
* @param {*} [options] Override http request option.
|
|
2612
2612
|
* @throws {RequiredError}
|
|
2613
2613
|
*/
|
|
2614
|
-
credentialGet(credentialId: string, walletId: string, options?:
|
|
2614
|
+
credentialGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<CredentialWrapper>;
|
|
2615
2615
|
/**
|
|
2616
2616
|
* Import pre-signed credential into wallet
|
|
2617
2617
|
* @param {string} walletId
|
|
@@ -2619,7 +2619,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2619
2619
|
* @param {*} [options] Override http request option.
|
|
2620
2620
|
* @throws {RequiredError}
|
|
2621
2621
|
*/
|
|
2622
|
-
credentialImport(walletId: string, credentialImport?: CredentialImport, options?:
|
|
2622
|
+
credentialImport(walletId: string, credentialImport?: CredentialImport, options?: RawAxiosRequestConfig): AxiosPromise<Credential>;
|
|
2623
2623
|
/**
|
|
2624
2624
|
* Retrieves a list of credentials.
|
|
2625
2625
|
* @param {string} walletId
|
|
@@ -2633,7 +2633,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2633
2633
|
* @param {*} [options] Override http request option.
|
|
2634
2634
|
* @throws {RequiredError}
|
|
2635
2635
|
*/
|
|
2636
|
-
credentialList(walletId: string, interaction: CredentialListInteractionEnum, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, path?: string, filter?: string, options?:
|
|
2636
|
+
credentialList(walletId: string, interaction: CredentialListInteractionEnum, type?: string, limit?: number, nextMarker?: string, sort?: ListSort, path?: string, filter?: string, options?: RawAxiosRequestConfig): AxiosPromise<CredentialList>;
|
|
2637
2637
|
/**
|
|
2638
2638
|
* Verifiable Credential metadata may be updated even after the credential was issued. It is available as a key value storage for a client to store any additional data for the credential.
|
|
2639
2639
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2642,7 +2642,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2642
2642
|
* @param {*} [options] Override http request option.
|
|
2643
2643
|
* @throws {RequiredError}
|
|
2644
2644
|
*/
|
|
2645
|
-
credentialMetadataPatch(credentialId: string, walletId: string, credentialMetadata?: CredentialMetadata, options?:
|
|
2645
|
+
credentialMetadataPatch(credentialId: string, walletId: string, credentialMetadata?: CredentialMetadata, options?: RawAxiosRequestConfig): AxiosPromise<CredentialIdObject>;
|
|
2646
2646
|
/**
|
|
2647
2647
|
* Endpoint used to update an existing Credential in draft state. Can be used for additional updates before the Credential is issued. After credential is issued it may not be changed in any way.
|
|
2648
2648
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2651,7 +2651,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2651
2651
|
* @param {*} [options] Override http request option.
|
|
2652
2652
|
* @throws {RequiredError}
|
|
2653
2653
|
*/
|
|
2654
|
-
credentialPatch(credentialId: string, walletId: string, credentialPayload?: CredentialPayload, options?:
|
|
2654
|
+
credentialPatch(credentialId: string, walletId: string, credentialPayload?: CredentialPayload, options?: RawAxiosRequestConfig): AxiosPromise<CredentialIdObject>;
|
|
2655
2655
|
/**
|
|
2656
2656
|
* Requests a credential issuance from the issuer and retrieves requirements for holder authorization.
|
|
2657
2657
|
* @param {string} walletId
|
|
@@ -2659,7 +2659,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2659
2659
|
* @param {*} [options] Override http request option.
|
|
2660
2660
|
* @throws {RequiredError}
|
|
2661
2661
|
*/
|
|
2662
|
-
credentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?:
|
|
2662
|
+
credentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
2663
2663
|
/**
|
|
2664
2664
|
* Revoke a specific Verifiable Credential
|
|
2665
2665
|
* @param {string} credentialId Verifiable Credential Identifier
|
|
@@ -2667,7 +2667,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2667
2667
|
* @param {*} [options] Override http request option.
|
|
2668
2668
|
* @throws {RequiredError}
|
|
2669
2669
|
*/
|
|
2670
|
-
credentialRevoke(credentialId: string, walletId: string, options?:
|
|
2670
|
+
credentialRevoke(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2671
2671
|
/**
|
|
2672
2672
|
*
|
|
2673
2673
|
* @param {string} deferredId Deferred token
|
|
@@ -2675,20 +2675,20 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2675
2675
|
* @param {*} [options] Override http request option.
|
|
2676
2676
|
* @throws {RequiredError}
|
|
2677
2677
|
*/
|
|
2678
|
-
deferredStatus(deferredId: string, walletId: string, options?:
|
|
2678
|
+
deferredStatus(deferredId: string, walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Deferred>;
|
|
2679
2679
|
/**
|
|
2680
2680
|
*
|
|
2681
2681
|
* @param {string} walletId
|
|
2682
2682
|
* @param {*} [options] Override http request option.
|
|
2683
2683
|
* @throws {RequiredError}
|
|
2684
2684
|
*/
|
|
2685
|
-
didGet(walletId: string, options?:
|
|
2685
|
+
didGet(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Did>;
|
|
2686
2686
|
/**
|
|
2687
2687
|
*
|
|
2688
2688
|
* @param {*} [options] Override http request option.
|
|
2689
2689
|
* @throws {RequiredError}
|
|
2690
2690
|
*/
|
|
2691
|
-
healthCheck(options?:
|
|
2691
|
+
healthCheck(options?: RawAxiosRequestConfig): AxiosPromise<HealthStatus>;
|
|
2692
2692
|
/**
|
|
2693
2693
|
* Creates an authorized credential offer (deferred or instant) for holder-initiated credential request using provided parameters. The offer is an URL that the creator should provide to the client via a redirect, link, or QR code.
|
|
2694
2694
|
* @param {string} walletId
|
|
@@ -2696,7 +2696,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2696
2696
|
* @param {*} [options] Override http request option.
|
|
2697
2697
|
* @throws {RequiredError}
|
|
2698
2698
|
*/
|
|
2699
|
-
holderCreateAuthOffer(walletId: string, holderAuthOfferCreationRequest?: HolderAuthOfferCreationRequest, options?:
|
|
2699
|
+
holderCreateAuthOffer(walletId: string, holderAuthOfferCreationRequest?: HolderAuthOfferCreationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2700
2700
|
/**
|
|
2701
2701
|
* Presenting Verifiable Credentials after holder\'s consent.
|
|
2702
2702
|
* @param {string} walletId
|
|
@@ -2705,7 +2705,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2705
2705
|
* @param {*} [options] Override http request option.
|
|
2706
2706
|
* @throws {RequiredError}
|
|
2707
2707
|
*/
|
|
2708
|
-
holderCredentialsPresentAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?:
|
|
2708
|
+
holderCredentialsPresentAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2709
2709
|
/**
|
|
2710
2710
|
* Responds to an ID token request
|
|
2711
2711
|
* @param {string} walletId
|
|
@@ -2713,7 +2713,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2713
2713
|
* @param {*} [options] Override http request option.
|
|
2714
2714
|
* @throws {RequiredError}
|
|
2715
2715
|
*/
|
|
2716
|
-
holderIdTokenSend(walletId: string, idTokenSendRequest?: IdTokenSendRequest, options?:
|
|
2716
|
+
holderIdTokenSend(walletId: string, idTokenSendRequest?: IdTokenSendRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2717
2717
|
/**
|
|
2718
2718
|
* Issue the Verifiable Credential using OIDC4VCI offer acceptance
|
|
2719
2719
|
* @param {string} walletId
|
|
@@ -2721,7 +2721,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2721
2721
|
* @param {*} [options] Override http request option.
|
|
2722
2722
|
* @throws {RequiredError}
|
|
2723
2723
|
*/
|
|
2724
|
-
holderOfferPassAuthInfo(walletId: string, vcOffer?: VcOffer, options?:
|
|
2724
|
+
holderOfferPassAuthInfo(walletId: string, vcOffer?: VcOffer, options?: RawAxiosRequestConfig): AxiosPromise<InteractionAuthorizationRequirements>;
|
|
2725
2725
|
/**
|
|
2726
2726
|
* Gives consent to process credential offer specified by `interaction_id`
|
|
2727
2727
|
* @param {string} walletId
|
|
@@ -2730,7 +2730,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2730
2730
|
* @param {*} [options] Override http request option.
|
|
2731
2731
|
* @throws {RequiredError}
|
|
2732
2732
|
*/
|
|
2733
|
-
holderOfferProcessAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?:
|
|
2733
|
+
holderOfferProcessAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
2734
2734
|
/**
|
|
2735
2735
|
* Initiates a presentation of credentials to a verifier.
|
|
2736
2736
|
* @param {string} walletId
|
|
@@ -2738,21 +2738,21 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2738
2738
|
* @param {*} [options] Override http request option.
|
|
2739
2739
|
* @throws {RequiredError}
|
|
2740
2740
|
*/
|
|
2741
|
-
holderPresentPassAuthInfo(walletId: string, presentationRequest?: PresentationRequest, options?:
|
|
2741
|
+
holderPresentPassAuthInfo(walletId: string, presentationRequest?: PresentationRequest, options?: RawAxiosRequestConfig): AxiosPromise<InteractionAuthorizationRequirements>;
|
|
2742
2742
|
/**
|
|
2743
2743
|
* Creates an ID token request.
|
|
2744
2744
|
* @param {string} walletId
|
|
2745
2745
|
* @param {*} [options] Override http request option.
|
|
2746
2746
|
* @throws {RequiredError}
|
|
2747
2747
|
*/
|
|
2748
|
-
idTokenRequestCreate(walletId: string, options?:
|
|
2748
|
+
idTokenRequestCreate(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<IdTokenRequest>;
|
|
2749
2749
|
/**
|
|
2750
2750
|
* Returns verifiable credential format and types that are supported by the issuer. - format: the verifiable credential format (for example \"jwt_vc\") - type: a list of strings that define supported verifiable credential type(s)
|
|
2751
2751
|
* @param {string} url
|
|
2752
2752
|
* @param {*} [options] Override http request option.
|
|
2753
2753
|
* @throws {RequiredError}
|
|
2754
2754
|
*/
|
|
2755
|
-
issuerCredentialTypesList(url: string, options?:
|
|
2755
|
+
issuerCredentialTypesList(url: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<CredentialType>>;
|
|
2756
2756
|
/**
|
|
2757
2757
|
* Initiates issuing of Verifiable Credentials using the authorized deferred flow, in which the holder will receive credential asynchronously.
|
|
2758
2758
|
* @param {string} walletId
|
|
@@ -2760,7 +2760,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2760
2760
|
* @param {*} [options] Override http request option.
|
|
2761
2761
|
* @throws {RequiredError}
|
|
2762
2762
|
*/
|
|
2763
|
-
issuerInitiateDeferred(walletId: string, initAuthOffer?: InitAuthOffer, options?:
|
|
2763
|
+
issuerInitiateDeferred(walletId: string, initAuthOffer?: InitAuthOffer, options?: RawAxiosRequestConfig): AxiosPromise<AuthOffer>;
|
|
2764
2764
|
/**
|
|
2765
2765
|
* Initiates issuing of Verifiable Credentials using authorized flow.
|
|
2766
2766
|
* @param {string} walletId
|
|
@@ -2768,7 +2768,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2768
2768
|
* @param {*} [options] Override http request option.
|
|
2769
2769
|
* @throws {RequiredError}
|
|
2770
2770
|
*/
|
|
2771
|
-
issuerInitiateIntime(walletId: string, initAuthOffer?: InitAuthOffer, options?:
|
|
2771
|
+
issuerInitiateIntime(walletId: string, initAuthOffer?: InitAuthOffer, options?: RawAxiosRequestConfig): AxiosPromise<AuthOffer>;
|
|
2772
2772
|
/**
|
|
2773
2773
|
* Initiates issuing of Verifiable Credentials using pre-authorized flow.
|
|
2774
2774
|
* @param {string} walletId
|
|
@@ -2776,7 +2776,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2776
2776
|
* @param {*} [options] Override http request option.
|
|
2777
2777
|
* @throws {RequiredError}
|
|
2778
2778
|
*/
|
|
2779
|
-
issuerInitiatePreauth(walletId: string, initPreAuthOffer?: InitPreAuthOffer, options?:
|
|
2779
|
+
issuerInitiatePreauth(walletId: string, initPreAuthOffer?: InitPreAuthOffer, options?: RawAxiosRequestConfig): AxiosPromise<PreAuthOffer>;
|
|
2780
2780
|
/**
|
|
2781
2781
|
* Accredits a legal entity as RTAO or TAO.
|
|
2782
2782
|
* @param {string} walletId
|
|
@@ -2784,28 +2784,28 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2784
2784
|
* @param {*} [options] Override http request option.
|
|
2785
2785
|
* @throws {RequiredError}
|
|
2786
2786
|
*/
|
|
2787
|
-
tfAccreditAs(walletId: string, accreditationRequest?: AccreditationRequest, options?:
|
|
2787
|
+
tfAccreditAs(walletId: string, accreditationRequest?: AccreditationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2788
2788
|
/**
|
|
2789
2789
|
* Accredits the wallet as a trusted issuer.
|
|
2790
2790
|
* @param {string} walletId
|
|
2791
2791
|
* @param {*} [options] Override http request option.
|
|
2792
2792
|
* @throws {RequiredError}
|
|
2793
2793
|
*/
|
|
2794
|
-
tfAccreditAsTrustedIssuer(walletId: string, options?:
|
|
2794
|
+
tfAccreditAsTrustedIssuer(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2795
2795
|
/**
|
|
2796
2796
|
* Registers an issuer proxy used by EBSI for the credential status retrieval through EBSI network.
|
|
2797
2797
|
* @param {string} walletId
|
|
2798
2798
|
* @param {*} [options] Override http request option.
|
|
2799
2799
|
* @throws {RequiredError}
|
|
2800
2800
|
*/
|
|
2801
|
-
tfInsertIssuerProxy(walletId: string, options?:
|
|
2801
|
+
tfInsertIssuerProxy(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2802
2802
|
/**
|
|
2803
2803
|
* Onboards legal entity to the trust framework based on the wallet configuration.
|
|
2804
2804
|
* @param {string} walletId
|
|
2805
2805
|
* @param {*} [options] Override http request option.
|
|
2806
2806
|
* @throws {RequiredError}
|
|
2807
2807
|
*/
|
|
2808
|
-
tfOnboardLegalEntity(walletId: string, options?:
|
|
2808
|
+
tfOnboardLegalEntity(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<OnboardResult>;
|
|
2809
2809
|
/**
|
|
2810
2810
|
* Prepares another legal entity\'s wallet DID for accreditation.
|
|
2811
2811
|
* @param {string} walletId
|
|
@@ -2813,14 +2813,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2813
2813
|
* @param {*} [options] Override http request option.
|
|
2814
2814
|
* @throws {RequiredError}
|
|
2815
2815
|
*/
|
|
2816
|
-
tfPrepareToAccredit(walletId: string, prepareToAccreditRequest?: PrepareToAccreditRequest, options?:
|
|
2816
|
+
tfPrepareToAccredit(walletId: string, prepareToAccreditRequest?: PrepareToAccreditRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2817
2817
|
/**
|
|
2818
2818
|
* Prepares another legal entity\'s wallet DID for onboarding.
|
|
2819
2819
|
* @param {string} walletId
|
|
2820
2820
|
* @param {*} [options] Override http request option.
|
|
2821
2821
|
* @throws {RequiredError}
|
|
2822
2822
|
*/
|
|
2823
|
-
tfPrepareToOnboard(walletId: string, options?:
|
|
2823
|
+
tfPrepareToOnboard(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2824
2824
|
/**
|
|
2825
2825
|
* Revokes another legal entity\'s wallet DID accreditation.
|
|
2826
2826
|
* @param {string} walletId
|
|
@@ -2828,7 +2828,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2828
2828
|
* @param {*} [options] Override http request option.
|
|
2829
2829
|
* @throws {RequiredError}
|
|
2830
2830
|
*/
|
|
2831
|
-
tfRevokeAccreditation(walletId: string, revokeAccreditationRequest?: RevokeAccreditationRequest, options?:
|
|
2831
|
+
tfRevokeAccreditation(walletId: string, revokeAccreditationRequest?: RevokeAccreditationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2832
2832
|
/**
|
|
2833
2833
|
* Returns an url where verifier accepts presentations from a holder.
|
|
2834
2834
|
* @param {string} walletId
|
|
@@ -2836,34 +2836,34 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2836
2836
|
* @param {*} [options] Override http request option.
|
|
2837
2837
|
* @throws {RequiredError}
|
|
2838
2838
|
*/
|
|
2839
|
-
verifierInitUrlCreate(walletId: string, verifyInitRequest?: VerifyInitRequest, options?:
|
|
2839
|
+
verifierInitUrlCreate(walletId: string, verifyInitRequest?: VerifyInitRequest, options?: RawAxiosRequestConfig): AxiosPromise<VerifyInitResponse>;
|
|
2840
2840
|
/**
|
|
2841
2841
|
* Creates a new wallet for the authenticated client.
|
|
2842
2842
|
* @param {Wallet} [wallet]
|
|
2843
2843
|
* @param {*} [options] Override http request option.
|
|
2844
2844
|
* @throws {RequiredError}
|
|
2845
2845
|
*/
|
|
2846
|
-
walletCreate(wallet?: Wallet, options?:
|
|
2846
|
+
walletCreate(wallet?: Wallet, options?: RawAxiosRequestConfig): AxiosPromise<WalletIdObject>;
|
|
2847
2847
|
/**
|
|
2848
2848
|
* Permanently deletes the wallet with all credentials and keys. Make sure you know what you are doing before hitting this endpoint.
|
|
2849
2849
|
* @param {string} walletId
|
|
2850
2850
|
* @param {*} [options] Override http request option.
|
|
2851
2851
|
* @throws {RequiredError}
|
|
2852
2852
|
*/
|
|
2853
|
-
walletDelete(walletId: string, options?:
|
|
2853
|
+
walletDelete(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2854
2854
|
/**
|
|
2855
2855
|
* Provides wallet details
|
|
2856
2856
|
* @param {string} walletId
|
|
2857
2857
|
* @param {*} [options] Override http request option.
|
|
2858
2858
|
* @throws {RequiredError}
|
|
2859
2859
|
*/
|
|
2860
|
-
walletGet(walletId: string, options?:
|
|
2860
|
+
walletGet(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Wallet>;
|
|
2861
2861
|
/**
|
|
2862
2862
|
* Provides list of wallets owned by the authenticated client.
|
|
2863
2863
|
* @param {*} [options] Override http request option.
|
|
2864
2864
|
* @throws {RequiredError}
|
|
2865
2865
|
*/
|
|
2866
|
-
walletList(options?:
|
|
2866
|
+
walletList(options?: RawAxiosRequestConfig): AxiosPromise<Array<WalletListItem>>;
|
|
2867
2867
|
/**
|
|
2868
2868
|
* Gets a specific notification by state
|
|
2869
2869
|
* @param {string} walletId Wallet ID
|
|
@@ -2871,7 +2871,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2871
2871
|
* @param {*} [options] Override http request option.
|
|
2872
2872
|
* @throws {RequiredError}
|
|
2873
2873
|
*/
|
|
2874
|
-
walletNotificationGetByState(walletId: string, state: string, options?:
|
|
2874
|
+
walletNotificationGetByState(walletId: string, state: string, options?: RawAxiosRequestConfig): AxiosPromise<WalletNotification>;
|
|
2875
2875
|
/**
|
|
2876
2876
|
* Provides wallet notifications that can be used to audit the wallet activity.
|
|
2877
2877
|
* @param {string} walletId Wallet ID
|
|
@@ -2882,14 +2882,14 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2882
2882
|
* @param {*} [options] Override http request option.
|
|
2883
2883
|
* @throws {RequiredError}
|
|
2884
2884
|
*/
|
|
2885
|
-
walletNotificationHistory(walletId: string, limit?: number, nextMarker?: string, type?: Array<WalletNotificationEventType>, sort?: ListSort, options?:
|
|
2885
|
+
walletNotificationHistory(walletId: string, limit?: number, nextMarker?: string, type?: Array<WalletNotificationEventType>, sort?: ListSort, options?: RawAxiosRequestConfig): AxiosPromise<WalletNotificationHistory>;
|
|
2886
2886
|
/**
|
|
2887
2887
|
* Provides first-in-first-out queue of notifications for a specific wallet.
|
|
2888
2888
|
* @param {string} walletId Wallet ID
|
|
2889
2889
|
* @param {*} [options] Override http request option.
|
|
2890
2890
|
* @throws {RequiredError}
|
|
2891
2891
|
*/
|
|
2892
|
-
walletNotifications(walletId: string, options?:
|
|
2892
|
+
walletNotifications(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<WalletNotification>>;
|
|
2893
2893
|
/**
|
|
2894
2894
|
* Update wallet metadata and configuration.
|
|
2895
2895
|
* @param {string} walletId
|
|
@@ -2897,7 +2897,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2897
2897
|
* @param {*} [options] Override http request option.
|
|
2898
2898
|
* @throws {RequiredError}
|
|
2899
2899
|
*/
|
|
2900
|
-
walletPatch(walletId: string, wallet?: Wallet, options?:
|
|
2900
|
+
walletPatch(walletId: string, wallet?: Wallet, options?: RawAxiosRequestConfig): AxiosPromise<WalletIdObject>;
|
|
2901
2901
|
/**
|
|
2902
2902
|
* Gets a specific verified credentials by state
|
|
2903
2903
|
* @param {string} walletId Wallet ID
|
|
@@ -2905,7 +2905,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2905
2905
|
* @param {*} [options] Override http request option.
|
|
2906
2906
|
* @throws {RequiredError}
|
|
2907
2907
|
*/
|
|
2908
|
-
walletVerifiedCredentialsByState(walletId: string, state: string, options?:
|
|
2908
|
+
walletVerifiedCredentialsByState(walletId: string, state: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<Credential>>;
|
|
2909
2909
|
/**
|
|
2910
2910
|
* Deletes a specific verified credentials by state
|
|
2911
2911
|
* @param {string} walletId Wallet ID
|
|
@@ -2913,7 +2913,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
2913
2913
|
* @param {*} [options] Override http request option.
|
|
2914
2914
|
* @throws {RequiredError}
|
|
2915
2915
|
*/
|
|
2916
|
-
walletVerifiedCredentialsDeleteByState(walletId: string, state: string, options?:
|
|
2916
|
+
walletVerifiedCredentialsDeleteByState(walletId: string, state: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2917
2917
|
};
|
|
2918
2918
|
/**
|
|
2919
2919
|
* DefaultApi - object-oriented interface
|