@vrplatform/api 1.3.0-stage.1161 → 1.3.0-stage.1164

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.0-stage.1161",
6
+ "version": "1.3.0-stage.1164",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",
@@ -24241,9 +24241,11 @@ export interface operations {
24241
24241
  query: {
24242
24242
  startDate: string;
24243
24243
  endDate: string;
24244
- classification?: ("asset" | "expense" | "liability" | "revenue")[];
24244
+ classification?: string;
24245
24245
  type?: "bank" | "ledger";
24246
24246
  party?: "owners" | "manager";
24247
+ accountIds?: string;
24248
+ search?: string;
24247
24249
  };
24248
24250
  header?: {
24249
24251
  "X-Team-Id"?: string;
@@ -24261,25 +24263,15 @@ export interface operations {
24261
24263
  content: {
24262
24264
  "application/json": {
24263
24265
  unassignedOpeningBalance: number;
24264
- unassignedEntries: {
24265
- id: string;
24266
- centTotal: number;
24267
- txnNum: number | null;
24268
- description: string | null;
24269
- uniqueRef: string | null;
24270
- }[];
24266
+ unassignedPeriodChange: number;
24267
+ unassignedClosingBalance: number;
24271
24268
  accounts: {
24272
24269
  id: string;
24273
24270
  title: string;
24274
24271
  classification: string | null;
24275
24272
  openingBalance: number;
24276
- entries: {
24277
- id: string;
24278
- centTotal: number;
24279
- txnNum: number | null;
24280
- description: string | null;
24281
- uniqueRef: string | null;
24282
- }[];
24273
+ periodChange: number;
24274
+ closingBalance: number;
24283
24275
  }[];
24284
24276
  };
24285
24277
  };
@@ -24336,9 +24328,11 @@ export interface operations {
24336
24328
  query: {
24337
24329
  startDate: string;
24338
24330
  endDate: string;
24339
- classification?: ("asset" | "expense" | "liability" | "revenue")[];
24331
+ classification?: string;
24340
24332
  type?: "bank" | "ledger";
24341
24333
  party?: "owners" | "manager";
24334
+ accountIds?: string;
24335
+ search?: string;
24342
24336
  };
24343
24337
  header?: {
24344
24338
  "X-Team-Id"?: string;
@@ -25079,7 +25073,8 @@ export interface operations {
25079
25073
  runFlow: {
25080
25074
  parameters: {
25081
25075
  query?: {
25082
- date?: string;
25076
+ dateRange?: string;
25077
+ isDateRangeEndInclusive?: boolean;
25083
25078
  };
25084
25079
  header?: {
25085
25080
  "X-Team-Id"?: string;