@finverse/sdk-typescript 0.0.378 → 0.0.382
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/dist/api.d.ts +707 -432
- package/dist/api.js +415 -232
- package/package.json +2 -2
- package/dist/test/paymentInstruction.spec.d.ts +0 -1
- package/dist/test/paymentInstruction.spec.js +0 -58
- package/dist/test/responses/paymentInstruction.d.ts +0 -3
- package/dist/test/responses/paymentInstruction.js +0 -29
package/dist/api.d.ts
CHANGED
|
@@ -578,6 +578,12 @@ export interface AvailablePaymentMethod {
|
|
|
578
578
|
* @memberof AvailablePaymentMethod
|
|
579
579
|
*/
|
|
580
580
|
payment_method_provider?: string;
|
|
581
|
+
/**
|
|
582
|
+
* Ordered list of payment method brands, e.g. VISA, MASTERCARD, DISCOVER
|
|
583
|
+
* @type {Array<string>}
|
|
584
|
+
* @memberof AvailablePaymentMethod
|
|
585
|
+
*/
|
|
586
|
+
payment_methods_list?: Array<string>;
|
|
581
587
|
}
|
|
582
588
|
/**
|
|
583
589
|
*
|
|
@@ -710,7 +716,7 @@ export interface BalanceHistory {
|
|
|
710
716
|
*/
|
|
711
717
|
date: string;
|
|
712
718
|
/**
|
|
713
|
-
*
|
|
719
|
+
*
|
|
714
720
|
* @type {number}
|
|
715
721
|
* @memberof BalanceHistory
|
|
716
722
|
*/
|
|
@@ -735,6 +741,148 @@ export interface BankTransferDetails {
|
|
|
735
741
|
*/
|
|
736
742
|
transfer_type?: string;
|
|
737
743
|
}
|
|
744
|
+
/**
|
|
745
|
+
*
|
|
746
|
+
* @export
|
|
747
|
+
* @interface BillDetails
|
|
748
|
+
*/
|
|
749
|
+
export interface BillDetails {
|
|
750
|
+
/**
|
|
751
|
+
*
|
|
752
|
+
* @type {number}
|
|
753
|
+
* @memberof BillDetails
|
|
754
|
+
*/
|
|
755
|
+
total_amount_due: number;
|
|
756
|
+
/**
|
|
757
|
+
*
|
|
758
|
+
* @type {string}
|
|
759
|
+
* @memberof BillDetails
|
|
760
|
+
*/
|
|
761
|
+
currency: string;
|
|
762
|
+
/**
|
|
763
|
+
*
|
|
764
|
+
* @type {string}
|
|
765
|
+
* @memberof BillDetails
|
|
766
|
+
*/
|
|
767
|
+
description?: string;
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* @type {string}
|
|
771
|
+
* @memberof BillDetails
|
|
772
|
+
*/
|
|
773
|
+
bill_reference_id: string;
|
|
774
|
+
}
|
|
775
|
+
/**
|
|
776
|
+
*
|
|
777
|
+
* @export
|
|
778
|
+
* @interface BillIntegrationMetadata
|
|
779
|
+
*/
|
|
780
|
+
export interface BillIntegrationMetadata {
|
|
781
|
+
/**
|
|
782
|
+
*
|
|
783
|
+
* @type {string}
|
|
784
|
+
* @memberof BillIntegrationMetadata
|
|
785
|
+
*/
|
|
786
|
+
integration_id: string;
|
|
787
|
+
/**
|
|
788
|
+
*
|
|
789
|
+
* @type {BillRapidstorMetadata}
|
|
790
|
+
* @memberof BillIntegrationMetadata
|
|
791
|
+
*/
|
|
792
|
+
rapidstor_metadata?: BillRapidstorMetadata;
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
*
|
|
796
|
+
* @export
|
|
797
|
+
* @interface BillRapidstorMetadata
|
|
798
|
+
*/
|
|
799
|
+
export interface BillRapidstorMetadata {
|
|
800
|
+
/**
|
|
801
|
+
*
|
|
802
|
+
* @type {string}
|
|
803
|
+
* @memberof BillRapidstorMetadata
|
|
804
|
+
*/
|
|
805
|
+
corp_code: string;
|
|
806
|
+
/**
|
|
807
|
+
*
|
|
808
|
+
* @type {string}
|
|
809
|
+
* @memberof BillRapidstorMetadata
|
|
810
|
+
*/
|
|
811
|
+
s_location_code: string;
|
|
812
|
+
/**
|
|
813
|
+
*
|
|
814
|
+
* @type {string}
|
|
815
|
+
* @memberof BillRapidstorMetadata
|
|
816
|
+
*/
|
|
817
|
+
tenant_id: string;
|
|
818
|
+
/**
|
|
819
|
+
*
|
|
820
|
+
* @type {number}
|
|
821
|
+
* @memberof BillRapidstorMetadata
|
|
822
|
+
*/
|
|
823
|
+
i_anniv_days: number;
|
|
824
|
+
/**
|
|
825
|
+
*
|
|
826
|
+
* @type {string}
|
|
827
|
+
* @memberof BillRapidstorMetadata
|
|
828
|
+
*/
|
|
829
|
+
tenant_default_currency: string;
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @type {string}
|
|
833
|
+
* @memberof BillRapidstorMetadata
|
|
834
|
+
*/
|
|
835
|
+
s_unit_name: string;
|
|
836
|
+
/**
|
|
837
|
+
*
|
|
838
|
+
* @type {string}
|
|
839
|
+
* @memberof BillRapidstorMetadata
|
|
840
|
+
*/
|
|
841
|
+
account_token: string;
|
|
842
|
+
/**
|
|
843
|
+
*
|
|
844
|
+
* @type {string}
|
|
845
|
+
* @memberof BillRapidstorMetadata
|
|
846
|
+
*/
|
|
847
|
+
ledger_id: string;
|
|
848
|
+
/**
|
|
849
|
+
*
|
|
850
|
+
* @type {string}
|
|
851
|
+
* @memberof BillRapidstorMetadata
|
|
852
|
+
*/
|
|
853
|
+
unit_id: string;
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @type {string}
|
|
857
|
+
* @memberof BillRapidstorMetadata
|
|
858
|
+
*/
|
|
859
|
+
i_lease_num: string;
|
|
860
|
+
/**
|
|
861
|
+
*
|
|
862
|
+
* @type {string}
|
|
863
|
+
* @memberof BillRapidstorMetadata
|
|
864
|
+
*/
|
|
865
|
+
d_sched_out: string;
|
|
866
|
+
/**
|
|
867
|
+
*
|
|
868
|
+
* @type {string}
|
|
869
|
+
* @memberof BillRapidstorMetadata
|
|
870
|
+
*/
|
|
871
|
+
unit_type_id: string;
|
|
872
|
+
}
|
|
873
|
+
/**
|
|
874
|
+
*
|
|
875
|
+
* @export
|
|
876
|
+
* @interface BillSenderDetails
|
|
877
|
+
*/
|
|
878
|
+
export interface BillSenderDetails {
|
|
879
|
+
/**
|
|
880
|
+
*
|
|
881
|
+
* @type {string}
|
|
882
|
+
* @memberof BillSenderDetails
|
|
883
|
+
*/
|
|
884
|
+
name: string;
|
|
885
|
+
}
|
|
738
886
|
/**
|
|
739
887
|
*
|
|
740
888
|
* @export
|
|
@@ -933,7 +1081,7 @@ export interface CardFvLinkResponse {
|
|
|
933
1081
|
}
|
|
934
1082
|
export declare const CardFvLinkResponseStatusEnum: {
|
|
935
1083
|
readonly Unknown: "UNKNOWN";
|
|
936
|
-
readonly
|
|
1084
|
+
readonly Created: "CREATED";
|
|
937
1085
|
readonly Succeeded: "SUCCEEDED";
|
|
938
1086
|
readonly Cancelled: "CANCELLED";
|
|
939
1087
|
readonly Failed: "FAILED";
|
|
@@ -1601,19 +1749,6 @@ export declare const CreatePaymentAccountRequestAccountTypeEnum: {
|
|
|
1601
1749
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
1602
1750
|
};
|
|
1603
1751
|
export type CreatePaymentAccountRequestAccountTypeEnum = (typeof CreatePaymentAccountRequestAccountTypeEnum)[keyof typeof CreatePaymentAccountRequestAccountTypeEnum];
|
|
1604
|
-
/**
|
|
1605
|
-
*
|
|
1606
|
-
* @export
|
|
1607
|
-
* @interface CreatePaymentInstructionResponse
|
|
1608
|
-
*/
|
|
1609
|
-
export interface CreatePaymentInstructionResponse {
|
|
1610
|
-
/**
|
|
1611
|
-
*
|
|
1612
|
-
* @type {string}
|
|
1613
|
-
* @memberof CreatePaymentInstructionResponse
|
|
1614
|
-
*/
|
|
1615
|
-
payment_instruction_id?: string;
|
|
1616
|
-
}
|
|
1617
1752
|
/**
|
|
1618
1753
|
*
|
|
1619
1754
|
* @export
|
|
@@ -1874,45 +2009,6 @@ export declare const CreateRecipientAccountAccountTypeEnum: {
|
|
|
1874
2009
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
1875
2010
|
};
|
|
1876
2011
|
export type CreateRecipientAccountAccountTypeEnum = (typeof CreateRecipientAccountAccountTypeEnum)[keyof typeof CreateRecipientAccountAccountTypeEnum];
|
|
1877
|
-
/**
|
|
1878
|
-
*
|
|
1879
|
-
* @export
|
|
1880
|
-
* @interface CreateScheduledPayoutRequest
|
|
1881
|
-
*/
|
|
1882
|
-
export interface CreateScheduledPayoutRequest {
|
|
1883
|
-
/**
|
|
1884
|
-
* Amount to be paid, in currency\'s smallest unit or “minor unit”, as defined in ISO 4217. For example, HKD 100.01 is represented as amount = 10001 (minor unit = cents). For currencies without minor units (e.g. VND, JPY), the amount is represented as is, without modification. For example, VND 15101 is represented as amount = 15101.
|
|
1885
|
-
* @type {number}
|
|
1886
|
-
* @memberof CreateScheduledPayoutRequest
|
|
1887
|
-
*/
|
|
1888
|
-
amount: number;
|
|
1889
|
-
/**
|
|
1890
|
-
* The currency code as defined in ISO 4217.
|
|
1891
|
-
* @type {string}
|
|
1892
|
-
* @memberof CreateScheduledPayoutRequest
|
|
1893
|
-
*/
|
|
1894
|
-
currency: string;
|
|
1895
|
-
/**
|
|
1896
|
-
*
|
|
1897
|
-
* @type {PayoutDetails}
|
|
1898
|
-
* @memberof CreateScheduledPayoutRequest
|
|
1899
|
-
*/
|
|
1900
|
-
payment_details: PayoutDetails;
|
|
1901
|
-
/**
|
|
1902
|
-
*
|
|
1903
|
-
* @type {MandateRecipientRequest}
|
|
1904
|
-
* @memberof CreateScheduledPayoutRequest
|
|
1905
|
-
*/
|
|
1906
|
-
recipient_account: MandateRecipientRequest;
|
|
1907
|
-
/**
|
|
1908
|
-
*
|
|
1909
|
-
* @type {{ [key: string]: string; }}
|
|
1910
|
-
* @memberof CreateScheduledPayoutRequest
|
|
1911
|
-
*/
|
|
1912
|
-
metadata?: {
|
|
1913
|
-
[key: string]: string;
|
|
1914
|
-
};
|
|
1915
|
-
}
|
|
1916
2012
|
/**
|
|
1917
2013
|
*
|
|
1918
2014
|
* @export
|
|
@@ -1938,89 +2034,6 @@ export interface CurrencyAmount {
|
|
|
1938
2034
|
*/
|
|
1939
2035
|
raw?: string;
|
|
1940
2036
|
}
|
|
1941
|
-
/**
|
|
1942
|
-
*
|
|
1943
|
-
* @export
|
|
1944
|
-
* @interface CustomerPaymentInstruction
|
|
1945
|
-
*/
|
|
1946
|
-
export interface CustomerPaymentInstruction {
|
|
1947
|
-
/**
|
|
1948
|
-
* A id of the user of this payment, need to equal to userId when creating link
|
|
1949
|
-
* @type {string}
|
|
1950
|
-
* @memberof CustomerPaymentInstruction
|
|
1951
|
-
*/
|
|
1952
|
-
user_id: string;
|
|
1953
|
-
/**
|
|
1954
|
-
* Type of payment is being created, please check Documentation on which payment type is supported in each institution
|
|
1955
|
-
* @type {string}
|
|
1956
|
-
* @memberof CustomerPaymentInstruction
|
|
1957
|
-
*/
|
|
1958
|
-
type: CustomerPaymentInstructionTypeEnum;
|
|
1959
|
-
/**
|
|
1960
|
-
* The recipient name
|
|
1961
|
-
* @type {string}
|
|
1962
|
-
* @memberof CustomerPaymentInstruction
|
|
1963
|
-
*/
|
|
1964
|
-
recipient_name?: string;
|
|
1965
|
-
/**
|
|
1966
|
-
* The recipient account Id
|
|
1967
|
-
* @type {string}
|
|
1968
|
-
* @memberof CustomerPaymentInstruction
|
|
1969
|
-
*/
|
|
1970
|
-
recipient_account_id?: string;
|
|
1971
|
-
/**
|
|
1972
|
-
* The sender name
|
|
1973
|
-
* @type {string}
|
|
1974
|
-
* @memberof CustomerPaymentInstruction
|
|
1975
|
-
*/
|
|
1976
|
-
sender_name?: string;
|
|
1977
|
-
/**
|
|
1978
|
-
* The sender account Id
|
|
1979
|
-
* @type {string}
|
|
1980
|
-
* @memberof CustomerPaymentInstruction
|
|
1981
|
-
*/
|
|
1982
|
-
sender_account_id?: string;
|
|
1983
|
-
/**
|
|
1984
|
-
* When the payment should start
|
|
1985
|
-
* @type {string}
|
|
1986
|
-
* @memberof CustomerPaymentInstruction
|
|
1987
|
-
*/
|
|
1988
|
-
start_date?: string | null;
|
|
1989
|
-
/**
|
|
1990
|
-
* When the payment should stop
|
|
1991
|
-
* @type {string}
|
|
1992
|
-
* @memberof CustomerPaymentInstruction
|
|
1993
|
-
*/
|
|
1994
|
-
end_date?: string | null;
|
|
1995
|
-
/**
|
|
1996
|
-
* The currency for the payment
|
|
1997
|
-
* @type {string}
|
|
1998
|
-
* @memberof CustomerPaymentInstruction
|
|
1999
|
-
*/
|
|
2000
|
-
currency?: string;
|
|
2001
|
-
/**
|
|
2002
|
-
* The payment amount
|
|
2003
|
-
* @type {number}
|
|
2004
|
-
* @memberof CustomerPaymentInstruction
|
|
2005
|
-
*/
|
|
2006
|
-
amount?: number;
|
|
2007
|
-
/**
|
|
2008
|
-
* How often the payment should be executed
|
|
2009
|
-
* @type {string}
|
|
2010
|
-
* @memberof CustomerPaymentInstruction
|
|
2011
|
-
*/
|
|
2012
|
-
frequency?: string;
|
|
2013
|
-
/**
|
|
2014
|
-
* Related remarks about this instruction
|
|
2015
|
-
* @type {string}
|
|
2016
|
-
* @memberof CustomerPaymentInstruction
|
|
2017
|
-
*/
|
|
2018
|
-
remarks?: string;
|
|
2019
|
-
}
|
|
2020
|
-
export declare const CustomerPaymentInstructionTypeEnum: {
|
|
2021
|
-
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
|
2022
|
-
};
|
|
2023
|
-
export type CustomerPaymentInstructionTypeEnum = (typeof CustomerPaymentInstructionTypeEnum)[keyof typeof CustomerPaymentInstructionTypeEnum];
|
|
2024
2037
|
/**
|
|
2025
2038
|
*
|
|
2026
2039
|
* @export
|
|
@@ -2323,6 +2336,119 @@ export interface ErrorResponse {
|
|
|
2323
2336
|
*/
|
|
2324
2337
|
request_id?: string;
|
|
2325
2338
|
}
|
|
2339
|
+
/**
|
|
2340
|
+
*
|
|
2341
|
+
* @export
|
|
2342
|
+
* @interface FVBill
|
|
2343
|
+
*/
|
|
2344
|
+
export interface FVBill {
|
|
2345
|
+
/**
|
|
2346
|
+
*
|
|
2347
|
+
* @type {string}
|
|
2348
|
+
* @memberof FVBill
|
|
2349
|
+
*/
|
|
2350
|
+
bill_id: string;
|
|
2351
|
+
/**
|
|
2352
|
+
*
|
|
2353
|
+
* @type {string}
|
|
2354
|
+
* @memberof FVBill
|
|
2355
|
+
*/
|
|
2356
|
+
external_bill_id: string;
|
|
2357
|
+
/**
|
|
2358
|
+
*
|
|
2359
|
+
* @type {string}
|
|
2360
|
+
* @memberof FVBill
|
|
2361
|
+
*/
|
|
2362
|
+
user_id: string;
|
|
2363
|
+
/**
|
|
2364
|
+
*
|
|
2365
|
+
* @type {string}
|
|
2366
|
+
* @memberof FVBill
|
|
2367
|
+
*/
|
|
2368
|
+
external_user_id: string;
|
|
2369
|
+
/**
|
|
2370
|
+
*
|
|
2371
|
+
* @type {string}
|
|
2372
|
+
* @memberof FVBill
|
|
2373
|
+
*/
|
|
2374
|
+
customer_app_id: string;
|
|
2375
|
+
/**
|
|
2376
|
+
*
|
|
2377
|
+
* @type {string}
|
|
2378
|
+
* @memberof FVBill
|
|
2379
|
+
*/
|
|
2380
|
+
bill_date: string | null;
|
|
2381
|
+
/**
|
|
2382
|
+
*
|
|
2383
|
+
* @type {string}
|
|
2384
|
+
* @memberof FVBill
|
|
2385
|
+
*/
|
|
2386
|
+
due_date: string | null;
|
|
2387
|
+
/**
|
|
2388
|
+
*
|
|
2389
|
+
* @type {BillIntegrationMetadata}
|
|
2390
|
+
* @memberof FVBill
|
|
2391
|
+
*/
|
|
2392
|
+
integration_metadata: BillIntegrationMetadata;
|
|
2393
|
+
/**
|
|
2394
|
+
*
|
|
2395
|
+
* @type {BillDetails}
|
|
2396
|
+
* @memberof FVBill
|
|
2397
|
+
*/
|
|
2398
|
+
details: BillDetails;
|
|
2399
|
+
/**
|
|
2400
|
+
*
|
|
2401
|
+
* @type {{ [key: string]: string; }}
|
|
2402
|
+
* @memberof FVBill
|
|
2403
|
+
*/
|
|
2404
|
+
metadata?: {
|
|
2405
|
+
[key: string]: string;
|
|
2406
|
+
};
|
|
2407
|
+
/**
|
|
2408
|
+
*
|
|
2409
|
+
* @type {string}
|
|
2410
|
+
* @memberof FVBill
|
|
2411
|
+
*/
|
|
2412
|
+
status: FVBillStatusEnum;
|
|
2413
|
+
/**
|
|
2414
|
+
*
|
|
2415
|
+
* @type {string}
|
|
2416
|
+
* @memberof FVBill
|
|
2417
|
+
*/
|
|
2418
|
+
integration_id: string;
|
|
2419
|
+
/**
|
|
2420
|
+
*
|
|
2421
|
+
* @type {BillSenderDetails}
|
|
2422
|
+
* @memberof FVBill
|
|
2423
|
+
*/
|
|
2424
|
+
sender_details: BillSenderDetails;
|
|
2425
|
+
/**
|
|
2426
|
+
*
|
|
2427
|
+
* @type {string}
|
|
2428
|
+
* @memberof FVBill
|
|
2429
|
+
*/
|
|
2430
|
+
created_at: string | null;
|
|
2431
|
+
/**
|
|
2432
|
+
*
|
|
2433
|
+
* @type {string}
|
|
2434
|
+
* @memberof FVBill
|
|
2435
|
+
*/
|
|
2436
|
+
updated_at: string | null;
|
|
2437
|
+
/**
|
|
2438
|
+
*
|
|
2439
|
+
* @type {boolean}
|
|
2440
|
+
* @memberof FVBill
|
|
2441
|
+
*/
|
|
2442
|
+
is_finverse_autopay_eligible: boolean;
|
|
2443
|
+
}
|
|
2444
|
+
export declare const FVBillStatusEnum: {
|
|
2445
|
+
readonly Unknown: "UNKNOWN";
|
|
2446
|
+
readonly Unpaid: "UNPAID";
|
|
2447
|
+
readonly Paid: "PAID";
|
|
2448
|
+
readonly Cancelled: "CANCELLED";
|
|
2449
|
+
readonly Failed: "FAILED";
|
|
2450
|
+
};
|
|
2451
|
+
export type FVBillStatusEnum = (typeof FVBillStatusEnum)[keyof typeof FVBillStatusEnum];
|
|
2326
2452
|
/**
|
|
2327
2453
|
*
|
|
2328
2454
|
* @export
|
|
@@ -2374,7 +2500,7 @@ export interface FVCard {
|
|
|
2374
2500
|
}
|
|
2375
2501
|
export declare const FVCardStatusEnum: {
|
|
2376
2502
|
readonly Unknown: "UNKNOWN";
|
|
2377
|
-
readonly
|
|
2503
|
+
readonly Created: "CREATED";
|
|
2378
2504
|
readonly Succeeded: "SUCCEEDED";
|
|
2379
2505
|
readonly Cancelled: "CANCELLED";
|
|
2380
2506
|
readonly Failed: "FAILED";
|
|
@@ -2856,6 +2982,125 @@ export declare const GetBalanceHistoryResponseSourceEnum: {
|
|
|
2856
2982
|
readonly Computed: "COMPUTED";
|
|
2857
2983
|
};
|
|
2858
2984
|
export type GetBalanceHistoryResponseSourceEnum = (typeof GetBalanceHistoryResponseSourceEnum)[keyof typeof GetBalanceHistoryResponseSourceEnum];
|
|
2985
|
+
/**
|
|
2986
|
+
*
|
|
2987
|
+
* @export
|
|
2988
|
+
* @interface GetBillResponse
|
|
2989
|
+
*/
|
|
2990
|
+
export interface GetBillResponse {
|
|
2991
|
+
/**
|
|
2992
|
+
*
|
|
2993
|
+
* @type {string}
|
|
2994
|
+
* @memberof GetBillResponse
|
|
2995
|
+
*/
|
|
2996
|
+
bill_id: string;
|
|
2997
|
+
/**
|
|
2998
|
+
*
|
|
2999
|
+
* @type {string}
|
|
3000
|
+
* @memberof GetBillResponse
|
|
3001
|
+
*/
|
|
3002
|
+
external_bill_id: string;
|
|
3003
|
+
/**
|
|
3004
|
+
*
|
|
3005
|
+
* @type {string}
|
|
3006
|
+
* @memberof GetBillResponse
|
|
3007
|
+
*/
|
|
3008
|
+
user_id: string;
|
|
3009
|
+
/**
|
|
3010
|
+
*
|
|
3011
|
+
* @type {string}
|
|
3012
|
+
* @memberof GetBillResponse
|
|
3013
|
+
*/
|
|
3014
|
+
external_user_id: string;
|
|
3015
|
+
/**
|
|
3016
|
+
*
|
|
3017
|
+
* @type {string}
|
|
3018
|
+
* @memberof GetBillResponse
|
|
3019
|
+
*/
|
|
3020
|
+
customer_app_id: string;
|
|
3021
|
+
/**
|
|
3022
|
+
*
|
|
3023
|
+
* @type {string}
|
|
3024
|
+
* @memberof GetBillResponse
|
|
3025
|
+
*/
|
|
3026
|
+
bill_date: string | null;
|
|
3027
|
+
/**
|
|
3028
|
+
*
|
|
3029
|
+
* @type {string}
|
|
3030
|
+
* @memberof GetBillResponse
|
|
3031
|
+
*/
|
|
3032
|
+
due_date: string | null;
|
|
3033
|
+
/**
|
|
3034
|
+
*
|
|
3035
|
+
* @type {BillIntegrationMetadata}
|
|
3036
|
+
* @memberof GetBillResponse
|
|
3037
|
+
*/
|
|
3038
|
+
integration_metadata: BillIntegrationMetadata;
|
|
3039
|
+
/**
|
|
3040
|
+
*
|
|
3041
|
+
* @type {BillDetails}
|
|
3042
|
+
* @memberof GetBillResponse
|
|
3043
|
+
*/
|
|
3044
|
+
details: BillDetails;
|
|
3045
|
+
/**
|
|
3046
|
+
*
|
|
3047
|
+
* @type {{ [key: string]: string; }}
|
|
3048
|
+
* @memberof GetBillResponse
|
|
3049
|
+
*/
|
|
3050
|
+
metadata?: {
|
|
3051
|
+
[key: string]: string;
|
|
3052
|
+
};
|
|
3053
|
+
/**
|
|
3054
|
+
*
|
|
3055
|
+
* @type {string}
|
|
3056
|
+
* @memberof GetBillResponse
|
|
3057
|
+
*/
|
|
3058
|
+
status: GetBillResponseStatusEnum;
|
|
3059
|
+
/**
|
|
3060
|
+
*
|
|
3061
|
+
* @type {string}
|
|
3062
|
+
* @memberof GetBillResponse
|
|
3063
|
+
*/
|
|
3064
|
+
integration_id: string;
|
|
3065
|
+
/**
|
|
3066
|
+
*
|
|
3067
|
+
* @type {BillSenderDetails}
|
|
3068
|
+
* @memberof GetBillResponse
|
|
3069
|
+
*/
|
|
3070
|
+
sender_details: BillSenderDetails;
|
|
3071
|
+
/**
|
|
3072
|
+
*
|
|
3073
|
+
* @type {string}
|
|
3074
|
+
* @memberof GetBillResponse
|
|
3075
|
+
*/
|
|
3076
|
+
created_at: string | null;
|
|
3077
|
+
/**
|
|
3078
|
+
*
|
|
3079
|
+
* @type {string}
|
|
3080
|
+
* @memberof GetBillResponse
|
|
3081
|
+
*/
|
|
3082
|
+
updated_at: string | null;
|
|
3083
|
+
/**
|
|
3084
|
+
*
|
|
3085
|
+
* @type {boolean}
|
|
3086
|
+
* @memberof GetBillResponse
|
|
3087
|
+
*/
|
|
3088
|
+
is_finverse_autopay_eligible: boolean;
|
|
3089
|
+
/**
|
|
3090
|
+
*
|
|
3091
|
+
* @type {Array<PaymentResponse>}
|
|
3092
|
+
* @memberof GetBillResponse
|
|
3093
|
+
*/
|
|
3094
|
+
payments: Array<PaymentResponse>;
|
|
3095
|
+
}
|
|
3096
|
+
export declare const GetBillResponseStatusEnum: {
|
|
3097
|
+
readonly Unknown: "UNKNOWN";
|
|
3098
|
+
readonly Unpaid: "UNPAID";
|
|
3099
|
+
readonly Paid: "PAID";
|
|
3100
|
+
readonly Cancelled: "CANCELLED";
|
|
3101
|
+
readonly Failed: "FAILED";
|
|
3102
|
+
};
|
|
3103
|
+
export type GetBillResponseStatusEnum = (typeof GetBillResponseStatusEnum)[keyof typeof GetBillResponseStatusEnum];
|
|
2859
3104
|
/**
|
|
2860
3105
|
*
|
|
2861
3106
|
* @export
|
|
@@ -3223,19 +3468,6 @@ export declare const GetMandateSenderUserTypeEnum: {
|
|
|
3223
3468
|
readonly Business: "BUSINESS";
|
|
3224
3469
|
};
|
|
3225
3470
|
export type GetMandateSenderUserTypeEnum = (typeof GetMandateSenderUserTypeEnum)[keyof typeof GetMandateSenderUserTypeEnum];
|
|
3226
|
-
/**
|
|
3227
|
-
*
|
|
3228
|
-
* @export
|
|
3229
|
-
* @interface GetPaymentInstructionsResponse
|
|
3230
|
-
*/
|
|
3231
|
-
export interface GetPaymentInstructionsResponse {
|
|
3232
|
-
/**
|
|
3233
|
-
*
|
|
3234
|
-
* @type {PaymentInstruction}
|
|
3235
|
-
* @memberof GetPaymentInstructionsResponse
|
|
3236
|
-
*/
|
|
3237
|
-
payment_instruction?: PaymentInstruction;
|
|
3238
|
-
}
|
|
3239
3471
|
/**
|
|
3240
3472
|
*
|
|
3241
3473
|
* @export
|
|
@@ -3648,7 +3880,7 @@ export interface IdentityPhoneNumber {
|
|
|
3648
3880
|
*/
|
|
3649
3881
|
export interface IncomeEstimate {
|
|
3650
3882
|
/**
|
|
3651
|
-
*
|
|
3883
|
+
*
|
|
3652
3884
|
* @type {number}
|
|
3653
3885
|
* @memberof IncomeEstimate
|
|
3654
3886
|
*/
|
|
@@ -4457,6 +4689,25 @@ export interface ListAccountsResponse {
|
|
|
4457
4689
|
*/
|
|
4458
4690
|
institution?: InstitutionShort;
|
|
4459
4691
|
}
|
|
4692
|
+
/**
|
|
4693
|
+
*
|
|
4694
|
+
* @export
|
|
4695
|
+
* @interface ListBillsResponse
|
|
4696
|
+
*/
|
|
4697
|
+
export interface ListBillsResponse {
|
|
4698
|
+
/**
|
|
4699
|
+
*
|
|
4700
|
+
* @type {Array<FVBill>}
|
|
4701
|
+
* @memberof ListBillsResponse
|
|
4702
|
+
*/
|
|
4703
|
+
bills: Array<FVBill>;
|
|
4704
|
+
/**
|
|
4705
|
+
* Whether additional bills exist beyond this page for the same query.
|
|
4706
|
+
* @type {boolean}
|
|
4707
|
+
* @memberof ListBillsResponse
|
|
4708
|
+
*/
|
|
4709
|
+
has_more: boolean;
|
|
4710
|
+
}
|
|
4460
4711
|
/**
|
|
4461
4712
|
*
|
|
4462
4713
|
* @export
|
|
@@ -6120,175 +6371,50 @@ export declare const PaymentFvLinkResponseStatusEnum: {
|
|
|
6120
6371
|
readonly Processing: "PROCESSING";
|
|
6121
6372
|
readonly Submitted: "SUBMITTED";
|
|
6122
6373
|
readonly Executed: "EXECUTED";
|
|
6123
|
-
readonly Failed: "FAILED";
|
|
6124
|
-
readonly Revoked: "REVOKED";
|
|
6125
|
-
readonly Cancelled: "CANCELLED";
|
|
6126
|
-
readonly Created: "CREATED";
|
|
6127
|
-
};
|
|
6128
|
-
export type PaymentFvLinkResponseStatusEnum = (typeof PaymentFvLinkResponseStatusEnum)[keyof typeof PaymentFvLinkResponseStatusEnum];
|
|
6129
|
-
export declare const PaymentFvLinkResponseTypeEnum: {
|
|
6130
|
-
readonly Mandate: "MANDATE";
|
|
6131
|
-
readonly Single: "SINGLE";
|
|
6132
|
-
readonly Card: "CARD";
|
|
6133
|
-
readonly Manual: "MANUAL";
|
|
6134
|
-
readonly Wallet: "WALLET";
|
|
6135
|
-
};
|
|
6136
|
-
export type PaymentFvLinkResponseTypeEnum = (typeof PaymentFvLinkResponseTypeEnum)[keyof typeof PaymentFvLinkResponseTypeEnum];
|
|
6137
|
-
/**
|
|
6138
|
-
*
|
|
6139
|
-
* @export
|
|
6140
|
-
* @interface PaymentInfo
|
|
6141
|
-
*/
|
|
6142
|
-
export interface PaymentInfo {
|
|
6143
|
-
/**
|
|
6144
|
-
*
|
|
6145
|
-
* @type {Array<string>}
|
|
6146
|
-
* @memberof PaymentInfo
|
|
6147
|
-
*/
|
|
6148
|
-
currencies_supported?: Array<string>;
|
|
6149
|
-
/**
|
|
6150
|
-
*
|
|
6151
|
-
* @type {Array<string>}
|
|
6152
|
-
* @memberof PaymentInfo
|
|
6153
|
-
*/
|
|
6154
|
-
payments_supported: Array<PaymentInfoPaymentsSupportedEnum>;
|
|
6155
|
-
/**
|
|
6156
|
-
*
|
|
6157
|
-
* @type {OtherInfo}
|
|
6158
|
-
* @memberof PaymentInfo
|
|
6159
|
-
*/
|
|
6160
|
-
other_info?: OtherInfo;
|
|
6161
|
-
}
|
|
6162
|
-
export declare const PaymentInfoPaymentsSupportedEnum: {
|
|
6163
|
-
readonly Mandate: "MANDATE";
|
|
6164
|
-
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
|
6165
|
-
};
|
|
6166
|
-
export type PaymentInfoPaymentsSupportedEnum = (typeof PaymentInfoPaymentsSupportedEnum)[keyof typeof PaymentInfoPaymentsSupportedEnum];
|
|
6167
|
-
/**
|
|
6168
|
-
*
|
|
6169
|
-
* @export
|
|
6170
|
-
* @interface PaymentInstruction
|
|
6171
|
-
*/
|
|
6172
|
-
export interface PaymentInstruction {
|
|
6173
|
-
/**
|
|
6174
|
-
* An id of the this payment
|
|
6175
|
-
* @type {string}
|
|
6176
|
-
* @memberof PaymentInstruction
|
|
6177
|
-
*/
|
|
6178
|
-
payment_instruction_id?: string;
|
|
6179
|
-
/**
|
|
6180
|
-
* An id of the user of this payment, need to equal to userId when creating link
|
|
6181
|
-
* @type {string}
|
|
6182
|
-
* @memberof PaymentInstruction
|
|
6183
|
-
*/
|
|
6184
|
-
user_id?: string;
|
|
6185
|
-
/**
|
|
6186
|
-
* An id that links this payment to a specific Login Identity
|
|
6187
|
-
* @type {string}
|
|
6188
|
-
* @memberof PaymentInstruction
|
|
6189
|
-
*/
|
|
6190
|
-
login_identity_id?: string;
|
|
6191
|
-
/**
|
|
6192
|
-
* Type of payment that was created, please check Documentation on which payment type is supported in each institution
|
|
6193
|
-
* @type {string}
|
|
6194
|
-
* @memberof PaymentInstruction
|
|
6195
|
-
*/
|
|
6196
|
-
type?: PaymentInstructionTypeEnum;
|
|
6197
|
-
/**
|
|
6198
|
-
* The recipient name
|
|
6199
|
-
* @type {string}
|
|
6200
|
-
* @memberof PaymentInstruction
|
|
6201
|
-
*/
|
|
6202
|
-
recipient_name?: string;
|
|
6203
|
-
/**
|
|
6204
|
-
* The recipient account Id
|
|
6205
|
-
* @type {string}
|
|
6206
|
-
* @memberof PaymentInstruction
|
|
6207
|
-
*/
|
|
6208
|
-
recipient_account_id?: string;
|
|
6209
|
-
/**
|
|
6210
|
-
* The sender name
|
|
6211
|
-
* @type {string}
|
|
6212
|
-
* @memberof PaymentInstruction
|
|
6213
|
-
*/
|
|
6214
|
-
sender_name?: string;
|
|
6215
|
-
/**
|
|
6216
|
-
*
|
|
6217
|
-
* @type {PaymentAccount}
|
|
6218
|
-
* @memberof PaymentInstruction
|
|
6219
|
-
*/
|
|
6220
|
-
sender_account?: PaymentAccount;
|
|
6221
|
-
/**
|
|
6222
|
-
* The sender account Id
|
|
6223
|
-
* @type {string}
|
|
6224
|
-
* @memberof PaymentInstruction
|
|
6225
|
-
*/
|
|
6226
|
-
sender_account_id?: string;
|
|
6227
|
-
/**
|
|
6228
|
-
* When the payment should start
|
|
6229
|
-
* @type {string}
|
|
6230
|
-
* @memberof PaymentInstruction
|
|
6231
|
-
*/
|
|
6232
|
-
start_date?: string | null;
|
|
6233
|
-
/**
|
|
6234
|
-
* When the payment should stop
|
|
6235
|
-
* @type {string}
|
|
6236
|
-
* @memberof PaymentInstruction
|
|
6237
|
-
*/
|
|
6238
|
-
end_date?: string | null;
|
|
6239
|
-
/**
|
|
6240
|
-
* The currency for the payment
|
|
6241
|
-
* @type {string}
|
|
6242
|
-
* @memberof PaymentInstruction
|
|
6243
|
-
*/
|
|
6244
|
-
currency?: string;
|
|
6245
|
-
/**
|
|
6246
|
-
* The payment amount
|
|
6247
|
-
* @type {number}
|
|
6248
|
-
* @memberof PaymentInstruction
|
|
6249
|
-
*/
|
|
6250
|
-
amount?: number;
|
|
6251
|
-
/**
|
|
6252
|
-
* How often the payment should be executed
|
|
6253
|
-
* @type {string}
|
|
6254
|
-
* @memberof PaymentInstruction
|
|
6255
|
-
*/
|
|
6256
|
-
frequency?: string;
|
|
6257
|
-
/**
|
|
6258
|
-
* Related remarks about this instruction
|
|
6259
|
-
* @type {string}
|
|
6260
|
-
* @memberof PaymentInstruction
|
|
6261
|
-
*/
|
|
6262
|
-
remarks?: string;
|
|
6263
|
-
/**
|
|
6264
|
-
* Status of the payment
|
|
6265
|
-
* @type {string}
|
|
6266
|
-
* @memberof PaymentInstruction
|
|
6267
|
-
*/
|
|
6268
|
-
status?: string;
|
|
6374
|
+
readonly Failed: "FAILED";
|
|
6375
|
+
readonly Revoked: "REVOKED";
|
|
6376
|
+
readonly Cancelled: "CANCELLED";
|
|
6377
|
+
readonly Created: "CREATED";
|
|
6378
|
+
};
|
|
6379
|
+
export type PaymentFvLinkResponseStatusEnum = (typeof PaymentFvLinkResponseStatusEnum)[keyof typeof PaymentFvLinkResponseStatusEnum];
|
|
6380
|
+
export declare const PaymentFvLinkResponseTypeEnum: {
|
|
6381
|
+
readonly Mandate: "MANDATE";
|
|
6382
|
+
readonly Single: "SINGLE";
|
|
6383
|
+
readonly Card: "CARD";
|
|
6384
|
+
readonly Manual: "MANUAL";
|
|
6385
|
+
readonly Wallet: "WALLET";
|
|
6386
|
+
};
|
|
6387
|
+
export type PaymentFvLinkResponseTypeEnum = (typeof PaymentFvLinkResponseTypeEnum)[keyof typeof PaymentFvLinkResponseTypeEnum];
|
|
6388
|
+
/**
|
|
6389
|
+
*
|
|
6390
|
+
* @export
|
|
6391
|
+
* @interface PaymentInfo
|
|
6392
|
+
*/
|
|
6393
|
+
export interface PaymentInfo {
|
|
6269
6394
|
/**
|
|
6270
|
-
*
|
|
6271
|
-
* @type {string}
|
|
6272
|
-
* @memberof
|
|
6395
|
+
*
|
|
6396
|
+
* @type {Array<string>}
|
|
6397
|
+
* @memberof PaymentInfo
|
|
6273
6398
|
*/
|
|
6274
|
-
|
|
6399
|
+
currencies_supported?: Array<string>;
|
|
6275
6400
|
/**
|
|
6276
6401
|
*
|
|
6277
|
-
* @type {string}
|
|
6278
|
-
* @memberof
|
|
6402
|
+
* @type {Array<string>}
|
|
6403
|
+
* @memberof PaymentInfo
|
|
6279
6404
|
*/
|
|
6280
|
-
|
|
6405
|
+
payments_supported: Array<PaymentInfoPaymentsSupportedEnum>;
|
|
6281
6406
|
/**
|
|
6282
|
-
*
|
|
6283
|
-
* @type {
|
|
6284
|
-
* @memberof
|
|
6407
|
+
*
|
|
6408
|
+
* @type {OtherInfo}
|
|
6409
|
+
* @memberof PaymentInfo
|
|
6285
6410
|
*/
|
|
6286
|
-
|
|
6411
|
+
other_info?: OtherInfo;
|
|
6287
6412
|
}
|
|
6288
|
-
export declare const
|
|
6413
|
+
export declare const PaymentInfoPaymentsSupportedEnum: {
|
|
6414
|
+
readonly Mandate: "MANDATE";
|
|
6289
6415
|
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
|
6290
6416
|
};
|
|
6291
|
-
export type
|
|
6417
|
+
export type PaymentInfoPaymentsSupportedEnum = (typeof PaymentInfoPaymentsSupportedEnum)[keyof typeof PaymentInfoPaymentsSupportedEnum];
|
|
6292
6418
|
/**
|
|
6293
6419
|
*
|
|
6294
6420
|
* @export
|
|
@@ -9451,13 +9577,6 @@ export interface UserMessage {
|
|
|
9451
9577
|
* @export
|
|
9452
9578
|
*/
|
|
9453
9579
|
export declare const CustomerApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
9454
|
-
/**
|
|
9455
|
-
* Create a new payment instruction to be used when linking to perform new payment
|
|
9456
|
-
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
9457
|
-
* @param {*} [options] Override http request option.
|
|
9458
|
-
* @throws {RequiredError}
|
|
9459
|
-
*/
|
|
9460
|
-
createPaymentInstruction: (paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9461
9580
|
/**
|
|
9462
9581
|
* Get a specific institution by institutionId
|
|
9463
9582
|
* @param {string} institutionId The institution id
|
|
@@ -9471,14 +9590,6 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9471
9590
|
* @throws {RequiredError}
|
|
9472
9591
|
*/
|
|
9473
9592
|
getInstitutionsForCustomer: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9474
|
-
/**
|
|
9475
|
-
* [DEPRECATED] Get payment instructions by payment_instruction_id
|
|
9476
|
-
* @param {string} paymentInstructionId The id of a payment instruction
|
|
9477
|
-
* @param {*} [options] Override http request option.
|
|
9478
|
-
* @deprecated
|
|
9479
|
-
* @throws {RequiredError}
|
|
9480
|
-
*/
|
|
9481
|
-
getPaymentInstruction: (paymentInstructionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9482
9593
|
/**
|
|
9483
9594
|
* Get a list of institutions
|
|
9484
9595
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -9502,13 +9613,6 @@ export declare const CustomerApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9502
9613
|
* @export
|
|
9503
9614
|
*/
|
|
9504
9615
|
export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
9505
|
-
/**
|
|
9506
|
-
* Create a new payment instruction to be used when linking to perform new payment
|
|
9507
|
-
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
9508
|
-
* @param {*} [options] Override http request option.
|
|
9509
|
-
* @throws {RequiredError}
|
|
9510
|
-
*/
|
|
9511
|
-
createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentInstructionResponse>>;
|
|
9512
9616
|
/**
|
|
9513
9617
|
* Get a specific institution by institutionId
|
|
9514
9618
|
* @param {string} institutionId The institution id
|
|
@@ -9522,14 +9626,6 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
9522
9626
|
* @throws {RequiredError}
|
|
9523
9627
|
*/
|
|
9524
9628
|
getInstitutionsForCustomer(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Institution>>>;
|
|
9525
|
-
/**
|
|
9526
|
-
* [DEPRECATED] Get payment instructions by payment_instruction_id
|
|
9527
|
-
* @param {string} paymentInstructionId The id of a payment instruction
|
|
9528
|
-
* @param {*} [options] Override http request option.
|
|
9529
|
-
* @deprecated
|
|
9530
|
-
* @throws {RequiredError}
|
|
9531
|
-
*/
|
|
9532
|
-
getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetPaymentInstructionsResponse>>;
|
|
9533
9629
|
/**
|
|
9534
9630
|
* Get a list of institutions
|
|
9535
9631
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -9553,13 +9649,6 @@ export declare const CustomerApiFp: (configuration?: Configuration) => {
|
|
|
9553
9649
|
* @export
|
|
9554
9650
|
*/
|
|
9555
9651
|
export declare const CustomerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
9556
|
-
/**
|
|
9557
|
-
* Create a new payment instruction to be used when linking to perform new payment
|
|
9558
|
-
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
9559
|
-
* @param {*} [options] Override http request option.
|
|
9560
|
-
* @throws {RequiredError}
|
|
9561
|
-
*/
|
|
9562
|
-
createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentInstructionResponse>;
|
|
9563
9652
|
/**
|
|
9564
9653
|
* Get a specific institution by institutionId
|
|
9565
9654
|
* @param {string} institutionId The institution id
|
|
@@ -9573,14 +9662,6 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
9573
9662
|
* @throws {RequiredError}
|
|
9574
9663
|
*/
|
|
9575
9664
|
getInstitutionsForCustomer(options?: RawAxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
9576
|
-
/**
|
|
9577
|
-
* [DEPRECATED] Get payment instructions by payment_instruction_id
|
|
9578
|
-
* @param {string} paymentInstructionId The id of a payment instruction
|
|
9579
|
-
* @param {*} [options] Override http request option.
|
|
9580
|
-
* @deprecated
|
|
9581
|
-
* @throws {RequiredError}
|
|
9582
|
-
*/
|
|
9583
|
-
getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentInstructionsResponse>;
|
|
9584
9665
|
/**
|
|
9585
9666
|
* Get a list of institutions
|
|
9586
9667
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -9605,14 +9686,6 @@ export declare const CustomerApiFactory: (configuration?: Configuration, basePat
|
|
|
9605
9686
|
* @interface CustomerApi
|
|
9606
9687
|
*/
|
|
9607
9688
|
export interface CustomerApiInterface {
|
|
9608
|
-
/**
|
|
9609
|
-
* Create a new payment instruction to be used when linking to perform new payment
|
|
9610
|
-
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
9611
|
-
* @param {*} [options] Override http request option.
|
|
9612
|
-
* @throws {RequiredError}
|
|
9613
|
-
* @memberof CustomerApiInterface
|
|
9614
|
-
*/
|
|
9615
|
-
createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentInstructionResponse>;
|
|
9616
9689
|
/**
|
|
9617
9690
|
* Get a specific institution by institutionId
|
|
9618
9691
|
* @param {string} institutionId The institution id
|
|
@@ -9628,15 +9701,6 @@ export interface CustomerApiInterface {
|
|
|
9628
9701
|
* @memberof CustomerApiInterface
|
|
9629
9702
|
*/
|
|
9630
9703
|
getInstitutionsForCustomer(options?: RawAxiosRequestConfig): AxiosPromise<Array<Institution>>;
|
|
9631
|
-
/**
|
|
9632
|
-
* [DEPRECATED] Get payment instructions by payment_instruction_id
|
|
9633
|
-
* @param {string} paymentInstructionId The id of a payment instruction
|
|
9634
|
-
* @param {*} [options] Override http request option.
|
|
9635
|
-
* @deprecated
|
|
9636
|
-
* @throws {RequiredError}
|
|
9637
|
-
* @memberof CustomerApiInterface
|
|
9638
|
-
*/
|
|
9639
|
-
getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): AxiosPromise<GetPaymentInstructionsResponse>;
|
|
9640
9704
|
/**
|
|
9641
9705
|
* Get a list of institutions
|
|
9642
9706
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -9664,14 +9728,6 @@ export interface CustomerApiInterface {
|
|
|
9664
9728
|
* @extends {BaseAPI}
|
|
9665
9729
|
*/
|
|
9666
9730
|
export declare class CustomerApi extends BaseAPI implements CustomerApiInterface {
|
|
9667
|
-
/**
|
|
9668
|
-
* Create a new payment instruction to be used when linking to perform new payment
|
|
9669
|
-
* @param {CustomerPaymentInstruction} paymentInstruction Request body for starting a new Link
|
|
9670
|
-
* @param {*} [options] Override http request option.
|
|
9671
|
-
* @throws {RequiredError}
|
|
9672
|
-
* @memberof CustomerApi
|
|
9673
|
-
*/
|
|
9674
|
-
createPaymentInstruction(paymentInstruction: CustomerPaymentInstruction, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentInstructionResponse, any, {}>>;
|
|
9675
9731
|
/**
|
|
9676
9732
|
* Get a specific institution by institutionId
|
|
9677
9733
|
* @param {string} institutionId The institution id
|
|
@@ -9687,15 +9743,6 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
|
|
|
9687
9743
|
* @memberof CustomerApi
|
|
9688
9744
|
*/
|
|
9689
9745
|
getInstitutionsForCustomer(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Institution[], any, {}>>;
|
|
9690
|
-
/**
|
|
9691
|
-
* [DEPRECATED] Get payment instructions by payment_instruction_id
|
|
9692
|
-
* @param {string} paymentInstructionId The id of a payment instruction
|
|
9693
|
-
* @param {*} [options] Override http request option.
|
|
9694
|
-
* @deprecated
|
|
9695
|
-
* @throws {RequiredError}
|
|
9696
|
-
* @memberof CustomerApi
|
|
9697
|
-
*/
|
|
9698
|
-
getPaymentInstruction(paymentInstructionId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetPaymentInstructionsResponse, any, {}>>;
|
|
9699
9746
|
/**
|
|
9700
9747
|
* Get a list of institutions
|
|
9701
9748
|
* @param {string} [country] (Deprecated) The country the institution belongs to
|
|
@@ -10776,14 +10823,6 @@ export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10776
10823
|
* @throws {RequiredError}
|
|
10777
10824
|
*/
|
|
10778
10825
|
createPaymentUser: (createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10779
|
-
/**
|
|
10780
|
-
* Create a scheduled payout
|
|
10781
|
-
* @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.
|
|
10782
|
-
* @param {CreateScheduledPayoutRequest} createScheduledPayoutRequest Request body containing information to create scheduled payout
|
|
10783
|
-
* @param {*} [options] Override http request option.
|
|
10784
|
-
* @throws {RequiredError}
|
|
10785
|
-
*/
|
|
10786
|
-
createScheduledPayout: (idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10787
10826
|
/**
|
|
10788
10827
|
* delete payment account
|
|
10789
10828
|
* @param {string} paymentAccountId The payment account id
|
|
@@ -10800,6 +10839,19 @@ export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10800
10839
|
* @throws {RequiredError}
|
|
10801
10840
|
*/
|
|
10802
10841
|
downloadBalanceStatement: (dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10842
|
+
/**
|
|
10843
|
+
* Get available Adyen payment methods for Advanced card setup (proxy to Adyen /paymentMethods)
|
|
10844
|
+
* @param {*} [options] Override http request option.
|
|
10845
|
+
* @throws {RequiredError}
|
|
10846
|
+
*/
|
|
10847
|
+
getAdyenCardSetupPaymentMethods: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10848
|
+
/**
|
|
10849
|
+
* Get a bill by ID
|
|
10850
|
+
* @param {string} billId
|
|
10851
|
+
* @param {*} [options] Override http request option.
|
|
10852
|
+
* @throws {RequiredError}
|
|
10853
|
+
*/
|
|
10854
|
+
getBill: (billId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10803
10855
|
/**
|
|
10804
10856
|
* Get Mandate details by mandate_id
|
|
10805
10857
|
* @param {string} mandateId mandate id
|
|
@@ -10855,6 +10907,20 @@ export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10855
10907
|
* @throws {RequiredError}
|
|
10856
10908
|
*/
|
|
10857
10909
|
getPayoutById: (payoutId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10910
|
+
/**
|
|
10911
|
+
* List bills
|
|
10912
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
10913
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
10914
|
+
* @param {Array<ListBillsStatusesEnum>} [statuses] Bill statuses to filter for, comma separated
|
|
10915
|
+
* @param {string} [userId]
|
|
10916
|
+
* @param {string} [externalUserId]
|
|
10917
|
+
* @param {Array<string>} [currencies]
|
|
10918
|
+
* @param {number} [offset] default is 0
|
|
10919
|
+
* @param {number} [limit] default is 500, max is 1000
|
|
10920
|
+
* @param {*} [options] Override http request option.
|
|
10921
|
+
* @throws {RequiredError}
|
|
10922
|
+
*/
|
|
10923
|
+
listBills: (dateFrom?: string, dateTo?: string, statuses?: Array<ListBillsStatusesEnum>, userId?: string, externalUserId?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10858
10924
|
/**
|
|
10859
10925
|
* List mandates details
|
|
10860
10926
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -10962,6 +11028,24 @@ export declare const PaymentApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10962
11028
|
* @throws {RequiredError}
|
|
10963
11029
|
*/
|
|
10964
11030
|
setMandateInstitution: (updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11031
|
+
/**
|
|
11032
|
+
* Submit Adyen card setup payment (proxy to Adyen /payments with Drop-in state.data from onSubmit)
|
|
11033
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentRequest Full Drop-in state.data from onSubmit
|
|
11034
|
+
* @param {*} [options] Override http request option.
|
|
11035
|
+
* @throws {RequiredError}
|
|
11036
|
+
*/
|
|
11037
|
+
submitAdyenCardSetupPayment: (submitAdyenCardSetupPaymentRequest: {
|
|
11038
|
+
[key: string]: any;
|
|
11039
|
+
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
11040
|
+
/**
|
|
11041
|
+
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
11042
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
11043
|
+
* @param {*} [options] Override http request option.
|
|
11044
|
+
* @throws {RequiredError}
|
|
11045
|
+
*/
|
|
11046
|
+
submitAdyenCardSetupPaymentDetails: (submitAdyenCardSetupPaymentDetailsRequest: {
|
|
11047
|
+
[key: string]: any;
|
|
11048
|
+
}, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
10965
11049
|
/**
|
|
10966
11050
|
* Submit authorization checklist items
|
|
10967
11051
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -11089,14 +11173,6 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11089
11173
|
* @throws {RequiredError}
|
|
11090
11174
|
*/
|
|
11091
11175
|
createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentUser>>;
|
|
11092
|
-
/**
|
|
11093
|
-
* Create a scheduled payout
|
|
11094
|
-
* @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.
|
|
11095
|
-
* @param {CreateScheduledPayoutRequest} createScheduledPayoutRequest Request body containing information to create scheduled payout
|
|
11096
|
-
* @param {*} [options] Override http request option.
|
|
11097
|
-
* @throws {RequiredError}
|
|
11098
|
-
*/
|
|
11099
|
-
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
11100
11176
|
/**
|
|
11101
11177
|
* delete payment account
|
|
11102
11178
|
* @param {string} paymentAccountId The payment account id
|
|
@@ -11113,6 +11189,21 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11113
11189
|
* @throws {RequiredError}
|
|
11114
11190
|
*/
|
|
11115
11191
|
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadBalanceStatementResponse>>;
|
|
11192
|
+
/**
|
|
11193
|
+
* Get available Adyen payment methods for Advanced card setup (proxy to Adyen /paymentMethods)
|
|
11194
|
+
* @param {*} [options] Override http request option.
|
|
11195
|
+
* @throws {RequiredError}
|
|
11196
|
+
*/
|
|
11197
|
+
getAdyenCardSetupPaymentMethods(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
11198
|
+
[key: string]: any;
|
|
11199
|
+
}>>;
|
|
11200
|
+
/**
|
|
11201
|
+
* Get a bill by ID
|
|
11202
|
+
* @param {string} billId
|
|
11203
|
+
* @param {*} [options] Override http request option.
|
|
11204
|
+
* @throws {RequiredError}
|
|
11205
|
+
*/
|
|
11206
|
+
getBill(billId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetBillResponse>>;
|
|
11116
11207
|
/**
|
|
11117
11208
|
* Get Mandate details by mandate_id
|
|
11118
11209
|
* @param {string} mandateId mandate id
|
|
@@ -11168,6 +11259,20 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11168
11259
|
* @throws {RequiredError}
|
|
11169
11260
|
*/
|
|
11170
11261
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
11262
|
+
/**
|
|
11263
|
+
* List bills
|
|
11264
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
11265
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
11266
|
+
* @param {Array<ListBillsStatusesEnum>} [statuses] Bill statuses to filter for, comma separated
|
|
11267
|
+
* @param {string} [userId]
|
|
11268
|
+
* @param {string} [externalUserId]
|
|
11269
|
+
* @param {Array<string>} [currencies]
|
|
11270
|
+
* @param {number} [offset] default is 0
|
|
11271
|
+
* @param {number} [limit] default is 500, max is 1000
|
|
11272
|
+
* @param {*} [options] Override http request option.
|
|
11273
|
+
* @throws {RequiredError}
|
|
11274
|
+
*/
|
|
11275
|
+
listBills(dateFrom?: string, dateTo?: string, statuses?: Array<ListBillsStatusesEnum>, userId?: string, externalUserId?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBillsResponse>>;
|
|
11171
11276
|
/**
|
|
11172
11277
|
* List mandates details
|
|
11173
11278
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11275,6 +11380,28 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
11275
11380
|
* @throws {RequiredError}
|
|
11276
11381
|
*/
|
|
11277
11382
|
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SetMandateInstitutionResponse>>;
|
|
11383
|
+
/**
|
|
11384
|
+
* Submit Adyen card setup payment (proxy to Adyen /payments with Drop-in state.data from onSubmit)
|
|
11385
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentRequest Full Drop-in state.data from onSubmit
|
|
11386
|
+
* @param {*} [options] Override http request option.
|
|
11387
|
+
* @throws {RequiredError}
|
|
11388
|
+
*/
|
|
11389
|
+
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
11390
|
+
[key: string]: any;
|
|
11391
|
+
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
11392
|
+
[key: string]: any;
|
|
11393
|
+
}>>;
|
|
11394
|
+
/**
|
|
11395
|
+
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
11396
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
11397
|
+
* @param {*} [options] Override http request option.
|
|
11398
|
+
* @throws {RequiredError}
|
|
11399
|
+
*/
|
|
11400
|
+
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
11401
|
+
[key: string]: any;
|
|
11402
|
+
}, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
|
|
11403
|
+
[key: string]: any;
|
|
11404
|
+
}>>;
|
|
11278
11405
|
/**
|
|
11279
11406
|
* Submit authorization checklist items
|
|
11280
11407
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -11402,14 +11529,6 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11402
11529
|
* @throws {RequiredError}
|
|
11403
11530
|
*/
|
|
11404
11531
|
createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentUser>;
|
|
11405
|
-
/**
|
|
11406
|
-
* Create a scheduled payout
|
|
11407
|
-
* @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.
|
|
11408
|
-
* @param {CreateScheduledPayoutRequest} createScheduledPayoutRequest Request body containing information to create scheduled payout
|
|
11409
|
-
* @param {*} [options] Override http request option.
|
|
11410
|
-
* @throws {RequiredError}
|
|
11411
|
-
*/
|
|
11412
|
-
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11413
11532
|
/**
|
|
11414
11533
|
* delete payment account
|
|
11415
11534
|
* @param {string} paymentAccountId The payment account id
|
|
@@ -11426,6 +11545,21 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11426
11545
|
* @throws {RequiredError}
|
|
11427
11546
|
*/
|
|
11428
11547
|
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
11548
|
+
/**
|
|
11549
|
+
* Get available Adyen payment methods for Advanced card setup (proxy to Adyen /paymentMethods)
|
|
11550
|
+
* @param {*} [options] Override http request option.
|
|
11551
|
+
* @throws {RequiredError}
|
|
11552
|
+
*/
|
|
11553
|
+
getAdyenCardSetupPaymentMethods(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
11554
|
+
[key: string]: any;
|
|
11555
|
+
}>;
|
|
11556
|
+
/**
|
|
11557
|
+
* Get a bill by ID
|
|
11558
|
+
* @param {string} billId
|
|
11559
|
+
* @param {*} [options] Override http request option.
|
|
11560
|
+
* @throws {RequiredError}
|
|
11561
|
+
*/
|
|
11562
|
+
getBill(billId: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBillResponse>;
|
|
11429
11563
|
/**
|
|
11430
11564
|
* Get Mandate details by mandate_id
|
|
11431
11565
|
* @param {string} mandateId mandate id
|
|
@@ -11481,6 +11615,20 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11481
11615
|
* @throws {RequiredError}
|
|
11482
11616
|
*/
|
|
11483
11617
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11618
|
+
/**
|
|
11619
|
+
* List bills
|
|
11620
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
11621
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
11622
|
+
* @param {Array<ListBillsStatusesEnum>} [statuses] Bill statuses to filter for, comma separated
|
|
11623
|
+
* @param {string} [userId]
|
|
11624
|
+
* @param {string} [externalUserId]
|
|
11625
|
+
* @param {Array<string>} [currencies]
|
|
11626
|
+
* @param {number} [offset] default is 0
|
|
11627
|
+
* @param {number} [limit] default is 500, max is 1000
|
|
11628
|
+
* @param {*} [options] Override http request option.
|
|
11629
|
+
* @throws {RequiredError}
|
|
11630
|
+
*/
|
|
11631
|
+
listBills(dateFrom?: string, dateTo?: string, statuses?: Array<ListBillsStatusesEnum>, userId?: string, externalUserId?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<ListBillsResponse>;
|
|
11484
11632
|
/**
|
|
11485
11633
|
* List mandates details
|
|
11486
11634
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11588,6 +11736,28 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
11588
11736
|
* @throws {RequiredError}
|
|
11589
11737
|
*/
|
|
11590
11738
|
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetMandateInstitutionResponse>;
|
|
11739
|
+
/**
|
|
11740
|
+
* Submit Adyen card setup payment (proxy to Adyen /payments with Drop-in state.data from onSubmit)
|
|
11741
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentRequest Full Drop-in state.data from onSubmit
|
|
11742
|
+
* @param {*} [options] Override http request option.
|
|
11743
|
+
* @throws {RequiredError}
|
|
11744
|
+
*/
|
|
11745
|
+
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
11746
|
+
[key: string]: any;
|
|
11747
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
11748
|
+
[key: string]: any;
|
|
11749
|
+
}>;
|
|
11750
|
+
/**
|
|
11751
|
+
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
11752
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
11753
|
+
* @param {*} [options] Override http request option.
|
|
11754
|
+
* @throws {RequiredError}
|
|
11755
|
+
*/
|
|
11756
|
+
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
11757
|
+
[key: string]: any;
|
|
11758
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
11759
|
+
[key: string]: any;
|
|
11760
|
+
}>;
|
|
11591
11761
|
/**
|
|
11592
11762
|
* Submit authorization checklist items
|
|
11593
11763
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -11728,15 +11898,6 @@ export interface PaymentApiInterface {
|
|
|
11728
11898
|
* @memberof PaymentApiInterface
|
|
11729
11899
|
*/
|
|
11730
11900
|
createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentUser>;
|
|
11731
|
-
/**
|
|
11732
|
-
* Create a scheduled payout
|
|
11733
|
-
* @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.
|
|
11734
|
-
* @param {CreateScheduledPayoutRequest} createScheduledPayoutRequest Request body containing information to create scheduled payout
|
|
11735
|
-
* @param {*} [options] Override http request option.
|
|
11736
|
-
* @throws {RequiredError}
|
|
11737
|
-
* @memberof PaymentApiInterface
|
|
11738
|
-
*/
|
|
11739
|
-
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11740
11901
|
/**
|
|
11741
11902
|
* delete payment account
|
|
11742
11903
|
* @param {string} paymentAccountId The payment account id
|
|
@@ -11755,6 +11916,23 @@ export interface PaymentApiInterface {
|
|
|
11755
11916
|
* @memberof PaymentApiInterface
|
|
11756
11917
|
*/
|
|
11757
11918
|
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
11919
|
+
/**
|
|
11920
|
+
* Get available Adyen payment methods for Advanced card setup (proxy to Adyen /paymentMethods)
|
|
11921
|
+
* @param {*} [options] Override http request option.
|
|
11922
|
+
* @throws {RequiredError}
|
|
11923
|
+
* @memberof PaymentApiInterface
|
|
11924
|
+
*/
|
|
11925
|
+
getAdyenCardSetupPaymentMethods(options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
11926
|
+
[key: string]: any;
|
|
11927
|
+
}>;
|
|
11928
|
+
/**
|
|
11929
|
+
* Get a bill by ID
|
|
11930
|
+
* @param {string} billId
|
|
11931
|
+
* @param {*} [options] Override http request option.
|
|
11932
|
+
* @throws {RequiredError}
|
|
11933
|
+
* @memberof PaymentApiInterface
|
|
11934
|
+
*/
|
|
11935
|
+
getBill(billId: string, options?: RawAxiosRequestConfig): AxiosPromise<GetBillResponse>;
|
|
11758
11936
|
/**
|
|
11759
11937
|
* Get Mandate details by mandate_id
|
|
11760
11938
|
* @param {string} mandateId mandate id
|
|
@@ -11818,6 +11996,21 @@ export interface PaymentApiInterface {
|
|
|
11818
11996
|
* @memberof PaymentApiInterface
|
|
11819
11997
|
*/
|
|
11820
11998
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
11999
|
+
/**
|
|
12000
|
+
* List bills
|
|
12001
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
12002
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
12003
|
+
* @param {Array<ListBillsStatusesEnum>} [statuses] Bill statuses to filter for, comma separated
|
|
12004
|
+
* @param {string} [userId]
|
|
12005
|
+
* @param {string} [externalUserId]
|
|
12006
|
+
* @param {Array<string>} [currencies]
|
|
12007
|
+
* @param {number} [offset] default is 0
|
|
12008
|
+
* @param {number} [limit] default is 500, max is 1000
|
|
12009
|
+
* @param {*} [options] Override http request option.
|
|
12010
|
+
* @throws {RequiredError}
|
|
12011
|
+
* @memberof PaymentApiInterface
|
|
12012
|
+
*/
|
|
12013
|
+
listBills(dateFrom?: string, dateTo?: string, statuses?: Array<ListBillsStatusesEnum>, userId?: string, externalUserId?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<ListBillsResponse>;
|
|
11821
12014
|
/**
|
|
11822
12015
|
* List mandates details
|
|
11823
12016
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -11934,6 +12127,30 @@ export interface PaymentApiInterface {
|
|
|
11934
12127
|
* @memberof PaymentApiInterface
|
|
11935
12128
|
*/
|
|
11936
12129
|
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): AxiosPromise<SetMandateInstitutionResponse>;
|
|
12130
|
+
/**
|
|
12131
|
+
* Submit Adyen card setup payment (proxy to Adyen /payments with Drop-in state.data from onSubmit)
|
|
12132
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentRequest Full Drop-in state.data from onSubmit
|
|
12133
|
+
* @param {*} [options] Override http request option.
|
|
12134
|
+
* @throws {RequiredError}
|
|
12135
|
+
* @memberof PaymentApiInterface
|
|
12136
|
+
*/
|
|
12137
|
+
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
12138
|
+
[key: string]: any;
|
|
12139
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
12140
|
+
[key: string]: any;
|
|
12141
|
+
}>;
|
|
12142
|
+
/**
|
|
12143
|
+
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
12144
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
12145
|
+
* @param {*} [options] Override http request option.
|
|
12146
|
+
* @throws {RequiredError}
|
|
12147
|
+
* @memberof PaymentApiInterface
|
|
12148
|
+
*/
|
|
12149
|
+
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
12150
|
+
[key: string]: any;
|
|
12151
|
+
}, options?: RawAxiosRequestConfig): AxiosPromise<{
|
|
12152
|
+
[key: string]: any;
|
|
12153
|
+
}>;
|
|
11937
12154
|
/**
|
|
11938
12155
|
* Submit authorization checklist items
|
|
11939
12156
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -12079,15 +12296,6 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12079
12296
|
* @memberof PaymentApi
|
|
12080
12297
|
*/
|
|
12081
12298
|
createPaymentUser(createPaymentUserRequest: CreatePaymentUserRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentUser, any, {}>>;
|
|
12082
|
-
/**
|
|
12083
|
-
* Create a scheduled payout
|
|
12084
|
-
* @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.
|
|
12085
|
-
* @param {CreateScheduledPayoutRequest} createScheduledPayoutRequest Request body containing information to create scheduled payout
|
|
12086
|
-
* @param {*} [options] Override http request option.
|
|
12087
|
-
* @throws {RequiredError}
|
|
12088
|
-
* @memberof PaymentApi
|
|
12089
|
-
*/
|
|
12090
|
-
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
|
|
12091
12299
|
/**
|
|
12092
12300
|
* delete payment account
|
|
12093
12301
|
* @param {string} paymentAccountId The payment account id
|
|
@@ -12106,6 +12314,23 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12106
12314
|
* @memberof PaymentApi
|
|
12107
12315
|
*/
|
|
12108
12316
|
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DownloadBalanceStatementResponse, any, {}>>;
|
|
12317
|
+
/**
|
|
12318
|
+
* Get available Adyen payment methods for Advanced card setup (proxy to Adyen /paymentMethods)
|
|
12319
|
+
* @param {*} [options] Override http request option.
|
|
12320
|
+
* @throws {RequiredError}
|
|
12321
|
+
* @memberof PaymentApi
|
|
12322
|
+
*/
|
|
12323
|
+
getAdyenCardSetupPaymentMethods(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12324
|
+
[key: string]: any;
|
|
12325
|
+
}, any, {}>>;
|
|
12326
|
+
/**
|
|
12327
|
+
* Get a bill by ID
|
|
12328
|
+
* @param {string} billId
|
|
12329
|
+
* @param {*} [options] Override http request option.
|
|
12330
|
+
* @throws {RequiredError}
|
|
12331
|
+
* @memberof PaymentApi
|
|
12332
|
+
*/
|
|
12333
|
+
getBill(billId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetBillResponse, any, {}>>;
|
|
12109
12334
|
/**
|
|
12110
12335
|
* Get Mandate details by mandate_id
|
|
12111
12336
|
* @param {string} mandateId mandate id
|
|
@@ -12169,6 +12394,21 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12169
12394
|
* @memberof PaymentApi
|
|
12170
12395
|
*/
|
|
12171
12396
|
getPayoutById(payoutId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse, any, {}>>;
|
|
12397
|
+
/**
|
|
12398
|
+
* List bills
|
|
12399
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
12400
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
12401
|
+
* @param {Array<ListBillsStatusesEnum>} [statuses] Bill statuses to filter for, comma separated
|
|
12402
|
+
* @param {string} [userId]
|
|
12403
|
+
* @param {string} [externalUserId]
|
|
12404
|
+
* @param {Array<string>} [currencies]
|
|
12405
|
+
* @param {number} [offset] default is 0
|
|
12406
|
+
* @param {number} [limit] default is 500, max is 1000
|
|
12407
|
+
* @param {*} [options] Override http request option.
|
|
12408
|
+
* @throws {RequiredError}
|
|
12409
|
+
* @memberof PaymentApi
|
|
12410
|
+
*/
|
|
12411
|
+
listBills(dateFrom?: string, dateTo?: string, statuses?: Array<ListBillsStatusesEnum>, userId?: string, externalUserId?: string, currencies?: Array<string>, offset?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListBillsResponse, any, {}>>;
|
|
12172
12412
|
/**
|
|
12173
12413
|
* List mandates details
|
|
12174
12414
|
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
@@ -12285,6 +12525,30 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12285
12525
|
* @memberof PaymentApi
|
|
12286
12526
|
*/
|
|
12287
12527
|
setMandateInstitution(updateRequest: SetMandateInstitutionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SetMandateInstitutionResponse, any, {}>>;
|
|
12528
|
+
/**
|
|
12529
|
+
* Submit Adyen card setup payment (proxy to Adyen /payments with Drop-in state.data from onSubmit)
|
|
12530
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentRequest Full Drop-in state.data from onSubmit
|
|
12531
|
+
* @param {*} [options] Override http request option.
|
|
12532
|
+
* @throws {RequiredError}
|
|
12533
|
+
* @memberof PaymentApi
|
|
12534
|
+
*/
|
|
12535
|
+
submitAdyenCardSetupPayment(submitAdyenCardSetupPaymentRequest: {
|
|
12536
|
+
[key: string]: any;
|
|
12537
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12538
|
+
[key: string]: any;
|
|
12539
|
+
}, any, {}>>;
|
|
12540
|
+
/**
|
|
12541
|
+
* Submit Adyen card setup payment details (proxy to Adyen /payments/details with Drop-in state.data from onAdditionalDetails)
|
|
12542
|
+
* @param {{ [key: string]: any; }} submitAdyenCardSetupPaymentDetailsRequest Full Drop-in state.data from onAdditionalDetails (includes details + paymentData)
|
|
12543
|
+
* @param {*} [options] Override http request option.
|
|
12544
|
+
* @throws {RequiredError}
|
|
12545
|
+
* @memberof PaymentApi
|
|
12546
|
+
*/
|
|
12547
|
+
submitAdyenCardSetupPaymentDetails(submitAdyenCardSetupPaymentDetailsRequest: {
|
|
12548
|
+
[key: string]: any;
|
|
12549
|
+
}, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
|
|
12550
|
+
[key: string]: any;
|
|
12551
|
+
}, any, {}>>;
|
|
12288
12552
|
/**
|
|
12289
12553
|
* Submit authorization checklist items
|
|
12290
12554
|
* @param {SubmitAuthChecklistRequest} submitAuthChecklistRequest request body for submitting auth checklist
|
|
@@ -12322,6 +12586,17 @@ export declare class PaymentApi extends BaseAPI implements PaymentApiInterface {
|
|
|
12322
12586
|
*/
|
|
12323
12587
|
updateTestPaymentStatus(paymentId: string, paymentStatus: UpdateTestPaymentStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12324
12588
|
}
|
|
12589
|
+
/**
|
|
12590
|
+
* @export
|
|
12591
|
+
*/
|
|
12592
|
+
export declare const ListBillsStatusesEnum: {
|
|
12593
|
+
readonly Unknown: "UNKNOWN";
|
|
12594
|
+
readonly Unpaid: "UNPAID";
|
|
12595
|
+
readonly Paid: "PAID";
|
|
12596
|
+
readonly Cancelled: "CANCELLED";
|
|
12597
|
+
readonly Failed: "FAILED";
|
|
12598
|
+
};
|
|
12599
|
+
export type ListBillsStatusesEnum = (typeof ListBillsStatusesEnum)[keyof typeof ListBillsStatusesEnum];
|
|
12325
12600
|
/**
|
|
12326
12601
|
* @export
|
|
12327
12602
|
*/
|