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