opacacms 0.3.18 → 0.3.19
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-1bd7fz7n.js → chunk-8mqs2q7j.js} +1 -1
- package/dist/{chunk-2abqb0h6.js → chunk-9dsw6x4x.js} +23 -16
- package/dist/{chunk-b1g8jmth.js → chunk-mvz5hmdb.js} +263 -8
- package/dist/cli/index.js +3 -2
- package/dist/db/better-sqlite.js +1632 -42
- package/dist/db/bun-sqlite.js +1627 -37
- package/dist/db/d1.js +2326 -31
- package/dist/db/index.js +29 -4
- package/dist/db/postgres.js +1623 -32
- package/dist/db/sqlite.js +1631 -41
- package/dist/index.js +7 -9
- package/dist/runtimes/bun.js +3 -7
- package/dist/runtimes/cloudflare-workers.js +3068 -13
- package/dist/runtimes/next.js +3 -7
- package/dist/runtimes/node.js +3 -7
- package/dist/server.js +18 -13
- package/dist/storage/index.js +6 -3
- package/package.json +1 -1
- package/dist/chunk-40tky6qh.js +0 -10
- package/dist/chunk-5xpf5jxd.js +0 -114
- package/dist/chunk-gzbz5jwy.js +0 -700
- package/dist/chunk-h8v093av.js +0 -185
- package/dist/chunk-jq1drsen.js +0 -82
- package/dist/chunk-q5sb5dcr.js +0 -15
- package/dist/chunk-re459gm9.js +0 -429
- package/dist/chunk-s8mqwnm1.js +0 -14
- package/dist/chunk-z9ek88xr.js +0 -15
package/dist/index.js
CHANGED
|
@@ -1,19 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
OpacaError,
|
|
3
|
-
createClient
|
|
4
|
-
} from "./chunk-dz94msss.js";
|
|
5
1
|
import {
|
|
6
2
|
defineCollection,
|
|
7
3
|
defineGlobal
|
|
8
4
|
} from "./chunk-acghejk8.js";
|
|
9
5
|
import {
|
|
10
6
|
defineConfig
|
|
11
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-8mqs2q7j.js";
|
|
12
8
|
import {
|
|
13
9
|
createAuth,
|
|
14
10
|
sanitizeConfig
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import"./chunk-2vbfc4q8.js";
|
|
11
|
+
} from "./chunk-mvz5hmdb.js";
|
|
17
12
|
import {
|
|
18
13
|
$ZodArray,
|
|
19
14
|
$ZodBoolean,
|
|
@@ -29,8 +24,11 @@ import {
|
|
|
29
24
|
z,
|
|
30
25
|
zodToOpacaFields
|
|
31
26
|
} from "./chunk-hthm9srb.js";
|
|
32
|
-
import
|
|
33
|
-
|
|
27
|
+
import {
|
|
28
|
+
OpacaError,
|
|
29
|
+
createClient
|
|
30
|
+
} from "./chunk-dz94msss.js";
|
|
31
|
+
import"./chunk-2vbfc4q8.js";
|
|
34
32
|
import"./chunk-8sqjbsgt.js";
|
|
35
33
|
export {
|
|
36
34
|
zodToOpacaFields,
|
package/dist/runtimes/bun.js
CHANGED
|
@@ -3,14 +3,10 @@ import {
|
|
|
3
3
|
} from "../chunk-a3qae86h.js";
|
|
4
4
|
import {
|
|
5
5
|
createAPIRouter
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import"../chunk-
|
|
8
|
-
import"../chunk-2vbfc4q8.js";
|
|
6
|
+
} from "../chunk-9dsw6x4x.js";
|
|
7
|
+
import"../chunk-mvz5hmdb.js";
|
|
9
8
|
import"../chunk-hthm9srb.js";
|
|
10
|
-
import"../chunk-
|
|
11
|
-
import"../chunk-5xpf5jxd.js";
|
|
12
|
-
import"../chunk-jq1drsen.js";
|
|
13
|
-
import"../chunk-h8v093av.js";
|
|
9
|
+
import"../chunk-2vbfc4q8.js";
|
|
14
10
|
import"../chunk-8sqjbsgt.js";
|
|
15
11
|
|
|
16
12
|
// src/runtimes/bun.ts
|