@holo-js/cli 0.3.1 → 0.3.3

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.
Files changed (31) hide show
  1. package/dist/bin/holo.mjs +24 -24
  2. package/dist/{broadcast-PJLFVZH4.mjs → broadcast-6HKLFYUH.mjs} +8 -8
  3. package/dist/{cache-KR4ACOYD.mjs → cache-2RLSWZJ3.mjs} +7 -7
  4. package/dist/{cache-migrations-J34RE4WH.mjs → cache-migrations-UPKUSIPR.mjs} +10 -10
  5. package/dist/{chunk-AZ6NVJAP.mjs → chunk-35ZABJEB.mjs} +1 -1
  6. package/dist/{chunk-3ICVWL2M.mjs → chunk-7UXRXXPO.mjs} +2 -2
  7. package/dist/{chunk-CT23GSEC.mjs → chunk-ADP4UQA5.mjs} +1 -1
  8. package/dist/{chunk-FFTJKBQF.mjs → chunk-AQRX4FQG.mjs} +14 -6
  9. package/dist/{chunk-PVVGQSUP.mjs → chunk-ARDZVOST.mjs} +47 -47
  10. package/dist/{chunk-L3YATEQY.mjs → chunk-ASD767Q7.mjs} +116 -7
  11. package/dist/{chunk-7KZVFDSI.mjs → chunk-C4WPPQPR.mjs} +3 -3
  12. package/dist/{chunk-I3RRWDLV.mjs → chunk-MYTKB6GV.mjs} +6 -6
  13. package/dist/{chunk-L6FF22IV.mjs → chunk-R5BXEPH5.mjs} +7 -7
  14. package/dist/{chunk-4VYR2ARA.mjs → chunk-TEAV2C2A.mjs} +2 -2
  15. package/dist/{chunk-2XXJ76YC.mjs → chunk-YLW4NUNM.mjs} +1 -1
  16. package/dist/{config-XVPV6DJW.mjs → config-WTB6JPBN.mjs} +3 -3
  17. package/dist/{dev-NTQTEY5B.mjs → dev-USYW3LBP.mjs} +9 -9
  18. package/dist/{discovery-TMPUQQHI.mjs → discovery-BFUWENC6.mjs} +4 -4
  19. package/dist/{generators-3FDCCJDC.mjs → generators-BDJ3PDAR.mjs} +10 -10
  20. package/dist/index.mjs +24 -24
  21. package/dist/{media-migrations-UJ6BMUSZ.mjs → media-migrations-ASB5L3F2.mjs} +9 -9
  22. package/dist/{plugins-USHY6SPF.mjs → plugins-NEM2VBHH.mjs} +3 -3
  23. package/dist/{queue-6U7JU4T6.mjs → queue-56UOSMIN.mjs} +12 -12
  24. package/dist/{queue-VJEFD6SE.mjs → queue-BLFNHZQQ.mjs} +12 -12
  25. package/dist/{queue-migrations-6YUUOKMH.mjs → queue-migrations-CZ5TQ4M2.mjs} +10 -10
  26. package/dist/{runtime-P5R7H3B4.mjs → runtime-BHLRLGFL.mjs} +1 -1
  27. package/dist/{runtime-FVRB4O2M.mjs → runtime-EAV54JSZ.mjs} +8 -8
  28. package/dist/runtime-worker.mjs +18 -1
  29. package/dist/{scaffold-F3AZDNPG.mjs → scaffold-JIVZOC6J.mjs} +7 -7
  30. package/dist/{security-X4274RHX.mjs → security-A5LPMCIA.mjs} +7 -7
  31. package/package.json +19 -19
