This repository was archived by the owner on Feb 23, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ COPY weft/ ./weft/
1616
1717# Install dependencies and build
1818RUN pnpm install --frozen-lockfile || pnpm install
19- RUN pnpm --filter @loom /shared build
20- RUN pnpm --filter @loom /weft build
19+ RUN pnpm --filter @loominal /shared build
20+ RUN pnpm --filter @loominal /weft build
2121
2222# Production image
2323FROM node:20-alpine AS runner
Original file line number Diff line number Diff line change @@ -151,6 +151,9 @@ export interface WorkSubmitRequest {
151151 */
152152export interface WorkSubmitResponse {
153153 /** Generated work item ID */
154+ id : string ;
155+
156+ /** @deprecated Use `id` instead. Provided for backward compatibility. */
154157 workItemId : string ;
155158
156159 /** Resolved agent type based on routing */
Original file line number Diff line number Diff line change @@ -287,7 +287,8 @@ export class ExtendedCoordinator extends EventEmitter {
287287 }
288288
289289 return {
290- workItemId,
290+ id : workItemId ,
291+ workItemId, // Deprecated: for backward compatibility
291292 targetAgentType,
292293 spinUpTriggered,
293294 estimatedWaitSeconds,
You can’t perform that action at this time.
0 commit comments