@triveria/wallet 0.0.274 → 0.0.276

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * Triveria Wallet API
3
- * Triveria Wallet API allows to manage credentials inside a specific wallet and interactions between wallets as specified by the OIDC4VC specification.
3
+ * Triveria Wallet API
4
4
  *
5
5
  * The version of the OpenAPI document: 1.0.0
6
6
  *
@@ -1292,7 +1292,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1292
1292
  */
1293
1293
  holderLinkedVpList: (walletId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1294
1294
  /**
1295
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
1295
+ * Retrieve authorization requirements for the credential offer.
1296
1296
  * @param {string} walletId
1297
1297
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
1298
1298
  * @param {*} [options] Override http request option.
@@ -1818,7 +1818,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1818
1818
  */
1819
1819
  holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LinkedVpMetadata>>>;
1820
1820
  /**
1821
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
1821
+ * Retrieve authorization requirements for the credential offer.
1822
1822
  * @param {string} walletId
1823
1823
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
1824
1824
  * @param {*} [options] Override http request option.
@@ -2346,7 +2346,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2346
2346
  */
2347
2347
  holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LinkedVpMetadata>>;
2348
2348
  /**
2349
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2349
+ * Retrieve authorization requirements for the credential offer.
2350
2350
  * @param {string} walletId
2351
2351
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
2352
2352
  * @param {*} [options] Override http request option.
@@ -2721,7 +2721,7 @@ export declare class DefaultApi extends BaseAPI {
2721
2721
  * @param {*} [options] Override http request option.
2722
2722
  * @throws {RequiredError}
2723
2723
  */
2724
- credentialCreate(walletId: string, credentialPayload?: CredentialPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any>>;
2724
+ credentialCreate(walletId: string, credentialPayload?: CredentialPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any, {}>>;
2725
2725
  /**
2726
2726
  * 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.
2727
2727
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2729,7 +2729,7 @@ export declare class DefaultApi extends BaseAPI {
2729
2729
  * @param {*} [options] Override http request option.
2730
2730
  * @throws {RequiredError}
2731
2731
  */
2732
- credentialGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialWrapper, any>>;
2732
+ credentialGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialWrapper, any, {}>>;
2733
2733
  /**
2734
2734
  * Import pre-signed credential into wallet
2735
2735
  * @param {string} walletId
@@ -2737,7 +2737,7 @@ export declare class DefaultApi extends BaseAPI {
2737
2737
  * @param {*} [options] Override http request option.
2738
2738
  * @throws {RequiredError}
2739
2739
  */
2740
- credentialImport(walletId: string, credentialImport?: CredentialImport, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialWrapper, any>>;
2740
+ credentialImport(walletId: string, credentialImport?: CredentialImport, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialWrapper, any, {}>>;
2741
2741
  /**
2742
2742
  * Prepares created Verifiable Credential draft for its issuance for a specific client.
2743
2743
  * @param {string} credentialId
@@ -2746,7 +2746,7 @@ export declare class DefaultApi extends BaseAPI {
2746
2746
  * @param {*} [options] Override http request option.
2747
2747
  * @throws {RequiredError}
2748
2748
  */
2749
- credentialIssuanceInit(credentialId: string, walletId: string, credentialIssuanceInit?: CredentialIssuanceInit, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIssuanceInitResult, any>>;
2749
+ credentialIssuanceInit(credentialId: string, walletId: string, credentialIssuanceInit?: CredentialIssuanceInit, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIssuanceInitResult, any, {}>>;
2750
2750
  /**
2751
2751
  * Retrieves a list of credentials.
2752
2752
  * @param {string} walletId
@@ -2761,7 +2761,7 @@ export declare class DefaultApi extends BaseAPI {
2761
2761
  * @param {*} [options] Override http request option.
2762
2762
  * @throws {RequiredError}
2763
2763
  */
2764
- credentialList(walletId: string, interaction?: CredentialListInteractionEnum, type?: string, valid?: boolean, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialList, any>>;
2764
+ credentialList(walletId: string, interaction?: CredentialListInteractionEnum, type?: string, valid?: boolean, limit?: number, nextMarker?: string, sort?: ListSort, searchPath?: string, filter?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialList, any, {}>>;
2765
2765
  /**
2766
2766
  * 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.
2767
2767
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2770,7 +2770,7 @@ export declare class DefaultApi extends BaseAPI {
2770
2770
  * @param {*} [options] Override http request option.
2771
2771
  * @throws {RequiredError}
2772
2772
  */
2773
- credentialMetadataPatch(credentialId: string, walletId: string, credentialMetadataPatchPayload?: CredentialMetadataPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any>>;
2773
+ credentialMetadataPatch(credentialId: string, walletId: string, credentialMetadataPatchPayload?: CredentialMetadataPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any, {}>>;
2774
2774
  /**
2775
2775
  * 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.
2776
2776
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2779,7 +2779,7 @@ export declare class DefaultApi extends BaseAPI {
2779
2779
  * @param {*} [options] Override http request option.
2780
2780
  * @throws {RequiredError}
2781
2781
  */
2782
- credentialPatch(credentialId: string, walletId: string, credentialPatchPayload?: CredentialPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any>>;
2782
+ credentialPatch(credentialId: string, walletId: string, credentialPatchPayload?: CredentialPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialIdObject, any, {}>>;
2783
2783
  /**
2784
2784
  * Requests a credential issuance from the issuer and retrieves requirements for holder authorization.
2785
2785
  * @param {string} walletId
@@ -2787,7 +2787,7 @@ export declare class DefaultApi extends BaseAPI {
2787
2787
  * @param {*} [options] Override http request option.
2788
2788
  * @throws {RequiredError}
2789
2789
  */
2790
- credentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
2790
+ credentialRequestInit(walletId: string, credentialRequest?: CredentialRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
2791
2791
  /**
2792
2792
  * Revoke a specific Verifiable Credential
2793
2793
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2795,7 +2795,7 @@ export declare class DefaultApi extends BaseAPI {
2795
2795
  * @param {*} [options] Override http request option.
2796
2796
  * @throws {RequiredError}
2797
2797
  */
2798
- credentialRevoke(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2798
+ credentialRevoke(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2799
2799
  /**
2800
2800
  *
2801
2801
  * @param {string} deferredId Deferred token
@@ -2803,20 +2803,20 @@ export declare class DefaultApi extends BaseAPI {
2803
2803
  * @param {*} [options] Override http request option.
2804
2804
  * @throws {RequiredError}
2805
2805
  */
2806
- deferredStatus(deferredId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Deferred, any>>;
2806
+ deferredStatus(deferredId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Deferred, any, {}>>;
2807
2807
  /**
2808
2808
  * Gets the DID Document of the wallet.
2809
2809
  * @param {string} walletId
2810
2810
  * @param {*} [options] Override http request option.
2811
2811
  * @throws {RequiredError}
2812
2812
  */
2813
- didDocumentGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2813
+ didDocumentGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2814
2814
  /**
2815
2815
  *
2816
2816
  * @param {*} [options] Override http request option.
2817
2817
  * @throws {RequiredError}
2818
2818
  */
2819
- healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatus, any>>;
2819
+ healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatus, any, {}>>;
2820
2820
  /**
2821
2821
  * 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.
2822
2822
  * @param {string} walletId
@@ -2824,7 +2824,7 @@ export declare class DefaultApi extends BaseAPI {
2824
2824
  * @param {*} [options] Override http request option.
2825
2825
  * @throws {RequiredError}
2826
2826
  */
2827
- holderCreateAuthOffer(walletId: string, holderAuthOfferCreationRequest?: HolderAuthOfferCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2827
+ holderCreateAuthOffer(walletId: string, holderAuthOfferCreationRequest?: HolderAuthOfferCreationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2828
2828
  /**
2829
2829
  * Presenting Verifiable Credentials after holder\'s consent.
2830
2830
  * @param {string} walletId
@@ -2833,7 +2833,7 @@ export declare class DefaultApi extends BaseAPI {
2833
2833
  * @param {*} [options] Override http request option.
2834
2834
  * @throws {RequiredError}
2835
2835
  */
2836
- holderCredentialsPresentAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2836
+ holderCredentialsPresentAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2837
2837
  /**
2838
2838
  * Responds to an ID token request
2839
2839
  * @param {string} walletId
@@ -2841,7 +2841,7 @@ export declare class DefaultApi extends BaseAPI {
2841
2841
  * @param {*} [options] Override http request option.
2842
2842
  * @throws {RequiredError}
2843
2843
  */
2844
- holderIdTokenSend(walletId: string, idTokenSendRequest?: IdTokenSendRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2844
+ holderIdTokenSend(walletId: string, idTokenSendRequest?: IdTokenSendRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2845
2845
  /**
2846
2846
  * Creates a new public Linked VP of specified credentials and adds it to the wallet\'s DID document
2847
2847
  * @param {string} walletId
@@ -2849,7 +2849,7 @@ export declare class DefaultApi extends BaseAPI {
2849
2849
  * @param {*} [options] Override http request option.
2850
2850
  * @throws {RequiredError}
2851
2851
  */
2852
- holderLinkedVpCreate(walletId: string, linkedVpCreateRequest?: LinkedVpCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata, any>>;
2852
+ holderLinkedVpCreate(walletId: string, linkedVpCreateRequest?: LinkedVpCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata, any, {}>>;
2853
2853
  /**
2854
2854
  * Deletes a linked VP
2855
2855
  * @param {string} walletId
@@ -2857,7 +2857,7 @@ export declare class DefaultApi extends BaseAPI {
2857
2857
  * @param {*} [options] Override http request option.
2858
2858
  * @throws {RequiredError}
2859
2859
  */
2860
- holderLinkedVpDelete(walletId: string, linkedVpId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2860
+ holderLinkedVpDelete(walletId: string, linkedVpId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2861
2861
  /**
2862
2862
  *
2863
2863
  * @param {string} walletId
@@ -2865,22 +2865,22 @@ export declare class DefaultApi extends BaseAPI {
2865
2865
  * @param {*} [options] Override http request option.
2866
2866
  * @throws {RequiredError}
2867
2867
  */
2868
- holderLinkedVpGetDetails(walletId: string, linkedVpId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata, any>>;
2868
+ holderLinkedVpGetDetails(walletId: string, linkedVpId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata, any, {}>>;
2869
2869
  /**
2870
2870
  *
2871
2871
  * @param {string} walletId
2872
2872
  * @param {*} [options] Override http request option.
2873
2873
  * @throws {RequiredError}
2874
2874
  */
2875
- holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata[], any>>;
2875
+ holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata[], any, {}>>;
2876
2876
  /**
2877
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2877
+ * Retrieve authorization requirements for the credential offer.
2878
2878
  * @param {string} walletId
2879
2879
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
2880
2880
  * @param {*} [options] Override http request option.
2881
2881
  * @throws {RequiredError}
2882
2882
  */
2883
- holderOfferPassAuthInfo(walletId: string, vcOffer?: VcOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any>>;
2883
+ holderOfferPassAuthInfo(walletId: string, vcOffer?: VcOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any, {}>>;
2884
2884
  /**
2885
2885
  * Gives consent to process credential offer specified by `interaction_id`
2886
2886
  * @param {string} walletId
@@ -2889,7 +2889,7 @@ export declare class DefaultApi extends BaseAPI {
2889
2889
  * @param {*} [options] Override http request option.
2890
2890
  * @throws {RequiredError}
2891
2891
  */
2892
- holderOfferProcessAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any>>;
2892
+ holderOfferProcessAfterConsent(walletId: string, interactionId: string, interactionAuthorizationConsent?: InteractionAuthorizationConsent, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
2893
2893
  /**
2894
2894
  * Initiates a presentation of credentials to a verifier.
2895
2895
  * @param {string} walletId
@@ -2897,21 +2897,21 @@ export declare class DefaultApi extends BaseAPI {
2897
2897
  * @param {*} [options] Override http request option.
2898
2898
  * @throws {RequiredError}
2899
2899
  */
2900
- holderPresentPassAuthInfo(walletId: string, presentationRequest?: PresentationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any>>;
2900
+ holderPresentPassAuthInfo(walletId: string, presentationRequest?: PresentationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any, {}>>;
2901
2901
  /**
2902
2902
  * Creates an ID token request.
2903
2903
  * @param {string} walletId
2904
2904
  * @param {*} [options] Override http request option.
2905
2905
  * @throws {RequiredError}
2906
2906
  */
2907
- idTokenRequestCreate(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdTokenRequest, any>>;
2907
+ idTokenRequestCreate(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdTokenRequest, any, {}>>;
2908
2908
  /**
2909
2909
  * 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)
2910
2910
  * @param {string} url
2911
2911
  * @param {*} [options] Override http request option.
2912
2912
  * @throws {RequiredError}
2913
2913
  */
2914
- issuerCredentialTypesList(url: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialType[], any>>;
2914
+ issuerCredentialTypesList(url: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialType[], any, {}>>;
2915
2915
  /**
2916
2916
  * Initiates issuing of Verifiable Credentials using authorized flow.
2917
2917
  * @param {string} walletId
@@ -2919,7 +2919,7 @@ export declare class DefaultApi extends BaseAPI {
2919
2919
  * @param {*} [options] Override http request option.
2920
2920
  * @throws {RequiredError}
2921
2921
  */
2922
- issuerInitiateAuthOffer(walletId: string, initAuthOffer?: InitAuthOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthOffer, any>>;
2922
+ issuerInitiateAuthOffer(walletId: string, initAuthOffer?: InitAuthOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AuthOffer, any, {}>>;
2923
2923
  /**
2924
2924
  * Initiates issuing of Verifiable Credentials using pre-authorized flow.
2925
2925
  * @param {string} walletId
@@ -2927,7 +2927,7 @@ export declare class DefaultApi extends BaseAPI {
2927
2927
  * @param {*} [options] Override http request option.
2928
2928
  * @throws {RequiredError}
2929
2929
  */
2930
- issuerInitiatePreauthOffer(walletId: string, initPreAuthOffer?: InitPreAuthOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PreAuthOffer, any>>;
2930
+ issuerInitiatePreauthOffer(walletId: string, initPreAuthOffer?: InitPreAuthOffer, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PreAuthOffer, any, {}>>;
2931
2931
  /**
2932
2932
  * Signs an XML document with XAdES signature
2933
2933
  * @param {string} walletId
@@ -2936,7 +2936,7 @@ export declare class DefaultApi extends BaseAPI {
2936
2936
  * @param {*} [options] Override http request option.
2937
2937
  * @throws {RequiredError}
2938
2938
  */
2939
- issuerXadesSign(walletId: string, xadesSignatureType: XadesSignatureType, xml?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2939
+ issuerXadesSign(walletId: string, xadesSignatureType: XadesSignatureType, xml?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2940
2940
  /**
2941
2941
  * Returns a signed PDF contained in the verifiable credential containing the credential VP added as an attachment in incremental update.
2942
2942
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2945,7 +2945,7 @@ export declare class DefaultApi extends BaseAPI {
2945
2945
  * @param {*} [options] Override http request option.
2946
2946
  * @throws {RequiredError}
2947
2947
  */
2948
- pdfCredentialMakeVp(credentialId: string, signPdf: boolean, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
2948
+ pdfCredentialMakeVp(credentialId: string, signPdf: boolean, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
2949
2949
  /**
2950
2950
  * Deletes the PDF associated with the verifiable credential. Can be used only for credentials in Draft state.
2951
2951
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2953,7 +2953,7 @@ export declare class DefaultApi extends BaseAPI {
2953
2953
  * @param {*} [options] Override http request option.
2954
2954
  * @throws {RequiredError}
2955
2955
  */
2956
- pdfCredentialTwinDelete(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2956
+ pdfCredentialTwinDelete(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2957
2957
  /**
2958
2958
  * Returns either an unsigned PDF that was uploaded to be signed and embedded into a verifiable credential in case of credential in Draft state, or a signed PDF embedded in an issued VC.
2959
2959
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2961,7 +2961,7 @@ export declare class DefaultApi extends BaseAPI {
2961
2961
  * @param {*} [options] Override http request option.
2962
2962
  * @throws {RequiredError}
2963
2963
  */
2964
- pdfCredentialTwinGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
2964
+ pdfCredentialTwinGet(credentialId: string, walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
2965
2965
  /**
2966
2966
  * Uploads a PDF that will be signed and embedded with the verifiable credential when it will be issued. Can be used only for credentials in Draft state. Maximal size of the PDF document is 50 MB.
2967
2967
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2970,7 +2970,7 @@ export declare class DefaultApi extends BaseAPI {
2970
2970
  * @param {*} [options] Override http request option.
2971
2971
  * @throws {RequiredError}
2972
2972
  */
2973
- pdfCredentialTwinUpload(credentialId: string, walletId: string, pdf?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2973
+ pdfCredentialTwinUpload(credentialId: string, walletId: string, pdf?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2974
2974
  /**
2975
2975
  * Accredits a legal entity as RTAO, TAO or TI.
2976
2976
  * @param {string} walletId
@@ -2978,7 +2978,7 @@ export declare class DefaultApi extends BaseAPI {
2978
2978
  * @param {*} [options] Override http request option.
2979
2979
  * @throws {RequiredError}
2980
2980
  */
2981
- tfAccreditAs(walletId: string, accreditationRequest?: AccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2981
+ tfAccreditAs(walletId: string, accreditationRequest?: AccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2982
2982
  /**
2983
2983
  * Processes a request to accredit another legal entity.
2984
2984
  * @param {string} walletId
@@ -2986,7 +2986,7 @@ export declare class DefaultApi extends BaseAPI {
2986
2986
  * @param {*} [options] Override http request option.
2987
2987
  * @throws {RequiredError}
2988
2988
  */
2989
- tfAccreditRequest(walletId: string, entityAccreditationRequest?: EntityAccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
2989
+ tfAccreditRequest(walletId: string, entityAccreditationRequest?: EntityAccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
2990
2990
  /**
2991
2991
  * Onboards legal entity to the trust framework based on the wallet configuration.
2992
2992
  * @param {string} walletId
@@ -2994,7 +2994,7 @@ export declare class DefaultApi extends BaseAPI {
2994
2994
  * @param {*} [options] Override http request option.
2995
2995
  * @throws {RequiredError}
2996
2996
  */
2997
- tfOnboard(walletId: string, onboardingRequest?: OnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnboardResult, any>>;
2997
+ tfOnboard(walletId: string, onboardingRequest?: OnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OnboardResult, any, {}>>;
2998
2998
  /**
2999
2999
  * Processes a request to onboard another legal entity.
3000
3000
  * @param {string} walletId
@@ -3002,7 +3002,7 @@ export declare class DefaultApi extends BaseAPI {
3002
3002
  * @param {*} [options] Override http request option.
3003
3003
  * @throws {RequiredError}
3004
3004
  */
3005
- tfOnboardRequest(walletId: string, entityOnboardingRequest?: EntityOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3005
+ tfOnboardRequest(walletId: string, entityOnboardingRequest?: EntityOnboardingRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3006
3006
  /**
3007
3007
  * Revokes another legal entity\'s wallet DID accreditation.
3008
3008
  * @param {string} walletId
@@ -3010,7 +3010,7 @@ export declare class DefaultApi extends BaseAPI {
3010
3010
  * @param {*} [options] Override http request option.
3011
3011
  * @throws {RequiredError}
3012
3012
  */
3013
- tfRevokeAccreditation(walletId: string, revokeAccreditationRequest?: RevokeAccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3013
+ tfRevokeAccreditation(walletId: string, revokeAccreditationRequest?: RevokeAccreditationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3014
3014
  /**
3015
3015
  * Issues a certificate based on the provided certificate request
3016
3016
  * @param {string} walletId
@@ -3018,7 +3018,7 @@ export declare class DefaultApi extends BaseAPI {
3018
3018
  * @param {*} [options] Override http request option.
3019
3019
  * @throws {RequiredError}
3020
3020
  */
3021
- tfX509CertificateIssue(walletId: string, certificateIssueRequest?: CertificateIssueRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CertificateIssueResponse, any>>;
3021
+ tfX509CertificateIssue(walletId: string, certificateIssueRequest?: CertificateIssueRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CertificateIssueResponse, any, {}>>;
3022
3022
  /**
3023
3023
  * Returns an url where verifier accepts presentations from a holder.
3024
3024
  * @param {string} walletId
@@ -3026,7 +3026,7 @@ export declare class DefaultApi extends BaseAPI {
3026
3026
  * @param {*} [options] Override http request option.
3027
3027
  * @throws {RequiredError}
3028
3028
  */
3029
- verifierInitUrlCreate(walletId: string, verifyInitRequest?: VerifyInitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyInitResponse, any>>;
3029
+ verifierInitUrlCreate(walletId: string, verifyInitRequest?: VerifyInitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifyInitResponse, any, {}>>;
3030
3030
  /**
3031
3031
  * Fetches linked presentations from DID document and verifies them.
3032
3032
  * @param {string} walletId
@@ -3034,7 +3034,7 @@ export declare class DefaultApi extends BaseAPI {
3034
3034
  * @param {*} [options] Override http request option.
3035
3035
  * @throws {RequiredError}
3036
3036
  */
3037
- verifierLinkedVpVerify(walletId: string, did: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifiedLinkedVp[], any>>;
3037
+ verifierLinkedVpVerify(walletId: string, did: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifiedLinkedVp[], any, {}>>;
3038
3038
  /**
3039
3039
  * Verifies the signatures of uploaded PDF and extracts and verifies VP in the PDF document Maximum size of the PDF document is 50 MB.
3040
3040
  * @param {string} walletId
@@ -3046,35 +3046,35 @@ export declare class DefaultApi extends BaseAPI {
3046
3046
  * @param {*} [options] Override http request option.
3047
3047
  * @throws {RequiredError}
3048
3048
  */
3049
- verifierPdfVerify(walletId: string, extractVp: boolean, pdf?: File, trustedCertificates?: Array<string>, trustedListsUrl?: Array<string>, trustedListSigningCertificates?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfVerificationResponse, any>>;
3049
+ verifierPdfVerify(walletId: string, extractVp: boolean, pdf?: File, trustedCertificates?: Array<string>, trustedListsUrl?: Array<string>, trustedListSigningCertificates?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PdfVerificationResponse, any, {}>>;
3050
3050
  /**
3051
3051
  * Creates a new wallet for the authenticated client.
3052
3052
  * @param {WalletCreatePayload} [walletCreatePayload]
3053
3053
  * @param {*} [options] Override http request option.
3054
3054
  * @throws {RequiredError}
3055
3055
  */
3056
- walletCreate(walletCreatePayload?: WalletCreatePayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any>>;
3056
+ walletCreate(walletCreatePayload?: WalletCreatePayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any, {}>>;
3057
3057
  /**
3058
3058
  * Permanently deletes the wallet with all credentials and keys. Make sure you know what you are doing before hitting this endpoint.
3059
3059
  * @param {string} walletId
3060
3060
  * @param {*} [options] Override http request option.
3061
3061
  * @throws {RequiredError}
3062
3062
  */
3063
- walletDelete(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3063
+ walletDelete(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3064
3064
  /**
3065
3065
  * Provides wallet details
3066
3066
  * @param {string} walletId
3067
3067
  * @param {*} [options] Override http request option.
3068
3068
  * @throws {RequiredError}
3069
3069
  */
3070
- walletGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Wallet, any>>;
3070
+ walletGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Wallet, any, {}>>;
3071
3071
  /**
3072
3072
  *
3073
3073
  * @param {string} walletId
3074
3074
  * @param {*} [options] Override http request option.
3075
3075
  * @throws {RequiredError}
3076
3076
  */
3077
- walletIdentifierGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdentifier, any>>;
3077
+ walletIdentifierGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdentifier, any, {}>>;
3078
3078
  /**
3079
3079
  * Provides wallet keys used for signing.
3080
3080
  * @param {string} walletId Wallet ID
@@ -3083,7 +3083,7 @@ export declare class DefaultApi extends BaseAPI {
3083
3083
  */
3084
3084
  walletKeys(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
3085
3085
  [key: string]: any;
3086
- }, any>>;
3086
+ }, any, {}>>;
3087
3087
  /**
3088
3088
  * Provides list of wallets owned by the authenticated client.
3089
3089
  * @param {string} [ownerId]
@@ -3091,7 +3091,7 @@ export declare class DefaultApi extends BaseAPI {
3091
3091
  * @param {*} [options] Override http request option.
3092
3092
  * @throws {RequiredError}
3093
3093
  */
3094
- walletList(ownerId?: string, searchName?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletListItem[], any>>;
3094
+ walletList(ownerId?: string, searchName?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletListItem[], any, {}>>;
3095
3095
  /**
3096
3096
  * Gets a specific notification by state
3097
3097
  * @param {string} walletId Wallet ID
@@ -3100,7 +3100,7 @@ export declare class DefaultApi extends BaseAPI {
3100
3100
  * @param {*} [options] Override http request option.
3101
3101
  * @throws {RequiredError}
3102
3102
  */
3103
- walletNotificationGetByState(walletId: string, eventType: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification, any>>;
3103
+ walletNotificationGetByState(walletId: string, eventType: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification, any, {}>>;
3104
3104
  /**
3105
3105
  * Provides wallet notifications that can be used to audit the wallet activity.
3106
3106
  * @param {string} walletId Wallet ID
@@ -3112,14 +3112,14 @@ export declare class DefaultApi extends BaseAPI {
3112
3112
  * @param {*} [options] Override http request option.
3113
3113
  * @throws {RequiredError}
3114
3114
  */
3115
- walletNotificationHistory(walletId: string, limit?: number, nextMarker?: string, type?: Array<WalletNotificationEventType>, sort?: ListSort, newerThan?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotificationHistory, any>>;
3115
+ walletNotificationHistory(walletId: string, limit?: number, nextMarker?: string, type?: Array<WalletNotificationEventType>, sort?: ListSort, newerThan?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotificationHistory, any, {}>>;
3116
3116
  /**
3117
3117
  * Provides first-in-first-out queue of notifications for a specific wallet.
3118
3118
  * @param {string} walletId Wallet ID
3119
3119
  * @param {*} [options] Override http request option.
3120
3120
  * @throws {RequiredError}
3121
3121
  */
3122
- walletNotifications(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification[], any>>;
3122
+ walletNotifications(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification[], any, {}>>;
3123
3123
  /**
3124
3124
  * Update wallet metadata and configuration.
3125
3125
  * @param {string} walletId
@@ -3127,7 +3127,7 @@ export declare class DefaultApi extends BaseAPI {
3127
3127
  * @param {*} [options] Override http request option.
3128
3128
  * @throws {RequiredError}
3129
3129
  */
3130
- walletPatch(walletId: string, walletPatchPayload?: WalletPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any>>;
3130
+ walletPatch(walletId: string, walletPatchPayload?: WalletPatchPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any, {}>>;
3131
3131
  /**
3132
3132
  * Gets a specific verified credentials by state
3133
3133
  * @param {string} walletId Wallet ID
@@ -3135,7 +3135,7 @@ export declare class DefaultApi extends BaseAPI {
3135
3135
  * @param {*} [options] Override http request option.
3136
3136
  * @throws {RequiredError}
3137
3137
  */
3138
- walletVerifiedCredentialsByState(walletId: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifiedWrapper, any>>;
3138
+ walletVerifiedCredentialsByState(walletId: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VerifiedWrapper, any, {}>>;
3139
3139
  /**
3140
3140
  * Deletes a specific verified credentials by state
3141
3141
  * @param {string} walletId Wallet ID
@@ -3143,7 +3143,7 @@ export declare class DefaultApi extends BaseAPI {
3143
3143
  * @param {*} [options] Override http request option.
3144
3144
  * @throws {RequiredError}
3145
3145
  */
3146
- walletVerifiedCredentialsDeleteByState(walletId: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3146
+ walletVerifiedCredentialsDeleteByState(walletId: string, state: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3147
3147
  /**
3148
3148
  * Creates a X509 certificate signing request for signing key.
3149
3149
  * @param {string} walletId Wallet ID
@@ -3151,14 +3151,14 @@ export declare class DefaultApi extends BaseAPI {
3151
3151
  * @param {*} [options] Override http request option.
3152
3152
  * @throws {RequiredError}
3153
3153
  */
3154
- walletX509CSRCreate(walletId: string, cSRCreateRequest?: CSRCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CSRCreateResponse, any>>;
3154
+ walletX509CSRCreate(walletId: string, cSRCreateRequest?: CSRCreateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CSRCreateResponse, any, {}>>;
3155
3155
  /**
3156
3156
  * Returns an X509 certificate in PEM format
3157
3157
  * @param {string} walletId Wallet ID
3158
3158
  * @param {*} [options] Override http request option.
3159
3159
  * @throws {RequiredError}
3160
3160
  */
3161
- walletX509CertificateGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
3161
+ walletX509CertificateGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
3162
3162
  /**
3163
3163
  * Imports an X509 certificate to be used when signing credentials
3164
3164
  * @param {string} walletId Wallet ID
@@ -3166,7 +3166,7 @@ export declare class DefaultApi extends BaseAPI {
3166
3166
  * @param {*} [options] Override http request option.
3167
3167
  * @throws {RequiredError}
3168
3168
  */
3169
- walletX509CertificateImport(walletId: string, certificateImportRequest?: CertificateImportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3169
+ walletX509CertificateImport(walletId: string, certificateImportRequest?: CertificateImportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3170
3170
  /**
3171
3171
  * Accepts a WMP invitation
3172
3172
  * @param {string} walletId
@@ -3174,14 +3174,14 @@ export declare class DefaultApi extends BaseAPI {
3174
3174
  * @param {*} [options] Override http request option.
3175
3175
  * @throws {RequiredError}
3176
3176
  */
3177
- wmpAcceptInvitation(walletId: string, wmpAcceptInvitationPayload?: WmpAcceptInvitationPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityIdObject, any>>;
3177
+ wmpAcceptInvitation(walletId: string, wmpAcceptInvitationPayload?: WmpAcceptInvitationPayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityIdObject, any, {}>>;
3178
3178
  /**
3179
3179
  * Get pending WMP requests (credential offers or credential verification requests)
3180
3180
  * @param {string} walletId
3181
3181
  * @param {*} [options] Override http request option.
3182
3182
  * @throws {RequiredError}
3183
3183
  */
3184
- wmpClientGetPendingRequests(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpRequest[], any>>;
3184
+ wmpClientGetPendingRequests(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpRequest[], any, {}>>;
3185
3185
  /**
3186
3186
  * Process WMP request
3187
3187
  * @param {string} walletId
@@ -3189,14 +3189,14 @@ export declare class DefaultApi extends BaseAPI {
3189
3189
  * @param {*} [options] Override http request option.
3190
3190
  * @throws {RequiredError}
3191
3191
  */
3192
- wmpClientProcessRequest(walletId: string, requestId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any>>;
3192
+ wmpClientProcessRequest(walletId: string, requestId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InteractionAuthorizationRequirements, any, {}>>;
3193
3193
  /**
3194
3194
  * Creates a new WMP invitation
3195
3195
  * @param {string} walletId
3196
3196
  * @param {*} [options] Override http request option.
3197
3197
  * @throws {RequiredError}
3198
3198
  */
3199
- wmpCreateNewInvitation(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpCreateInvitationResponse, any>>;
3199
+ wmpCreateNewInvitation(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpCreateInvitationResponse, any, {}>>;
3200
3200
  /**
3201
3201
  * Get entity connection status
3202
3202
  * @param {string} walletId
@@ -3204,7 +3204,7 @@ export declare class DefaultApi extends BaseAPI {
3204
3204
  * @param {*} [options] Override http request option.
3205
3205
  * @throws {RequiredError}
3206
3206
  */
3207
- wmpEntityConnectionGet(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityConnectionStatus, any>>;
3207
+ wmpEntityConnectionGet(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityConnectionStatus, any, {}>>;
3208
3208
  /**
3209
3209
  * Delete entity based on the entity ID
3210
3210
  * @param {string} walletId
@@ -3212,7 +3212,7 @@ export declare class DefaultApi extends BaseAPI {
3212
3212
  * @param {*} [options] Override http request option.
3213
3213
  * @throws {RequiredError}
3214
3214
  */
3215
- wmpEntityDelete(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3215
+ wmpEntityDelete(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3216
3216
  /**
3217
3217
  * Get entity based on the entity ID
3218
3218
  * @param {string} walletId
@@ -3220,7 +3220,7 @@ export declare class DefaultApi extends BaseAPI {
3220
3220
  * @param {*} [options] Override http request option.
3221
3221
  * @throws {RequiredError}
3222
3222
  */
3223
- wmpEntityGet(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityRecord, any>>;
3223
+ wmpEntityGet(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityRecord, any, {}>>;
3224
3224
  /**
3225
3225
  * Get all clients that have established WMP connection.
3226
3226
  * @param {string} walletId
@@ -3228,7 +3228,7 @@ export declare class DefaultApi extends BaseAPI {
3228
3228
  * @param {*} [options] Override http request option.
3229
3229
  * @throws {RequiredError}
3230
3230
  */
3231
- wmpEntityList(walletId: string, entityType: WmpEntityListEntityTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityRecord[], any>>;
3231
+ wmpEntityList(walletId: string, entityType: WmpEntityListEntityTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpEntityRecord[], any, {}>>;
3232
3232
  /**
3233
3233
  * Connect to a WMP server entity
3234
3234
  * @param {string} walletId
@@ -3236,7 +3236,7 @@ export declare class DefaultApi extends BaseAPI {
3236
3236
  * @param {*} [options] Override http request option.
3237
3237
  * @throws {RequiredError}
3238
3238
  */
3239
- wmpEntityServerConnect(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3239
+ wmpEntityServerConnect(walletId: string, entityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3240
3240
  }
3241
3241
  export declare const CredentialListInteractionEnum: {
3242
3242
  readonly Issuance: "issuance";