@enhance-eng/sandbox 0.3.3 → 0.3.4
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/dist/assets/enhance-runtime.js +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -6
- package/dist/index.d.ts +1 -6
- package/dist/index.js +1 -1
- package/dist/manifest.json +2 -4
- package/dist/postinstall.js +1 -1
- package/dist/sw-enhance.js +1 -1
- package/package.json +1 -1
- package/dist/assets/overlay.js +0 -58
package/dist/index.d.cts
CHANGED
|
@@ -4,25 +4,20 @@ export { EnhanceController, EnhanceOptions, EnhanceStatus } from '@enhance-sandb
|
|
|
4
4
|
|
|
5
5
|
interface EnhanceAssetManifest {
|
|
6
6
|
serviceWorker: string;
|
|
7
|
-
overlay: string;
|
|
8
7
|
runtime: string;
|
|
9
8
|
version: string;
|
|
10
9
|
serviceWorkerDigest: string | null;
|
|
11
|
-
overlayDigest: string | null;
|
|
12
10
|
runtimeDigest: string | null;
|
|
13
11
|
}
|
|
14
12
|
declare const Enhance: {
|
|
15
13
|
init(options: Parameters<typeof Enhance$1.init>[0]): _enhance_sandbox_runtime.EnhanceController;
|
|
16
14
|
serviceWorkerURL(): string;
|
|
17
|
-
overlayURL(): string;
|
|
18
15
|
runtimeURL(): string;
|
|
19
16
|
assetManifest(): EnhanceAssetManifest;
|
|
20
17
|
};
|
|
21
18
|
declare function getAssetManifest(): EnhanceAssetManifest;
|
|
22
19
|
declare function resolveServiceWorkerPath(): string;
|
|
23
|
-
declare function resolveOverlayPath(): string;
|
|
24
20
|
declare function serviceWorkerURL(): string;
|
|
25
|
-
declare function overlayURL(): string;
|
|
26
21
|
declare function runtimeURL(): string;
|
|
27
22
|
|
|
28
|
-
export { Enhance, type EnhanceAssetManifest, getAssetManifest,
|
|
23
|
+
export { Enhance, type EnhanceAssetManifest, getAssetManifest, resolveServiceWorkerPath, runtimeURL, serviceWorkerURL };
|
package/dist/index.d.ts
CHANGED
|
@@ -4,25 +4,20 @@ export { EnhanceController, EnhanceOptions, EnhanceStatus } from '@enhance-sandb
|
|
|
4
4
|
|
|
5
5
|
interface EnhanceAssetManifest {
|
|
6
6
|
serviceWorker: string;
|
|
7
|
-
overlay: string;
|
|
8
7
|
runtime: string;
|
|
9
8
|
version: string;
|
|
10
9
|
serviceWorkerDigest: string | null;
|
|
11
|
-
overlayDigest: string | null;
|
|
12
10
|
runtimeDigest: string | null;
|
|
13
11
|
}
|
|
14
12
|
declare const Enhance: {
|
|
15
13
|
init(options: Parameters<typeof Enhance$1.init>[0]): _enhance_sandbox_runtime.EnhanceController;
|
|
16
14
|
serviceWorkerURL(): string;
|
|
17
|
-
overlayURL(): string;
|
|
18
15
|
runtimeURL(): string;
|
|
19
16
|
assetManifest(): EnhanceAssetManifest;
|
|
20
17
|
};
|
|
21
18
|
declare function getAssetManifest(): EnhanceAssetManifest;
|
|
22
19
|
declare function resolveServiceWorkerPath(): string;
|
|
23
|
-
declare function resolveOverlayPath(): string;
|
|
24
20
|
declare function serviceWorkerURL(): string;
|
|
25
|
-
declare function overlayURL(): string;
|
|
26
21
|
declare function runtimeURL(): string;
|
|
27
22
|
|
|
28
|
-
export { Enhance, type EnhanceAssetManifest, getAssetManifest,
|
|
23
|
+
export { Enhance, type EnhanceAssetManifest, getAssetManifest, resolveServiceWorkerPath, runtimeURL, serviceWorkerURL };
|