@tomflow/proflow-execution-browser-extension 0.1.0 → 0.1.1

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 ADDED
@@ -0,0 +1,7 @@
1
+ # @tomflow/proflow-execution-browser-extension
2
+
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Close Real-1 deployment graph and Fresh Workspace bootstrap gaps: remove Contract-library runtime-provider aliases, correct Execution/Model dependency direction, materialize logical/moduleRef providers through `installRequires`, enforce repository graph validation, and keep self-install executables stable without package-manager worktree mutation.
@@ -3,7 +3,7 @@ export declare const behaviorAdapter: {
3
3
  result: {
4
4
  contract: "deployment.result.v1";
5
5
  moduleRef: "execution-browser-extension";
6
- moduleVersion: "0.1.0";
6
+ moduleVersion: "0.1.1";
7
7
  ok: boolean;
8
8
  status: string;
9
9
  };
@@ -13,7 +13,7 @@ export declare const behaviorAdapter: {
13
13
  result: {
14
14
  contract: "deployment.result.v1";
15
15
  moduleRef: "execution-browser-extension";
16
- moduleVersion: "0.1.0";
16
+ moduleVersion: "0.1.1";
17
17
  ok: boolean;
18
18
  status: string;
19
19
  };
@@ -23,7 +23,7 @@ export declare const behaviorAdapter: {
23
23
  result: {
24
24
  contract: "deployment.result.v1";
25
25
  moduleRef: "execution-browser-extension";
26
- moduleVersion: "0.1.0";
26
+ moduleVersion: "0.1.1";
27
27
  ok: boolean;
28
28
  status: string;
29
29
  actionRequired: {
@@ -37,7 +37,7 @@ export declare const behaviorAdapter: {
37
37
  result: {
38
38
  contract: "deployment.result.v1";
39
39
  moduleRef: "execution-browser-extension";
40
- moduleVersion: "0.1.0";
40
+ moduleVersion: "0.1.1";
41
41
  ok: boolean;
42
42
  status: string;
43
43
  checks: {
@@ -52,7 +52,7 @@ export declare const behaviorAdapter: {
52
52
  result: {
53
53
  contract: "deployment.result.v1";
54
54
  moduleRef: "execution-browser-extension";
55
- moduleVersion: "0.1.0";
55
+ moduleVersion: "0.1.1";
56
56
  ok: boolean;
57
57
  status: string;
58
58
  };
@@ -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.0";
6
+ readonly moduleVersion: "0.1.1";
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.0",
6
+ moduleVersion: "0.1.1",
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.0",
4
+ "version": "0.1.1",
5
5
  "permissions": ["tabs", "storage", "sidePanel"],
6
6
  "host_permissions": ["https://chatgpt.com/*", "http://127.0.0.1/*"],
7
7
  "background": {
@@ -15,6 +15,8 @@
15
15
  "run_at": "document_idle"
16
16
  }
17
17
  ],
18
- "side_panel": { "default_path": "extension/side-panel.html" },
18
+ "side_panel": {
19
+ "default_path": "extension/side-panel.html"
20
+ },
19
21
  "options_page": "extension/options.html"
20
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-execution-browser-extension",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Execution-owned MV3 Browser executor, evidence provider and browser application surface.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -24,12 +24,12 @@
24
24
  "self-install.mjs"
25
25
  ],
26
26
  "dependencies": {
27
- "@tomflow/proflow-execution-contracts": "^0.1.0"
27
+ "@tomflow/proflow-execution-contracts": "^0.1.1"
28
28
  },
29
29
  "devDependencies": {
30
- "@tomflow/proflow-deployment-conformance": "^0.1.0",
31
30
  "@tomflow/proflow-execution-runtime": "^0.1.0",
32
- "@tomflow/proflow-module-contract": "^0.1.0"
31
+ "@tomflow/proflow-module-contract": "^0.1.0",
32
+ "@tomflow/proflow-deployment-conformance": "^0.1.1"
33
33
  },
34
34
  "keywords": [
35
35
  "proflow",
@@ -41,6 +41,8 @@
41
41
  "installClass": "core",
42
42
  "installRequires": [
43
43
  "@tomflow/proflow-agent-runtime",
44
+ "@tomflow/proflow-chatgpt-carrier",
45
+ "@tomflow/proflow-chrome-runtime",
44
46
  "@tomflow/proflow-execution-contracts",
45
47
  "@tomflow/proflow-execution-runtime",
46
48
  "@tomflow/proflow-task-orchestration"
@@ -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.0",
6
+ "moduleVersion": "0.1.1",
7
7
  "kind": "browser-extension",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",