@vrplatform/api 1.3.1-6504 → 1.3.1-6512
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/main/generated/v1.d.ts +2 -2
- package/build/main/generated/v1.js.map +1 -1
- package/build/main/vrt-mcp.d.ts +1 -0
- package/build/main/vrt-mcp.js +8 -1
- package/build/main/vrt-mcp.js.map +1 -1
- package/build/module/generated/v1.d.ts +2 -2
- package/build/module/generated/v1.js.map +1 -1
- package/build/module/vrt-mcp.d.ts +1 -0
- package/build/module/vrt-mcp.js +8 -1
- package/build/module/vrt-mcp.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +2 -2
- package/src/vrt-mcp.ts +8 -1
|
@@ -115290,7 +115290,7 @@ export interface operations {
|
|
|
115290
115290
|
/** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
115291
115291
|
date?: string;
|
|
115292
115292
|
/** @description Choose which reservation date field the `date` filter applies to. */
|
|
115293
|
-
dateField?: "bookedAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
115293
|
+
dateField?: "bookedAt" | "cancelledAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
115294
115294
|
search?: string;
|
|
115295
115295
|
/** @description Filter by payment status. Prefix a status with ! to exclude it. */
|
|
115296
115296
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid" | "!unpaid" | "!underpaid" | "!overpaid" | "!paid";
|
|
@@ -116838,7 +116838,7 @@ export interface operations {
|
|
|
116838
116838
|
/** @description Date filter string. Accepted syntax: `YYYY`, `YYYY-MM`, `YYYY-MM-DD`, or range `YYYY-MM-DD...YYYY-MM-DD`. Single values expand to the full year, month, or day. */
|
|
116839
116839
|
date?: string;
|
|
116840
116840
|
/** @description Choose which reservation date field the `date` filter applies to. */
|
|
116841
|
-
dateField?: "bookedAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
116841
|
+
dateField?: "bookedAt" | "cancelledAt" | "checkIn" | "checkOut" | "payment" | "intersection";
|
|
116842
116842
|
search?: string;
|
|
116843
116843
|
/** @description Filter by payment status. Prefix a status with ! to exclude it. */
|
|
116844
116844
|
paidStatus?: "unpaid" | "underpaid" | "overpaid" | "paid" | "!unpaid" | "!underpaid" | "!overpaid" | "!paid";
|