@floegence/redevplugin-ui 0.1.6 → 0.2.2
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/LICENSE +21 -0
- package/dist/contracts.gen.d.ts +130 -0
- package/dist/contracts.gen.js +145 -0
- package/dist/errors.d.ts +12 -0
- package/dist/errors.js +69 -0
- package/dist/http.d.ts +30 -0
- package/dist/http.js +45 -0
- package/dist/index.d.ts +1 -724
- package/dist/index.js +1 -875
- package/dist/local-import.d.ts +3 -1
- package/dist/local-import.js +13 -57
- package/dist/opaque-surface-policy.gen.d.ts +34 -0
- package/dist/opaque-surface-policy.gen.js +207 -0
- package/dist/platform.d.ts +466 -0
- package/dist/platform.js +142 -0
- package/dist/plugin.d.ts +2 -0
- package/dist/plugin.js +1 -0
- package/dist/surface-scope.d.ts +8 -0
- package/dist/surface-scope.js +31 -0
- package/dist/surface.d.ts +328 -0
- package/dist/surface.js +2073 -0
- package/dist/trusted-parent.d.ts +7 -0
- package/dist/trusted-parent.js +5 -0
- package/package.json +10 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from "./contracts.gen.js";
|
|
2
|
+
export * from "./errors.js";
|
|
3
|
+
export * from "./platform.js";
|
|
4
|
+
export { PluginSurfaceScope, createPluginSurfaceScope } from "./surface-scope.js";
|
|
5
|
+
export { PluginSurfaceHost, PluginSurfaceReloadLimiter, createReDevPluginSurfaceTransport, defaultPluginSurfaceReloadMax, defaultPluginSurfaceReloadWindowMs, isPluginRiskPlan, opaqueSurfaceDocumentSchemaVersion, pluginRiskPlanSchemaVersion, trustedParentBridgeHandshakeTranscriptSHA256, } from "./surface.js";
|
|
6
|
+
export type { BridgeLifecycleEvent, MessageChannelLike, MessageEventLike, MessagePortLike, OpaqueSurfaceAsset, OpaqueSurfaceDocument, OpaqueSurfaceStyle, OpaqueSurfaceWorker, PluginConfirmationDecision, PluginConfirmationHandler, PluginConfirmationIntent, PluginConfirmationPlan, PluginMethodResult, PluginRiskEffect, PluginRiskFlag, PluginRiskPlan, PluginRiskSeverity, PluginStreamEvent, PluginSurfaceHostBootstrap, PluginSurfaceHostOptions, PluginSurfaceOpeningProgress, PluginSurfacePreparationResult, PluginSurfaceReloadDecision, PluginSurfaceReloadLimiterOptions, PluginSurfaceReloadState, PluginTrustedMethodResult, ReDevPluginSurfaceTransport, ReDevPluginSurfaceTransportOptions, TrustedParentBridgeHandshake, TrustedParentBridgeTokenRequest, WindowLike, } from "./surface.js";
|
|
7
|
+
export type { FetchInitLike, FetchLike, FetchResponseLike, HostEnvelope } from "./http.js";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from "./contracts.gen.js";
|
|
2
|
+
export * from "./errors.js";
|
|
3
|
+
export * from "./platform.js";
|
|
4
|
+
export { PluginSurfaceScope, createPluginSurfaceScope } from "./surface-scope.js";
|
|
5
|
+
export { PluginSurfaceHost, PluginSurfaceReloadLimiter, createReDevPluginSurfaceTransport, defaultPluginSurfaceReloadMax, defaultPluginSurfaceReloadWindowMs, isPluginRiskPlan, opaqueSurfaceDocumentSchemaVersion, pluginRiskPlanSchemaVersion, trustedParentBridgeHandshakeTranscriptSHA256, } from "./surface.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@floegence/redevplugin-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"repository": {
|
|
6
7
|
"type": "git",
|
|
@@ -14,6 +15,14 @@
|
|
|
14
15
|
"types": "./dist/index.d.ts",
|
|
15
16
|
"default": "./dist/index.js"
|
|
16
17
|
},
|
|
18
|
+
"./trusted-parent": {
|
|
19
|
+
"types": "./dist/trusted-parent.d.ts",
|
|
20
|
+
"default": "./dist/trusted-parent.js"
|
|
21
|
+
},
|
|
22
|
+
"./plugin": {
|
|
23
|
+
"types": "./dist/plugin.d.ts",
|
|
24
|
+
"default": "./dist/plugin.js"
|
|
25
|
+
},
|
|
17
26
|
"./local-import": {
|
|
18
27
|
"types": "./dist/local-import.d.ts",
|
|
19
28
|
"default": "./dist/local-import.js"
|