@finverse/sdk-typescript 0.0.371 → 0.0.373
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 +56 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -716,6 +716,19 @@ export interface BalanceHistory {
|
|
|
716
716
|
*/
|
|
717
717
|
currency: string;
|
|
718
718
|
}
|
|
719
|
+
/**
|
|
720
|
+
*
|
|
721
|
+
* @export
|
|
722
|
+
* @interface BankTransferDetails
|
|
723
|
+
*/
|
|
724
|
+
export interface BankTransferDetails {
|
|
725
|
+
/**
|
|
726
|
+
* The transfer type
|
|
727
|
+
* @type {string}
|
|
728
|
+
* @memberof BankTransferDetails
|
|
729
|
+
*/
|
|
730
|
+
transfer_type?: string;
|
|
731
|
+
}
|
|
719
732
|
/**
|
|
720
733
|
*
|
|
721
734
|
* @export
|
|
@@ -4336,6 +4349,12 @@ export interface LinkTokenRequest {
|
|
|
4336
4349
|
* @memberof LinkTokenRequest
|
|
4337
4350
|
*/
|
|
4338
4351
|
user_configs?: LinkTokenUserConfigs;
|
|
4352
|
+
/**
|
|
4353
|
+
* Limit historical data retrieval to this date. ISO format (YYYY-MM-DD)
|
|
4354
|
+
* @type {string}
|
|
4355
|
+
* @memberof LinkTokenRequest
|
|
4356
|
+
*/
|
|
4357
|
+
history_date_limit?: string;
|
|
4339
4358
|
}
|
|
4340
4359
|
export declare const LinkTokenRequestUiModeEnum: {
|
|
4341
4360
|
readonly Iframe: "iframe";
|
|
@@ -7434,6 +7453,31 @@ export interface PaymentSnapshotPaymentMethod {
|
|
|
7434
7453
|
* @memberof PaymentSnapshotPaymentMethod
|
|
7435
7454
|
*/
|
|
7436
7455
|
wallet?: PaymentSnapshotPaymentMethodWallet;
|
|
7456
|
+
/**
|
|
7457
|
+
*
|
|
7458
|
+
* @type {PaymentSnapshotPaymentMethodBankTransfer}
|
|
7459
|
+
* @memberof PaymentSnapshotPaymentMethod
|
|
7460
|
+
*/
|
|
7461
|
+
bank_transfer?: PaymentSnapshotPaymentMethodBankTransfer;
|
|
7462
|
+
}
|
|
7463
|
+
/**
|
|
7464
|
+
*
|
|
7465
|
+
* @export
|
|
7466
|
+
* @interface PaymentSnapshotPaymentMethodBankTransfer
|
|
7467
|
+
*/
|
|
7468
|
+
export interface PaymentSnapshotPaymentMethodBankTransfer {
|
|
7469
|
+
/**
|
|
7470
|
+
*
|
|
7471
|
+
* @type {BankTransferDetails}
|
|
7472
|
+
* @memberof PaymentSnapshotPaymentMethodBankTransfer
|
|
7473
|
+
*/
|
|
7474
|
+
bank_transfer_details?: BankTransferDetails;
|
|
7475
|
+
/**
|
|
7476
|
+
*
|
|
7477
|
+
* @type {RiskData}
|
|
7478
|
+
* @memberof PaymentSnapshotPaymentMethodBankTransfer
|
|
7479
|
+
*/
|
|
7480
|
+
risk_data?: RiskData;
|
|
7437
7481
|
}
|
|
7438
7482
|
/**
|
|
7439
7483
|
*
|
|
@@ -7981,6 +8025,12 @@ export interface Principal {
|
|
|
7981
8025
|
* @memberof Principal
|
|
7982
8026
|
*/
|
|
7983
8027
|
currency?: string;
|
|
8028
|
+
/**
|
|
8029
|
+
* Limit historical data retrieval to this date (YYYY-MM-DD)
|
|
8030
|
+
* @type {string}
|
|
8031
|
+
* @memberof Principal
|
|
8032
|
+
*/
|
|
8033
|
+
history_date_limit?: string;
|
|
7984
8034
|
/**
|
|
7985
8035
|
*
|
|
7986
8036
|
* @type {string}
|
|
@@ -8416,6 +8466,12 @@ export interface RefreshLoginIdentityLinkCustomizations {
|
|
|
8416
8466
|
* @memberof RefreshLoginIdentityLinkCustomizations
|
|
8417
8467
|
*/
|
|
8418
8468
|
state?: string;
|
|
8469
|
+
/**
|
|
8470
|
+
* Limit historical data retrieval to this date. ISO format (YYYY-MM-DD)
|
|
8471
|
+
* @type {string}
|
|
8472
|
+
* @memberof RefreshLoginIdentityLinkCustomizations
|
|
8473
|
+
*/
|
|
8474
|
+
history_date_limit?: string;
|
|
8419
8475
|
}
|
|
8420
8476
|
export declare const RefreshLoginIdentityLinkCustomizationsLanguageEnum: {
|
|
8421
8477
|
readonly En: "en";
|