@better-t-stack/types 3.42.2 → 3.43.1
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/index.d.mts +136 -57
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -23
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +39 -26
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/schemas-B-p9IhC-.mjs +876 -0
- package/dist/schemas-B-p9IhC-.mjs.map +1 -0
- package/dist/schemas.d.mts +69 -62
- package/dist/schemas.d.mts.map +1 -1
- package/dist/schemas.mjs +1 -569
- package/package.json +3 -3
- package/dist/schemas.mjs.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
//#region src/json-schema.d.ts
|
|
3
|
-
declare function getDatabaseJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
3
|
+
export declare function getDatabaseJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
4
4
|
none: "none";
|
|
5
5
|
sqlite: "sqlite";
|
|
6
6
|
postgres: "postgres";
|
|
7
7
|
mysql: "mysql";
|
|
8
8
|
mongodb: "mongodb";
|
|
9
9
|
}>>;
|
|
10
|
-
declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
10
|
+
export declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
11
11
|
none: "none";
|
|
12
12
|
drizzle: "drizzle";
|
|
13
13
|
prisma: "prisma";
|
|
14
14
|
mongoose: "mongoose";
|
|
15
15
|
}>>;
|
|
16
|
-
declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
16
|
+
export declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
17
17
|
none: "none";
|
|
18
18
|
hono: "hono";
|
|
19
19
|
express: "express";
|
|
@@ -22,13 +22,13 @@ declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Z
|
|
|
22
22
|
convex: "convex";
|
|
23
23
|
self: "self";
|
|
24
24
|
}>>;
|
|
25
|
-
declare function getRuntimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
25
|
+
export declare function getRuntimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
26
26
|
none: "none";
|
|
27
27
|
bun: "bun";
|
|
28
28
|
node: "node";
|
|
29
29
|
workers: "workers";
|
|
30
30
|
}>>;
|
|
31
|
-
declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
31
|
+
export declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
32
32
|
none: "none";
|
|
33
33
|
"tanstack-router": "tanstack-router";
|
|
34
34
|
"react-router": "react-router";
|
|
@@ -42,7 +42,7 @@ declare function getFrontendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
42
42
|
solid: "solid";
|
|
43
43
|
astro: "astro";
|
|
44
44
|
}>>;
|
|
45
|
-
declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
45
|
+
export declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
46
46
|
none: "none";
|
|
47
47
|
pwa: "pwa";
|
|
48
48
|
tauri: "tauri";
|
|
@@ -62,18 +62,19 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
62
62
|
wxt: "wxt";
|
|
63
63
|
skills: "skills";
|
|
64
64
|
evlog: "evlog";
|
|
65
|
+
axiom: "axiom";
|
|
65
66
|
}>>;
|
|
66
|
-
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
67
|
+
export declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
67
68
|
none: "none";
|
|
68
69
|
todo: "todo";
|
|
69
70
|
ai: "ai";
|
|
70
71
|
}>>;
|
|
71
|
-
declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
72
|
+
export declare function getPackageManagerJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
72
73
|
bun: "bun";
|
|
73
74
|
npm: "npm";
|
|
74
75
|
pnpm: "pnpm";
|
|
75
76
|
}>>;
|
|
76
|
-
declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
77
|
+
export declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
77
78
|
none: "none";
|
|
78
79
|
turso: "turso";
|
|
79
80
|
neon: "neon";
|
|
@@ -84,48 +85,48 @@ declare function getDatabaseSetupJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
84
85
|
d1: "d1";
|
|
85
86
|
docker: "docker";
|
|
86
87
|
}>>;
|
|
87
|
-
declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
88
|
+
export declare function getAPIJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
88
89
|
none: "none";
|
|
89
90
|
trpc: "trpc";
|
|
90
91
|
orpc: "orpc";
|
|
91
92
|
}>>;
|
|
92
|
-
declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
93
|
+
export declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
93
94
|
none: "none";
|
|
94
95
|
"better-auth": "better-auth";
|
|
95
96
|
clerk: "clerk";
|
|
96
97
|
}>>;
|
|
97
|
-
declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
98
|
+
export declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
98
99
|
none: "none";
|
|
99
100
|
polar: "polar";
|
|
100
101
|
}>>;
|
|
101
|
-
declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
102
|
+
export declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
102
103
|
none: "none";
|
|
103
104
|
prisma: "prisma";
|
|
104
105
|
docker: "docker";
|
|
105
106
|
cloudflare: "cloudflare";
|
|
106
107
|
vercel: "vercel";
|
|
107
108
|
}>>;
|
|
108
|
-
declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
109
|
+
export declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
109
110
|
none: "none";
|
|
110
111
|
prisma: "prisma";
|
|
111
112
|
docker: "docker";
|
|
112
113
|
cloudflare: "cloudflare";
|
|
113
114
|
vercel: "vercel";
|
|
114
115
|
}>>;
|
|
115
|
-
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
116
|
+
export declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
116
117
|
merge: "merge";
|
|
117
118
|
overwrite: "overwrite";
|
|
118
119
|
increment: "increment";
|
|
119
120
|
error: "error";
|
|
120
121
|
}>>;
|
|
121
|
-
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
122
|
+
export declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
122
123
|
none: "none";
|
|
123
124
|
mern: "mern";
|
|
124
125
|
pern: "pern";
|
|
125
126
|
t3: "t3";
|
|
126
127
|
uniwind: "uniwind";
|
|
127
128
|
}>>;
|
|
128
|
-
declare function getAddonOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
129
|
+
export declare function getAddonOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
129
130
|
wxt: z.ZodOptional<z.ZodObject<{
|
|
130
131
|
template: z.ZodEnum<{
|
|
131
132
|
svelte: "svelte";
|
|
@@ -399,7 +400,7 @@ declare function getAddonOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
399
400
|
}>>>;
|
|
400
401
|
}, z.core.$strict>>;
|
|
401
402
|
}, z.core.$strict>>;
|
|
402
|
-
declare function getDbSetupOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
403
|
+
export declare function getDbSetupOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
403
404
|
mode: z.ZodOptional<z.ZodEnum<{
|
|
404
405
|
manual: "manual";
|
|
405
406
|
auto: "auto";
|
|
@@ -424,7 +425,7 @@ declare function getDbSetupOptionsJsonSchema(): z.core.ZodStandardJSONSchemaPayl
|
|
|
424
425
|
installCli: z.ZodOptional<z.ZodBoolean>;
|
|
425
426
|
}, z.core.$strict>>;
|
|
426
427
|
}, z.core.$strict>>;
|
|
427
|
-
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
428
|
+
export declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
428
429
|
projectName: z.ZodOptional<z.ZodString>;
|
|
429
430
|
template: z.ZodOptional<z.ZodEnum<{
|
|
430
431
|
none: "none";
|
|
@@ -792,6 +793,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
792
793
|
wxt: "wxt";
|
|
793
794
|
skills: "skills";
|
|
794
795
|
evlog: "evlog";
|
|
796
|
+
axiom: "axiom";
|
|
795
797
|
}>>>;
|
|
796
798
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
797
799
|
none: "none";
|
|
@@ -860,7 +862,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
860
862
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
861
863
|
manualDb: z.ZodOptional<z.ZodBoolean>;
|
|
862
864
|
}, z.core.$strict>>;
|
|
863
|
-
declare function getAddInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
865
|
+
export declare function getAddInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
864
866
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
865
867
|
none: "none";
|
|
866
868
|
pwa: "pwa";
|
|
@@ -881,6 +883,7 @@ declare function getAddInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
881
883
|
wxt: "wxt";
|
|
882
884
|
skills: "skills";
|
|
883
885
|
evlog: "evlog";
|
|
886
|
+
axiom: "axiom";
|
|
884
887
|
}>>>;
|
|
885
888
|
package: z.ZodOptional<z.ZodString>;
|
|
886
889
|
addonOptions: z.ZodOptional<z.ZodObject<{
|
|
@@ -1181,7 +1184,7 @@ declare function getAddInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
1181
1184
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
1182
1185
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
1183
1186
|
}, z.core.$strict>>;
|
|
1184
|
-
declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1187
|
+
export declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1185
1188
|
projectName: z.ZodString;
|
|
1186
1189
|
projectDir: z.ZodString;
|
|
1187
1190
|
relativePath: z.ZodString;
|
|
@@ -1546,6 +1549,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1546
1549
|
wxt: "wxt";
|
|
1547
1550
|
skills: "skills";
|
|
1548
1551
|
evlog: "evlog";
|
|
1552
|
+
axiom: "axiom";
|
|
1549
1553
|
}>>;
|
|
1550
1554
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1551
1555
|
none: "none";
|
|
@@ -1599,7 +1603,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1599
1603
|
vercel: "vercel";
|
|
1600
1604
|
}>;
|
|
1601
1605
|
}, z.core.$strip>>;
|
|
1602
|
-
declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1606
|
+
export declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
1603
1607
|
version: z.ZodString;
|
|
1604
1608
|
createdAt: z.ZodString;
|
|
1605
1609
|
reproducibleCommand: z.ZodOptional<z.ZodString>;
|
|
@@ -1964,6 +1968,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
1964
1968
|
wxt: "wxt";
|
|
1965
1969
|
skills: "skills";
|
|
1966
1970
|
evlog: "evlog";
|
|
1971
|
+
axiom: "axiom";
|
|
1967
1972
|
}>>;
|
|
1968
1973
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1969
1974
|
none: "none";
|
|
@@ -2015,7 +2020,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2015
2020
|
vercel: "vercel";
|
|
2016
2021
|
}>;
|
|
2017
2022
|
}, z.core.$strip>>;
|
|
2018
|
-
declare function getBetterTStackConfigFileJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2023
|
+
export declare function getBetterTStackConfigFileJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2019
2024
|
version: z.ZodString;
|
|
2020
2025
|
createdAt: z.ZodString;
|
|
2021
2026
|
reproducibleCommand: z.ZodOptional<z.ZodString>;
|
|
@@ -2380,6 +2385,7 @@ declare function getBetterTStackConfigFileJsonSchema(): z.core.ZodStandardJSONSc
|
|
|
2380
2385
|
wxt: "wxt";
|
|
2381
2386
|
skills: "skills";
|
|
2382
2387
|
evlog: "evlog";
|
|
2388
|
+
axiom: "axiom";
|
|
2383
2389
|
}>>;
|
|
2384
2390
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2385
2391
|
none: "none";
|
|
@@ -2432,7 +2438,7 @@ declare function getBetterTStackConfigFileJsonSchema(): z.core.ZodStandardJSONSc
|
|
|
2432
2438
|
}>;
|
|
2433
2439
|
$schema: z.ZodOptional<z.ZodString>;
|
|
2434
2440
|
}, z.core.$strict>>;
|
|
2435
|
-
declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2441
|
+
export declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
2436
2442
|
success: z.ZodBoolean;
|
|
2437
2443
|
projectConfig: z.ZodObject<{
|
|
2438
2444
|
projectName: z.ZodString;
|
|
@@ -2799,6 +2805,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2799
2805
|
wxt: "wxt";
|
|
2800
2806
|
skills: "skills";
|
|
2801
2807
|
evlog: "evlog";
|
|
2808
|
+
axiom: "axiom";
|
|
2802
2809
|
}>>;
|
|
2803
2810
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2804
2811
|
none: "none";
|
|
@@ -2860,7 +2867,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
2860
2867
|
error: z.ZodOptional<z.ZodString>;
|
|
2861
2868
|
warnings: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2862
2869
|
}, z.core.$strip>>;
|
|
2863
|
-
declare function getAllJsonSchemas(): {
|
|
2870
|
+
export declare function getAllJsonSchemas(): {
|
|
2864
2871
|
database: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2865
2872
|
none: "none";
|
|
2866
2873
|
sqlite: "sqlite";
|
|
@@ -2923,6 +2930,7 @@ declare function getAllJsonSchemas(): {
|
|
|
2923
2930
|
wxt: "wxt";
|
|
2924
2931
|
skills: "skills";
|
|
2925
2932
|
evlog: "evlog";
|
|
2933
|
+
axiom: "axiom";
|
|
2926
2934
|
}>>;
|
|
2927
2935
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
2928
2936
|
none: "none";
|
|
@@ -3653,6 +3661,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3653
3661
|
wxt: "wxt";
|
|
3654
3662
|
skills: "skills";
|
|
3655
3663
|
evlog: "evlog";
|
|
3664
|
+
axiom: "axiom";
|
|
3656
3665
|
}>>>;
|
|
3657
3666
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3658
3667
|
none: "none";
|
|
@@ -3742,6 +3751,7 @@ declare function getAllJsonSchemas(): {
|
|
|
3742
3751
|
wxt: "wxt";
|
|
3743
3752
|
skills: "skills";
|
|
3744
3753
|
evlog: "evlog";
|
|
3754
|
+
axiom: "axiom";
|
|
3745
3755
|
}>>>;
|
|
3746
3756
|
package: z.ZodOptional<z.ZodString>;
|
|
3747
3757
|
addonOptions: z.ZodOptional<z.ZodObject<{
|
|
@@ -4407,6 +4417,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4407
4417
|
wxt: "wxt";
|
|
4408
4418
|
skills: "skills";
|
|
4409
4419
|
evlog: "evlog";
|
|
4420
|
+
axiom: "axiom";
|
|
4410
4421
|
}>>;
|
|
4411
4422
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4412
4423
|
none: "none";
|
|
@@ -4825,6 +4836,7 @@ declare function getAllJsonSchemas(): {
|
|
|
4825
4836
|
wxt: "wxt";
|
|
4826
4837
|
skills: "skills";
|
|
4827
4838
|
evlog: "evlog";
|
|
4839
|
+
axiom: "axiom";
|
|
4828
4840
|
}>>;
|
|
4829
4841
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4830
4842
|
none: "none";
|
|
@@ -5241,6 +5253,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5241
5253
|
wxt: "wxt";
|
|
5242
5254
|
skills: "skills";
|
|
5243
5255
|
evlog: "evlog";
|
|
5256
|
+
axiom: "axiom";
|
|
5244
5257
|
}>>;
|
|
5245
5258
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5246
5259
|
none: "none";
|
|
@@ -5660,6 +5673,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5660
5673
|
wxt: "wxt";
|
|
5661
5674
|
skills: "skills";
|
|
5662
5675
|
evlog: "evlog";
|
|
5676
|
+
axiom: "axiom";
|
|
5663
5677
|
}>>;
|
|
5664
5678
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5665
5679
|
none: "none";
|
|
@@ -5723,5 +5737,4 @@ declare function getAllJsonSchemas(): {
|
|
|
5723
5737
|
}, z.core.$strip>>;
|
|
5724
5738
|
};
|
|
5725
5739
|
//#endregion
|
|
5726
|
-
export { getAPIJsonSchema, getAddInputJsonSchema, getAddonOptionsJsonSchema, getAddonsJsonSchema, getAllJsonSchemas, getAuthJsonSchema, getBackendJsonSchema, getBetterTStackConfigFileJsonSchema, getBetterTStackConfigJsonSchema, getCreateInputJsonSchema, getDatabaseJsonSchema, getDatabaseSetupJsonSchema, getDbSetupOptionsJsonSchema, getDirectoryConflictJsonSchema, getExamplesJsonSchema, getFrontendJsonSchema, getInitResultJsonSchema, getORMJsonSchema, getPackageManagerJsonSchema, getPaymentsJsonSchema, getProjectConfigJsonSchema, getRuntimeJsonSchema, getServerDeployJsonSchema, getTemplateJsonSchema, getWebDeployJsonSchema };
|
|
5727
5740
|
//# sourceMappingURL=json-schema.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"mappings":";;
|
|
1
|
+
{"version":3,"file":"json-schema.d.mts","names":[],"sources":["../src/json-schema.ts"],"mappings":";;wBA8BgB,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;;;;wBAIrB,oBAAgB,EAAA,KAAA,6BAAA,EAAA;;;;;;wBAIhB,wBAAoB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;wBAIpB,wBAAoB,EAAA,KAAA,6BAAA,EAAA;;;;;;wBAIpB,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;wBAIrB,uBAAmB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;wBAInB,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;;wBAIrB,+BAA2B,EAAA,KAAA,6BAAA,EAAA;;;;;wBAI3B,8BAA0B,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;wBAI1B,oBAAgB,EAAA,KAAA,6BAAA,EAAA;;;;;wBAIhB,qBAAiB,EAAA,KAAA,6BAAA,EAAA;;;;;wBAIjB,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;wBAIrB,0BAAsB,EAAA,KAAA,6BAAA,EAAA;;;;;;;wBAItB,6BAAyB,EAAA,KAAA,6BAAA,EAAA;;;;;;;wBAIzB,kCAA8B,EAAA,KAAA,6BAAA,EAAA;;;;;;wBAI9B,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;;;;wBAIrB,6BAAyB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAExC,EAAA,KAAA;wBAEe,+BAA2B,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;GAE1C,EAAA,KAAA;wBAEe,4BAAwB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEvC,EAAA,KAAA;wBAEe,yBAAqB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEpC,EAAA,KAAA;wBAEe,8BAA0B,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEzC,EAAA,KAAA;wBAEe,mCAA+B,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAE9C,EAAA,KAAA;wBAEe,uCAAmC,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAElD,EAAA,KAAA;wBAEe,2BAAuB,EAAA,KAAA,6BAAA,EAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAEtC,EAAA,KAAA;wBAGe"}
|
package/dist/json-schema.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { B as PackageManagerSchema, E as FrontendSchema, G as RuntimeSchema, H as ProjectConfigSchema, I as ORMSchema, Q as TemplateSchema, S as DirectoryConflictSchema, V as PaymentsSchema, a as AddInputSchema, at as WebDeploySchema, c as AuthSchema, d as BetterTStackConfigFileSchema, f as BetterTStackConfigSchema, j as InitResultSchema, m as CreateInputSchema, n as APISchema, o as AddonOptionsSchema, q as ServerDeploySchema, s as AddonsSchema, u as BackendSchema, v as DatabaseSchema, w as ExamplesSchema, x as DbSetupOptionsSchema, y as DatabaseSetupSchema } from "./schemas-B-p9IhC-.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/json-schema.ts
|
|
4
4
|
function getDatabaseJsonSchema() {
|