@tomflow/proflow-execution-browser-extension 0.1.7 → 0.1.8

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-execution-browser-extension
2
2
 
3
+ ## 0.1.8
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.7
4
10
 
5
11
  ### Patch Changes
@@ -14,7 +14,7 @@ export declare const behaviorAdapter: {
14
14
  ok: true;
15
15
  status: "SUCCEEDED";
16
16
  moduleRef: "execution-browser-extension";
17
- moduleVersion: "0.1.7";
17
+ moduleVersion: "0.1.8";
18
18
  data: {
19
19
  loadDir: string;
20
20
  };
@@ -27,7 +27,7 @@ export declare const behaviorAdapter: {
27
27
  readonly ok: true;
28
28
  readonly status: "SUCCEEDED";
29
29
  readonly moduleRef: "execution-browser-extension";
30
- readonly moduleVersion: "0.1.7";
30
+ readonly moduleVersion: "0.1.8";
31
31
  };
32
32
  observedEffects: never[];
33
33
  }>;
@@ -37,7 +37,7 @@ export declare const behaviorAdapter: {
37
37
  ok: true;
38
38
  status: "SUCCEEDED";
39
39
  moduleRef: "execution-browser-extension";
40
- moduleVersion: "0.1.7";
40
+ moduleVersion: "0.1.8";
41
41
  data: {
42
42
  setupStatus: "ACTION_REQUIRED" | "READY";
43
43
  runtimeStatus: "RUNNING" | "STOPPED";
@@ -49,7 +49,7 @@ export declare const behaviorAdapter: {
49
49
  result: {
50
50
  contract: "deployment.result.v1";
51
51
  moduleRef: "execution-browser-extension";
52
- moduleVersion: "0.1.7";
52
+ moduleVersion: "0.1.8";
53
53
  ok: false;
54
54
  status: "FAILED";
55
55
  error: {
@@ -79,7 +79,7 @@ export declare const behaviorAdapter: {
79
79
  result: {
80
80
  contract: "deployment.result.v1";
81
81
  moduleRef: "execution-browser-extension";
82
- moduleVersion: "0.1.7";
82
+ moduleVersion: "0.1.8";
83
83
  ok: false;
84
84
  status: "ACTION_REQUIRED";
85
85
  data: {
@@ -113,7 +113,7 @@ export declare const behaviorAdapter: {
113
113
  readonly ok: true;
114
114
  readonly status: "SUCCEEDED";
115
115
  readonly moduleRef: "execution-browser-extension";
116
- readonly moduleVersion: "0.1.7";
116
+ readonly moduleVersion: "0.1.8";
117
117
  };
118
118
  observedEffects: string[];
119
119
  }>;
@@ -123,7 +123,7 @@ export declare const behaviorAdapter: {
123
123
  ok: true;
124
124
  status: "SUCCEEDED";
125
125
  moduleRef: "execution-browser-extension";
126
- moduleVersion: "0.1.7";
126
+ moduleVersion: "0.1.8";
127
127
  data: {
128
128
  docs: string;
129
129
  };
@@ -136,11 +136,11 @@ export declare const behaviorAdapter: {
136
136
  readonly ok: true;
137
137
  readonly status: "SUCCEEDED";
138
138
  readonly moduleRef: "execution-browser-extension";
139
- readonly moduleVersion: "0.1.7";
139
+ readonly moduleVersion: "0.1.8";
140
140
  } | {
141
141
  contract: "deployment.result.v1";
142
142
  moduleRef: "execution-browser-extension";
143
- moduleVersion: "0.1.7";
143
+ moduleVersion: "0.1.8";
144
144
  ok: false;
145
145
  status: "FAILED";
146
146
  error: {
@@ -157,7 +157,7 @@ export declare const behaviorAdapter: {
157
157
  readonly ok: true;
158
158
  readonly status: "SUCCEEDED";
159
159
  readonly moduleRef: "execution-browser-extension";
160
- readonly moduleVersion: "0.1.7";
160
+ readonly moduleVersion: "0.1.8";
161
161
  };
162
162
  observedEffects: never[];
163
163
  }>;
@@ -335,7 +335,7 @@ export const behaviorAdapter = {
335
335
  result: {
336
336
  ...base,
337
337
  data: {
338
- docs: readFileSync(new URL("../DOCS.md", import.meta.url), "utf8"),
338
+ docs: readFileSync(new URL(import.meta.url.includes("/dist/") ? "../../DOCS.md" : "../DOCS.md", import.meta.url), "utf8"),
339
339
  },
340
340
  },
341
341
  observedEffects: [],
@@ -3,7 +3,7 @@ export declare const descriptor: {
3
3
  readonly contractVersion: "1.0.0";
4
4
  readonly moduleRef: "execution-browser-extension";
5
5
  readonly packageName: "@tomflow/proflow-execution-browser-extension";
6
- readonly moduleVersion: "0.1.7";
6
+ readonly moduleVersion: "0.1.8";
7
7
  readonly kind: "browser-extension";
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-browser-extension",
5
5
  packageName: "@tomflow/proflow-execution-browser-extension",
6
- moduleVersion: "0.1.7",
6
+ moduleVersion: "0.1.8",
7
7
  kind: "browser-extension",
8
8
  templateVersion: "1.0.0",
9
9
  platformCompatibility: ">=1.0.0 <2.0.0",
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "ProFlow Execution Browser",
4
- "version": "0.1.7",
4
+ "version": "0.1.8",
5
5
  "permissions": ["tabs", "storage", "sidePanel"],
6
6
  "host_permissions": ["https://chatgpt.com/*", "http://127.0.0.1/*"],
7
7
  "background": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-execution-browser-extension",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Execution-owned MV3 Browser executor, evidence provider and browser application surface.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -26,12 +26,12 @@
26
26
  "SETUP.md"
27
27
  ],
28
28
  "dependencies": {
29
- "@tomflow/proflow-module-contract": "^0.1.8",
30
- "@tomflow/proflow-execution-contracts": "^0.1.6"
29
+ "@tomflow/proflow-module-contract": "^0.1.9",
30
+ "@tomflow/proflow-execution-contracts": "^0.1.7"
31
31
  },
32
32
  "devDependencies": {
33
- "@tomflow/proflow-deployment-conformance": "^0.1.6",
34
- "@tomflow/proflow-execution-runtime": "^0.1.9"
33
+ "@tomflow/proflow-execution-runtime": "^0.1.10",
34
+ "@tomflow/proflow-deployment-conformance": "^0.1.7"
35
35
  },
36
36
  "keywords": [
37
37
  "proflow",
@@ -3,7 +3,7 @@
3
3
  "contractVersion": "1.0.0",
4
4
  "moduleRef": "execution-browser-extension",
5
5
  "packageName": "@tomflow/proflow-execution-browser-extension",
6
- "moduleVersion": "0.1.7",
6
+ "moduleVersion": "0.1.8",
7
7
  "kind": "browser-extension",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",