busroot-sdk 0.0.8-dev.2692307155 → 0.0.8-dev.2695058487
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/index.js +2 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -2318,9 +2318,10 @@ var require_station_window = __commonJS({
|
|
|
2318
2318
|
"../../packages/common/build/schemas/station-window.js"(exports2) {
|
|
2319
2319
|
"use strict";
|
|
2320
2320
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
2321
|
-
exports2.StationWindowSchema = exports2.STATION_WINDOW_MODEL = void 0;
|
|
2321
|
+
exports2.StationWindowSchema = exports2.STATION_WINDOW_CACHE_MODEL = exports2.STATION_WINDOW_MODEL = void 0;
|
|
2322
2322
|
var zod_1 = require("zod");
|
|
2323
2323
|
exports2.STATION_WINDOW_MODEL = "station_window";
|
|
2324
|
+
exports2.STATION_WINDOW_CACHE_MODEL = "station_window_cache";
|
|
2324
2325
|
exports2.StationWindowSchema = zod_1.z.object({
|
|
2325
2326
|
accountId: zod_1.z.string().describe(""),
|
|
2326
2327
|
stationCode: zod_1.z.string().describe("A code that uniquely identifies this station within this account."),
|
package/package.json
CHANGED