@finverse/sdk-typescript 0.0.184 → 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 +44 -37
- package/package.json +2 -2
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; }}
|
|
@@ -5075,37 +5081,12 @@ export interface PayoutSnapshotDetails {
|
|
|
5075
5081
|
* @memberof PayoutSnapshotDetails
|
|
5076
5082
|
*/
|
|
5077
5083
|
mandate_id?: string;
|
|
5078
|
-
}
|
|
5079
|
-
/**
|
|
5080
|
-
*
|
|
5081
|
-
* @export
|
|
5082
|
-
* @interface PayoutSnapshotPaymentAccount
|
|
5083
|
-
*/
|
|
5084
|
-
export interface PayoutSnapshotPaymentAccount {
|
|
5085
|
-
/**
|
|
5086
|
-
*
|
|
5087
|
-
* @type {string}
|
|
5088
|
-
* @memberof PayoutSnapshotPaymentAccount
|
|
5089
|
-
*/
|
|
5090
|
-
payment_user_id?: string;
|
|
5091
5084
|
/**
|
|
5092
5085
|
*
|
|
5093
5086
|
* @type {string}
|
|
5094
|
-
* @memberof
|
|
5095
|
-
*/
|
|
5096
|
-
payment_account_id?: string;
|
|
5097
|
-
/**
|
|
5098
|
-
*
|
|
5099
|
-
* @type {string}
|
|
5100
|
-
* @memberof PayoutSnapshotPaymentAccount
|
|
5101
|
-
*/
|
|
5102
|
-
name?: string;
|
|
5103
|
-
/**
|
|
5104
|
-
*
|
|
5105
|
-
* @type {string}
|
|
5106
|
-
* @memberof PayoutSnapshotPaymentAccount
|
|
5087
|
+
* @memberof PayoutSnapshotDetails
|
|
5107
5088
|
*/
|
|
5108
|
-
|
|
5089
|
+
scheduled_date?: string;
|
|
5109
5090
|
}
|
|
5110
5091
|
/**
|
|
5111
5092
|
*
|
|
@@ -5130,7 +5111,7 @@ export interface PayoutSnapshotResponse {
|
|
|
5130
5111
|
* @type {string}
|
|
5131
5112
|
* @memberof PayoutSnapshotResponse
|
|
5132
5113
|
*/
|
|
5133
|
-
|
|
5114
|
+
type?: string;
|
|
5134
5115
|
/**
|
|
5135
5116
|
*
|
|
5136
5117
|
* @type {string}
|
|
@@ -5148,19 +5129,21 @@ export interface PayoutSnapshotResponse {
|
|
|
5148
5129
|
* @type {string}
|
|
5149
5130
|
* @memberof PayoutSnapshotResponse
|
|
5150
5131
|
*/
|
|
5151
|
-
|
|
5132
|
+
transaction_date?: string;
|
|
5152
5133
|
/**
|
|
5153
5134
|
*
|
|
5154
|
-
* @type {
|
|
5135
|
+
* @type {PayoutSnapshotDetails}
|
|
5155
5136
|
* @memberof PayoutSnapshotResponse
|
|
5156
5137
|
*/
|
|
5157
|
-
|
|
5138
|
+
payment_details?: PayoutSnapshotDetails;
|
|
5158
5139
|
/**
|
|
5159
5140
|
*
|
|
5160
|
-
* @type {
|
|
5141
|
+
* @type {{ [key: string]: string; }}
|
|
5161
5142
|
* @memberof PayoutSnapshotResponse
|
|
5162
5143
|
*/
|
|
5163
|
-
|
|
5144
|
+
metadata?: {
|
|
5145
|
+
[key: string]: string;
|
|
5146
|
+
};
|
|
5164
5147
|
/**
|
|
5165
5148
|
*
|
|
5166
5149
|
* @type {number}
|
|
@@ -5175,16 +5158,40 @@ export interface PayoutSnapshotResponse {
|
|
|
5175
5158
|
currency?: string;
|
|
5176
5159
|
/**
|
|
5177
5160
|
*
|
|
5178
|
-
* @type {
|
|
5161
|
+
* @type {MandateRecipient}
|
|
5162
|
+
* @memberof PayoutSnapshotResponse
|
|
5163
|
+
*/
|
|
5164
|
+
sender?: MandateRecipient;
|
|
5165
|
+
/**
|
|
5166
|
+
*
|
|
5167
|
+
* @type {MandateRecipientAccount}
|
|
5179
5168
|
* @memberof PayoutSnapshotResponse
|
|
5180
5169
|
*/
|
|
5181
|
-
|
|
5170
|
+
sender_account?: MandateRecipientAccount;
|
|
5182
5171
|
/**
|
|
5183
5172
|
*
|
|
5184
|
-
* @type {
|
|
5173
|
+
* @type {GetMandateSender}
|
|
5185
5174
|
* @memberof PayoutSnapshotResponse
|
|
5186
5175
|
*/
|
|
5187
|
-
|
|
5176
|
+
recipient?: GetMandateSender;
|
|
5177
|
+
/**
|
|
5178
|
+
*
|
|
5179
|
+
* @type {MandateSenderAccount}
|
|
5180
|
+
* @memberof PayoutSnapshotResponse
|
|
5181
|
+
*/
|
|
5182
|
+
recipient_account?: MandateSenderAccount;
|
|
5183
|
+
/**
|
|
5184
|
+
*
|
|
5185
|
+
* @type {Array<Fee>}
|
|
5186
|
+
* @memberof PayoutSnapshotResponse
|
|
5187
|
+
*/
|
|
5188
|
+
fees?: Array<Fee>;
|
|
5189
|
+
/**
|
|
5190
|
+
*
|
|
5191
|
+
* @type {FvErrorModelV2}
|
|
5192
|
+
* @memberof PayoutSnapshotResponse
|
|
5193
|
+
*/
|
|
5194
|
+
error?: FvErrorModelV2;
|
|
5188
5195
|
}
|
|
5189
5196
|
/**
|
|
5190
5197
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.186",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/chai": "^4.3.9",
|
|
25
|
-
"@types/mocha": "^10.0.
|
|
25
|
+
"@types/mocha": "^10.0.3",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^4.3.10",
|