package/dist/bin/holo.mjs CHANGED
@@ -22,7 +22,7 @@ import {
22
22
  pinProjectDependencyVersions,
23
23
  removeProjectDependency,
24
24
  upsertProjectDependency
25
- } from "../chunk-CT23GSEC.mjs";
25
+ } from "../chunk-ADP4UQA5.mjs";
26
26
  import {
27
27
  runWithSpinner,
28
28
  writeLine
@@ -30,16 +30,16 @@ import {
30
30
  import {
31
31
  ensureEmptyDirectory,
32
32
  fileExists
33
- } from "../chunk-FFTJKBQF.mjs";
34
- import "../chunk-4VYR2ARA.mjs";
35
- import "../chunk-7KZVFDSI.mjs";
36
- import "../chunk-L3YATEQY.mjs";
37
- import "../chunk-3ICVWL2M.mjs";
38
- import "../chunk-AZ6NVJAP.mjs";
33
+ } from "../chunk-AQRX4FQG.mjs";
34
+ import "../chunk-TEAV2C2A.mjs";
35
+ import "../chunk-C4WPPQPR.mjs";
36
+ import "../chunk-ASD767Q7.mjs";
37
+ import "../chunk-7UXRXXPO.mjs";
38
+ import "../chunk-35ZABJEB.mjs";
39
39
  import {
40
40
  APP_CONFIG_FILE_NAMES,
41
41
  SUPPORTED_AUTH_SOCIAL_PROVIDERS
42
- } from "../chunk-PVVGQSUP.mjs";
42
+ } from "../chunk-ARDZVOST.mjs";
43
43
 
44
44
  // src/cli.ts
45
45
  import { cp, mkdtemp, readFile as readFile2, rm, writeFile as writeFile2 } from "fs/promises";
@@ -131,31 +131,31 @@ var projectRuntimeModulePromise;
131
131
  var projectScaffoldModulePromise;
132
132
  var agentSkillsModulePromise;
133
133
  function loadRuntimeModule() {
134
- runtimeModulePromise ??= import("../runtime-FVRB4O2M.mjs");
134
+ runtimeModulePromise ??= import("../runtime-EAV54JSZ.mjs");
135
135
  return runtimeModulePromise;
136
136
  }
137
137
  function loadSecurityModule() {
138
- securityModulePromise ??= import("../security-X4274RHX.mjs");
138
+ securityModulePromise ??= import("../security-A5LPMCIA.mjs");
139
139
  return securityModulePromise;
140
140
  }
141
141
  function loadProjectConfigModule() {
142
- projectConfigModulePromise ??= import("../config-XVPV6DJW.mjs");
142
+ projectConfigModulePromise ??= import("../config-WTB6JPBN.mjs");
143
143
  return projectConfigModulePromise;
144
144
  }
145
145
  function loadProjectDiscoveryModule() {
146
- projectDiscoveryModulePromise ??= import("../discovery-TMPUQQHI.mjs");
146
+ projectDiscoveryModulePromise ??= import("../discovery-BFUWENC6.mjs");
147
147
  return projectDiscoveryModulePromise;
148
148
  }
149
149
  function loadProjectPluginsModule() {
150
- projectPluginsModulePromise ??= import("../plugins-USHY6SPF.mjs");
150
+ projectPluginsModulePromise ??= import("../plugins-NEM2VBHH.mjs");
151
151
  return projectPluginsModulePromise;
152
152
  }
153
153
  function loadProjectRuntimeModule() {
154
- projectRuntimeModulePromise ??= import("../runtime-P5R7H3B4.mjs");
154
+ projectRuntimeModulePromise ??= import("../runtime-BHLRLGFL.mjs");
155
155
  return projectRuntimeModulePromise;
156
156
  }
157
157
  function loadProjectScaffoldModule() {
158
- projectScaffoldModulePromise ??= import("../scaffold-F3AZDNPG.mjs");
158
+ projectScaffoldModulePromise ??= import("../scaffold-JIVZOC6J.mjs");
159
159
  return projectScaffoldModulePromise;
160
160
  }
