@finverse/sdk-typescript 0.0.372 → 0.0.374
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/README.md +378 -212
- package/dist/api.d.ts +18 -261
- package/dist/api.js +0 -490
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4349,6 +4349,12 @@ export interface LinkTokenRequest {
|
|
|
4349
4349
|
* @memberof LinkTokenRequest
|
|
4350
4350
|
*/
|
|
4351
4351
|
user_configs?: LinkTokenUserConfigs;
|
|
4352
|
+
/**
|
|
4353
|
+
* Limit historical data retrieval to this date. ISO format (YYYY-MM-DD)
|
|
4354
|
+
* @type {string}
|
|
4355
|
+
* @memberof LinkTokenRequest
|
|
4356
|
+
*/
|
|
4357
|
+
history_date_limit?: string;
|
|
4352
4358
|
}
|
|
4353
4359
|
export declare const LinkTokenRequestUiModeEnum: {
|
|
4354
4360
|
readonly Iframe: "iframe";
|
|
@@ -8019,6 +8025,12 @@ export interface Principal {
|
|
|
8019
8025
|
* @memberof Principal
|
|
8020
8026
|
*/
|
|
8021
8027
|
currency?: string;
|
|
8028
|
+
/**
|
|
8029
|
+
* Limit historical data retrieval to this date (YYYY-MM-DD)
|
|
8030
|
+
* @type {string}
|
|
8031
|
+
* @memberof Principal
|
|
8032
|
+
*/
|
|
8033
|
+
history_date_limit?: string;
|
|
8022
8034
|
/**
|
|
8023
8035
|
*
|
|
8024
8036
|
* @type {string}
|
|
@@ -8454,6 +8466,12 @@ export interface RefreshLoginIdentityLinkCustomizations {
|
|
|
8454
8466
|
* @memberof RefreshLoginIdentityLinkCustomizations
|
|
8455
8467
|
*/
|
|
8456
8468
|
state?: string;
|
|
8469
|
+
/**
|
|
8470
|
+
* Limit historical data retrieval to this date. ISO format (YYYY-MM-DD)
|
|
8471
|
+
* @type {string}
|
|
8472
|
+
* @memberof RefreshLoginIdentityLinkCustomizations
|
|
8473
|
+
*/
|
|
8474
|
+
history_date_limit?: string;
|
|
8457
8475
|
}
|
|
8458
8476
|
export declare const RefreshLoginIdentityLinkCustomizationsLanguageEnum: {
|
|
8459
8477
|
readonly En: "en";
|
|
@@ -10480,12 +10498,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10480
10498
|
* @throws {RequiredError}
|
|
10481
10499
|
*/
|
|
10482
10500
|
cancelPayout: (payoutId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10483
|
-
/**
|
|
10484
|
-
* Initiate change payment method from payment link front-end
|
|
10485
|
-
* @param {*} [options] Override http request option.
|
|
10486
|
-
* @throws {RequiredError}
|
|
10487
|
-
*/
|
|
10488
|
-
changePaymentMethodPaymentLink: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10489
10501
|
/**
|
|
10490
10502
|
* Complete a KCP payment
|
|
10491
10503
|
* @param {CompleteKcpPaymentRequest} completeKcpPaymentRequest Parameters from the KCP SDK callback to complete the payment
|
|
@@ -10537,12 +10549,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10537
10549
|
* @throws {RequiredError}
|
|
10538
10550
|
*/
|
|
10539
10551
|
createScheduledPayout: (idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10540
|
-
/**
|
|
10541
|
-
* Demote payment attempt
|
|
10542
|
-
* @param {*} [options] Override http request option.
|
|
10543
|
-
* @throws {RequiredError}
|
|
10544
|
-
*/
|
|
10545
|
-
demotePaymentAttempt: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10546
10552
|
/**
|
|
10547
10553
|
* Download the balance statement for the ledger (CSV)
|
|
10548
10554
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -10578,18 +10584,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10578
10584
|
* @throws {RequiredError}
|
|
10579
10585
|
*/
|
|
10580
10586
|
getPaymentMethod: (paymentMethodId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10581
|
-
/**
|
|
10582
|
-
* Get payment method in payment link flow
|
|
10583
|
-
* @param {*} [options] Override http request option.
|
|
10584
|
-
* @throws {RequiredError}
|
|
10585
|
-
*/
|
|
10586
|
-
getPaymentMethodPaymentLink: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10587
|
-
/**
|
|
10588
|
-
* Get payment (if exists) on the payment link for front-end
|
|
10589
|
-
* @param {*} [options] Override http request option.
|
|
10590
|
-
* @throws {RequiredError}
|
|
10591
|
-
*/
|
|
10592
|
-
getPaymentPaymentLink: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10593
10587
|
/**
|
|
10594
10588
|
* Get payout by payout_id
|
|
10595
10589
|
* @param {string} payoutId payout id
|
|
@@ -10597,18 +10591,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10597
10591
|
* @throws {RequiredError}
|
|
10598
10592
|
*/
|
|
10599
10593
|
getPayoutById: (payoutId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10600
|
-
/**
|
|
10601
|
-
* Get sender payment user in payment link flow
|
|
10602
|
-
* @param {*} [options] Override http request option.
|
|
10603
|
-
* @throws {RequiredError}
|
|
10604
|
-
*/
|
|
10605
|
-
getSenderPaymentUser: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10606
|
-
/**
|
|
10607
|
-
* List available payment methods
|
|
10608
|
-
* @param {*} [options] Override http request option.
|
|
10609
|
-
* @throws {RequiredError}
|
|
10610
|
-
*/
|
|
10611
|
-
listAvailablePaymentMethodsPaymentLink: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10612
10594
|
/**
|
|
10613
10595
|
* List mandates details
|
|
10614
10596
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -10692,12 +10674,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10692
10674
|
* @throws {RequiredError}
|
|
10693
10675
|
*/
|
|
10694
10676
|
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<RequestArgs>;
|
|
10695
|
-
/**
|
|
10696
|
-
* Refresh payment attempt from payment link front-end
|
|
10697
|
-
* @param {*} [options] Override http request option.
|
|
10698
|
-
* @throws {RequiredError}
|
|
10699
|
-
*/
|
|
10700
|
-
refreshPaymentAttempt: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10701
10677
|
/**
|
|
10702
10678
|
* Select a payment method for payment link
|
|
10703
10679
|
* @param {SelectPaymentMethodRequest} selectPaymentMethodRequest request body for selecting a payment method
|
|
@@ -10705,13 +10681,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10705
10681
|
* @throws {RequiredError}
|
|
10706
10682
|
*/
|
|
10707
10683
|
selectPaymentMethodPaymentLink: (selectPaymentMethodRequest: SelectPaymentMethodRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10708
|
-
/**
|
|
10709
|
-
* Set autopay consent for payment user
|
|
10710
|
-
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
10711
|
-
* @param {*} [options] Override http request option.
|
|
10712
|
-
* @throws {RequiredError}
|
|
10713
|
-
*/
|
|
10714
|
-
setAutopayConsent: (setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10715
10684
|
/**
|
|
10716
10685
|
* Update a payment user
|
|
10717
10686
|
* @param {string} paymentUserId
|
|
@@ -10740,12 +10709,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10740
10709
|
* @throws {RequiredError}
|
|
10741
10710
|
*/
|
|
10742
10711
|
cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
10743
|
-
/**
|
|
10744
|
-
* Initiate change payment method from payment link front-end
|
|
10745
|
-
* @param {*} [options] Override http request option.
|
|
10746
|
-
* @throws {RequiredError}
|
|
10747
|
-
*/
|
|
10748
|
-
changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ChangePaymentMethodFvLinkResponse>>;
|
|
10749
10712
|
/**
|
|
10750
10713
|
* Complete a KCP payment
|
|
10751
10714
|
* @param {CompleteKcpPaymentRequest} completeKcpPaymentRequest Parameters from the KCP SDK callback to complete the payment
|
|
@@ -10797,12 +10760,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10797
10760
|
* @throws {RequiredError}
|
|
10798
10761
|
*/
|
|
10799
10762
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
10800
|
-
/**
|
|
10801
|
-
* Demote payment attempt
|
|
10802
|
-
* @param {*} [options] Override http request option.
|
|
10803
|
-
* @throws {RequiredError}
|
|
10804
|
-
*/
|
|
10805
|
-
demotePaymentAttempt(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10806
10763
|
/**
|
|
10807
10764
|
* Download the balance statement for the ledger (CSV)
|
|
10808
10765
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -10838,18 +10795,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10838
10795
|
* @throws {RequiredError}
|
|
10839
10796
|
*/
|
|
10840
10797
|
getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentMethodResponse>>;
|
|
10841
|
-
/**
|
|
10842
|
-
* Get payment method in payment link flow
|
|
10843
|
-
* @param {*} [options] Override http request option.
|
|
10844
|
-
* @throws {RequiredError}
|
|
10845
|
-
*/
|
|
10846
|
-
getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentMethodFvLinkResponse>>;
|
|
10847
|
-
/**
|
|
10848
|
-
* Get payment (if exists) on the payment link for front-end
|
|
10849
|
-
* @param {*} [options] Override http request option.
|
|
10850
|
-
* @throws {RequiredError}
|
|
10851
|
-
*/
|
|
10852
|
-
getPaymentPaymentLink(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentFvLinkResponse>>;
|
|
10853
10798
|
/**
|
|
10854
10799
|
* Get payout by payout_id
|
|
10855
10800
|
* @param {string} payoutId payout id
|
|
@@ -10857,18 +10802,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10857
10802
|
* @throws {RequiredError}
|
|
10858
10803
|
*/
|
|
10859
10804
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
10860
|
-
/**
|
|
10861
|
-
* Get sender payment user in payment link flow
|
|
10862
|
-
* @param {*} [options] Override http request option.
|
|
10863
|
-
* @throws {RequiredError}
|
|
10864
|
-
*/
|
|
10865
|
-
getSenderPaymentUser(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPaymentUserResponse>>;
|
|
10866
|
-
/**
|
|
10867
|
-
* List available payment methods
|
|
10868
|
-
* @param {*} [options] Override http request option.
|
|
10869
|
-
* @throws {RequiredError}
|
|
10870
|
-
*/
|
|
10871
|
-
listAvailablePaymentMethodsPaymentLink(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AvailablePaymentMethodsFvLinkResponse>>;
|
|
10872
10805
|
/**
|
|
10873
10806
|
* List mandates details
|
|
10874
10807
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -10952,12 +10885,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10952
10885
|
* @throws {RequiredError}
|
|
10953
10886
|
*/
|
|
10954
10887
|
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<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPayoutsResponse>>;
|
|
10955
|
-
/**
|
|
10956
|
-
* Refresh payment attempt from payment link front-end
|
|
10957
|
-
* @param {*} [options] Override http request option.
|
|
10958
|
-
* @throws {RequiredError}
|
|
10959
|
-
*/
|
|
10960
|
-
refreshPaymentAttempt(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RefreshPaymentAttemptResponse>>;
|
|
10961
10888
|
/**
|
|
10962
10889
|
* Select a payment method for payment link
|
|
10963
10890
|
* @param {SelectPaymentMethodRequest} selectPaymentMethodRequest request body for selecting a payment method
|
|
@@ -10965,13 +10892,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10965
10892
|
* @throws {RequiredError}
|
|
10966
10893
|
*/
|
|
10967
10894
|
selectPaymentMethodPaymentLink(selectPaymentMethodRequest: SelectPaymentMethodRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SelectPaymentMethodResponse>>;
|
|
10968
|
-
/**
|
|
10969
|
-
* Set autopay consent for payment user
|
|
10970
|
-
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
10971
|
-
* @param {*} [options] Override http request option.
|
|
10972
|
-
* @throws {RequiredError}
|
|
10973
|
-
*/
|
|
10974
|
-
setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
10975
10895
|
/**
|
|
10976
10896
|
* Update a payment user
|
|
10977
10897
|
* @param {string} paymentUserId
|
|
@@ -11000,12 +10920,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11000
10920
|
* @throws {RequiredError}
|
|
11001
10921
|
*/
|
|
11002
10922
|
cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11003
|
-
/**
|
|
11004
|
-
* Initiate change payment method from payment link front-end
|
|
11005
|
-
* @param {*} [options] Override http request option.
|
|
11006
|
-
* @throws {RequiredError}
|
|
11007
|
-
*/
|
|
11008
|
-
changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<ChangePaymentMethodFvLinkResponse>;
|
|
11009
10923
|
/**
|
|
11010
10924
|
* Complete a KCP payment
|
|
11011
10925
|
* @param {CompleteKcpPaymentRequest} completeKcpPaymentRequest Parameters from the KCP SDK callback to complete the payment
|
|
@@ -11057,12 +10971,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11057
10971
|
* @throws {RequiredError}
|
|
11058
10972
|
*/
|
|
11059
10973
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11060
|
-
/**
|
|
11061
|
-
* Demote payment attempt
|
|
11062
|
-
* @param {*} [options] Override http request option.
|
|
11063
|
-
* @throws {RequiredError}
|
|
11064
|
-
*/
|
|
11065
|
-
demotePaymentAttempt(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11066
10974
|
/**
|
|
11067
10975
|
* Download the balance statement for the ledger (CSV)
|
|
11068
10976
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11098,18 +11006,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11098
11006
|
* @throws {RequiredError}
|
|
11099
11007
|
*/
|
|
11100
11008
|
getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): AxiosPromise<PaymentMethodResponse>;
|
|
11101
|
-
/**
|
|
11102
|
-
* Get payment method in payment link flow
|
|
11103
|
-
* @param {*} [options] Override http request option.
|
|
11104
|
-
* @throws {RequiredError}
|
|
11105
|
-
*/
|
|
11106
|
-
getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<PaymentMethodFvLinkResponse>;
|
|
11107
|
-
/**
|
|
11108
|
-
* Get payment (if exists) on the payment link for front-end
|
|
11109
|
-
* @param {*} [options] Override http request option.
|
|
11110
|
-
* @throws {RequiredError}
|
|
11111
|
-
*/
|
|
11112
|
-
getPaymentPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<PaymentFvLinkResponse>;
|
|
11113
11009
|
/**
|
|
11114
11010
|
* Get payout by payout_id
|
|
11115
11011
|
* @param {string} payoutId payout id
|
|
@@ -11117,18 +11013,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11117
11013
|
* @throws {RequiredError}
|
|
11118
11014
|
*/
|
|
11119
11015
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11120
|
-
/**
|
|
11121
|
-
* Get sender payment user in payment link flow
|
|
11122
|
-
* @param {*} [options] Override http request option.
|
|
11123
|
-
* @throws {RequiredError}
|
|
11124
|
-
*/
|
|
11125
|
-
getSenderPaymentUser(options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentUserResponse>;
|
|
11126
|
-
/**
|
|
11127
|
-
* List available payment methods
|
|
11128
|
-
* @param {*} [options] Override http request option.
|
|
11129
|
-
* @throws {RequiredError}
|
|
11130
|
-
*/
|
|
11131
|
-
listAvailablePaymentMethodsPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<AvailablePaymentMethodsFvLinkResponse>;
|
|
11132
11016
|
/**
|
|
11133
11017
|
* List mandates details
|
|
11134
11018
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11212,12 +11096,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11212
11096
|
* @throws {RequiredError}
|
|
11213
11097
|
*/
|
|
11214
11098
|
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): AxiosPromise<ListPayoutsResponse>;
|
|
11215
|
-
/**
|
|
11216
|
-
* Refresh payment attempt from payment link front-end
|
|
11217
|
-
* @param {*} [options] Override http request option.
|
|
11218
|
-
* @throws {RequiredError}
|
|
11219
|
-
*/
|
|
11220
|
-
refreshPaymentAttempt(options?: RawAxiosRequestConfig): AxiosPromise<RefreshPaymentAttemptResponse>;
|
|
11221
11099
|
/**
|
|
11222
11100
|
* Select a payment method for payment link
|
|
11223
11101
|
* @param {SelectPaymentMethodRequest} selectPaymentMethodRequest request body for selecting a payment method
|
|
@@ -11225,13 +11103,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
11225
11103
|
* @throws {RequiredError}
|
|
11226
11104
|
*/
|
|
11227
11105
|
selectPaymentMethodPaymentLink(selectPaymentMethodRequest: SelectPaymentMethodRequest, options?: RawAxiosRequestConfig): AxiosPromise<SelectPaymentMethodResponse>;
|
|
11228
|
-
/**
|
|
11229
|
-
* Set autopay consent for payment user
|
|
11230
|
-
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
11231
|
-
* @param {*} [options] Override http request option.
|
|
11232
|
-
* @throws {RequiredError}
|
|
11233
|
-
*/
|
|
11234
|
-
setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11235
11106
|
/**
|
|
11236
11107
|
* Update a payment user
|
|
11237
11108
|
* @param {string} paymentUserId
|
|
@@ -11263,13 +11134,6 @@ export interface DefaultApiInterface {
|
|
|
11263
11134
|
* @memberof DefaultApiInterface
|
|
11264
11135
|
*/
|
|
11265
11136
|
cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11266
|
-
/**
|
|
11267
|
-
* Initiate change payment method from payment link front-end
|
|
11268
|
-
* @param {*} [options] Override http request option.
|
|
11269
|
-
* @throws {RequiredError}
|
|
11270
|
-
* @memberof DefaultApiInterface
|
|
11271
|
-
*/
|
|
11272
|
-
changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<ChangePaymentMethodFvLinkResponse>;
|
|
11273
11137
|
/**
|
|
11274
11138
|
* Complete a KCP payment
|
|
11275
11139
|
* @param {CompleteKcpPaymentRequest} completeKcpPaymentRequest Parameters from the KCP SDK callback to complete the payment
|
|
@@ -11328,13 +11192,6 @@ export interface DefaultApiInterface {
|
|
|
11328
11192
|
* @memberof DefaultApiInterface
|
|
11329
11193
|
*/
|
|
11330
11194
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11331
|
-
/**
|
|
11332
|
-
* Demote payment attempt
|
|
11333
|
-
* @param {*} [options] Override http request option.
|
|
11334
|
-
* @throws {RequiredError}
|
|
11335
|
-
* @memberof DefaultApiInterface
|
|
11336
|
-
*/
|
|
11337
|
-
demotePaymentAttempt(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11338
11195
|
/**
|
|
11339
11196
|
* Download the balance statement for the ledger (CSV)
|
|
11340
11197
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11375,20 +11232,6 @@ export interface DefaultApiInterface {
|
|
|
11375
11232
|
* @memberof DefaultApiInterface
|
|
11376
11233
|
*/
|
|
11377
11234
|
getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): AxiosPromise<PaymentMethodResponse>;
|
|
11378
|
-
/**
|
|
11379
|
-
* Get payment method in payment link flow
|
|
11380
|
-
* @param {*} [options] Override http request option.
|
|
11381
|
-
* @throws {RequiredError}
|
|
11382
|
-
* @memberof DefaultApiInterface
|
|
11383
|
-
*/
|
|
11384
|
-
getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<PaymentMethodFvLinkResponse>;
|
|
11385
|
-
/**
|
|
11386
|
-
* Get payment (if exists) on the payment link for front-end
|
|
11387
|
-
* @param {*} [options] Override http request option.
|
|
11388
|
-
* @throws {RequiredError}
|
|
11389
|
-
* @memberof DefaultApiInterface
|
|
11390
|
-
*/
|
|
11391
|
-
getPaymentPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<PaymentFvLinkResponse>;
|
|
11392
11235
|
/**
|
|
11393
11236
|
* Get payout by payout_id
|
|
11394
11237
|
* @param {string} payoutId payout id
|
|
@@ -11397,20 +11240,6 @@ export interface DefaultApiInterface {
|
|
|
11397
11240
|
* @memberof DefaultApiInterface
|
|
11398
11241
|
*/
|
|
11399
11242
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11400
|
-
/**
|
|
11401
|
-
* Get sender payment user in payment link flow
|
|
11402
|
-
* @param {*} [options] Override http request option.
|
|
11403
|
-
* @throws {RequiredError}
|
|
11404
|
-
* @memberof DefaultApiInterface
|
|
11405
|
-
*/
|
|
11406
|
-
getSenderPaymentUser(options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentUserResponse>;
|
|
11407
|
-
/**
|
|
11408
|
-
* List available payment methods
|
|
11409
|
-
* @param {*} [options] Override http request option.
|
|
11410
|
-
* @throws {RequiredError}
|
|
11411
|
-
* @memberof DefaultApiInterface
|
|
11412
|
-
*/
|
|
11413
|
-
listAvailablePaymentMethodsPaymentLink(options?: RawAxiosRequestConfig): AxiosPromise<AvailablePaymentMethodsFvLinkResponse>;
|
|
11414
11243
|
/**
|
|
11415
11244
|
* List mandates details
|
|
11416
11245
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11500,13 +11329,6 @@ export interface DefaultApiInterface {
|
|
|
11500
11329
|
* @memberof DefaultApiInterface
|
|
11501
11330
|
*/
|
|
11502
11331
|
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): AxiosPromise<ListPayoutsResponse>;
|
|
11503
|
-
/**
|
|
11504
|
-
* Refresh payment attempt from payment link front-end
|
|
11505
|
-
* @param {*} [options] Override http request option.
|
|
11506
|
-
* @throws {RequiredError}
|
|
11507
|
-
* @memberof DefaultApiInterface
|
|
11508
|
-
*/
|
|
11509
|
-
refreshPaymentAttempt(options?: RawAxiosRequestConfig): AxiosPromise<RefreshPaymentAttemptResponse>;
|
|
11510
11332
|
/**
|
|
11511
11333
|
* Select a payment method for payment link
|
|
11512
11334
|
* @param {SelectPaymentMethodRequest} selectPaymentMethodRequest request body for selecting a payment method
|
|
@@ -11515,14 +11337,6 @@ export interface DefaultApiInterface {
|
|
|
11515
11337
|
* @memberof DefaultApiInterface
|
|
11516
11338
|
*/
|
|
11517
11339
|
selectPaymentMethodPaymentLink(selectPaymentMethodRequest: SelectPaymentMethodRequest, options?: RawAxiosRequestConfig): AxiosPromise<SelectPaymentMethodResponse>;
|
|
11518
|
-
/**
|
|
11519
|
-
* Set autopay consent for payment user
|
|
11520
|
-
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
11521
|
-
* @param {*} [options] Override http request option.
|
|
11522
|
-
* @throws {RequiredError}
|
|
11523
|
-
* @memberof DefaultApiInterface
|
|
11524
|
-
*/
|
|
11525
|
-
setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
11526
11340
|
/**
|
|
11527
11341
|
* Update a payment user
|
|
11528
11342
|
* @param {string} paymentUserId
|
|
@@ -11556,13 +11370,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11556
11370
|
* @memberof DefaultApi
|
|
11557
11371
|
*/
|
|
11558
11372
|
cancelPayout(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
|
|
11559
|
-
/**
|
|
11560
|
-
* Initiate change payment method from payment link front-end
|
|
11561
|
-
* @param {*} [options] Override http request option.
|
|
11562
|
-
* @throws {RequiredError}
|
|
11563
|
-
* @memberof DefaultApi
|
|
11564
|
-
*/
|
|
11565
|
-
changePaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ChangePaymentMethodFvLinkResponse, any, {}>>;
|
|
11566
11373
|
/**
|
|
11567
11374
|
* Complete a KCP payment
|
|
11568
11375
|
* @param {CompleteKcpPaymentRequest} completeKcpPaymentRequest Parameters from the KCP SDK callback to complete the payment
|
|
@@ -11621,13 +11428,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11621
11428
|
* @memberof DefaultApi
|
|
11622
11429
|
*/
|
|
11623
11430
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
|
|
11624
|
-
/**
|
|
11625
|
-
* Demote payment attempt
|
|
11626
|
-
* @param {*} [options] Override http request option.
|
|
11627
|
-
* @throws {RequiredError}
|
|
11628
|
-
* @memberof DefaultApi
|
|
11629
|
-
*/
|
|
11630
|
-
demotePaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11631
11431
|
/**
|
|
11632
11432
|
* Download the balance statement for the ledger (CSV)
|
|
11633
11433
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11668,20 +11468,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11668
11468
|
* @memberof DefaultApi
|
|
11669
11469
|
*/
|
|
11670
11470
|
getPaymentMethod(paymentMethodId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse, any, {}>>;
|
|
11671
|
-
/**
|
|
11672
|
-
* Get payment method in payment link flow
|
|
11673
|
-
* @param {*} [options] Override http request option.
|
|
11674
|
-
* @throws {RequiredError}
|
|
11675
|
-
* @memberof DefaultApi
|
|
11676
|
-
*/
|
|
11677
|
-
getPaymentMethodPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodFvLinkResponse, any, {}>>;
|
|
11678
|
-
/**
|
|
11679
|
-
* Get payment (if exists) on the payment link for front-end
|
|
11680
|
-
* @param {*} [options] Override http request option.
|
|
11681
|
-
* @throws {RequiredError}
|
|
11682
|
-
* @memberof DefaultApi
|
|
11683
|
-
*/
|
|
11684
|
-
getPaymentPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentFvLinkResponse, any, {}>>;
|
|
11685
11471
|
/**
|
|
11686
11472
|
* Get payout by payout_id
|
|
11687
11473
|
* @param {string} payoutId payout id
|
|
@@ -11690,20 +11476,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11690
11476
|
* @memberof DefaultApi
|
|
11691
11477
|
*/
|
|
11692
11478
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
|
|
11693
|
-
/**
|
|
11694
|
-
* Get sender payment user in payment link flow
|
|
11695
|
-
* @param {*} [options] Override http request option.
|
|
11696
|
-
* @throws {RequiredError}
|
|
11697
|
-
* @memberof DefaultApi
|
|
11698
|
-
*/
|
|
11699
|
-
getSenderPaymentUser(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentUserResponse, any, {}>>;
|
|
11700
|
-
/**
|
|
11701
|
-
* List available payment methods
|
|
11702
|
-
* @param {*} [options] Override http request option.
|
|
11703
|
-
* @throws {RequiredError}
|
|
11704
|
-
* @memberof DefaultApi
|
|
11705
|
-
*/
|
|
11706
|
-
listAvailablePaymentMethodsPaymentLink(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AvailablePaymentMethodsFvLinkResponse, any, {}>>;
|
|
11707
11479
|
/**
|
|
11708
11480
|
* List mandates details
|
|
11709
11481
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11793,13 +11565,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11793
11565
|
* @memberof DefaultApi
|
|
11794
11566
|
*/
|
|
11795
11567
|
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, {}>>;
|
|
11796
|
-
/**
|
|
11797
|
-
* Refresh payment attempt from payment link front-end
|
|
11798
|
-
* @param {*} [options] Override http request option.
|
|
11799
|
-
* @throws {RequiredError}
|
|
11800
|
-
* @memberof DefaultApi
|
|
11801
|
-
*/
|
|
11802
|
-
refreshPaymentAttempt(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RefreshPaymentAttemptResponse, any, {}>>;
|
|
11803
11568
|
/**
|
|
11804
11569
|
* Select a payment method for payment link
|
|
11805
11570
|
* @param {SelectPaymentMethodRequest} selectPaymentMethodRequest request body for selecting a payment method
|
|
@@ -11808,14 +11573,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
11808
11573
|
* @memberof DefaultApi
|
|
11809
11574
|
*/
|
|
11810
11575
|
selectPaymentMethodPaymentLink(selectPaymentMethodRequest: SelectPaymentMethodRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SelectPaymentMethodResponse, any, {}>>;
|
|
11811
|
-
/**
|
|
11812
|
-
* Set autopay consent for payment user
|
|
11813
|
-
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
11814
|
-
* @param {*} [options] Override http request option.
|
|
11815
|
-
* @throws {RequiredError}
|
|
11816
|
-
* @memberof DefaultApi
|
|
11817
|
-
*/
|
|
11818
|
-
setAutopayConsent(setAutopayConsentRequest: SetAutopayConsentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
11819
11576
|
/**
|
|
11820
11577
|
* Update a payment user
|
|
11821
11578
|
* @param {string} paymentUserId
|