@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.
@@ -1123,7 +1123,7 @@ export interface paths {
1123
1123
  };
1124
1124
  /** @description Retrieve opening balance accounts payable summary by party */
1125
1125
  get: operations["getGeneralLedgerOpeningBalancesAccountsPayable"];
1126
- /** @description Update opening balance accounts payable by party */
1126
+ /** @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. */
1127
1127
  put: operations["putGeneralLedgerOpeningBalancesAccountsPayable"];
1128
1128
  post?: never;
1129
1129
  delete?: never;
@@ -1141,7 +1141,7 @@ export interface paths {
1141
1141
  };
1142
1142
  /** @description Retrieve opening balance accounts receivable / deferred revenue summary */
1143
1143
  get: operations["getGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue"];
1144
- /** @description Update opening balance accounts receivable / deferred revenue summary */
1144
+ /** @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. */
1145
1145
  put: operations["putGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue"];
1146
1146
  post?: never;
1147
1147
  delete?: never;
@@ -1159,7 +1159,7 @@ export interface paths {
1159
1159
  };
1160
1160
  /** @description Retrieve opening balance advanced deposits summary */
1161
1161
  get: operations["getGeneralLedgerOpeningBalancesAdvancedDeposits"];
1162
- /** @description Update opening balance advanced deposits */
1162
+ /** @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. */
1163
1163
  put: operations["putGeneralLedgerOpeningBalancesAdvancedDeposits"];
1164
1164
  post?: never;
1165
1165
  delete?: never;
@@ -1175,7 +1175,7 @@ export interface paths {
1175
1175
  path?: never;
1176
1176
  cookie?: never;
1177
1177
  };
1178
- /** @description Retrieve synced payments/refunds for review advanced deposits modal */
1178
+ /** @description Retrieve synced payments and refunds that are candidates for advanced deposit opening balances */
1179
1179
  get: operations["getGeneralLedgerOpeningBalancesAdvancedDepositsSyncedPaymentsRefunds"];
1180
1180
  put?: never;
1181
1181
  post?: never;
@@ -1194,7 +1194,7 @@ export interface paths {
1194
1194
  };
1195
1195
  /** @description Retrieve opening balance tax payable summary */
1196
1196
  get: operations["getGeneralLedgerOpeningBalancesTaxPayable"];
1197
- /** @description Update opening balance tax payable */
1197
+ /** @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. */
1198
1198
  put: operations["putGeneralLedgerOpeningBalancesTaxPayable"];
1199
1199
  post?: never;
1200
1200
  delete?: never;
@@ -1212,7 +1212,7 @@ export interface paths {
1212
1212
  };
1213
1213
  /** @description Retrieve opening trial balance */
1214
1214
  get: operations["getGeneralLedgerOpeningTrialBalance"];
1215
- /** @description Update opening trial balance */
1215
+ /** @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. */
1216
1216
  put: operations["putGeneralLedgerOpeningTrialBalance"];
1217
1217
  post?: never;
1218
1218
  delete?: never;
