@alexkroman1/aai-cli 1.11.0 → 1.12.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.
@@ -262,6 +262,8 @@ function viteDevConfig(cwd, vitePort, backendPort) {
262
262
  strictPort: true,
263
263
  proxy: {
264
264
  "/health": target,
265
+ "/client-config": target,
266
+ "/sync": target,
265
267
  "/websocket": {
266
268
  target,
267
269
  ws: true
@@ -299,6 +301,8 @@ async function startDevServer(opts) {
299
301
  name: agentDef.name,
300
302
  env: hostModeEnv(providerEnv),
301
303
  hostBaseAgent: agentDef,
304
+ ...agentDef.transport !== void 0 ? { transport: agentDef.transport } : {},
305
+ greeting: agentDef.greeting,
302
306
  ...clientDirOpt
303
307
  });
304
308
  }
package/dist/cli.mjs CHANGED
@@ -143,7 +143,7 @@ const dev = defineCommand({
143
143
  async run({ args }) {
144
144
  await runCommand(args, async () => {
145
145
  const cwd = await setup({ agent: true });
146
- const { executeDev } = await import("./dev-BkOmi66P.mjs");
146
+ const { executeDev } = await import("./dev-DPojJf4g.mjs");
147
147
  return executeDev({
148
148
  cwd,
149
149
  port: args.port
@@ -11,7 +11,7 @@ import pc from "picocolors";
11
11
  async function executeDev(opts) {
12
12
  const port = parsePort(opts.port);
13
13
  const agentName = path.basename(path.resolve(opts.cwd));
14
- const { startDevServer } = await import("./_dev-server-DgjcUw14.mjs");
14
+ const { startDevServer } = await import("./_dev-server-DYzxOOIS.mjs");
15
15
  let cleanup;
16
16
  let shuttingDown = false;
17
17
  const onSignal = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexkroman1/aai-cli",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "aai": "dist/cli.mjs"
@@ -32,8 +32,8 @@
32
32
  "rolldown": "~1.1.4",
33
33
  "vite": "^8.1.5",
34
34
  "zod": "^4.4.3",
35
- "@alexkroman1/aai": "1.11.0",
36
- "@alexkroman1/aai-ui": "1.11.0"
35
+ "@alexkroman1/aai-ui": "1.12.0",
36
+ "@alexkroman1/aai": "1.12.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "playwright": "^1.61.1",