@tomflow/proflow-execution-runtime 0.1.15 → 0.1.16

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.
@@ -6,7 +6,7 @@ export declare const behaviorAdapter: {
6
6
  ok: true;
7
7
  status: "SUCCEEDED";
8
8
  moduleRef: "execution-runtime";
9
- moduleVersion: "0.1.15";
9
+ moduleVersion: "0.1.16";
10
10
  data: {
11
11
  endpoint: string;
12
12
  transportCredentialFile: string;
@@ -23,7 +23,7 @@ export declare const behaviorAdapter: {
23
23
  readonly ok: true;
24
24
  readonly status: "SUCCEEDED";
25
25
  readonly moduleRef: "execution-runtime";
26
- readonly moduleVersion: "0.1.15";
26
+ readonly moduleVersion: "0.1.16";
27
27
  };
28
28
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
29
29
  }>;
@@ -33,7 +33,7 @@ export declare const behaviorAdapter: {
33
33
  ok: true;
34
34
  status: "SUCCEEDED";
35
35
  moduleRef: "execution-runtime";
36
- moduleVersion: "0.1.15";
36
+ moduleVersion: "0.1.16";
37
37
  data: {
38
38
  setupStatus: "READY";
39
39
  runtimeStatus: "RUNNING" | "STOPPED";
@@ -54,7 +54,7 @@ export declare const behaviorAdapter: {
54
54
  ok: true;
55
55
  status: "SUCCEEDED";
56
56
  moduleRef: "execution-runtime";
57
- moduleVersion: "0.1.15";
57
+ moduleVersion: "0.1.16";
58
58
  data: {
59
59
  endpoint: string;
60
60
  transportCredentialFile: string;
@@ -71,7 +71,7 @@ export declare const behaviorAdapter: {
71
71
  ok: true;
72
72
  status: "SUCCEEDED";
73
73
  moduleRef: "execution-runtime";
74
- moduleVersion: "0.1.15";
74
+ moduleVersion: "0.1.16";
75
75
  data: {
76
76
  docs: string;
77
77
  };
@@ -84,7 +84,7 @@ export declare const behaviorAdapter: {
84
84
  ok: true;
85
85
  status: "SUCCEEDED";
86
86
  moduleRef: "execution-runtime";
87
- moduleVersion: "0.1.15";
87
+ moduleVersion: "0.1.16";
88
88
  data: unknown;
89
89
  };
90
90
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
@@ -92,7 +92,7 @@ export declare const behaviorAdapter: {
92
92
  result: {
93
93
  contract: "deployment.result.v1";
94
94
  moduleRef: "execution-runtime";
95
- moduleVersion: "0.1.15";
95
+ moduleVersion: "0.1.16";
96
96
  ok: false;
97
97
  status: "FAILED";
98
98
  error: {
@@ -109,7 +109,7 @@ export declare const behaviorAdapter: {
109
109
  readonly ok: true;
110
110
  readonly status: "SUCCEEDED";
111
111
  readonly moduleRef: "execution-runtime";
112
- readonly moduleVersion: "0.1.15";
112
+ readonly moduleVersion: "0.1.16";
113
113
  };
114
114
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
115
115
  } | {
@@ -118,11 +118,11 @@ export declare const behaviorAdapter: {
118
118
  readonly ok: true;
119
119
  readonly status: "SUCCEEDED";
120
120
  readonly moduleRef: "execution-runtime";
121
- readonly moduleVersion: "0.1.15";
121
+ readonly moduleVersion: "0.1.16";
122
122
  } | {
123
123
  contract: "deployment.result.v1";
124
124
  moduleRef: "execution-runtime";
125
- moduleVersion: "0.1.15";
125
+ moduleVersion: "0.1.16";
126
126
  ok: false;
127
127
  status: "FAILED";
128
128
  error: {
@@ -3,7 +3,7 @@ export declare const descriptor: {
3
3
  readonly contractVersion: "1.0.0";
4
4
  readonly moduleRef: "execution-runtime";
5
5
  readonly packageName: "@tomflow/proflow-execution-runtime";
6
- readonly moduleVersion: "0.1.15";
6
+ readonly moduleVersion: "0.1.16";
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: "execution-runtime",
5
5
  packageName: "@tomflow/proflow-execution-runtime",
6
- moduleVersion: "0.1.15",
6
+ moduleVersion: "0.1.16",
7
7
  kind: "service",
8
8
  templateVersion: "1.0.0",
9
9
  platformCompatibility: ">=1.0.0 <2.0.0",
@@ -131,7 +131,10 @@ export function createExecutionModelDecisionClient(config) {
131
131
  throw new TypeError("modelDecision.endpoint must be loopback HTTP root");
132
132
  if (config.credential && config.credential.length < 32)
133
133
  throw new TypeError("modelDecision credential must contain at least 32 characters");
134
- const timeoutMs = config.timeoutMs ?? 12_000;
134
+ // Normal model-decision flow is Promise-driven. This timeout is only a
135
+ // transport watchdog for an abnormally hung call; it is not forwarded to
136
+ // Model Runtime as a queue or inference-stage budget.
137
+ const watchdogMs = config.timeoutMs ?? 120_000;
135
138
  const authorizationHeaders = config.credential
136
139
  ? { authorization: `Bearer ${config.credential}` }
137
140
  : {};
@@ -139,7 +142,7 @@ export function createExecutionModelDecisionClient(config) {
139
142
  const status = async () => {
140
143
  const response = await fetch(`${endpoint.origin}/status`, {
141
144
  headers: authorizationHeaders,
142
- signal: AbortSignal.timeout(Math.min(timeoutMs, 3_000)),
145
+ signal: AbortSignal.timeout(Math.min(watchdogMs, 3_000)),
143
146
  });
144
147
  if (!response.ok)
145
148
  throw new Error(`MODEL_STATUS_HTTP_${response.status}`);
@@ -183,9 +186,8 @@ export function createExecutionModelDecisionClient(config) {
183
186
  : {}),
184
187
  },
185
188
  payload,
186
- timeoutMs,
187
189
  }),
188
- signal: AbortSignal.timeout(timeoutMs + 1_000),
190
+ signal: AbortSignal.timeout(watchdogMs),
189
191
  });
190
192
  if (!response.ok) {
191
193
  ready = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-execution-runtime",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,14 +24,14 @@
24
24
  "SETUP.md"
25
25
  ],
26
26
  "dependencies": {
27
+ "@tomflow/proflow-execution-local": "^0.1.15",
28
+ "@tomflow/proflow-execution-browser-extension": "^0.1.32",
29
+ "@tomflow/proflow-model-contracts": "^0.1.10",
27
30
  "@tomflow/proflow-execution-contracts": "^0.1.10",
28
- "@tomflow/proflow-execution-browser-extension": "^0.1.14",
29
- "@tomflow/proflow-module-contract": "^0.1.13",
30
- "@tomflow/proflow-execution-local": "^0.1.13",
31
- "@tomflow/proflow-model-contracts": "^0.1.10"
31
+ "@tomflow/proflow-module-contract": "^0.1.13"
32
32
  },
33
33
  "devDependencies": {
34
- "@tomflow/proflow-deployment-conformance": "^0.1.12"
34
+ "@tomflow/proflow-deployment-conformance": "^0.1.13"
35
35
  },
36
36
  "description": "Durable, policy-controlled Execution Core orchestration over SQLite and controlled executor ports.",
37
37
  "keywords": [
@@ -3,7 +3,7 @@
3
3
  "contractVersion": "1.0.0",
4
4
  "moduleRef": "execution-runtime",
5
5
  "packageName": "@tomflow/proflow-execution-runtime",
6
- "moduleVersion": "0.1.15",
6
+ "moduleVersion": "0.1.16",
7
7
  "kind": "service",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",
package/CHANGELOG.md DELETED
@@ -1,49 +0,0 @@
1
- # @tomflow/proflow-execution-runtime
2
-
3
- ## 0.1.15
4
-
5
- ### Patch Changes
6
-
7
- - Retire the obsolete Carrier package and Browser standalone management CLI, make Platform setup/status preserve owner and dependency semantics, and enforce read-only status observation across the final Real-3 deployment closeout.
8
-
9
- ## 0.1.14
10
-
11
- ### Patch Changes
12
-
13
- - Ship the Phase 3 browser, tunnel, model automation, platform readiness, and documentation closure as one verifiable platform snapshot.
14
-
15
- ## 0.1.13
16
-
17
- ### Patch Changes
18
-
19
- - Distinguish dependency blocking from verified failure, expose Module-owned status diagnostics, remove automatic docs paging, consolidate start checks, add contextual help, and clarify uninstall output.
20
-
21
- ## 0.1.12
22
-
23
- ### Patch Changes
24
-
25
- - Upgrade the ProFlow terminal experience, stream Registry and package-manager progress, publish structured Chinese Module documentation, and provide numbered package-owned Setup assistants.
26
-
27
- ## 0.1.11
28
-
29
- ### Patch Changes
30
-
31
- - Improve terminal progress and localized status output, publish readable Chinese module docs, and add guided setup assistants for external resources.
32
-
33
- ## 0.1.10
34
-
35
- ### Patch Changes
36
-
37
- - 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.
38
-
39
- ## 0.1.9
40
-
41
- ### Patch Changes
42
-
43
- - Replace JSON terminal protocols with typed CLI outcomes, add real-time Chinese progress and lifecycle summaries, publish DOCS content, standardize executable setup plans and package-owned setup commands, and preserve only user-owned pnpm policy during uninstall.
44
-
45
- ## 0.1.8
46
-
47
- ### Patch Changes
48
-
49
- - Align all Modules to the seven-command setup contract with executable package-owned setup guidance and full Platform setup aggregation.