@vrplatform/api 1.3.1-stage.1960 → 1.3.1-stage.1961

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.1-stage.1960",
6
+ "version": "1.3.1-stage.1961",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -26178,6 +26178,21 @@ export interface operations {
26178
26178
  transfers: number;
26179
26179
  /** @description Value in cents (100 = 1€) */
26180
26180
  balanceEnd: number;
26181
+ totals: {
26182
+ /** @description Value in cents (100 = 1€) */
26183
+ balanceStart: number;
26184
+ /** @description Value in cents (100 = 1€) */
26185
+ netRevenue: number;
26186
+ /** @description Value in cents (100 = 1€) */
26187
+ expenses: number;
26188
+ /** @description Value in cents (100 = 1€) */
26189
+ netIncome: number;
26190
+ /** @description Value in cents (100 = 1€) */
26191
+ transfers: number;
26192
+ /** @description Value in cents (100 = 1€) */
26193
+ balanceEnd: number;
26194
+ reserve: number;
26195
+ };
26181
26196
  };
26182
26197
  uniqueRef: string;
26183
26198
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
@@ -26382,9 +26397,25 @@ export interface operations {
26382
26397
  transfers: number;
26383
26398
  /** @description Value in cents (100 = 1€) */
26384
26399
  balanceEnd: number;
26400
+ reserve: number;
26385
26401
  /** @description Currency in ISO 4217 format, will be converted to lowercase */
26386
26402
  currency: string;
26387
26403
  }[];
26404
+ totals?: {
26405
+ /** @description Value in cents (100 = 1€) */
26406
+ balanceStart: number;
26407
+ /** @description Value in cents (100 = 1€) */
26408
+ netRevenue: number;
26409
+ /** @description Value in cents (100 = 1€) */
26410
+ expenses: number;
26411
+ /** @description Value in cents (100 = 1€) */
26412
+ netIncome: number;
26413
+ /** @description Value in cents (100 = 1€) */
26414
+ transfers: number;
26415
+ /** @description Value in cents (100 = 1€) */
26416
+ balanceEnd: number;
26417
+ reserve: number;
26418
+ };
26388
26419
  };
26389
26420
  };
26390
26421
  };