@fses/workbench-app 0.2.1 → 0.2.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.
Files changed (24) hide show
  1. package/WORKBENCH-CLOSURE.json +12 -12
  2. package/dist/Workspace-fYH2XNdb.js +22699 -0
  3. package/dist/fses-workbench-app.js +2 -2
  4. package/dist/{index-DbH6tMQy.js → index-CbIJlts1.js} +8 -8
  5. package/dist/internal/personal-workbench/components/workbench/WorkbenchStudio.vue.d.ts +2 -2
  6. package/dist/internal/personal-workbench/lib/deepAgentApi.d.ts +41 -2
  7. package/dist/internal/personal-workbench/lib/deepAgentQueueState.d.ts +111 -0
  8. package/dist/internal/personal-workbench/lib/vueRuntimeAdapters.d.ts +72 -0
  9. package/dist/internal/personal-workbench/lib/workbenchSocketClient.d.ts +1 -1
  10. package/dist/internal/personal-workbench/lib/workbenchStorage.d.ts +2 -0
  11. package/dist/runtime/index.js +1 -1
  12. package/dist/style.css +1 -1
  13. package/dist/{useWorkbenchRuntime-XpOzwm56.js → useWorkbenchRuntime-Ch8lqkjO.js} +6707 -6315
  14. package/node_modules/@fses/ai-chat/package.json +3 -3
  15. package/node_modules/@fses/workbench-card/dist/fses-workbench-card-renderers.js +1517 -1506
  16. package/node_modules/@fses/workbench-card/dist/types/block.d.ts +9 -0
  17. package/node_modules/@fses/workbench-card/package.json +4 -3
  18. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateRegistry.generated.js +19950 -0
  19. package/node_modules/@fses/workbench-card/src/renderers/WorkbenchBlockRenderer.vue +2 -2
  20. package/node_modules/@fses/workbench-card/src/renderers/native/nativeBindings.ts +20 -5
  21. package/node_modules/@fses/workbench-card/src/renderers/reference-composite/referenceCompositeBindings.ts +5 -1
  22. package/node_modules/@fses/workbench-card/src/types/block.ts +9 -0
  23. package/package.json +3 -3
  24. package/dist/Workspace-DMye5DU8.js +0 -43113
@@ -514,6 +514,15 @@ export interface ConversationTurn {
514
514
  error?: string;
515
515
  suppressErrorDisplay?: boolean;
516
516
  collapsed?: boolean;
517
+ deepAgentSubmission?: {
518
+ idempotencyKey: string;
519
+ runId?: string;
520
+ threadId?: string;
521
+ queuePosition?: number;
522
+ status: 'submitting' | 'pending' | 'active' | 'retry_waiting' | 'accepted';
523
+ retryCount?: number;
524
+ retryKind?: 'queue_full' | 'migration' | 'legacy_active' | 'network' | 'unknown';
525
+ };
517
526
  }
518
527
  export type CardDataTaskStatus = 'pending' | 'querying' | 'confirming' | 'empty' | 'bound' | 'failed' | 'config_required';
519
528
  export type CardDataTaskConfirmationType = 'semantic_model' | 'join_path' | 'metric_subject' | 'filter';
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fses/workbench-card",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "files": [
@@ -74,8 +74,9 @@
74
74
  "vue-tsc": "^2.2.10"
75
75
  },
76
76
  "scripts": {
77
- "stub": "node ./scripts/clean-tsbuildinfo.mjs && vue-tsc --emitDeclarationOnly",
78
- "build": "node ./scripts/clean-tsbuildinfo.mjs && vite build && vite build --config vite.config.renderers.ts --emptyOutDir false && vite build --config vite.config.echarts-protocol.ts --emptyOutDir false && vue-tsc --emitDeclarationOnly",
77
+ "stub": "node ./scripts/clean-tsbuildinfo.mjs && node ./scripts/generate-echarts-registry-js.mjs && vue-tsc --emitDeclarationOnly",
78
+ "build": "node ./scripts/clean-tsbuildinfo.mjs && node ./scripts/generate-echarts-registry-js.mjs && vite build && vite build --config vite.config.renderers.ts --emptyOutDir false && vite build --config vite.config.echarts-protocol.ts --emptyOutDir false && vue-tsc --emitDeclarationOnly",
79
+ "pretest": "node ./scripts/generate-echarts-registry-js.mjs",
79
80
  "test": "jest --config test/jest.config.cjs --runInBand",
80
81
  "verify:exports": "node ../../scripts/verify-package-exports.mjs ."
81
82
  }