@finverse/sdk-typescript 0.0.185 → 0.0.186
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 +20 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4105,6 +4105,12 @@ export interface MandateSenderAccount {
|
|
|
4105
4105
|
* @memberof MandateSenderAccount
|
|
4106
4106
|
*/
|
|
4107
4107
|
user_id?: string;
|
|
4108
|
+
/**
|
|
4109
|
+
*
|
|
4110
|
+
* @type {string}
|
|
4111
|
+
* @memberof MandateSenderAccount
|
|
4112
|
+
*/
|
|
4113
|
+
bank_code?: string;
|
|
4108
4114
|
/**
|
|
4109
4115
|
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
4110
4116
|
* @type {{ [key: string]: string; }}
|
|
@@ -5130,6 +5136,14 @@ export interface PayoutSnapshotResponse {
|
|
|
5130
5136
|
* @memberof PayoutSnapshotResponse
|
|
5131
5137
|
*/
|
|
5132
5138
|
payment_details?: PayoutSnapshotDetails;
|
|
5139
|
+
/**
|
|
5140
|
+
*
|
|
5141
|
+
* @type {{ [key: string]: string; }}
|
|
5142
|
+
* @memberof PayoutSnapshotResponse
|
|
5143
|
+
*/
|
|
5144
|
+
metadata?: {
|
|
5145
|
+
[key: string]: string;
|
|
5146
|
+
};
|
|
5133
5147
|
/**
|
|
5134
5148
|
*
|
|
5135
5149
|
* @type {number}
|
|
@@ -5166,6 +5180,12 @@ export interface PayoutSnapshotResponse {
|
|
|
5166
5180
|
* @memberof PayoutSnapshotResponse
|
|
5167
5181
|
*/
|
|
5168
5182
|
recipient_account?: MandateSenderAccount;
|
|
5183
|
+
/**
|
|
5184
|
+
*
|
|
5185
|
+
* @type {Array<Fee>}
|
|
5186
|
+
* @memberof PayoutSnapshotResponse
|
|
5187
|
+
*/
|
|
5188
|
+
fees?: Array<Fee>;
|
|
5169
5189
|
/**
|
|
5170
5190
|
*
|
|
5171
5191
|
* @type {FvErrorModelV2}
|