@vrplatform/api 1.3.1-stage.4424 → 1.3.1-stage.4427

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.
@@ -1124,7 +1124,7 @@ export interface paths {
1124
1124
  };
1125
1125
  /** @description Retrieve opening balance accounts payable summary by party */
1126
1126
  get: operations["getGeneralLedgerOpeningBalancesAccountsPayable"];
1127
- /** @description Update opening balance accounts payable by party */
1127
+ /** @description Update opening balance accounts payable by party. Replaces the accounts payable opening balance postings for the given party as of the go-live date and returns the recalculated summary. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1128
1128
  put: operations["putGeneralLedgerOpeningBalancesAccountsPayable"];
1129
1129
  post?: never;
1130
1130
  delete?: never;
@@ -1142,7 +1142,7 @@ export interface paths {
1142
1142
  };
1143
1143
  /** @description Retrieve opening balance accounts receivable / deferred revenue summary */
1144
1144
  get: operations["getGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue"];
1145
- /** @description Update opening balance accounts receivable / deferred revenue summary */
1145
+ /** @description Update opening balance accounts receivable / deferred revenue. Replaces the receivable and deferred revenue opening balance postings as of the go-live date and returns the recalculated summary. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1146
1146
  put: operations["putGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue"];
1147
1147
  post?: never;
1148
1148
  delete?: never;
@@ -1160,7 +1160,7 @@ export interface paths {
1160
1160
  };
1161
1161
  /** @description Retrieve opening balance advanced deposits summary */
1162
1162
  get: operations["getGeneralLedgerOpeningBalancesAdvancedDeposits"];
1163
- /** @description Update opening balance advanced deposits */
1163
+ /** @description Update opening balance advanced deposits. Replaces the advanced deposit opening balance postings for stays that were paid before the go-live date and returns the recalculated summary. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1164
1164
  put: operations["putGeneralLedgerOpeningBalancesAdvancedDeposits"];
1165
1165
  post?: never;
1166
1166
  delete?: never;
@@ -1176,7 +1176,7 @@ export interface paths {
1176
1176
  path?: never;
1177
1177
  cookie?: never;
1178
1178
  };
1179
- /** @description Retrieve synced payments/refunds for review advanced deposits modal */
1179
+ /** @description Retrieve synced payments and refunds that are candidates for advanced deposit opening balances */
1180
1180
  get: operations["getGeneralLedgerOpeningBalancesAdvancedDepositsSyncedPaymentsRefunds"];
1181
1181
  put?: never;
1182
1182
  post?: never;
@@ -1195,7 +1195,7 @@ export interface paths {
1195
1195
  };
1196
1196
  /** @description Retrieve opening balance tax payable summary */
1197
1197
  get: operations["getGeneralLedgerOpeningBalancesTaxPayable"];
1198
- /** @description Update opening balance tax payable */
1198
+ /** @description Update opening balance tax payable. Replaces the tax payable opening balance postings as of the go-live date and returns the recalculated summary. Supports dryRun. See https://docs.vrplatform.app/guides/integrate/opening-trial-balance. */
1199
1199
  put: operations["putGeneralLedgerOpeningBalancesTaxPayable"];
1200
1200
  post?: never;
1201
1201
  delete?: never;
@@ -1213,7 +1213,7 @@ export interface paths {
1213
1213
  };
1214
1214
  /** @description Retrieve opening trial balance */
1215
1215
  get: operations["getGeneralLedgerOpeningTrialBalance"];
1216
- /** @description Update opening trial balance */
1216
+ /** @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. */
1217
1217
  put: operations["putGeneralLedgerOpeningTrialBalance"];
1218
1218
  post?: never;
1219
1219
  delete?: never;
