@finverse/sdk-typescript 0.0.246 → 0.0.248

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.
Files changed (2) hide show
  1. package/dist/api.d.ts +31 -0
  2. package/package.json +3 -3
package/dist/api.d.ts CHANGED
@@ -5638,6 +5638,12 @@ export interface PaymentSetupOptions {
5638
5638
  * @memberof PaymentSetupOptions
5639
5639
  */
5640
5640
  payment_method_types?: Array<PaymentSetupOptionsPaymentMethodTypesEnum>;
5641
+ /**
5642
+ *
5643
+ * @type {RecipientAccountFilters}
5644
+ * @memberof PaymentSetupOptions
5645
+ */
5646
+ recipient_account_filters?: RecipientAccountFilters;
5641
5647
  }
5642
5648
  export declare const PaymentSetupOptionsFuturePaymentsEnum: {
5643
5649
  readonly Autopay: "AUTOPAY";
@@ -6222,6 +6228,12 @@ export interface RapidstorMetadataRequest {
6222
6228
  * @memberof RapidstorMetadataRequest
6223
6229
  */
6224
6230
  i_anniv_days?: number;
6231
+ /**
6232
+ *
6233
+ * @type {string}
6234
+ * @memberof RapidstorMetadataRequest
6235
+ */
6236
+ account_token?: string;
6225
6237
  }
6226
6238
  /**
6227
6239
  *
@@ -6259,6 +6271,25 @@ export interface RapidstorMetadataResponse {
6259
6271
  * @memberof RapidstorMetadataResponse
6260
6272
  */
6261
6273
  tenant_default_currency?: string;
6274
+ /**
6275
+ *
6276
+ * @type {string}
6277
+ * @memberof RapidstorMetadataResponse
6278
+ */
6279
+ account_token?: string;
6280
+ }
6281
+ /**
6282
+ *
6283
+ * @export
6284
+ * @interface RecipientAccountFilters
6285
+ */
6286
+ export interface RecipientAccountFilters {
6287
+ /**
6288
+ *
6289
+ * @type {string}
6290
+ * @memberof RecipientAccountFilters
6291
+ */
6292
+ business_unit: string;
6262
6293
  }
6263
6294
  /**
6264
6295
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.246",
3
+ "version": "0.0.248",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "devDependencies": {
24
24
  "@types/chai": "^4.3.16",
25
- "@types/mocha": "^10.0.6",
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",
29
- "mocha": "^10.4.0",
29
+ "mocha": "^10.5.2",
30
30
  "ts-node": "^10.9.2",
31
31
  "typescript": "^3.6.4"
32
32
  },