@vrplatform/api 1.3.1-stage.4724 → 1.3.1-stage.4728

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.
@@ -1416,9 +1416,9 @@ export interface paths {
1416
1416
  path?: never;
1417
1417
  cookie?: never;
1418
1418
  };
1419
- /** @description Retrieve opening trial balance */
1419
+ /** @description Retrieve active balance-sheet and equity opening trial balance rows. Operating is editable for non-bank ledger accounts, Trust is read-only, and Combined is calculated as Operating plus Trust. Bank rows are visible but cannot be edited or imported. Trust totals aggregate active Trust journal activity across all party attribution before the GL start date. */
1420
1420
  get: operations["getGeneralLedgerOpeningTrialBalance"];
1421
- /** @description Update the manual opening trial balance. Replaces the manually entered opening balance postings that seed each account as of the go-live date; existing journal activity after that date is not touched. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1421
+ /** @description Update the manual opening trial balance. Replaces Operating values for editable non-bank ledger rows. Trust-backed rows return importable=false but remain manually editable. Bank rows and existing journal activity after the go-live date are not changed. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1422
1422
  put: operations["putGeneralLedgerOpeningTrialBalance"];
1423
1423
  post?: never;
1424
1424
  delete?: never;
@@ -26490,6 +26490,7 @@ export interface operations {
26490
26490
  /** @description Value in cents (100 = 1€) */
26491
26491
  operatingCentTotal: number;
26492
26492
  editable: boolean;
26493
+ importable: boolean;
26493
26494
  }[];
26494
26495
  assignment: {
26495
26496
  /** Format: uuid */
@@ -26502,12 +26503,6 @@ export interface operations {
26502
26503
  /** @description Value in cents (100 = 1€) */
26503
26504
  operatingCentTotal: number;
26504
26505
  };
26505
- trustReversal: {
26506
- /** @enum {string} */
26507
- status: "not_created" | "active" | "locked";
26508
- journalEntryIds: string[];
26509
- lastRefreshedAt?: string | null;
26510
- };
26511
26506
  };
26512
26507
  };
26513
26508
  };
@@ -26662,7 +26657,7 @@ export interface operations {
26662
26657
  /** Format: uuid */
26663
26658
  accountId: string;
26664
26659
  /** @description Value in cents (100 = 1€) */
26665
- combinedCentTotal: number;
26660
+ operatingCentTotal: number;
26666
26661
  }[];
26667
26662
  };
26668
26663
  };
@@ -26702,6 +26697,7 @@ export interface operations {
26702
26697
  /** @description Value in cents (100 = 1€) */
26703
26698
  operatingCentTotal: number;
26704
26699
  editable: boolean;
26700
+ importable: boolean;
26705
26701
  }[];
26706
26702
  assignment: {
26707
26703
  /** Format: uuid */
@@ -26714,12 +26710,6 @@ export interface operations {
26714
26710
  /** @description Value in cents (100 = 1€) */
26715
26711
  operatingCentTotal: number;
26716
26712
  };
26717
- trustReversal: {
26718
- /** @enum {string} */
26719
- status: "not_created" | "active" | "locked";
26720
- journalEntryIds: string[];
26721
- lastRefreshedAt?: string | null;
26722
- };
26723
26713
  };
26724
26714
  };
26725
26715
  };