161
161
  function loadAgentSkillsModule() {
@@ -163,7 +163,7 @@ function loadAgentSkillsModule() {
163
163
  return agentSkillsModulePromise;
164
164
  }
165
165
  async function resolveRuntimeExecutor(runtimeExecutor) {
166
- runtimeModulePromise ??= import("../runtime-FVRB4O2M.mjs");
166
+ runtimeModulePromise ??= import("../runtime-EAV54JSZ.mjs");
167
167
  return runtimeExecutor ?? (await runtimeModulePromise).withRuntimeEnvironment;
168
168
  }
169
169
  async function resolveExecutor(executors, loader, key) {
@@ -171,17 +171,17 @@ async function resolveExecutor(executors, loader, key) {
171
171
  return existing ? existing : await loader();
172
172
  }
173
173
  async function resolveProjectExecutor(executors, key) {
174
- devModulePromise ??= import("../dev-NTQTEY5B.mjs");
174
+ devModulePromise ??= import("../dev-USYW3LBP.mjs");
175
175
  return resolveExecutor(executors, async () => (await devModulePromise)[key], key);
176
176
  }
177
177
  async function resolveQueueExecutor(executors, key) {
178
178
  return resolveExecutor(executors, async () => {
179
179
  if (key === "runQueueFailedTableCommand" || key === "runQueueTableCommand") {
180
- queueMigrationsModulePromise ??= import("../queue-migrations-6YUUOKMH.mjs");
180
+ queueMigrationsModulePromise ??= import("../queue-migrations-CZ5TQ4M2.mjs");
181
181
  const migrations = await queueMigrationsModulePromise;
182
182
  return key === "runQueueFailedTableCommand" ? migrations.runQueueFailedTableCommand : migrations.runQueueTableCommand;
183
183
  }
184
- queueModulePromise ??= import("../queue-VJEFD6SE.mjs");
184
+ queueModulePromise ??= import("../queue-56UOSMIN.mjs");
185
185
  const queue = await queueModulePromise;
186
186
  const resolved = {
187
187
  runQueueFailedCommand: queue.runQueueFailedCommand,
@@ -199,10 +199,10 @@ async function resolveQueueExecutor(executors, key) {
199
199
  async function resolveCacheExecutor(executors, key) {
200
200
  return resolveExecutor(executors, async () => {
201
201
  if (key === "runCacheTableCommand") {
202
- cacheMigrationsModulePromise ??= import("../cache-migrations-J34RE4WH.mjs");
202
+ cacheMigrationsModulePromise ??= import("../cache-migrations-UPKUSIPR.mjs");
203
203
  return (await cacheMigrationsModulePromise).runCacheTableCommand;
204
204
  }
205
- cacheModulePromise ??= import("../cache-KR4ACOYD.mjs");
205
+ cacheModulePromise ??= import("../cache-2RLSWZJ3.mjs");
206
206
  const cache = await cacheModulePromise;
207
207
  const resolved = {
208
208
  runCacheClearCommand: cache.runCacheClearCommand,
@@ -212,15 +212,15 @@ async function resolveCacheExecutor(executors, key) {
212
212
  }, key);
213
213
  }
214
214
  async function resolveMediaExecutor(executors, key) {
215
- mediaMigrationsModulePromise ??= import("../media-migrations-UJ6BMUSZ.mjs");
215
+ mediaMigrationsModulePromise ??= import("../media-migrations-ASB5L3F2.mjs");
216
216
  return resolveExecutor(executors, async () => (await mediaMigrationsModulePromise)[key], key);
217
217
  }
218
218
  async function resolveBroadcastExecutor(executors, key) {
219
- broadcastModulePromise ??= import("../broadcast-PJLFVZH4.mjs");
219
+ broadcastModulePromise ??= import("../broadcast-6HKLFYUH.mjs");
220
220
  return resolveExecutor(executors, async () => (await broadcastModulePromise)[key], key);
221
221
  }
222
222
  async function resolveGeneratorCommand(key) {
223
- generatorsModulePromise ??= import("../generators-3FDCCJDC.mjs");
223
+ generatorsModulePromise ??= import("../generators-BDJ3PDAR.mjs");
224
224
  return (await generatorsModulePromise)[key];
225
225
  }
226
226
 
@@ -1,25 +1,25 @@
1
1
  import {
2
2
  initializeProjectRuntime
3
- } from "./chunk-I3RRWDLV.mjs";
3
+ } from "./chunk-MYTKB6GV.mjs";
4
4
  import {
5
5
  writeLine
6
6
  } from "./chunk-Y355VYRN.mjs";
7
- import "./chunk-FFTJKBQF.mjs";
7
+ import "./chunk-AQRX4FQG.mjs";
8
8
  import {
9
9
  loadProjectConfig
10
- } from "./chunk-4VYR2ARA.mjs";
10
+ } from "./chunk-TEAV2C2A.mjs";
11
11
  import {
12
12
  prepareProjectDiscovery
13
- } from "./chunk-7KZVFDSI.mjs";
13
+ } from "./chunk-C4WPPQPR.mjs";
14
14
  import {
15
15
  loadGeneratedProjectRegistry
16
- } from "./chunk-L3YATEQY.mjs";
17
- import "./chunk-3ICVWL2M.mjs";
18
- import "./chunk-AZ6NVJAP.mjs";
16
+ } from "./chunk-ASD767Q7.mjs";
17
+ import "./chunk-7UXRXXPO.mjs";
18
+ import "./chunk-35ZABJEB.mjs";
19
19
  import {
20
20
  importProjectModule,
21
21
  resolveProjectPackageImportSpecifier
22
- } from "./chunk-PVVGQSUP.mjs";
22
+ } from "./chunk-ARDZVOST.mjs";
23
23
 
24
24
  // src/broadcast.ts
25
25
  import { basename, extname, resolve } from "path";
@@ -4,15 +4,15 @@ import {
4
4
  import {
5
5
  writeLine
6
6
  } from "./chunk-Y355VYRN.mjs";
7
- import "./chunk-FFTJKBQF.mjs";
8
- import "./chunk-4VYR2ARA.mjs";
9
- import "./chunk-7KZVFDSI.mjs";
10
- import "./chunk-L3YATEQY.mjs";
11
- import "./chunk-3ICVWL2M.mjs";
12
- import "./chunk-AZ6NVJAP.mjs";
7
+ import "./chunk-AQRX4FQG.mjs";
8
+ import "./chunk-TEAV2C2A.mjs";
9
+ import "./chunk-C4WPPQPR.mjs";
10
+ import "./chunk-ASD767Q7.mjs";
11
+ import "./chunk-7UXRXXPO.mjs";
12
+ import "./chunk-35ZABJEB.mjs";
13
13
  import {
14
14
  resolveProjectPackageImportSpecifier
15
- } from "./chunk-PVVGQSUP.mjs";
15
+ } from "./chunk-ARDZVOST.mjs";
16
16
 
17
17
  // src/cache.ts
18
18
  import { loadConfigDirectory } from "@holo-js/config";
@@ -1,33 +1,33 @@
1
1
  import {
2
2
  runProjectPrepare
3
- } from "./chunk-L6FF22IV.mjs";
4
- import "./chunk-CT23GSEC.mjs";
3
+ } from "./chunk-R5BXEPH5.mjs";
4
+ import "./chunk-ADP4UQA5.mjs";
5
5
  import {
6
6
  getRegistryMigrationSlug,
7
7
  hasRegisteredCreateTableMigration,
8
8
  hasRegisteredMigrationSlug,
9
9
  nextMigrationTemplate
10
- } from "./chunk-2XXJ76YC.mjs";
10
+ } from "./chunk-YLW4NUNM.mjs";
11
11
  import {
12
12
  writeLine
13
13
  } from "./chunk-Y355VYRN.mjs";
14
- import "./chunk-FFTJKBQF.mjs";
14
+ import "./chunk-AQRX4FQG.mjs";
15
15
  import {
16
16
  ensureProjectConfig
17
- } from "./chunk-4VYR2ARA.mjs";
17
+ } from "./chunk-TEAV2C2A.mjs";
18
18
  import {
19
19
  prepareProjectDiscovery
20
- } from "./chunk-7KZVFDSI.mjs";
20
+ } from "./chunk-C4WPPQPR.mjs";
21
21
  import {
22
22
  loadGeneratedProjectRegistry
23
- } from "./chunk-L3YATEQY.mjs";
24
- import "./chunk-3ICVWL2M.mjs";
25
- import "./chunk-AZ6NVJAP.mjs";
23
+ } from "./chunk-ASD767Q7.mjs";
24
+ import "./chunk-7UXRXXPO.mjs";
25
+ import "./chunk-35ZABJEB.mjs";
26
26
  import {
27
27
  makeProjectRelativePath,
28
28
  resolveDefaultArtifactPath,
29
29
  writeTextFile
30
- } from "./chunk-PVVGQSUP.mjs";
30
+ } from "./chunk-ARDZVOST.mjs";
31
31
 
