@auto-engineer/pipeline 1.28.0 → 1.30.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 (53) hide show
  1. package/.turbo/turbo-build.log +1 -1
  2. package/.turbo/turbo-test.log +5 -5
  3. package/.turbo/turbo-type-check.log +1 -1
  4. package/CHANGELOG.md +63 -0
  5. package/dist/src/builder/define.d.ts +8 -1
  6. package/dist/src/builder/define.d.ts.map +1 -1
  7. package/dist/src/builder/define.js +35 -0
  8. package/dist/src/builder/define.js.map +1 -1
  9. package/dist/src/core/descriptors.d.ts +7 -2
  10. package/dist/src/core/descriptors.d.ts.map +1 -1
  11. package/dist/src/index.d.ts +2 -2
  12. package/dist/src/index.d.ts.map +1 -1
  13. package/dist/src/index.js.map +1 -1
  14. package/dist/src/runtime/pipeline-runtime.js +1 -1
  15. package/dist/src/runtime/pipeline-runtime.js.map +1 -1
  16. package/dist/src/runtime/settled-tracker.d.ts +1 -1
  17. package/dist/src/runtime/settled-tracker.d.ts.map +1 -1
  18. package/dist/src/runtime/settled-tracker.js.map +1 -1
  19. package/dist/src/server/pipeline-server.d.ts.map +1 -1
  20. package/dist/src/server/pipeline-server.js +8 -6
  21. package/dist/src/server/pipeline-server.js.map +1 -1
  22. package/dist/src/testing/fixtures/kanban-full.pipeline.d.ts.map +1 -1
  23. package/dist/src/testing/fixtures/kanban-full.pipeline.js +0 -8
  24. package/dist/src/testing/fixtures/kanban-full.pipeline.js.map +1 -1
  25. package/dist/src/testing/fixtures/kanban-todo.config.d.ts.map +1 -1
  26. package/dist/src/testing/fixtures/kanban-todo.config.js +0 -1
  27. package/dist/src/testing/fixtures/kanban-todo.config.js.map +1 -1
  28. package/dist/src/testing/fixtures/kanban.pipeline.d.ts.map +1 -1
  29. package/dist/src/testing/fixtures/kanban.pipeline.js +0 -2
  30. package/dist/src/testing/fixtures/kanban.pipeline.js.map +1 -1
  31. package/dist/tsconfig.tsbuildinfo +1 -1
  32. package/ketchup-plan.md +4 -0
  33. package/package.json +3 -3
  34. package/scripts/run-kanban-e2e.ts +3 -3
  35. package/scripts/start-server.ts +1 -1
  36. package/src/builder/define.specs.ts +82 -5
  37. package/src/builder/define.ts +52 -1
  38. package/src/core/descriptors.ts +8 -2
  39. package/src/index.ts +2 -0
  40. package/src/plugins/plugin-loader.specs.ts +0 -7
  41. package/src/runtime/pipeline-runtime.ts +1 -1
  42. package/src/runtime/settled-tracker.ts +2 -2
  43. package/src/server/full-orchestration.e2e.specs.ts +4 -16
  44. package/src/server/pipeline-server.e2e.specs.ts +27 -33
  45. package/src/server/pipeline-server.specs.ts +41 -6
  46. package/src/server/pipeline-server.ts +10 -6
  47. package/src/testing/fixtures/kanban-full.pipeline.specs.ts +0 -24
  48. package/src/testing/fixtures/kanban-full.pipeline.ts +0 -14
  49. package/src/testing/fixtures/kanban-todo.config.ts +0 -1
  50. package/src/testing/fixtures/kanban.pipeline.specs.ts +0 -1
  51. package/src/testing/fixtures/kanban.pipeline.ts +0 -7
  52. package/src/testing/kanban-todo.e2e.specs.ts +1 -1
  53. package/src/testing/real-execution.e2e.specs.ts +6 -6
@@ -110,18 +110,18 @@ describe('Real Execution E2E', () => {
110
110
 
111
111
  describe('Full Pipeline Execution', () => {
112
112
  it(
113
- 'should execute ExportSchema and trigger full pipeline chain',
113
+ 'should execute GenerateServer and trigger full pipeline chain',
114
114
  async () => {
115
- console.log('\n=== Dispatching ExportSchema ===');
115
+ console.log('\n=== Dispatching GenerateServer ===');
116
116
  console.log(`Target directory: ${EXAMPLE_DIR}`);
117
117
 
118
118
  const dispatchResponse = await fetch(`http://localhost:${server.port}/command`, {
119
119
  method: 'POST',
120
120
  headers: { 'Content-Type': 'application/json' },
121
121
  body: JSON.stringify({
122
- type: 'ExportSchema',
122
+ type: 'GenerateServer',
123
123
  data: {
124
- directory: EXAMPLE_DIR,
124
+ destination: EXAMPLE_DIR,
125
125
  },
126
126
  }),
127
127
  });
@@ -184,8 +184,8 @@ describe('Real Execution E2E', () => {
184
184
 
185
185
  expect(events.length).toBeGreaterThan(0);
186
186
 
187
- const hasSchemaExported = events.some((e) => e.message.type === 'SchemaExported');
188
- expect(hasSchemaExported).toBe(true);
187
+ const hasServerGenerated = events.some((e) => e.message.type === 'ServerGenerated');
188
+ expect(hasServerGenerated).toBe(true);
189
189
  },
190
190
  10 * 60 * 1000,
191
191
  );