@agentic-surfaces/server 0.1.9 → 0.1.11

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.
@@ -4,8 +4,8 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>agentic-surfaces — workflow editor</title>
7
- <script type="module" crossorigin src="/assets/index-CaahXTxn.js"></script>
8
- <link rel="stylesheet" crossorigin href="/assets/index-BgnkW1wX.css">
7
+ <script type="module" crossorigin src="/assets/index-Btq0napY.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-3roHPIZD.css">
9
9
  </head>
10
10
  <body>
11
11
  <div id="root"></div>
package/dist/http.d.ts CHANGED
@@ -21,13 +21,14 @@ export interface ServerOptions {
21
21
  * (the editor renders read-only).
22
22
  */
23
23
  onRun?: (name: string) => void | Promise<unknown>;
24
- /** Project-level config surfaced at GET /api/config (so the UI shows effective agent defaults). */
24
+ /** Project-level config surfaced at GET /api/config (so the UI shows effective agent defaults + version). */
25
25
  config?: {
26
26
  dryRun?: boolean;
27
27
  agent?: {
28
28
  model?: string;
29
29
  effort?: string;
30
30
  };
31
+ version?: string;
31
32
  };
32
33
  /** File-based agent definitions, surfaced at GET /api/agents (for the node detail view). */
33
34
  agents?: AgentDefinition[];
package/dist/serve.d.ts CHANGED
@@ -11,13 +11,14 @@ export interface ServeOptions {
11
11
  workflows?: Workflow[];
12
12
  /** Trigger a run by name from the UI (POST /api/run). */
13
13
  onRun?: (name: string) => void | Promise<unknown>;
14
- /** Project config surfaced at GET /api/config (effective agent defaults, dryRun). */
14
+ /** Project config surfaced at GET /api/config (effective agent defaults, dryRun, version). */
15
15
  config?: {
16
16
  dryRun?: boolean;
17
17
  agent?: {
18
18
  model?: string;
19
19
  effort?: string;
20
20
  };
21
+ version?: string;
21
22
  };
22
23
  /** Agent definitions surfaced at GET /api/agents. */
23
24
  agents?: AgentDefinition[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-surfaces/server",
3
- "version": "0.1.9",
3
+ "version": "0.1.11",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -21,7 +21,7 @@
21
21
  "dist"
22
22
  ],
23
23
  "dependencies": {
24
- "@agentic-surfaces/core": "0.1.9"
24
+ "@agentic-surfaces/core": "0.1.11"
25
25
  },
26
26
  "scripts": {
27
27
  "build": "tsc -b",