pi-outpost 0.16.1 → 0.16.2

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.
@@ -142630,7 +142630,15 @@ var objectOptions = { additionalProperties: false };
142630
142630
  var boundedText = (maxLength, description) => typebox_exports2.String({
142631
142631
  minLength: 1,
142632
142632
  maxLength,
142633
- pattern: "\\S",
142633
+ // Rejects whitespace-only strings. Anchored (`^`…`$`) rather than the bare
142634
+ // `\S` this replaced: JSON Schema `pattern` is a "contains a match" test so
142635
+ // both reject the same strings, but automatic parser/grammar generation for
142636
+ // structured output (constrained decoding on some providers) requires every
142637
+ // pattern to be fully anchored and rejects the schema outright otherwise —
142638
+ // as a 400 on every call once a tool carries one, this field appears on most
142639
+ // of the work_plan schema's string properties, so the error repeated once
142640
+ // per occurrence.
142641
+ pattern: "^[\\s\\S]*\\S[\\s\\S]*$",
142634
142642
  ...description === void 0 ? {} : { description }
142635
142643
  });
142636
142644
  var identifierSchema = boundedText(WORK_PLAN_LIMITS.title);
@@ -144726,7 +144734,7 @@ var EMBEDDED_WEB = {
144726
144734
  };
144727
144735
 
144728
144736
  // ../server/src/index.ts
144729
- var VERSION2 = true ? "0.16.1" : "dev";
144737
+ var VERSION2 = true ? "0.16.2" : "dev";
144730
144738
  var PI_SDK_VERSION = true ? "0.84.3" : "dev";
144731
144739
  var LAUNCH_DIR = process.env.INIT_CWD ?? process.cwd();
144732
144740
  function complain(error) {
@@ -425129,7 +425129,15 @@ var objectOptions = { additionalProperties: false };
425129
425129
  var boundedText = (maxLength, description) => typebox_exports2.String({
425130
425130
  minLength: 1,
425131
425131
  maxLength,
425132
- pattern: "\\S",
425132
+ // Rejects whitespace-only strings. Anchored (`^`…`$`) rather than the bare
425133
+ // `\S` this replaced: JSON Schema `pattern` is a "contains a match" test so
425134
+ // both reject the same strings, but automatic parser/grammar generation for
425135
+ // structured output (constrained decoding on some providers) requires every
425136
+ // pattern to be fully anchored and rejects the schema outright otherwise —
425137
+ // as a 400 on every call once a tool carries one, this field appears on most
425138
+ // of the work_plan schema's string properties, so the error repeated once
425139
+ // per occurrence.
425140
+ pattern: "^[\\s\\S]*\\S[\\s\\S]*$",
425133
425141
  ...description === void 0 ? {} : { description }
425134
425142
  });
425135
425143
  var identifierSchema = boundedText(WORK_PLAN_LIMITS.title);
@@ -427225,7 +427233,7 @@ var EMBEDDED_WEB = {
427225
427233
  };
427226
427234
 
427227
427235
  // ../server/src/index.ts
427228
- var VERSION5 = true ? "0.16.1" : "dev";
427236
+ var VERSION5 = true ? "0.16.2" : "dev";
427229
427237
  var PI_SDK_VERSION = true ? "0.84.3" : "dev";
427230
427238
  var LAUNCH_DIR = process.env.INIT_CWD ?? process.cwd();
427231
427239
  function complain(error) {
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-outpost",
3
- "version": "0.16.1",
3
+ "version": "0.16.2",
4
4
  "type": "module",
5
5
  "description": "A web interface for the pi coding agent: a browser chat UI you run with npx — no clone, no build.",
6
6
  "license": "MIT",