@intentic/sandbox-contract 1.171.0 → 1.172.0

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/package.json +2 -2
  2. package/src/schemas.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intentic/sandbox-contract",
3
- "version": "1.171.0",
3
+ "version": "1.172.0",
4
4
  "description": "oRPC wire contract for the intentic sandbox daemon — shared by the daemon and its browser client",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -67,7 +67,7 @@
67
67
  "@orpc/contract": "1.14.13",
68
68
  "tslib": "2.8.1",
69
69
  "zod": "4.4.3",
70
- "@intentic/extension-api": "1.171.0"
70
+ "@intentic/extension-api": "1.172.0"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/node": "24.13.2",
package/src/schemas.ts CHANGED
@@ -3234,7 +3234,7 @@ export const ProbeResultSchema = z.object({
3234
3234
  // deciding whether to force a refresh deserves to know what they are asking for.
3235
3235
  tookMs: z.number().int().nonnegative(),
3236
3236
  facts: ProbeFactsSchema.optional(),
3237
- // Why it is unavailable, or how it failed — the tail of the tool's own output. Never invented here.
3237
+ // Why it is unavailable, or how it failed — a bounded quote of the tool's own output. Never invented here.
3238
3238
  reason: z.string().optional(),
3239
3239
  });
3240
3240
  export type ProbeResult = z.infer<typeof ProbeResultSchema>;