@@ -1716,7 +1716,7 @@ export interface paths {
1716
1716
  /** @description List listing ownership periods */
1717
1717
  get: operations["getListingsOwnershipPeriods"];
1718
1718
  put?: never;
1719
- /** @description Create a listing ownership period */
1719
+ /** @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. */
1720
1720
  post: operations["postListingsOwnershipPeriods"];
1721
1721
  delete?: never;
1722
1722
  options?: never;
@@ -1733,10 +1733,10 @@ export interface paths {
1733
1733
  };
1734
1734
  /** @description Get a listing ownership period by ID */
1735
1735
  get: operations["getListingsOwnershipPeriodsById"];
1736
- /** @description Update a listing ownership period by ID */
1736
+ /** @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. */
1737
1737
  put: operations["putListingsOwnershipPeriodsById"];
1738
1738
  post?: never;
1739
- /** @description Delete a listing ownership period by ID */
1739
+ /** @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. */
1740
1740
  delete: operations["deleteListingsOwnershipPeriodsById"];
1741
1741
  options?: never;
1742
1742
  head?: never;
@@ -3002,7 +3002,7 @@ export interface paths {
3002
3002
  /** @description Get reservations */
3003
3003
  get: operations["getReservations"];
3004
3004
  put?: never;
3005
- /** @description Create reservation */
3005
+ /** @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. */
3006
3006
  post: operations["postReservations"];
3007
3007
  delete?: never;
3008
3008
  options?: never;
@@ -3053,7 +3053,7 @@ export interface paths {
3053
3053
  };
3054
3054
  get?: never;
3055
3055
  put?: never;
3056
- /** @description Generate reservation journal entries */
3056
+ /** @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. */
3057
3057
  post: operations["postReservationsJournalEntries"];
3058
3058
  delete?: never;
3059
3059
  options?: never;
@@ -3122,10 +3122,10 @@ export interface paths {
3122
3122
  };
3123
3123
  /** @description Get reservation By ID */
3124
3124
  get: operations["getReservationsById"];
3125
- /** @description Update Reservation By ID */
3125
+ /** @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. */
3126
3126
  put: operations["putReservationsById"];
3127
3127
  post?: never;
3128
- /** @description Delete reservation By ID */
3128
+ /** @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. */
3129
3129
  delete: operations["deleteReservationsById"];
3130
3130
  options?: never;
3131
3131
  head?: never;
@@ -3140,7 +3140,7 @@ export interface paths {
3140
3140
  cookie?: never;
3141
3141
  };
3142
3142
  get?: never;
3143
- /** @description Update reservation general ledger status (active/inactive) */
3143
+ /** @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. */
3144
3144
  put: operations["putReservationsByIdStatus"];
3145
3145
  post?: never;
3146
3146
  delete?: never;
@@ -3158,7 +3158,7 @@ export interface paths {
3158
3158
  };
3159
3159
  get?: never;
3160
3160
  put?: never;
3161
- /** @description Create a reservation adjustment line */
3161
+ /** @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. */
3162
3162
  post: operations["postReservationsByReservationIdAdjustments"];
3163
3163
  delete?: never;
3164
3164
  options?: never;
@@ -3174,10 +3174,10 @@ export interface paths {
3174
3174
  cookie?: never;
3175
3175
  };
3176
3176
  get?: never;
3177
- /** @description Update a reservation adjustment line */
3177
+ /** @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. */
3178
3178
  put: operations["putReservationsByReservationIdAdjustmentsById"];
3179
3179
  post?: never;
3180
- /** @description Delete a reservation adjustment line */
3180
+ /** @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. */
3181
3181
  delete: operations["deleteReservationsByReservationIdAdjustmentsById"];
3182
3182
  options?: never;
3183
3183
  head?: never;
@@ -3211,7 +3211,7 @@ export interface paths {
3211
3211
  /** @description Get Statements List. Get Statements, either by year or dateRange + a single listing or owner or by month */
3212
3212
  get: operations["getStatements"];
3213
3213
  put?: never;
3214
- /** @description Create Statements */
3214
+ /** @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. */
3215
3215
  post: operations["postStatements"];
3216
3216
  delete?: never;
3217
3217
  options?: never;
@@ -3243,7 +3243,7 @@ export interface paths {
3243
3243
  path?: never;
3244
3244
  cookie?: never;
3245
3245
  };
3246
- /** @description Get Owner Statement CSV export (detailed) */
3246
+ /** @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. */
3247
3247
  get: operations["getStatementsByPeriodCsv"];
3248
3248
  put?: never;
3249
3249
  post?: never;
@@ -3260,7 +3260,7 @@ export interface paths {
3260
3260
  path?: never;
3261
3261
  cookie?: never;
3262
3262
  };
3263
- /** @description Get Owner Statement CSV export */
3263
+ /** @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. */
3264
3264
  get: operations["getStatementsCsv"];
3265
3265
  put?: never;
3266
3266
  post?: never;
@@ -3277,7 +3277,7 @@ export interface paths {
3277
3277
  path?: never;
3278
3278
  cookie?: never;
3279
3279
  };
3280
- /** @description Get Owner Statement CSV export (detailed) */
3280
+ /** @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. */
3281
3281
  get: operations["getStatementsDetailCsv"];
3282
3282
  put?: never;
3283
3283
  post?: never;
@@ -3401,7 +3401,7 @@ export interface paths {
3401
3401
  };
3402
3402
  get?: never;
3403
3403
  put?: never;
3404
- /** @description Pay a property manager out */
3404
+ /** @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. */
3405
3405
  post: operations["postStatementsManagerPay"];
3406
3406
  delete?: never;
3407
3407
  options?: never;
@@ -3416,7 +3416,7 @@ export interface paths {
3416
3416
  path?: never;
3417
3417
  cookie?: never;
3418
3418
  };
3419
- /** @description Get Owner Statement by ID */
3419
+ /** @description Get owner statement PDF by ownership period and month */
3420
3420
  get: operations["getStatementsPdf"];
3421
3421
  put?: never;
3422
3422
  post?: never;
@@ -3433,7 +3433,7 @@ export interface paths {
3433
3433
  path?: never;
3434
3434
  cookie?: never;
3435
3435
  };
3436
- /** @description Get Owner Statements ZIP by month or listing month range */
3436
+ /** @description Get owner statements PDF ZIP by month or listing month range */
3437
3437
  get: operations["getStatementsPdfBatch"];
3438
3438
  put?: never;
3439
3439
  post?: never;
@@ -3469,10 +3469,10 @@ export interface paths {
3469
3469
  };
3470
3470
  /** @description Get Statements by period. Get Statements by ownership period, can be multiple if multiple currencies are found in a month */
3471
3471
  get: operations["getStatementsById"];
3472
- /** @description Update Statements by Id */
3472
+ /** @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. */
3473
3473
  put: operations["putStatementsById"];
3474
3474
  post?: never;
3475
- /** @description Update Statements by Id */
3475
+ /** @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. */
3476
3476
  delete: operations["deleteStatementsById"];
3477
3477
  options?: never;
3478
3478
  head?: never;
@@ -3488,7 +3488,7 @@ export interface paths {
3488
3488
  };
3489
3489
  get?: never;
3490
3490
  put?: never;
3491
- /** @description Pay a statement */
3491
+ /** @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. */
3492
3492
  post: operations["postStatementsByIdPay"];
3493
3493
  delete?: never;
3494
3494
  options?: never;
@@ -3698,7 +3698,7 @@ export interface paths {
3698
3698
  cookie?: never;
3699
3699
  };
3700
3700
  get?: never;
3701
- /** @description Update the books closing date of the current team (the team in scope via the x-team-id header) */
3701
+ /** @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. */
3702
3702
  put: operations["putTeamBooksClosing"];
3703
3703
  post?: never;
3704
3704
  delete?: never;
@@ -3731,9 +3731,9 @@ export interface paths {
3731
3731
  path?: never;
3732
3732
  cookie?: never;
3733
3733
  };
3734
- /** @description Get the current team VRPilot Onboarding Guide state */
3734
+ /** @description Get the current team's onboarding guide state */
3735
3735
  get: operations["getTeamGuidesOnboarding"];
3736
- /** @description Update the current team VRPilot Onboarding Guide state */
3736
+ /** @description Update the current team's onboarding guide state */
3737
3737
  put: operations["putTeamGuidesOnboarding"];
3738
3738
  post?: never;
3739
3739
  delete?: never;
@@ -3908,7 +3908,7 @@ export interface paths {
3908
3908
  /** @description Transactions List */
3909
3909
  get: operations["getTransactions"];
3910
3910
  put?: never;
3911
- /** @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. */
3911
+ /** @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. */
3912
3912
  post: operations["postTransactions"];
3913
3913
  delete?: never;
3914
3914
  options?: never;
@@ -4028,7 +4028,7 @@ export interface paths {
4028
4028
  };
4029
4029
  get?: never;
4030
4030
  put?: never;
4031
- /** @description Regenerate transaction journal entries. Generic dry run is unavailable because this operation needs a dedicated consequence preview for projected posting changes. */
4031
+ /** @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. */
4032
4032
  post: operations["postTransactionsJournalEntries"];
4033
4033
  delete?: never;
4034
4034
  options?: never;
@@ -4150,7 +4150,7 @@ export interface paths {
4150
4150
  };
4151
4151
  /** @description Transactions List */
4152
4152
  get: operations["getTransactionsById"];
4153
- /** @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. */
4153
+ /** @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. */
4154
4154
  put: operations["putTransactionsById"];
4155
4155
  post?: never;
4156
4156
  /** @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. */
@@ -4168,7 +4168,7 @@ export interface paths {
4168
4168
  cookie?: never;
4169
4169
  };
4170
4170
  get?: never;
4171
- /** @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. */
4171
+ /** @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. */
4172
4172
  put: operations["putTransactionsByTransactionIdLinesById"];
4173
4173
  post?: never;
4174
4174
  delete?: never;
@@ -4592,6 +4592,7 @@ export interface operations {
4592
4592
  postAccounts: {
4593
4593
  parameters: {
4594
4594
  query?: {
4595
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
4595
4596
  dryRun?: boolean;
4596
4597
  };
4597
4598
  header?: never;
@@ -5448,6 +5449,7 @@ export interface operations {
5448
5449
  putAccountsById: {
5449
5450
  parameters: {
5450
5451
  query?: {
5452
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5451
5453
  dryRun?: boolean;
5452
5454
  };
5453
5455
  header?: never;
@@ -5729,6 +5731,7 @@ export interface operations {
5729
5731
  parameters: {
5730
5732
  query?: {
5731
5733
  onLocked?: "error" | "archive";
5734
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5732
5735
  dryRun?: boolean;
5733
5736
  };
5734
5737
  header?: never;
@@ -5892,6 +5895,7 @@ export interface operations {
5892
5895
  postAccountsByIdBankingInit: {
5893
5896
  parameters: {
5894
5897
  query?: {
5898
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
5895
5899
  dryRun?: boolean;
5896
5900
  };
5897
5901
  header?: never;
@@ -9418,6 +9422,7 @@ export interface operations {
9418
9422
  batchBankAccounts: {
9419
9423
  parameters: {
9420
9424
  query?: {
9425
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
9421
9426
  dryRun?: boolean;
9422
9427
  };
9423
9428
  header?: never;
@@ -9791,6 +9796,7 @@ export interface operations {
9791
9796
  updateBankAccount: {
9792
9797
  parameters: {
9793
9798
  query?: {
9799
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
9794
9800
  dryRun?: boolean;
9795
9801
  };
9796
9802
  header?: never;
@@ -10367,6 +10373,7 @@ export interface operations {
10367
10373
  postBankRecordsBatch: {
10368
10374
  parameters: {
10369
10375
  query?: {
10376
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
10370
10377
  dryRun?: boolean;
10371
10378
  };
10372
10379
  header?: never;
@@ -11090,6 +11097,7 @@ export interface operations {
11090
11097
  putBankRecordsById: {
11091
11098
  parameters: {
11092
11099
  query?: {
11100
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
11093
11101
  dryRun?: boolean;
11094
11102
  };
11095
11103
  header?: never;
@@ -11259,6 +11267,7 @@ export interface operations {
11259
11267
  deleteBankRecordsById: {
11260
11268
  parameters: {
11261
11269
  query?: {
11270
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
11262
11271
  dryRun?: boolean;
11263
11272
  };
11264
11273
  header?: never;
@@ -13022,6 +13031,7 @@ export interface operations {
13022
13031
  postBankRulesByIdRun: {
13023
13032
  parameters: {
13024
13033
  query?: {
13034
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
13025
13035
  dryRun?: boolean;
13026
13036
  };
13027
13037
  header?: never;
@@ -17086,6 +17096,7 @@ export interface operations {
17086
17096
  postContacts: {
17087
17097
  parameters: {
17088
17098
  query?: {
17099
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17089
17100
  dryRun?: boolean;
17090
17101
  };
17091
17102
  header?: never;
@@ -17332,6 +17343,7 @@ export interface operations {
17332
17343
  postContactsBatch: {
17333
17344
  parameters: {
17334
17345
  query?: {
17346
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17335
17347
  dryRun?: boolean;
17336
17348
  };
17337
17349
  header?: never;
@@ -17917,6 +17929,7 @@ export interface operations {
17917
17929
  putContactsById: {
17918
17930
  parameters: {
17919
17931
  query?: {
17932
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
17920
17933
  dryRun?: boolean;
17921
17934
  };
17922
17935
  header?: never;
@@ -18165,6 +18178,7 @@ export interface operations {
18165
18178
  parameters: {
18166
18179
  query?: {
18167
18180
  onLocked?: "error" | "archive";
18181
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
18168
18182
  dryRun?: boolean;
18169
18183
  };
18170
18184
  header?: never;
@@ -22657,6 +22671,7 @@ export interface operations {
22657
22671
  postGeneralLedgerHistorical: {
22658
22672
  parameters: {
22659
22673
  query?: {
22674
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
22660
22675
  dryRun?: boolean;
22661
22676
  };
22662
22677
  header?: never;
@@ -23002,6 +23017,7 @@ export interface operations {
23002
23017
  putGeneralLedgerOpeningBalancesAccountsPayable: {
23003
23018
  parameters: {
23004
23019
  query?: {
23020
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23005
23021
  dryRun?: boolean;
23006
23022
  };
23007
23023
  header?: never;
@@ -23336,6 +23352,7 @@ export interface operations {
23336
23352
  putGeneralLedgerOpeningBalancesAccountsReceivableDeferredRevenue: {
23337
23353
  parameters: {
23338
23354
  query?: {
23355
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23339
23356
  dryRun?: boolean;
23340
23357
  };
23341
23358
  header?: never;
@@ -23681,6 +23698,7 @@ export interface operations {
23681
23698
  putGeneralLedgerOpeningBalancesAdvancedDeposits: {
23682
23699
  parameters: {
23683
23700
  query?: {
23701
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
23684
23702
  dryRun?: boolean;
23685
23703
  };
23686
23704
  header?: never;
@@ -24213,6 +24231,7 @@ export interface operations {
24213
24231
  putGeneralLedgerOpeningBalancesTaxPayable: {
24214
24232
  parameters: {
24215
24233
  query?: {
24234
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
24216
24235
  dryRun?: boolean;
24217
24236
  };
24218
24237
  header?: never;
@@ -24580,6 +24599,7 @@ export interface operations {
24580
24599
  putGeneralLedgerOpeningTrialBalance: {
24581
24600
  parameters: {
24582
24601
  query?: {
24602
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
24583
24603
  dryRun?: boolean;
24584
24604
  };
24585
24605
  header?: never;
@@ -31009,6 +31029,7 @@ export interface operations {
31009
31029
  postListings: {
31010
31030
  parameters: {
31011
31031
  query?: {
31032
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
31012
31033
  dryRun?: boolean;
31013
31034
  };
31014
31035
  header?: never;
@@ -31363,6 +31384,7 @@ export interface operations {
31363
31384
  postListingsBatch: {
31364
31385
  parameters: {
31365
31386
  query?: {
31387
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
31366
31388
  dryRun?: boolean;
31367
31389
  };
31368
31390
  header?: never;
@@ -32319,6 +32341,7 @@ export interface operations {
32319
32341
  postListingsOwnershipPeriods: {
32320
32342
  parameters: {
32321
32343
  query?: {
32344
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32322
32345
  dryRun?: boolean;
32323
32346
  };
32324
32347
  header?: never;
@@ -32698,6 +32721,7 @@ export interface operations {
32698
32721
  putListingsOwnershipPeriodsById: {
32699
32722
  parameters: {
32700
32723
  query?: {
32724
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32701
32725
  dryRun?: boolean;
32702
32726
  };
32703
32727
  header?: never;
@@ -32900,6 +32924,7 @@ export interface operations {
32900
32924
  query?: {
32901
32925
  onLocked?: "error" | "archive";
32902
32926
  onLast?: "extendPrevious" | "none";
32927
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
32903
32928
  dryRun?: boolean;
32904
32929
  };
32905
32930
  header?: never;
@@ -33370,6 +33395,7 @@ export interface operations {
33370
33395
  putListingsById: {
33371
33396
  parameters: {
33372
33397
  query?: {
33398
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
33373
33399
  dryRun?: boolean;
33374
33400
  };
33375
33401
  header?: never;
@@ -33727,6 +33753,7 @@ export interface operations {
33727
33753
  parameters: {
33728
33754
  query?: {
33729
33755
  onLocked?: "error" | "archive";
33756
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
33730
33757
  dryRun?: boolean;
33731
33758
  };
33732
33759
  header?: never;
@@ -34052,6 +34079,7 @@ export interface operations {
34052
34079
  putListingsByIdOpeningBalance: {
34053
34080
  parameters: {
34054
34081
  query?: {
34082
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34055
34083
  dryRun?: boolean;
34056
34084
  };
34057
34085
  header?: never;
@@ -34224,6 +34252,7 @@ export interface operations {
34224
34252
  putListingsByIdParent: {
34225
34253
  parameters: {
34226
34254
  query?: {
34255
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34227
34256
  dryRun?: boolean;
34228
34257
  };
34229
34258
  header?: never;
@@ -34537,6 +34566,7 @@ export interface operations {
34537
34566
  deleteListingsByIdParent: {
34538
34567
  parameters: {
34539
34568
  query?: {
34569
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
34540
34570
  dryRun?: boolean;
34541
34571
  };
34542
34572
  header?: never;
@@ -40937,6 +40967,7 @@ export interface operations {
40937
40967
  postRecurringFees: {
40938
40968
  parameters: {
40939
40969
  query?: {
40970
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
40940
40971
  dryRun?: boolean;
40941
40972
  };
40942
40973
  header?: never;
@@ -41417,6 +41448,7 @@ export interface operations {
41417
41448
  postRecurringFeesListingPeriods: {
41418
41449
  parameters: {
41419
41450
  query?: {
41451
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41420
41452
  dryRun?: boolean;
41421
41453
  };
41422
41454
  header?: never;
@@ -41602,6 +41634,7 @@ export interface operations {
41602
41634
  putRecurringFeesListingPeriodsById: {
41603
41635
  parameters: {
41604
41636
  query?: {
41637
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41605
41638
  dryRun?: boolean;
41606
41639
  };
41607
41640
  header?: never;
@@ -41788,6 +41821,7 @@ export interface operations {
41788
41821
  parameters: {
41789
41822
  query?: {
41790
41823
  onLocked?: "error" | "archive";
41824
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
41791
41825
  dryRun?: boolean;
41792
41826
  };
41793
41827
  header?: never;
@@ -42523,6 +42557,7 @@ export interface operations {
42523
42557
  putRecurringFeesById: {
42524
42558
  parameters: {
42525
42559
  query?: {
42560
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
42526
42561
  dryRun?: boolean;
42527
42562
  };
42528
42563
  header?: never;
@@ -42814,6 +42849,7 @@ export interface operations {
42814
42849
  parameters: {
42815
42850
  query?: {
42816
42851
  onLocked?: "error" | "archive";
42852
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
42817
42853
  dryRun?: boolean;
42818
42854
  };
42819
42855
  header?: never;
@@ -55519,6 +55555,7 @@ export interface operations {
55519
55555
  postReservations: {
55520
55556
  parameters: {
55521
55557
  query?: {
55558
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
55522
55559
  dryRun?: boolean;
55523
55560
  };
55524
55561
  header?: never;
@@ -56127,6 +56164,7 @@ export interface operations {
56127
56164
  * @description Deprecated: use allowReferenceChange
56128
56165
  */
56129
56166
  noReferenceChange?: boolean;
56167
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
56130
56168
  dryRun?: boolean;
56131
56169
  };
56132
56170
  header?: never;
@@ -57998,6 +58036,7 @@ export interface operations {
57998
58036
  putReservationsById: {
57999
58037
  parameters: {
58000
58038
  query?: {
58039
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58001
58040
  dryRun?: boolean;
58002
58041
  };
58003
58042
  header?: never;
@@ -58676,6 +58715,7 @@ export interface operations {
58676
58715
  parameters: {
58677
58716
  query?: {
58678
58717
  onLocked?: "error" | "archive";
58718
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58679
58719
  dryRun?: boolean;
58680
58720
  };
58681
58721
  header?: never;
@@ -58839,6 +58879,7 @@ export interface operations {
58839
58879
  putReservationsByIdStatus: {
58840
58880
  parameters: {
58841
58881
  query?: {
58882
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
58842
58883
  dryRun?: boolean;
58843
58884
  };
58844
58885
  header?: never;
@@ -59007,6 +59048,7 @@ export interface operations {
59007
59048
  postReservationsByReservationIdAdjustments: {
59008
59049
  parameters: {
59009
59050
  query?: {
59051
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
59010
59052
  dryRun?: boolean;
59011
59053
  };
59012
59054
  header?: never;
@@ -59576,6 +59618,7 @@ export interface operations {
59576
59618
  putReservationsByReservationIdAdjustmentsById: {
59577
59619
  parameters: {
59578
59620
  query?: {
59621
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
59579
59622
  dryRun?: boolean;
59580
59623
  };
59581
59624
  header?: never;
@@ -60145,6 +60188,7 @@ export interface operations {
60145
60188
  deleteReservationsByReservationIdAdjustmentsById: {
60146
60189
  parameters: {
60147
60190
  query?: {
60191
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
60148
60192
  dryRun?: boolean;
60149
60193
  };
60150
60194
  header?: never;
@@ -61414,6 +61458,7 @@ export interface operations {
61414
61458
  postStatements: {
61415
61459
  parameters: {
61416
61460
  query?: {
61461
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
61417
61462
  dryRun?: boolean;
61418
61463
  };
61419
61464
  header?: never;
@@ -64772,6 +64817,7 @@ export interface operations {
64772
64817
  postStatementsHistorical: {
64773
64818
  parameters: {
64774
64819
  query?: {
64820
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
64775
64821
  dryRun?: boolean;
64776
64822
  };
64777
64823
  header?: never;
@@ -66789,6 +66835,7 @@ export interface operations {
66789
66835
  putStatementsLinesByLineIdDescription: {
66790
66836
  parameters: {
66791
66837
  query?: {
66838
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
66792
66839
  dryRun?: boolean;
66793
66840
  };
66794
66841
  header?: never;
@@ -66956,6 +67003,7 @@ export interface operations {
66956
67003
  postStatementsManagerPay: {
66957
67004
  parameters: {
66958
67005
  query?: {
67006
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
66959
67007
  dryRun?: boolean;
66960
67008
  };
66961
67009
  header?: never;
@@ -69342,6 +69390,7 @@ export interface operations {
69342
69390
  putStatementsById: {
69343
69391
  parameters: {
69344
69392
  query?: {
69393
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
69345
69394
  dryRun?: boolean;
69346
69395
  };
69347
69396
  header?: never;
@@ -70766,6 +70815,7 @@ export interface operations {
70766
70815
  parameters: {
70767
70816
  query?: {
70768
70817
  onLocked?: "error" | "unlockAndDelete";
70818
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
70769
70819
  dryRun?: boolean;
70770
70820
  };
70771
70821
  header?: never;
@@ -70931,6 +70981,7 @@ export interface operations {
70931
70981
  postStatementsByIdPay: {
70932
70982
  parameters: {
70933
70983
  query?: {
70984
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
70934
70985
  dryRun?: boolean;
70935
70986
  };
70936
70987
  header?: never;
@@ -73136,6 +73187,7 @@ export interface operations {
73136
73187
  createRate: {
73137
73188
  parameters: {
73138
73189
  query?: {
73190
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73139
73191
  dryRun?: boolean;
73140
73192
  };
73141
73193
  header?: never;
@@ -73498,6 +73550,7 @@ export interface operations {
73498
73550
  updateRate: {
73499
73551
  parameters: {
73500
73552
  query?: {
73553
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73501
73554
  dryRun?: boolean;
73502
73555
  };
73503
73556
  header?: never;
@@ -73692,6 +73745,7 @@ export interface operations {
73692
73745
  parameters: {
73693
73746
  query?: {
73694
73747
  onLocked?: "error" | "archive";
73748
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
73695
73749
  dryRun?: boolean;
73696
73750
  };
73697
73751
  header?: never;
@@ -75471,6 +75525,7 @@ export interface operations {
75471
75525
  postTeamInit: {
75472
75526
  parameters: {
75473
75527
  query?: {
75528
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
75474
75529
  dryRun?: boolean;
75475
75530
  };
75476
75531
  header?: never;
@@ -79506,6 +79561,7 @@ export interface operations {
79506
79561
  postTransactions: {
79507
79562
  parameters: {
79508
79563
  query?: {
79564
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
79509
79565
  dryRun?: boolean;
79510
79566
  };
79511
79567
  header?: never;
@@ -80716,6 +80772,7 @@ export interface operations {
80716
80772
  postTransactionsBatch: {
80717
80773
  parameters: {
80718
80774
  query?: {
80775
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
80719
80776
  dryRun?: boolean;
80720
80777
  };
80721
80778
  header?: never;
@@ -82210,6 +82267,7 @@ export interface operations {
82210
82267
  postTransactionsRecurringTemplates: {
82211
82268
  parameters: {
82212
82269
  query?: {
82270
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
82213
82271
  dryRun?: boolean;
82214
82272
  };
82215
82273
  header?: never;
@@ -83099,6 +83157,7 @@ export interface operations {
83099
83157
  putTransactionsRecurringTemplatesById: {
83100
83158
  parameters: {
83101
83159
  query?: {
83160
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83102
83161
  dryRun?: boolean;
83103
83162
  };
83104
83163
  header?: never;
@@ -83480,6 +83539,7 @@ export interface operations {
83480
83539
  parameters: {
83481
83540
  query?: {
83482
83541
  onLocked?: "error" | "archive" | "detach";
83542
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83483
83543
  dryRun?: boolean;
83484
83544
  };
83485
83545
  header?: never;
@@ -83643,6 +83703,7 @@ export interface operations {
83643
83703
  postTransactionsRecurringTemplatesByIdRun: {
83644
83704
  parameters: {
83645
83705
  query?: {
83706
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
83646
83707
  dryRun?: boolean;
83647
83708
  };
83648
83709
  header?: never;
@@ -84543,6 +84604,7 @@ export interface operations {
84543
84604
  putTransactionsById: {
84544
84605
  parameters: {
84545
84606
  query?: {
84607
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
84546
84608
  dryRun?: boolean;
84547
84609
  };
84548
84610
  header?: never;
@@ -85168,6 +85230,7 @@ export interface operations {
85168
85230
  parameters: {
85169
85231
  query?: {
85170
85232
  onLocked?: "error" | "archive";
85233
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
85171
85234
  dryRun?: boolean;
85172
85235
  };
85173
85236
  header?: never;
@@ -85327,6 +85390,7 @@ export interface operations {
85327
85390
  putTransactionsByTransactionIdLinesById: {
85328
85391
  parameters: {
85329
85392
  query?: {
85393
+ /** @description Validate this request through the real write path, then roll back all changes. See https://docs.vrplatform.app/api/dry-run-mode. */
85330
85394
  dryRun?: boolean;
85331
85395
  };
85332
85396
  header?: never;