@finverse/sdk-typescript 0.0.313 → 0.0.315

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/dist/api.d.ts +86 -86
  2. package/package.json +4 -4
package/dist/api.d.ts CHANGED
@@ -8362,7 +8362,7 @@ export interface TransactionLimitsResponse {
8362
8362
  * @type {number}
8363
8363
  * @memberof TransactionLimitsResponse
8364
8364
  */
8365
- max_transaction_amount: number;
8365
+ max_transaction_amount?: number;
8366
8366
  /**
8367
8367
  * The maximum amount of money that can be transferred in a single transaction under this mandate set by the payer. Expressed in currency\'s smallest unit or “minor unit”, as defined in ISO 4217.
8368
8368
  * @type {number}
@@ -9408,7 +9408,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9408
9408
  * @throws {RequiredError}
9409
9409
  * @memberof CustomerApi
9410
9410
  */
9411
- authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse, any>>;
9411
+ authorizeMandate(mandateId: string, authorizeMandateRequest: AuthorizeMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse, any, {}>>;
9412
9412
  /**
9413
9413
  * CREATE Mandate
9414
9414
  * @param {CreateMandateRequest} createMandateRequest request body for creating mandate
@@ -9417,7 +9417,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9417
9417
  * @throws {RequiredError}
9418
9418
  * @memberof CustomerApi
9419
9419
  */
9420
- createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMandateResponse, any>>;
9420
+ createMandate(createMandateRequest: CreateMandateRequest, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMandateResponse, any, {}>>;
9421
9421
  /**
9422
9422
  * Create new Payment
9423
9423
  * @param {CreatePaymentRequest} createPaymentRequest request body for creating payment
@@ -9426,7 +9426,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9426
9426
  * @throws {RequiredError}
9427
9427
  * @memberof CustomerApi
9428
9428
  */
9429
- createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any>>;
9429
+ createPayment(createPaymentRequest: CreatePaymentRequest, idempotencyKey?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any, {}>>;
9430
9430
  /**
9431
9431
  * create payment account
9432
9432
  * @param {CreatePaymentAccountRequest} createPaymentAccountRequest request body for creating payment account
@@ -9434,7 +9434,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9434
9434
  * @throws {RequiredError}
9435
9435
  * @memberof CustomerApi
9436
9436
  */
9437
- createPaymentAccount(createPaymentAccountRequest: CreatePaymentAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentAccountDetails, any>>;
9437
+ createPaymentAccount(createPaymentAccountRequest: CreatePaymentAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentAccountDetails, any, {}>>;
9438
9438
  /**
9439
9439
  * Create a new payment instruction to be used when linking to perform new payment
9440
9440
  * @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
@@ -9442,7 +9442,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9442
9442
  * @throws {RequiredError}
9443
9443
  * @memberof CustomerApi
9444
9444
  */
9445
- createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentInstructionResponse, any>>;
9445
+ createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentInstructionResponse, any, {}>>;
9446
9446
  /**
9447
9447
  * Create a payment user
9448
9448
  * @param {CreatePaymentUserRequest} createPaymentUserRequest request body for creating payment user
@@ -9450,7 +9450,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9450
9450
  * @throws {RequiredError}
9451
9451
  * @memberof CustomerApi
9452
9452
  */
9453
- createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any>>;
9453
+ createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any, {}>>;
9454
9454
  /**
9455
9455
  * delete payment account
9456
9456
  * @param {string} paymentAccountId The payment account id
@@ -9458,7 +9458,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9458
9458
  * @throws {RequiredError}
9459
9459
  * @memberof CustomerApi
9460
9460
  */
9461
- deletePaymentAccount(paymentAccountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9461
+ deletePaymentAccount(paymentAccountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9462
9462
  /**
9463
9463
  * generate a link token that can be used to create link
9464
9464
  * @param {LinkTokenRequest} linkTokenRequest token request
@@ -9466,7 +9466,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9466
9466
  * @throws {RequiredError}
9467
9467
  * @memberof CustomerApi
9468
9468
  */
9469
- generateLinkToken(linkTokenRequest: LinkTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkTokenResponse, any>>;
9469
+ generateLinkToken(linkTokenRequest: LinkTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkTokenResponse, any, {}>>;
9470
9470
  /**
9471
9471
  * Get a specific institution by institutionId
9472
9472
  * @param {string} institutionId The institution id
@@ -9474,7 +9474,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9474
9474
  * @throws {RequiredError}
9475
9475
  * @memberof CustomerApi
9476
9476
  */
9477
- getInstitution(institutionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution, any>>;
9477
+ getInstitution(institutionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution, any, {}>>;
9478
9478
  /**
9479
9479
  * Get line items for display
9480
9480
  * @param {GetLineItemsForDisplayPaymentTypeEnum} paymentType The payment type
@@ -9482,7 +9482,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9482
9482
  * @throws {RequiredError}
9483
9483
  * @memberof CustomerApi
9484
9484
  */
9485
- getLineItemsForDisplay(paymentType: GetLineItemsForDisplayPaymentTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLineItemsForDisplayResponse, any>>;
9485
+ getLineItemsForDisplay(paymentType: GetLineItemsForDisplayPaymentTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLineItemsForDisplayResponse, any, {}>>;
9486
9486
  /**
9487
9487
  * Get a specific loginIdentity
9488
9488
  * @param {string} loginIdentityId The login identity id
@@ -9490,7 +9490,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9490
9490
  * @throws {RequiredError}
9491
9491
  * @memberof CustomerApi
9492
9492
  */
9493
- getLoginIdentityById(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any>>;
9493
+ getLoginIdentityById(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any, {}>>;
9494
9494
  /**
9495
9495
  * Get a history of events for a specific loginIdentity
9496
9496
  * @param {string} loginIdentityId The login identity id
@@ -9498,7 +9498,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9498
9498
  * @throws {RequiredError}
9499
9499
  * @memberof CustomerApi
9500
9500
  */
9501
- getLoginIdentityHistory(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityHistoryResponse, any>>;
9501
+ getLoginIdentityHistory(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityHistoryResponse, any, {}>>;
9502
9502
  /**
9503
9503
  * Get Mandate details by mandate_id
9504
9504
  * @param {string} mandateId mandate id
@@ -9506,14 +9506,14 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9506
9506
  * @throws {RequiredError}
9507
9507
  * @memberof CustomerApi
9508
9508
  */
9509
- getMandate(mandateId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse, any>>;
9509
+ getMandate(mandateId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateResponse, any, {}>>;
9510
9510
  /**
9511
9511
  * Get Mandate Authorization by mandate id
9512
9512
  * @param {*} [options] Override http request option.
9513
9513
  * @throws {RequiredError}
9514
9514
  * @memberof CustomerApi
9515
9515
  */
9516
- getMandateAuth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse, any>>;
9516
+ getMandateAuth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthResponse, any, {}>>;
9517
9517
  /**
9518
9518
  * Get link to launch FV Link UI in mandate authorization mode
9519
9519
  * @param {GetMandateAuthLinkRequest} getMandateAuthLinkRequest request body for mandate authorization link
@@ -9521,7 +9521,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9521
9521
  * @throws {RequiredError}
9522
9522
  * @memberof CustomerApi
9523
9523
  */
9524
- getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthLinkResponse, any>>;
9524
+ getMandateAuthLink(getMandateAuthLinkRequest: GetMandateAuthLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetMandateAuthLinkResponse, any, {}>>;
9525
9525
  /**
9526
9526
  * Get Payment details by payment_id
9527
9527
  * @param {string} paymentId payment id
@@ -9529,7 +9529,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9529
9529
  * @throws {RequiredError}
9530
9530
  * @memberof CustomerApi
9531
9531
  */
9532
- getPayment(paymentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any>>;
9532
+ getPayment(paymentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any, {}>>;
9533
9533
  /**
9534
9534
  * Get payment instructions by payment_instruction_id
9535
9535
  * @param {string} paymentInstructionId The id of a payment instruction
@@ -9537,7 +9537,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9537
9537
  * @throws {RequiredError}
9538
9538
  * @memberof CustomerApi
9539
9539
  */
9540
- getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentInstructionsResponse, any>>;
9540
+ getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentInstructionsResponse, any, {}>>;
9541
9541
  /**
9542
9542
  * Get a payment user
9543
9543
  * @param {string} paymentUserId
@@ -9545,7 +9545,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9545
9545
  * @throws {RequiredError}
9546
9546
  * @memberof CustomerApi
9547
9547
  */
9548
- getPaymentUser(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any>>;
9548
+ getPaymentUser(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any, {}>>;
9549
9549
  /**
9550
9550
  * Get a list of institutions
9551
9551
  * @param {string} [country] (Deprecated) The country the institution belongs to
@@ -9556,7 +9556,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9556
9556
  * @throws {RequiredError}
9557
9557
  * @memberof CustomerApi
9558
9558
  */
9559
- listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: ListInstitutionsInstitutionTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[], any>>;
9559
+ listInstitutions(country?: string, countries?: Array<string>, productsSupported?: string, institutionType?: ListInstitutionsInstitutionTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[], any, {}>>;
9560
9560
  /**
9561
9561
  * Get payment account by user id
9562
9562
  * @param {string} paymentUserId The payment user id
@@ -9564,7 +9564,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9564
9564
  * @throws {RequiredError}
9565
9565
  * @memberof CustomerApi
9566
9566
  */
9567
- listPaymentAccounts(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentAccountsResponse, any>>;
9567
+ listPaymentAccounts(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentAccountsResponse, any, {}>>;
9568
9568
  /**
9569
9569
  * Get payment account for customer app
9570
9570
  * @param {ListPaymentAccountsWithEnrichedDataAccountTypeEnum} [accountType] The account_type to filter for
@@ -9575,7 +9575,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9575
9575
  * @throws {RequiredError}
9576
9576
  * @memberof CustomerApi
9577
9577
  */
9578
- listPaymentAccountsWithEnrichedData(accountType?: ListPaymentAccountsWithEnrichedDataAccountTypeEnum, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentAccountsWithEnrichedDataResponse, any>>;
9578
+ listPaymentAccountsWithEnrichedData(accountType?: ListPaymentAccountsWithEnrichedDataAccountTypeEnum, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentAccountsWithEnrichedDataResponse, any, {}>>;
9579
9579
  /**
9580
9580
  * Refresh an access token
9581
9581
  * @param {RefreshRequest} refreshRequest The refresh token
@@ -9583,7 +9583,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9583
9583
  * @throws {RequiredError}
9584
9584
  * @memberof CustomerApi
9585
9585
  */
9586
- refreshToken(refreshRequest: RefreshRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse, any>>;
9586
+ refreshToken(refreshRequest: RefreshRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse, any, {}>>;
9587
9587
  /**
9588
9588
  * Update InstitutionID and SenderType for Mandate
9589
9589
  * @param {SetMandateInstitutionRequest} updateRequest request body for updating mandate institutionId and senderType
@@ -9591,7 +9591,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9591
9591
  * @throws {RequiredError}
9592
9592
  * @memberof CustomerApi
9593
9593
  */
9594
- setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SetMandateInstitutionResponse, any>>;
9594
+ setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SetMandateInstitutionResponse, any, {}>>;
9595
9595
  /**
9596
9596
  * Submit authorization checklist items
9597
9597
  * @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
@@ -9599,7 +9599,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9599
9599
  * @throws {RequiredError}
9600
9600
  * @memberof CustomerApi
9601
9601
  */
9602
- submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubmitAuthChecklistResponse, any>>;
9602
+ submitAuthChecklist(submitAuthChecklistRequest: SubmitAuthChecklistRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SubmitAuthChecklistResponse, any, {}>>;
9603
9603
  /**
9604
9604
  * Update payment
9605
9605
  * @param {string} paymentId payment id
@@ -9608,7 +9608,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9608
9608
  * @throws {RequiredError}
9609
9609
  * @memberof CustomerApi
9610
9610
  */
9611
- updatePayment(paymentId: string, updatePaymentRequest: UpdatePaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any>>;
9611
+ updatePayment(paymentId: string, updatePaymentRequest: UpdatePaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentResponse, any, {}>>;
9612
9612
  /**
9613
9613
  * Update the status of a test manual payment
9614
9614
  * @param {string} paymentId The test payment ID
@@ -9617,7 +9617,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9617
9617
  * @throws {RequiredError}
9618
9618
  * @memberof CustomerApi
9619
9619
  */
9620
- updateTestPaymentStatus(paymentId: string, paymentStatus: UpdateTestPaymentStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9620
+ updateTestPaymentStatus(paymentId: string, paymentStatus: UpdateTestPaymentStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9621
9621
  }
9622
9622
  /**
9623
9623
  * @export
@@ -10726,7 +10726,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10726
10726
  * @throws {RequiredError}
10727
10727
  * @memberof DefaultApi
10728
10728
  */
10729
- cancelPaymentLink(paymentLinkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any>>;
10729
+ cancelPaymentLink(paymentLinkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
10730
10730
  /**
10731
10731
  * Cancel Payout by payout_id
10732
10732
  * @param {string} payoutId payout id
@@ -10734,14 +10734,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10734
10734
  * @throws {RequiredError}
10735
10735
  * @memberof DefaultApi
10736
10736
  */
10737
- cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any>>;
10737
+ cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
10738
10738
  /**
10739
10739
  * Initiate change payment method from payment link front-end
10740
10740
  * @param {*} [options] Override http request option.
10741
10741
  * @throws {RequiredError}
10742
10742
  * @memberof DefaultApi
10743
10743
  */
10744
- changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangePaymentMethodFvLinkResponse, any>>;
10744
+ changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangePaymentMethodFvLinkResponse, any, {}>>;
10745
10745
  /**
10746
10746
  * Submit manual payment confirmation
10747
10747
  * @param {ManualPaymentConfirmationRequest} manualPaymentIdentifiers Request body containing information to identify manual payment
@@ -10749,21 +10749,21 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10749
10749
  * @throws {RequiredError}
10750
10750
  * @memberof DefaultApi
10751
10751
  */
10752
- confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManualPaymentConfirmationResponse, any>>;
10752
+ confirmManualPayment(manualPaymentIdentifiers: ManualPaymentConfirmationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ManualPaymentConfirmationResponse, any, {}>>;
10753
10753
  /**
10754
10754
  * Confirm a payment against a payment Link
10755
10755
  * @param {*} [options] Override http request option.
10756
10756
  * @throws {RequiredError}
10757
10757
  * @memberof DefaultApi
10758
10758
  */
10759
- confirmPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfirmPaymentResponse, any>>;
10759
+ confirmPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfirmPaymentResponse, any, {}>>;
10760
10760
  /**
10761
10761
  * Create token for fps flow
10762
10762
  * @param {*} [options] Override http request option.
10763
10763
  * @throws {RequiredError}
10764
10764
  * @memberof DefaultApi
10765
10765
  */
10766
- createFpsToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFpsTokenResponse, any>>;
10766
+ createFpsToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFpsTokenResponse, any, {}>>;
10767
10767
  /**
10768
10768
  * Create mandate for an existing sender account
10769
10769
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10772,7 +10772,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10772
10772
  * @throws {RequiredError}
10773
10773
  * @memberof DefaultApi
10774
10774
  */
10775
- createMandateForExistingSender(idempotencyKey: string, createMandateRequest: CreateMandateWithSenderAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMandateResponse, any>>;
10775
+ createMandateForExistingSender(idempotencyKey: string, createMandateRequest: CreateMandateWithSenderAccountRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateMandateResponse, any, {}>>;
10776
10776
  /**
10777
10777
  * Create payment link
10778
10778
  * @param {CreatePaymentLinkRequest} createPaymentLinkRequest Parameters required to create a payment link
@@ -10780,14 +10780,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10780
10780
  * @throws {RequiredError}
10781
10781
  * @memberof DefaultApi
10782
10782
  */
10783
- createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any>>;
10783
+ createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
10784
10784
  /**
10785
10785
  * Initiate Card Payment for a Payment Link
10786
10786
  * @param {*} [options] Override http request option.
10787
10787
  * @throws {RequiredError}
10788
10788
  * @memberof DefaultApi
10789
10789
  */
10790
- createPaymentLinkCardPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkCardPaymentResponse, any>>;
10790
+ createPaymentLinkCardPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkCardPaymentResponse, any, {}>>;
10791
10791
  /**
10792
10792
  * CREATE Mandate for payment link
10793
10793
  * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
@@ -10795,7 +10795,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10795
10795
  * @throws {RequiredError}
10796
10796
  * @memberof DefaultApi
10797
10797
  */
10798
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkMandateResponse, any>>;
10798
+ createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkMandateResponse, any, {}>>;
10799
10799
  /**
10800
10800
  * Create a Payment Method for a user
10801
10801
  * @param {string} paymentUserId Payment User ID
@@ -10804,7 +10804,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10804
10804
  * @throws {RequiredError}
10805
10805
  * @memberof DefaultApi
10806
10806
  */
10807
- createPaymentMethod(paymentUserId: string, createPaymentMethodRequest: CreatePaymentMethodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse, any>>;
10807
+ createPaymentMethod(paymentUserId: string, createPaymentMethodRequest: CreatePaymentMethodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse, any, {}>>;
10808
10808
  /**
10809
10809
  * Create a scheduled payout
10810
10810
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10813,14 +10813,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10813
10813
  * @throws {RequiredError}
10814
10814
  * @memberof DefaultApi
10815
10815
  */
10816
- createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any>>;
10816
+ createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
10817
10817
  /**
10818
10818
  * Demote payment attempt
10819
10819
  * @param {*} [options] Override http request option.
10820
10820
  * @throws {RequiredError}
10821
10821
  * @memberof DefaultApi
10822
10822
  */
10823
- demotePaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
10823
+ demotePaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10824
10824
  /**
10825
10825
  * Download the balance statement for the ledger (CSV)
10826
10826
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10830,21 +10830,21 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10830
10830
  * @throws {RequiredError}
10831
10831
  * @memberof DefaultApi
10832
10832
  */
10833
- downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DownloadBalanceStatementResponse, any>>;
10833
+ downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DownloadBalanceStatementResponse, any, {}>>;
10834
10834
  /**
10835
10835
  * Get the FPS QR code
10836
10836
  * @param {*} [options] Override http request option.
10837
10837
  * @throws {RequiredError}
10838
10838
  * @memberof DefaultApi
10839
10839
  */
10840
- getFpsQrCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FpsQrCodeResponse, any>>;
10840
+ getFpsQrCode(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FpsQrCodeResponse, any, {}>>;
10841
10841
  /**
10842
10842
  * Get a customer-specific list of institutions for Finverse Link
10843
10843
  * @param {*} [options] Override http request option.
10844
10844
  * @throws {RequiredError}
10845
10845
  * @memberof DefaultApi
10846
10846
  */
10847
- getInstitutionsForCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[], any>>;
10847
+ getInstitutionsForCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[], any, {}>>;
10848
10848
  /**
10849
10849
  * Get payment link
10850
10850
  * @param {string} paymentLinkId The payment link id
@@ -10852,7 +10852,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10852
10852
  * @throws {RequiredError}
10853
10853
  * @memberof DefaultApi
10854
10854
  */
10855
- getPaymentLink(paymentLinkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any>>;
10855
+ getPaymentLink(paymentLinkId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
10856
10856
  /**
10857
10857
  * Get a payment method
10858
10858
  * @param {string} paymentMethodId
@@ -10860,21 +10860,21 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10860
10860
  * @throws {RequiredError}
10861
10861
  * @memberof DefaultApi
10862
10862
  */
10863
- getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse, any>>;
10863
+ getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse, any, {}>>;
10864
10864
  /**
10865
10865
  * Get payment method in payment link flow
10866
10866
  * @param {*} [options] Override http request option.
10867
10867
  * @throws {RequiredError}
10868
10868
  * @memberof DefaultApi
10869
10869
  */
10870
- getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodFvLinkResponse, any>>;
10870
+ getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodFvLinkResponse, any, {}>>;
10871
10871
  /**
10872
10872
  * Get payment (if exists) on the payment link for front-end
10873
10873
  * @param {*} [options] Override http request option.
10874
10874
  * @throws {RequiredError}
10875
10875
  * @memberof DefaultApi
10876
10876
  */
10877
- getPaymentPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentFvLinkResponse, any>>;
10877
+ getPaymentPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentFvLinkResponse, any, {}>>;
10878
10878
  /**
10879
10879
  * Get payout by payout_id
10880
10880
  * @param {string} payoutId payout id
@@ -10882,14 +10882,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10882
10882
  * @throws {RequiredError}
10883
10883
  * @memberof DefaultApi
10884
10884
  */
10885
- getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any>>;
10885
+ getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
10886
10886
  /**
10887
10887
  * Get sender payment user in payment link flow
10888
10888
  * @param {*} [options] Override http request option.
10889
10889
  * @throws {RequiredError}
10890
10890
  * @memberof DefaultApi
10891
10891
  */
10892
- getSenderPaymentUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentUserResponse, any>>;
10892
+ getSenderPaymentUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentUserResponse, any, {}>>;
10893
10893
  /**
10894
10894
  * List mandates details
10895
10895
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10904,7 +10904,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10904
10904
  * @throws {RequiredError}
10905
10905
  * @memberof DefaultApi
10906
10906
  */
10907
- listDetokenizedMandates(dateFrom?: string, dateTo?: string, statuses?: Array<ListDetokenizedMandatesStatusesEnum>, senderType?: ListDetokenizedMandatesSenderTypeEnum, userId?: string, institutionId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListMandatesResponse, any>>;
10907
+ listDetokenizedMandates(dateFrom?: string, dateTo?: string, statuses?: Array<ListDetokenizedMandatesStatusesEnum>, senderType?: ListDetokenizedMandatesSenderTypeEnum, userId?: string, institutionId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListMandatesResponse, any, {}>>;
10908
10908
  /**
10909
10909
  * List Disputes
10910
10910
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10916,7 +10916,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10916
10916
  * @throws {RequiredError}
10917
10917
  * @memberof DefaultApi
10918
10918
  */
10919
- listDisputes(dateFrom?: string, dateTo?: string, statuses?: Array<ListDisputesStatusesEnum>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDisputesResponse, any>>;
10919
+ listDisputes(dateFrom?: string, dateTo?: string, statuses?: Array<ListDisputesStatusesEnum>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListDisputesResponse, any, {}>>;
10920
10920
  /**
10921
10921
  * List mandates
10922
10922
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10931,7 +10931,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10931
10931
  * @throws {RequiredError}
10932
10932
  * @memberof DefaultApi
10933
10933
  */
10934
- listMandates(dateFrom?: string, dateTo?: string, statuses?: Array<ListMandatesStatusesEnum>, senderType?: ListMandatesSenderTypeEnum, userId?: string, institutionId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListMandatesResponse, any>>;
10934
+ listMandates(dateFrom?: string, dateTo?: string, statuses?: Array<ListMandatesStatusesEnum>, senderType?: ListMandatesSenderTypeEnum, userId?: string, institutionId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListMandatesResponse, any, {}>>;
10935
10935
  /**
10936
10936
  * List Payment Methods for a User
10937
10937
  * @param {string} paymentUserId Payment User Id
@@ -10939,7 +10939,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10939
10939
  * @throws {RequiredError}
10940
10940
  * @memberof DefaultApi
10941
10941
  */
10942
- listPaymentMethods(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentMethodsResponse, any>>;
10942
+ listPaymentMethods(paymentUserId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentMethodsResponse, any, {}>>;
10943
10943
  /**
10944
10944
  * List Payments
10945
10945
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10959,7 +10959,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10959
10959
  * @throws {RequiredError}
10960
10960
  * @memberof DefaultApi
10961
10961
  */
10962
- listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<ListPaymentsStatusesEnum>, senderType?: ListPaymentsSenderTypeEnum, userId?: string, institutionId?: string, paymentType?: ListPaymentsPaymentTypeEnum, paymentTypes?: Array<ListPaymentsPaymentTypesEnum>, mandateId?: string, currency?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentsResponse, any>>;
10962
+ listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<ListPaymentsStatusesEnum>, senderType?: ListPaymentsSenderTypeEnum, userId?: string, institutionId?: string, paymentType?: ListPaymentsPaymentTypeEnum, paymentTypes?: Array<ListPaymentsPaymentTypesEnum>, mandateId?: string, currency?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentsResponse, any, {}>>;
10963
10963
  /**
10964
10964
  * List payouts
10965
10965
  * @param {string} [dateFrom] ISO format (YYYY-MM-DD)
@@ -10978,14 +10978,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10978
10978
  * @throws {RequiredError}
10979
10979
  * @memberof DefaultApi
10980
10980
  */
10981
- listPayouts(dateFrom?: string, dateTo?: string, statuses?: Array<ListPayoutsStatusesEnum>, currencies?: Array<string>, payoutTypes?: Array<ListPayoutsPayoutTypesEnum>, mandateId?: string, senderAccountId?: string, recipientAccountId?: string, recipientUserId?: string, recipientExternalUserId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPayoutsResponse, any>>;
10981
+ listPayouts(dateFrom?: string, dateTo?: string, statuses?: Array<ListPayoutsStatusesEnum>, currencies?: Array<string>, payoutTypes?: Array<ListPayoutsPayoutTypesEnum>, mandateId?: string, senderAccountId?: string, recipientAccountId?: string, recipientUserId?: string, recipientExternalUserId?: string, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPayoutsResponse, any, {}>>;
10982
10982
  /**
10983
10983
  * Refresh payment attempt from payment link front-end
10984
10984
  * @param {*} [options] Override http request option.
10985
10985
  * @throws {RequiredError}
10986
10986
  * @memberof DefaultApi
10987
10987
  */
10988
- refreshPaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshPaymentAttemptResponse, any>>;
10988
+ refreshPaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshPaymentAttemptResponse, any, {}>>;
10989
10989
  /**
10990
10990
  * Set autopay consent for payment user
10991
10991
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -10993,7 +10993,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
10993
10993
  * @throws {RequiredError}
10994
10994
  * @memberof DefaultApi
10995
10995
  */
10996
- setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
10996
+ setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
10997
10997
  /**
10998
10998
  * Update a payment user
10999
10999
  * @param {string} paymentUserId
@@ -11002,7 +11002,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
11002
11002
  * @throws {RequiredError}
11003
11003
  * @memberof DefaultApi
11004
11004
  */
11005
- updatePaymentUser(paymentUserId: string, updatePaymentUserRequest: UpdatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any>>;
11005
+ updatePaymentUser(paymentUserId: string, updatePaymentUserRequest: UpdatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any, {}>>;
11006
11006
  }
11007
11007
  /**
11008
11008
  * @export
@@ -11422,7 +11422,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11422
11422
  * @throws {RequiredError}
11423
11423
  * @memberof LinkApi
11424
11424
  */
11425
- createLink(apiLinkRequest: ApiLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any>>;
11425
+ createLink(apiLinkRequest: ApiLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any, {}>>;
11426
11426
  /**
11427
11427
  * Creates a new link
11428
11428
  * @param {LinkRequest} linkRequest Request body for starting a new Link
@@ -11430,7 +11430,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11430
11430
  * @throws {RequiredError}
11431
11431
  * @memberof LinkApi
11432
11432
  */
11433
- createLinkWoauth(linkRequest: LinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse, any>>;
11433
+ createLinkWoauth(linkRequest: LinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse, any, {}>>;
11434
11434
  /**
11435
11435
  * Post the user action value
11436
11436
  * @param {string} loginIdentityId The login identity id
@@ -11439,7 +11439,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11439
11439
  * @throws {RequiredError}
11440
11440
  * @memberof LinkApi
11441
11441
  */
11442
- linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any>>;
11442
+ linkAction(loginIdentityId: string, actionRequest: ActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any, {}>>;
11443
11443
  /**
11444
11444
  * Check the status of a given loginIdentity
11445
11445
  * @param {string} loginIdentityId The login identity id
@@ -11447,7 +11447,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11447
11447
  * @throws {RequiredError}
11448
11448
  * @memberof LinkApi
11449
11449
  */
11450
- linkStatus(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkStatusResponse, any>>;
11450
+ linkStatus(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkStatusResponse, any, {}>>;
11451
11451
  /**
11452
11452
  * Check the status of a given login identity via FVLink
11453
11453
  * @param {string} loginIdentityId The login identity id
@@ -11455,7 +11455,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11455
11455
  * @throws {RequiredError}
11456
11456
  * @memberof LinkApi
11457
11457
  */
11458
- linkStatusNonSensitive(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonSensitiveLinkStatusResponse, any>>;
11458
+ linkStatusNonSensitive(loginIdentityId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NonSensitiveLinkStatusResponse, any, {}>>;
11459
11459
  /**
11460
11460
  * Update an existing link
11461
11461
  * @param {RelinkRequest} relinkRequest Request body for updating Link
@@ -11463,7 +11463,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11463
11463
  * @throws {RequiredError}
11464
11464
  * @memberof LinkApi
11465
11465
  */
11466
- relink(relinkRequest: RelinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse, any>>;
11466
+ relink(relinkRequest: RelinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkResponse, any, {}>>;
11467
11467
  /**
11468
11468
  * Create a new link using an existing LIID
11469
11469
  * @param {string} loginIdentityId The login identity id
@@ -11472,7 +11472,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11472
11472
  * @throws {RequiredError}
11473
11473
  * @memberof LinkApi
11474
11474
  */
11475
- relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any>>;
11475
+ relinkV2(loginIdentityId: string, apiRelinkRequest: ApiRelinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any, {}>>;
11476
11476
  /**
11477
11477
  * Exchange authorization code for token
11478
11478
  * @param {TokenGrantTypeEnum} grantType
@@ -11483,7 +11483,7 @@ export declare class LinkApi extends BaseAPI implements LinkApiInterface {
11483
11483
  * @throws {RequiredError}
11484
11484
  * @memberof LinkApi
11485
11485
  */
11486
- token(grantType: TokenGrantTypeEnum, code: string, clientId: string, redirectUri: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse, any>>;
11486
+ token(grantType: TokenGrantTypeEnum, code: string, clientId: string, redirectUri: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccessTokenResponse, any, {}>>;
11487
11487
  }
11488
11488
  /**
11489
11489
  * @export
@@ -11994,7 +11994,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
11994
11994
  * @throws {RequiredError}
11995
11995
  * @memberof LoginIdentityApi
11996
11996
  */
11997
- deleteLoginIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteLoginIdentityResponse, any>>;
11997
+ deleteLoginIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteLoginIdentityResponse, any, {}>>;
11998
11998
  /**
11999
11999
  * generate a link token that can be used to create link
12000
12000
  * @param {LinkTokenRequest} linkTokenRequest token request
@@ -12002,7 +12002,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12002
12002
  * @throws {RequiredError}
12003
12003
  * @memberof LoginIdentityApi
12004
12004
  */
12005
- generateLinkToken(linkTokenRequest: LinkTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkTokenResponse, any>>;
12005
+ generateLinkToken(linkTokenRequest: LinkTokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<LinkTokenResponse, any, {}>>;
12006
12006
  /**
12007
12007
  * Get a specific account\'s information
12008
12008
  * @param {string} accountId The account id
@@ -12010,7 +12010,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12010
12010
  * @throws {RequiredError}
12011
12011
  * @memberof LoginIdentityApi
12012
12012
  */
12013
- getAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountResponse, any>>;
12013
+ getAccount(accountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountResponse, any, {}>>;
12014
12014
  /**
12015
12015
  * Get the account number for a specific account
12016
12016
  * @param {string} accountId The account id
@@ -12018,7 +12018,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12018
12018
  * @throws {RequiredError}
12019
12019
  * @memberof LoginIdentityApi
12020
12020
  */
12021
- getAccountNumber(accountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountNumberResponse, any>>;
12021
+ getAccountNumber(accountId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountNumberResponse, any, {}>>;
12022
12022
  /**
12023
12023
  * Get the balance history for a specific account
12024
12024
  * @param {string} accountId The account id
@@ -12027,7 +12027,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12027
12027
  * @throws {RequiredError}
12028
12028
  * @memberof LoginIdentityApi
12029
12029
  */
12030
- getBalanceHistory(accountId: string, source?: GetBalanceHistorySourceEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBalanceHistoryResponse, any>>;
12030
+ getBalanceHistory(accountId: string, source?: GetBalanceHistorySourceEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBalanceHistoryResponse, any, {}>>;
12031
12031
  /**
12032
12032
  * Download composite statement
12033
12033
  * @param {boolean} [redirect] when true, response will be http redirect; otherwise it will be json response with the download link
@@ -12035,28 +12035,28 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12035
12035
  * @throws {RequiredError}
12036
12036
  * @memberof LoginIdentityApi
12037
12037
  */
12038
- getCompositeStatement(redirect?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeStatementLink, any>>;
12038
+ getCompositeStatement(redirect?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CompositeStatementLink, any, {}>>;
12039
12039
  /**
12040
12040
  * \\[BETA] Get a list of identity data for a given login identity
12041
12041
  * @param {*} [options] Override http request option.
12042
12042
  * @throws {RequiredError}
12043
12043
  * @memberof LoginIdentityApi
12044
12044
  */
12045
- getIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetIdentityResponse, any>>;
12045
+ getIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetIdentityResponse, any, {}>>;
12046
12046
  /**
12047
12047
  * Get income figures for a login identity
12048
12048
  * @param {*} [options] Override http request option.
12049
12049
  * @throws {RequiredError}
12050
12050
  * @memberof LoginIdentityApi
12051
12051
  */
12052
- getIncomeEstimateByLoginIdentityId(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse, any>>;
12052
+ getIncomeEstimateByLoginIdentityId(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse, any, {}>>;
12053
12053
  /**
12054
12054
  * Get a specific loginIdentity
12055
12055
  * @param {*} [options] Override http request option.
12056
12056
  * @throws {RequiredError}
12057
12057
  * @memberof LoginIdentityApi
12058
12058
  */
12059
- getLoginIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any>>;
12059
+ getLoginIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetLoginIdentityByIdResponse, any, {}>>;
12060
12060
  /**
12061
12061
  * Download statement
12062
12062
  * @param {string} statementId The statement id
@@ -12065,28 +12065,28 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12065
12065
  * @throws {RequiredError}
12066
12066
  * @memberof LoginIdentityApi
12067
12067
  */
12068
- getStatement(statementId: string, redirect?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementLinkResponse, any>>;
12068
+ getStatement(statementId: string, redirect?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementLinkResponse, any, {}>>;
12069
12069
  /**
12070
12070
  * Get list of available statements
12071
12071
  * @param {*} [options] Override http request option.
12072
12072
  * @throws {RequiredError}
12073
12073
  * @memberof LoginIdentityApi
12074
12074
  */
12075
- getStatements(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementsResponse, any>>;
12075
+ getStatements(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetStatementsResponse, any, {}>>;
12076
12076
  /**
12077
12077
  * Get a list of accounts for a login identity
12078
12078
  * @param {*} [options] Override http request option.
12079
12079
  * @throws {RequiredError}
12080
12080
  * @memberof LoginIdentityApi
12081
12081
  */
12082
- listAccounts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsResponse, any>>;
12082
+ listAccounts(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListAccountsResponse, any, {}>>;
12083
12083
  /**
12084
12084
  * Get a list of card details for a login identity
12085
12085
  * @param {*} [options] Override http request option.
12086
12086
  * @throws {RequiredError}
12087
12087
  * @memberof LoginIdentityApi
12088
12088
  */
12089
- listCardDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCardsDetailsResponse, any>>;
12089
+ listCardDetails(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListCardsDetailsResponse, any, {}>>;
12090
12090
  /**
12091
12091
  * Get a list of transactions for a particular account. The transactions are returned in sorted order, with the most recent one appearing first.
12092
12092
  * @param {string} accountId The account id (ULID, example - 01EP4A1MZDHKETZFRPF0K62S6S)
@@ -12097,7 +12097,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12097
12097
  * @throws {RequiredError}
12098
12098
  * @memberof LoginIdentityApi
12099
12099
  */
12100
- listTransactionsByAccountId(accountId: string, offset?: number, limit?: number, enrichments?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse, any>>;
12100
+ listTransactionsByAccountId(accountId: string, offset?: number, limit?: number, enrichments?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse, any, {}>>;
12101
12101
  /**
12102
12102
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
12103
12103
  * @param {number} [offset] default is 0
@@ -12107,7 +12107,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12107
12107
  * @throws {RequiredError}
12108
12108
  * @memberof LoginIdentityApi
12109
12109
  */
12110
- listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichments?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse, any>>;
12110
+ listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichments?: boolean, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse, any, {}>>;
12111
12111
  /**
12112
12112
  * Create a refresh job for a login identity
12113
12113
  * @param {RefreshLoginIdentityRequest} [refreshLoginIdentityReq]
@@ -12115,7 +12115,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
12115
12115
  * @throws {RequiredError}
12116
12116
  * @memberof LoginIdentityApi
12117
12117
  */
12118
- refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshTokenResponse, any>>;
12118
+ refreshLoginIdentity(refreshLoginIdentityReq?: RefreshLoginIdentityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshTokenResponse, any, {}>>;
12119
12119
  }
12120
12120
  /**
12121
12121
  * @export
@@ -12292,7 +12292,7 @@ export declare class PublicApi extends BaseAPI implements PublicApiInterface {
12292
12292
  * @throws {RequiredError}
12293
12293
  * @memberof PublicApi
12294
12294
  */
12295
- authCallback(state: string, code?: string, error?: string, errorDescription?: string, errorDetails?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RedirectUriResponse, any>>;
12295
+ authCallback(state: string, code?: string, error?: string, errorDescription?: string, errorDetails?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RedirectUriResponse, any, {}>>;
12296
12296
  /**
12297
12297
  * generate an access_token
12298
12298
  * @param {TokenRequest} [tokenRequest] token request
@@ -12300,19 +12300,19 @@ export declare class PublicApi extends BaseAPI implements PublicApiInterface {
12300
12300
  * @throws {RequiredError}
12301
12301
  * @memberof PublicApi
12302
12302
  */
12303
- generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TokenResponse, any>>;
12303
+ generateCustomerAccessToken(tokenRequest?: TokenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TokenResponse, any, {}>>;
12304
12304
  /**
12305
12305
  * get jwks
12306
12306
  * @param {*} [options] Override http request option.
12307
12307
  * @throws {RequiredError}
12308
12308
  * @memberof PublicApi
12309
12309
  */
12310
- getCredSubmitJwks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12310
+ getCredSubmitJwks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
12311
12311
  /**
12312
12312
  * get payment jwks
12313
12313
  * @param {*} [options] Override http request option.
12314
12314
  * @throws {RequiredError}
12315
12315
  * @memberof PublicApi
12316
12316
  */
12317
- getPaymentsJwks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetJWKSResponse, any>>;
12317
+ getPaymentsJwks(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetJWKSResponse, any, {}>>;
12318
12318
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.313",
3
+ "version": "0.0.315",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,15 +24,15 @@
24
24
  "test": "mocha --require ts-node/register test/**/*.spec.ts"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.8.2"
27
+ "axios": "1.12.2"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/chai": "^5.2.2",
31
31
  "@types/mocha": "^10.0.10",
32
32
  "@types/node": "12.11.5 - 12.20.42",
33
33
  "axios-mock-adapter": "^1.21.2",
34
- "chai": "^6.0.1",
35
- "mocha": "^11.7.2",
34
+ "chai": "^6.2.0",
35
+ "mocha": "^11.7.4",
36
36
  "ts-node": "^10.9.2",
37
37
  "typescript": "^4.0 || ^5.0"
38
38
  },