@@ -1717,7 +1717,7 @@ export interface paths {
1717
1717
  /** @description List listing ownership periods */
1718
1718
  get: operations["getListingsOwnershipPeriods"];
1719
1719
  put?: never;
1720
- /** @description Create a listing ownership period */
1720
+ /** @description Create a listing ownership period. Periods cannot overlap; onConflict controls how date-range conflicts with existing periods are resolved (updateExisting by default, or error / adjustInsertingItem). Journal entries in the range are relinked to the new period, and setListingInactive=true marks entries in the range inactive so they are excluded from the books and owner statements. Changes touching books-closed or statement-locked months are rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/portfolio. */
1721
1721
  post: operations["postListingsOwnershipPeriods"];
1722
1722
  delete?: never;
1723
1723
  options?: never;
@@ -1734,10 +1734,10 @@ export interface paths {
1734
1734
  };
1735
1735
  /** @description Get a listing ownership period by ID */
1736
1736
  get: operations["getListingsOwnershipPeriodsById"];
1737
- /** @description Update a listing ownership period by ID */
1737
+ /** @description Update a listing ownership period by ID. Date-range changes relink journal entries to the adjusted period, with onConflict controlling how overlaps with neighboring periods are resolved (updateExisting by default). Toggling setListingInactive flips the active flag of the journal entries in the range and refreshes affected reservation totals. Changes touching books-closed or statement-locked months are rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/portfolio. */
1738
1738
  put: operations["putListingsOwnershipPeriodsById"];
1739
1739
  post?: never;
1740
- /** @description Delete a listing ownership period by ID */
1740
+ /** @description Delete a listing ownership period by ID. When deleting the last period, the default onLast=extendPrevious extends the previous period to cover the deleted range so journal entries keep an owning period; onLast=none leaves the gap open. Deletion is rejected when the period is locked by closed books or finalized statements unless onLocked=archive is passed, which archives instead of deleting. Supports dryRun. See https://docs.vrplatform.app/guides/build/portfolio. */
1741
1741
  delete: operations["deleteListingsOwnershipPeriodsById"];
1742
1742
  options?: never;
1743
1743
  head?: never;
@@ -3003,7 +3003,7 @@ export interface paths {
3003
3003
  /** @description Get reservations */
3004
3004
  get: operations["getReservations"];
3005
3005
  put?: never;
3006
- /** @description Create reservation */
3006
+ /** @description Create a reservation. Financial lines post journal entries inline against the listing ownership period covering the stay, so writes into books-closed or statement-locked months are rejected. Owner API keys cannot create reservations. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations. */
3007
3007
  post: operations["postReservations"];
3008
3008
  delete?: never;
3009
3009
  options?: never;
@@ -3054,7 +3054,7 @@ export interface paths {
3054
3054
  };
3055
3055
  get?: never;
3056
3056
  put?: never;
3057
- /** @description Generate reservation journal entries */
3057
+ /** @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. 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. */
3058
3058
  post: operations["postReservationsJournalEntries"];
3059
3059
  delete?: never;
3060
3060
  options?: never;
@@ -3123,10 +3123,10 @@ export interface paths {
3123
3123
  };
3124
3124
  /** @description Get reservation By ID */
3125
3125
  get: operations["getReservationsById"];
3126
- /** @description Update Reservation By ID */
3126
+ /** @description Update a reservation by ID. Financial changes refresh the reservation journal inline; a reservation locked by closed books, a finalized statement period, or entries attached to an owner statement rejects them unless the change posts via a generalLedgerPostingAt date after the locked range. Owner API keys cannot update reservations. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations#editability. */
3127
3127
  put: operations["putReservationsById"];
3128
3128
  post?: never;
3129
- /** @description Delete reservation By ID */
3129
+ /** @description Delete a reservation by ID. Removes the reservation and its journal entries; deletion is rejected when the reservation is locked by closed books or statement attachments unless onLocked=archive is passed, which archives it instead while keeping the locked postings intact. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations#editability. */
3130
3130
  delete: operations["deleteReservationsById"];
3131
3131
  options?: never;
3132
3132
  head?: never;
@@ -3141,7 +3141,7 @@ export interface paths {
3141
3141
  cookie?: never;
3142
3142
  };
3143
3143
  get?: never;
3144
- /** @description Update reservation general ledger status (active/inactive) */
3144
+ /** @description Update reservation general ledger status (active/inactive). Setting inactive flips the active flag of the reservation journal entries so they are excluded from the books and owner statements; setting active restores them. The change is rejected for entries locked by closed books or an owner statement attachment. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations. */
3145
3145
  put: operations["putReservationsByIdStatus"];
3146
3146
  post?: never;
3147
3147
  delete?: never;
@@ -3159,7 +3159,7 @@ export interface paths {
3159
3159
  };
3160
3160
  get?: never;
3161
3161
  put?: never;
3162
- /** @description Create a reservation adjustment line */
3162
+ /** @description Create a reservation adjustment line. Adjustments post additional journal entries for the reservation and are the supported way to change locked reservations: give the line a generalLedgerPostingAt date after the locked range and it posts into the open month instead of being rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations#adjustments-and-posting-dates. */
3163
3163
  post: operations["postReservationsByReservationIdAdjustments"];
3164
3164
  delete?: never;
3165
3165
  options?: never;
@@ -3175,10 +3175,10 @@ export interface paths {
3175
3175
  cookie?: never;
3176
3176
  };
3177
3177
  get?: never;
3178
- /** @description Update a reservation adjustment line */
3178
+ /** @description Update a reservation adjustment line. Refreshes the reservation journal inline; the update is rejected when the adjustment posts into a books-closed month or its journal entries are attached to an owner statement. Move the generalLedgerPostingAt date after the locked range to adjust a locked reservation. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations#adjustments-and-posting-dates. */
3179
3179
  put: operations["putReservationsByReservationIdAdjustmentsById"];
3180
3180
  post?: never;
3181
- /** @description Delete a reservation adjustment line */
3181
+ /** @description Delete a reservation adjustment line. Removes the adjustment and its journal entries and refreshes the reservation journal inline; deletion is rejected when the entries fall into a books-closed month or are attached to an owner statement. Supports dryRun. See https://docs.vrplatform.app/guides/build/reservations#adjustments-and-posting-dates. */
3182
3182
  delete: operations["deleteReservationsByReservationIdAdjustmentsById"];
3183
3183
  options?: never;
3184
3184
  head?: never;
@@ -3212,7 +3212,7 @@ export interface paths {
3212
3212
  /** @description Get Statements List. Get Statements, either by year or dateRange + a single listing or owner or by month */
3213
3213
  get: operations["getStatements"];
3214
3214
  put?: never;
3215
- /** @description Create Statements */
3215
+ /** @description Create an owner statement for an ownership period and month. Freezes the statement layout, and creating with a finalized status (inReview or published) attaches the period journal entries to the statement, locking them against further changes. Statements with blocking issues cannot be created in a non-draft status, and publishing out of month order is rejected. Supports dryRun. See https://docs.vrplatform.app/guides/build/statements. */
3216
3216
  post: operations["postStatements"];
3217
3217
  delete?: never;
3218
3218
  options?: never;
@@ -3244,7 +3244,7 @@ export interface paths {
3244
3244
  path?: never;
3245
3245
  cookie?: never;
3246
3246
  };
3247
- /** @description Get Owner Statement CSV export (detailed) */
3247
+ /** @description Get owner statement detailed CSV export for a single ownership period and month. Renders the projected statement even when no statement record has been persisted yet, so drafts and previews can be exported. Returns a short-lived download URL. */
3248
3248
  get: operations["getStatementsByPeriodCsv"];
3249
3249
  put?: never;
3250
3250
  post?: never;
@@ -3261,7 +3261,7 @@ export interface paths {
3261
3261
  path?: never;
3262
3262
  cookie?: never;
3263
3263
  };
3264
- /** @description Get Owner Statement CSV export */
3264
+ /** @description Get owner statement list CSV export. Produces a summary CSV with one row per matched statement (status, payment, and balance columns) for a month, year, date range, or explicit statement IDs. Returns a short-lived download URL. */
3265
3265
  get: operations["getStatementsCsv"];
3266
3266
  put?: never;
3267
3267
  post?: never;
@@ -3278,7 +3278,7 @@ export interface paths {
3278
3278
  path?: never;
3279
3279
  cookie?: never;
3280
3280
  };
3281
- /** @description Get Owner Statement CSV export (detailed) */
3281
+ /** @description Get owner statement detailed CSV export. Produces a combined line-level CSV across all statements matched by the list filters, with rows rendered through the statement layout. Returns a short-lived download URL. */
3282
3282
  get: operations["getStatementsDetailCsv"];
3283
3283
  put?: never;
3284
3284
  post?: never;
@@ -3402,7 +3402,7 @@ export interface paths {
3402
3402
  };
3403
3403
  get?: never;
3404
3404
  put?: never;
3405
- /** @description Pay a property manager out */
3405
+ /** @description Pay the property manager out. Creates a payout transaction with a single manager-party line against either a bank account (bankAccountId) or an explicit ledger account (lineAccountId) - exactly one of the two must be provided - and posts the resulting journal entries on the payout date. Creation respects books-closed and statement locks and supports dryRun. See https://docs.vrplatform.app/guides/build/statements. */
3406
3406
  post: operations["postStatementsManagerPay"];
3407
3407
  delete?: never;
3408
3408
  options?: never;
@@ -3417,7 +3417,7 @@ export interface paths {
3417
3417
  path?: never;
3418
3418
  cookie?: never;
3419
3419
  };
3420
- /** @description Get Owner Statement by ID */
3420
+ /** @description Get owner statement PDF by ownership period and month */
3421
3421
  get: operations["getStatementsPdf"];
3422
3422
  put?: never;
3423
3423
  post?: never;
@@ -3434,7 +3434,7 @@ export interface paths {
3434
3434
  path?: never;
3435
3435
  cookie?: never;
3436
3436
  };
3437
- /** @description Get Owner Statements ZIP by month or listing month range */
3437
+ /** @description Get owner statements PDF ZIP by month or listing month range */
3438
3438
  get: operations["getStatementsPdfBatch"];
3439
3439
  put?: never;
3440
3440
  post?: never;
@@ -3470,10 +3470,10 @@ export interface paths {
3470
3470
  };
3471
3471
  /** @description Get Statements by period. Get Statements by ownership period, can be multiple if multiple currencies are found in a month */
3472
3472
  get: operations["getStatementsById"];
3473
- /** @description Update Statements by Id */
3473
+ /** @description Update an owner statement status (draft, inReview, published). Moving to a finalized status attaches the period journal entries to the statement and locks writes that reference the same ownership period; moving back to draft detaches them again. Transitions are rejected when the statement has blocking issues, when a later statement for the period is already finalized, or when a prior month is still unfinalized. Publishing can optionally email owners via emailDelivery. Supports dryRun. See https://docs.vrplatform.app/guides/build/statements#status-transitions. */
3474
3474
  put: operations["putStatementsById"];
3475
3475
  post?: never;
3476
- /** @description Update Statements by Id */
3476
+ /** @description Delete an owner statement by ID. Deleting a finalized statement is rejected unless onLocked=unlockAndDelete is passed, which detaches the attached journal entries before deleting; historic-ledger entries that exist only for the statement are removed with it. Books-closed periods still deny the operation. Supports dryRun. See https://docs.vrplatform.app/guides/build/statements. */
3477
3477
  delete: operations["deleteStatementsById"];
3478
3478
  options?: never;
3479
3479
  head?: never;
@@ -3489,7 +3489,7 @@ export interface paths {
3489
3489
  };
3490
3490
  get?: never;
3491
3491
  put?: never;
3492
- /** @description Pay a statement */
3492
+ /** @description Pay an owner statement. Creates one payout transfer transaction per ownership member, split by ownership percentage, with each line referencing the paid statement; the resulting journal entries post on the payout date and are consumed by the statement of that month. Omitting amount pays the full net income and is rejected with 409 if an active payout already exists for the statement; pass an explicit amount to record additional partial payments. Payout creation respects books-closed and statement-period locks and supports dryRun. See https://docs.vrplatform.app/guides/build/statements#pay-a-published-statement. */
3493
3493
  post: operations["postStatementsByIdPay"];
3494
3494
  delete?: never;
3495
3495
  options?: never;
@@ -3699,7 +3699,7 @@ export interface paths {
3699
3699
  cookie?: never;
3700
3700
  };
3701
3701
  get?: never;
3702
- /** @description Update the books closing date of the current team (the team in scope via the x-team-id header) */
3702
+ /** @description Update the books closing date of the current team (the team in scope via the x-team-id header). Books closed is the hard accounting lock: journal-affecting writes to reservations, transactions, statements, and ownership periods dated on or before booksClosedAt are rejected across the API. Set booksClosedAt to null to reopen the books. See https://docs.vrplatform.app/guides/build/accounting-administration. */
3703
3703
  put: operations["putTeamBooksClosing"];
3704
3704
  post?: never;
3705
3705
  delete?: never;
@@ -3732,9 +3732,9 @@ export interface paths {
3732
3732
  path?: never;
3733
3733
  cookie?: never;
3734
3734
  };
3735
- /** @description Get the current team VRPilot Onboarding Guide state */
3735
+ /** @description Get the current team's onboarding guide state */
3736
3736
  get: operations["getTeamGuidesOnboarding"];
3737
- /** @description Update the current team VRPilot Onboarding Guide state */
3737
+ /** @description Update the current team's onboarding guide state */
3738
3738
  put: operations["putTeamGuidesOnboarding"];
3739
3739
  post?: never;
3740
3740
  delete?: never;
@@ -3909,7 +3909,7 @@ export interface paths {
3909
3909
  /** @description Transactions List */
3910
3910
  get: operations["getTransactions"];
3911
3911
  put?: never;
3912
- /** @description Create a transaction. Line party defaults and validity depend on transaction type, owner context, account assignment, and account category. See https://docs.vrplatform.app/build/transactions#decision-table. For expense attachments, first upload each file with POST /transactions/attachments, then pass the returned ids in attachmentIds. Attachments are only supported for expense transactions. */
3912
+ /** @description Create a transaction. Journal entries post inline per line; creation into a books-closed month or a statement-locked listing period is rejected. Line party defaults and validity depend on transaction type, owner context, account assignment, and account category. See https://docs.vrplatform.app/guides/build/transactions#decision-table. For expense attachments, first upload each file with POST /transactions/attachments, then pass the returned ids in attachmentIds. Attachments are only supported for expense transactions. */
3913
3913
  post: operations["postTransactions"];
3914
3914
  delete?: never;
3915
3915
  options?: never;
@@ -4029,7 +4029,7 @@ export interface paths {
4029
4029
  };
4030
4030
  get?: never;
4031
4031
  put?: never;
4032
- /** @description Regenerate transaction journal entries. Generic dry run is unavailable because this operation needs a dedicated consequence preview for projected posting changes. */
4032
+ /** @description Regenerate transaction journal entries. Recomputes postings from the current transaction lines for the given ids, listings, or date and rewrites unlocked entries; books-closed and owner-statement attachment locks always apply. Generic dry run is unavailable because this operation needs a dedicated consequence preview for projected posting changes. See https://docs.vrplatform.app/guides/build/transactions. */
4033
4033
  post: operations["postTransactionsJournalEntries"];
4034
4034
  delete?: never;
4035
4035
  options?: never;
@@ -4151,7 +4151,7 @@ export interface paths {
4151
4151
  };
4152
4152
  /** @description Transactions List */
4153
4153
  get: operations["getTransactionsById"];
4154
- /** @description Update a transaction by ID. Changing line account, assignment, listing, or reservation context can recompute a default or forced party. See https://docs.vrplatform.app/build/transactions#decision-table. For expense attachments, pass attachmentIds to replace the attached set. Omit attachmentIds to keep current attachments. Attachments are only supported for expense transactions. */
4154
+ /** @description Update a transaction by ID. Locks apply per line: lines whose journal entries are attached to an owner statement or fall into a books-closed month are locked while the remaining lines stay editable. Changing line account, assignment, listing, or reservation context can recompute a default or forced party. See https://docs.vrplatform.app/guides/build/transactions#decision-table. For expense attachments, pass attachmentIds to replace the attached set. Omit attachmentIds to keep current attachments. Attachments are only supported for expense transactions. */
4155
4155
  put: operations["putTransactionsById"];
4156
4156
  post?: never;
4157
4157
  /** @description Delete a transaction by ID. Use onLocked=archive to archive eligible locked transactions; the option does not bypass statement, books-closed, or reconciliation rules. */
@@ -4169,7 +4169,7 @@ export interface paths {
4169
4169
  cookie?: never;
4170
4170
  };
4171
4171
  get?: never;
4172
- /** @description Update a transaction line by ID. Account, assignment, listing, and reservation changes can recompute a default or forced party. See https://docs.vrplatform.app/build/transactions#decision-table. */
4172
+ /** @description Update a transaction line by ID. Account, assignment, listing, and reservation changes can recompute a default or forced party. See https://docs.vrplatform.app/guides/build/transactions#decision-table. */
4173
4173
  put: operations["putTransactionsByTransactionIdLinesById"];
4174
4174
  post?: never;
4175
4175
  delete?: never;
@@ -4593,6 +4593,7 @@ export interface operations {
4593
4593
  postAccounts: {
4594
4594
  parameters: {
4595
4595
  query?: {
4596
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
4596
4597
  dryRun?: boolean;
4597
4598
  };
4598
4599
  header?: never;
@@ -5449,6 +5450,7 @@ export interface operations {
5449
5450
  putAccountsById: {
5450
5451
  parameters: {
5451
5452
  query?: {
5453
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5452
5454
  dryRun?: boolean;
5453
5455
  };
5454
5456
  header?: never;
@@ -5730,6 +5732,7 @@ export interface operations {
5730
5732
  parameters: {
5731
5733
  query?: {
5732
5734
  onLocked?: "error" | "archive";
5735
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5733
5736
  dryRun?: boolean;
5734
5737
  };
5735
5738
  header?: never;
@@ -5893,6 +5896,7 @@ export interface operations {
5893
5896
  postAccountsByIdBankingInit: {
5894
5897
  parameters: {
5895
5898
  query?: {
5899
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5896
5900
  dryRun?: boolean;
5897
5901
  };
5898
5902
  header?: never;
@@ -9419,6 +9423,7 @@ export interface operations {
9419
9423
  batchBankAccounts: {
9420
9424
  parameters: {
9421
9425
  query?: {
9426
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
9422
9427
  dryRun?: boolean;
9423
9428
  };
9424
9429
  header?: never;
@@ -9792,6 +9797,7 @@ export interface operations {
9792
9797
  updateBankAccount: {
9793
9798
  parameters: {
9794
9799
  query?: {
9800
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
9795
9801
  dryRun?: boolean;
9796
9802
  };
9797
9803
  header?: never;
@@ -10368,6 +10374,7 @@ export interface operations {
10368
10374
  postBankRecordsBatch: {
10369
10375
  parameters: {
10370
10376
  query?: {
10377
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
10371
10378
  dryRun?: boolean;
10372
10379
  };
10373
10380
  header?: never;
@@ -11091,6 +11098,7 @@ export interface operations {
11091
11098
  putBankRecordsById: {
11092
11099
  parameters: {
11093
11100
  query?: {
11101
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
11094
11102
  dryRun?: boolean;
11095
11103
  };
11096
11104
  header?: never;
@@ -11260,6 +11268,7 @@ export interface operations {
11260
11268
  deleteBankRecordsById: {
11261
11269
  parameters: {
11262
11270
  query?: {
11271
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
11263
11272
  dryRun?: boolean;
11264
11273
  };
11265
11274
  header?: never;
@@ -13023,6 +13032,7 @@ export interface operations {
13023
13032
  postBankRulesByIdRun: {
13024
13033
  parameters: {
13025
13034
  query?: {
13035
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
13026
13036
  dryRun?: boolean;
13027
13037
  };
13028
13038
  header?: never;
@@ -17087,6 +17097,7 @@ export interface operations {
17087
17097
  postContacts: {
17088
17098
  parameters: {
17089
17099
  query?: {
17100
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17090
17101
  dryRun?: boolean;
17091
17102
  };
17092
17103
  header?: never;
@@ -17333,6 +17344,7 @@ export interface operations {
17333
17344
  postContactsBatch: {
17334
17345
  parameters: {
17335
17346
  query?: {
17347
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17336
17348
  dryRun?: boolean;
17337
17349
  };
17338
17350
  header?: never;
@@ -17918,6 +17930,7 @@ export interface operations {
17918
17930
  putContactsById: {
17919
17931
  parameters: {
17920
17932
  query?: {
17933
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17921
17934
  dryRun?: boolean;
17922
17935
  };
17923
17936
  header?: never;
@@ -18166,6 +18179,7 @@ export interface operations {
18166
18179
  parameters: {
18167
18180
  query?: {
18168
18181
  onLocked?: "error" | "archive";
18182
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
18169
18183
  dryRun?: boolean;
18170
18184
  };
18171
18185
  header?: never;
@@ -22658,6 +22672,7 @@ export interface operations {
22658
22672
  postGeneralLedgerHistorical: {
22659
22673
  parameters: {
22660
22674
  query?: {
22675
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
22661
22676
  dryRun?: boolean;
22662
22677
  };
22663
22678
  header?: never;
@@ -23003,6 +23018,7 @@ export interface operations {
23003
23018
  putGeneralLedgerOpeningBalancesAccountsPayable: {
23004
23019
  parameters: {
23005
23020
  query?: {
23021
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23006
23022
  dryRun?: boolean;
23007
23023
  };
23008
23024
  header?: never;
@@ -23337,6 +23353,7 @@ export interface operations {
23337
23353
  putGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue: {
23338
23354
  parameters: {
23339
23355
  query?: {
23356
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23340
23357
  dryRun?: boolean;
23341
23358
  };
23342
23359
  header?: never;
@@ -23682,6 +23699,7 @@ export interface operations {
23682
23699
  putGeneralLedgerOpeningBalancesAdvancedDeposits: {
23683
23700
  parameters: {
23684
23701
  query?: {
23702
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23685
23703
  dryRun?: boolean;
23686
23704
  };
23687
23705
  header?: never;
@@ -24214,6 +24232,7 @@ export interface operations {
24214
24232
  putGeneralLedgerOpeningBalancesTaxPayable: {
24215
24233
  parameters: {
24216
24234
  query?: {
24235
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
24217
24236
  dryRun?: boolean;
24218
24237
  };
24219
24238
  header?: never;
@@ -24581,6 +24600,7 @@ export interface operations {
24581
24600
  putGeneralLedgerOpeningTrialBalance: {
24582
24601
  parameters: {
24583
24602
  query?: {
24603
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
24584
24604
  dryRun?: boolean;
24585
24605
  };
24586
24606
  header?: never;
@@ -31010,6 +31030,7 @@ export interface operations {
31010
31030
  postListings: {
31011
31031
  parameters: {
31012
31032
  query?: {
31033
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
31013
31034
  dryRun?: boolean;
31014
31035
  };
31015
31036
  header?: never;
@@ -31364,6 +31385,7 @@ export interface operations {
31364
31385
  postListingsBatch: {
31365
31386
  parameters: {
31366
31387
  query?: {
31388
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
31367
31389
  dryRun?: boolean;
31368
31390
  };
31369
31391
  header?: never;
@@ -32320,6 +32342,7 @@ export interface operations {
32320
32342
  postListingsOwnershipPeriods: {
32321
32343
  parameters: {
32322
32344
  query?: {
32345
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32323
32346
  dryRun?: boolean;
32324
32347
  };
32325
32348
  header?: never;
@@ -32699,6 +32722,7 @@ export interface operations {
32699
32722
  putListingsOwnershipPeriodsById: {
32700
32723
  parameters: {
32701
32724
  query?: {
32725
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32702
32726
  dryRun?: boolean;
32703
32727
  };
32704
32728
  header?: never;
@@ -32901,6 +32925,7 @@ export interface operations {
32901
32925
  query?: {
32902
32926
  onLocked?: "error" | "archive";
32903
32927
  onLast?: "extendPrevious" | "none";
32928
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32904
32929
  dryRun?: boolean;
32905
32930
  };
32906
32931
  header?: never;
@@ -33371,6 +33396,7 @@ export interface operations {
33371
33396
  putListingsById: {
33372
33397
  parameters: {
33373
33398
  query?: {
33399
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
33374
33400
  dryRun?: boolean;
33375
33401
  };
33376
33402
  header?: never;
@@ -33728,6 +33754,7 @@ export interface operations {
33728
33754
  parameters: {
33729
33755
  query?: {
33730
33756
  onLocked?: "error" | "archive";
33757
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
33731
33758
  dryRun?: boolean;
33732
33759
  };
33733
33760
  header?: never;
@@ -34053,6 +34080,7 @@ export interface operations {
34053
34080
  putListingsByIdOpeningBalance: {
34054
34081
  parameters: {
34055
34082
  query?: {
34083
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34056
34084
  dryRun?: boolean;
34057
34085
  };
34058
34086
  header?: never;
@@ -34225,6 +34253,7 @@ export interface operations {
34225
34253
  putListingsByIdParent: {
34226
34254
  parameters: {
34227
34255
  query?: {
34256
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34228
34257
  dryRun?: boolean;
34229
34258
  };
34230
34259
  header?: never;
@@ -34538,6 +34567,7 @@ export interface operations {
34538
34567
  deleteListingsByIdParent: {
34539
34568
  parameters: {
34540
34569
  query?: {
34570
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34541
34571
  dryRun?: boolean;
34542
34572
  };
34543
34573
  header?: never;
@@ -40938,6 +40968,7 @@ export interface operations {
40938
40968
  postRecurringFees: {
40939
40969
  parameters: {
40940
40970
  query?: {
40971
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
40941
40972
  dryRun?: boolean;
40942
40973
  };
40943
40974
  header?: never;
@@ -41418,6 +41449,7 @@ export interface operations {
41418
41449
  postRecurringFeesListingPeriods: {
41419
41450
  parameters: {
41420
41451
  query?: {
41452
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41421
41453
  dryRun?: boolean;
41422
41454
  };
41423
41455
  header?: never;
@@ -41603,6 +41635,7 @@ export interface operations {
41603
41635
  putRecurringFeesListingPeriodsById: {
41604
41636
  parameters: {
41605
41637
  query?: {
41638
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41606
41639
  dryRun?: boolean;
41607
41640
  };
41608
41641
  header?: never;
@@ -41789,6 +41822,7 @@ export interface operations {
41789
41822
  parameters: {
41790
41823
  query?: {
41791
41824
  onLocked?: "error" | "archive";
41825
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41792
41826
  dryRun?: boolean;
41793
41827
  };
41794
41828
  header?: never;
@@ -42524,6 +42558,7 @@ export interface operations {
42524
42558
  putRecurringFeesById: {
42525
42559
  parameters: {
42526
42560
  query?: {
42561
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
42527
42562
  dryRun?: boolean;
42528
42563
  };
42529
42564
  header?: never;
@@ -42815,6 +42850,7 @@ export interface operations {
42815
42850
  parameters: {
42816
42851
  query?: {
42817
42852
  onLocked?: "error" | "archive";
42853
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
42818
42854
  dryRun?: boolean;
42819
42855
  };
42820
42856
  header?: never;
@@ -55520,6 +55556,7 @@ export interface operations {
55520
55556
  postReservations: {
55521
55557
  parameters: {
55522
55558
  query?: {
55559
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
55523
55560
  dryRun?: boolean;
55524
55561
  };
55525
55562
  header?: never;
@@ -56128,6 +56165,7 @@ export interface operations {
56128
56165
  * @description Deprecated: use allowReferenceChange
56129
56166
  */
56130
56167
  noReferenceChange?: boolean;
56168
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
56131
56169
  dryRun?: boolean;
56132
56170
  };
56133
56171
  header?: never;
@@ -57999,6 +58037,7 @@ export interface operations {
57999
58037
  putReservationsById: {
58000
58038
  parameters: {
58001
58039
  query?: {
58040
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58002
58041
  dryRun?: boolean;
58003
58042
  };
58004
58043
  header?: never;
@@ -58677,6 +58716,7 @@ export interface operations {
58677
58716
  parameters: {
58678
58717
  query?: {
58679
58718
  onLocked?: "error" | "archive";
58719
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58680
58720
  dryRun?: boolean;
58681
58721
  };
58682
58722
  header?: never;
@@ -58840,6 +58880,7 @@ export interface operations {
58840
58880
  putReservationsByIdStatus: {
58841
58881
  parameters: {
58842
58882
  query?: {
58883
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58843
58884
  dryRun?: boolean;
58844
58885
  };
58845
58886
  header?: never;
@@ -59008,6 +59049,7 @@ export interface operations {
59008
59049
  postReservationsByReservationIdAdjustments: {
59009
59050
  parameters: {
59010
59051
  query?: {
59052
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
59011
59053
  dryRun?: boolean;
59012
59054
  };
59013
59055
  header?: never;
@@ -59577,6 +59619,7 @@ export interface operations {
59577
59619
  putReservationsByReservationIdAdjustmentsById: {
59578
59620
  parameters: {
59579
59621
  query?: {
59622
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
59580
59623
  dryRun?: boolean;
59581
59624
  };
59582
59625
  header?: never;
@@ -60146,6 +60189,7 @@ export interface operations {
60146
60189
  deleteReservationsByReservationIdAdjustmentsById: {
60147
60190
  parameters: {
60148
60191
  query?: {
60192
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
60149
60193
  dryRun?: boolean;
60150
60194
  };
60151
60195
  header?: never;
@@ -61415,6 +61459,7 @@ export interface operations {
61415
61459
  postStatements: {
61416
61460
  parameters: {
61417
61461
  query?: {
61462
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
61418
61463
  dryRun?: boolean;
61419
61464
  };
61420
61465
  header?: never;
@@ -64773,6 +64818,7 @@ export interface operations {
64773
64818
  postStatementsHistorical: {
64774
64819
  parameters: {
64775
64820
  query?: {
64821
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
64776
64822
  dryRun?: boolean;
64777
64823
  };
64778
64824
  header?: never;
@@ -66790,6 +66836,7 @@ export interface operations {
66790
66836
  putStatementsLinesByLineIdDescription: {
66791
66837
  parameters: {
66792
66838
  query?: {
66839
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
66793
66840
  dryRun?: boolean;
66794
66841
  };
66795
66842
  header?: never;
@@ -66957,6 +67004,7 @@ export interface operations {
66957
67004
  postStatementsManagerPay: {
66958
67005
  parameters: {
66959
67006
  query?: {
67007
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
66960
67008
  dryRun?: boolean;
66961
67009
  };
66962
67010
  header?: never;
@@ -69343,6 +69391,7 @@ export interface operations {
69343
69391
  putStatementsById: {
69344
69392
  parameters: {
69345
69393
  query?: {
69394
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
69346
69395
  dryRun?: boolean;
69347
69396
  };
69348
69397
  header?: never;
@@ -70767,6 +70816,7 @@ export interface operations {
70767
70816
  parameters: {
70768
70817
  query?: {
70769
70818
  onLocked?: "error" | "unlockAndDelete";
70819
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
70770
70820
  dryRun?: boolean;
70771
70821
  };
70772
70822
  header?: never;
@@ -70932,6 +70982,7 @@ export interface operations {
70932
70982
  postStatementsByIdPay: {
70933
70983
  parameters: {
70934
70984
  query?: {
70985
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
70935
70986
  dryRun?: boolean;
70936
70987
  };
70937
70988
  header?: never;
@@ -73137,6 +73188,7 @@ export interface operations {
73137
73188
  createRate: {
73138
73189
  parameters: {
73139
73190
  query?: {
73191
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73140
73192
  dryRun?: boolean;
73141
73193
  };
73142
73194
  header?: never;
@@ -73499,6 +73551,7 @@ export interface operations {
73499
73551
  updateRate: {
73500
73552
  parameters: {
73501
73553
  query?: {
73554
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73502
73555
  dryRun?: boolean;
73503
73556
  };
73504
73557
  header?: never;
@@ -73693,6 +73746,7 @@ export interface operations {
73693
73746
  parameters: {
73694
73747
  query?: {
73695
73748
  onLocked?: "error" | "archive";
73749
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73696
73750
  dryRun?: boolean;
73697
73751
  };
73698
73752
  header?: never;
@@ -75472,6 +75526,7 @@ export interface operations {
75472
75526
  postTeamInit: {
75473
75527
  parameters: {
75474
75528
  query?: {
75529
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
75475
75530
  dryRun?: boolean;
75476
75531
  };
75477
75532
  header?: never;
@@ -79507,6 +79562,7 @@ export interface operations {
79507
79562
  postTransactions: {
79508
79563
  parameters: {
79509
79564
  query?: {
79565
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
79510
79566
  dryRun?: boolean;
79511
79567
  };
79512
79568
  header?: never;
@@ -80717,6 +80773,7 @@ export interface operations {
80717
80773
  postTransactionsBatch: {
80718
80774
  parameters: {
80719
80775
  query?: {
80776
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
80720
80777
  dryRun?: boolean;
80721
80778
  };
80722
80779
  header?: never;
@@ -82211,6 +82268,7 @@ export interface operations {
82211
82268
  postTransactionsRecurringTemplates: {
82212
82269
  parameters: {
82213
82270
  query?: {
82271
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
82214
82272
  dryRun?: boolean;
82215
82273
  };
82216
82274
  header?: never;
@@ -83100,6 +83158,7 @@ export interface operations {
83100
83158
  putTransactionsRecurringTemplatesById: {
83101
83159
  parameters: {
83102
83160
  query?: {
83161
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83103
83162
  dryRun?: boolean;
83104
83163
  };
83105
83164
  header?: never;
@@ -83481,6 +83540,7 @@ export interface operations {
83481
83540
  parameters: {
83482
83541
  query?: {
83483
83542
  onLocked?: "error" | "archive" | "detach";
83543
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83484
83544
  dryRun?: boolean;
83485
83545
  };
83486
83546
  header?: never;
@@ -83644,6 +83704,7 @@ export interface operations {
83644
83704
  postTransactionsRecurringTemplatesByIdRun: {
83645
83705
  parameters: {
83646
83706
  query?: {
83707
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83647
83708
  dryRun?: boolean;
83648
83709
  };
83649
83710
  header?: never;
@@ -84544,6 +84605,7 @@ export interface operations {
84544
84605
  putTransactionsById: {
84545
84606
  parameters: {
84546
84607
  query?: {
84608
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
84547
84609
  dryRun?: boolean;
84548
84610
  };
84549
84611
  header?: never;
@@ -85169,6 +85231,7 @@ export interface operations {
85169
85231
  parameters: {
85170
85232
  query?: {
85171
85233
  onLocked?: "error" | "archive";
85234
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
85172
85235
  dryRun?: boolean;
85173
85236
  };
85174
85237
  header?: never;
@@ -85328,6 +85391,7 @@ export interface operations {
85328
85391
  putTransactionsByTransactionIdLinesById: {
85329
85392
  parameters: {
85330
85393
  query?: {
85394
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
85331
85395
  dryRun?: boolean;
85332
85396
  };
85333
85397
  header?: never;