@tomflow/proflow-agent-gateway 0.1.8 → 0.1.9

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @tomflow/proflow-agent-gateway
2
2
 
3
+ ## 0.1.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Resolve DOCS.md from both source and built deployment adapters, prove all 24 built adapters return the published body, and announce package synchronization before the package manager blocks.
8
+
3
9
  ## 0.1.8
4
10
 
5
11
  ### Patch Changes
@@ -6,7 +6,7 @@ export declare const behaviorAdapter: {
6
6
  ok: true;
7
7
  status: "SUCCEEDED";
8
8
  moduleRef: "agent-gateway";
9
- moduleVersion: "0.1.8";
9
+ moduleVersion: "0.1.9";
10
10
  data: {
11
11
  localBaseUrl: string;
12
12
  publicBaseUrl?: string;
@@ -20,7 +20,7 @@ export declare const behaviorAdapter: {
20
20
  readonly ok: true;
21
21
  readonly status: "SUCCEEDED";
22
22
  readonly moduleRef: "agent-gateway";
23
- readonly moduleVersion: "0.1.8";
23
+ readonly moduleVersion: "0.1.9";
24
24
  };
25
25
  observedEffects: string[];
26
26
  }>;
@@ -30,7 +30,7 @@ export declare const behaviorAdapter: {
30
30
  ok: true;
31
31
  status: "SUCCEEDED";
32
32
  moduleRef: "agent-gateway";
33
- moduleVersion: "0.1.8";
33
+ moduleVersion: "0.1.9";
34
34
  data: {
35
35
  setupStatus: "FAILED" | "READY";
36
36
  runtimeStatus: "RUNNING" | "STOPPED";
@@ -44,11 +44,11 @@ export declare const behaviorAdapter: {
44
44
  readonly ok: true;
45
45
  readonly status: "SUCCEEDED";
46
46
  readonly moduleRef: "agent-gateway";
47
- readonly moduleVersion: "0.1.8";
47
+ readonly moduleVersion: "0.1.9";
48
48
  } | {
49
49
  contract: "deployment.result.v1";
50
50
  moduleRef: "agent-gateway";
51
- moduleVersion: "0.1.8";
51
+ moduleVersion: "0.1.9";
52
52
  ok: false;
53
53
  status: "FAILED";
54
54
  error: {
@@ -81,7 +81,7 @@ export declare const behaviorAdapter: {
81
81
  ok: true;
82
82
  status: "SUCCEEDED";
83
83
  moduleRef: "agent-gateway";
84
- moduleVersion: "0.1.8";
84
+ moduleVersion: "0.1.9";
85
85
  data: {
86
86
  docs: string;
87
87
  };
@@ -94,7 +94,7 @@ export declare const behaviorAdapter: {
94
94
  ok: true;
95
95
  status: "SUCCEEDED";
96
96
  moduleRef: "agent-gateway";
97
- moduleVersion: "0.1.8";
97
+ moduleVersion: "0.1.9";
98
98
  data: {
99
99
  host: string;
100
100
  port: number;
@@ -105,7 +105,7 @@ export declare const behaviorAdapter: {
105
105
  result: {
106
106
  contract: "deployment.result.v1";
107
107
  moduleRef: "agent-gateway";
108
- moduleVersion: "0.1.8";
108
+ moduleVersion: "0.1.9";
109
109
  ok: false;
110
110
  status: "FAILED";
111
111
  error: {
@@ -122,7 +122,7 @@ export declare const behaviorAdapter: {
122
122
  readonly ok: true;
123
123
  readonly status: "SUCCEEDED";
124
124
  readonly moduleRef: "agent-gateway";
125
- readonly moduleVersion: "0.1.8";
125
+ readonly moduleVersion: "0.1.9";
126
126
  };
127
127
  observedEffects: string[];
128
128
  } | {
@@ -131,11 +131,11 @@ export declare const behaviorAdapter: {
131
131
  readonly ok: true;
132
132
  readonly status: "SUCCEEDED";
133
133
  readonly moduleRef: "agent-gateway";
134
- readonly moduleVersion: "0.1.8";
134
+ readonly moduleVersion: "0.1.9";
135
135
  } | {
136
136
  contract: "deployment.result.v1";
137
137
  moduleRef: "agent-gateway";
138
- moduleVersion: "0.1.8";
138
+ moduleVersion: "0.1.9";
139
139
  ok: false;
140
140
  status: "FAILED";
141
141
  error: {
@@ -133,7 +133,7 @@ export const behaviorAdapter = {
133
133
  result: {
134
134
  ...base,
135
135
  data: {
136
- docs: readFileSync(new URL("../DOCS.md", import.meta.url), "utf8"),
136
+ docs: readFileSync(new URL(import.meta.url.includes("/dist/") ? "../../DOCS.md" : "../DOCS.md", import.meta.url), "utf8"),
137
137
  },
138
138
  },
139
139
  observedEffects: [],
@@ -3,7 +3,7 @@ export declare const descriptor: {
3
3
  readonly contractVersion: "1.0.0";
4
4
  readonly moduleRef: "agent-gateway";
5
5
  readonly packageName: "@tomflow/proflow-agent-gateway";
6
- readonly moduleVersion: "0.1.8";
6
+ readonly moduleVersion: "0.1.9";
7
7
  readonly kind: "service";
8
8
  readonly templateVersion: "1.0.0";
9
9
  readonly platformCompatibility: ">=1.0.0 <2.0.0";
@@ -3,7 +3,7 @@ export const descriptor = {
3
3
  contractVersion: "1.0.0",
4
4
  moduleRef: "agent-gateway",
5
5
  packageName: "@tomflow/proflow-agent-gateway",
6
- moduleVersion: "0.1.8",
6
+ moduleVersion: "0.1.9",
7
7
  kind: "service",
8
8
  templateVersion: "1.0.0",
9
9
  platformCompatibility: ">=1.0.0 <2.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-agent-gateway",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,18 +25,18 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "zod": "4.1.12",
28
- "@tomflow/proflow-module-contract": "^0.1.8"
28
+ "@tomflow/proflow-module-contract": "^0.1.9"
29
29
  },
30
30
  "devDependencies": {
31
- "@tomflow/proflow-execution-runtime": "^0.1.9",
32
- "@tomflow/proflow-task-migration-runner": "^0.1.6",
33
- "@tomflow/proflow-execution-local": "^0.1.7",
34
- "@tomflow/proflow-platform-host": "^0.1.8",
35
- "@tomflow/proflow-task-store-sqlite": "^0.1.6",
36
- "@tomflow/proflow-task-orchestration": "^0.1.5",
37
- "@tomflow/proflow-agent-runtime": "^0.1.6",
38
- "@tomflow/proflow-deployment-conformance": "^0.1.6",
39
- "@tomflow/proflow-execution-browser-extension": "^0.1.7"
31
+ "@tomflow/proflow-agent-runtime": "^0.1.7",
32
+ "@tomflow/proflow-execution-local": "^0.1.8",
33
+ "@tomflow/proflow-execution-browser-extension": "^0.1.8",
34
+ "@tomflow/proflow-execution-runtime": "^0.1.10",
35
+ "@tomflow/proflow-task-migration-runner": "^0.1.7",
36
+ "@tomflow/proflow-deployment-conformance": "^0.1.7",
37
+ "@tomflow/proflow-task-orchestration": "^0.1.6",
38
+ "@tomflow/proflow-platform-host": "^0.1.9",
39
+ "@tomflow/proflow-task-store-sqlite": "^0.1.7"
40
40
  },
41
41
  "description": "The sole Custom GPT Actions HTTP ingress and OpenAI transport anti-corruption layer.",
42
42
  "keywords": [
@@ -3,7 +3,7 @@
3
3
  "contractVersion": "1.0.0",
4
4
  "moduleRef": "agent-gateway",
5
5
  "packageName": "@tomflow/proflow-agent-gateway",
6
- "moduleVersion": "0.1.8",
6
+ "moduleVersion": "0.1.9",
7
7
  "kind": "service",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",