@vrplatform/api 1.3.1-stage.6496 → 1.3.1-stage.6501
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/build/main/generated/v1.d.ts +5 -1
- package/build/main/generated/v1.js.map +1 -1
- package/build/main/index.d.ts +1 -0
- package/build/main/index.js +1 -0
- package/build/main/index.js.map +1 -1
- package/build/main/vrt-mcp.d.ts +213 -0
- package/build/main/vrt-mcp.js +154 -0
- package/build/main/vrt-mcp.js.map +1 -0
- package/build/module/generated/v1.d.ts +5 -1
- package/build/module/generated/v1.js.map +1 -1
- package/build/module/index.d.ts +1 -0
- package/build/module/index.js +1 -0
- package/build/module/index.js.map +1 -1
- package/build/module/vrt-mcp.d.ts +213 -0
- package/build/module/vrt-mcp.js +151 -0
- package/build/module/vrt-mcp.js.map +1 -0
- package/package.json +1 -1
- package/src/generated/v1.ts +5 -1
- package/src/index.ts +1 -0
- package/src/vrt-mcp.ts +178 -0
|
@@ -5600,7 +5600,7 @@ export interface paths {
|
|
|
5600
5600
|
get?: never;
|
|
5601
5601
|
put?: never;
|
|
5602
5602
|
/**
|
|
5603
|
-
* @description Regenerate reservation journal entries. Recomputes postings from the current reservation financials for the given ids (or the whole portfolio) and rewrites unlocked entries; lockPolicy controls how lock-flagged reservations are handled, while books-closed and owner-statement attachment locks always apply. If applying only unlocked changes would split an otherwise balanced journal group, the refresh returns a structured journalEntries lock and writes nothing. If active reservation lines have no account mapping, the response asks the caller to map or exclude them in Reservation Accounts and returns the affected line types in structured error context. bypassStatementPeriod is only supported for a single-reservation refresh. Generic dry run is unavailable because this operation needs a dedicated consequence preview for projected posting changes. See https://docs.vrplatform.app/guides/build/reservations.
|
|
5603
|
+
* @description Regenerate reservation journal entries. Recomputes postings from the current reservation financials for the given ids (or the whole portfolio) and rewrites unlocked entries; explicit ids complete inline and total counts refreshed reservations, while omitting ids queues portfolio work and total counts queued reservations. lockPolicy controls how lock-flagged reservations are handled, while books-closed and owner-statement attachment locks always apply. If applying only unlocked changes would split an otherwise balanced journal group, the refresh returns a structured journalEntries lock and writes nothing. If active reservation lines have no account mapping, the response asks the caller to map or exclude them in Reservation Accounts and returns the affected line types in structured error context. bypassStatementPeriod is only supported for a single-reservation refresh. Generic dry run is unavailable because this operation needs a dedicated consequence preview for projected posting changes. See https://docs.vrplatform.app/guides/build/reservations.
|
|
5604
5604
|
*
|
|
5605
5605
|
* Required scope: reservations:post-journals
|
|
5606
5606
|
*/
|
|
@@ -35270,6 +35270,7 @@ export interface operations {
|
|
|
35270
35270
|
};
|
|
35271
35271
|
}[];
|
|
35272
35272
|
transaction?: {
|
|
35273
|
+
/** @description Required for every transaction except transfers */
|
|
35273
35274
|
description?: string;
|
|
35274
35275
|
status?: ("active" | "inactive") | null;
|
|
35275
35276
|
/** @description Root bank account; the source account for transfers */
|
|
@@ -35484,6 +35485,7 @@ export interface operations {
|
|
|
35484
35485
|
};
|
|
35485
35486
|
}[];
|
|
35486
35487
|
transaction?: {
|
|
35488
|
+
/** @description Required for every transaction except transfers */
|
|
35487
35489
|
description?: string;
|
|
35488
35490
|
status?: ("active" | "inactive") | null;
|
|
35489
35491
|
/** @description Root bank account; the source account for transfers */
|
|
@@ -149229,6 +149231,7 @@ export interface operations {
|
|
|
149229
149231
|
requestBody?: {
|
|
149230
149232
|
content: {
|
|
149231
149233
|
"application/json": {
|
|
149234
|
+
/** @description Required for every transaction except transfers */
|
|
149232
149235
|
description?: string;
|
|
149233
149236
|
status?: ("active" | "inactive") | null;
|
|
149234
149237
|
/** @description Root bank account; the source account for transfers */
|
|
@@ -151164,6 +151167,7 @@ export interface operations {
|
|
|
151164
151167
|
connectionId: string;
|
|
151165
151168
|
createOnly?: boolean;
|
|
151166
151169
|
data: {
|
|
151170
|
+
/** @description Required for every transaction except transfers */
|
|
151167
151171
|
description?: string;
|
|
151168
151172
|
status?: ("active" | "inactive") | null;
|
|
151169
151173
|
/** @description Root bank account; the source account for transfers */
|