@auto-engineer/pipeline 1.110.7 → 1.111.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.
package/package.json CHANGED
@@ -14,8 +14,8 @@
14
14
  "get-port": "^7.1.0",
15
15
  "jose": "^5.9.6",
16
16
  "nanoid": "^5.0.0",
17
- "@auto-engineer/file-store": "1.110.7",
18
- "@auto-engineer/message-bus": "1.110.7"
17
+ "@auto-engineer/file-store": "1.111.0",
18
+ "@auto-engineer/message-bus": "1.111.0"
19
19
  },
20
20
  "devDependencies": {
21
21
  "@types/cors": "^2.8.17",
@@ -24,7 +24,7 @@
24
24
  "publishConfig": {
25
25
  "access": "public"
26
26
  },
27
- "version": "1.110.7",
27
+ "version": "1.111.0",
28
28
  "scripts": {
29
29
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts",
30
30
  "test": "vitest run --reporter=dot",
@@ -589,7 +589,6 @@ const pipeline = define('kanban-pipeline')
589
589
  .emit('GenerateClient', {
590
590
  targetDir: './client',
591
591
  iaSchemaPath: './.context/auto-ia-scheme.json',
592
- gqlSchemaPath: './.context/schema.graphql',
593
592
  figmaVariablesPath: './.context/figma-file.json',
594
593
  })
595
594
 
@@ -529,8 +529,7 @@
529
529
  "data": {
530
530
  "modelPath": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/.context/schema.json",
531
531
  "destination": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo",
532
- "serverDir": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/server",
533
- "contextSchemaGraphQL": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/.context/schema.graphql"
532
+ "serverDir": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/server"
534
533
  },
535
534
  "messageType": "event",
536
535
  "position": "50"
@@ -615,8 +615,7 @@
615
615
  "data": {
616
616
  "modelPath": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/.context/schema.json",
617
617
  "destination": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo",
618
- "serverDir": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/server",
619
- "contextSchemaGraphQL": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/.context/schema.graphql"
618
+ "serverDir": "/Users/sam/WebstormProjects/top/auto-engineer/examples/kanban-todo/server"
620
619
  },
621
620
  "messageType": "event",
622
621
  "position": "58"
@@ -172,7 +172,6 @@ describe('kanban-full.pipeline', () => {
172
172
  expect(data).toEqual({
173
173
  targetDir: './client',
174
174
  iaSchemaPath: './.context/auto-ia-scheme.json',
175
- gqlSchemaPath: './.context/schema.graphql',
176
175
  figmaVariablesPath: './.context/figma-file.json',
177
176
  });
178
177
  });
@@ -145,7 +145,6 @@ export function createKanbanFullPipeline() {
145
145
  .emit('GenerateClient', () => ({
146
146
  targetDir: resolvePath('./client'),
147
147
  iaSchemaPath: resolvePath('./.context/auto-ia-scheme.json'),
148
- gqlSchemaPath: resolvePath('./.context/schema.graphql'),
149
148
  figmaVariablesPath: resolvePath('./.context/figma-file.json'),
150
149
  }))
151
150