@get-bb/plugin-sdk 0.4.6 → 0.4.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/README.md +8 -0
- package/bundled-types/bb-plugin-sdk-app.d.ts +213 -111
- package/bundled-types/bb-plugin-sdk-host.d.ts +124 -0
- package/bundled-types/bb-plugin-sdk-internal-composer-customization-validation.d.ts +6 -1
- package/bundled-types/bb-plugin-sdk-internal-host-policy.d.ts +154 -2
- package/bundled-types/bb-plugin-sdk-internal-plugin-app-collector.d.ts +37 -0
- package/bundled-types/bb-plugin-sdk-provider-bridge.d.ts +6479 -0
- package/bundled-types/bb-plugin-sdk-testing-app.d.ts +2 -1
- package/bundled-types/bb-plugin-sdk-testing-host.d.ts +47 -0
- package/bundled-types/bb-plugin-sdk-testing.d.ts +19 -2
- package/bundled-types/bb-plugin-sdk.d.ts +5801 -5192
- package/dist/host.js +13 -0
- package/dist/index.js +13 -1
- package/dist/internal/composer-customization-validation.js +9 -0
- package/dist/internal/host-policy.js +389 -18
- package/dist/internal/plugin-app-collector.js +519 -0
- package/dist/provider-bridge.js +7656 -0
- package/dist/testing/app.js +321 -257
- package/dist/testing/host.js +165 -0
- package/dist/testing/index.js +529 -26
- package/package.json +29 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@get-bb/plugin-sdk",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.8",
|
|
4
4
|
"homepage": "https://github.com/get-bb/bb#readme",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://github.com/get-bb/bb/issues"
|
|
@@ -26,12 +26,24 @@
|
|
|
26
26
|
"import": "./dist/index.js",
|
|
27
27
|
"default": "./dist/index.js"
|
|
28
28
|
},
|
|
29
|
+
"./provider-bridge": {
|
|
30
|
+
"source": "./src/provider-bridge.ts",
|
|
31
|
+
"types": "./bundled-types/bb-plugin-sdk-provider-bridge.d.ts",
|
|
32
|
+
"import": "./dist/provider-bridge.js",
|
|
33
|
+
"default": "./dist/provider-bridge.js"
|
|
34
|
+
},
|
|
29
35
|
"./app": {
|
|
30
36
|
"source": "./src/app.ts",
|
|
31
37
|
"types": "./bundled-types/bb-plugin-sdk-app.d.ts",
|
|
32
38
|
"import": "./dist/app.js",
|
|
33
39
|
"default": "./dist/app.js"
|
|
34
40
|
},
|
|
41
|
+
"./host": {
|
|
42
|
+
"source": "./src/host.ts",
|
|
43
|
+
"types": "./bundled-types/bb-plugin-sdk-host.d.ts",
|
|
44
|
+
"import": "./dist/host.js",
|
|
45
|
+
"default": "./dist/host.js"
|
|
46
|
+
},
|
|
35
47
|
"./internal/composer-customization-validation": {
|
|
36
48
|
"source": "./src/internal/composer-customization-validation.ts",
|
|
37
49
|
"types": "./bundled-types/bb-plugin-sdk-internal-composer-customization-validation.d.ts",
|
|
@@ -50,6 +62,12 @@
|
|
|
50
62
|
"import": "./dist/internal/host-policy.js",
|
|
51
63
|
"default": "./dist/internal/host-policy.js"
|
|
52
64
|
},
|
|
65
|
+
"./internal/plugin-app-collector": {
|
|
66
|
+
"source": "./src/internal/plugin-app-collector.ts",
|
|
67
|
+
"types": "./bundled-types/bb-plugin-sdk-internal-plugin-app-collector.d.ts",
|
|
68
|
+
"import": "./dist/internal/plugin-app-collector.js",
|
|
69
|
+
"default": "./dist/internal/plugin-app-collector.js"
|
|
70
|
+
},
|
|
53
71
|
"./testing": {
|
|
54
72
|
"source": "./src/testing/index.ts",
|
|
55
73
|
"types": "./bundled-types/bb-plugin-sdk-testing.d.ts",
|
|
@@ -61,11 +79,18 @@
|
|
|
61
79
|
"types": "./bundled-types/bb-plugin-sdk-testing-app.d.ts",
|
|
62
80
|
"import": "./dist/testing/app.js",
|
|
63
81
|
"default": "./dist/testing/app.js"
|
|
82
|
+
},
|
|
83
|
+
"./testing/host": {
|
|
84
|
+
"source": "./src/testing/host.ts",
|
|
85
|
+
"types": "./bundled-types/bb-plugin-sdk-testing-host.d.ts",
|
|
86
|
+
"import": "./dist/testing/host.js",
|
|
87
|
+
"default": "./dist/testing/host.js"
|
|
64
88
|
}
|
|
65
89
|
},
|
|
66
90
|
"types": "./bundled-types/bb-plugin-sdk.d.ts",
|
|
67
91
|
"scripts": {
|
|
68
92
|
"build": "node scripts/build-bundled-dts.mjs && node scripts/build-runtime.mjs",
|
|
93
|
+
"build:runtime": "node scripts/build-runtime.mjs",
|
|
69
94
|
"clean": "rimraf dist tsconfig.tsbuildinfo",
|
|
70
95
|
"prepack": "node scripts/build-bundled-dts.mjs && node scripts/build-runtime.mjs",
|
|
71
96
|
"test": "vitest run --config vitest.config.ts",
|
|
@@ -73,6 +98,9 @@
|
|
|
73
98
|
},
|
|
74
99
|
"devDependencies": {
|
|
75
100
|
"@bb/domain": "workspace:*",
|
|
101
|
+
"@bb/host-daemon-contract": "workspace:*",
|
|
102
|
+
"@bb/process-utils": "workspace:*",
|
|
103
|
+
"@bb/provider-bridge-protocol": "workspace:*",
|
|
76
104
|
"@bb/sdk": "workspace:*",
|
|
77
105
|
"@bb/server-contract": "workspace:*",
|
|
78
106
|
"@bb/tsconfig": "workspace:*",
|