@better-fullstack/types 2.1.5 → 2.1.7
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-azh56xa4.d.mts → defaults-Cpkx-Eu7.d.mts} +2 -2
- package/dist/defaults-Cpkx-Eu7.d.mts.map +1 -0
- package/dist/{defaults-u9UAambo.mjs → defaults-DNnZX9er.mjs} +2 -1
- package/dist/defaults-DNnZX9er.mjs.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +180 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1560 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +296 -12
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-ZxRzd5TP.mjs → schemas-BXDvWDRp.mjs} +52 -10
- package/dist/schemas-BXDvWDRp.mjs.map +1 -0
- package/dist/{schemas-C3iF9TRm.d.mts → schemas-DOb4t_el.d.mts} +301 -27
- package/dist/schemas-DOb4t_el.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-CiXONkqh.d.mts → stack-graph-0MDSuSPQ.d.mts} +2 -2
- package/dist/stack-graph-0MDSuSPQ.d.mts.map +1 -0
- package/dist/{stack-graph-BwtoYnJg.mjs → stack-graph-BAad0vv4.mjs} +48 -10
- package/dist/stack-graph-BAad0vv4.mjs.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-BNwlAM1B.d.mts → stack-translation-Dau06ig9.d.mts} +19 -11
- package/dist/stack-translation-Dau06ig9.d.mts.map +1 -0
- package/dist/{stack-translation-DNT-iMAE.mjs → stack-translation-DncO452_.mjs} +280 -33
- package/dist/stack-translation-DncO452_.mjs.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{types-BG-DsHQ9.d.mts → types-CcWal512.d.mts} +5 -3
- package/dist/types-CcWal512.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +1 -1
- package/dist/defaults-azh56xa4.d.mts.map +0 -1
- package/dist/defaults-u9UAambo.mjs.map +0 -1
- package/dist/schemas-C3iF9TRm.d.mts.map +0 -1
- package/dist/schemas-ZxRzd5TP.mjs.map +0 -1
- package/dist/stack-graph-BwtoYnJg.mjs.map +0 -1
- package/dist/stack-graph-CiXONkqh.d.mts.map +0 -1
- package/dist/stack-translation-BNwlAM1B.d.mts.map +0 -1
- package/dist/stack-translation-DNT-iMAE.mjs.map +0 -1
- package/dist/types-BG-DsHQ9.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -21,6 +21,7 @@ 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";
|
|
@@ -141,11 +142,15 @@ declare function getAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodE
|
|
|
141
142
|
}>>;
|
|
142
143
|
declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
143
144
|
none: "none";
|
|
145
|
+
revenuecat: "revenuecat";
|
|
144
146
|
polar: "polar";
|
|
145
147
|
stripe: "stripe";
|
|
146
148
|
"lemon-squeezy": "lemon-squeezy";
|
|
147
149
|
paddle: "paddle";
|
|
148
150
|
dodo: "dodo";
|
|
151
|
+
creem: "creem";
|
|
152
|
+
autumn: "autumn";
|
|
153
|
+
commet: "commet";
|
|
149
154
|
}>>;
|
|
150
155
|
declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
151
156
|
none: "none";
|
|
@@ -181,6 +186,7 @@ declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
181
186
|
mern: "mern";
|
|
182
187
|
pern: "pern";
|
|
183
188
|
t3: "t3";
|
|
189
|
+
saas: "saas";
|
|
184
190
|
}>>;
|
|
185
191
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
186
192
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -190,6 +196,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
190
196
|
mern: "mern";
|
|
191
197
|
pern: "pern";
|
|
192
198
|
t3: "t3";
|
|
199
|
+
saas: "saas";
|
|
193
200
|
}>>;
|
|
194
201
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
195
202
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -240,11 +247,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
240
247
|
}>>;
|
|
241
248
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
242
249
|
none: "none";
|
|
250
|
+
revenuecat: "revenuecat";
|
|
243
251
|
polar: "polar";
|
|
244
252
|
stripe: "stripe";
|
|
245
253
|
"lemon-squeezy": "lemon-squeezy";
|
|
246
254
|
paddle: "paddle";
|
|
247
255
|
dodo: "dodo";
|
|
256
|
+
creem: "creem";
|
|
257
|
+
autumn: "autumn";
|
|
258
|
+
commet: "commet";
|
|
248
259
|
}>>;
|
|
249
260
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
250
261
|
none: "none";
|
|
@@ -311,6 +322,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
311
322
|
pnpm: "pnpm";
|
|
312
323
|
yarn: "yarn";
|
|
313
324
|
}>>;
|
|
325
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
326
|
+
monorepo: "monorepo";
|
|
327
|
+
"single-app": "single-app";
|
|
328
|
+
}>>;
|
|
314
329
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
315
330
|
stable: "stable";
|
|
316
331
|
latest: "latest";
|
|
@@ -330,6 +345,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
330
345
|
docker: "docker";
|
|
331
346
|
}>>;
|
|
332
347
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
348
|
+
effect: "effect";
|
|
333
349
|
none: "none";
|
|
334
350
|
hono: "hono";
|
|
335
351
|
express: "express";
|
|
@@ -617,6 +633,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
617
633
|
}>>;
|
|
618
634
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
619
635
|
none: "none";
|
|
636
|
+
posthog: "posthog";
|
|
620
637
|
plausible: "plausible";
|
|
621
638
|
umami: "umami";
|
|
622
639
|
}>>;
|
|
@@ -631,6 +648,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
631
648
|
}>>;
|
|
632
649
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
633
650
|
none: "none";
|
|
651
|
+
redis: "redis";
|
|
634
652
|
"upstash-redis": "upstash-redis";
|
|
635
653
|
}>>;
|
|
636
654
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -643,6 +661,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
643
661
|
paraglide: "paraglide";
|
|
644
662
|
i18next: "i18next";
|
|
645
663
|
"next-intl": "next-intl";
|
|
664
|
+
intlayer: "intlayer";
|
|
646
665
|
}>>;
|
|
647
666
|
search: z.ZodOptional<z.ZodEnum<{
|
|
648
667
|
none: "none";
|
|
@@ -651,6 +670,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
651
670
|
elasticsearch: "elasticsearch";
|
|
652
671
|
opensearch: "opensearch";
|
|
653
672
|
algolia: "algolia";
|
|
673
|
+
bleve: "bleve";
|
|
654
674
|
}>>;
|
|
655
675
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
656
676
|
none: "none";
|
|
@@ -664,6 +684,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
664
684
|
s3: "s3";
|
|
665
685
|
r2: "r2";
|
|
666
686
|
cloudinary: "cloudinary";
|
|
687
|
+
"supabase-storage": "supabase-storage";
|
|
667
688
|
}>>;
|
|
668
689
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
669
690
|
none: "none";
|
|
@@ -704,6 +725,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
704
725
|
axum: "axum";
|
|
705
726
|
"actix-web": "actix-web";
|
|
706
727
|
rocket: "rocket";
|
|
728
|
+
poem: "poem";
|
|
729
|
+
loco: "loco";
|
|
707
730
|
}>>;
|
|
708
731
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
709
732
|
none: "none";
|
|
@@ -876,9 +899,11 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
876
899
|
echo: "echo";
|
|
877
900
|
fiber: "fiber";
|
|
878
901
|
chi: "chi";
|
|
902
|
+
stdlib: "stdlib";
|
|
879
903
|
}>>;
|
|
880
904
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
881
905
|
none: "none";
|
|
906
|
+
bun: "bun";
|
|
882
907
|
gorm: "gorm";
|
|
883
908
|
sqlc: "sqlc";
|
|
884
909
|
ent: "ent";
|
|
@@ -936,10 +961,15 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
936
961
|
none: "none";
|
|
937
962
|
opentelemetry: "opentelemetry";
|
|
938
963
|
}>>;
|
|
964
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
965
|
+
java: "java";
|
|
966
|
+
kotlin: "kotlin";
|
|
967
|
+
}>>;
|
|
939
968
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
940
969
|
none: "none";
|
|
941
970
|
"spring-boot": "spring-boot";
|
|
942
971
|
quarkus: "quarkus";
|
|
972
|
+
micronaut: "micronaut";
|
|
943
973
|
}>>;
|
|
944
974
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
945
975
|
none: "none";
|
|
@@ -960,10 +990,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
960
990
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
961
991
|
none: "none";
|
|
962
992
|
"spring-graphql": "spring-graphql";
|
|
993
|
+
"openapi-generator": "openapi-generator";
|
|
994
|
+
grpc: "grpc";
|
|
963
995
|
}>>;
|
|
964
996
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
965
997
|
none: "none";
|
|
966
998
|
logback: "logback";
|
|
999
|
+
log4j2: "log4j2";
|
|
967
1000
|
}>>;
|
|
968
1001
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
969
1002
|
none: "none";
|
|
@@ -1080,9 +1113,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
1080
1113
|
}>>;
|
|
1081
1114
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
1082
1115
|
none: "none";
|
|
1116
|
+
grpc: "grpc";
|
|
1083
1117
|
rest: "rest";
|
|
1084
1118
|
absinthe: "absinthe";
|
|
1085
|
-
grpc: "grpc";
|
|
1086
1119
|
}>>;
|
|
1087
1120
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
1088
1121
|
none: "none";
|
|
@@ -1192,6 +1225,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1192
1225
|
sequelize: "sequelize";
|
|
1193
1226
|
}>;
|
|
1194
1227
|
backend: z.ZodEnum<{
|
|
1228
|
+
effect: "effect";
|
|
1195
1229
|
none: "none";
|
|
1196
1230
|
hono: "hono";
|
|
1197
1231
|
express: "express";
|
|
@@ -1284,11 +1318,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1284
1318
|
}>;
|
|
1285
1319
|
payments: z.ZodEnum<{
|
|
1286
1320
|
none: "none";
|
|
1321
|
+
revenuecat: "revenuecat";
|
|
1287
1322
|
polar: "polar";
|
|
1288
1323
|
stripe: "stripe";
|
|
1289
1324
|
"lemon-squeezy": "lemon-squeezy";
|
|
1290
1325
|
paddle: "paddle";
|
|
1291
1326
|
dodo: "dodo";
|
|
1327
|
+
creem: "creem";
|
|
1328
|
+
autumn: "autumn";
|
|
1329
|
+
commet: "commet";
|
|
1292
1330
|
}>;
|
|
1293
1331
|
git: z.ZodBoolean;
|
|
1294
1332
|
packageManager: z.ZodEnum<{
|
|
@@ -1297,6 +1335,10 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1297
1335
|
pnpm: "pnpm";
|
|
1298
1336
|
yarn: "yarn";
|
|
1299
1337
|
}>;
|
|
1338
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
1339
|
+
monorepo: "monorepo";
|
|
1340
|
+
"single-app": "single-app";
|
|
1341
|
+
}>>;
|
|
1300
1342
|
versionChannel: z.ZodEnum<{
|
|
1301
1343
|
stable: "stable";
|
|
1302
1344
|
latest: "latest";
|
|
@@ -1574,6 +1616,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1574
1616
|
}>;
|
|
1575
1617
|
analytics: z.ZodEnum<{
|
|
1576
1618
|
none: "none";
|
|
1619
|
+
posthog: "posthog";
|
|
1577
1620
|
plausible: "plausible";
|
|
1578
1621
|
umami: "umami";
|
|
1579
1622
|
}>;
|
|
@@ -1588,6 +1631,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1588
1631
|
}>;
|
|
1589
1632
|
caching: z.ZodEnum<{
|
|
1590
1633
|
none: "none";
|
|
1634
|
+
redis: "redis";
|
|
1591
1635
|
"upstash-redis": "upstash-redis";
|
|
1592
1636
|
}>;
|
|
1593
1637
|
rateLimit: z.ZodEnum<{
|
|
@@ -1600,6 +1644,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1600
1644
|
paraglide: "paraglide";
|
|
1601
1645
|
i18next: "i18next";
|
|
1602
1646
|
"next-intl": "next-intl";
|
|
1647
|
+
intlayer: "intlayer";
|
|
1603
1648
|
}>;
|
|
1604
1649
|
search: z.ZodEnum<{
|
|
1605
1650
|
none: "none";
|
|
@@ -1608,6 +1653,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1608
1653
|
elasticsearch: "elasticsearch";
|
|
1609
1654
|
opensearch: "opensearch";
|
|
1610
1655
|
algolia: "algolia";
|
|
1656
|
+
bleve: "bleve";
|
|
1611
1657
|
}>;
|
|
1612
1658
|
vectorDb: z.ZodEnum<{
|
|
1613
1659
|
none: "none";
|
|
@@ -1621,6 +1667,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1621
1667
|
s3: "s3";
|
|
1622
1668
|
r2: "r2";
|
|
1623
1669
|
cloudinary: "cloudinary";
|
|
1670
|
+
"supabase-storage": "supabase-storage";
|
|
1624
1671
|
}>;
|
|
1625
1672
|
mobileNavigation: z.ZodEnum<{
|
|
1626
1673
|
none: "none";
|
|
@@ -1661,6 +1708,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1661
1708
|
axum: "axum";
|
|
1662
1709
|
"actix-web": "actix-web";
|
|
1663
1710
|
rocket: "rocket";
|
|
1711
|
+
poem: "poem";
|
|
1712
|
+
loco: "loco";
|
|
1664
1713
|
}>;
|
|
1665
1714
|
rustFrontend: z.ZodEnum<{
|
|
1666
1715
|
none: "none";
|
|
@@ -1833,9 +1882,11 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1833
1882
|
echo: "echo";
|
|
1834
1883
|
fiber: "fiber";
|
|
1835
1884
|
chi: "chi";
|
|
1885
|
+
stdlib: "stdlib";
|
|
1836
1886
|
}>;
|
|
1837
1887
|
goOrm: z.ZodEnum<{
|
|
1838
1888
|
none: "none";
|
|
1889
|
+
bun: "bun";
|
|
1839
1890
|
gorm: "gorm";
|
|
1840
1891
|
sqlc: "sqlc";
|
|
1841
1892
|
ent: "ent";
|
|
@@ -1893,10 +1944,15 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1893
1944
|
none: "none";
|
|
1894
1945
|
opentelemetry: "opentelemetry";
|
|
1895
1946
|
}>;
|
|
1947
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
1948
|
+
java: "java";
|
|
1949
|
+
kotlin: "kotlin";
|
|
1950
|
+
}>>;
|
|
1896
1951
|
javaWebFramework: z.ZodEnum<{
|
|
1897
1952
|
none: "none";
|
|
1898
1953
|
"spring-boot": "spring-boot";
|
|
1899
1954
|
quarkus: "quarkus";
|
|
1955
|
+
micronaut: "micronaut";
|
|
1900
1956
|
}>;
|
|
1901
1957
|
javaBuildTool: z.ZodEnum<{
|
|
1902
1958
|
none: "none";
|
|
@@ -1917,10 +1973,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1917
1973
|
javaApi: z.ZodEnum<{
|
|
1918
1974
|
none: "none";
|
|
1919
1975
|
"spring-graphql": "spring-graphql";
|
|
1976
|
+
"openapi-generator": "openapi-generator";
|
|
1977
|
+
grpc: "grpc";
|
|
1920
1978
|
}>;
|
|
1921
1979
|
javaLogging: z.ZodEnum<{
|
|
1922
1980
|
none: "none";
|
|
1923
1981
|
logback: "logback";
|
|
1982
|
+
log4j2: "log4j2";
|
|
1924
1983
|
}>;
|
|
1925
1984
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
1926
1985
|
none: "none";
|
|
@@ -2037,9 +2096,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2037
2096
|
}>;
|
|
2038
2097
|
elixirApi: z.ZodEnum<{
|
|
2039
2098
|
none: "none";
|
|
2099
|
+
grpc: "grpc";
|
|
2040
2100
|
rest: "rest";
|
|
2041
2101
|
absinthe: "absinthe";
|
|
2042
|
-
grpc: "grpc";
|
|
2043
2102
|
}>;
|
|
2044
2103
|
elixirRealtime: z.ZodEnum<{
|
|
2045
2104
|
none: "none";
|
|
@@ -2163,6 +2222,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2163
2222
|
dataFetching: "dataFetching";
|
|
2164
2223
|
workspaceTooling: "workspaceTooling";
|
|
2165
2224
|
examples: "examples";
|
|
2225
|
+
language: "language";
|
|
2166
2226
|
buildTool: "buildTool";
|
|
2167
2227
|
cli: "cli";
|
|
2168
2228
|
errorHandling: "errorHandling";
|
|
@@ -2230,6 +2290,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2230
2290
|
sequelize: "sequelize";
|
|
2231
2291
|
}>;
|
|
2232
2292
|
backend: z.ZodEnum<{
|
|
2293
|
+
effect: "effect";
|
|
2233
2294
|
none: "none";
|
|
2234
2295
|
hono: "hono";
|
|
2235
2296
|
express: "express";
|
|
@@ -2322,11 +2383,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2322
2383
|
}>;
|
|
2323
2384
|
payments: z.ZodEnum<{
|
|
2324
2385
|
none: "none";
|
|
2386
|
+
revenuecat: "revenuecat";
|
|
2325
2387
|
polar: "polar";
|
|
2326
2388
|
stripe: "stripe";
|
|
2327
2389
|
"lemon-squeezy": "lemon-squeezy";
|
|
2328
2390
|
paddle: "paddle";
|
|
2329
2391
|
dodo: "dodo";
|
|
2392
|
+
creem: "creem";
|
|
2393
|
+
autumn: "autumn";
|
|
2394
|
+
commet: "commet";
|
|
2330
2395
|
}>;
|
|
2331
2396
|
packageManager: z.ZodEnum<{
|
|
2332
2397
|
bun: "bun";
|
|
@@ -2334,6 +2399,10 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2334
2399
|
pnpm: "pnpm";
|
|
2335
2400
|
yarn: "yarn";
|
|
2336
2401
|
}>;
|
|
2402
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
2403
|
+
monorepo: "monorepo";
|
|
2404
|
+
"single-app": "single-app";
|
|
2405
|
+
}>>;
|
|
2337
2406
|
versionChannel: z.ZodEnum<{
|
|
2338
2407
|
stable: "stable";
|
|
2339
2408
|
latest: "latest";
|
|
@@ -2610,6 +2679,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2610
2679
|
}>;
|
|
2611
2680
|
analytics: z.ZodEnum<{
|
|
2612
2681
|
none: "none";
|
|
2682
|
+
posthog: "posthog";
|
|
2613
2683
|
plausible: "plausible";
|
|
2614
2684
|
umami: "umami";
|
|
2615
2685
|
}>;
|
|
@@ -2624,6 +2694,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2624
2694
|
}>;
|
|
2625
2695
|
caching: z.ZodEnum<{
|
|
2626
2696
|
none: "none";
|
|
2697
|
+
redis: "redis";
|
|
2627
2698
|
"upstash-redis": "upstash-redis";
|
|
2628
2699
|
}>;
|
|
2629
2700
|
rateLimit: z.ZodEnum<{
|
|
@@ -2636,6 +2707,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2636
2707
|
paraglide: "paraglide";
|
|
2637
2708
|
i18next: "i18next";
|
|
2638
2709
|
"next-intl": "next-intl";
|
|
2710
|
+
intlayer: "intlayer";
|
|
2639
2711
|
}>;
|
|
2640
2712
|
search: z.ZodEnum<{
|
|
2641
2713
|
none: "none";
|
|
@@ -2644,6 +2716,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2644
2716
|
elasticsearch: "elasticsearch";
|
|
2645
2717
|
opensearch: "opensearch";
|
|
2646
2718
|
algolia: "algolia";
|
|
2719
|
+
bleve: "bleve";
|
|
2647
2720
|
}>;
|
|
2648
2721
|
vectorDb: z.ZodEnum<{
|
|
2649
2722
|
none: "none";
|
|
@@ -2657,6 +2730,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2657
2730
|
s3: "s3";
|
|
2658
2731
|
r2: "r2";
|
|
2659
2732
|
cloudinary: "cloudinary";
|
|
2733
|
+
"supabase-storage": "supabase-storage";
|
|
2660
2734
|
}>;
|
|
2661
2735
|
mobileNavigation: z.ZodEnum<{
|
|
2662
2736
|
none: "none";
|
|
@@ -2697,6 +2771,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2697
2771
|
axum: "axum";
|
|
2698
2772
|
"actix-web": "actix-web";
|
|
2699
2773
|
rocket: "rocket";
|
|
2774
|
+
poem: "poem";
|
|
2775
|
+
loco: "loco";
|
|
2700
2776
|
}>;
|
|
2701
2777
|
rustFrontend: z.ZodEnum<{
|
|
2702
2778
|
none: "none";
|
|
@@ -2869,9 +2945,11 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2869
2945
|
echo: "echo";
|
|
2870
2946
|
fiber: "fiber";
|
|
2871
2947
|
chi: "chi";
|
|
2948
|
+
stdlib: "stdlib";
|
|
2872
2949
|
}>;
|
|
2873
2950
|
goOrm: z.ZodEnum<{
|
|
2874
2951
|
none: "none";
|
|
2952
|
+
bun: "bun";
|
|
2875
2953
|
gorm: "gorm";
|
|
2876
2954
|
sqlc: "sqlc";
|
|
2877
2955
|
ent: "ent";
|
|
@@ -2929,10 +3007,15 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2929
3007
|
none: "none";
|
|
2930
3008
|
opentelemetry: "opentelemetry";
|
|
2931
3009
|
}>;
|
|
3010
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
3011
|
+
java: "java";
|
|
3012
|
+
kotlin: "kotlin";
|
|
3013
|
+
}>>;
|
|
2932
3014
|
javaWebFramework: z.ZodEnum<{
|
|
2933
3015
|
none: "none";
|
|
2934
3016
|
"spring-boot": "spring-boot";
|
|
2935
3017
|
quarkus: "quarkus";
|
|
3018
|
+
micronaut: "micronaut";
|
|
2936
3019
|
}>;
|
|
2937
3020
|
javaBuildTool: z.ZodEnum<{
|
|
2938
3021
|
none: "none";
|
|
@@ -2953,10 +3036,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2953
3036
|
javaApi: z.ZodEnum<{
|
|
2954
3037
|
none: "none";
|
|
2955
3038
|
"spring-graphql": "spring-graphql";
|
|
3039
|
+
"openapi-generator": "openapi-generator";
|
|
3040
|
+
grpc: "grpc";
|
|
2956
3041
|
}>;
|
|
2957
3042
|
javaLogging: z.ZodEnum<{
|
|
2958
3043
|
none: "none";
|
|
2959
3044
|
logback: "logback";
|
|
3045
|
+
log4j2: "log4j2";
|
|
2960
3046
|
}>;
|
|
2961
3047
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
2962
3048
|
none: "none";
|
|
@@ -3073,9 +3159,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3073
3159
|
}>;
|
|
3074
3160
|
elixirApi: z.ZodEnum<{
|
|
3075
3161
|
none: "none";
|
|
3162
|
+
grpc: "grpc";
|
|
3076
3163
|
rest: "rest";
|
|
3077
3164
|
absinthe: "absinthe";
|
|
3078
|
-
grpc: "grpc";
|
|
3079
3165
|
}>;
|
|
3080
3166
|
elixirRealtime: z.ZodEnum<{
|
|
3081
3167
|
none: "none";
|
|
@@ -3199,6 +3285,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3199
3285
|
dataFetching: "dataFetching";
|
|
3200
3286
|
workspaceTooling: "workspaceTooling";
|
|
3201
3287
|
examples: "examples";
|
|
3288
|
+
language: "language";
|
|
3202
3289
|
buildTool: "buildTool";
|
|
3203
3290
|
cli: "cli";
|
|
3204
3291
|
errorHandling: "errorHandling";
|
|
@@ -3266,6 +3353,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3266
3353
|
sequelize: "sequelize";
|
|
3267
3354
|
}>;
|
|
3268
3355
|
backend: z.ZodEnum<{
|
|
3356
|
+
effect: "effect";
|
|
3269
3357
|
none: "none";
|
|
3270
3358
|
hono: "hono";
|
|
3271
3359
|
express: "express";
|
|
@@ -3358,11 +3446,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3358
3446
|
}>;
|
|
3359
3447
|
payments: z.ZodEnum<{
|
|
3360
3448
|
none: "none";
|
|
3449
|
+
revenuecat: "revenuecat";
|
|
3361
3450
|
polar: "polar";
|
|
3362
3451
|
stripe: "stripe";
|
|
3363
3452
|
"lemon-squeezy": "lemon-squeezy";
|
|
3364
3453
|
paddle: "paddle";
|
|
3365
3454
|
dodo: "dodo";
|
|
3455
|
+
creem: "creem";
|
|
3456
|
+
autumn: "autumn";
|
|
3457
|
+
commet: "commet";
|
|
3366
3458
|
}>;
|
|
3367
3459
|
packageManager: z.ZodEnum<{
|
|
3368
3460
|
bun: "bun";
|
|
@@ -3370,6 +3462,10 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3370
3462
|
pnpm: "pnpm";
|
|
3371
3463
|
yarn: "yarn";
|
|
3372
3464
|
}>;
|
|
3465
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
3466
|
+
monorepo: "monorepo";
|
|
3467
|
+
"single-app": "single-app";
|
|
3468
|
+
}>>;
|
|
3373
3469
|
versionChannel: z.ZodEnum<{
|
|
3374
3470
|
stable: "stable";
|
|
3375
3471
|
latest: "latest";
|
|
@@ -3646,6 +3742,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3646
3742
|
}>;
|
|
3647
3743
|
analytics: z.ZodEnum<{
|
|
3648
3744
|
none: "none";
|
|
3745
|
+
posthog: "posthog";
|
|
3649
3746
|
plausible: "plausible";
|
|
3650
3747
|
umami: "umami";
|
|
3651
3748
|
}>;
|
|
@@ -3660,6 +3757,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3660
3757
|
}>;
|
|
3661
3758
|
caching: z.ZodEnum<{
|
|
3662
3759
|
none: "none";
|
|
3760
|
+
redis: "redis";
|
|
3663
3761
|
"upstash-redis": "upstash-redis";
|
|
3664
3762
|
}>;
|
|
3665
3763
|
rateLimit: z.ZodEnum<{
|
|
@@ -3672,6 +3770,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3672
3770
|
paraglide: "paraglide";
|
|
3673
3771
|
i18next: "i18next";
|
|
3674
3772
|
"next-intl": "next-intl";
|
|
3773
|
+
intlayer: "intlayer";
|
|
3675
3774
|
}>;
|
|
3676
3775
|
search: z.ZodEnum<{
|
|
3677
3776
|
none: "none";
|
|
@@ -3680,6 +3779,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3680
3779
|
elasticsearch: "elasticsearch";
|
|
3681
3780
|
opensearch: "opensearch";
|
|
3682
3781
|
algolia: "algolia";
|
|
3782
|
+
bleve: "bleve";
|
|
3683
3783
|
}>;
|
|
3684
3784
|
vectorDb: z.ZodEnum<{
|
|
3685
3785
|
none: "none";
|
|
@@ -3693,6 +3793,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3693
3793
|
s3: "s3";
|
|
3694
3794
|
r2: "r2";
|
|
3695
3795
|
cloudinary: "cloudinary";
|
|
3796
|
+
"supabase-storage": "supabase-storage";
|
|
3696
3797
|
}>;
|
|
3697
3798
|
mobileNavigation: z.ZodEnum<{
|
|
3698
3799
|
none: "none";
|
|
@@ -3733,6 +3834,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3733
3834
|
axum: "axum";
|
|
3734
3835
|
"actix-web": "actix-web";
|
|
3735
3836
|
rocket: "rocket";
|
|
3837
|
+
poem: "poem";
|
|
3838
|
+
loco: "loco";
|
|
3736
3839
|
}>;
|
|
3737
3840
|
rustFrontend: z.ZodEnum<{
|
|
3738
3841
|
none: "none";
|
|
@@ -3905,9 +4008,11 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3905
4008
|
echo: "echo";
|
|
3906
4009
|
fiber: "fiber";
|
|
3907
4010
|
chi: "chi";
|
|
4011
|
+
stdlib: "stdlib";
|
|
3908
4012
|
}>;
|
|
3909
4013
|
goOrm: z.ZodEnum<{
|
|
3910
4014
|
none: "none";
|
|
4015
|
+
bun: "bun";
|
|
3911
4016
|
gorm: "gorm";
|
|
3912
4017
|
sqlc: "sqlc";
|
|
3913
4018
|
ent: "ent";
|
|
@@ -3965,10 +4070,15 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3965
4070
|
none: "none";
|
|
3966
4071
|
opentelemetry: "opentelemetry";
|
|
3967
4072
|
}>;
|
|
4073
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
4074
|
+
java: "java";
|
|
4075
|
+
kotlin: "kotlin";
|
|
4076
|
+
}>>;
|
|
3968
4077
|
javaWebFramework: z.ZodEnum<{
|
|
3969
4078
|
none: "none";
|
|
3970
4079
|
"spring-boot": "spring-boot";
|
|
3971
4080
|
quarkus: "quarkus";
|
|
4081
|
+
micronaut: "micronaut";
|
|
3972
4082
|
}>;
|
|
3973
4083
|
javaBuildTool: z.ZodEnum<{
|
|
3974
4084
|
none: "none";
|
|
@@ -3989,10 +4099,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3989
4099
|
javaApi: z.ZodEnum<{
|
|
3990
4100
|
none: "none";
|
|
3991
4101
|
"spring-graphql": "spring-graphql";
|
|
4102
|
+
"openapi-generator": "openapi-generator";
|
|
4103
|
+
grpc: "grpc";
|
|
3992
4104
|
}>;
|
|
3993
4105
|
javaLogging: z.ZodEnum<{
|
|
3994
4106
|
none: "none";
|
|
3995
4107
|
logback: "logback";
|
|
4108
|
+
log4j2: "log4j2";
|
|
3996
4109
|
}>;
|
|
3997
4110
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
3998
4111
|
none: "none";
|
|
@@ -4109,9 +4222,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4109
4222
|
}>;
|
|
4110
4223
|
elixirApi: z.ZodEnum<{
|
|
4111
4224
|
none: "none";
|
|
4225
|
+
grpc: "grpc";
|
|
4112
4226
|
rest: "rest";
|
|
4113
4227
|
absinthe: "absinthe";
|
|
4114
|
-
grpc: "grpc";
|
|
4115
4228
|
}>;
|
|
4116
4229
|
elixirRealtime: z.ZodEnum<{
|
|
4117
4230
|
none: "none";
|
|
@@ -4235,6 +4348,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4235
4348
|
dataFetching: "dataFetching";
|
|
4236
4349
|
workspaceTooling: "workspaceTooling";
|
|
4237
4350
|
examples: "examples";
|
|
4351
|
+
language: "language";
|
|
4238
4352
|
buildTool: "buildTool";
|
|
4239
4353
|
cli: "cli";
|
|
4240
4354
|
errorHandling: "errorHandling";
|
|
@@ -4303,6 +4417,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4303
4417
|
sequelize: "sequelize";
|
|
4304
4418
|
}>;
|
|
4305
4419
|
backend: z.ZodEnum<{
|
|
4420
|
+
effect: "effect";
|
|
4306
4421
|
none: "none";
|
|
4307
4422
|
hono: "hono";
|
|
4308
4423
|
express: "express";
|
|
@@ -4395,11 +4510,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4395
4510
|
}>;
|
|
4396
4511
|
payments: z.ZodEnum<{
|
|
4397
4512
|
none: "none";
|
|
4513
|
+
revenuecat: "revenuecat";
|
|
4398
4514
|
polar: "polar";
|
|
4399
4515
|
stripe: "stripe";
|
|
4400
4516
|
"lemon-squeezy": "lemon-squeezy";
|
|
4401
4517
|
paddle: "paddle";
|
|
4402
4518
|
dodo: "dodo";
|
|
4519
|
+
creem: "creem";
|
|
4520
|
+
autumn: "autumn";
|
|
4521
|
+
commet: "commet";
|
|
4403
4522
|
}>;
|
|
4404
4523
|
git: z.ZodBoolean;
|
|
4405
4524
|
packageManager: z.ZodEnum<{
|
|
@@ -4408,6 +4527,10 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4408
4527
|
pnpm: "pnpm";
|
|
4409
4528
|
yarn: "yarn";
|
|
4410
4529
|
}>;
|
|
4530
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
4531
|
+
monorepo: "monorepo";
|
|
4532
|
+
"single-app": "single-app";
|
|
4533
|
+
}>>;
|
|
4411
4534
|
versionChannel: z.ZodEnum<{
|
|
4412
4535
|
stable: "stable";
|
|
4413
4536
|
latest: "latest";
|
|
@@ -4685,6 +4808,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4685
4808
|
}>;
|
|
4686
4809
|
analytics: z.ZodEnum<{
|
|
4687
4810
|
none: "none";
|
|
4811
|
+
posthog: "posthog";
|
|
4688
4812
|
plausible: "plausible";
|
|
4689
4813
|
umami: "umami";
|
|
4690
4814
|
}>;
|
|
@@ -4699,6 +4823,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4699
4823
|
}>;
|
|
4700
4824
|
caching: z.ZodEnum<{
|
|
4701
4825
|
none: "none";
|
|
4826
|
+
redis: "redis";
|
|
4702
4827
|
"upstash-redis": "upstash-redis";
|
|
4703
4828
|
}>;
|
|
4704
4829
|
rateLimit: z.ZodEnum<{
|
|
@@ -4711,6 +4836,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4711
4836
|
paraglide: "paraglide";
|
|
4712
4837
|
i18next: "i18next";
|
|
4713
4838
|
"next-intl": "next-intl";
|
|
4839
|
+
intlayer: "intlayer";
|
|
4714
4840
|
}>;
|
|
4715
4841
|
search: z.ZodEnum<{
|
|
4716
4842
|
none: "none";
|
|
@@ -4719,6 +4845,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4719
4845
|
elasticsearch: "elasticsearch";
|
|
4720
4846
|
opensearch: "opensearch";
|
|
4721
4847
|
algolia: "algolia";
|
|
4848
|
+
bleve: "bleve";
|
|
4722
4849
|
}>;
|
|
4723
4850
|
vectorDb: z.ZodEnum<{
|
|
4724
4851
|
none: "none";
|
|
@@ -4732,6 +4859,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4732
4859
|
s3: "s3";
|
|
4733
4860
|
r2: "r2";
|
|
4734
4861
|
cloudinary: "cloudinary";
|
|
4862
|
+
"supabase-storage": "supabase-storage";
|
|
4735
4863
|
}>;
|
|
4736
4864
|
mobileNavigation: z.ZodEnum<{
|
|
4737
4865
|
none: "none";
|
|
@@ -4772,6 +4900,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4772
4900
|
axum: "axum";
|
|
4773
4901
|
"actix-web": "actix-web";
|
|
4774
4902
|
rocket: "rocket";
|
|
4903
|
+
poem: "poem";
|
|
4904
|
+
loco: "loco";
|
|
4775
4905
|
}>;
|
|
4776
4906
|
rustFrontend: z.ZodEnum<{
|
|
4777
4907
|
none: "none";
|
|
@@ -4944,9 +5074,11 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4944
5074
|
echo: "echo";
|
|
4945
5075
|
fiber: "fiber";
|
|
4946
5076
|
chi: "chi";
|
|
5077
|
+
stdlib: "stdlib";
|
|
4947
5078
|
}>;
|
|
4948
5079
|
goOrm: z.ZodEnum<{
|
|
4949
5080
|
none: "none";
|
|
5081
|
+
bun: "bun";
|
|
4950
5082
|
gorm: "gorm";
|
|
4951
5083
|
sqlc: "sqlc";
|
|
4952
5084
|
ent: "ent";
|
|
@@ -5004,10 +5136,15 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5004
5136
|
none: "none";
|
|
5005
5137
|
opentelemetry: "opentelemetry";
|
|
5006
5138
|
}>;
|
|
5139
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
5140
|
+
java: "java";
|
|
5141
|
+
kotlin: "kotlin";
|
|
5142
|
+
}>>;
|
|
5007
5143
|
javaWebFramework: z.ZodEnum<{
|
|
5008
5144
|
none: "none";
|
|
5009
5145
|
"spring-boot": "spring-boot";
|
|
5010
5146
|
quarkus: "quarkus";
|
|
5147
|
+
micronaut: "micronaut";
|
|
5011
5148
|
}>;
|
|
5012
5149
|
javaBuildTool: z.ZodEnum<{
|
|
5013
5150
|
none: "none";
|
|
@@ -5028,10 +5165,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5028
5165
|
javaApi: z.ZodEnum<{
|
|
5029
5166
|
none: "none";
|
|
5030
5167
|
"spring-graphql": "spring-graphql";
|
|
5168
|
+
"openapi-generator": "openapi-generator";
|
|
5169
|
+
grpc: "grpc";
|
|
5031
5170
|
}>;
|
|
5032
5171
|
javaLogging: z.ZodEnum<{
|
|
5033
5172
|
none: "none";
|
|
5034
5173
|
logback: "logback";
|
|
5174
|
+
log4j2: "log4j2";
|
|
5035
5175
|
}>;
|
|
5036
5176
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
5037
5177
|
none: "none";
|
|
@@ -5148,9 +5288,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5148
5288
|
}>;
|
|
5149
5289
|
elixirApi: z.ZodEnum<{
|
|
5150
5290
|
none: "none";
|
|
5291
|
+
grpc: "grpc";
|
|
5151
5292
|
rest: "rest";
|
|
5152
5293
|
absinthe: "absinthe";
|
|
5153
|
-
grpc: "grpc";
|
|
5154
5294
|
}>;
|
|
5155
5295
|
elixirRealtime: z.ZodEnum<{
|
|
5156
5296
|
none: "none";
|
|
@@ -5274,6 +5414,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5274
5414
|
dataFetching: "dataFetching";
|
|
5275
5415
|
workspaceTooling: "workspaceTooling";
|
|
5276
5416
|
examples: "examples";
|
|
5417
|
+
language: "language";
|
|
5277
5418
|
buildTool: "buildTool";
|
|
5278
5419
|
cli: "cli";
|
|
5279
5420
|
errorHandling: "errorHandling";
|
|
@@ -5321,6 +5462,7 @@ declare function getJavaWebFrameworkJsonSchema(): z.core.ZodStandardJSONSchemaPa
|
|
|
5321
5462
|
none: "none";
|
|
5322
5463
|
"spring-boot": "spring-boot";
|
|
5323
5464
|
quarkus: "quarkus";
|
|
5465
|
+
micronaut: "micronaut";
|
|
5324
5466
|
}>>;
|
|
5325
5467
|
declare function getJavaBuildToolJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5326
5468
|
none: "none";
|
|
@@ -5389,9 +5531,9 @@ declare function getElixirAuthJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5389
5531
|
}>>;
|
|
5390
5532
|
declare function getElixirApiJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5391
5533
|
none: "none";
|
|
5534
|
+
grpc: "grpc";
|
|
5392
5535
|
rest: "rest";
|
|
5393
5536
|
absinthe: "absinthe";
|
|
5394
|
-
grpc: "grpc";
|
|
5395
5537
|
}>>;
|
|
5396
5538
|
declare function getElixirRealtimeJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5397
5539
|
none: "none";
|
|
@@ -5475,6 +5617,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5475
5617
|
sequelize: "sequelize";
|
|
5476
5618
|
}>>;
|
|
5477
5619
|
backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5620
|
+
effect: "effect";
|
|
5478
5621
|
none: "none";
|
|
5479
5622
|
hono: "hono";
|
|
5480
5623
|
express: "express";
|
|
@@ -5595,11 +5738,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5595
5738
|
}>>;
|
|
5596
5739
|
payments: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5597
5740
|
none: "none";
|
|
5741
|
+
revenuecat: "revenuecat";
|
|
5598
5742
|
polar: "polar";
|
|
5599
5743
|
stripe: "stripe";
|
|
5600
5744
|
"lemon-squeezy": "lemon-squeezy";
|
|
5601
5745
|
paddle: "paddle";
|
|
5602
5746
|
dodo: "dodo";
|
|
5747
|
+
creem: "creem";
|
|
5748
|
+
autumn: "autumn";
|
|
5749
|
+
commet: "commet";
|
|
5603
5750
|
}>>;
|
|
5604
5751
|
webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5605
5752
|
none: "none";
|
|
@@ -5635,11 +5782,13 @@ declare function getAllJsonSchemas(): {
|
|
|
5635
5782
|
mern: "mern";
|
|
5636
5783
|
pern: "pern";
|
|
5637
5784
|
t3: "t3";
|
|
5785
|
+
saas: "saas";
|
|
5638
5786
|
}>>;
|
|
5639
5787
|
javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5640
5788
|
none: "none";
|
|
5641
5789
|
"spring-boot": "spring-boot";
|
|
5642
5790
|
quarkus: "quarkus";
|
|
5791
|
+
micronaut: "micronaut";
|
|
5643
5792
|
}>>;
|
|
5644
5793
|
javaBuildTool: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5645
5794
|
none: "none";
|
|
@@ -5708,9 +5857,9 @@ declare function getAllJsonSchemas(): {
|
|
|
5708
5857
|
}>>;
|
|
5709
5858
|
elixirApi: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5710
5859
|
none: "none";
|
|
5860
|
+
grpc: "grpc";
|
|
5711
5861
|
rest: "rest";
|
|
5712
5862
|
absinthe: "absinthe";
|
|
5713
|
-
grpc: "grpc";
|
|
5714
5863
|
}>>;
|
|
5715
5864
|
elixirRealtime: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5716
5865
|
none: "none";
|
|
@@ -5781,6 +5930,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5781
5930
|
mern: "mern";
|
|
5782
5931
|
pern: "pern";
|
|
5783
5932
|
t3: "t3";
|
|
5933
|
+
saas: "saas";
|
|
5784
5934
|
}>>;
|
|
5785
5935
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
5786
5936
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5831,11 +5981,15 @@ declare function getAllJsonSchemas(): {
|
|
|
5831
5981
|
}>>;
|
|
5832
5982
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
5833
5983
|
none: "none";
|
|
5984
|
+
revenuecat: "revenuecat";
|
|
5834
5985
|
polar: "polar";
|
|
5835
5986
|
stripe: "stripe";
|
|
5836
5987
|
"lemon-squeezy": "lemon-squeezy";
|
|
5837
5988
|
paddle: "paddle";
|
|
5838
5989
|
dodo: "dodo";
|
|
5990
|
+
creem: "creem";
|
|
5991
|
+
autumn: "autumn";
|
|
5992
|
+
commet: "commet";
|
|
5839
5993
|
}>>;
|
|
5840
5994
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5841
5995
|
none: "none";
|
|
@@ -5902,6 +6056,10 @@ declare function getAllJsonSchemas(): {
|
|
|
5902
6056
|
pnpm: "pnpm";
|
|
5903
6057
|
yarn: "yarn";
|
|
5904
6058
|
}>>;
|
|
6059
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
6060
|
+
monorepo: "monorepo";
|
|
6061
|
+
"single-app": "single-app";
|
|
6062
|
+
}>>;
|
|
5905
6063
|
versionChannel: z.ZodOptional<z.ZodEnum<{
|
|
5906
6064
|
stable: "stable";
|
|
5907
6065
|
latest: "latest";
|
|
@@ -5921,6 +6079,7 @@ declare function getAllJsonSchemas(): {
|
|
|
5921
6079
|
docker: "docker";
|
|
5922
6080
|
}>>;
|
|
5923
6081
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
6082
|
+
effect: "effect";
|
|
5924
6083
|
none: "none";
|
|
5925
6084
|
hono: "hono";
|
|
5926
6085
|
express: "express";
|
|
@@ -6208,6 +6367,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6208
6367
|
}>>;
|
|
6209
6368
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
6210
6369
|
none: "none";
|
|
6370
|
+
posthog: "posthog";
|
|
6211
6371
|
plausible: "plausible";
|
|
6212
6372
|
umami: "umami";
|
|
6213
6373
|
}>>;
|
|
@@ -6222,6 +6382,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6222
6382
|
}>>;
|
|
6223
6383
|
caching: z.ZodOptional<z.ZodEnum<{
|
|
6224
6384
|
none: "none";
|
|
6385
|
+
redis: "redis";
|
|
6225
6386
|
"upstash-redis": "upstash-redis";
|
|
6226
6387
|
}>>;
|
|
6227
6388
|
rateLimit: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6234,6 +6395,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6234
6395
|
paraglide: "paraglide";
|
|
6235
6396
|
i18next: "i18next";
|
|
6236
6397
|
"next-intl": "next-intl";
|
|
6398
|
+
intlayer: "intlayer";
|
|
6237
6399
|
}>>;
|
|
6238
6400
|
search: z.ZodOptional<z.ZodEnum<{
|
|
6239
6401
|
none: "none";
|
|
@@ -6242,6 +6404,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6242
6404
|
elasticsearch: "elasticsearch";
|
|
6243
6405
|
opensearch: "opensearch";
|
|
6244
6406
|
algolia: "algolia";
|
|
6407
|
+
bleve: "bleve";
|
|
6245
6408
|
}>>;
|
|
6246
6409
|
vectorDb: z.ZodOptional<z.ZodEnum<{
|
|
6247
6410
|
none: "none";
|
|
@@ -6255,6 +6418,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6255
6418
|
s3: "s3";
|
|
6256
6419
|
r2: "r2";
|
|
6257
6420
|
cloudinary: "cloudinary";
|
|
6421
|
+
"supabase-storage": "supabase-storage";
|
|
6258
6422
|
}>>;
|
|
6259
6423
|
mobileNavigation: z.ZodOptional<z.ZodEnum<{
|
|
6260
6424
|
none: "none";
|
|
@@ -6295,6 +6459,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6295
6459
|
axum: "axum";
|
|
6296
6460
|
"actix-web": "actix-web";
|
|
6297
6461
|
rocket: "rocket";
|
|
6462
|
+
poem: "poem";
|
|
6463
|
+
loco: "loco";
|
|
6298
6464
|
}>>;
|
|
6299
6465
|
rustFrontend: z.ZodOptional<z.ZodEnum<{
|
|
6300
6466
|
none: "none";
|
|
@@ -6467,9 +6633,11 @@ declare function getAllJsonSchemas(): {
|
|
|
6467
6633
|
echo: "echo";
|
|
6468
6634
|
fiber: "fiber";
|
|
6469
6635
|
chi: "chi";
|
|
6636
|
+
stdlib: "stdlib";
|
|
6470
6637
|
}>>;
|
|
6471
6638
|
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
6472
6639
|
none: "none";
|
|
6640
|
+
bun: "bun";
|
|
6473
6641
|
gorm: "gorm";
|
|
6474
6642
|
sqlc: "sqlc";
|
|
6475
6643
|
ent: "ent";
|
|
@@ -6527,10 +6695,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6527
6695
|
none: "none";
|
|
6528
6696
|
opentelemetry: "opentelemetry";
|
|
6529
6697
|
}>>;
|
|
6698
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
6699
|
+
java: "java";
|
|
6700
|
+
kotlin: "kotlin";
|
|
6701
|
+
}>>;
|
|
6530
6702
|
javaWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
6531
6703
|
none: "none";
|
|
6532
6704
|
"spring-boot": "spring-boot";
|
|
6533
6705
|
quarkus: "quarkus";
|
|
6706
|
+
micronaut: "micronaut";
|
|
6534
6707
|
}>>;
|
|
6535
6708
|
javaBuildTool: z.ZodOptional<z.ZodEnum<{
|
|
6536
6709
|
none: "none";
|
|
@@ -6551,10 +6724,13 @@ declare function getAllJsonSchemas(): {
|
|
|
6551
6724
|
javaApi: z.ZodOptional<z.ZodEnum<{
|
|
6552
6725
|
none: "none";
|
|
6553
6726
|
"spring-graphql": "spring-graphql";
|
|
6727
|
+
"openapi-generator": "openapi-generator";
|
|
6728
|
+
grpc: "grpc";
|
|
6554
6729
|
}>>;
|
|
6555
6730
|
javaLogging: z.ZodOptional<z.ZodEnum<{
|
|
6556
6731
|
none: "none";
|
|
6557
6732
|
logback: "logback";
|
|
6733
|
+
log4j2: "log4j2";
|
|
6558
6734
|
}>>;
|
|
6559
6735
|
javaLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6560
6736
|
none: "none";
|
|
@@ -6671,9 +6847,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6671
6847
|
}>>;
|
|
6672
6848
|
elixirApi: z.ZodOptional<z.ZodEnum<{
|
|
6673
6849
|
none: "none";
|
|
6850
|
+
grpc: "grpc";
|
|
6674
6851
|
rest: "rest";
|
|
6675
6852
|
absinthe: "absinthe";
|
|
6676
|
-
grpc: "grpc";
|
|
6677
6853
|
}>>;
|
|
6678
6854
|
elixirRealtime: z.ZodOptional<z.ZodEnum<{
|
|
6679
6855
|
none: "none";
|
|
@@ -6783,6 +6959,7 @@ declare function getAllJsonSchemas(): {
|
|
|
6783
6959
|
sequelize: "sequelize";
|
|
6784
6960
|
}>;
|
|
6785
6961
|
backend: z.ZodEnum<{
|
|
6962
|
+
effect: "effect";
|
|
6786
6963
|
none: "none";
|
|
6787
6964
|
hono: "hono";
|
|
6788
6965
|
express: "express";
|
|
@@ -6875,11 +7052,15 @@ declare function getAllJsonSchemas(): {
|
|
|
6875
7052
|
}>;
|
|
6876
7053
|
payments: z.ZodEnum<{
|
|
6877
7054
|
none: "none";
|
|
7055
|
+
revenuecat: "revenuecat";
|
|
6878
7056
|
polar: "polar";
|
|
6879
7057
|
stripe: "stripe";
|
|
6880
7058
|
"lemon-squeezy": "lemon-squeezy";
|
|
6881
7059
|
paddle: "paddle";
|
|
6882
7060
|
dodo: "dodo";
|
|
7061
|
+
creem: "creem";
|
|
7062
|
+
autumn: "autumn";
|
|
7063
|
+
commet: "commet";
|
|
6883
7064
|
}>;
|
|
6884
7065
|
git: z.ZodBoolean;
|
|
6885
7066
|
packageManager: z.ZodEnum<{
|
|
@@ -6888,6 +7069,10 @@ declare function getAllJsonSchemas(): {
|
|
|
6888
7069
|
pnpm: "pnpm";
|
|
6889
7070
|
yarn: "yarn";
|
|
6890
7071
|
}>;
|
|
7072
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
7073
|
+
monorepo: "monorepo";
|
|
7074
|
+
"single-app": "single-app";
|
|
7075
|
+
}>>;
|
|
6891
7076
|
versionChannel: z.ZodEnum<{
|
|
6892
7077
|
stable: "stable";
|
|
6893
7078
|
latest: "latest";
|
|
@@ -7165,6 +7350,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7165
7350
|
}>;
|
|
7166
7351
|
analytics: z.ZodEnum<{
|
|
7167
7352
|
none: "none";
|
|
7353
|
+
posthog: "posthog";
|
|
7168
7354
|
plausible: "plausible";
|
|
7169
7355
|
umami: "umami";
|
|
7170
7356
|
}>;
|
|
@@ -7179,6 +7365,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7179
7365
|
}>;
|
|
7180
7366
|
caching: z.ZodEnum<{
|
|
7181
7367
|
none: "none";
|
|
7368
|
+
redis: "redis";
|
|
7182
7369
|
"upstash-redis": "upstash-redis";
|
|
7183
7370
|
}>;
|
|
7184
7371
|
rateLimit: z.ZodEnum<{
|
|
@@ -7191,6 +7378,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7191
7378
|
paraglide: "paraglide";
|
|
7192
7379
|
i18next: "i18next";
|
|
7193
7380
|
"next-intl": "next-intl";
|
|
7381
|
+
intlayer: "intlayer";
|
|
7194
7382
|
}>;
|
|
7195
7383
|
search: z.ZodEnum<{
|
|
7196
7384
|
none: "none";
|
|
@@ -7199,6 +7387,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7199
7387
|
elasticsearch: "elasticsearch";
|
|
7200
7388
|
opensearch: "opensearch";
|
|
7201
7389
|
algolia: "algolia";
|
|
7390
|
+
bleve: "bleve";
|
|
7202
7391
|
}>;
|
|
7203
7392
|
vectorDb: z.ZodEnum<{
|
|
7204
7393
|
none: "none";
|
|
@@ -7212,6 +7401,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7212
7401
|
s3: "s3";
|
|
7213
7402
|
r2: "r2";
|
|
7214
7403
|
cloudinary: "cloudinary";
|
|
7404
|
+
"supabase-storage": "supabase-storage";
|
|
7215
7405
|
}>;
|
|
7216
7406
|
mobileNavigation: z.ZodEnum<{
|
|
7217
7407
|
none: "none";
|
|
@@ -7252,6 +7442,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7252
7442
|
axum: "axum";
|
|
7253
7443
|
"actix-web": "actix-web";
|
|
7254
7444
|
rocket: "rocket";
|
|
7445
|
+
poem: "poem";
|
|
7446
|
+
loco: "loco";
|
|
7255
7447
|
}>;
|
|
7256
7448
|
rustFrontend: z.ZodEnum<{
|
|
7257
7449
|
none: "none";
|
|
@@ -7424,9 +7616,11 @@ declare function getAllJsonSchemas(): {
|
|
|
7424
7616
|
echo: "echo";
|
|
7425
7617
|
fiber: "fiber";
|
|
7426
7618
|
chi: "chi";
|
|
7619
|
+
stdlib: "stdlib";
|
|
7427
7620
|
}>;
|
|
7428
7621
|
goOrm: z.ZodEnum<{
|
|
7429
7622
|
none: "none";
|
|
7623
|
+
bun: "bun";
|
|
7430
7624
|
gorm: "gorm";
|
|
7431
7625
|
sqlc: "sqlc";
|
|
7432
7626
|
ent: "ent";
|
|
@@ -7484,10 +7678,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7484
7678
|
none: "none";
|
|
7485
7679
|
opentelemetry: "opentelemetry";
|
|
7486
7680
|
}>;
|
|
7681
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
7682
|
+
java: "java";
|
|
7683
|
+
kotlin: "kotlin";
|
|
7684
|
+
}>>;
|
|
7487
7685
|
javaWebFramework: z.ZodEnum<{
|
|
7488
7686
|
none: "none";
|
|
7489
7687
|
"spring-boot": "spring-boot";
|
|
7490
7688
|
quarkus: "quarkus";
|
|
7689
|
+
micronaut: "micronaut";
|
|
7491
7690
|
}>;
|
|
7492
7691
|
javaBuildTool: z.ZodEnum<{
|
|
7493
7692
|
none: "none";
|
|
@@ -7508,10 +7707,13 @@ declare function getAllJsonSchemas(): {
|
|
|
7508
7707
|
javaApi: z.ZodEnum<{
|
|
7509
7708
|
none: "none";
|
|
7510
7709
|
"spring-graphql": "spring-graphql";
|
|
7710
|
+
"openapi-generator": "openapi-generator";
|
|
7711
|
+
grpc: "grpc";
|
|
7511
7712
|
}>;
|
|
7512
7713
|
javaLogging: z.ZodEnum<{
|
|
7513
7714
|
none: "none";
|
|
7514
7715
|
logback: "logback";
|
|
7716
|
+
log4j2: "log4j2";
|
|
7515
7717
|
}>;
|
|
7516
7718
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
7517
7719
|
none: "none";
|
|
@@ -7628,9 +7830,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7628
7830
|
}>;
|
|
7629
7831
|
elixirApi: z.ZodEnum<{
|
|
7630
7832
|
none: "none";
|
|
7833
|
+
grpc: "grpc";
|
|
7631
7834
|
rest: "rest";
|
|
7632
7835
|
absinthe: "absinthe";
|
|
7633
|
-
grpc: "grpc";
|
|
7634
7836
|
}>;
|
|
7635
7837
|
elixirRealtime: z.ZodEnum<{
|
|
7636
7838
|
none: "none";
|
|
@@ -7754,6 +7956,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7754
7956
|
dataFetching: "dataFetching";
|
|
7755
7957
|
workspaceTooling: "workspaceTooling";
|
|
7756
7958
|
examples: "examples";
|
|
7959
|
+
language: "language";
|
|
7757
7960
|
buildTool: "buildTool";
|
|
7758
7961
|
cli: "cli";
|
|
7759
7962
|
errorHandling: "errorHandling";
|
|
@@ -7821,6 +8024,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7821
8024
|
sequelize: "sequelize";
|
|
7822
8025
|
}>;
|
|
7823
8026
|
backend: z.ZodEnum<{
|
|
8027
|
+
effect: "effect";
|
|
7824
8028
|
none: "none";
|
|
7825
8029
|
hono: "hono";
|
|
7826
8030
|
express: "express";
|
|
@@ -7913,11 +8117,15 @@ declare function getAllJsonSchemas(): {
|
|
|
7913
8117
|
}>;
|
|
7914
8118
|
payments: z.ZodEnum<{
|
|
7915
8119
|
none: "none";
|
|
8120
|
+
revenuecat: "revenuecat";
|
|
7916
8121
|
polar: "polar";
|
|
7917
8122
|
stripe: "stripe";
|
|
7918
8123
|
"lemon-squeezy": "lemon-squeezy";
|
|
7919
8124
|
paddle: "paddle";
|
|
7920
8125
|
dodo: "dodo";
|
|
8126
|
+
creem: "creem";
|
|
8127
|
+
autumn: "autumn";
|
|
8128
|
+
commet: "commet";
|
|
7921
8129
|
}>;
|
|
7922
8130
|
packageManager: z.ZodEnum<{
|
|
7923
8131
|
bun: "bun";
|
|
@@ -7925,6 +8133,10 @@ declare function getAllJsonSchemas(): {
|
|
|
7925
8133
|
pnpm: "pnpm";
|
|
7926
8134
|
yarn: "yarn";
|
|
7927
8135
|
}>;
|
|
8136
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
8137
|
+
monorepo: "monorepo";
|
|
8138
|
+
"single-app": "single-app";
|
|
8139
|
+
}>>;
|
|
7928
8140
|
versionChannel: z.ZodEnum<{
|
|
7929
8141
|
stable: "stable";
|
|
7930
8142
|
latest: "latest";
|
|
@@ -8201,6 +8413,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8201
8413
|
}>;
|
|
8202
8414
|
analytics: z.ZodEnum<{
|
|
8203
8415
|
none: "none";
|
|
8416
|
+
posthog: "posthog";
|
|
8204
8417
|
plausible: "plausible";
|
|
8205
8418
|
umami: "umami";
|
|
8206
8419
|
}>;
|
|
@@ -8215,6 +8428,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8215
8428
|
}>;
|
|
8216
8429
|
caching: z.ZodEnum<{
|
|
8217
8430
|
none: "none";
|
|
8431
|
+
redis: "redis";
|
|
8218
8432
|
"upstash-redis": "upstash-redis";
|
|
8219
8433
|
}>;
|
|
8220
8434
|
rateLimit: z.ZodEnum<{
|
|
@@ -8227,6 +8441,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8227
8441
|
paraglide: "paraglide";
|
|
8228
8442
|
i18next: "i18next";
|
|
8229
8443
|
"next-intl": "next-intl";
|
|
8444
|
+
intlayer: "intlayer";
|
|
8230
8445
|
}>;
|
|
8231
8446
|
search: z.ZodEnum<{
|
|
8232
8447
|
none: "none";
|
|
@@ -8235,6 +8450,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8235
8450
|
elasticsearch: "elasticsearch";
|
|
8236
8451
|
opensearch: "opensearch";
|
|
8237
8452
|
algolia: "algolia";
|
|
8453
|
+
bleve: "bleve";
|
|
8238
8454
|
}>;
|
|
8239
8455
|
vectorDb: z.ZodEnum<{
|
|
8240
8456
|
none: "none";
|
|
@@ -8248,6 +8464,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8248
8464
|
s3: "s3";
|
|
8249
8465
|
r2: "r2";
|
|
8250
8466
|
cloudinary: "cloudinary";
|
|
8467
|
+
"supabase-storage": "supabase-storage";
|
|
8251
8468
|
}>;
|
|
8252
8469
|
mobileNavigation: z.ZodEnum<{
|
|
8253
8470
|
none: "none";
|
|
@@ -8288,6 +8505,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8288
8505
|
axum: "axum";
|
|
8289
8506
|
"actix-web": "actix-web";
|
|
8290
8507
|
rocket: "rocket";
|
|
8508
|
+
poem: "poem";
|
|
8509
|
+
loco: "loco";
|
|
8291
8510
|
}>;
|
|
8292
8511
|
rustFrontend: z.ZodEnum<{
|
|
8293
8512
|
none: "none";
|
|
@@ -8460,9 +8679,11 @@ declare function getAllJsonSchemas(): {
|
|
|
8460
8679
|
echo: "echo";
|
|
8461
8680
|
fiber: "fiber";
|
|
8462
8681
|
chi: "chi";
|
|
8682
|
+
stdlib: "stdlib";
|
|
8463
8683
|
}>;
|
|
8464
8684
|
goOrm: z.ZodEnum<{
|
|
8465
8685
|
none: "none";
|
|
8686
|
+
bun: "bun";
|
|
8466
8687
|
gorm: "gorm";
|
|
8467
8688
|
sqlc: "sqlc";
|
|
8468
8689
|
ent: "ent";
|
|
@@ -8520,10 +8741,15 @@ declare function getAllJsonSchemas(): {
|
|
|
8520
8741
|
none: "none";
|
|
8521
8742
|
opentelemetry: "opentelemetry";
|
|
8522
8743
|
}>;
|
|
8744
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
8745
|
+
java: "java";
|
|
8746
|
+
kotlin: "kotlin";
|
|
8747
|
+
}>>;
|
|
8523
8748
|
javaWebFramework: z.ZodEnum<{
|
|
8524
8749
|
none: "none";
|
|
8525
8750
|
"spring-boot": "spring-boot";
|
|
8526
8751
|
quarkus: "quarkus";
|
|
8752
|
+
micronaut: "micronaut";
|
|
8527
8753
|
}>;
|
|
8528
8754
|
javaBuildTool: z.ZodEnum<{
|
|
8529
8755
|
none: "none";
|
|
@@ -8544,10 +8770,13 @@ declare function getAllJsonSchemas(): {
|
|
|
8544
8770
|
javaApi: z.ZodEnum<{
|
|
8545
8771
|
none: "none";
|
|
8546
8772
|
"spring-graphql": "spring-graphql";
|
|
8773
|
+
"openapi-generator": "openapi-generator";
|
|
8774
|
+
grpc: "grpc";
|
|
8547
8775
|
}>;
|
|
8548
8776
|
javaLogging: z.ZodEnum<{
|
|
8549
8777
|
none: "none";
|
|
8550
8778
|
logback: "logback";
|
|
8779
|
+
log4j2: "log4j2";
|
|
8551
8780
|
}>;
|
|
8552
8781
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
8553
8782
|
none: "none";
|
|
@@ -8664,9 +8893,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8664
8893
|
}>;
|
|
8665
8894
|
elixirApi: z.ZodEnum<{
|
|
8666
8895
|
none: "none";
|
|
8896
|
+
grpc: "grpc";
|
|
8667
8897
|
rest: "rest";
|
|
8668
8898
|
absinthe: "absinthe";
|
|
8669
|
-
grpc: "grpc";
|
|
8670
8899
|
}>;
|
|
8671
8900
|
elixirRealtime: z.ZodEnum<{
|
|
8672
8901
|
none: "none";
|
|
@@ -8790,6 +9019,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8790
9019
|
dataFetching: "dataFetching";
|
|
8791
9020
|
workspaceTooling: "workspaceTooling";
|
|
8792
9021
|
examples: "examples";
|
|
9022
|
+
language: "language";
|
|
8793
9023
|
buildTool: "buildTool";
|
|
8794
9024
|
cli: "cli";
|
|
8795
9025
|
errorHandling: "errorHandling";
|
|
@@ -8857,6 +9087,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8857
9087
|
sequelize: "sequelize";
|
|
8858
9088
|
}>;
|
|
8859
9089
|
backend: z.ZodEnum<{
|
|
9090
|
+
effect: "effect";
|
|
8860
9091
|
none: "none";
|
|
8861
9092
|
hono: "hono";
|
|
8862
9093
|
express: "express";
|
|
@@ -8949,11 +9180,15 @@ declare function getAllJsonSchemas(): {
|
|
|
8949
9180
|
}>;
|
|
8950
9181
|
payments: z.ZodEnum<{
|
|
8951
9182
|
none: "none";
|
|
9183
|
+
revenuecat: "revenuecat";
|
|
8952
9184
|
polar: "polar";
|
|
8953
9185
|
stripe: "stripe";
|
|
8954
9186
|
"lemon-squeezy": "lemon-squeezy";
|
|
8955
9187
|
paddle: "paddle";
|
|
8956
9188
|
dodo: "dodo";
|
|
9189
|
+
creem: "creem";
|
|
9190
|
+
autumn: "autumn";
|
|
9191
|
+
commet: "commet";
|
|
8957
9192
|
}>;
|
|
8958
9193
|
packageManager: z.ZodEnum<{
|
|
8959
9194
|
bun: "bun";
|
|
@@ -8961,6 +9196,10 @@ declare function getAllJsonSchemas(): {
|
|
|
8961
9196
|
pnpm: "pnpm";
|
|
8962
9197
|
yarn: "yarn";
|
|
8963
9198
|
}>;
|
|
9199
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
9200
|
+
monorepo: "monorepo";
|
|
9201
|
+
"single-app": "single-app";
|
|
9202
|
+
}>>;
|
|
8964
9203
|
versionChannel: z.ZodEnum<{
|
|
8965
9204
|
stable: "stable";
|
|
8966
9205
|
latest: "latest";
|
|
@@ -9237,6 +9476,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9237
9476
|
}>;
|
|
9238
9477
|
analytics: z.ZodEnum<{
|
|
9239
9478
|
none: "none";
|
|
9479
|
+
posthog: "posthog";
|
|
9240
9480
|
plausible: "plausible";
|
|
9241
9481
|
umami: "umami";
|
|
9242
9482
|
}>;
|
|
@@ -9251,6 +9491,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9251
9491
|
}>;
|
|
9252
9492
|
caching: z.ZodEnum<{
|
|
9253
9493
|
none: "none";
|
|
9494
|
+
redis: "redis";
|
|
9254
9495
|
"upstash-redis": "upstash-redis";
|
|
9255
9496
|
}>;
|
|
9256
9497
|
rateLimit: z.ZodEnum<{
|
|
@@ -9263,6 +9504,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9263
9504
|
paraglide: "paraglide";
|
|
9264
9505
|
i18next: "i18next";
|
|
9265
9506
|
"next-intl": "next-intl";
|
|
9507
|
+
intlayer: "intlayer";
|
|
9266
9508
|
}>;
|
|
9267
9509
|
search: z.ZodEnum<{
|
|
9268
9510
|
none: "none";
|
|
@@ -9271,6 +9513,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9271
9513
|
elasticsearch: "elasticsearch";
|
|
9272
9514
|
opensearch: "opensearch";
|
|
9273
9515
|
algolia: "algolia";
|
|
9516
|
+
bleve: "bleve";
|
|
9274
9517
|
}>;
|
|
9275
9518
|
vectorDb: z.ZodEnum<{
|
|
9276
9519
|
none: "none";
|
|
@@ -9284,6 +9527,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9284
9527
|
s3: "s3";
|
|
9285
9528
|
r2: "r2";
|
|
9286
9529
|
cloudinary: "cloudinary";
|
|
9530
|
+
"supabase-storage": "supabase-storage";
|
|
9287
9531
|
}>;
|
|
9288
9532
|
mobileNavigation: z.ZodEnum<{
|
|
9289
9533
|
none: "none";
|
|
@@ -9324,6 +9568,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9324
9568
|
axum: "axum";
|
|
9325
9569
|
"actix-web": "actix-web";
|
|
9326
9570
|
rocket: "rocket";
|
|
9571
|
+
poem: "poem";
|
|
9572
|
+
loco: "loco";
|
|
9327
9573
|
}>;
|
|
9328
9574
|
rustFrontend: z.ZodEnum<{
|
|
9329
9575
|
none: "none";
|
|
@@ -9496,9 +9742,11 @@ declare function getAllJsonSchemas(): {
|
|
|
9496
9742
|
echo: "echo";
|
|
9497
9743
|
fiber: "fiber";
|
|
9498
9744
|
chi: "chi";
|
|
9745
|
+
stdlib: "stdlib";
|
|
9499
9746
|
}>;
|
|
9500
9747
|
goOrm: z.ZodEnum<{
|
|
9501
9748
|
none: "none";
|
|
9749
|
+
bun: "bun";
|
|
9502
9750
|
gorm: "gorm";
|
|
9503
9751
|
sqlc: "sqlc";
|
|
9504
9752
|
ent: "ent";
|
|
@@ -9556,10 +9804,15 @@ declare function getAllJsonSchemas(): {
|
|
|
9556
9804
|
none: "none";
|
|
9557
9805
|
opentelemetry: "opentelemetry";
|
|
9558
9806
|
}>;
|
|
9807
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
9808
|
+
java: "java";
|
|
9809
|
+
kotlin: "kotlin";
|
|
9810
|
+
}>>;
|
|
9559
9811
|
javaWebFramework: z.ZodEnum<{
|
|
9560
9812
|
none: "none";
|
|
9561
9813
|
"spring-boot": "spring-boot";
|
|
9562
9814
|
quarkus: "quarkus";
|
|
9815
|
+
micronaut: "micronaut";
|
|
9563
9816
|
}>;
|
|
9564
9817
|
javaBuildTool: z.ZodEnum<{
|
|
9565
9818
|
none: "none";
|
|
@@ -9580,10 +9833,13 @@ declare function getAllJsonSchemas(): {
|
|
|
9580
9833
|
javaApi: z.ZodEnum<{
|
|
9581
9834
|
none: "none";
|
|
9582
9835
|
"spring-graphql": "spring-graphql";
|
|
9836
|
+
"openapi-generator": "openapi-generator";
|
|
9837
|
+
grpc: "grpc";
|
|
9583
9838
|
}>;
|
|
9584
9839
|
javaLogging: z.ZodEnum<{
|
|
9585
9840
|
none: "none";
|
|
9586
9841
|
logback: "logback";
|
|
9842
|
+
log4j2: "log4j2";
|
|
9587
9843
|
}>;
|
|
9588
9844
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
9589
9845
|
none: "none";
|
|
@@ -9700,9 +9956,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9700
9956
|
}>;
|
|
9701
9957
|
elixirApi: z.ZodEnum<{
|
|
9702
9958
|
none: "none";
|
|
9959
|
+
grpc: "grpc";
|
|
9703
9960
|
rest: "rest";
|
|
9704
9961
|
absinthe: "absinthe";
|
|
9705
|
-
grpc: "grpc";
|
|
9706
9962
|
}>;
|
|
9707
9963
|
elixirRealtime: z.ZodEnum<{
|
|
9708
9964
|
none: "none";
|
|
@@ -9826,6 +10082,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9826
10082
|
dataFetching: "dataFetching";
|
|
9827
10083
|
workspaceTooling: "workspaceTooling";
|
|
9828
10084
|
examples: "examples";
|
|
10085
|
+
language: "language";
|
|
9829
10086
|
buildTool: "buildTool";
|
|
9830
10087
|
cli: "cli";
|
|
9831
10088
|
errorHandling: "errorHandling";
|
|
@@ -9894,6 +10151,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9894
10151
|
sequelize: "sequelize";
|
|
9895
10152
|
}>;
|
|
9896
10153
|
backend: z.ZodEnum<{
|
|
10154
|
+
effect: "effect";
|
|
9897
10155
|
none: "none";
|
|
9898
10156
|
hono: "hono";
|
|
9899
10157
|
express: "express";
|
|
@@ -9986,11 +10244,15 @@ declare function getAllJsonSchemas(): {
|
|
|
9986
10244
|
}>;
|
|
9987
10245
|
payments: z.ZodEnum<{
|
|
9988
10246
|
none: "none";
|
|
10247
|
+
revenuecat: "revenuecat";
|
|
9989
10248
|
polar: "polar";
|
|
9990
10249
|
stripe: "stripe";
|
|
9991
10250
|
"lemon-squeezy": "lemon-squeezy";
|
|
9992
10251
|
paddle: "paddle";
|
|
9993
10252
|
dodo: "dodo";
|
|
10253
|
+
creem: "creem";
|
|
10254
|
+
autumn: "autumn";
|
|
10255
|
+
commet: "commet";
|
|
9994
10256
|
}>;
|
|
9995
10257
|
git: z.ZodBoolean;
|
|
9996
10258
|
packageManager: z.ZodEnum<{
|
|
@@ -9999,6 +10261,10 @@ declare function getAllJsonSchemas(): {
|
|
|
9999
10261
|
pnpm: "pnpm";
|
|
10000
10262
|
yarn: "yarn";
|
|
10001
10263
|
}>;
|
|
10264
|
+
workspaceShape: z.ZodOptional<z.ZodEnum<{
|
|
10265
|
+
monorepo: "monorepo";
|
|
10266
|
+
"single-app": "single-app";
|
|
10267
|
+
}>>;
|
|
10002
10268
|
versionChannel: z.ZodEnum<{
|
|
10003
10269
|
stable: "stable";
|
|
10004
10270
|
latest: "latest";
|
|
@@ -10276,6 +10542,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10276
10542
|
}>;
|
|
10277
10543
|
analytics: z.ZodEnum<{
|
|
10278
10544
|
none: "none";
|
|
10545
|
+
posthog: "posthog";
|
|
10279
10546
|
plausible: "plausible";
|
|
10280
10547
|
umami: "umami";
|
|
10281
10548
|
}>;
|
|
@@ -10290,6 +10557,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10290
10557
|
}>;
|
|
10291
10558
|
caching: z.ZodEnum<{
|
|
10292
10559
|
none: "none";
|
|
10560
|
+
redis: "redis";
|
|
10293
10561
|
"upstash-redis": "upstash-redis";
|
|
10294
10562
|
}>;
|
|
10295
10563
|
rateLimit: z.ZodEnum<{
|
|
@@ -10302,6 +10570,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10302
10570
|
paraglide: "paraglide";
|
|
10303
10571
|
i18next: "i18next";
|
|
10304
10572
|
"next-intl": "next-intl";
|
|
10573
|
+
intlayer: "intlayer";
|
|
10305
10574
|
}>;
|
|
10306
10575
|
search: z.ZodEnum<{
|
|
10307
10576
|
none: "none";
|
|
@@ -10310,6 +10579,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10310
10579
|
elasticsearch: "elasticsearch";
|
|
10311
10580
|
opensearch: "opensearch";
|
|
10312
10581
|
algolia: "algolia";
|
|
10582
|
+
bleve: "bleve";
|
|
10313
10583
|
}>;
|
|
10314
10584
|
vectorDb: z.ZodEnum<{
|
|
10315
10585
|
none: "none";
|
|
@@ -10323,6 +10593,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10323
10593
|
s3: "s3";
|
|
10324
10594
|
r2: "r2";
|
|
10325
10595
|
cloudinary: "cloudinary";
|
|
10596
|
+
"supabase-storage": "supabase-storage";
|
|
10326
10597
|
}>;
|
|
10327
10598
|
mobileNavigation: z.ZodEnum<{
|
|
10328
10599
|
none: "none";
|
|
@@ -10363,6 +10634,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10363
10634
|
axum: "axum";
|
|
10364
10635
|
"actix-web": "actix-web";
|
|
10365
10636
|
rocket: "rocket";
|
|
10637
|
+
poem: "poem";
|
|
10638
|
+
loco: "loco";
|
|
10366
10639
|
}>;
|
|
10367
10640
|
rustFrontend: z.ZodEnum<{
|
|
10368
10641
|
none: "none";
|
|
@@ -10535,9 +10808,11 @@ declare function getAllJsonSchemas(): {
|
|
|
10535
10808
|
echo: "echo";
|
|
10536
10809
|
fiber: "fiber";
|
|
10537
10810
|
chi: "chi";
|
|
10811
|
+
stdlib: "stdlib";
|
|
10538
10812
|
}>;
|
|
10539
10813
|
goOrm: z.ZodEnum<{
|
|
10540
10814
|
none: "none";
|
|
10815
|
+
bun: "bun";
|
|
10541
10816
|
gorm: "gorm";
|
|
10542
10817
|
sqlc: "sqlc";
|
|
10543
10818
|
ent: "ent";
|
|
@@ -10595,10 +10870,15 @@ declare function getAllJsonSchemas(): {
|
|
|
10595
10870
|
none: "none";
|
|
10596
10871
|
opentelemetry: "opentelemetry";
|
|
10597
10872
|
}>;
|
|
10873
|
+
javaLanguage: z.ZodOptional<z.ZodEnum<{
|
|
10874
|
+
java: "java";
|
|
10875
|
+
kotlin: "kotlin";
|
|
10876
|
+
}>>;
|
|
10598
10877
|
javaWebFramework: z.ZodEnum<{
|
|
10599
10878
|
none: "none";
|
|
10600
10879
|
"spring-boot": "spring-boot";
|
|
10601
10880
|
quarkus: "quarkus";
|
|
10881
|
+
micronaut: "micronaut";
|
|
10602
10882
|
}>;
|
|
10603
10883
|
javaBuildTool: z.ZodEnum<{
|
|
10604
10884
|
none: "none";
|
|
@@ -10619,10 +10899,13 @@ declare function getAllJsonSchemas(): {
|
|
|
10619
10899
|
javaApi: z.ZodEnum<{
|
|
10620
10900
|
none: "none";
|
|
10621
10901
|
"spring-graphql": "spring-graphql";
|
|
10902
|
+
"openapi-generator": "openapi-generator";
|
|
10903
|
+
grpc: "grpc";
|
|
10622
10904
|
}>;
|
|
10623
10905
|
javaLogging: z.ZodEnum<{
|
|
10624
10906
|
none: "none";
|
|
10625
10907
|
logback: "logback";
|
|
10908
|
+
log4j2: "log4j2";
|
|
10626
10909
|
}>;
|
|
10627
10910
|
javaLibraries: z.ZodArray<z.ZodEnum<{
|
|
10628
10911
|
none: "none";
|
|
@@ -10739,9 +11022,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10739
11022
|
}>;
|
|
10740
11023
|
elixirApi: z.ZodEnum<{
|
|
10741
11024
|
none: "none";
|
|
11025
|
+
grpc: "grpc";
|
|
10742
11026
|
rest: "rest";
|
|
10743
11027
|
absinthe: "absinthe";
|
|
10744
|
-
grpc: "grpc";
|
|
10745
11028
|
}>;
|
|
10746
11029
|
elixirRealtime: z.ZodEnum<{
|
|
10747
11030
|
none: "none";
|
|
@@ -10865,6 +11148,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10865
11148
|
dataFetching: "dataFetching";
|
|
10866
11149
|
workspaceTooling: "workspaceTooling";
|
|
10867
11150
|
examples: "examples";
|
|
11151
|
+
language: "language";
|
|
10868
11152
|
buildTool: "buildTool";
|
|
10869
11153
|
cli: "cli";
|
|
10870
11154
|
errorHandling: "errorHandling";
|