@holo-js/core 0.1.2 → 0.1.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/chunk-4VPELMZN.mjs +2747 -0
- package/dist/index.d.ts +5 -4
- package/dist/index.mjs +31 -15
- package/dist/runtime/index.d.ts +805 -3
- package/dist/runtime/index.mjs +13 -1
- package/package.json +59 -7
- package/dist/chunk-SVCNZBIQ.mjs +0 -703
package/dist/runtime/index.mjs
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import {
|
|
2
|
+
configureHoloRenderingRuntime,
|
|
2
3
|
createAdapter,
|
|
3
4
|
createDialect,
|
|
5
|
+
createGeneratedBroadcastManifest,
|
|
4
6
|
createHolo,
|
|
5
7
|
createRuntimeConnectionOptions,
|
|
6
8
|
createRuntimeLogger,
|
|
@@ -9,17 +11,23 @@ import {
|
|
|
9
11
|
holoRuntimeInternals,
|
|
10
12
|
initializeHolo,
|
|
11
13
|
isSupportedDatabaseDriver,
|
|
14
|
+
loadGeneratedBroadcastManifest,
|
|
12
15
|
loadGeneratedProjectRegistry,
|
|
13
16
|
parseDatabaseDriver,
|
|
14
17
|
peekHolo,
|
|
18
|
+
reconfigureOptionalHoloSubsystems,
|
|
15
19
|
registryInternals,
|
|
20
|
+
resetHoloRenderingRuntime,
|
|
16
21
|
resetHoloRuntime,
|
|
22
|
+
resetOptionalHoloSubsystems,
|
|
17
23
|
resolveGeneratedProjectRegistryPath,
|
|
18
24
|
resolveRuntimeConnectionManagerOptions
|
|
19
|
-
} from "../chunk-
|
|
25
|
+
} from "../chunk-4VPELMZN.mjs";
|
|
20
26
|
export {
|
|
27
|
+
configureHoloRenderingRuntime,
|
|
21
28
|
createAdapter,
|
|
22
29
|
createDialect,
|
|
30
|
+
createGeneratedBroadcastManifest,
|
|
23
31
|
createHolo,
|
|
24
32
|
createRuntimeConnectionOptions,
|
|
25
33
|
createRuntimeLogger,
|
|
@@ -28,11 +36,15 @@ export {
|
|
|
28
36
|
holoRuntimeInternals,
|
|
29
37
|
initializeHolo,
|
|
30
38
|
isSupportedDatabaseDriver,
|
|
39
|
+
loadGeneratedBroadcastManifest,
|
|
31
40
|
loadGeneratedProjectRegistry,
|
|
32
41
|
parseDatabaseDriver,
|
|
33
42
|
peekHolo,
|
|
43
|
+
reconfigureOptionalHoloSubsystems,
|
|
34
44
|
registryInternals,
|
|
45
|
+
resetHoloRenderingRuntime,
|
|
35
46
|
resetHoloRuntime,
|
|
47
|
+
resetOptionalHoloSubsystems,
|
|
36
48
|
resolveGeneratedProjectRegistryPath,
|
|
37
49
|
resolveRuntimeConnectionManagerOptions
|
|
38
50
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@holo-js/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "Holo-JS Framework - Portable runtime core",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -28,15 +28,67 @@
|
|
|
28
28
|
"test": "vitest --run"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@holo-js/config": "^0.1.
|
|
32
|
-
"@holo-js/db": "^0.1.
|
|
33
|
-
"@holo-js/events": "^0.1.2",
|
|
34
|
-
"@holo-js/queue": "^0.1.2",
|
|
35
|
-
"@holo-js/queue-db": "^0.1.2",
|
|
36
|
-
"@holo-js/storage": "^0.1.2",
|
|
31
|
+
"@holo-js/config": "^0.1.4",
|
|
32
|
+
"@holo-js/db": "^0.1.4",
|
|
37
33
|
"esbuild": "^0.27.4"
|
|
38
34
|
},
|
|
35
|
+
"peerDependencies": {
|
|
36
|
+
"@holo-js/auth": "^0.1.4",
|
|
37
|
+
"@holo-js/auth-clerk": "^0.1.4",
|
|
38
|
+
"@holo-js/auth-social": "^0.1.4",
|
|
39
|
+
"@holo-js/auth-workos": "^0.1.4",
|
|
40
|
+
"@holo-js/authorization": "^0.1.4",
|
|
41
|
+
"@holo-js/mail": "^0.1.4",
|
|
42
|
+
"@holo-js/notifications": "^0.1.4",
|
|
43
|
+
"@holo-js/queue": "^0.1.4",
|
|
44
|
+
"@holo-js/security": "^0.1.4",
|
|
45
|
+
"@holo-js/session": "^0.1.4",
|
|
46
|
+
"@holo-js/storage": "^0.1.4"
|
|
47
|
+
},
|
|
48
|
+
"peerDependenciesMeta": {
|
|
49
|
+
"@holo-js/auth": {
|
|
50
|
+
"optional": true
|
|
51
|
+
},
|
|
52
|
+
"@holo-js/auth-clerk": {
|
|
53
|
+
"optional": true
|
|
54
|
+
},
|
|
55
|
+
"@holo-js/auth-social": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"@holo-js/auth-workos": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"@holo-js/authorization": {
|
|
62
|
+
"optional": true
|
|
63
|
+
},
|
|
64
|
+
"@holo-js/mail": {
|
|
65
|
+
"optional": true
|
|
66
|
+
},
|
|
67
|
+
"@holo-js/notifications": {
|
|
68
|
+
"optional": true
|
|
69
|
+
},
|
|
70
|
+
"@holo-js/queue": {
|
|
71
|
+
"optional": true
|
|
72
|
+
},
|
|
73
|
+
"@holo-js/security": {
|
|
74
|
+
"optional": true
|
|
75
|
+
},
|
|
76
|
+
"@holo-js/session": {
|
|
77
|
+
"optional": true
|
|
78
|
+
},
|
|
79
|
+
"@holo-js/storage": {
|
|
80
|
+
"optional": true
|
|
81
|
+
}
|
|
82
|
+
},
|
|
39
83
|
"devDependencies": {
|
|
84
|
+
"@holo-js/auth": "^0.1.4",
|
|
85
|
+
"@holo-js/authorization": "^0.1.4",
|
|
86
|
+
"@holo-js/events": "^0.1.4",
|
|
87
|
+
"@holo-js/mail": "^0.1.4",
|
|
88
|
+
"@holo-js/notifications": "^0.1.4",
|
|
89
|
+
"@holo-js/queue-db": "^0.1.4",
|
|
90
|
+
"@holo-js/session": "^0.1.4",
|
|
91
|
+
"@holo-js/storage": "^0.1.4",
|
|
40
92
|
"@types/node": "^22.10.2",
|
|
41
93
|
"tsup": "^8.3.5",
|
|
42
94
|
"typescript": "^5.7.2",
|