busroot-sdk 0.0.8-dev.2791332219 → 0.0.8-dev.2794844917

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.
Files changed (2) hide show
  1. package/build/index.js +2 -2
  2. package/package.json +1 -1
package/build/index.js CHANGED
@@ -774,7 +774,7 @@ var require_base_station = __commonJS({
774
774
  // allowScheduleCutShort, allowRejectProduction, allowEditPartsPerCycle, schedulingOnly) are now
775
775
  // registry-managed tri-state `enable*` fields, added below via flagSchemaFieldsForLevel("station").
776
776
  // Current State
777
- currentOperatorInitials: zod_1.z.string().min(3).max(3).nullish().describe("Current Operator Initials: Current operator's initials (exactly 3 characters, system managed)"),
777
+ currentOperatorInitials: zod_1.z.string().min(3).max(8).nullish().describe("Current Operator Initials: Current operator's initials (3-8 letters/numbers, system managed)"),
778
778
  statusCode: zod_1.z.string().nullish().describe("Status Code: Current status code of the station (system managed)"),
779
779
  statusCodeUpdatedAt: zod_1.z.string().nullish().describe("Status Code Updated At: Timestamp when status was last updated (ISO 8601, system managed)"),
780
780
  // Performance Mode
@@ -2434,7 +2434,7 @@ var require_reason = __commonJS({
2434
2434
  exports2.ReasonSchema = base_reason_1.BaseReasonSchema.extend({
2435
2435
  accountId: zod_1.z.string().optional(),
2436
2436
  description: zod_1.z.string().trim().min(1).max(50).describe("Description: Provide a short, clear description of the reason."),
2437
- parentReasonCode: zod_1.z.string().trim().min(1).max(50).nullish().describe("Parent Reason: Reasons can be organised in multi-levels. Define whether this is a Parent Reason or a Sub-Reason within an existing group."),
2437
+ parentReasonCode: zod_1.z.string().trim().min(1).max(50).nullish().describe("Reason Level: Select 'Top-level Reason' to keep it at the top level, or select an existing reason to nest it underneath as a sub-reason. Reasons can be organised in multiple levels."),
2438
2438
  deletedAt: zod_1.z.string().nullish(),
2439
2439
  createdAt: zod_1.z.string().optional(),
2440
2440
  updatedAt: zod_1.z.string().optional()
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "busroot-sdk",
3
- "version": "0.0.8-dev.2791332219",
3
+ "version": "0.0.8-dev.2794844917",
4
4
  "description": "An SDK for accessing Busroot from output.industries",
5
5
  "homepage": "https://www.output.industries",
6
6
  "main": "./build/index.js",