@triveria/wallet 0.0.273 → 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
  *
@@ -1069,6 +1069,10 @@ export interface WmpCreateInvitationResponse {
1069
1069
  * URL at which the invitation can be downloaded
1070
1070
  */
1071
1071
  'invitationUrl': string;
1072
+ /**
1073
+ * ID of the invitation
1074
+ */
1075
+ 'invitationId': string;
1072
1076
  }
1073
1077
  export interface WmpEntityConnectionStatus {
1074
1078
  'connected': boolean;
@@ -1288,7 +1292,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
1288
1292
  */
1289
1293
  holderLinkedVpList: (walletId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1290
1294
  /**
1291
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
1295
+ * Retrieve authorization requirements for the credential offer.
1292
1296
  * @param {string} walletId
1293
1297
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
1294
1298
  * @param {*} [options] Override http request option.
@@ -1814,7 +1818,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
1814
1818
  */
1815
1819
  holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<LinkedVpMetadata>>>;
1816
1820
  /**
1817
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
1821
+ * Retrieve authorization requirements for the credential offer.
1818
1822
  * @param {string} walletId
1819
1823
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
1820
1824
  * @param {*} [options] Override http request option.
@@ -2342,7 +2346,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
2342
2346
  */
2343
2347
  holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<LinkedVpMetadata>>;
2344
2348
  /**
2345
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2349
+ * Retrieve authorization requirements for the credential offer.
2346
2350
  * @param {string} walletId
2347
2351
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
2348
2352
  * @param {*} [options] Override http request option.
@@ -2717,7 +2721,7 @@ export declare class DefaultApi extends BaseAPI {
2717
2721
  * @param {*} [options] Override http request option.
2718
2722
  * @throws {RequiredError}
2719
2723
  */
2720
- 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, {}>>;
2721
2725
  /**
2722
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.
2723
2727
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2725,7 +2729,7 @@ export declare class DefaultApi extends BaseAPI {
2725
2729
  * @param {*} [options] Override http request option.
2726
2730
  * @throws {RequiredError}
2727
2731
  */
2728
- 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, {}>>;
2729
2733
  /**
2730
2734
  * Import pre-signed credential into wallet
2731
2735
  * @param {string} walletId
@@ -2733,7 +2737,7 @@ export declare class DefaultApi extends BaseAPI {
2733
2737
  * @param {*} [options] Override http request option.
2734
2738
  * @throws {RequiredError}
2735
2739
  */
2736
- 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, {}>>;
2737
2741
  /**
2738
2742
  * Prepares created Verifiable Credential draft for its issuance for a specific client.
2739
2743
  * @param {string} credentialId
@@ -2742,7 +2746,7 @@ export declare class DefaultApi extends BaseAPI {
2742
2746
  * @param {*} [options] Override http request option.
2743
2747
  * @throws {RequiredError}
2744
2748
  */
2745
- 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, {}>>;
2746
2750
  /**
2747
2751
  * Retrieves a list of credentials.
2748
2752
  * @param {string} walletId
@@ -2757,7 +2761,7 @@ export declare class DefaultApi extends BaseAPI {
2757
2761
  * @param {*} [options] Override http request option.
2758
2762
  * @throws {RequiredError}
2759
2763
  */
2760
- 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, {}>>;
2761
2765
  /**
2762
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.
2763
2767
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2766,7 +2770,7 @@ export declare class DefaultApi extends BaseAPI {
2766
2770
  * @param {*} [options] Override http request option.
2767
2771
  * @throws {RequiredError}
2768
2772
  */
2769
- 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, {}>>;
2770
2774
  /**
2771
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.
2772
2776
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2775,7 +2779,7 @@ export declare class DefaultApi extends BaseAPI {
2775
2779
  * @param {*} [options] Override http request option.
2776
2780
  * @throws {RequiredError}
2777
2781
  */
2778
- 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, {}>>;
2779
2783
  /**
2780
2784
  * Requests a credential issuance from the issuer and retrieves requirements for holder authorization.
2781
2785
  * @param {string} walletId
@@ -2783,7 +2787,7 @@ export declare class DefaultApi extends BaseAPI {
2783
2787
  * @param {*} [options] Override http request option.
2784
2788
  * @throws {RequiredError}
2785
2789
  */
2786
- 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, {}>>;
2787
2791
  /**
2788
2792
  * Revoke a specific Verifiable Credential
2789
2793
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2791,7 +2795,7 @@ export declare class DefaultApi extends BaseAPI {
2791
2795
  * @param {*} [options] Override http request option.
2792
2796
  * @throws {RequiredError}
2793
2797
  */
2794
- 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, {}>>;
2795
2799
  /**
2796
2800
  *
2797
2801
  * @param {string} deferredId Deferred token
@@ -2799,20 +2803,20 @@ export declare class DefaultApi extends BaseAPI {
2799
2803
  * @param {*} [options] Override http request option.
2800
2804
  * @throws {RequiredError}
2801
2805
  */
2802
- 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, {}>>;
2803
2807
  /**
2804
2808
  * Gets the DID Document of the wallet.
2805
2809
  * @param {string} walletId
2806
2810
  * @param {*} [options] Override http request option.
2807
2811
  * @throws {RequiredError}
2808
2812
  */
2809
- didDocumentGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
2813
+ didDocumentGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any, {}>>;
2810
2814
  /**
2811
2815
  *
2812
2816
  * @param {*} [options] Override http request option.
2813
2817
  * @throws {RequiredError}
2814
2818
  */
2815
- healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatus, any>>;
2819
+ healthCheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthStatus, any, {}>>;
2816
2820
  /**
2817
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.
2818
2822
  * @param {string} walletId
@@ -2820,7 +2824,7 @@ export declare class DefaultApi extends BaseAPI {
2820
2824
  * @param {*} [options] Override http request option.
2821
2825
  * @throws {RequiredError}
2822
2826
  */
2823
- 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, {}>>;
2824
2828
  /**
2825
2829
  * Presenting Verifiable Credentials after holder\'s consent.
2826
2830
  * @param {string} walletId
@@ -2829,7 +2833,7 @@ export declare class DefaultApi extends BaseAPI {
2829
2833
  * @param {*} [options] Override http request option.
2830
2834
  * @throws {RequiredError}
2831
2835
  */
2832
- 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, {}>>;
2833
2837
  /**
2834
2838
  * Responds to an ID token request
2835
2839
  * @param {string} walletId
@@ -2837,7 +2841,7 @@ export declare class DefaultApi extends BaseAPI {
2837
2841
  * @param {*} [options] Override http request option.
2838
2842
  * @throws {RequiredError}
2839
2843
  */
2840
- 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, {}>>;
2841
2845
  /**
2842
2846
  * Creates a new public Linked VP of specified credentials and adds it to the wallet\'s DID document
2843
2847
  * @param {string} walletId
@@ -2845,7 +2849,7 @@ export declare class DefaultApi extends BaseAPI {
2845
2849
  * @param {*} [options] Override http request option.
2846
2850
  * @throws {RequiredError}
2847
2851
  */
2848
- 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, {}>>;
2849
2853
  /**
2850
2854
  * Deletes a linked VP
2851
2855
  * @param {string} walletId
@@ -2853,7 +2857,7 @@ export declare class DefaultApi extends BaseAPI {
2853
2857
  * @param {*} [options] Override http request option.
2854
2858
  * @throws {RequiredError}
2855
2859
  */
2856
- 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, {}>>;
2857
2861
  /**
2858
2862
  *
2859
2863
  * @param {string} walletId
@@ -2861,22 +2865,22 @@ export declare class DefaultApi extends BaseAPI {
2861
2865
  * @param {*} [options] Override http request option.
2862
2866
  * @throws {RequiredError}
2863
2867
  */
2864
- 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, {}>>;
2865
2869
  /**
2866
2870
  *
2867
2871
  * @param {string} walletId
2868
2872
  * @param {*} [options] Override http request option.
2869
2873
  * @throws {RequiredError}
2870
2874
  */
2871
- holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata[], any>>;
2875
+ holderLinkedVpList(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkedVpMetadata[], any, {}>>;
2872
2876
  /**
2873
- * Issue the Verifiable Credential using OIDC4VCI offer acceptance
2877
+ * Retrieve authorization requirements for the credential offer.
2874
2878
  * @param {string} walletId
2875
2879
  * @param {VcOffer} [vcOffer] Verifiable Credential offer
2876
2880
  * @param {*} [options] Override http request option.
2877
2881
  * @throws {RequiredError}
2878
2882
  */
2879
- 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, {}>>;
2880
2884
  /**
2881
2885
  * Gives consent to process credential offer specified by `interaction_id`
2882
2886
  * @param {string} walletId
@@ -2885,7 +2889,7 @@ export declare class DefaultApi extends BaseAPI {
2885
2889
  * @param {*} [options] Override http request option.
2886
2890
  * @throws {RequiredError}
2887
2891
  */
2888
- 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, {}>>;
2889
2893
  /**
2890
2894
  * Initiates a presentation of credentials to a verifier.
2891
2895
  * @param {string} walletId
@@ -2893,21 +2897,21 @@ export declare class DefaultApi extends BaseAPI {
2893
2897
  * @param {*} [options] Override http request option.
2894
2898
  * @throws {RequiredError}
2895
2899
  */
2896
- 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, {}>>;
2897
2901
  /**
2898
2902
  * Creates an ID token request.
2899
2903
  * @param {string} walletId
2900
2904
  * @param {*} [options] Override http request option.
2901
2905
  * @throws {RequiredError}
2902
2906
  */
2903
- idTokenRequestCreate(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdTokenRequest, any>>;
2907
+ idTokenRequestCreate(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IdTokenRequest, any, {}>>;
2904
2908
  /**
2905
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)
2906
2910
  * @param {string} url
2907
2911
  * @param {*} [options] Override http request option.
2908
2912
  * @throws {RequiredError}
2909
2913
  */
2910
- issuerCredentialTypesList(url: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialType[], any>>;
2914
+ issuerCredentialTypesList(url: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CredentialType[], any, {}>>;
2911
2915
  /**
2912
2916
  * Initiates issuing of Verifiable Credentials using authorized flow.
2913
2917
  * @param {string} walletId
@@ -2915,7 +2919,7 @@ export declare class DefaultApi extends BaseAPI {
2915
2919
  * @param {*} [options] Override http request option.
2916
2920
  * @throws {RequiredError}
2917
2921
  */
2918
- 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, {}>>;
2919
2923
  /**
2920
2924
  * Initiates issuing of Verifiable Credentials using pre-authorized flow.
2921
2925
  * @param {string} walletId
@@ -2923,7 +2927,7 @@ export declare class DefaultApi extends BaseAPI {
2923
2927
  * @param {*} [options] Override http request option.
2924
2928
  * @throws {RequiredError}
2925
2929
  */
2926
- 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, {}>>;
2927
2931
  /**
2928
2932
  * Signs an XML document with XAdES signature
2929
2933
  * @param {string} walletId
@@ -2932,7 +2936,7 @@ export declare class DefaultApi extends BaseAPI {
2932
2936
  * @param {*} [options] Override http request option.
2933
2937
  * @throws {RequiredError}
2934
2938
  */
2935
- 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, {}>>;
2936
2940
  /**
2937
2941
  * Returns a signed PDF contained in the verifiable credential containing the credential VP added as an attachment in incremental update.
2938
2942
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2941,7 +2945,7 @@ export declare class DefaultApi extends BaseAPI {
2941
2945
  * @param {*} [options] Override http request option.
2942
2946
  * @throws {RequiredError}
2943
2947
  */
2944
- 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, {}>>;
2945
2949
  /**
2946
2950
  * Deletes the PDF associated with the verifiable credential. Can be used only for credentials in Draft state.
2947
2951
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2949,7 +2953,7 @@ export declare class DefaultApi extends BaseAPI {
2949
2953
  * @param {*} [options] Override http request option.
2950
2954
  * @throws {RequiredError}
2951
2955
  */
2952
- 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, {}>>;
2953
2957
  /**
2954
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.
2955
2959
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2957,7 +2961,7 @@ export declare class DefaultApi extends BaseAPI {
2957
2961
  * @param {*} [options] Override http request option.
2958
2962
  * @throws {RequiredError}
2959
2963
  */
2960
- 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, {}>>;
2961
2965
  /**
2962
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.
2963
2967
  * @param {string} credentialId Verifiable Credential Identifier
@@ -2966,7 +2970,7 @@ export declare class DefaultApi extends BaseAPI {
2966
2970
  * @param {*} [options] Override http request option.
2967
2971
  * @throws {RequiredError}
2968
2972
  */
2969
- 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, {}>>;
2970
2974
  /**
2971
2975
  * Accredits a legal entity as RTAO, TAO or TI.
2972
2976
  * @param {string} walletId
@@ -2974,7 +2978,7 @@ export declare class DefaultApi extends BaseAPI {
2974
2978
  * @param {*} [options] Override http request option.
2975
2979
  * @throws {RequiredError}
2976
2980
  */
2977
- 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, {}>>;
2978
2982
  /**
2979
2983
  * Processes a request to accredit another legal entity.
2980
2984
  * @param {string} walletId
@@ -2982,7 +2986,7 @@ export declare class DefaultApi extends BaseAPI {
2982
2986
  * @param {*} [options] Override http request option.
2983
2987
  * @throws {RequiredError}
2984
2988
  */
2985
- 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, {}>>;
2986
2990
  /**
2987
2991
  * Onboards legal entity to the trust framework based on the wallet configuration.
2988
2992
  * @param {string} walletId
@@ -2990,7 +2994,7 @@ export declare class DefaultApi extends BaseAPI {
2990
2994
  * @param {*} [options] Override http request option.
2991
2995
  * @throws {RequiredError}
2992
2996
  */
2993
- 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, {}>>;
2994
2998
  /**
2995
2999
  * Processes a request to onboard another legal entity.
2996
3000
  * @param {string} walletId
@@ -2998,7 +3002,7 @@ export declare class DefaultApi extends BaseAPI {
2998
3002
  * @param {*} [options] Override http request option.
2999
3003
  * @throws {RequiredError}
3000
3004
  */
3001
- 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, {}>>;
3002
3006
  /**
3003
3007
  * Revokes another legal entity\'s wallet DID accreditation.
3004
3008
  * @param {string} walletId
@@ -3006,7 +3010,7 @@ export declare class DefaultApi extends BaseAPI {
3006
3010
  * @param {*} [options] Override http request option.
3007
3011
  * @throws {RequiredError}
3008
3012
  */
3009
- 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, {}>>;
3010
3014
  /**
3011
3015
  * Issues a certificate based on the provided certificate request
3012
3016
  * @param {string} walletId
@@ -3014,7 +3018,7 @@ export declare class DefaultApi extends BaseAPI {
3014
3018
  * @param {*} [options] Override http request option.
3015
3019
  * @throws {RequiredError}
3016
3020
  */
3017
- 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, {}>>;
3018
3022
  /**
3019
3023
  * Returns an url where verifier accepts presentations from a holder.
3020
3024
  * @param {string} walletId
@@ -3022,7 +3026,7 @@ export declare class DefaultApi extends BaseAPI {
3022
3026
  * @param {*} [options] Override http request option.
3023
3027
  * @throws {RequiredError}
3024
3028
  */
3025
- 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, {}>>;
3026
3030
  /**
3027
3031
  * Fetches linked presentations from DID document and verifies them.
3028
3032
  * @param {string} walletId
@@ -3030,7 +3034,7 @@ export declare class DefaultApi extends BaseAPI {
3030
3034
  * @param {*} [options] Override http request option.
3031
3035
  * @throws {RequiredError}
3032
3036
  */
3033
- 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, {}>>;
3034
3038
  /**
3035
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.
3036
3040
  * @param {string} walletId
@@ -3042,35 +3046,35 @@ export declare class DefaultApi extends BaseAPI {
3042
3046
  * @param {*} [options] Override http request option.
3043
3047
  * @throws {RequiredError}
3044
3048
  */
3045
- 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, {}>>;
3046
3050
  /**
3047
3051
  * Creates a new wallet for the authenticated client.
3048
3052
  * @param {WalletCreatePayload} [walletCreatePayload]
3049
3053
  * @param {*} [options] Override http request option.
3050
3054
  * @throws {RequiredError}
3051
3055
  */
3052
- walletCreate(walletCreatePayload?: WalletCreatePayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any>>;
3056
+ walletCreate(walletCreatePayload?: WalletCreatePayload, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdObject, any, {}>>;
3053
3057
  /**
3054
3058
  * Permanently deletes the wallet with all credentials and keys. Make sure you know what you are doing before hitting this endpoint.
3055
3059
  * @param {string} walletId
3056
3060
  * @param {*} [options] Override http request option.
3057
3061
  * @throws {RequiredError}
3058
3062
  */
3059
- walletDelete(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
3063
+ walletDelete(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
3060
3064
  /**
3061
3065
  * Provides wallet details
3062
3066
  * @param {string} walletId
3063
3067
  * @param {*} [options] Override http request option.
3064
3068
  * @throws {RequiredError}
3065
3069
  */
3066
- walletGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Wallet, any>>;
3070
+ walletGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Wallet, any, {}>>;
3067
3071
  /**
3068
3072
  *
3069
3073
  * @param {string} walletId
3070
3074
  * @param {*} [options] Override http request option.
3071
3075
  * @throws {RequiredError}
3072
3076
  */
3073
- walletIdentifierGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdentifier, any>>;
3077
+ walletIdentifierGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletIdentifier, any, {}>>;
3074
3078
  /**
3075
3079
  * Provides wallet keys used for signing.
3076
3080
  * @param {string} walletId Wallet ID
@@ -3079,7 +3083,7 @@ export declare class DefaultApi extends BaseAPI {
3079
3083
  */
3080
3084
  walletKeys(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
3081
3085
  [key: string]: any;
3082
- }, any>>;
3086
+ }, any, {}>>;
3083
3087
  /**
3084
3088
  * Provides list of wallets owned by the authenticated client.
3085
3089
  * @param {string} [ownerId]
@@ -3087,7 +3091,7 @@ export declare class DefaultApi extends BaseAPI {
3087
3091
  * @param {*} [options] Override http request option.
3088
3092
  * @throws {RequiredError}
3089
3093
  */
3090
- 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, {}>>;
3091
3095
  /**
3092
3096
  * Gets a specific notification by state
3093
3097
  * @param {string} walletId Wallet ID
@@ -3096,7 +3100,7 @@ export declare class DefaultApi extends BaseAPI {
3096
3100
  * @param {*} [options] Override http request option.
3097
3101
  * @throws {RequiredError}
3098
3102
  */
3099
- 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, {}>>;
3100
3104
  /**
3101
3105
  * Provides wallet notifications that can be used to audit the wallet activity.
3102
3106
  * @param {string} walletId Wallet ID
@@ -3108,14 +3112,14 @@ export declare class DefaultApi extends BaseAPI {
3108
3112
  * @param {*} [options] Override http request option.
3109
3113
  * @throws {RequiredError}
3110
3114
  */
3111
- 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, {}>>;
3112
3116
  /**
3113
3117
  * Provides first-in-first-out queue of notifications for a specific wallet.
3114
3118
  * @param {string} walletId Wallet ID
3115
3119
  * @param {*} [options] Override http request option.
3116
3120
  * @throws {RequiredError}
3117
3121
  */
3118
- walletNotifications(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification[], any>>;
3122
+ walletNotifications(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WalletNotification[], any, {}>>;
3119
3123
  /**
3120
3124
  * Update wallet metadata and configuration.
3121
3125
  * @param {string} walletId
@@ -3123,7 +3127,7 @@ export declare class DefaultApi extends BaseAPI {
3123
3127
  * @param {*} [options] Override http request option.
3124
3128
  * @throws {RequiredError}
3125
3129
  */
3126
- 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, {}>>;
3127
3131
  /**
3128
3132
  * Gets a specific verified credentials by state
3129
3133
  * @param {string} walletId Wallet ID
@@ -3131,7 +3135,7 @@ export declare class DefaultApi extends BaseAPI {
3131
3135
  * @param {*} [options] Override http request option.
3132
3136
  * @throws {RequiredError}
3133
3137
  */
3134
- 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, {}>>;
3135
3139
  /**
3136
3140
  * Deletes a specific verified credentials by state
3137
3141
  * @param {string} walletId Wallet ID
@@ -3139,7 +3143,7 @@ export declare class DefaultApi extends BaseAPI {
3139
3143
  * @param {*} [options] Override http request option.
3140
3144
  * @throws {RequiredError}
3141
3145
  */
3142
- 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, {}>>;
3143
3147
  /**
3144
3148
  * Creates a X509 certificate signing request for signing key.
3145
3149
  * @param {string} walletId Wallet ID
@@ -3147,14 +3151,14 @@ export declare class DefaultApi extends BaseAPI {
3147
3151
  * @param {*} [options] Override http request option.
3148
3152
  * @throws {RequiredError}
3149
3153
  */
3150
- 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, {}>>;
3151
3155
  /**
3152
3156
  * Returns an X509 certificate in PEM format
3153
3157
  * @param {string} walletId Wallet ID
3154
3158
  * @param {*} [options] Override http request option.
3155
3159
  * @throws {RequiredError}
3156
3160
  */
3157
- walletX509CertificateGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any>>;
3161
+ walletX509CertificateGet(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
3158
3162
  /**
3159
3163
  * Imports an X509 certificate to be used when signing credentials
3160
3164
  * @param {string} walletId Wallet ID
@@ -3162,7 +3166,7 @@ export declare class DefaultApi extends BaseAPI {
3162
3166
  * @param {*} [options] Override http request option.
3163
3167
  * @throws {RequiredError}
3164
3168
  */
3165
- 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, {}>>;
3166
3170
  /**
3167
3171
  * Accepts a WMP invitation
3168
3172
  * @param {string} walletId
@@ -3170,14 +3174,14 @@ export declare class DefaultApi extends BaseAPI {
3170
3174
  * @param {*} [options] Override http request option.
3171
3175
  * @throws {RequiredError}
3172
3176
  */
3173
- 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, {}>>;
3174
3178
  /**
3175
3179
  * Get pending WMP requests (credential offers or credential verification requests)
3176
3180
  * @param {string} walletId
3177
3181
  * @param {*} [options] Override http request option.
3178
3182
  * @throws {RequiredError}
3179
3183
  */
3180
- wmpClientGetPendingRequests(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpRequest[], any>>;
3184
+ wmpClientGetPendingRequests(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpRequest[], any, {}>>;
3181
3185
  /**
3182
3186
  * Process WMP request
3183
3187
  * @param {string} walletId
@@ -3185,14 +3189,14 @@ export declare class DefaultApi extends BaseAPI {
3185
3189
  * @param {*} [options] Override http request option.
3186
3190
  * @throws {RequiredError}
3187
3191
  */
3188
- 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, {}>>;
3189
3193
  /**
3190
3194
  * Creates a new WMP invitation
3191
3195
  * @param {string} walletId
3192
3196
  * @param {*} [options] Override http request option.
3193
3197
  * @throws {RequiredError}
3194
3198
  */
3195
- wmpCreateNewInvitation(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpCreateInvitationResponse, any>>;
3199
+ wmpCreateNewInvitation(walletId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WmpCreateInvitationResponse, any, {}>>;
3196
3200
  /**
3197
3201
  * Get entity connection status
3198
3202
  * @param {string} walletId
@@ -3200,7 +3204,7 @@ export declare class DefaultApi extends BaseAPI {
3200
3204
  * @param {*} [options] Override http request option.
3201
3205
  * @throws {RequiredError}
3202
3206
  */
3203
- 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, {}>>;
3204
3208
  /**
3205
3209
  * Delete entity based on the entity ID
3206
3210
  * @param {string} walletId
@@ -3208,7 +3212,7 @@ export declare class DefaultApi extends BaseAPI {
3208
3212
  * @param {*} [options] Override http request option.
3209
3213
  * @throws {RequiredError}
3210
3214
  */
3211
- 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, {}>>;
3212
3216
  /**
3213
3217
  * Get entity based on the entity ID
3214
3218
  * @param {string} walletId
@@ -3216,7 +3220,7 @@ export declare class DefaultApi extends BaseAPI {
3216
3220
  * @param {*} [options] Override http request option.
3217
3221
  * @throws {RequiredError}
3218
3222
  */
3219
- 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, {}>>;
3220
3224
  /**
3221
3225
  * Get all clients that have established WMP connection.
3222
3226
  * @param {string} walletId
@@ -3224,7 +3228,7 @@ export declare class DefaultApi extends BaseAPI {
3224
3228
  * @param {*} [options] Override http request option.
3225
3229
  * @throws {RequiredError}
3226
3230
  */
3227
- 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, {}>>;
3228
3232
  /**
3229
3233
  * Connect to a WMP server entity
3230
3234
  * @param {string} walletId
@@ -3232,7 +3236,7 @@ export declare class DefaultApi extends BaseAPI {
3232
3236
  * @param {*} [options] Override http request option.
3233
3237
  * @throws {RequiredError}
3234
3238
  */
3235
- 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, {}>>;
3236
3240
  }
3237
3241
  export declare const CredentialListInteractionEnum: {
3238
3242
  readonly Issuance: "issuance";