@triveria/wallet 0.0.184 → 0.0.186

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