@avallon-labs/sdk 26.8.0 → 26.9.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/dist/index.d.ts +3 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4986,6 +4986,8 @@ type UpdateWorkerBody = {
4986
4986
  schema?: UpdateWorkerBodySchema;
4987
4987
  /** Replace the worker's attached tool set. Omit to leave unchanged; pass [] to clear. */
4988
4988
  tools?: string[];
4989
+ /** Customer-specific context appended to the case-ID determination prompt. Omit to leave unchanged; pass null to clear. */
4990
+ case_determination_context?: string | null;
4989
4991
  };
4990
4992
 
4991
4993
  /**
@@ -5405,6 +5407,7 @@ interface Worker {
5405
5407
  created_at: string;
5406
5408
  updated_at: string;
5407
5409
  schema: WorkerSchema;
5410
+ case_determination_context: string | null;
5408
5411
  tool_ids: string[];
5409
5412
  }
5410
5413
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avallon-labs/sdk",
3
- "version": "26.8.0",
3
+ "version": "26.9.0",
4
4
  "description": "Avallon API SDK - generated from OpenAPI",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",