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