@tomflow/proflow-execution-browser-extension 0.1.12 → 0.1.13

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/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "ProFlow Execution Browser",
4
- "version": "0.1.12",
4
+ "version": "0.1.13",
5
5
  "permissions": ["tabs", "storage", "sidePanel"],
6
6
  "host_permissions": ["https://chatgpt.com/*", "http://127.0.0.1/*"],
7
7
  "background": {
@@ -13,6 +13,14 @@
13
13
  "matches": ["https://chatgpt.com/g/*"],
14
14
  "js": ["dist/extension/content.js"],
15
15
  "run_at": "document_idle"
16
+ },
17
+ {
18
+ "matches": [
19
+ "https://chatgpt.com/gpts/editor",
20
+ "https://chatgpt.com/gpts/editor/*"
21
+ ],
22
+ "js": ["dist/extension/provisioning-content.js"],
23
+ "run_at": "document_idle"
16
24
  }
17
25
  ],
18
26
  "side_panel": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-execution-browser-extension",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Execution-owned MV3 Browser executor, evidence provider and browser application surface.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -12,6 +12,8 @@
12
12
  "./deployment/adapter": "./dist/deployment/adapter.js",
13
13
  "./deployment/descriptor": "./dist/deployment/descriptor.js",
14
14
  "./runtime-composition": "./dist/src/runtime-composition.js",
15
+ "./custom-gpt-provisioning": "./dist/src/custom-gpt-provisioner.js",
16
+ "./custom-gpt-role": "./dist/src/custom-gpt-role.js",
15
17
  "./configure": "./dist/src/configure.js"
16
18
  },
17
19
  "files": [
@@ -26,12 +28,12 @@
26
28
  "SETUP.md"
27
29
  ],
28
30
  "dependencies": {
29
- "@tomflow/proflow-module-contract": "^0.1.12",
30
- "@tomflow/proflow-execution-contracts": "^0.1.9"
31
+ "@tomflow/proflow-execution-contracts": "^0.1.10",
32
+ "@tomflow/proflow-module-contract": "^0.1.13"
31
33
  },
32
34
  "devDependencies": {
33
- "@tomflow/proflow-deployment-conformance": "^0.1.10",
34
- "@tomflow/proflow-execution-runtime": "^0.1.13"
35
+ "@tomflow/proflow-deployment-conformance": "^0.1.11",
36
+ "@tomflow/proflow-execution-runtime": "^0.1.14"
35
37
  },
36
38
  "keywords": [
37
39
  "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.12",
6
+ "moduleVersion": "0.1.13",
7
7
  "kind": "browser-extension",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",
@@ -15,6 +15,10 @@
15
15
  {
16
16
  "contractRef": "execution-browser-executor",
17
17
  "version": "1.0.0"
18
+ },
19
+ {
20
+ "contractRef": "custom-gpt-web-provisioning",
21
+ "version": "1.0.0"
18
22
  }
19
23
  ],
20
24
  "requires": [