32
32
  // src/cache-migrations.ts
33
33
  import { resolve } from "path";
@@ -6,7 +6,7 @@ import {
6
6
  pathExists,
7
7
  readTextFile,
8
8
  toPosixPath
9
- } from "./chunk-PVVGQSUP.mjs";
9
+ } from "./chunk-ARDZVOST.mjs";
10
10
 
11
11
  // src/project/discovery-helpers.ts
12
12
  import { readdir } from "fs/promises";
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  normalizeCommandAliases
3
- } from "./chunk-AZ6NVJAP.mjs";
3
+ } from "./chunk-35ZABJEB.mjs";
4
4
  import {
5
5
  APP_CONFIG_FILE_NAMES,
6
6
  pathExists,
7
7
  readTextFile,
8
8
  resolveFirstExistingPath,
9
9
  writeTextFile
10
- } from "./chunk-PVVGQSUP.mjs";
10
+ } from "./chunk-ARDZVOST.mjs";
11
11
 
12
12
  // src/project/plugins.ts
13
13
  import { createRequire } from "module";
@@ -2,7 +2,7 @@ import {
2
2
  HOLO_PACKAGE_VERSION,
3
3
  readTextFile,
4
4
  writeTextFile
5
- } from "./chunk-PVVGQSUP.mjs";
5
+ } from "./chunk-ARDZVOST.mjs";
6
6
 
