@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.
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -1417,9 +1417,9 @@ export interface paths {
|
|
|
1417
1417
|
path?: never;
|
|
1418
1418
|
cookie?: never;
|
|
1419
1419
|
};
|
|
1420
|
-
/** @description Retrieve opening trial balance */
|
|
1420
|
+
/** @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. */
|
|
1421
1421
|
get: operations["getGeneralLedgerOpeningTrialBalance"];
|
|
1422
|
-
/** @description Update the manual opening trial balance. Replaces
|
|
1422
|
+
/** @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. */
|
|
1423
1423
|
put: operations["putGeneralLedgerOpeningTrialBalance"];
|
|
1424
1424
|
post?: never;
|
|
1425
1425
|
delete?: never;
|
|
@@ -26491,6 +26491,7 @@ export interface operations {
|
|
|
26491
26491
|
/** @description Value in cents (100 = 1€) */
|
|
26492
26492
|
operatingCentTotal: number;
|
|
26493
26493
|
editable: boolean;
|
|
26494
|
+
importable: boolean;
|
|
26494
26495
|
}[];
|
|
26495
26496
|
assignment: {
|
|
26496
26497
|
/** Format: uuid */
|
|
@@ -26503,12 +26504,6 @@ export interface operations {
|
|
|
26503
26504
|
/** @description Value in cents (100 = 1€) */
|
|
26504
26505
|
operatingCentTotal: number;
|
|
26505
26506
|
};
|
|
26506
|
-
trustReversal: {
|
|
26507
|
-
/** @enum {string} */
|
|
26508
|
-
status: "not_created" | "active" | "locked";
|
|
26509
|
-
journalEntryIds: string[];
|
|
26510
|
-
lastRefreshedAt?: string | null;
|
|
26511
|
-
};
|
|
26512
26507
|
};
|
|
26513
26508
|
};
|
|
26514
26509
|
};
|
|
@@ -26663,7 +26658,7 @@ export interface operations {
|
|
|
26663
26658
|
/** Format: uuid */
|
|
26664
26659
|
accountId: string;
|
|
26665
26660
|
/** @description Value in cents (100 = 1€) */
|
|
26666
|
-
|
|
26661
|
+
operatingCentTotal: number;
|
|
26667
26662
|
}[];
|
|
26668
26663
|
};
|
|
26669
26664
|
};
|
|
@@ -26703,6 +26698,7 @@ export interface operations {
|
|
|
26703
26698
|
/** @description Value in cents (100 = 1€) */
|
|
26704
26699
|
operatingCentTotal: number;
|
|
26705
26700
|
editable: boolean;
|
|
26701
|
+
importable: boolean;
|
|
26706
26702
|
}[];
|
|
26707
26703
|
assignment: {
|
|
26708
26704
|
/** Format: uuid */
|
|
@@ -26715,12 +26711,6 @@ export interface operations {
|
|
|
26715
26711
|
/** @description Value in cents (100 = 1€) */
|
|
26716
26712
|
operatingCentTotal: number;
|
|
26717
26713
|
};
|
|
26718
|
-
trustReversal: {
|
|
26719
|
-
/** @enum {string} */
|
|
26720
|
-
status: "not_created" | "active" | "locked";
|
|
26721
|
-
journalEntryIds: string[];
|
|
26722
|
-
lastRefreshedAt?: string | null;
|
|
26723
|
-
};
|
|
26724
26714
|
};
|
|
26725
26715
|
};
|
|
26726
26716
|
};
|