@finverse/sdk-typescript 0.0.101 → 0.0.102
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 +50 -6
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3869,6 +3869,31 @@ export interface PayoutDetails {
|
|
|
3869
3869
|
*/
|
|
3870
3870
|
scheduled_date: string;
|
|
3871
3871
|
}
|
|
3872
|
+
/**
|
|
3873
|
+
*
|
|
3874
|
+
* @export
|
|
3875
|
+
* @interface PayoutDetailsResponse
|
|
3876
|
+
*/
|
|
3877
|
+
export interface PayoutDetailsResponse {
|
|
3878
|
+
/**
|
|
3879
|
+
* The mandate used to execute payments for this payout instruction. Currency for the mandate must be supported by the recipient account
|
|
3880
|
+
* @type {string}
|
|
3881
|
+
* @memberof PayoutDetailsResponse
|
|
3882
|
+
*/
|
|
3883
|
+
mandate_id?: string;
|
|
3884
|
+
/**
|
|
3885
|
+
* A description for the payment (that will appear as the transaction description on bank statements)
|
|
3886
|
+
* @type {string}
|
|
3887
|
+
* @memberof PayoutDetailsResponse
|
|
3888
|
+
*/
|
|
3889
|
+
description?: string;
|
|
3890
|
+
/**
|
|
3891
|
+
* YYYY-MM-DD, date (in UTC) to execute the payment, must be 1 day later than current date
|
|
3892
|
+
* @type {string}
|
|
3893
|
+
* @memberof PayoutDetailsResponse
|
|
3894
|
+
*/
|
|
3895
|
+
scheduled_date?: string;
|
|
3896
|
+
}
|
|
3872
3897
|
/**
|
|
3873
3898
|
*
|
|
3874
3899
|
* @export
|
|
@@ -3889,16 +3914,16 @@ export interface PayoutInstructionResponse {
|
|
|
3889
3914
|
currency?: string;
|
|
3890
3915
|
/**
|
|
3891
3916
|
*
|
|
3892
|
-
* @type {
|
|
3917
|
+
* @type {PayoutDetailsResponse}
|
|
3893
3918
|
* @memberof PayoutInstructionResponse
|
|
3894
3919
|
*/
|
|
3895
|
-
payment_details?:
|
|
3920
|
+
payment_details?: PayoutDetailsResponse;
|
|
3896
3921
|
/**
|
|
3897
3922
|
*
|
|
3898
|
-
* @type {
|
|
3923
|
+
* @type {PayoutRecipient}
|
|
3899
3924
|
* @memberof PayoutInstructionResponse
|
|
3900
3925
|
*/
|
|
3901
|
-
recipient?:
|
|
3926
|
+
recipient?: PayoutRecipient;
|
|
3902
3927
|
/**
|
|
3903
3928
|
*
|
|
3904
3929
|
* @type {PayoutSender}
|
|
@@ -3910,13 +3935,13 @@ export interface PayoutInstructionResponse {
|
|
|
3910
3935
|
* @type {string}
|
|
3911
3936
|
* @memberof PayoutInstructionResponse
|
|
3912
3937
|
*/
|
|
3913
|
-
payout_instruction_id
|
|
3938
|
+
payout_instruction_id?: string;
|
|
3914
3939
|
/**
|
|
3915
3940
|
* Possible values - CREATED, PROCESSING, EXECUTED, CANCELLED, FAILED.
|
|
3916
3941
|
* @type {string}
|
|
3917
3942
|
* @memberof PayoutInstructionResponse
|
|
3918
3943
|
*/
|
|
3919
|
-
status
|
|
3944
|
+
status?: PayoutInstructionResponseStatusEnum;
|
|
3920
3945
|
/**
|
|
3921
3946
|
* Timestamp of when the recipient was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
3922
3947
|
* @type {string}
|
|
@@ -3944,6 +3969,25 @@ export declare const PayoutInstructionResponseStatusEnum: {
|
|
|
3944
3969
|
readonly Failed: "FAILED";
|
|
3945
3970
|
};
|
|
3946
3971
|
export declare type PayoutInstructionResponseStatusEnum = typeof PayoutInstructionResponseStatusEnum[keyof typeof PayoutInstructionResponseStatusEnum];
|
|
3972
|
+
/**
|
|
3973
|
+
*
|
|
3974
|
+
* @export
|
|
3975
|
+
* @interface PayoutRecipient
|
|
3976
|
+
*/
|
|
3977
|
+
export interface PayoutRecipient {
|
|
3978
|
+
/**
|
|
3979
|
+
* Merchant account name
|
|
3980
|
+
* @type {string}
|
|
3981
|
+
* @memberof PayoutRecipient
|
|
3982
|
+
*/
|
|
3983
|
+
name?: string;
|
|
3984
|
+
/**
|
|
3985
|
+
* Merchant account ID assigned by Finverse
|
|
3986
|
+
* @type {string}
|
|
3987
|
+
* @memberof PayoutRecipient
|
|
3988
|
+
*/
|
|
3989
|
+
recipient_account_id?: string;
|
|
3990
|
+
}
|
|
3947
3991
|
/**
|
|
3948
3992
|
*
|
|
3949
3993
|
* @export
|