7
7
  // src/package-json.ts
8
8
  import { join } from "path";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  loadProjectConfig,
3
3
  resolveGeneratedSchemaPath
4
- } from "./chunk-4VYR2ARA.mjs";
4
+ } from "./chunk-TEAV2C2A.mjs";
5
5
  import {
6
6
  loadGeneratedProjectRegistry,
7
7
  relativeImportPath,
@@ -14,13 +14,17 @@ import {
14
14
  renderGeneratedModelTypes,
15
15
  renderManagedHostedAuthRouteFiles,
16
16
  renderNextGeneratedRealtimeDefinitions,
17
+ renderNextGeneratedRealtimeMutationRoute,
18
+ renderNextGeneratedRealtimeQueryRoute,
17
19
  renderNextHoloHelper,
20
+ renderNextRealtimeMutationRoute,
21
+ renderNextRealtimeQueryRoute,
18
22
  renderNextRuntimeBootstrap,
19
23
  renderSvelteViteConfig
20
- } from "./chunk-L3YATEQY.mjs";
24
+ } from "./chunk-ASD767Q7.mjs";
21
25
  import {
22
26
  loadProjectPluginFrameworkDescriptors
23
- } from "./chunk-3ICVWL2M.mjs";
27
+ } from "./chunk-7UXRXXPO.mjs";
24
28
  import {
25
29
  AUTH_CONFIG_FILE_NAMES,
26
30
  AUTH_SOCIAL_PROVIDER_PACKAGE_NAMES,
@@ -60,7 +64,7 @@ import {
60
64
  resolveFirstExistingPath,
61
65
  sanitizePackageName,
62
66
  writeTextFile
63
- } from "./chunk-PVVGQSUP.mjs";
67
+ } from "./chunk-ARDZVOST.mjs";
64
68
 
65
69
  // src/project/scaffold.ts
66
70
  import { mkdir as mkdir3, readdir as readdir2 } from "fs/promises";
