@finverse/sdk-typescript 0.0.345 → 0.0.364
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 +460 -11
- package/dist/api.js +24 -3
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1238,7 +1238,38 @@ export interface CreateCardRequestCardDetails {
|
|
|
1238
1238
|
* @memberof CreateCardRequestCardDetails
|
|
1239
1239
|
*/
|
|
1240
1240
|
expiry_year?: number;
|
|
1241
|
+
/**
|
|
1242
|
+
* First 6 digits of the credit card number
|
|
1243
|
+
* @type {string}
|
|
1244
|
+
* @memberof CreateCardRequestCardDetails
|
|
1245
|
+
*/
|
|
1246
|
+
card_bin?: string;
|
|
1247
|
+
/**
|
|
1248
|
+
* The card number alias
|
|
1249
|
+
* @type {string}
|
|
1250
|
+
* @memberof CreateCardRequestCardDetails
|
|
1251
|
+
*/
|
|
1252
|
+
card_number_alias?: string;
|
|
1253
|
+
/**
|
|
1254
|
+
* The issuer country
|
|
1255
|
+
* @type {string}
|
|
1256
|
+
* @memberof CreateCardRequestCardDetails
|
|
1257
|
+
*/
|
|
1258
|
+
country?: string;
|
|
1259
|
+
/**
|
|
1260
|
+
* The funding source of the card
|
|
1261
|
+
* @type {string}
|
|
1262
|
+
* @memberof CreateCardRequestCardDetails
|
|
1263
|
+
*/
|
|
1264
|
+
funding?: CreateCardRequestCardDetailsFundingEnum;
|
|
1241
1265
|
}
|
|
1266
|
+
export declare const CreateCardRequestCardDetailsFundingEnum: {
|
|
1267
|
+
readonly Unknown: "UNKNOWN";
|
|
1268
|
+
readonly Credit: "CREDIT";
|
|
1269
|
+
readonly Debit: "DEBIT";
|
|
1270
|
+
readonly Prepaid: "PREPAID";
|
|
1271
|
+
};
|
|
1272
|
+
export type CreateCardRequestCardDetailsFundingEnum = (typeof CreateCardRequestCardDetailsFundingEnum)[keyof typeof CreateCardRequestCardDetailsFundingEnum];
|
|
1242
1273
|
/**
|
|
1243
1274
|
*
|
|
1244
1275
|
* @export
|
|
@@ -1501,7 +1532,13 @@ export interface CreatePaymentAccountRequest {
|
|
|
1501
1532
|
* @type {RecipientAccountNumber}
|
|
1502
1533
|
* @memberof CreatePaymentAccountRequest
|
|
1503
1534
|
*/
|
|
1504
|
-
account_number
|
|
1535
|
+
account_number?: RecipientAccountNumber;
|
|
1536
|
+
/**
|
|
1537
|
+
* Masked account number of the payment account. Optional for EXTERNAL_ACCOUNT type. Can be provided when account_number is not available. Only one of account_number or account_number_masked can be provided.
|
|
1538
|
+
* @type {string}
|
|
1539
|
+
* @memberof CreatePaymentAccountRequest
|
|
1540
|
+
*/
|
|
1541
|
+
account_number_masked?: string;
|
|
1505
1542
|
/**
|
|
1506
1543
|
* Type of payment account. Currently only allow creating external account.
|
|
1507
1544
|
* @type {string}
|
|
@@ -2309,6 +2346,12 @@ export interface FVCard {
|
|
|
2309
2346
|
* @memberof FVCard
|
|
2310
2347
|
*/
|
|
2311
2348
|
recipient_account?: MandateRecipientAccount;
|
|
2349
|
+
/**
|
|
2350
|
+
*
|
|
2351
|
+
* @type {RiskData}
|
|
2352
|
+
* @memberof FVCard
|
|
2353
|
+
*/
|
|
2354
|
+
risk_data?: RiskData;
|
|
2312
2355
|
}
|
|
2313
2356
|
export declare const FVCardStatusEnum: {
|
|
2314
2357
|
readonly Unknown: "UNKNOWN";
|
|
@@ -2361,7 +2404,7 @@ export interface FVCardDetails {
|
|
|
2361
2404
|
*/
|
|
2362
2405
|
collection_entity_name?: string;
|
|
2363
2406
|
/**
|
|
2364
|
-
*
|
|
2407
|
+
* The issuer country
|
|
2365
2408
|
* @type {string}
|
|
2366
2409
|
* @memberof FVCardDetails
|
|
2367
2410
|
*/
|
|
@@ -2373,7 +2416,7 @@ export interface FVCardDetails {
|
|
|
2373
2416
|
*/
|
|
2374
2417
|
fingerprint?: string;
|
|
2375
2418
|
/**
|
|
2376
|
-
*
|
|
2419
|
+
* The funding source of the card
|
|
2377
2420
|
* @type {string}
|
|
2378
2421
|
* @memberof FVCardDetails
|
|
2379
2422
|
*/
|
|
@@ -2396,6 +2439,30 @@ export interface FVCardDetails {
|
|
|
2396
2439
|
* @memberof FVCardDetails
|
|
2397
2440
|
*/
|
|
2398
2441
|
recurring_payment_mode?: string;
|
|
2442
|
+
/**
|
|
2443
|
+
* The acquirer authorization reference
|
|
2444
|
+
* @type {string}
|
|
2445
|
+
* @memberof FVCardDetails
|
|
2446
|
+
*/
|
|
2447
|
+
acquirer_authorization_reference?: string;
|
|
2448
|
+
/**
|
|
2449
|
+
* The brand product name
|
|
2450
|
+
* @type {string}
|
|
2451
|
+
* @memberof FVCardDetails
|
|
2452
|
+
*/
|
|
2453
|
+
brand_product_name?: string;
|
|
2454
|
+
/**
|
|
2455
|
+
* The card number alias
|
|
2456
|
+
* @type {string}
|
|
2457
|
+
* @memberof FVCardDetails
|
|
2458
|
+
*/
|
|
2459
|
+
card_number_alias?: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* Whether the card is a commercial card
|
|
2462
|
+
* @type {boolean}
|
|
2463
|
+
* @memberof FVCardDetails
|
|
2464
|
+
*/
|
|
2465
|
+
is_commercial?: boolean | null;
|
|
2399
2466
|
}
|
|
2400
2467
|
export declare const FVCardDetailsFundingEnum: {
|
|
2401
2468
|
readonly Unknown: "UNKNOWN";
|
|
@@ -2441,6 +2508,31 @@ export interface FVCardProcessorDetails {
|
|
|
2441
2508
|
*/
|
|
2442
2509
|
network_transaction_reference?: string;
|
|
2443
2510
|
}
|
|
2511
|
+
/**
|
|
2512
|
+
*
|
|
2513
|
+
* @export
|
|
2514
|
+
* @interface FVWalletDetails
|
|
2515
|
+
*/
|
|
2516
|
+
export interface FVWalletDetails {
|
|
2517
|
+
/**
|
|
2518
|
+
* The wallet brand
|
|
2519
|
+
* @type {string}
|
|
2520
|
+
* @memberof FVWalletDetails
|
|
2521
|
+
*/
|
|
2522
|
+
brand?: string;
|
|
2523
|
+
/**
|
|
2524
|
+
* The brand product name
|
|
2525
|
+
* @type {string}
|
|
2526
|
+
* @memberof FVWalletDetails
|
|
2527
|
+
*/
|
|
2528
|
+
brand_product_name?: string;
|
|
2529
|
+
/**
|
|
2530
|
+
* The issuer country
|
|
2531
|
+
* @type {string}
|
|
2532
|
+
* @memberof FVWalletDetails
|
|
2533
|
+
*/
|
|
2534
|
+
country?: string;
|
|
2535
|
+
}
|
|
2444
2536
|
/**
|
|
2445
2537
|
*
|
|
2446
2538
|
* @export
|
|
@@ -6008,6 +6100,7 @@ export declare const PaymentFvLinkResponseTypeEnum: {
|
|
|
6008
6100
|
readonly Single: "SINGLE";
|
|
6009
6101
|
readonly Card: "CARD";
|
|
6010
6102
|
readonly Manual: "MANUAL";
|
|
6103
|
+
readonly Wallet: "WALLET";
|
|
6011
6104
|
};
|
|
6012
6105
|
export type PaymentFvLinkResponseTypeEnum = (typeof PaymentFvLinkResponseTypeEnum)[keyof typeof PaymentFvLinkResponseTypeEnum];
|
|
6013
6106
|
/**
|
|
@@ -6311,12 +6404,6 @@ export interface PaymentLinkResponse {
|
|
|
6311
6404
|
* @memberof PaymentLinkResponse
|
|
6312
6405
|
*/
|
|
6313
6406
|
session_status?: PaymentLinkResponseSessionStatusEnum;
|
|
6314
|
-
/**
|
|
6315
|
-
* Timestamp of when the payment link was or will expired in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
6316
|
-
* @type {string}
|
|
6317
|
-
* @memberof PaymentLinkResponse
|
|
6318
|
-
*/
|
|
6319
|
-
expires_at?: string;
|
|
6320
6407
|
/**
|
|
6321
6408
|
* Timestamp of when the payment link was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
6322
6409
|
* @type {string}
|
|
@@ -6529,11 +6616,18 @@ export interface PaymentMethodIntegrationMetadata {
|
|
|
6529
6616
|
* @memberof PaymentMethodIntegrationMetadata
|
|
6530
6617
|
*/
|
|
6531
6618
|
adyen_metadata?: PaymentMethodIntegrationMetadataAdyenMetadata;
|
|
6619
|
+
/**
|
|
6620
|
+
*
|
|
6621
|
+
* @type {PaymentMethodIntegrationMetadataGocardlessMetadata}
|
|
6622
|
+
* @memberof PaymentMethodIntegrationMetadata
|
|
6623
|
+
*/
|
|
6624
|
+
gocardless_metadata?: PaymentMethodIntegrationMetadataGocardlessMetadata;
|
|
6532
6625
|
}
|
|
6533
6626
|
export declare const PaymentMethodIntegrationMetadataIntegrationIdEnum: {
|
|
6534
6627
|
readonly Stripe: "STRIPE";
|
|
6535
6628
|
readonly Cybersource: "CYBERSOURCE";
|
|
6536
6629
|
readonly Adyen: "ADYEN";
|
|
6630
|
+
readonly Gocardless: "GOCARDLESS";
|
|
6537
6631
|
};
|
|
6538
6632
|
export type PaymentMethodIntegrationMetadataIntegrationIdEnum = (typeof PaymentMethodIntegrationMetadataIntegrationIdEnum)[keyof typeof PaymentMethodIntegrationMetadataIntegrationIdEnum];
|
|
6539
6633
|
/**
|
|
@@ -6592,6 +6686,256 @@ export interface PaymentMethodIntegrationMetadataCybersourceMetadata {
|
|
|
6592
6686
|
*/
|
|
6593
6687
|
payment_token: string;
|
|
6594
6688
|
}
|
|
6689
|
+
/**
|
|
6690
|
+
*
|
|
6691
|
+
* @export
|
|
6692
|
+
* @interface PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6693
|
+
*/
|
|
6694
|
+
export interface PaymentMethodIntegrationMetadataGocardlessMetadata {
|
|
6695
|
+
/**
|
|
6696
|
+
* The GoCardless mandate ID
|
|
6697
|
+
* @type {string}
|
|
6698
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6699
|
+
*/
|
|
6700
|
+
mandate_id: string;
|
|
6701
|
+
/**
|
|
6702
|
+
* The GoCardless reference
|
|
6703
|
+
* @type {string}
|
|
6704
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6705
|
+
*/
|
|
6706
|
+
reference?: string;
|
|
6707
|
+
/**
|
|
6708
|
+
* The GoCardless mandate status
|
|
6709
|
+
* @type {string}
|
|
6710
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6711
|
+
*/
|
|
6712
|
+
status?: PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum;
|
|
6713
|
+
/**
|
|
6714
|
+
* The bank payment scheme
|
|
6715
|
+
* @type {string}
|
|
6716
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6717
|
+
*/
|
|
6718
|
+
scheme?: string;
|
|
6719
|
+
/**
|
|
6720
|
+
* The next possible charge date, in ISO format (YYYY-MM-DD)
|
|
6721
|
+
* @type {string}
|
|
6722
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6723
|
+
*/
|
|
6724
|
+
next_possible_charge_date?: string | null;
|
|
6725
|
+
/**
|
|
6726
|
+
* Whether payments require approval
|
|
6727
|
+
* @type {boolean}
|
|
6728
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6729
|
+
*/
|
|
6730
|
+
payments_require_approval?: boolean;
|
|
6731
|
+
/**
|
|
6732
|
+
* How GoCardless handles funds settlement
|
|
6733
|
+
* @type {string}
|
|
6734
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6735
|
+
*/
|
|
6736
|
+
funds_settlement?: PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum;
|
|
6737
|
+
/**
|
|
6738
|
+
* The timestamp when the mandate was verified, in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
6739
|
+
* @type {string}
|
|
6740
|
+
* @memberof PaymentMethodIntegrationMetadataGocardlessMetadata
|
|
6741
|
+
*/
|
|
6742
|
+
verified_at?: string | null;
|
|
6743
|
+
}
|
|
6744
|
+
export declare const PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum: {
|
|
6745
|
+
readonly Active: "active";
|
|
6746
|
+
};
|
|
6747
|
+
export type PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum = (typeof PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum)[keyof typeof PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum];
|
|
6748
|
+
export declare const PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum: {
|
|
6749
|
+
readonly Managed: "managed";
|
|
6750
|
+
readonly Direct: "direct";
|
|
6751
|
+
};
|
|
6752
|
+
export type PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum = (typeof PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum)[keyof typeof PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum];
|
|
6753
|
+
/**
|
|
6754
|
+
*
|
|
6755
|
+
* @export
|
|
6756
|
+
* @interface PaymentMethodIntegrationMetadataResponse
|
|
6757
|
+
*/
|
|
6758
|
+
export interface PaymentMethodIntegrationMetadataResponse {
|
|
6759
|
+
/**
|
|
6760
|
+
*
|
|
6761
|
+
* @type {string}
|
|
6762
|
+
* @memberof PaymentMethodIntegrationMetadataResponse
|
|
6763
|
+
*/
|
|
6764
|
+
integration_id?: string;
|
|
6765
|
+
/**
|
|
6766
|
+
*
|
|
6767
|
+
* @type {PaymentMethodIntegrationMetadataResponseStripeMetadata}
|
|
6768
|
+
* @memberof PaymentMethodIntegrationMetadataResponse
|
|
6769
|
+
*/
|
|
6770
|
+
stripe_metadata?: PaymentMethodIntegrationMetadataResponseStripeMetadata | null;
|
|
6771
|
+
/**
|
|
6772
|
+
*
|
|
6773
|
+
* @type {PaymentMethodIntegrationMetadataResponseCybersourceMetadata}
|
|
6774
|
+
* @memberof PaymentMethodIntegrationMetadataResponse
|
|
6775
|
+
*/
|
|
6776
|
+
cybersource_metadata?: PaymentMethodIntegrationMetadataResponseCybersourceMetadata | null;
|
|
6777
|
+
/**
|
|
6778
|
+
*
|
|
6779
|
+
* @type {PaymentMethodIntegrationMetadataResponseAdyenMetadata}
|
|
6780
|
+
* @memberof PaymentMethodIntegrationMetadataResponse
|
|
6781
|
+
*/
|
|
6782
|
+
adyen_metadata?: PaymentMethodIntegrationMetadataResponseAdyenMetadata | null;
|
|
6783
|
+
/**
|
|
6784
|
+
*
|
|
6785
|
+
* @type {PaymentMethodIntegrationMetadataResponseGocardlessMetadata}
|
|
6786
|
+
* @memberof PaymentMethodIntegrationMetadataResponse
|
|
6787
|
+
*/
|
|
6788
|
+
gocardless_metadata?: PaymentMethodIntegrationMetadataResponseGocardlessMetadata | null;
|
|
6789
|
+
}
|
|
6790
|
+
/**
|
|
6791
|
+
*
|
|
6792
|
+
* @export
|
|
6793
|
+
* @interface PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6794
|
+
*/
|
|
6795
|
+
export interface PaymentMethodIntegrationMetadataResponseAdyenMetadata {
|
|
6796
|
+
/**
|
|
6797
|
+
*
|
|
6798
|
+
* @type {string}
|
|
6799
|
+
* @memberof PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6800
|
+
*/
|
|
6801
|
+
payment_method_id?: string;
|
|
6802
|
+
/**
|
|
6803
|
+
*
|
|
6804
|
+
* @type {string}
|
|
6805
|
+
* @memberof PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6806
|
+
*/
|
|
6807
|
+
auth_code?: string;
|
|
6808
|
+
/**
|
|
6809
|
+
*
|
|
6810
|
+
* @type {string}
|
|
6811
|
+
* @memberof PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6812
|
+
*/
|
|
6813
|
+
psp_reference?: string;
|
|
6814
|
+
/**
|
|
6815
|
+
*
|
|
6816
|
+
* @type {string}
|
|
6817
|
+
* @memberof PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6818
|
+
*/
|
|
6819
|
+
recurring_processing_model?: string;
|
|
6820
|
+
/**
|
|
6821
|
+
*
|
|
6822
|
+
* @type {string}
|
|
6823
|
+
* @memberof PaymentMethodIntegrationMetadataResponseAdyenMetadata
|
|
6824
|
+
*/
|
|
6825
|
+
network_transaction_reference?: string;
|
|
6826
|
+
}
|
|
6827
|
+
/**
|
|
6828
|
+
*
|
|
6829
|
+
* @export
|
|
6830
|
+
* @interface PaymentMethodIntegrationMetadataResponseCybersourceMetadata
|
|
6831
|
+
*/
|
|
6832
|
+
export interface PaymentMethodIntegrationMetadataResponseCybersourceMetadata {
|
|
6833
|
+
/**
|
|
6834
|
+
*
|
|
6835
|
+
* @type {string}
|
|
6836
|
+
* @memberof PaymentMethodIntegrationMetadataResponseCybersourceMetadata
|
|
6837
|
+
*/
|
|
6838
|
+
payment_token?: string;
|
|
6839
|
+
}
|
|
6840
|
+
/**
|
|
6841
|
+
*
|
|
6842
|
+
* @export
|
|
6843
|
+
* @interface PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6844
|
+
*/
|
|
6845
|
+
export interface PaymentMethodIntegrationMetadataResponseGocardlessMetadata {
|
|
6846
|
+
/**
|
|
6847
|
+
* The GoCardless mandate ID
|
|
6848
|
+
* @type {string}
|
|
6849
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6850
|
+
*/
|
|
6851
|
+
mandate_id?: string;
|
|
6852
|
+
/**
|
|
6853
|
+
* The GoCardless reference
|
|
6854
|
+
* @type {string}
|
|
6855
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6856
|
+
*/
|
|
6857
|
+
reference?: string;
|
|
6858
|
+
/**
|
|
6859
|
+
* The GoCardless mandate status
|
|
6860
|
+
* @type {string}
|
|
6861
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6862
|
+
*/
|
|
6863
|
+
status?: string;
|
|
6864
|
+
/**
|
|
6865
|
+
* The last action taken on the mandate
|
|
6866
|
+
* @type {string}
|
|
6867
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6868
|
+
*/
|
|
6869
|
+
last_action?: string;
|
|
6870
|
+
/**
|
|
6871
|
+
* The bank payment scheme
|
|
6872
|
+
* @type {string}
|
|
6873
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6874
|
+
*/
|
|
6875
|
+
scheme?: string;
|
|
6876
|
+
/**
|
|
6877
|
+
* The next possible charge date, in ISO format (YYYY-MM-DD)
|
|
6878
|
+
* @type {string}
|
|
6879
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6880
|
+
*/
|
|
6881
|
+
next_possible_charge_date?: string | null;
|
|
6882
|
+
/**
|
|
6883
|
+
* Whether payments require approval
|
|
6884
|
+
* @type {boolean}
|
|
6885
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6886
|
+
*/
|
|
6887
|
+
payments_require_approval?: boolean | null;
|
|
6888
|
+
/**
|
|
6889
|
+
* How GoCardless handles funds settlement
|
|
6890
|
+
* @type {string}
|
|
6891
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6892
|
+
*/
|
|
6893
|
+
funds_settlement?: string;
|
|
6894
|
+
/**
|
|
6895
|
+
* The source of the mandate authorization
|
|
6896
|
+
* @type {string}
|
|
6897
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6898
|
+
*/
|
|
6899
|
+
authorization_source?: string;
|
|
6900
|
+
/**
|
|
6901
|
+
* The timestamp when the mandate was verified, in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
6902
|
+
* @type {string}
|
|
6903
|
+
* @memberof PaymentMethodIntegrationMetadataResponseGocardlessMetadata
|
|
6904
|
+
*/
|
|
6905
|
+
verified_at?: string | null;
|
|
6906
|
+
}
|
|
6907
|
+
/**
|
|
6908
|
+
*
|
|
6909
|
+
* @export
|
|
6910
|
+
* @interface PaymentMethodIntegrationMetadataResponseStripeMetadata
|
|
6911
|
+
*/
|
|
6912
|
+
export interface PaymentMethodIntegrationMetadataResponseStripeMetadata {
|
|
6913
|
+
/**
|
|
6914
|
+
*
|
|
6915
|
+
* @type {PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer}
|
|
6916
|
+
* @memberof PaymentMethodIntegrationMetadataResponseStripeMetadata
|
|
6917
|
+
*/
|
|
6918
|
+
customer?: PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer;
|
|
6919
|
+
/**
|
|
6920
|
+
*
|
|
6921
|
+
* @type {PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer}
|
|
6922
|
+
* @memberof PaymentMethodIntegrationMetadataResponseStripeMetadata
|
|
6923
|
+
*/
|
|
6924
|
+
payment_method?: PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer;
|
|
6925
|
+
}
|
|
6926
|
+
/**
|
|
6927
|
+
*
|
|
6928
|
+
* @export
|
|
6929
|
+
* @interface PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer
|
|
6930
|
+
*/
|
|
6931
|
+
export interface PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer {
|
|
6932
|
+
/**
|
|
6933
|
+
*
|
|
6934
|
+
* @type {string}
|
|
6935
|
+
* @memberof PaymentMethodIntegrationMetadataResponseStripeMetadataCustomer
|
|
6936
|
+
*/
|
|
6937
|
+
id?: string;
|
|
6938
|
+
}
|
|
6595
6939
|
/**
|
|
6596
6940
|
*
|
|
6597
6941
|
* @export
|
|
@@ -6705,10 +7049,10 @@ export interface PaymentMethodResponse {
|
|
|
6705
7049
|
card?: FVCard;
|
|
6706
7050
|
/**
|
|
6707
7051
|
*
|
|
6708
|
-
* @type {
|
|
7052
|
+
* @type {PaymentMethodIntegrationMetadataResponse}
|
|
6709
7053
|
* @memberof PaymentMethodResponse
|
|
6710
7054
|
*/
|
|
6711
|
-
integration_metadata?:
|
|
7055
|
+
integration_metadata?: PaymentMethodIntegrationMetadataResponse;
|
|
6712
7056
|
}
|
|
6713
7057
|
/**
|
|
6714
7058
|
*
|
|
@@ -6734,6 +7078,12 @@ export interface PaymentProcessorDetails {
|
|
|
6734
7078
|
* @memberof PaymentProcessorDetails
|
|
6735
7079
|
*/
|
|
6736
7080
|
processor_reference?: string;
|
|
7081
|
+
/**
|
|
7082
|
+
* Scheme like becs, bacs, ach, etc. (applicable to Gocardless for now)
|
|
7083
|
+
* @type {string}
|
|
7084
|
+
* @memberof PaymentProcessorDetails
|
|
7085
|
+
*/
|
|
7086
|
+
scheme?: string;
|
|
6737
7087
|
/**
|
|
6738
7088
|
*
|
|
6739
7089
|
* @type {PaymentProcessorResult}
|
|
@@ -6765,6 +7115,18 @@ export interface PaymentProcessorResult {
|
|
|
6765
7115
|
* @memberof PaymentProcessorResult
|
|
6766
7116
|
*/
|
|
6767
7117
|
result_code?: string;
|
|
7118
|
+
/**
|
|
7119
|
+
* Last action taken by the payment processor (e.g. \"created\", \"captured\", \"failed\", etc.)
|
|
7120
|
+
* @type {string}
|
|
7121
|
+
* @memberof PaymentProcessorResult
|
|
7122
|
+
*/
|
|
7123
|
+
last_action?: string;
|
|
7124
|
+
/**
|
|
7125
|
+
* Status of the payment reported by processor (e.g. \"authorized\", \"captured\", \"failed\", etc.)
|
|
7126
|
+
* @type {string}
|
|
7127
|
+
* @memberof PaymentProcessorResult
|
|
7128
|
+
*/
|
|
7129
|
+
status?: string;
|
|
6768
7130
|
}
|
|
6769
7131
|
/**
|
|
6770
7132
|
*
|
|
@@ -6894,6 +7256,7 @@ export declare const PaymentResponseTypeEnum: {
|
|
|
6894
7256
|
readonly Single: "SINGLE";
|
|
6895
7257
|
readonly Card: "CARD";
|
|
6896
7258
|
readonly Manual: "MANUAL";
|
|
7259
|
+
readonly Wallet: "WALLET";
|
|
6897
7260
|
};
|
|
6898
7261
|
export type PaymentResponseTypeEnum = (typeof PaymentResponseTypeEnum)[keyof typeof PaymentResponseTypeEnum];
|
|
6899
7262
|
export declare const PaymentResponseStatusEnum: {
|
|
@@ -6988,6 +7351,7 @@ export declare const PaymentSetupOptionsPaymentMethodTypesEnum: {
|
|
|
6988
7351
|
readonly Single: "SINGLE";
|
|
6989
7352
|
readonly Card: "CARD";
|
|
6990
7353
|
readonly Manual: "MANUAL";
|
|
7354
|
+
readonly Wallet: "WALLET";
|
|
6991
7355
|
};
|
|
6992
7356
|
export type PaymentSetupOptionsPaymentMethodTypesEnum = (typeof PaymentSetupOptionsPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsPaymentMethodTypesEnum];
|
|
6993
7357
|
/**
|
|
@@ -7043,6 +7407,7 @@ export declare const PaymentSetupOptionsRequestPaymentMethodTypesEnum: {
|
|
|
7043
7407
|
readonly Single: "SINGLE";
|
|
7044
7408
|
readonly Card: "CARD";
|
|
7045
7409
|
readonly Manual: "MANUAL";
|
|
7410
|
+
readonly Wallet: "WALLET";
|
|
7046
7411
|
};
|
|
7047
7412
|
export type PaymentSetupOptionsRequestPaymentMethodTypesEnum = (typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum)[keyof typeof PaymentSetupOptionsRequestPaymentMethodTypesEnum];
|
|
7048
7413
|
/**
|
|
@@ -7057,6 +7422,12 @@ export interface PaymentSnapshotPaymentMethod {
|
|
|
7057
7422
|
* @memberof PaymentSnapshotPaymentMethod
|
|
7058
7423
|
*/
|
|
7059
7424
|
card?: PaymentSnapshotPaymentMethodCard;
|
|
7425
|
+
/**
|
|
7426
|
+
*
|
|
7427
|
+
* @type {PaymentSnapshotPaymentMethodWallet}
|
|
7428
|
+
* @memberof PaymentSnapshotPaymentMethod
|
|
7429
|
+
*/
|
|
7430
|
+
wallet?: PaymentSnapshotPaymentMethodWallet;
|
|
7060
7431
|
}
|
|
7061
7432
|
/**
|
|
7062
7433
|
*
|
|
@@ -7071,6 +7442,25 @@ export interface PaymentSnapshotPaymentMethodCard {
|
|
|
7071
7442
|
*/
|
|
7072
7443
|
card_details?: FVCardDetails;
|
|
7073
7444
|
}
|
|
7445
|
+
/**
|
|
7446
|
+
*
|
|
7447
|
+
* @export
|
|
7448
|
+
* @interface PaymentSnapshotPaymentMethodWallet
|
|
7449
|
+
*/
|
|
7450
|
+
export interface PaymentSnapshotPaymentMethodWallet {
|
|
7451
|
+
/**
|
|
7452
|
+
*
|
|
7453
|
+
* @type {FVWalletDetails}
|
|
7454
|
+
* @memberof PaymentSnapshotPaymentMethodWallet
|
|
7455
|
+
*/
|
|
7456
|
+
wallet_details?: FVWalletDetails;
|
|
7457
|
+
/**
|
|
7458
|
+
*
|
|
7459
|
+
* @type {RiskData}
|
|
7460
|
+
* @memberof PaymentSnapshotPaymentMethodWallet
|
|
7461
|
+
*/
|
|
7462
|
+
risk_data?: RiskData;
|
|
7463
|
+
}
|
|
7074
7464
|
/**
|
|
7075
7465
|
*
|
|
7076
7466
|
* @export
|
|
@@ -7640,6 +8030,43 @@ export interface Principal {
|
|
|
7640
8030
|
*/
|
|
7641
8031
|
manual_payment_provider?: string;
|
|
7642
8032
|
}
|
|
8033
|
+
/**
|
|
8034
|
+
*
|
|
8035
|
+
* @export
|
|
8036
|
+
* @interface ProcessorRiskData
|
|
8037
|
+
*/
|
|
8038
|
+
export interface ProcessorRiskData {
|
|
8039
|
+
/**
|
|
8040
|
+
* The browser type
|
|
8041
|
+
* @type {string}
|
|
8042
|
+
* @memberof ProcessorRiskData
|
|
8043
|
+
*/
|
|
8044
|
+
browser_type?: string;
|
|
8045
|
+
/**
|
|
8046
|
+
* The device type
|
|
8047
|
+
* @type {string}
|
|
8048
|
+
* @memberof ProcessorRiskData
|
|
8049
|
+
*/
|
|
8050
|
+
device_type?: string;
|
|
8051
|
+
/**
|
|
8052
|
+
* The shopper country
|
|
8053
|
+
* @type {string}
|
|
8054
|
+
* @memberof ProcessorRiskData
|
|
8055
|
+
*/
|
|
8056
|
+
shopper_country?: string;
|
|
8057
|
+
/**
|
|
8058
|
+
* The shopper IP address
|
|
8059
|
+
* @type {string}
|
|
8060
|
+
* @memberof ProcessorRiskData
|
|
8061
|
+
*/
|
|
8062
|
+
shopper_ip?: string;
|
|
8063
|
+
/**
|
|
8064
|
+
* The shopper locale
|
|
8065
|
+
* @type {string}
|
|
8066
|
+
* @memberof ProcessorRiskData
|
|
8067
|
+
*/
|
|
8068
|
+
shopper_locale?: string;
|
|
8069
|
+
}
|
|
7643
8070
|
/**
|
|
7644
8071
|
*
|
|
7645
8072
|
* @export
|
|
@@ -8105,6 +8532,19 @@ export interface RelinkRequest {
|
|
|
8105
8532
|
*/
|
|
8106
8533
|
consent?: boolean | null;
|
|
8107
8534
|
}
|
|
8535
|
+
/**
|
|
8536
|
+
*
|
|
8537
|
+
* @export
|
|
8538
|
+
* @interface RiskData
|
|
8539
|
+
*/
|
|
8540
|
+
export interface RiskData {
|
|
8541
|
+
/**
|
|
8542
|
+
*
|
|
8543
|
+
* @type {ProcessorRiskData}
|
|
8544
|
+
* @memberof RiskData
|
|
8545
|
+
*/
|
|
8546
|
+
processor_risk_data?: ProcessorRiskData;
|
|
8547
|
+
}
|
|
8108
8548
|
/**
|
|
8109
8549
|
*
|
|
8110
8550
|
* @export
|
|
@@ -8141,6 +8581,7 @@ export declare const SelectPaymentMethodRequestPaymentMethodTypeEnum: {
|
|
|
8141
8581
|
readonly Single: "SINGLE";
|
|
8142
8582
|
readonly Card: "CARD";
|
|
8143
8583
|
readonly Manual: "MANUAL";
|
|
8584
|
+
readonly Wallet: "WALLET";
|
|
8144
8585
|
};
|
|
8145
8586
|
export type SelectPaymentMethodRequestPaymentMethodTypeEnum = (typeof SelectPaymentMethodRequestPaymentMethodTypeEnum)[keyof typeof SelectPaymentMethodRequestPaymentMethodTypeEnum];
|
|
8146
8587
|
export declare const SelectPaymentMethodRequestSenderTypeEnum: {
|
|
@@ -8166,6 +8607,12 @@ export interface SelectPaymentMethodResponse {
|
|
|
8166
8607
|
* @memberof SelectPaymentMethodResponse
|
|
8167
8608
|
*/
|
|
8168
8609
|
card_processor_redirect_uri?: string;
|
|
8610
|
+
/**
|
|
8611
|
+
* URL to redirect to for making the mandate payment (right now only for Gocardless)
|
|
8612
|
+
* @type {string}
|
|
8613
|
+
* @memberof SelectPaymentMethodResponse
|
|
8614
|
+
*/
|
|
8615
|
+
mandate_processor_redirect_uri?: string;
|
|
8169
8616
|
}
|
|
8170
8617
|
/**
|
|
8171
8618
|
*
|
|
@@ -11421,6 +11868,7 @@ export declare const ListPaymentsPaymentTypeEnum: {
|
|
|
11421
11868
|
readonly Single: "SINGLE";
|
|
11422
11869
|
readonly Card: "CARD";
|
|
11423
11870
|
readonly Manual: "MANUAL";
|
|
11871
|
+
readonly Wallet: "WALLET";
|
|
11424
11872
|
};
|
|
11425
11873
|
export type ListPaymentsPaymentTypeEnum = (typeof ListPaymentsPaymentTypeEnum)[keyof typeof ListPaymentsPaymentTypeEnum];
|
|
11426
11874
|
/**
|
|
@@ -11431,6 +11879,7 @@ export declare const ListPaymentsPaymentTypesEnum: {
|
|
|
11431
11879
|
readonly Single: "SINGLE";
|
|
11432
11880
|
readonly Card: "CARD";
|
|
11433
11881
|
readonly Manual: "MANUAL";
|
|
11882
|
+
readonly Wallet: "WALLET";
|
|
11434
11883
|
};
|
|
11435
11884
|
export type ListPaymentsPaymentTypesEnum = (typeof ListPaymentsPaymentTypesEnum)[keyof typeof ListPaymentsPaymentTypesEnum];
|
|
11436
11885
|
/**
|
package/dist/api.js
CHANGED
|
@@ -22,9 +22,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = void 0;
|
|
25
|
+
exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.IntegrationMetadataPaymentUserRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.DisputeResponseDisputeStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestCardDetailsFundingEnum = exports.CreateCardRequestStatusEnum = exports.CompleteKcpPaymentRequestCardPointUseEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
26
|
+
exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsResponsePeriodEnum = exports.TransactionLimitsRequestPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.SelectPaymentMethodRequestSenderTypeEnum = exports.SelectPaymentMethodRequestPaymentMethodTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = exports.PaymentSetupOptionsRequestFuturePaymentsEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum = exports.PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum = exports.PaymentMethodIntegrationMetadataAdyenMetadataRecurringProcessingModelEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseTypeEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = void 0;
|
|
27
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = void 0;
|
|
28
28
|
const axios_1 = require("axios");
|
|
29
29
|
// Some imports not used depending on template conditions
|
|
30
30
|
// @ts-ignore
|
|
@@ -95,6 +95,12 @@ exports.CompleteKcpPaymentRequestCardPointUseEnum = {
|
|
|
95
95
|
exports.CreateCardRequestStatusEnum = {
|
|
96
96
|
Succeeded: 'SUCCEEDED',
|
|
97
97
|
};
|
|
98
|
+
exports.CreateCardRequestCardDetailsFundingEnum = {
|
|
99
|
+
Unknown: 'UNKNOWN',
|
|
100
|
+
Credit: 'CREDIT',
|
|
101
|
+
Debit: 'DEBIT',
|
|
102
|
+
Prepaid: 'PREPAID',
|
|
103
|
+
};
|
|
98
104
|
exports.CreateMandateRequestWithDdaReferenceStatusEnum = {
|
|
99
105
|
Succeeded: 'SUCCEEDED',
|
|
100
106
|
};
|
|
@@ -320,6 +326,7 @@ exports.PaymentFvLinkResponseTypeEnum = {
|
|
|
320
326
|
Single: 'SINGLE',
|
|
321
327
|
Card: 'CARD',
|
|
322
328
|
Manual: 'MANUAL',
|
|
329
|
+
Wallet: 'WALLET',
|
|
323
330
|
};
|
|
324
331
|
exports.PaymentInfoPaymentsSupportedEnum = {
|
|
325
332
|
Mandate: 'MANDATE',
|
|
@@ -361,17 +368,26 @@ exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = {
|
|
|
361
368
|
Stripe: 'STRIPE',
|
|
362
369
|
Cybersource: 'CYBERSOURCE',
|
|
363
370
|
Adyen: 'ADYEN',
|
|
371
|
+
Gocardless: 'GOCARDLESS',
|
|
364
372
|
};
|
|
365
373
|
exports.PaymentMethodIntegrationMetadataAdyenMetadataRecurringProcessingModelEnum = {
|
|
366
374
|
CardOnFile: 'CardOnFile',
|
|
367
375
|
UnscheduledCardOnFile: 'UnscheduledCardOnFile',
|
|
368
376
|
Subscription: 'Subscription',
|
|
369
377
|
};
|
|
378
|
+
exports.PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum = {
|
|
379
|
+
Active: 'active',
|
|
380
|
+
};
|
|
381
|
+
exports.PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum = {
|
|
382
|
+
Managed: 'managed',
|
|
383
|
+
Direct: 'direct',
|
|
384
|
+
};
|
|
370
385
|
exports.PaymentResponseTypeEnum = {
|
|
371
386
|
Mandate: 'MANDATE',
|
|
372
387
|
Single: 'SINGLE',
|
|
373
388
|
Card: 'CARD',
|
|
374
389
|
Manual: 'MANUAL',
|
|
390
|
+
Wallet: 'WALLET',
|
|
375
391
|
};
|
|
376
392
|
exports.PaymentResponseStatusEnum = {
|
|
377
393
|
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
@@ -400,6 +416,7 @@ exports.PaymentSetupOptionsPaymentMethodTypesEnum = {
|
|
|
400
416
|
Single: 'SINGLE',
|
|
401
417
|
Card: 'CARD',
|
|
402
418
|
Manual: 'MANUAL',
|
|
419
|
+
Wallet: 'WALLET',
|
|
403
420
|
};
|
|
404
421
|
exports.PaymentSetupOptionsRequestFuturePaymentsEnum = {
|
|
405
422
|
Autopay: 'AUTOPAY',
|
|
@@ -410,6 +427,7 @@ exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = {
|
|
|
410
427
|
Single: 'SINGLE',
|
|
411
428
|
Card: 'CARD',
|
|
412
429
|
Manual: 'MANUAL',
|
|
430
|
+
Wallet: 'WALLET',
|
|
413
431
|
};
|
|
414
432
|
exports.PaymentUserUserTypeEnum = {
|
|
415
433
|
Individual: 'INDIVIDUAL',
|
|
@@ -459,6 +477,7 @@ exports.SelectPaymentMethodRequestPaymentMethodTypeEnum = {
|
|
|
459
477
|
Single: 'SINGLE',
|
|
460
478
|
Card: 'CARD',
|
|
461
479
|
Manual: 'MANUAL',
|
|
480
|
+
Wallet: 'WALLET',
|
|
462
481
|
};
|
|
463
482
|
exports.SelectPaymentMethodRequestSenderTypeEnum = {
|
|
464
483
|
Individual: 'INDIVIDUAL',
|
|
@@ -4888,6 +4907,7 @@ exports.ListPaymentsPaymentTypeEnum = {
|
|
|
4888
4907
|
Single: 'SINGLE',
|
|
4889
4908
|
Card: 'CARD',
|
|
4890
4909
|
Manual: 'MANUAL',
|
|
4910
|
+
Wallet: 'WALLET',
|
|
4891
4911
|
};
|
|
4892
4912
|
/**
|
|
4893
4913
|
* @export
|
|
@@ -4897,6 +4917,7 @@ exports.ListPaymentsPaymentTypesEnum = {
|
|
|
4897
4917
|
Single: 'SINGLE',
|
|
4898
4918
|
Card: 'CARD',
|
|
4899
4919
|
Manual: 'MANUAL',
|
|
4920
|
+
Wallet: 'WALLET',
|
|
4900
4921
|
};
|
|
4901
4922
|
/**
|
|
4902
4923
|
* @export
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.364",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"repository": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@types/mocha": "^10.0.10",
|
|
32
32
|
"@types/node": "12.11.5 - 12.20.42",
|
|
33
33
|
"axios-mock-adapter": "^1.21.2",
|
|
34
|
-
"chai": "^6.2.
|
|
34
|
+
"chai": "^6.2.2",
|
|
35
35
|
"mocha": "^11.7.5",
|
|
36
36
|
"ts-node": "^10.9.2",
|
|
37
37
|
"typescript": "^4.0 || ^5.0"
|