@better-fullstack/types 2.5.1 → 2.6.0
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/{defaults-RqRyHpap.d.mts → defaults-7VECSARb.d.mts} +2 -2
- package/dist/defaults-7VECSARb.d.mts.map +1 -0
- package/dist/{defaults-BzWJP6p0.mjs → defaults-Bp46Ajyg.mjs} +2 -1
- package/dist/defaults-Bp46Ajyg.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +52 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +22 -20
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +508 -328
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-CtieNRfz.mjs → schemas-CH1UszP5.mjs} +36 -9
- package/dist/schemas-CH1UszP5.mjs.map +1 -0
- package/dist/{schemas-GnlaSaAD.d.mts → schemas-CY0MaZmU.d.mts} +816 -635
- package/dist/schemas-CY0MaZmU.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-CXTiPofQ.mjs → stack-graph-AWbdUrN3.mjs} +615 -131
- package/dist/stack-graph-AWbdUrN3.mjs.map +1 -0
- package/dist/{stack-graph-D8YLovR0.d.mts → stack-graph-DkJ944IX.d.mts} +7 -3
- package/dist/stack-graph-DkJ944IX.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -4
- package/dist/stack-graph.mjs +3 -3
- package/dist/{stack-translation-BV7cLYdZ.d.mts → stack-translation-C9yYLNwM.d.mts} +27 -7
- package/dist/stack-translation-C9yYLNwM.d.mts.map +1 -0
- package/dist/{stack-translation-B-zArJLM.mjs → stack-translation-Cn6zGJ5q.mjs} +253 -26
- package/dist/stack-translation-Cn6zGJ5q.mjs.map +1 -0
- package/dist/stack-translation.d.mts +5 -5
- package/dist/stack-translation.mjs +4 -4
- package/dist/{types-BdHthWR-.d.mts → types-fGT5qf7O.d.mts} +5 -3
- package/dist/types-fGT5qf7O.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-BzWJP6p0.mjs.map +0 -1
- package/dist/defaults-RqRyHpap.d.mts.map +0 -1
- package/dist/schemas-CtieNRfz.mjs.map +0 -1
- package/dist/schemas-GnlaSaAD.d.mts.map +0 -1
- package/dist/stack-graph-CXTiPofQ.mjs.map +0 -1
- package/dist/stack-graph-D8YLovR0.d.mts.map +0 -1
- package/dist/stack-translation-B-zArJLM.mjs.map +0 -1
- package/dist/stack-translation-BV7cLYdZ.d.mts.map +0 -1
- package/dist/types-BdHthWR-.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -21,13 +21,13 @@ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
|
|
|
21
21
|
sequelize: "sequelize";
|
|
22
22
|
}>>;
|
|
23
23
|
declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
24
|
+
effect: "effect";
|
|
24
25
|
none: "none";
|
|
25
26
|
hono: "hono";
|
|
26
27
|
express: "express";
|
|
27
28
|
fastify: "fastify";
|
|
28
29
|
elysia: "elysia";
|
|
29
30
|
fets: "fets";
|
|
30
|
-
effect: "effect";
|
|
31
31
|
nestjs: "nestjs";
|
|
32
32
|
adonisjs: "adonisjs";
|
|
33
33
|
nitro: "nitro";
|
|
@@ -79,6 +79,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
79
79
|
skills: "skills";
|
|
80
80
|
turborepo: "turborepo";
|
|
81
81
|
nx: "nx";
|
|
82
|
+
"vite-plus": "vite-plus";
|
|
82
83
|
fumadocs: "fumadocs";
|
|
83
84
|
ultracite: "ultracite";
|
|
84
85
|
oxlint: "oxlint";
|
|
@@ -108,8 +109,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
108
109
|
capacitor: "capacitor";
|
|
109
110
|
}>>;
|
|
110
111
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
111
|
-
none: "none";
|
|
112
112
|
ai: "ai";
|
|
113
|
+
none: "none";
|
|
113
114
|
"chat-sdk": "chat-sdk";
|
|
114
115
|
"tanstack-showcase": "tanstack-showcase";
|
|
115
116
|
}>>;
|
|
@@ -192,28 +193,34 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
192
193
|
vercel: "vercel";
|
|
193
194
|
}>>;
|
|
194
195
|
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
196
|
+
error: "error";
|
|
195
197
|
merge: "merge";
|
|
196
198
|
overwrite: "overwrite";
|
|
197
199
|
increment: "increment";
|
|
198
|
-
error: "error";
|
|
199
200
|
}>>;
|
|
200
201
|
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
201
202
|
none: "none";
|
|
203
|
+
uniwind: "uniwind";
|
|
202
204
|
mern: "mern";
|
|
203
205
|
pern: "pern";
|
|
204
206
|
t3: "t3";
|
|
205
207
|
saas: "saas";
|
|
206
|
-
uniwind: "uniwind";
|
|
207
208
|
}>>;
|
|
208
209
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
209
210
|
projectName: z.ZodOptional<z.ZodString>;
|
|
210
211
|
template: z.ZodOptional<z.ZodEnum<{
|
|
211
212
|
none: "none";
|
|
213
|
+
uniwind: "uniwind";
|
|
212
214
|
mern: "mern";
|
|
213
215
|
pern: "pern";
|
|
214
216
|
t3: "t3";
|
|
215
217
|
saas: "saas";
|
|
216
|
-
|
|
218
|
+
}>>;
|
|
219
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
220
|
+
frontend: "frontend";
|
|
221
|
+
backend: "backend";
|
|
222
|
+
mobile: "mobile";
|
|
223
|
+
fullstack: "fullstack";
|
|
217
224
|
}>>;
|
|
218
225
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
219
226
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -315,6 +322,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
315
322
|
skills: "skills";
|
|
316
323
|
turborepo: "turborepo";
|
|
317
324
|
nx: "nx";
|
|
325
|
+
"vite-plus": "vite-plus";
|
|
318
326
|
fumadocs: "fumadocs";
|
|
319
327
|
ultracite: "ultracite";
|
|
320
328
|
oxlint: "oxlint";
|
|
@@ -344,8 +352,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
344
352
|
capacitor: "capacitor";
|
|
345
353
|
}>>>;
|
|
346
354
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
347
|
-
none: "none";
|
|
348
355
|
ai: "ai";
|
|
356
|
+
none: "none";
|
|
349
357
|
"chat-sdk": "chat-sdk";
|
|
350
358
|
"tanstack-showcase": "tanstack-showcase";
|
|
351
359
|
}>>>;
|
|
@@ -379,13 +387,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
379
387
|
docker: "docker";
|
|
380
388
|
}>>;
|
|
381
389
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
390
|
+
effect: "effect";
|
|
382
391
|
none: "none";
|
|
383
392
|
hono: "hono";
|
|
384
393
|
express: "express";
|
|
385
394
|
fastify: "fastify";
|
|
386
395
|
elysia: "elysia";
|
|
387
396
|
fets: "fets";
|
|
388
|
-
effect: "effect";
|
|
389
397
|
nestjs: "nestjs";
|
|
390
398
|
adonisjs: "adonisjs";
|
|
391
399
|
nitro: "nitro";
|
|
@@ -432,10 +440,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
432
440
|
vercel: "vercel";
|
|
433
441
|
}>>;
|
|
434
442
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
443
|
+
error: "error";
|
|
435
444
|
merge: "merge";
|
|
436
445
|
overwrite: "overwrite";
|
|
437
446
|
increment: "increment";
|
|
438
|
-
error: "error";
|
|
439
447
|
}>>;
|
|
440
448
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
441
449
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -464,8 +472,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
464
472
|
"ai-cli": "ai-cli";
|
|
465
473
|
}>>;
|
|
466
474
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
467
|
-
none: "none";
|
|
468
475
|
effect: "effect";
|
|
476
|
+
none: "none";
|
|
469
477
|
"effect-full": "effect-full";
|
|
470
478
|
}>>;
|
|
471
479
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -600,8 +608,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
600
608
|
"geist-mono": "geist-mono";
|
|
601
609
|
}>>;
|
|
602
610
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
603
|
-
none: "none";
|
|
604
611
|
default: "default";
|
|
612
|
+
none: "none";
|
|
605
613
|
small: "small";
|
|
606
614
|
medium: "medium";
|
|
607
615
|
large: "large";
|
|
@@ -685,6 +693,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
685
693
|
plausible: "plausible";
|
|
686
694
|
umami: "umami";
|
|
687
695
|
ga4: "ga4";
|
|
696
|
+
"vercel-analytics": "vercel-analytics";
|
|
688
697
|
}>>;
|
|
689
698
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
690
699
|
none: "none";
|
|
@@ -706,6 +715,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
706
715
|
arcjet: "arcjet";
|
|
707
716
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
708
717
|
}>>;
|
|
718
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
719
|
+
none: "none";
|
|
720
|
+
botid: "botid";
|
|
721
|
+
turnstile: "turnstile";
|
|
722
|
+
}>>;
|
|
709
723
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
710
724
|
none: "none";
|
|
711
725
|
paraglide: "paraglide";
|
|
@@ -743,9 +757,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
743
757
|
}>>;
|
|
744
758
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
745
759
|
none: "none";
|
|
746
|
-
uniwind: "uniwind";
|
|
747
760
|
tamagui: "tamagui";
|
|
748
761
|
"gluestack-ui": "gluestack-ui";
|
|
762
|
+
uniwind: "uniwind";
|
|
749
763
|
unistyles: "unistyles";
|
|
750
764
|
}>>;
|
|
751
765
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -861,12 +875,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
861
875
|
ratatui: "ratatui";
|
|
862
876
|
}>>;
|
|
863
877
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
878
|
+
config: "config";
|
|
864
879
|
none: "none";
|
|
865
880
|
serde: "serde";
|
|
866
881
|
uuid: "uuid";
|
|
867
882
|
chrono: "chrono";
|
|
868
883
|
reqwest: "reqwest";
|
|
869
|
-
config: "config";
|
|
870
884
|
dashmap: "dashmap";
|
|
871
885
|
"parking-lot": "parking-lot";
|
|
872
886
|
secrecy: "secrecy";
|
|
@@ -1511,13 +1525,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1511
1525
|
sequelize: "sequelize";
|
|
1512
1526
|
}>;
|
|
1513
1527
|
backend: z.ZodEnum<{
|
|
1528
|
+
effect: "effect";
|
|
1514
1529
|
none: "none";
|
|
1515
1530
|
hono: "hono";
|
|
1516
1531
|
express: "express";
|
|
1517
1532
|
fastify: "fastify";
|
|
1518
1533
|
elysia: "elysia";
|
|
1519
1534
|
fets: "fets";
|
|
1520
|
-
effect: "effect";
|
|
1521
1535
|
nestjs: "nestjs";
|
|
1522
1536
|
adonisjs: "adonisjs";
|
|
1523
1537
|
nitro: "nitro";
|
|
@@ -1569,6 +1583,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1569
1583
|
skills: "skills";
|
|
1570
1584
|
turborepo: "turborepo";
|
|
1571
1585
|
nx: "nx";
|
|
1586
|
+
"vite-plus": "vite-plus";
|
|
1572
1587
|
fumadocs: "fumadocs";
|
|
1573
1588
|
ultracite: "ultracite";
|
|
1574
1589
|
oxlint: "oxlint";
|
|
@@ -1598,8 +1613,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1598
1613
|
capacitor: "capacitor";
|
|
1599
1614
|
}>>;
|
|
1600
1615
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1601
|
-
none: "none";
|
|
1602
1616
|
ai: "ai";
|
|
1617
|
+
none: "none";
|
|
1603
1618
|
"chat-sdk": "chat-sdk";
|
|
1604
1619
|
"tanstack-showcase": "tanstack-showcase";
|
|
1605
1620
|
}>>;
|
|
@@ -1716,8 +1731,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1716
1731
|
"ai-cli": "ai-cli";
|
|
1717
1732
|
}>;
|
|
1718
1733
|
effect: z.ZodEnum<{
|
|
1719
|
-
none: "none";
|
|
1720
1734
|
effect: "effect";
|
|
1735
|
+
none: "none";
|
|
1721
1736
|
"effect-full": "effect-full";
|
|
1722
1737
|
}>;
|
|
1723
1738
|
stateManagement: z.ZodEnum<{
|
|
@@ -1852,8 +1867,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1852
1867
|
"geist-mono": "geist-mono";
|
|
1853
1868
|
}>>;
|
|
1854
1869
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1855
|
-
none: "none";
|
|
1856
1870
|
default: "default";
|
|
1871
|
+
none: "none";
|
|
1857
1872
|
small: "small";
|
|
1858
1873
|
medium: "medium";
|
|
1859
1874
|
large: "large";
|
|
@@ -1937,6 +1952,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1937
1952
|
plausible: "plausible";
|
|
1938
1953
|
umami: "umami";
|
|
1939
1954
|
ga4: "ga4";
|
|
1955
|
+
"vercel-analytics": "vercel-analytics";
|
|
1940
1956
|
}>;
|
|
1941
1957
|
cms: z.ZodEnum<{
|
|
1942
1958
|
none: "none";
|
|
@@ -1958,6 +1974,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1958
1974
|
arcjet: "arcjet";
|
|
1959
1975
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
1960
1976
|
}>;
|
|
1977
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
1978
|
+
none: "none";
|
|
1979
|
+
botid: "botid";
|
|
1980
|
+
turnstile: "turnstile";
|
|
1981
|
+
}>>;
|
|
1961
1982
|
i18n: z.ZodEnum<{
|
|
1962
1983
|
none: "none";
|
|
1963
1984
|
paraglide: "paraglide";
|
|
@@ -1995,9 +2016,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1995
2016
|
}>;
|
|
1996
2017
|
mobileUI: z.ZodEnum<{
|
|
1997
2018
|
none: "none";
|
|
1998
|
-
uniwind: "uniwind";
|
|
1999
2019
|
tamagui: "tamagui";
|
|
2000
2020
|
"gluestack-ui": "gluestack-ui";
|
|
2021
|
+
uniwind: "uniwind";
|
|
2001
2022
|
unistyles: "unistyles";
|
|
2002
2023
|
}>;
|
|
2003
2024
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2113,12 +2134,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2113
2134
|
ratatui: "ratatui";
|
|
2114
2135
|
}>;
|
|
2115
2136
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
2137
|
+
config: "config";
|
|
2116
2138
|
none: "none";
|
|
2117
2139
|
serde: "serde";
|
|
2118
2140
|
uuid: "uuid";
|
|
2119
2141
|
chrono: "chrono";
|
|
2120
2142
|
reqwest: "reqwest";
|
|
2121
|
-
config: "config";
|
|
2122
2143
|
dashmap: "dashmap";
|
|
2123
2144
|
"parking-lot": "parking-lot";
|
|
2124
2145
|
secrecy: "secrecy";
|
|
@@ -2730,69 +2751,81 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2730
2751
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2731
2752
|
id: z.ZodString;
|
|
2732
2753
|
role: z.ZodEnum<{
|
|
2733
|
-
|
|
2734
|
-
|
|
2754
|
+
push: "push";
|
|
2755
|
+
frontend: "frontend";
|
|
2756
|
+
backend: "backend";
|
|
2757
|
+
mobile: "mobile";
|
|
2735
2758
|
database: "database";
|
|
2759
|
+
api: "api";
|
|
2760
|
+
graphql: "graphql";
|
|
2736
2761
|
orm: "orm";
|
|
2737
2762
|
auth: "auth";
|
|
2738
|
-
payments: "payments";
|
|
2739
|
-
frontend: "frontend";
|
|
2740
|
-
examples: "examples";
|
|
2741
|
-
packageManager: "packageManager";
|
|
2742
|
-
dbSetup: "dbSetup";
|
|
2743
|
-
backend: "backend";
|
|
2744
2763
|
runtime: "runtime";
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
testing: "testing";
|
|
2749
|
-
email: "email";
|
|
2750
|
-
validation: "validation";
|
|
2764
|
+
deploy: "deploy";
|
|
2765
|
+
dbSetup: "dbSetup";
|
|
2766
|
+
migrations: "migrations";
|
|
2751
2767
|
realtime: "realtime";
|
|
2768
|
+
navigation: "navigation";
|
|
2769
|
+
caching: "caching";
|
|
2770
|
+
observability: "observability";
|
|
2771
|
+
email: "email";
|
|
2772
|
+
search: "search";
|
|
2773
|
+
vectorDb: "vectorDb";
|
|
2774
|
+
fileStorage: "fileStorage";
|
|
2752
2775
|
jobQueue: "jobQueue";
|
|
2776
|
+
rateLimit: "rateLimit";
|
|
2777
|
+
botProtection: "botProtection";
|
|
2778
|
+
testing: "testing";
|
|
2779
|
+
stateManagement: "stateManagement";
|
|
2780
|
+
forms: "forms";
|
|
2753
2781
|
animation: "animation";
|
|
2754
2782
|
fileUpload: "fileUpload";
|
|
2783
|
+
validation: "validation";
|
|
2784
|
+
effect: "effect";
|
|
2785
|
+
ui: "ui";
|
|
2786
|
+
css: "css";
|
|
2787
|
+
storage: "storage";
|
|
2788
|
+
ota: "ota";
|
|
2789
|
+
deepLinking: "deepLinking";
|
|
2790
|
+
ai: "ai";
|
|
2791
|
+
payments: "payments";
|
|
2755
2792
|
logging: "logging";
|
|
2756
|
-
observability: "observability";
|
|
2757
2793
|
featureFlags: "featureFlags";
|
|
2758
2794
|
integrations: "integrations";
|
|
2759
2795
|
ecommerce: "ecommerce";
|
|
2760
2796
|
analytics: "analytics";
|
|
2761
2797
|
cms: "cms";
|
|
2762
|
-
caching: "caching";
|
|
2763
|
-
rateLimit: "rateLimit";
|
|
2764
2798
|
i18n: "i18n";
|
|
2765
|
-
search: "search";
|
|
2766
|
-
vectorDb: "vectorDb";
|
|
2767
|
-
fileStorage: "fileStorage";
|
|
2768
|
-
config: "config";
|
|
2769
|
-
mobile: "mobile";
|
|
2770
|
-
graphql: "graphql";
|
|
2771
|
-
deploy: "deploy";
|
|
2772
|
-
migrations: "migrations";
|
|
2773
|
-
navigation: "navigation";
|
|
2774
|
-
ui: "ui";
|
|
2775
|
-
css: "css";
|
|
2776
|
-
storage: "storage";
|
|
2777
|
-
push: "push";
|
|
2778
|
-
ota: "ota";
|
|
2779
|
-
deepLinking: "deepLinking";
|
|
2780
2799
|
documentation: "documentation";
|
|
2781
2800
|
codeQuality: "codeQuality";
|
|
2782
2801
|
appPlatform: "appPlatform";
|
|
2783
2802
|
dataFetching: "dataFetching";
|
|
2784
2803
|
workspaceTooling: "workspaceTooling";
|
|
2804
|
+
toolchain: "toolchain";
|
|
2805
|
+
workspaceRunner: "workspaceRunner";
|
|
2806
|
+
gitHooks: "gitHooks";
|
|
2807
|
+
staticAnalysis: "staticAnalysis";
|
|
2808
|
+
aiTooling: "aiTooling";
|
|
2809
|
+
codeGeneration: "codeGeneration";
|
|
2810
|
+
developerEnvironment: "developerEnvironment";
|
|
2811
|
+
containerOrchestration: "containerOrchestration";
|
|
2812
|
+
apiGateway: "apiGateway";
|
|
2813
|
+
continuousIntegration: "continuousIntegration";
|
|
2814
|
+
backendUtilities: "backendUtilities";
|
|
2815
|
+
examples: "examples";
|
|
2785
2816
|
language: "language";
|
|
2786
2817
|
buildTool: "buildTool";
|
|
2787
2818
|
cli: "cli";
|
|
2788
2819
|
errorHandling: "errorHandling";
|
|
2789
2820
|
httpClient: "httpClient";
|
|
2790
2821
|
libraries: "libraries";
|
|
2822
|
+
config: "config";
|
|
2791
2823
|
templating: "templating";
|
|
2792
2824
|
cloudSdk: "cloudSdk";
|
|
2793
2825
|
data: "data";
|
|
2794
2826
|
media: "media";
|
|
2795
2827
|
server: "server";
|
|
2828
|
+
packageManager: "packageManager";
|
|
2796
2829
|
messageQueue: "messageQueue";
|
|
2797
2830
|
}>;
|
|
2798
2831
|
toolId: z.ZodString;
|
|
@@ -2854,13 +2887,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2854
2887
|
sequelize: "sequelize";
|
|
2855
2888
|
}>;
|
|
2856
2889
|
backend: z.ZodEnum<{
|
|
2890
|
+
effect: "effect";
|
|
2857
2891
|
none: "none";
|
|
2858
2892
|
hono: "hono";
|
|
2859
2893
|
express: "express";
|
|
2860
2894
|
fastify: "fastify";
|
|
2861
2895
|
elysia: "elysia";
|
|
2862
2896
|
fets: "fets";
|
|
2863
|
-
effect: "effect";
|
|
2864
2897
|
nestjs: "nestjs";
|
|
2865
2898
|
adonisjs: "adonisjs";
|
|
2866
2899
|
nitro: "nitro";
|
|
@@ -2912,6 +2945,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2912
2945
|
skills: "skills";
|
|
2913
2946
|
turborepo: "turborepo";
|
|
2914
2947
|
nx: "nx";
|
|
2948
|
+
"vite-plus": "vite-plus";
|
|
2915
2949
|
fumadocs: "fumadocs";
|
|
2916
2950
|
ultracite: "ultracite";
|
|
2917
2951
|
oxlint: "oxlint";
|
|
@@ -2941,8 +2975,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2941
2975
|
capacitor: "capacitor";
|
|
2942
2976
|
}>>;
|
|
2943
2977
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2944
|
-
none: "none";
|
|
2945
2978
|
ai: "ai";
|
|
2979
|
+
none: "none";
|
|
2946
2980
|
"chat-sdk": "chat-sdk";
|
|
2947
2981
|
"tanstack-showcase": "tanstack-showcase";
|
|
2948
2982
|
}>>;
|
|
@@ -3057,8 +3091,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3057
3091
|
"ai-cli": "ai-cli";
|
|
3058
3092
|
}>;
|
|
3059
3093
|
effect: z.ZodEnum<{
|
|
3060
|
-
none: "none";
|
|
3061
3094
|
effect: "effect";
|
|
3095
|
+
none: "none";
|
|
3062
3096
|
"effect-full": "effect-full";
|
|
3063
3097
|
}>;
|
|
3064
3098
|
stateManagement: z.ZodEnum<{
|
|
@@ -3193,8 +3227,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3193
3227
|
"geist-mono": "geist-mono";
|
|
3194
3228
|
}>>;
|
|
3195
3229
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3196
|
-
none: "none";
|
|
3197
3230
|
default: "default";
|
|
3231
|
+
none: "none";
|
|
3198
3232
|
small: "small";
|
|
3199
3233
|
medium: "medium";
|
|
3200
3234
|
large: "large";
|
|
@@ -3278,6 +3312,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3278
3312
|
plausible: "plausible";
|
|
3279
3313
|
umami: "umami";
|
|
3280
3314
|
ga4: "ga4";
|
|
3315
|
+
"vercel-analytics": "vercel-analytics";
|
|
3281
3316
|
}>;
|
|
3282
3317
|
cms: z.ZodEnum<{
|
|
3283
3318
|
none: "none";
|
|
@@ -3299,6 +3334,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3299
3334
|
arcjet: "arcjet";
|
|
3300
3335
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
3301
3336
|
}>;
|
|
3337
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
3338
|
+
none: "none";
|
|
3339
|
+
botid: "botid";
|
|
3340
|
+
turnstile: "turnstile";
|
|
3341
|
+
}>>;
|
|
3302
3342
|
i18n: z.ZodEnum<{
|
|
3303
3343
|
none: "none";
|
|
3304
3344
|
paraglide: "paraglide";
|
|
@@ -3336,9 +3376,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3336
3376
|
}>;
|
|
3337
3377
|
mobileUI: z.ZodEnum<{
|
|
3338
3378
|
none: "none";
|
|
3339
|
-
uniwind: "uniwind";
|
|
3340
3379
|
tamagui: "tamagui";
|
|
3341
3380
|
"gluestack-ui": "gluestack-ui";
|
|
3381
|
+
uniwind: "uniwind";
|
|
3342
3382
|
unistyles: "unistyles";
|
|
3343
3383
|
}>;
|
|
3344
3384
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3454,12 +3494,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3454
3494
|
ratatui: "ratatui";
|
|
3455
3495
|
}>;
|
|
3456
3496
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3497
|
+
config: "config";
|
|
3457
3498
|
none: "none";
|
|
3458
3499
|
serde: "serde";
|
|
3459
3500
|
uuid: "uuid";
|
|
3460
3501
|
chrono: "chrono";
|
|
3461
3502
|
reqwest: "reqwest";
|
|
3462
|
-
config: "config";
|
|
3463
3503
|
dashmap: "dashmap";
|
|
3464
3504
|
"parking-lot": "parking-lot";
|
|
3465
3505
|
secrecy: "secrecy";
|
|
@@ -4071,69 +4111,81 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
4071
4111
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4072
4112
|
id: z.ZodString;
|
|
4073
4113
|
role: z.ZodEnum<{
|
|
4074
|
-
|
|
4075
|
-
|
|
4114
|
+
push: "push";
|
|
4115
|
+
frontend: "frontend";
|
|
4116
|
+
backend: "backend";
|
|
4117
|
+
mobile: "mobile";
|
|
4076
4118
|
database: "database";
|
|
4119
|
+
api: "api";
|
|
4120
|
+
graphql: "graphql";
|
|
4077
4121
|
orm: "orm";
|
|
4078
4122
|
auth: "auth";
|
|
4079
|
-
payments: "payments";
|
|
4080
|
-
frontend: "frontend";
|
|
4081
|
-
examples: "examples";
|
|
4082
|
-
packageManager: "packageManager";
|
|
4083
|
-
dbSetup: "dbSetup";
|
|
4084
|
-
backend: "backend";
|
|
4085
4123
|
runtime: "runtime";
|
|
4086
|
-
|
|
4087
|
-
|
|
4088
|
-
|
|
4089
|
-
testing: "testing";
|
|
4090
|
-
email: "email";
|
|
4091
|
-
validation: "validation";
|
|
4124
|
+
deploy: "deploy";
|
|
4125
|
+
dbSetup: "dbSetup";
|
|
4126
|
+
migrations: "migrations";
|
|
4092
4127
|
realtime: "realtime";
|
|
4128
|
+
navigation: "navigation";
|
|
4129
|
+
caching: "caching";
|
|
4130
|
+
observability: "observability";
|
|
4131
|
+
email: "email";
|
|
4132
|
+
search: "search";
|
|
4133
|
+
vectorDb: "vectorDb";
|
|
4134
|
+
fileStorage: "fileStorage";
|
|
4093
4135
|
jobQueue: "jobQueue";
|
|
4136
|
+
rateLimit: "rateLimit";
|
|
4137
|
+
botProtection: "botProtection";
|
|
4138
|
+
testing: "testing";
|
|
4139
|
+
stateManagement: "stateManagement";
|
|
4140
|
+
forms: "forms";
|
|
4094
4141
|
animation: "animation";
|
|
4095
4142
|
fileUpload: "fileUpload";
|
|
4143
|
+
validation: "validation";
|
|
4144
|
+
effect: "effect";
|
|
4145
|
+
ui: "ui";
|
|
4146
|
+
css: "css";
|
|
4147
|
+
storage: "storage";
|
|
4148
|
+
ota: "ota";
|
|
4149
|
+
deepLinking: "deepLinking";
|
|
4150
|
+
ai: "ai";
|
|
4151
|
+
payments: "payments";
|
|
4096
4152
|
logging: "logging";
|
|
4097
|
-
observability: "observability";
|
|
4098
4153
|
featureFlags: "featureFlags";
|
|
4099
4154
|
integrations: "integrations";
|
|
4100
4155
|
ecommerce: "ecommerce";
|
|
4101
4156
|
analytics: "analytics";
|
|
4102
4157
|
cms: "cms";
|
|
4103
|
-
caching: "caching";
|
|
4104
|
-
rateLimit: "rateLimit";
|
|
4105
4158
|
i18n: "i18n";
|
|
4106
|
-
search: "search";
|
|
4107
|
-
vectorDb: "vectorDb";
|
|
4108
|
-
fileStorage: "fileStorage";
|
|
4109
|
-
config: "config";
|
|
4110
|
-
mobile: "mobile";
|
|
4111
|
-
graphql: "graphql";
|
|
4112
|
-
deploy: "deploy";
|
|
4113
|
-
migrations: "migrations";
|
|
4114
|
-
navigation: "navigation";
|
|
4115
|
-
ui: "ui";
|
|
4116
|
-
css: "css";
|
|
4117
|
-
storage: "storage";
|
|
4118
|
-
push: "push";
|
|
4119
|
-
ota: "ota";
|
|
4120
|
-
deepLinking: "deepLinking";
|
|
4121
4159
|
documentation: "documentation";
|
|
4122
4160
|
codeQuality: "codeQuality";
|
|
4123
4161
|
appPlatform: "appPlatform";
|
|
4124
4162
|
dataFetching: "dataFetching";
|
|
4125
4163
|
workspaceTooling: "workspaceTooling";
|
|
4164
|
+
toolchain: "toolchain";
|
|
4165
|
+
workspaceRunner: "workspaceRunner";
|
|
4166
|
+
gitHooks: "gitHooks";
|
|
4167
|
+
staticAnalysis: "staticAnalysis";
|
|
4168
|
+
aiTooling: "aiTooling";
|
|
4169
|
+
codeGeneration: "codeGeneration";
|
|
4170
|
+
developerEnvironment: "developerEnvironment";
|
|
4171
|
+
containerOrchestration: "containerOrchestration";
|
|
4172
|
+
apiGateway: "apiGateway";
|
|
4173
|
+
continuousIntegration: "continuousIntegration";
|
|
4174
|
+
backendUtilities: "backendUtilities";
|
|
4175
|
+
examples: "examples";
|
|
4126
4176
|
language: "language";
|
|
4127
4177
|
buildTool: "buildTool";
|
|
4128
4178
|
cli: "cli";
|
|
4129
4179
|
errorHandling: "errorHandling";
|
|
4130
4180
|
httpClient: "httpClient";
|
|
4131
4181
|
libraries: "libraries";
|
|
4182
|
+
config: "config";
|
|
4132
4183
|
templating: "templating";
|
|
4133
4184
|
cloudSdk: "cloudSdk";
|
|
4134
4185
|
data: "data";
|
|
4135
4186
|
media: "media";
|
|
4136
4187
|
server: "server";
|
|
4188
|
+
packageManager: "packageManager";
|
|
4137
4189
|
messageQueue: "messageQueue";
|
|
4138
4190
|
}>;
|
|
4139
4191
|
toolId: z.ZodString;
|
|
@@ -4195,13 +4247,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4195
4247
|
sequelize: "sequelize";
|
|
4196
4248
|
}>;
|
|
4197
4249
|
backend: z.ZodEnum<{
|
|
4250
|
+
effect: "effect";
|
|
4198
4251
|
none: "none";
|
|
4199
4252
|
hono: "hono";
|
|
4200
4253
|
express: "express";
|
|
4201
4254
|
fastify: "fastify";
|
|
4202
4255
|
elysia: "elysia";
|
|
4203
4256
|
fets: "fets";
|
|
4204
|
-
effect: "effect";
|
|
4205
4257
|
nestjs: "nestjs";
|
|
4206
4258
|
adonisjs: "adonisjs";
|
|
4207
4259
|
nitro: "nitro";
|
|
@@ -4253,6 +4305,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4253
4305
|
skills: "skills";
|
|
4254
4306
|
turborepo: "turborepo";
|
|
4255
4307
|
nx: "nx";
|
|
4308
|
+
"vite-plus": "vite-plus";
|
|
4256
4309
|
fumadocs: "fumadocs";
|
|
4257
4310
|
ultracite: "ultracite";
|
|
4258
4311
|
oxlint: "oxlint";
|
|
@@ -4282,8 +4335,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4282
4335
|
capacitor: "capacitor";
|
|
4283
4336
|
}>>;
|
|
4284
4337
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4285
|
-
none: "none";
|
|
4286
4338
|
ai: "ai";
|
|
4339
|
+
none: "none";
|
|
4287
4340
|
"chat-sdk": "chat-sdk";
|
|
4288
4341
|
"tanstack-showcase": "tanstack-showcase";
|
|
4289
4342
|
}>>;
|
|
@@ -4398,8 +4451,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4398
4451
|
"ai-cli": "ai-cli";
|
|
4399
4452
|
}>;
|
|
4400
4453
|
effect: z.ZodEnum<{
|
|
4401
|
-
none: "none";
|
|
4402
4454
|
effect: "effect";
|
|
4455
|
+
none: "none";
|
|
4403
4456
|
"effect-full": "effect-full";
|
|
4404
4457
|
}>;
|
|
4405
4458
|
stateManagement: z.ZodEnum<{
|
|
@@ -4534,8 +4587,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4534
4587
|
"geist-mono": "geist-mono";
|
|
4535
4588
|
}>>;
|
|
4536
4589
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4537
|
-
none: "none";
|
|
4538
4590
|
default: "default";
|
|
4591
|
+
none: "none";
|
|
4539
4592
|
small: "small";
|
|
4540
4593
|
medium: "medium";
|
|
4541
4594
|
large: "large";
|
|
@@ -4619,6 +4672,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4619
4672
|
plausible: "plausible";
|
|
4620
4673
|
umami: "umami";
|
|
4621
4674
|
ga4: "ga4";
|
|
4675
|
+
"vercel-analytics": "vercel-analytics";
|
|
4622
4676
|
}>;
|
|
4623
4677
|
cms: z.ZodEnum<{
|
|
4624
4678
|
none: "none";
|
|
@@ -4640,6 +4694,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4640
4694
|
arcjet: "arcjet";
|
|
4641
4695
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
4642
4696
|
}>;
|
|
4697
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
4698
|
+
none: "none";
|
|
4699
|
+
botid: "botid";
|
|
4700
|
+
turnstile: "turnstile";
|
|
4701
|
+
}>>;
|
|
4643
4702
|
i18n: z.ZodEnum<{
|
|
4644
4703
|
none: "none";
|
|
4645
4704
|
paraglide: "paraglide";
|
|
@@ -4677,9 +4736,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4677
4736
|
}>;
|
|
4678
4737
|
mobileUI: z.ZodEnum<{
|
|
4679
4738
|
none: "none";
|
|
4680
|
-
uniwind: "uniwind";
|
|
4681
4739
|
tamagui: "tamagui";
|
|
4682
4740
|
"gluestack-ui": "gluestack-ui";
|
|
4741
|
+
uniwind: "uniwind";
|
|
4683
4742
|
unistyles: "unistyles";
|
|
4684
4743
|
}>;
|
|
4685
4744
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4795,12 +4854,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4795
4854
|
ratatui: "ratatui";
|
|
4796
4855
|
}>;
|
|
4797
4856
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4857
|
+
config: "config";
|
|
4798
4858
|
none: "none";
|
|
4799
4859
|
serde: "serde";
|
|
4800
4860
|
uuid: "uuid";
|
|
4801
4861
|
chrono: "chrono";
|
|
4802
4862
|
reqwest: "reqwest";
|
|
4803
|
-
config: "config";
|
|
4804
4863
|
dashmap: "dashmap";
|
|
4805
4864
|
"parking-lot": "parking-lot";
|
|
4806
4865
|
secrecy: "secrecy";
|
|
@@ -5412,69 +5471,81 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
5412
5471
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5413
5472
|
id: z.ZodString;
|
|
5414
5473
|
role: z.ZodEnum<{
|
|
5415
|
-
|
|
5416
|
-
|
|
5474
|
+
push: "push";
|
|
5475
|
+
frontend: "frontend";
|
|
5476
|
+
backend: "backend";
|
|
5477
|
+
mobile: "mobile";
|
|
5417
5478
|
database: "database";
|
|
5479
|
+
api: "api";
|
|
5480
|
+
graphql: "graphql";
|
|
5418
5481
|
orm: "orm";
|
|
5419
5482
|
auth: "auth";
|
|
5420
|
-
payments: "payments";
|
|
5421
|
-
frontend: "frontend";
|
|
5422
|
-
examples: "examples";
|
|
5423
|
-
packageManager: "packageManager";
|
|
5424
|
-
dbSetup: "dbSetup";
|
|
5425
|
-
backend: "backend";
|
|
5426
5483
|
runtime: "runtime";
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
testing: "testing";
|
|
5431
|
-
email: "email";
|
|
5432
|
-
validation: "validation";
|
|
5484
|
+
deploy: "deploy";
|
|
5485
|
+
dbSetup: "dbSetup";
|
|
5486
|
+
migrations: "migrations";
|
|
5433
5487
|
realtime: "realtime";
|
|
5488
|
+
navigation: "navigation";
|
|
5489
|
+
caching: "caching";
|
|
5490
|
+
observability: "observability";
|
|
5491
|
+
email: "email";
|
|
5492
|
+
search: "search";
|
|
5493
|
+
vectorDb: "vectorDb";
|
|
5494
|
+
fileStorage: "fileStorage";
|
|
5434
5495
|
jobQueue: "jobQueue";
|
|
5496
|
+
rateLimit: "rateLimit";
|
|
5497
|
+
botProtection: "botProtection";
|
|
5498
|
+
testing: "testing";
|
|
5499
|
+
stateManagement: "stateManagement";
|
|
5500
|
+
forms: "forms";
|
|
5435
5501
|
animation: "animation";
|
|
5436
5502
|
fileUpload: "fileUpload";
|
|
5503
|
+
validation: "validation";
|
|
5504
|
+
effect: "effect";
|
|
5505
|
+
ui: "ui";
|
|
5506
|
+
css: "css";
|
|
5507
|
+
storage: "storage";
|
|
5508
|
+
ota: "ota";
|
|
5509
|
+
deepLinking: "deepLinking";
|
|
5510
|
+
ai: "ai";
|
|
5511
|
+
payments: "payments";
|
|
5437
5512
|
logging: "logging";
|
|
5438
|
-
observability: "observability";
|
|
5439
5513
|
featureFlags: "featureFlags";
|
|
5440
5514
|
integrations: "integrations";
|
|
5441
5515
|
ecommerce: "ecommerce";
|
|
5442
5516
|
analytics: "analytics";
|
|
5443
5517
|
cms: "cms";
|
|
5444
|
-
caching: "caching";
|
|
5445
|
-
rateLimit: "rateLimit";
|
|
5446
5518
|
i18n: "i18n";
|
|
5447
|
-
search: "search";
|
|
5448
|
-
vectorDb: "vectorDb";
|
|
5449
|
-
fileStorage: "fileStorage";
|
|
5450
|
-
config: "config";
|
|
5451
|
-
mobile: "mobile";
|
|
5452
|
-
graphql: "graphql";
|
|
5453
|
-
deploy: "deploy";
|
|
5454
|
-
migrations: "migrations";
|
|
5455
|
-
navigation: "navigation";
|
|
5456
|
-
ui: "ui";
|
|
5457
|
-
css: "css";
|
|
5458
|
-
storage: "storage";
|
|
5459
|
-
push: "push";
|
|
5460
|
-
ota: "ota";
|
|
5461
|
-
deepLinking: "deepLinking";
|
|
5462
5519
|
documentation: "documentation";
|
|
5463
5520
|
codeQuality: "codeQuality";
|
|
5464
5521
|
appPlatform: "appPlatform";
|
|
5465
5522
|
dataFetching: "dataFetching";
|
|
5466
5523
|
workspaceTooling: "workspaceTooling";
|
|
5524
|
+
toolchain: "toolchain";
|
|
5525
|
+
workspaceRunner: "workspaceRunner";
|
|
5526
|
+
gitHooks: "gitHooks";
|
|
5527
|
+
staticAnalysis: "staticAnalysis";
|
|
5528
|
+
aiTooling: "aiTooling";
|
|
5529
|
+
codeGeneration: "codeGeneration";
|
|
5530
|
+
developerEnvironment: "developerEnvironment";
|
|
5531
|
+
containerOrchestration: "containerOrchestration";
|
|
5532
|
+
apiGateway: "apiGateway";
|
|
5533
|
+
continuousIntegration: "continuousIntegration";
|
|
5534
|
+
backendUtilities: "backendUtilities";
|
|
5535
|
+
examples: "examples";
|
|
5467
5536
|
language: "language";
|
|
5468
5537
|
buildTool: "buildTool";
|
|
5469
5538
|
cli: "cli";
|
|
5470
5539
|
errorHandling: "errorHandling";
|
|
5471
5540
|
httpClient: "httpClient";
|
|
5472
5541
|
libraries: "libraries";
|
|
5542
|
+
config: "config";
|
|
5473
5543
|
templating: "templating";
|
|
5474
5544
|
cloudSdk: "cloudSdk";
|
|
5475
5545
|
data: "data";
|
|
5476
5546
|
media: "media";
|
|
5477
5547
|
server: "server";
|
|
5548
|
+
packageManager: "packageManager";
|
|
5478
5549
|
messageQueue: "messageQueue";
|
|
5479
5550
|
}>;
|
|
5480
5551
|
toolId: z.ZodString;
|
|
@@ -5537,13 +5608,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5537
5608
|
sequelize: "sequelize";
|
|
5538
5609
|
}>;
|
|
5539
5610
|
backend: z.ZodEnum<{
|
|
5611
|
+
effect: "effect";
|
|
5540
5612
|
none: "none";
|
|
5541
5613
|
hono: "hono";
|
|
5542
5614
|
express: "express";
|
|
5543
5615
|
fastify: "fastify";
|
|
5544
5616
|
elysia: "elysia";
|
|
5545
5617
|
fets: "fets";
|
|
5546
|
-
effect: "effect";
|
|
5547
5618
|
nestjs: "nestjs";
|
|
5548
5619
|
adonisjs: "adonisjs";
|
|
5549
5620
|
nitro: "nitro";
|
|
@@ -5595,6 +5666,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5595
5666
|
skills: "skills";
|
|
5596
5667
|
turborepo: "turborepo";
|
|
5597
5668
|
nx: "nx";
|
|
5669
|
+
"vite-plus": "vite-plus";
|
|
5598
5670
|
fumadocs: "fumadocs";
|
|
5599
5671
|
ultracite: "ultracite";
|
|
5600
5672
|
oxlint: "oxlint";
|
|
@@ -5624,8 +5696,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5624
5696
|
capacitor: "capacitor";
|
|
5625
5697
|
}>>;
|
|
5626
5698
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5627
|
-
none: "none";
|
|
5628
5699
|
ai: "ai";
|
|
5700
|
+
none: "none";
|
|
5629
5701
|
"chat-sdk": "chat-sdk";
|
|
5630
5702
|
"tanstack-showcase": "tanstack-showcase";
|
|
5631
5703
|
}>>;
|
|
@@ -5742,8 +5814,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5742
5814
|
"ai-cli": "ai-cli";
|
|
5743
5815
|
}>;
|
|
5744
5816
|
effect: z.ZodEnum<{
|
|
5745
|
-
none: "none";
|
|
5746
5817
|
effect: "effect";
|
|
5818
|
+
none: "none";
|
|
5747
5819
|
"effect-full": "effect-full";
|
|
5748
5820
|
}>;
|
|
5749
5821
|
stateManagement: z.ZodEnum<{
|
|
@@ -5878,8 +5950,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5878
5950
|
"geist-mono": "geist-mono";
|
|
5879
5951
|
}>>;
|
|
5880
5952
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5881
|
-
none: "none";
|
|
5882
5953
|
default: "default";
|
|
5954
|
+
none: "none";
|
|
5883
5955
|
small: "small";
|
|
5884
5956
|
medium: "medium";
|
|
5885
5957
|
large: "large";
|
|
@@ -5963,6 +6035,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5963
6035
|
plausible: "plausible";
|
|
5964
6036
|
umami: "umami";
|
|
5965
6037
|
ga4: "ga4";
|
|
6038
|
+
"vercel-analytics": "vercel-analytics";
|
|
5966
6039
|
}>;
|
|
5967
6040
|
cms: z.ZodEnum<{
|
|
5968
6041
|
none: "none";
|
|
@@ -5984,6 +6057,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5984
6057
|
arcjet: "arcjet";
|
|
5985
6058
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
5986
6059
|
}>;
|
|
6060
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
6061
|
+
none: "none";
|
|
6062
|
+
botid: "botid";
|
|
6063
|
+
turnstile: "turnstile";
|
|
6064
|
+
}>>;
|
|
5987
6065
|
i18n: z.ZodEnum<{
|
|
5988
6066
|
none: "none";
|
|
5989
6067
|
paraglide: "paraglide";
|
|
@@ -6021,9 +6099,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6021
6099
|
}>;
|
|
6022
6100
|
mobileUI: z.ZodEnum<{
|
|
6023
6101
|
none: "none";
|
|
6024
|
-
uniwind: "uniwind";
|
|
6025
6102
|
tamagui: "tamagui";
|
|
6026
6103
|
"gluestack-ui": "gluestack-ui";
|
|
6104
|
+
uniwind: "uniwind";
|
|
6027
6105
|
unistyles: "unistyles";
|
|
6028
6106
|
}>;
|
|
6029
6107
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6139,12 +6217,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6139
6217
|
ratatui: "ratatui";
|
|
6140
6218
|
}>;
|
|
6141
6219
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
6220
|
+
config: "config";
|
|
6142
6221
|
none: "none";
|
|
6143
6222
|
serde: "serde";
|
|
6144
6223
|
uuid: "uuid";
|
|
6145
6224
|
chrono: "chrono";
|
|
6146
6225
|
reqwest: "reqwest";
|
|
6147
|
-
config: "config";
|
|
6148
6226
|
dashmap: "dashmap";
|
|
6149
6227
|
"parking-lot": "parking-lot";
|
|
6150
6228
|
secrecy: "secrecy";
|
|
@@ -6756,69 +6834,81 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6756
6834
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6757
6835
|
id: z.ZodString;
|
|
6758
6836
|
role: z.ZodEnum<{
|
|
6759
|
-
|
|
6760
|
-
|
|
6837
|
+
push: "push";
|
|
6838
|
+
frontend: "frontend";
|
|
6839
|
+
backend: "backend";
|
|
6840
|
+
mobile: "mobile";
|
|
6761
6841
|
database: "database";
|
|
6842
|
+
api: "api";
|
|
6843
|
+
graphql: "graphql";
|
|
6762
6844
|
orm: "orm";
|
|
6763
6845
|
auth: "auth";
|
|
6764
|
-
payments: "payments";
|
|
6765
|
-
frontend: "frontend";
|
|
6766
|
-
examples: "examples";
|
|
6767
|
-
packageManager: "packageManager";
|
|
6768
|
-
dbSetup: "dbSetup";
|
|
6769
|
-
backend: "backend";
|
|
6770
6846
|
runtime: "runtime";
|
|
6771
|
-
|
|
6772
|
-
|
|
6773
|
-
|
|
6774
|
-
testing: "testing";
|
|
6775
|
-
email: "email";
|
|
6776
|
-
validation: "validation";
|
|
6847
|
+
deploy: "deploy";
|
|
6848
|
+
dbSetup: "dbSetup";
|
|
6849
|
+
migrations: "migrations";
|
|
6777
6850
|
realtime: "realtime";
|
|
6851
|
+
navigation: "navigation";
|
|
6852
|
+
caching: "caching";
|
|
6853
|
+
observability: "observability";
|
|
6854
|
+
email: "email";
|
|
6855
|
+
search: "search";
|
|
6856
|
+
vectorDb: "vectorDb";
|
|
6857
|
+
fileStorage: "fileStorage";
|
|
6778
6858
|
jobQueue: "jobQueue";
|
|
6859
|
+
rateLimit: "rateLimit";
|
|
6860
|
+
botProtection: "botProtection";
|
|
6861
|
+
testing: "testing";
|
|
6862
|
+
stateManagement: "stateManagement";
|
|
6863
|
+
forms: "forms";
|
|
6779
6864
|
animation: "animation";
|
|
6780
6865
|
fileUpload: "fileUpload";
|
|
6866
|
+
validation: "validation";
|
|
6867
|
+
effect: "effect";
|
|
6868
|
+
ui: "ui";
|
|
6869
|
+
css: "css";
|
|
6870
|
+
storage: "storage";
|
|
6871
|
+
ota: "ota";
|
|
6872
|
+
deepLinking: "deepLinking";
|
|
6873
|
+
ai: "ai";
|
|
6874
|
+
payments: "payments";
|
|
6781
6875
|
logging: "logging";
|
|
6782
|
-
observability: "observability";
|
|
6783
6876
|
featureFlags: "featureFlags";
|
|
6784
6877
|
integrations: "integrations";
|
|
6785
6878
|
ecommerce: "ecommerce";
|
|
6786
6879
|
analytics: "analytics";
|
|
6787
6880
|
cms: "cms";
|
|
6788
|
-
caching: "caching";
|
|
6789
|
-
rateLimit: "rateLimit";
|
|
6790
6881
|
i18n: "i18n";
|
|
6791
|
-
search: "search";
|
|
6792
|
-
vectorDb: "vectorDb";
|
|
6793
|
-
fileStorage: "fileStorage";
|
|
6794
|
-
config: "config";
|
|
6795
|
-
mobile: "mobile";
|
|
6796
|
-
graphql: "graphql";
|
|
6797
|
-
deploy: "deploy";
|
|
6798
|
-
migrations: "migrations";
|
|
6799
|
-
navigation: "navigation";
|
|
6800
|
-
ui: "ui";
|
|
6801
|
-
css: "css";
|
|
6802
|
-
storage: "storage";
|
|
6803
|
-
push: "push";
|
|
6804
|
-
ota: "ota";
|
|
6805
|
-
deepLinking: "deepLinking";
|
|
6806
6882
|
documentation: "documentation";
|
|
6807
6883
|
codeQuality: "codeQuality";
|
|
6808
6884
|
appPlatform: "appPlatform";
|
|
6809
6885
|
dataFetching: "dataFetching";
|
|
6810
6886
|
workspaceTooling: "workspaceTooling";
|
|
6887
|
+
toolchain: "toolchain";
|
|
6888
|
+
workspaceRunner: "workspaceRunner";
|
|
6889
|
+
gitHooks: "gitHooks";
|
|
6890
|
+
staticAnalysis: "staticAnalysis";
|
|
6891
|
+
aiTooling: "aiTooling";
|
|
6892
|
+
codeGeneration: "codeGeneration";
|
|
6893
|
+
developerEnvironment: "developerEnvironment";
|
|
6894
|
+
containerOrchestration: "containerOrchestration";
|
|
6895
|
+
apiGateway: "apiGateway";
|
|
6896
|
+
continuousIntegration: "continuousIntegration";
|
|
6897
|
+
backendUtilities: "backendUtilities";
|
|
6898
|
+
examples: "examples";
|
|
6811
6899
|
language: "language";
|
|
6812
6900
|
buildTool: "buildTool";
|
|
6813
6901
|
cli: "cli";
|
|
6814
6902
|
errorHandling: "errorHandling";
|
|
6815
6903
|
httpClient: "httpClient";
|
|
6816
6904
|
libraries: "libraries";
|
|
6905
|
+
config: "config";
|
|
6817
6906
|
templating: "templating";
|
|
6818
6907
|
cloudSdk: "cloudSdk";
|
|
6819
6908
|
data: "data";
|
|
6820
6909
|
media: "media";
|
|
6821
6910
|
server: "server";
|
|
6911
|
+
packageManager: "packageManager";
|
|
6822
6912
|
messageQueue: "messageQueue";
|
|
6823
6913
|
}>;
|
|
6824
6914
|
toolId: z.ZodString;
|
|
@@ -7222,13 +7312,13 @@ declare function getAllJsonSchemas(): {
|
|
|
7222
7312
|
sequelize: "sequelize";
|
|
7223
7313
|
}>>;
|
|
7224
7314
|
backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7315
|
+
effect: "effect";
|
|
7225
7316
|
none: "none";
|
|
7226
7317
|
hono: "hono";
|
|
7227
7318
|
express: "express";
|
|
7228
7319
|
fastify: "fastify";
|
|
7229
7320
|
elysia: "elysia";
|
|
7230
7321
|
fets: "fets";
|
|
7231
|
-
effect: "effect";
|
|
7232
7322
|
nestjs: "nestjs";
|
|
7233
7323
|
adonisjs: "adonisjs";
|
|
7234
7324
|
nitro: "nitro";
|
|
@@ -7280,6 +7370,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7280
7370
|
skills: "skills";
|
|
7281
7371
|
turborepo: "turborepo";
|
|
7282
7372
|
nx: "nx";
|
|
7373
|
+
"vite-plus": "vite-plus";
|
|
7283
7374
|
fumadocs: "fumadocs";
|
|
7284
7375
|
ultracite: "ultracite";
|
|
7285
7376
|
oxlint: "oxlint";
|
|
@@ -7309,8 +7400,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7309
7400
|
capacitor: "capacitor";
|
|
7310
7401
|
}>>;
|
|
7311
7402
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7312
|
-
none: "none";
|
|
7313
7403
|
ai: "ai";
|
|
7404
|
+
none: "none";
|
|
7314
7405
|
"chat-sdk": "chat-sdk";
|
|
7315
7406
|
"tanstack-showcase": "tanstack-showcase";
|
|
7316
7407
|
}>>;
|
|
@@ -7393,18 +7484,18 @@ declare function getAllJsonSchemas(): {
|
|
|
7393
7484
|
vercel: "vercel";
|
|
7394
7485
|
}>>;
|
|
7395
7486
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7487
|
+
error: "error";
|
|
7396
7488
|
merge: "merge";
|
|
7397
7489
|
overwrite: "overwrite";
|
|
7398
7490
|
increment: "increment";
|
|
7399
|
-
error: "error";
|
|
7400
7491
|
}>>;
|
|
7401
7492
|
template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7402
7493
|
none: "none";
|
|
7494
|
+
uniwind: "uniwind";
|
|
7403
7495
|
mern: "mern";
|
|
7404
7496
|
pern: "pern";
|
|
7405
7497
|
t3: "t3";
|
|
7406
7498
|
saas: "saas";
|
|
7407
|
-
uniwind: "uniwind";
|
|
7408
7499
|
}>>;
|
|
7409
7500
|
goWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7410
7501
|
none: "none";
|
|
@@ -7755,11 +7846,17 @@ declare function getAllJsonSchemas(): {
|
|
|
7755
7846
|
projectName: z.ZodOptional<z.ZodString>;
|
|
7756
7847
|
template: z.ZodOptional<z.ZodEnum<{
|
|
7757
7848
|
none: "none";
|
|
7849
|
+
uniwind: "uniwind";
|
|
7758
7850
|
mern: "mern";
|
|
7759
7851
|
pern: "pern";
|
|
7760
7852
|
t3: "t3";
|
|
7761
7853
|
saas: "saas";
|
|
7762
|
-
|
|
7854
|
+
}>>;
|
|
7855
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
7856
|
+
frontend: "frontend";
|
|
7857
|
+
backend: "backend";
|
|
7858
|
+
mobile: "mobile";
|
|
7859
|
+
fullstack: "fullstack";
|
|
7763
7860
|
}>>;
|
|
7764
7861
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
7765
7862
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7861,6 +7958,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7861
7958
|
skills: "skills";
|
|
7862
7959
|
turborepo: "turborepo";
|
|
7863
7960
|
nx: "nx";
|
|
7961
|
+
"vite-plus": "vite-plus";
|
|
7864
7962
|
fumadocs: "fumadocs";
|
|
7865
7963
|
ultracite: "ultracite";
|
|
7866
7964
|
oxlint: "oxlint";
|
|
@@ -7890,8 +7988,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7890
7988
|
capacitor: "capacitor";
|
|
7891
7989
|
}>>>;
|
|
7892
7990
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7893
|
-
none: "none";
|
|
7894
7991
|
ai: "ai";
|
|
7992
|
+
none: "none";
|
|
7895
7993
|
"chat-sdk": "chat-sdk";
|
|
7896
7994
|
"tanstack-showcase": "tanstack-showcase";
|
|
7897
7995
|
}>>>;
|
|
@@ -7925,13 +8023,13 @@ declare function getAllJsonSchemas(): {
|
|
|
7925
8023
|
docker: "docker";
|
|
7926
8024
|
}>>;
|
|
7927
8025
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
8026
|
+
effect: "effect";
|
|
7928
8027
|
none: "none";
|
|
7929
8028
|
hono: "hono";
|
|
7930
8029
|
express: "express";
|
|
7931
8030
|
fastify: "fastify";
|
|
7932
8031
|
elysia: "elysia";
|
|
7933
8032
|
fets: "fets";
|
|
7934
|
-
effect: "effect";
|
|
7935
8033
|
nestjs: "nestjs";
|
|
7936
8034
|
adonisjs: "adonisjs";
|
|
7937
8035
|
nitro: "nitro";
|
|
@@ -7978,10 +8076,10 @@ declare function getAllJsonSchemas(): {
|
|
|
7978
8076
|
vercel: "vercel";
|
|
7979
8077
|
}>>;
|
|
7980
8078
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
8079
|
+
error: "error";
|
|
7981
8080
|
merge: "merge";
|
|
7982
8081
|
overwrite: "overwrite";
|
|
7983
8082
|
increment: "increment";
|
|
7984
|
-
error: "error";
|
|
7985
8083
|
}>>;
|
|
7986
8084
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
7987
8085
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8010,8 +8108,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8010
8108
|
"ai-cli": "ai-cli";
|
|
8011
8109
|
}>>;
|
|
8012
8110
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
8013
|
-
none: "none";
|
|
8014
8111
|
effect: "effect";
|
|
8112
|
+
none: "none";
|
|
8015
8113
|
"effect-full": "effect-full";
|
|
8016
8114
|
}>>;
|
|
8017
8115
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8146,8 +8244,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8146
8244
|
"geist-mono": "geist-mono";
|
|
8147
8245
|
}>>;
|
|
8148
8246
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8149
|
-
none: "none";
|
|
8150
8247
|
default: "default";
|
|
8248
|
+
none: "none";
|
|
8151
8249
|
small: "small";
|
|
8152
8250
|
medium: "medium";
|
|
8153
8251
|
large: "large";
|
|
@@ -8231,6 +8329,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8231
8329
|
plausible: "plausible";
|
|
8232
8330
|
umami: "umami";
|
|
8233
8331
|
ga4: "ga4";
|
|
8332
|
+
"vercel-analytics": "vercel-analytics";
|
|
8234
8333
|
}>>;
|
|
8235
8334
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
8236
8335
|
none: "none";
|
|
@@ -8252,6 +8351,11 @@ declare function getAllJsonSchemas(): {
|
|
|
8252
8351
|
arcjet: "arcjet";
|
|
8253
8352
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
8254
8353
|
}>>;
|
|
8354
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
8355
|
+
none: "none";
|
|
8356
|
+
botid: "botid";
|
|
8357
|
+
turnstile: "turnstile";
|
|
8358
|
+
}>>;
|
|
8255
8359
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
8256
8360
|
none: "none";
|
|
8257
8361
|
paraglide: "paraglide";
|
|
@@ -8289,9 +8393,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8289
8393
|
}>>;
|
|
8290
8394
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
8291
8395
|
none: "none";
|
|
8292
|
-
uniwind: "uniwind";
|
|
8293
8396
|
tamagui: "tamagui";
|
|
8294
8397
|
"gluestack-ui": "gluestack-ui";
|
|
8398
|
+
uniwind: "uniwind";
|
|
8295
8399
|
unistyles: "unistyles";
|
|
8296
8400
|
}>>;
|
|
8297
8401
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8407,12 +8511,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8407
8511
|
ratatui: "ratatui";
|
|
8408
8512
|
}>>;
|
|
8409
8513
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8514
|
+
config: "config";
|
|
8410
8515
|
none: "none";
|
|
8411
8516
|
serde: "serde";
|
|
8412
8517
|
uuid: "uuid";
|
|
8413
8518
|
chrono: "chrono";
|
|
8414
8519
|
reqwest: "reqwest";
|
|
8415
|
-
config: "config";
|
|
8416
8520
|
dashmap: "dashmap";
|
|
8417
8521
|
"parking-lot": "parking-lot";
|
|
8418
8522
|
secrecy: "secrecy";
|
|
@@ -9057,13 +9161,13 @@ declare function getAllJsonSchemas(): {
|
|
|
9057
9161
|
sequelize: "sequelize";
|
|
9058
9162
|
}>;
|
|
9059
9163
|
backend: z.ZodEnum<{
|
|
9164
|
+
effect: "effect";
|
|
9060
9165
|
none: "none";
|
|
9061
9166
|
hono: "hono";
|
|
9062
9167
|
express: "express";
|
|
9063
9168
|
fastify: "fastify";
|
|
9064
9169
|
elysia: "elysia";
|
|
9065
9170
|
fets: "fets";
|
|
9066
|
-
effect: "effect";
|
|
9067
9171
|
nestjs: "nestjs";
|
|
9068
9172
|
adonisjs: "adonisjs";
|
|
9069
9173
|
nitro: "nitro";
|
|
@@ -9115,6 +9219,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9115
9219
|
skills: "skills";
|
|
9116
9220
|
turborepo: "turborepo";
|
|
9117
9221
|
nx: "nx";
|
|
9222
|
+
"vite-plus": "vite-plus";
|
|
9118
9223
|
fumadocs: "fumadocs";
|
|
9119
9224
|
ultracite: "ultracite";
|
|
9120
9225
|
oxlint: "oxlint";
|
|
@@ -9144,8 +9249,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9144
9249
|
capacitor: "capacitor";
|
|
9145
9250
|
}>>;
|
|
9146
9251
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9147
|
-
none: "none";
|
|
9148
9252
|
ai: "ai";
|
|
9253
|
+
none: "none";
|
|
9149
9254
|
"chat-sdk": "chat-sdk";
|
|
9150
9255
|
"tanstack-showcase": "tanstack-showcase";
|
|
9151
9256
|
}>>;
|
|
@@ -9262,8 +9367,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9262
9367
|
"ai-cli": "ai-cli";
|
|
9263
9368
|
}>;
|
|
9264
9369
|
effect: z.ZodEnum<{
|
|
9265
|
-
none: "none";
|
|
9266
9370
|
effect: "effect";
|
|
9371
|
+
none: "none";
|
|
9267
9372
|
"effect-full": "effect-full";
|
|
9268
9373
|
}>;
|
|
9269
9374
|
stateManagement: z.ZodEnum<{
|
|
@@ -9398,8 +9503,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9398
9503
|
"geist-mono": "geist-mono";
|
|
9399
9504
|
}>>;
|
|
9400
9505
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9401
|
-
none: "none";
|
|
9402
9506
|
default: "default";
|
|
9507
|
+
none: "none";
|
|
9403
9508
|
small: "small";
|
|
9404
9509
|
medium: "medium";
|
|
9405
9510
|
large: "large";
|
|
@@ -9483,6 +9588,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9483
9588
|
plausible: "plausible";
|
|
9484
9589
|
umami: "umami";
|
|
9485
9590
|
ga4: "ga4";
|
|
9591
|
+
"vercel-analytics": "vercel-analytics";
|
|
9486
9592
|
}>;
|
|
9487
9593
|
cms: z.ZodEnum<{
|
|
9488
9594
|
none: "none";
|
|
@@ -9504,6 +9610,11 @@ declare function getAllJsonSchemas(): {
|
|
|
9504
9610
|
arcjet: "arcjet";
|
|
9505
9611
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
9506
9612
|
}>;
|
|
9613
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
9614
|
+
none: "none";
|
|
9615
|
+
botid: "botid";
|
|
9616
|
+
turnstile: "turnstile";
|
|
9617
|
+
}>>;
|
|
9507
9618
|
i18n: z.ZodEnum<{
|
|
9508
9619
|
none: "none";
|
|
9509
9620
|
paraglide: "paraglide";
|
|
@@ -9541,9 +9652,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9541
9652
|
}>;
|
|
9542
9653
|
mobileUI: z.ZodEnum<{
|
|
9543
9654
|
none: "none";
|
|
9544
|
-
uniwind: "uniwind";
|
|
9545
9655
|
tamagui: "tamagui";
|
|
9546
9656
|
"gluestack-ui": "gluestack-ui";
|
|
9657
|
+
uniwind: "uniwind";
|
|
9547
9658
|
unistyles: "unistyles";
|
|
9548
9659
|
}>;
|
|
9549
9660
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9659,12 +9770,12 @@ declare function getAllJsonSchemas(): {
|
|
|
9659
9770
|
ratatui: "ratatui";
|
|
9660
9771
|
}>;
|
|
9661
9772
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9773
|
+
config: "config";
|
|
9662
9774
|
none: "none";
|
|
9663
9775
|
serde: "serde";
|
|
9664
9776
|
uuid: "uuid";
|
|
9665
9777
|
chrono: "chrono";
|
|
9666
9778
|
reqwest: "reqwest";
|
|
9667
|
-
config: "config";
|
|
9668
9779
|
dashmap: "dashmap";
|
|
9669
9780
|
"parking-lot": "parking-lot";
|
|
9670
9781
|
secrecy: "secrecy";
|
|
@@ -10276,69 +10387,81 @@ declare function getAllJsonSchemas(): {
|
|
|
10276
10387
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10277
10388
|
id: z.ZodString;
|
|
10278
10389
|
role: z.ZodEnum<{
|
|
10279
|
-
|
|
10280
|
-
|
|
10390
|
+
push: "push";
|
|
10391
|
+
frontend: "frontend";
|
|
10392
|
+
backend: "backend";
|
|
10393
|
+
mobile: "mobile";
|
|
10281
10394
|
database: "database";
|
|
10395
|
+
api: "api";
|
|
10396
|
+
graphql: "graphql";
|
|
10282
10397
|
orm: "orm";
|
|
10283
10398
|
auth: "auth";
|
|
10284
|
-
payments: "payments";
|
|
10285
|
-
frontend: "frontend";
|
|
10286
|
-
examples: "examples";
|
|
10287
|
-
packageManager: "packageManager";
|
|
10288
|
-
dbSetup: "dbSetup";
|
|
10289
|
-
backend: "backend";
|
|
10290
10399
|
runtime: "runtime";
|
|
10291
|
-
|
|
10292
|
-
|
|
10293
|
-
|
|
10294
|
-
testing: "testing";
|
|
10295
|
-
email: "email";
|
|
10296
|
-
validation: "validation";
|
|
10400
|
+
deploy: "deploy";
|
|
10401
|
+
dbSetup: "dbSetup";
|
|
10402
|
+
migrations: "migrations";
|
|
10297
10403
|
realtime: "realtime";
|
|
10404
|
+
navigation: "navigation";
|
|
10405
|
+
caching: "caching";
|
|
10406
|
+
observability: "observability";
|
|
10407
|
+
email: "email";
|
|
10408
|
+
search: "search";
|
|
10409
|
+
vectorDb: "vectorDb";
|
|
10410
|
+
fileStorage: "fileStorage";
|
|
10298
10411
|
jobQueue: "jobQueue";
|
|
10412
|
+
rateLimit: "rateLimit";
|
|
10413
|
+
botProtection: "botProtection";
|
|
10414
|
+
testing: "testing";
|
|
10415
|
+
stateManagement: "stateManagement";
|
|
10416
|
+
forms: "forms";
|
|
10299
10417
|
animation: "animation";
|
|
10300
10418
|
fileUpload: "fileUpload";
|
|
10419
|
+
validation: "validation";
|
|
10420
|
+
effect: "effect";
|
|
10421
|
+
ui: "ui";
|
|
10422
|
+
css: "css";
|
|
10423
|
+
storage: "storage";
|
|
10424
|
+
ota: "ota";
|
|
10425
|
+
deepLinking: "deepLinking";
|
|
10426
|
+
ai: "ai";
|
|
10427
|
+
payments: "payments";
|
|
10301
10428
|
logging: "logging";
|
|
10302
|
-
observability: "observability";
|
|
10303
10429
|
featureFlags: "featureFlags";
|
|
10304
10430
|
integrations: "integrations";
|
|
10305
10431
|
ecommerce: "ecommerce";
|
|
10306
10432
|
analytics: "analytics";
|
|
10307
10433
|
cms: "cms";
|
|
10308
|
-
caching: "caching";
|
|
10309
|
-
rateLimit: "rateLimit";
|
|
10310
10434
|
i18n: "i18n";
|
|
10311
|
-
search: "search";
|
|
10312
|
-
vectorDb: "vectorDb";
|
|
10313
|
-
fileStorage: "fileStorage";
|
|
10314
|
-
config: "config";
|
|
10315
|
-
mobile: "mobile";
|
|
10316
|
-
graphql: "graphql";
|
|
10317
|
-
deploy: "deploy";
|
|
10318
|
-
migrations: "migrations";
|
|
10319
|
-
navigation: "navigation";
|
|
10320
|
-
ui: "ui";
|
|
10321
|
-
css: "css";
|
|
10322
|
-
storage: "storage";
|
|
10323
|
-
push: "push";
|
|
10324
|
-
ota: "ota";
|
|
10325
|
-
deepLinking: "deepLinking";
|
|
10326
10435
|
documentation: "documentation";
|
|
10327
10436
|
codeQuality: "codeQuality";
|
|
10328
10437
|
appPlatform: "appPlatform";
|
|
10329
10438
|
dataFetching: "dataFetching";
|
|
10330
10439
|
workspaceTooling: "workspaceTooling";
|
|
10440
|
+
toolchain: "toolchain";
|
|
10441
|
+
workspaceRunner: "workspaceRunner";
|
|
10442
|
+
gitHooks: "gitHooks";
|
|
10443
|
+
staticAnalysis: "staticAnalysis";
|
|
10444
|
+
aiTooling: "aiTooling";
|
|
10445
|
+
codeGeneration: "codeGeneration";
|
|
10446
|
+
developerEnvironment: "developerEnvironment";
|
|
10447
|
+
containerOrchestration: "containerOrchestration";
|
|
10448
|
+
apiGateway: "apiGateway";
|
|
10449
|
+
continuousIntegration: "continuousIntegration";
|
|
10450
|
+
backendUtilities: "backendUtilities";
|
|
10451
|
+
examples: "examples";
|
|
10331
10452
|
language: "language";
|
|
10332
10453
|
buildTool: "buildTool";
|
|
10333
10454
|
cli: "cli";
|
|
10334
10455
|
errorHandling: "errorHandling";
|
|
10335
10456
|
httpClient: "httpClient";
|
|
10336
10457
|
libraries: "libraries";
|
|
10458
|
+
config: "config";
|
|
10337
10459
|
templating: "templating";
|
|
10338
10460
|
cloudSdk: "cloudSdk";
|
|
10339
10461
|
data: "data";
|
|
10340
10462
|
media: "media";
|
|
10341
10463
|
server: "server";
|
|
10464
|
+
packageManager: "packageManager";
|
|
10342
10465
|
messageQueue: "messageQueue";
|
|
10343
10466
|
}>;
|
|
10344
10467
|
toolId: z.ZodString;
|
|
@@ -10400,13 +10523,13 @@ declare function getAllJsonSchemas(): {
|
|
|
10400
10523
|
sequelize: "sequelize";
|
|
10401
10524
|
}>;
|
|
10402
10525
|
backend: z.ZodEnum<{
|
|
10526
|
+
effect: "effect";
|
|
10403
10527
|
none: "none";
|
|
10404
10528
|
hono: "hono";
|
|
10405
10529
|
express: "express";
|
|
10406
10530
|
fastify: "fastify";
|
|
10407
10531
|
elysia: "elysia";
|
|
10408
10532
|
fets: "fets";
|
|
10409
|
-
effect: "effect";
|
|
10410
10533
|
nestjs: "nestjs";
|
|
10411
10534
|
adonisjs: "adonisjs";
|
|
10412
10535
|
nitro: "nitro";
|
|
@@ -10458,6 +10581,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10458
10581
|
skills: "skills";
|
|
10459
10582
|
turborepo: "turborepo";
|
|
10460
10583
|
nx: "nx";
|
|
10584
|
+
"vite-plus": "vite-plus";
|
|
10461
10585
|
fumadocs: "fumadocs";
|
|
10462
10586
|
ultracite: "ultracite";
|
|
10463
10587
|
oxlint: "oxlint";
|
|
@@ -10487,8 +10611,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10487
10611
|
capacitor: "capacitor";
|
|
10488
10612
|
}>>;
|
|
10489
10613
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10490
|
-
none: "none";
|
|
10491
10614
|
ai: "ai";
|
|
10615
|
+
none: "none";
|
|
10492
10616
|
"chat-sdk": "chat-sdk";
|
|
10493
10617
|
"tanstack-showcase": "tanstack-showcase";
|
|
10494
10618
|
}>>;
|
|
@@ -10603,8 +10727,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10603
10727
|
"ai-cli": "ai-cli";
|
|
10604
10728
|
}>;
|
|
10605
10729
|
effect: z.ZodEnum<{
|
|
10606
|
-
none: "none";
|
|
10607
10730
|
effect: "effect";
|
|
10731
|
+
none: "none";
|
|
10608
10732
|
"effect-full": "effect-full";
|
|
10609
10733
|
}>;
|
|
10610
10734
|
stateManagement: z.ZodEnum<{
|
|
@@ -10739,8 +10863,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10739
10863
|
"geist-mono": "geist-mono";
|
|
10740
10864
|
}>>;
|
|
10741
10865
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10742
|
-
none: "none";
|
|
10743
10866
|
default: "default";
|
|
10867
|
+
none: "none";
|
|
10744
10868
|
small: "small";
|
|
10745
10869
|
medium: "medium";
|
|
10746
10870
|
large: "large";
|
|
@@ -10824,6 +10948,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10824
10948
|
plausible: "plausible";
|
|
10825
10949
|
umami: "umami";
|
|
10826
10950
|
ga4: "ga4";
|
|
10951
|
+
"vercel-analytics": "vercel-analytics";
|
|
10827
10952
|
}>;
|
|
10828
10953
|
cms: z.ZodEnum<{
|
|
10829
10954
|
none: "none";
|
|
@@ -10845,6 +10970,11 @@ declare function getAllJsonSchemas(): {
|
|
|
10845
10970
|
arcjet: "arcjet";
|
|
10846
10971
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
10847
10972
|
}>;
|
|
10973
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
10974
|
+
none: "none";
|
|
10975
|
+
botid: "botid";
|
|
10976
|
+
turnstile: "turnstile";
|
|
10977
|
+
}>>;
|
|
10848
10978
|
i18n: z.ZodEnum<{
|
|
10849
10979
|
none: "none";
|
|
10850
10980
|
paraglide: "paraglide";
|
|
@@ -10882,9 +11012,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10882
11012
|
}>;
|
|
10883
11013
|
mobileUI: z.ZodEnum<{
|
|
10884
11014
|
none: "none";
|
|
10885
|
-
uniwind: "uniwind";
|
|
10886
11015
|
tamagui: "tamagui";
|
|
10887
11016
|
"gluestack-ui": "gluestack-ui";
|
|
11017
|
+
uniwind: "uniwind";
|
|
10888
11018
|
unistyles: "unistyles";
|
|
10889
11019
|
}>;
|
|
10890
11020
|
mobileStorage: z.ZodEnum<{
|
|
@@ -11000,12 +11130,12 @@ declare function getAllJsonSchemas(): {
|
|
|
11000
11130
|
ratatui: "ratatui";
|
|
11001
11131
|
}>;
|
|
11002
11132
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
11133
|
+
config: "config";
|
|
11003
11134
|
none: "none";
|
|
11004
11135
|
serde: "serde";
|
|
11005
11136
|
uuid: "uuid";
|
|
11006
11137
|
chrono: "chrono";
|
|
11007
11138
|
reqwest: "reqwest";
|
|
11008
|
-
config: "config";
|
|
11009
11139
|
dashmap: "dashmap";
|
|
11010
11140
|
"parking-lot": "parking-lot";
|
|
11011
11141
|
secrecy: "secrecy";
|
|
@@ -11617,69 +11747,81 @@ declare function getAllJsonSchemas(): {
|
|
|
11617
11747
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11618
11748
|
id: z.ZodString;
|
|
11619
11749
|
role: z.ZodEnum<{
|
|
11620
|
-
|
|
11621
|
-
|
|
11750
|
+
push: "push";
|
|
11751
|
+
frontend: "frontend";
|
|
11752
|
+
backend: "backend";
|
|
11753
|
+
mobile: "mobile";
|
|
11622
11754
|
database: "database";
|
|
11755
|
+
api: "api";
|
|
11756
|
+
graphql: "graphql";
|
|
11623
11757
|
orm: "orm";
|
|
11624
11758
|
auth: "auth";
|
|
11625
|
-
payments: "payments";
|
|
11626
|
-
frontend: "frontend";
|
|
11627
|
-
examples: "examples";
|
|
11628
|
-
packageManager: "packageManager";
|
|
11629
|
-
dbSetup: "dbSetup";
|
|
11630
|
-
backend: "backend";
|
|
11631
11759
|
runtime: "runtime";
|
|
11632
|
-
|
|
11633
|
-
|
|
11634
|
-
|
|
11635
|
-
testing: "testing";
|
|
11636
|
-
email: "email";
|
|
11637
|
-
validation: "validation";
|
|
11760
|
+
deploy: "deploy";
|
|
11761
|
+
dbSetup: "dbSetup";
|
|
11762
|
+
migrations: "migrations";
|
|
11638
11763
|
realtime: "realtime";
|
|
11764
|
+
navigation: "navigation";
|
|
11765
|
+
caching: "caching";
|
|
11766
|
+
observability: "observability";
|
|
11767
|
+
email: "email";
|
|
11768
|
+
search: "search";
|
|
11769
|
+
vectorDb: "vectorDb";
|
|
11770
|
+
fileStorage: "fileStorage";
|
|
11639
11771
|
jobQueue: "jobQueue";
|
|
11772
|
+
rateLimit: "rateLimit";
|
|
11773
|
+
botProtection: "botProtection";
|
|
11774
|
+
testing: "testing";
|
|
11775
|
+
stateManagement: "stateManagement";
|
|
11776
|
+
forms: "forms";
|
|
11640
11777
|
animation: "animation";
|
|
11641
11778
|
fileUpload: "fileUpload";
|
|
11779
|
+
validation: "validation";
|
|
11780
|
+
effect: "effect";
|
|
11781
|
+
ui: "ui";
|
|
11782
|
+
css: "css";
|
|
11783
|
+
storage: "storage";
|
|
11784
|
+
ota: "ota";
|
|
11785
|
+
deepLinking: "deepLinking";
|
|
11786
|
+
ai: "ai";
|
|
11787
|
+
payments: "payments";
|
|
11642
11788
|
logging: "logging";
|
|
11643
|
-
observability: "observability";
|
|
11644
11789
|
featureFlags: "featureFlags";
|
|
11645
11790
|
integrations: "integrations";
|
|
11646
11791
|
ecommerce: "ecommerce";
|
|
11647
11792
|
analytics: "analytics";
|
|
11648
11793
|
cms: "cms";
|
|
11649
|
-
caching: "caching";
|
|
11650
|
-
rateLimit: "rateLimit";
|
|
11651
11794
|
i18n: "i18n";
|
|
11652
|
-
search: "search";
|
|
11653
|
-
vectorDb: "vectorDb";
|
|
11654
|
-
fileStorage: "fileStorage";
|
|
11655
|
-
config: "config";
|
|
11656
|
-
mobile: "mobile";
|
|
11657
|
-
graphql: "graphql";
|
|
11658
|
-
deploy: "deploy";
|
|
11659
|
-
migrations: "migrations";
|
|
11660
|
-
navigation: "navigation";
|
|
11661
|
-
ui: "ui";
|
|
11662
|
-
css: "css";
|
|
11663
|
-
storage: "storage";
|
|
11664
|
-
push: "push";
|
|
11665
|
-
ota: "ota";
|
|
11666
|
-
deepLinking: "deepLinking";
|
|
11667
11795
|
documentation: "documentation";
|
|
11668
11796
|
codeQuality: "codeQuality";
|
|
11669
11797
|
appPlatform: "appPlatform";
|
|
11670
11798
|
dataFetching: "dataFetching";
|
|
11671
11799
|
workspaceTooling: "workspaceTooling";
|
|
11800
|
+
toolchain: "toolchain";
|
|
11801
|
+
workspaceRunner: "workspaceRunner";
|
|
11802
|
+
gitHooks: "gitHooks";
|
|
11803
|
+
staticAnalysis: "staticAnalysis";
|
|
11804
|
+
aiTooling: "aiTooling";
|
|
11805
|
+
codeGeneration: "codeGeneration";
|
|
11806
|
+
developerEnvironment: "developerEnvironment";
|
|
11807
|
+
containerOrchestration: "containerOrchestration";
|
|
11808
|
+
apiGateway: "apiGateway";
|
|
11809
|
+
continuousIntegration: "continuousIntegration";
|
|
11810
|
+
backendUtilities: "backendUtilities";
|
|
11811
|
+
examples: "examples";
|
|
11672
11812
|
language: "language";
|
|
11673
11813
|
buildTool: "buildTool";
|
|
11674
11814
|
cli: "cli";
|
|
11675
11815
|
errorHandling: "errorHandling";
|
|
11676
11816
|
httpClient: "httpClient";
|
|
11677
11817
|
libraries: "libraries";
|
|
11818
|
+
config: "config";
|
|
11678
11819
|
templating: "templating";
|
|
11679
11820
|
cloudSdk: "cloudSdk";
|
|
11680
11821
|
data: "data";
|
|
11681
11822
|
media: "media";
|
|
11682
11823
|
server: "server";
|
|
11824
|
+
packageManager: "packageManager";
|
|
11683
11825
|
messageQueue: "messageQueue";
|
|
11684
11826
|
}>;
|
|
11685
11827
|
toolId: z.ZodString;
|
|
@@ -11741,13 +11883,13 @@ declare function getAllJsonSchemas(): {
|
|
|
11741
11883
|
sequelize: "sequelize";
|
|
11742
11884
|
}>;
|
|
11743
11885
|
backend: z.ZodEnum<{
|
|
11886
|
+
effect: "effect";
|
|
11744
11887
|
none: "none";
|
|
11745
11888
|
hono: "hono";
|
|
11746
11889
|
express: "express";
|
|
11747
11890
|
fastify: "fastify";
|
|
11748
11891
|
elysia: "elysia";
|
|
11749
11892
|
fets: "fets";
|
|
11750
|
-
effect: "effect";
|
|
11751
11893
|
nestjs: "nestjs";
|
|
11752
11894
|
adonisjs: "adonisjs";
|
|
11753
11895
|
nitro: "nitro";
|
|
@@ -11799,6 +11941,7 @@ declare function getAllJsonSchemas(): {
|
|
|
11799
11941
|
skills: "skills";
|
|
11800
11942
|
turborepo: "turborepo";
|
|
11801
11943
|
nx: "nx";
|
|
11944
|
+
"vite-plus": "vite-plus";
|
|
11802
11945
|
fumadocs: "fumadocs";
|
|
11803
11946
|
ultracite: "ultracite";
|
|
11804
11947
|
oxlint: "oxlint";
|
|
@@ -11828,8 +11971,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11828
11971
|
capacitor: "capacitor";
|
|
11829
11972
|
}>>;
|
|
11830
11973
|
examples: z.ZodArray<z.ZodEnum<{
|
|
11831
|
-
none: "none";
|
|
11832
11974
|
ai: "ai";
|
|
11975
|
+
none: "none";
|
|
11833
11976
|
"chat-sdk": "chat-sdk";
|
|
11834
11977
|
"tanstack-showcase": "tanstack-showcase";
|
|
11835
11978
|
}>>;
|
|
@@ -11944,8 +12087,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11944
12087
|
"ai-cli": "ai-cli";
|
|
11945
12088
|
}>;
|
|
11946
12089
|
effect: z.ZodEnum<{
|
|
11947
|
-
none: "none";
|
|
11948
12090
|
effect: "effect";
|
|
12091
|
+
none: "none";
|
|
11949
12092
|
"effect-full": "effect-full";
|
|
11950
12093
|
}>;
|
|
11951
12094
|
stateManagement: z.ZodEnum<{
|
|
@@ -12080,8 +12223,8 @@ declare function getAllJsonSchemas(): {
|
|
|
12080
12223
|
"geist-mono": "geist-mono";
|
|
12081
12224
|
}>>;
|
|
12082
12225
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
12083
|
-
none: "none";
|
|
12084
12226
|
default: "default";
|
|
12227
|
+
none: "none";
|
|
12085
12228
|
small: "small";
|
|
12086
12229
|
medium: "medium";
|
|
12087
12230
|
large: "large";
|
|
@@ -12165,6 +12308,7 @@ declare function getAllJsonSchemas(): {
|
|
|
12165
12308
|
plausible: "plausible";
|
|
12166
12309
|
umami: "umami";
|
|
12167
12310
|
ga4: "ga4";
|
|
12311
|
+
"vercel-analytics": "vercel-analytics";
|
|
12168
12312
|
}>;
|
|
12169
12313
|
cms: z.ZodEnum<{
|
|
12170
12314
|
none: "none";
|
|
@@ -12186,6 +12330,11 @@ declare function getAllJsonSchemas(): {
|
|
|
12186
12330
|
arcjet: "arcjet";
|
|
12187
12331
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
12188
12332
|
}>;
|
|
12333
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
12334
|
+
none: "none";
|
|
12335
|
+
botid: "botid";
|
|
12336
|
+
turnstile: "turnstile";
|
|
12337
|
+
}>>;
|
|
12189
12338
|
i18n: z.ZodEnum<{
|
|
12190
12339
|
none: "none";
|
|
12191
12340
|
paraglide: "paraglide";
|
|
@@ -12223,9 +12372,9 @@ declare function getAllJsonSchemas(): {
|
|
|
12223
12372
|
}>;
|
|
12224
12373
|
mobileUI: z.ZodEnum<{
|
|
12225
12374
|
none: "none";
|
|
12226
|
-
uniwind: "uniwind";
|
|
12227
12375
|
tamagui: "tamagui";
|
|
12228
12376
|
"gluestack-ui": "gluestack-ui";
|
|
12377
|
+
uniwind: "uniwind";
|
|
12229
12378
|
unistyles: "unistyles";
|
|
12230
12379
|
}>;
|
|
12231
12380
|
mobileStorage: z.ZodEnum<{
|
|
@@ -12341,12 +12490,12 @@ declare function getAllJsonSchemas(): {
|
|
|
12341
12490
|
ratatui: "ratatui";
|
|
12342
12491
|
}>;
|
|
12343
12492
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
12493
|
+
config: "config";
|
|
12344
12494
|
none: "none";
|
|
12345
12495
|
serde: "serde";
|
|
12346
12496
|
uuid: "uuid";
|
|
12347
12497
|
chrono: "chrono";
|
|
12348
12498
|
reqwest: "reqwest";
|
|
12349
|
-
config: "config";
|
|
12350
12499
|
dashmap: "dashmap";
|
|
12351
12500
|
"parking-lot": "parking-lot";
|
|
12352
12501
|
secrecy: "secrecy";
|
|
@@ -12958,69 +13107,81 @@ declare function getAllJsonSchemas(): {
|
|
|
12958
13107
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12959
13108
|
id: z.ZodString;
|
|
12960
13109
|
role: z.ZodEnum<{
|
|
12961
|
-
|
|
12962
|
-
|
|
13110
|
+
push: "push";
|
|
13111
|
+
frontend: "frontend";
|
|
13112
|
+
backend: "backend";
|
|
13113
|
+
mobile: "mobile";
|
|
12963
13114
|
database: "database";
|
|
13115
|
+
api: "api";
|
|
13116
|
+
graphql: "graphql";
|
|
12964
13117
|
orm: "orm";
|
|
12965
13118
|
auth: "auth";
|
|
12966
|
-
payments: "payments";
|
|
12967
|
-
frontend: "frontend";
|
|
12968
|
-
examples: "examples";
|
|
12969
|
-
packageManager: "packageManager";
|
|
12970
|
-
dbSetup: "dbSetup";
|
|
12971
|
-
backend: "backend";
|
|
12972
13119
|
runtime: "runtime";
|
|
12973
|
-
|
|
12974
|
-
|
|
12975
|
-
|
|
12976
|
-
testing: "testing";
|
|
12977
|
-
email: "email";
|
|
12978
|
-
validation: "validation";
|
|
13120
|
+
deploy: "deploy";
|
|
13121
|
+
dbSetup: "dbSetup";
|
|
13122
|
+
migrations: "migrations";
|
|
12979
13123
|
realtime: "realtime";
|
|
13124
|
+
navigation: "navigation";
|
|
13125
|
+
caching: "caching";
|
|
13126
|
+
observability: "observability";
|
|
13127
|
+
email: "email";
|
|
13128
|
+
search: "search";
|
|
13129
|
+
vectorDb: "vectorDb";
|
|
13130
|
+
fileStorage: "fileStorage";
|
|
12980
13131
|
jobQueue: "jobQueue";
|
|
13132
|
+
rateLimit: "rateLimit";
|
|
13133
|
+
botProtection: "botProtection";
|
|
13134
|
+
testing: "testing";
|
|
13135
|
+
stateManagement: "stateManagement";
|
|
13136
|
+
forms: "forms";
|
|
12981
13137
|
animation: "animation";
|
|
12982
13138
|
fileUpload: "fileUpload";
|
|
13139
|
+
validation: "validation";
|
|
13140
|
+
effect: "effect";
|
|
13141
|
+
ui: "ui";
|
|
13142
|
+
css: "css";
|
|
13143
|
+
storage: "storage";
|
|
13144
|
+
ota: "ota";
|
|
13145
|
+
deepLinking: "deepLinking";
|
|
13146
|
+
ai: "ai";
|
|
13147
|
+
payments: "payments";
|
|
12983
13148
|
logging: "logging";
|
|
12984
|
-
observability: "observability";
|
|
12985
13149
|
featureFlags: "featureFlags";
|
|
12986
13150
|
integrations: "integrations";
|
|
12987
13151
|
ecommerce: "ecommerce";
|
|
12988
13152
|
analytics: "analytics";
|
|
12989
13153
|
cms: "cms";
|
|
12990
|
-
caching: "caching";
|
|
12991
|
-
rateLimit: "rateLimit";
|
|
12992
13154
|
i18n: "i18n";
|
|
12993
|
-
search: "search";
|
|
12994
|
-
vectorDb: "vectorDb";
|
|
12995
|
-
fileStorage: "fileStorage";
|
|
12996
|
-
config: "config";
|
|
12997
|
-
mobile: "mobile";
|
|
12998
|
-
graphql: "graphql";
|
|
12999
|
-
deploy: "deploy";
|
|
13000
|
-
migrations: "migrations";
|
|
13001
|
-
navigation: "navigation";
|
|
13002
|
-
ui: "ui";
|
|
13003
|
-
css: "css";
|
|
13004
|
-
storage: "storage";
|
|
13005
|
-
push: "push";
|
|
13006
|
-
ota: "ota";
|
|
13007
|
-
deepLinking: "deepLinking";
|
|
13008
13155
|
documentation: "documentation";
|
|
13009
13156
|
codeQuality: "codeQuality";
|
|
13010
13157
|
appPlatform: "appPlatform";
|
|
13011
13158
|
dataFetching: "dataFetching";
|
|
13012
13159
|
workspaceTooling: "workspaceTooling";
|
|
13160
|
+
toolchain: "toolchain";
|
|
13161
|
+
workspaceRunner: "workspaceRunner";
|
|
13162
|
+
gitHooks: "gitHooks";
|
|
13163
|
+
staticAnalysis: "staticAnalysis";
|
|
13164
|
+
aiTooling: "aiTooling";
|
|
13165
|
+
codeGeneration: "codeGeneration";
|
|
13166
|
+
developerEnvironment: "developerEnvironment";
|
|
13167
|
+
containerOrchestration: "containerOrchestration";
|
|
13168
|
+
apiGateway: "apiGateway";
|
|
13169
|
+
continuousIntegration: "continuousIntegration";
|
|
13170
|
+
backendUtilities: "backendUtilities";
|
|
13171
|
+
examples: "examples";
|
|
13013
13172
|
language: "language";
|
|
13014
13173
|
buildTool: "buildTool";
|
|
13015
13174
|
cli: "cli";
|
|
13016
13175
|
errorHandling: "errorHandling";
|
|
13017
13176
|
httpClient: "httpClient";
|
|
13018
13177
|
libraries: "libraries";
|
|
13178
|
+
config: "config";
|
|
13019
13179
|
templating: "templating";
|
|
13020
13180
|
cloudSdk: "cloudSdk";
|
|
13021
13181
|
data: "data";
|
|
13022
13182
|
media: "media";
|
|
13023
13183
|
server: "server";
|
|
13184
|
+
packageManager: "packageManager";
|
|
13024
13185
|
messageQueue: "messageQueue";
|
|
13025
13186
|
}>;
|
|
13026
13187
|
toolId: z.ZodString;
|
|
@@ -13083,13 +13244,13 @@ declare function getAllJsonSchemas(): {
|
|
|
13083
13244
|
sequelize: "sequelize";
|
|
13084
13245
|
}>;
|
|
13085
13246
|
backend: z.ZodEnum<{
|
|
13247
|
+
effect: "effect";
|
|
13086
13248
|
none: "none";
|
|
13087
13249
|
hono: "hono";
|
|
13088
13250
|
express: "express";
|
|
13089
13251
|
fastify: "fastify";
|
|
13090
13252
|
elysia: "elysia";
|
|
13091
13253
|
fets: "fets";
|
|
13092
|
-
effect: "effect";
|
|
13093
13254
|
nestjs: "nestjs";
|
|
13094
13255
|
adonisjs: "adonisjs";
|
|
13095
13256
|
nitro: "nitro";
|
|
@@ -13141,6 +13302,7 @@ declare function getAllJsonSchemas(): {
|
|
|
13141
13302
|
skills: "skills";
|
|
13142
13303
|
turborepo: "turborepo";
|
|
13143
13304
|
nx: "nx";
|
|
13305
|
+
"vite-plus": "vite-plus";
|
|
13144
13306
|
fumadocs: "fumadocs";
|
|
13145
13307
|
ultracite: "ultracite";
|
|
13146
13308
|
oxlint: "oxlint";
|
|
@@ -13170,8 +13332,8 @@ declare function getAllJsonSchemas(): {
|
|
|
13170
13332
|
capacitor: "capacitor";
|
|
13171
13333
|
}>>;
|
|
13172
13334
|
examples: z.ZodArray<z.ZodEnum<{
|
|
13173
|
-
none: "none";
|
|
13174
13335
|
ai: "ai";
|
|
13336
|
+
none: "none";
|
|
13175
13337
|
"chat-sdk": "chat-sdk";
|
|
13176
13338
|
"tanstack-showcase": "tanstack-showcase";
|
|
13177
13339
|
}>>;
|
|
@@ -13288,8 +13450,8 @@ declare function getAllJsonSchemas(): {
|
|
|
13288
13450
|
"ai-cli": "ai-cli";
|
|
13289
13451
|
}>;
|
|
13290
13452
|
effect: z.ZodEnum<{
|
|
13291
|
-
none: "none";
|
|
13292
13453
|
effect: "effect";
|
|
13454
|
+
none: "none";
|
|
13293
13455
|
"effect-full": "effect-full";
|
|
13294
13456
|
}>;
|
|
13295
13457
|
stateManagement: z.ZodEnum<{
|
|
@@ -13424,8 +13586,8 @@ declare function getAllJsonSchemas(): {
|
|
|
13424
13586
|
"geist-mono": "geist-mono";
|
|
13425
13587
|
}>>;
|
|
13426
13588
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
13427
|
-
none: "none";
|
|
13428
13589
|
default: "default";
|
|
13590
|
+
none: "none";
|
|
13429
13591
|
small: "small";
|
|
13430
13592
|
medium: "medium";
|
|
13431
13593
|
large: "large";
|
|
@@ -13509,6 +13671,7 @@ declare function getAllJsonSchemas(): {
|
|
|
13509
13671
|
plausible: "plausible";
|
|
13510
13672
|
umami: "umami";
|
|
13511
13673
|
ga4: "ga4";
|
|
13674
|
+
"vercel-analytics": "vercel-analytics";
|
|
13512
13675
|
}>;
|
|
13513
13676
|
cms: z.ZodEnum<{
|
|
13514
13677
|
none: "none";
|
|
@@ -13530,6 +13693,11 @@ declare function getAllJsonSchemas(): {
|
|
|
13530
13693
|
arcjet: "arcjet";
|
|
13531
13694
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
13532
13695
|
}>;
|
|
13696
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
13697
|
+
none: "none";
|
|
13698
|
+
botid: "botid";
|
|
13699
|
+
turnstile: "turnstile";
|
|
13700
|
+
}>>;
|
|
13533
13701
|
i18n: z.ZodEnum<{
|
|
13534
13702
|
none: "none";
|
|
13535
13703
|
paraglide: "paraglide";
|
|
@@ -13567,9 +13735,9 @@ declare function getAllJsonSchemas(): {
|
|
|
13567
13735
|
}>;
|
|
13568
13736
|
mobileUI: z.ZodEnum<{
|
|
13569
13737
|
none: "none";
|
|
13570
|
-
uniwind: "uniwind";
|
|
13571
13738
|
tamagui: "tamagui";
|
|
13572
13739
|
"gluestack-ui": "gluestack-ui";
|
|
13740
|
+
uniwind: "uniwind";
|
|
13573
13741
|
unistyles: "unistyles";
|
|
13574
13742
|
}>;
|
|
13575
13743
|
mobileStorage: z.ZodEnum<{
|
|
@@ -13685,12 +13853,12 @@ declare function getAllJsonSchemas(): {
|
|
|
13685
13853
|
ratatui: "ratatui";
|
|
13686
13854
|
}>;
|
|
13687
13855
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
13856
|
+
config: "config";
|
|
13688
13857
|
none: "none";
|
|
13689
13858
|
serde: "serde";
|
|
13690
13859
|
uuid: "uuid";
|
|
13691
13860
|
chrono: "chrono";
|
|
13692
13861
|
reqwest: "reqwest";
|
|
13693
|
-
config: "config";
|
|
13694
13862
|
dashmap: "dashmap";
|
|
13695
13863
|
"parking-lot": "parking-lot";
|
|
13696
13864
|
secrecy: "secrecy";
|
|
@@ -14302,69 +14470,81 @@ declare function getAllJsonSchemas(): {
|
|
|
14302
14470
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14303
14471
|
id: z.ZodString;
|
|
14304
14472
|
role: z.ZodEnum<{
|
|
14305
|
-
|
|
14306
|
-
|
|
14473
|
+
push: "push";
|
|
14474
|
+
frontend: "frontend";
|
|
14475
|
+
backend: "backend";
|
|
14476
|
+
mobile: "mobile";
|
|
14307
14477
|
database: "database";
|
|
14478
|
+
api: "api";
|
|
14479
|
+
graphql: "graphql";
|
|
14308
14480
|
orm: "orm";
|
|
14309
14481
|
auth: "auth";
|
|
14310
|
-
payments: "payments";
|
|
14311
|
-
frontend: "frontend";
|
|
14312
|
-
examples: "examples";
|
|
14313
|
-
packageManager: "packageManager";
|
|
14314
|
-
dbSetup: "dbSetup";
|
|
14315
|
-
backend: "backend";
|
|
14316
14482
|
runtime: "runtime";
|
|
14317
|
-
|
|
14318
|
-
|
|
14319
|
-
|
|
14320
|
-
testing: "testing";
|
|
14321
|
-
email: "email";
|
|
14322
|
-
validation: "validation";
|
|
14483
|
+
deploy: "deploy";
|
|
14484
|
+
dbSetup: "dbSetup";
|
|
14485
|
+
migrations: "migrations";
|
|
14323
14486
|
realtime: "realtime";
|
|
14487
|
+
navigation: "navigation";
|
|
14488
|
+
caching: "caching";
|
|
14489
|
+
observability: "observability";
|
|
14490
|
+
email: "email";
|
|
14491
|
+
search: "search";
|
|
14492
|
+
vectorDb: "vectorDb";
|
|
14493
|
+
fileStorage: "fileStorage";
|
|
14324
14494
|
jobQueue: "jobQueue";
|
|
14495
|
+
rateLimit: "rateLimit";
|
|
14496
|
+
botProtection: "botProtection";
|
|
14497
|
+
testing: "testing";
|
|
14498
|
+
stateManagement: "stateManagement";
|
|
14499
|
+
forms: "forms";
|
|
14325
14500
|
animation: "animation";
|
|
14326
14501
|
fileUpload: "fileUpload";
|
|
14502
|
+
validation: "validation";
|
|
14503
|
+
effect: "effect";
|
|
14504
|
+
ui: "ui";
|
|
14505
|
+
css: "css";
|
|
14506
|
+
storage: "storage";
|
|
14507
|
+
ota: "ota";
|
|
14508
|
+
deepLinking: "deepLinking";
|
|
14509
|
+
ai: "ai";
|
|
14510
|
+
payments: "payments";
|
|
14327
14511
|
logging: "logging";
|
|
14328
|
-
observability: "observability";
|
|
14329
14512
|
featureFlags: "featureFlags";
|
|
14330
14513
|
integrations: "integrations";
|
|
14331
14514
|
ecommerce: "ecommerce";
|
|
14332
14515
|
analytics: "analytics";
|
|
14333
14516
|
cms: "cms";
|
|
14334
|
-
caching: "caching";
|
|
14335
|
-
rateLimit: "rateLimit";
|
|
14336
14517
|
i18n: "i18n";
|
|
14337
|
-
search: "search";
|
|
14338
|
-
vectorDb: "vectorDb";
|
|
14339
|
-
fileStorage: "fileStorage";
|
|
14340
|
-
config: "config";
|
|
14341
|
-
mobile: "mobile";
|
|
14342
|
-
graphql: "graphql";
|
|
14343
|
-
deploy: "deploy";
|
|
14344
|
-
migrations: "migrations";
|
|
14345
|
-
navigation: "navigation";
|
|
14346
|
-
ui: "ui";
|
|
14347
|
-
css: "css";
|
|
14348
|
-
storage: "storage";
|
|
14349
|
-
push: "push";
|
|
14350
|
-
ota: "ota";
|
|
14351
|
-
deepLinking: "deepLinking";
|
|
14352
14518
|
documentation: "documentation";
|
|
14353
14519
|
codeQuality: "codeQuality";
|
|
14354
14520
|
appPlatform: "appPlatform";
|
|
14355
14521
|
dataFetching: "dataFetching";
|
|
14356
14522
|
workspaceTooling: "workspaceTooling";
|
|
14523
|
+
toolchain: "toolchain";
|
|
14524
|
+
workspaceRunner: "workspaceRunner";
|
|
14525
|
+
gitHooks: "gitHooks";
|
|
14526
|
+
staticAnalysis: "staticAnalysis";
|
|
14527
|
+
aiTooling: "aiTooling";
|
|
14528
|
+
codeGeneration: "codeGeneration";
|
|
14529
|
+
developerEnvironment: "developerEnvironment";
|
|
14530
|
+
containerOrchestration: "containerOrchestration";
|
|
14531
|
+
apiGateway: "apiGateway";
|
|
14532
|
+
continuousIntegration: "continuousIntegration";
|
|
14533
|
+
backendUtilities: "backendUtilities";
|
|
14534
|
+
examples: "examples";
|
|
14357
14535
|
language: "language";
|
|
14358
14536
|
buildTool: "buildTool";
|
|
14359
14537
|
cli: "cli";
|
|
14360
14538
|
errorHandling: "errorHandling";
|
|
14361
14539
|
httpClient: "httpClient";
|
|
14362
14540
|
libraries: "libraries";
|
|
14541
|
+
config: "config";
|
|
14363
14542
|
templating: "templating";
|
|
14364
14543
|
cloudSdk: "cloudSdk";
|
|
14365
14544
|
data: "data";
|
|
14366
14545
|
media: "media";
|
|
14367
14546
|
server: "server";
|
|
14547
|
+
packageManager: "packageManager";
|
|
14368
14548
|
messageQueue: "messageQueue";
|
|
14369
14549
|
}>;
|
|
14370
14550
|
toolId: z.ZodString;
|