@@ -2877,9 +2881,13 @@ async function installRealtimeIntoProject(projectRoot) {
2877
2881
  await mkdir3(realtimeRoot, { recursive: true });
2878
2882
  if (framework === "next") {
2879
2883
  const routes = [
2884
+ { path: "app/holo/realtime/query/route.ts", contents: renderNextRealtimeQueryRoute() },
2885
+ { path: "app/holo/realtime/mutation/route.ts", contents: renderNextRealtimeMutationRoute() },
2880
2886
  { path: ".holo-js/generated/next/holo.ts", contents: renderNextHoloHelper() },
2881
2887
  { path: ".holo-js/generated/next/bootstrap.mjs", contents: renderNextRuntimeBootstrap() },
2882
- { path: ".holo-js/generated/next/realtime-definitions.ts", contents: await renderNextRealtimeDefinitions(projectRoot) }
2888
+ { path: ".holo-js/generated/next/realtime-definitions.ts", contents: await renderNextRealtimeDefinitions(projectRoot) },
2889
+ { path: ".holo-js/generated/next/realtime-query-route.ts", contents: renderNextGeneratedRealtimeQueryRoute() },
2890
+ { path: ".holo-js/generated/next/realtime-mutation-route.ts", contents: renderNextGeneratedRealtimeMutationRoute() }
2883
2891
  ];
2884
2892
  for (const route of routes) {
2885
2893
  const routePath = resolve4(projectRoot, route.path);
@@ -2989,7 +2997,7 @@ async function installMediaIntoProject(projectRoot) {
2989
2997
  if (!mediaConfigPath) {
2990
2998
  await writeTextFile(resolve4(projectRoot, "config/media.ts"), renderMediaConfig());
2991
2999
  }
2992
- const { createMediaTableMigration } = await import("./media-migrations-UJ6BMUSZ.mjs");
3000
+ const { createMediaTableMigration } = await import("./media-migrations-ASB5L3F2.mjs");
2993
3001
  const migrationFilePath = await createMediaTableMigration(projectRoot, {
2994
3002
  skipIfExists: true
2995
3003
  });
@@ -13,7 +13,7 @@ import { extname, join, relative, resolve } from "path";
13
13
  // package.json
14
14
  var package_default = {
15
15
  name: "@holo-js/cli",
16
- version: "0.3.1",
16
+ version: "0.3.3",
17
17
  description: "Holo-JS Framework - project creation, discovery, and operational CLI",
18
18
  type: "module",
19
19
  license: "MIT",
@@ -94,51 +94,51 @@ var WORKSPACE_CATALOG = Object.freeze({
94
94
  "@clerk/backend": "^3.4.7",
95
95
  "@clack/prompts": "^1.5.1",
96
96
  "@eslint/js": "^9.17.0",
97
- "@holo-js/adapter-next": "^0.3.1",
98
- "@holo-js/adapter-nuxt": "^0.3.1",
99
- "@holo-js/adapter-sveltekit": "^0.3.1",
100
- "@holo-js/adapter-shared": "^0.3.1",
101
- "@holo-js/auth": "^0.3.1",
102
- "@holo-js/auth-clerk": "^0.3.1",
103
- "@holo-js/auth-social": "^0.3.1",
104
- "@holo-js/auth-social-apple": "^0.3.1",
105
- "@holo-js/auth-social-discord": "^0.3.1",
106
- "@holo-js/auth-social-facebook": "^0.3.1",
107
- "@holo-js/auth-social-github": "^0.3.1",
108
- "@holo-js/auth-social-google": "^0.3.1",
109
- "@holo-js/auth-social-linkedin": "^0.3.1",
110
- "@holo-js/auth-workos": "^0.3.1",
111
- "@holo-js/authorization": "^0.3.1",
112
- "@holo-js/broadcast": "^0.3.1",
113
- "@holo-js/cache": "^0.3.1",
114
- "@holo-js/cache-db": "^0.3.1",
115
- "@holo-js/cache-redis": "^0.3.1",
116
- "@holo-js/cli": "^0.3.1",
117
- "@holo-js/config": "^0.3.1",
118
- "@holo-js/core": "^0.3.1",
119
- "@holo-js/db": "^0.3.1",
120
- "@holo-js/db-mysql": "^0.3.1",
121
- "@holo-js/db-postgres": "^0.3.1",
122
- "@holo-js/db-sqlite": "^0.3.1",
123
- "@holo-js/events": "^0.3.1",
124
- "@holo-js/flux": "^0.3.1",
125
- "@holo-js/flux-react": "^0.3.1",
126
- "@holo-js/flux-svelte": "^0.3.1",
127
- "@holo-js/flux-vue": "^0.3.1",
128
- "@holo-js/forms": "^0.3.1",
129
- "@holo-js/kernel": "^0.3.1",
130
- "@holo-js/mail": "^0.3.1",
131
- "@holo-js/media": "^0.3.1",
132
- "@holo-js/notifications": "^0.3.1",
133
- "@holo-js/queue": "^0.3.1",
134
- "@holo-js/queue-db": "^0.3.1",
135
- "@holo-js/queue-redis": "^0.3.1",
136
- "@holo-js/realtime": "^0.3.1",
137
- "@holo-js/security": "^0.3.1",
138
- "@holo-js/session": "^0.3.1",
139
- "@holo-js/storage": "^0.3.1",
140
- "@holo-js/storage-s3": "^0.3.1",
141
- "@holo-js/validation": "^0.3.1",
97
+ "@holo-js/adapter-next": "^0.3.3",
98
+ "@holo-js/adapter-nuxt": "^0.3.3",
99
+ "@holo-js/adapter-sveltekit": "^0.3.3",
100
+ "@holo-js/adapter-shared": "^0.3.3",
101
+ "@holo-js/auth": "^0.3.3",
102
+ "@holo-js/auth-clerk": "^0.3.3",
103
+ "@holo-js/auth-social": "^0.3.3",
104
+ "@holo-js/auth-social-apple": "^0.3.3",
105
+ "@holo-js/auth-social-discord": "^0.3.3",
106
+ "@holo-js/auth-social-facebook": "^0.3.3",
107
+ "@holo-js/auth-social-github": "^0.3.3",
108
+ "@holo-js/auth-social-google": "^0.3.3",
109
+ "@holo-js/auth-social-linkedin": "^0.3.3",
110
+ "@holo-js/auth-workos": "^0.3.3",
111
+ "@holo-js/authorization": "^0.3.3",
112
+ "@holo-js/broadcast": "^0.3.3",
113
+ "@holo-js/cache": "^0.3.3",
114
+ "@holo-js/cache-db": "^0.3.3",
115
+ "@holo-js/cache-redis": "^0.3.3",
116
+ "@holo-js/cli": "^0.3.3",
117
+ "@holo-js/config": "^0.3.3",
118
+ "@holo-js/core": "^0.3.3",
119
+ "@holo-js/db": "^0.3.3",
120
+ "@holo-js/db-mysql": "^0.3.3",
121
+ "@holo-js/db-postgres": "^0.3.3",
122
+ "@holo-js/db-sqlite": "^0.3.3",
123
+ "@holo-js/events": "^0.3.3",
124
+ "@holo-js/flux": "^0.3.3",
125
+ "@holo-js/flux-react": "^0.3.3",
126
+ "@holo-js/flux-svelte": "^0.3.3",
127
+ "@holo-js/flux-vue": "^0.3.3",
128
+ "@holo-js/forms": "^0.3.3",
129
+ "@holo-js/kernel": "^0.3.3",
130
+ "@holo-js/mail": "^0.3.3",
131
+ "@holo-js/media": "^0.3.3",
132
+ "@holo-js/notifications": "^0.3.3",
133
+ "@holo-js/queue": "^0.3.3",
134
+ "@holo-js/queue-db": "^0.3.3",
135
+ "@holo-js/queue-redis": "^0.3.3",
136
+ "@holo-js/realtime": "^0.3.3",
137
+ "@holo-js/security": "^0.3.3",
138
+ "@holo-js/session": "^0.3.3",
139
+ "@holo-js/storage": "^0.3.3",
140
+ "@holo-js/storage-s3": "^0.3.3",
141
+ "@holo-js/validation": "^0.3.3",
142
142
  "@nuxt/kit": "^4.4.4",
143
143
  "@nuxt/module-builder": "^1.0.2",
144
144
  "@sveltejs/adapter-node": "^5.5.4",
@@ -155,7 +155,7 @@ var WORKSPACE_CATALOG = Object.freeze({
155
155
  "@vitest/coverage-v8": "^4.1.5",
156
156
  "better-sqlite3": "^11.7.0",
157
157
  "bullmq": "^5.71.0",
158
- "create-holo-js": "^0.3.1",
158
+ "create-holo-js": "^0.3.3",
159
159
  "esbuild": "^0.27.4",
160
160
  "eslint": "^9.17.0",
161
161
  "fast-check": "^4.5.3",