@finverse/sdk-typescript 0.0.245 → 0.0.247
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 +25 -0
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -4754,6 +4754,12 @@ export interface PaymentAccountDetails {
|
|
|
4754
4754
|
* @memberof PaymentAccountDetails
|
|
4755
4755
|
*/
|
|
4756
4756
|
currencies?: Array<string>;
|
|
4757
|
+
/**
|
|
4758
|
+
* The business units the payment account belongs to
|
|
4759
|
+
* @type {Array<string>}
|
|
4760
|
+
* @memberof PaymentAccountDetails
|
|
4761
|
+
*/
|
|
4762
|
+
business_units?: Array<string>;
|
|
4757
4763
|
/**
|
|
4758
4764
|
* 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.
|
|
4759
4765
|
* @type {{ [key: string]: string; }}
|
|
@@ -5632,6 +5638,12 @@ export interface PaymentSetupOptions {
|
|
|
5632
5638
|
* @memberof PaymentSetupOptions
|
|
5633
5639
|
*/
|
|
5634
5640
|
payment_method_types?: Array<PaymentSetupOptionsPaymentMethodTypesEnum>;
|
|
5641
|
+
/**
|
|
5642
|
+
*
|
|
5643
|
+
* @type {RecipientAccountFilters}
|
|
5644
|
+
* @memberof PaymentSetupOptions
|
|
5645
|
+
*/
|
|
5646
|
+
recipient_account_filters?: RecipientAccountFilters;
|
|
5635
5647
|
}
|
|
5636
5648
|
export declare const PaymentSetupOptionsFuturePaymentsEnum: {
|
|
5637
5649
|
readonly Autopay: "AUTOPAY";
|
|
@@ -6254,6 +6266,19 @@ export interface RapidstorMetadataResponse {
|
|
|
6254
6266
|
*/
|
|
6255
6267
|
tenant_default_currency?: string;
|
|
6256
6268
|
}
|
|
6269
|
+
/**
|
|
6270
|
+
*
|
|
6271
|
+
* @export
|
|
6272
|
+
* @interface RecipientAccountFilters
|
|
6273
|
+
*/
|
|
6274
|
+
export interface RecipientAccountFilters {
|
|
6275
|
+
/**
|
|
6276
|
+
*
|
|
6277
|
+
* @type {string}
|
|
6278
|
+
* @memberof RecipientAccountFilters
|
|
6279
|
+
*/
|
|
6280
|
+
business_unit: string;
|
|
6281
|
+
}
|
|
6257
6282
|
/**
|
|
6258
6283
|
*
|
|
6259
6284
|
* @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.247",
|
|
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.16",
|
|
25
|
-
"@types/mocha": "^10.0.
|
|
25
|
+
"@types/mocha": "^10.0.7",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^5.1.1",
|