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