@better-fullstack/types 2.5.0 → 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-CbLlpynl.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 +180 -0
- 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-BRAokgPa.d.mts → schemas-CY0MaZmU.d.mts} +191 -10
- 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-BPw9KsNm.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-D7KkQm8W.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-Br0NsnBr.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-CbLlpynl.d.mts.map +0 -1
- package/dist/schemas-BRAokgPa.d.mts.map +0 -1
- package/dist/schemas-CtieNRfz.mjs.map +0 -1
- package/dist/stack-graph-BPw9KsNm.d.mts.map +0 -1
- package/dist/stack-graph-CXTiPofQ.mjs.map +0 -1
- package/dist/stack-translation-B-zArJLM.mjs.map +0 -1
- package/dist/stack-translation-D7KkQm8W.d.mts.map +0 -1
- package/dist/types-Br0NsnBr.d.mts.map +0 -1
|
@@ -45,6 +45,7 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
45
45
|
fileStorage: "fileStorage";
|
|
46
46
|
jobQueue: "jobQueue";
|
|
47
47
|
rateLimit: "rateLimit";
|
|
48
|
+
botProtection: "botProtection";
|
|
48
49
|
testing: "testing";
|
|
49
50
|
stateManagement: "stateManagement";
|
|
50
51
|
forms: "forms";
|
|
@@ -71,6 +72,17 @@ declare const StackPartRoleSchema: z.ZodEnum<{
|
|
|
71
72
|
appPlatform: "appPlatform";
|
|
72
73
|
dataFetching: "dataFetching";
|
|
73
74
|
workspaceTooling: "workspaceTooling";
|
|
75
|
+
toolchain: "toolchain";
|
|
76
|
+
workspaceRunner: "workspaceRunner";
|
|
77
|
+
gitHooks: "gitHooks";
|
|
78
|
+
staticAnalysis: "staticAnalysis";
|
|
79
|
+
aiTooling: "aiTooling";
|
|
80
|
+
codeGeneration: "codeGeneration";
|
|
81
|
+
developerEnvironment: "developerEnvironment";
|
|
82
|
+
containerOrchestration: "containerOrchestration";
|
|
83
|
+
apiGateway: "apiGateway";
|
|
84
|
+
continuousIntegration: "continuousIntegration";
|
|
85
|
+
backendUtilities: "backendUtilities";
|
|
74
86
|
examples: "examples";
|
|
75
87
|
language: "language";
|
|
76
88
|
buildTool: "buildTool";
|
|
@@ -120,6 +132,7 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
120
132
|
fileStorage: "fileStorage";
|
|
121
133
|
jobQueue: "jobQueue";
|
|
122
134
|
rateLimit: "rateLimit";
|
|
135
|
+
botProtection: "botProtection";
|
|
123
136
|
testing: "testing";
|
|
124
137
|
stateManagement: "stateManagement";
|
|
125
138
|
forms: "forms";
|
|
@@ -146,6 +159,17 @@ declare const StackPartSchema: z.ZodObject<{
|
|
|
146
159
|
appPlatform: "appPlatform";
|
|
147
160
|
dataFetching: "dataFetching";
|
|
148
161
|
workspaceTooling: "workspaceTooling";
|
|
162
|
+
toolchain: "toolchain";
|
|
163
|
+
workspaceRunner: "workspaceRunner";
|
|
164
|
+
gitHooks: "gitHooks";
|
|
165
|
+
staticAnalysis: "staticAnalysis";
|
|
166
|
+
aiTooling: "aiTooling";
|
|
167
|
+
codeGeneration: "codeGeneration";
|
|
168
|
+
developerEnvironment: "developerEnvironment";
|
|
169
|
+
containerOrchestration: "containerOrchestration";
|
|
170
|
+
apiGateway: "apiGateway";
|
|
171
|
+
continuousIntegration: "continuousIntegration";
|
|
172
|
+
backendUtilities: "backendUtilities";
|
|
149
173
|
examples: "examples";
|
|
150
174
|
language: "language";
|
|
151
175
|
buildTool: "buildTool";
|
|
@@ -270,6 +294,7 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
270
294
|
skills: "skills";
|
|
271
295
|
turborepo: "turborepo";
|
|
272
296
|
nx: "nx";
|
|
297
|
+
"vite-plus": "vite-plus";
|
|
273
298
|
fumadocs: "fumadocs";
|
|
274
299
|
ultracite: "ultracite";
|
|
275
300
|
oxlint: "oxlint";
|
|
@@ -298,12 +323,7 @@ declare const AddonsSchema: z.ZodEnum<{
|
|
|
298
323
|
electron: "electron";
|
|
299
324
|
capacitor: "capacitor";
|
|
300
325
|
}>;
|
|
301
|
-
/**
|
|
302
|
-
* Addon values that are app platforms — shells/targets that package the web
|
|
303
|
-
* frontend (desktop, mobile hybrid, browser extension, terminal, installable
|
|
304
|
-
* PWA). Surfaced as a dedicated "App Platforms" section in the CLI and web
|
|
305
|
-
* builder; they still serialize into the `addons` config field.
|
|
306
|
-
*/
|
|
326
|
+
/** @deprecated Use tooling capability metadata and Stack Part role bindings. */
|
|
307
327
|
declare const APP_PLATFORM_ADDON_VALUES: readonly ["pwa", "tauri", "electron", "capacitor", "wxt", "opentui"];
|
|
308
328
|
declare const ExamplesSchema: z.ZodEnum<{
|
|
309
329
|
ai: "ai";
|
|
@@ -507,6 +527,11 @@ declare const RateLimitSchema: z.ZodEnum<{
|
|
|
507
527
|
arcjet: "arcjet";
|
|
508
528
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
509
529
|
}>;
|
|
530
|
+
declare const BotProtectionSchema: z.ZodEnum<{
|
|
531
|
+
none: "none";
|
|
532
|
+
botid: "botid";
|
|
533
|
+
turnstile: "turnstile";
|
|
534
|
+
}>;
|
|
510
535
|
declare const I18nSchema: z.ZodEnum<{
|
|
511
536
|
none: "none";
|
|
512
537
|
paraglide: "paraglide";
|
|
@@ -589,6 +614,7 @@ declare const AnalyticsSchema: z.ZodEnum<{
|
|
|
589
614
|
plausible: "plausible";
|
|
590
615
|
umami: "umami";
|
|
591
616
|
ga4: "ga4";
|
|
617
|
+
"vercel-analytics": "vercel-analytics";
|
|
592
618
|
}>;
|
|
593
619
|
declare const MobileNavigationSchema: z.ZodEnum<{
|
|
594
620
|
none: "none";
|
|
@@ -1440,6 +1466,12 @@ declare const TemplateSchema: z.ZodEnum<{
|
|
|
1440
1466
|
t3: "t3";
|
|
1441
1467
|
saas: "saas";
|
|
1442
1468
|
}>;
|
|
1469
|
+
declare const ProjectShapeSchema: z.ZodEnum<{
|
|
1470
|
+
frontend: "frontend";
|
|
1471
|
+
backend: "backend";
|
|
1472
|
+
mobile: "mobile";
|
|
1473
|
+
fullstack: "fullstack";
|
|
1474
|
+
}>;
|
|
1443
1475
|
declare const ProjectNameSchema: z.ZodString;
|
|
1444
1476
|
declare const CreateInputSchema: z.ZodObject<{
|
|
1445
1477
|
projectName: z.ZodOptional<z.ZodString>;
|
|
@@ -1451,6 +1483,12 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1451
1483
|
t3: "t3";
|
|
1452
1484
|
saas: "saas";
|
|
1453
1485
|
}>>;
|
|
1486
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
1487
|
+
frontend: "frontend";
|
|
1488
|
+
backend: "backend";
|
|
1489
|
+
mobile: "mobile";
|
|
1490
|
+
fullstack: "fullstack";
|
|
1491
|
+
}>>;
|
|
1454
1492
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1455
1493
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
1456
1494
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1551,6 +1589,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1551
1589
|
skills: "skills";
|
|
1552
1590
|
turborepo: "turborepo";
|
|
1553
1591
|
nx: "nx";
|
|
1592
|
+
"vite-plus": "vite-plus";
|
|
1554
1593
|
fumadocs: "fumadocs";
|
|
1555
1594
|
ultracite: "ultracite";
|
|
1556
1595
|
oxlint: "oxlint";
|
|
@@ -1921,6 +1960,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1921
1960
|
plausible: "plausible";
|
|
1922
1961
|
umami: "umami";
|
|
1923
1962
|
ga4: "ga4";
|
|
1963
|
+
"vercel-analytics": "vercel-analytics";
|
|
1924
1964
|
}>>;
|
|
1925
1965
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
1926
1966
|
none: "none";
|
|
@@ -1942,6 +1982,11 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1942
1982
|
arcjet: "arcjet";
|
|
1943
1983
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
1944
1984
|
}>>;
|
|
1985
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
1986
|
+
none: "none";
|
|
1987
|
+
botid: "botid";
|
|
1988
|
+
turnstile: "turnstile";
|
|
1989
|
+
}>>;
|
|
1945
1990
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
1946
1991
|
none: "none";
|
|
1947
1992
|
paraglide: "paraglide";
|
|
@@ -2884,6 +2929,11 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
2884
2929
|
arcjet: "arcjet";
|
|
2885
2930
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
2886
2931
|
}>>;
|
|
2932
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
2933
|
+
none: "none";
|
|
2934
|
+
botid: "botid";
|
|
2935
|
+
turnstile: "turnstile";
|
|
2936
|
+
}>>;
|
|
2887
2937
|
testing: z.ZodOptional<z.ZodEnum<{
|
|
2888
2938
|
none: "none";
|
|
2889
2939
|
vitest: "vitest";
|
|
@@ -3001,6 +3051,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3001
3051
|
plausible: "plausible";
|
|
3002
3052
|
umami: "umami";
|
|
3003
3053
|
ga4: "ga4";
|
|
3054
|
+
"vercel-analytics": "vercel-analytics";
|
|
3004
3055
|
}>>;
|
|
3005
3056
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
3006
3057
|
none: "none";
|
|
@@ -3057,6 +3108,7 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
3057
3108
|
skills: "skills";
|
|
3058
3109
|
turborepo: "turborepo";
|
|
3059
3110
|
nx: "nx";
|
|
3111
|
+
"vite-plus": "vite-plus";
|
|
3060
3112
|
fumadocs: "fumadocs";
|
|
3061
3113
|
ultracite: "ultracite";
|
|
3062
3114
|
oxlint: "oxlint";
|
|
@@ -3974,6 +4026,12 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
3974
4026
|
t3: "t3";
|
|
3975
4027
|
saas: "saas";
|
|
3976
4028
|
}>>;
|
|
4029
|
+
shape: z.ZodOptional<z.ZodEnum<{
|
|
4030
|
+
frontend: "frontend";
|
|
4031
|
+
backend: "backend";
|
|
4032
|
+
mobile: "mobile";
|
|
4033
|
+
fullstack: "fullstack";
|
|
4034
|
+
}>>;
|
|
3977
4035
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
3978
4036
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
3979
4037
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4074,6 +4132,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4074
4132
|
skills: "skills";
|
|
4075
4133
|
turborepo: "turborepo";
|
|
4076
4134
|
nx: "nx";
|
|
4135
|
+
"vite-plus": "vite-plus";
|
|
4077
4136
|
fumadocs: "fumadocs";
|
|
4078
4137
|
ultracite: "ultracite";
|
|
4079
4138
|
oxlint: "oxlint";
|
|
@@ -4444,6 +4503,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4444
4503
|
plausible: "plausible";
|
|
4445
4504
|
umami: "umami";
|
|
4446
4505
|
ga4: "ga4";
|
|
4506
|
+
"vercel-analytics": "vercel-analytics";
|
|
4447
4507
|
}>>;
|
|
4448
4508
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
4449
4509
|
none: "none";
|
|
@@ -4465,6 +4525,11 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
4465
4525
|
arcjet: "arcjet";
|
|
4466
4526
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
4467
4527
|
}>>;
|
|
4528
|
+
botProtection: z.ZodOptional<z.ZodEnum<{
|
|
4529
|
+
none: "none";
|
|
4530
|
+
botid: "botid";
|
|
4531
|
+
turnstile: "turnstile";
|
|
4532
|
+
}>>;
|
|
4468
4533
|
i18n: z.ZodOptional<z.ZodEnum<{
|
|
4469
4534
|
none: "none";
|
|
4470
4535
|
paraglide: "paraglide";
|
|
@@ -5329,6 +5394,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5329
5394
|
skills: "skills";
|
|
5330
5395
|
turborepo: "turborepo";
|
|
5331
5396
|
nx: "nx";
|
|
5397
|
+
"vite-plus": "vite-plus";
|
|
5332
5398
|
fumadocs: "fumadocs";
|
|
5333
5399
|
ultracite: "ultracite";
|
|
5334
5400
|
oxlint: "oxlint";
|
|
@@ -5697,6 +5763,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5697
5763
|
plausible: "plausible";
|
|
5698
5764
|
umami: "umami";
|
|
5699
5765
|
ga4: "ga4";
|
|
5766
|
+
"vercel-analytics": "vercel-analytics";
|
|
5700
5767
|
}>;
|
|
5701
5768
|
cms: z.ZodEnum<{
|
|
5702
5769
|
none: "none";
|
|
@@ -5718,6 +5785,11 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
5718
5785
|
arcjet: "arcjet";
|
|
5719
5786
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
5720
5787
|
}>;
|
|
5788
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
5789
|
+
none: "none";
|
|
5790
|
+
botid: "botid";
|
|
5791
|
+
turnstile: "turnstile";
|
|
5792
|
+
}>>;
|
|
5721
5793
|
i18n: z.ZodEnum<{
|
|
5722
5794
|
none: "none";
|
|
5723
5795
|
paraglide: "paraglide";
|
|
@@ -6513,6 +6585,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6513
6585
|
fileStorage: "fileStorage";
|
|
6514
6586
|
jobQueue: "jobQueue";
|
|
6515
6587
|
rateLimit: "rateLimit";
|
|
6588
|
+
botProtection: "botProtection";
|
|
6516
6589
|
testing: "testing";
|
|
6517
6590
|
stateManagement: "stateManagement";
|
|
6518
6591
|
forms: "forms";
|
|
@@ -6539,6 +6612,17 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
6539
6612
|
appPlatform: "appPlatform";
|
|
6540
6613
|
dataFetching: "dataFetching";
|
|
6541
6614
|
workspaceTooling: "workspaceTooling";
|
|
6615
|
+
toolchain: "toolchain";
|
|
6616
|
+
workspaceRunner: "workspaceRunner";
|
|
6617
|
+
gitHooks: "gitHooks";
|
|
6618
|
+
staticAnalysis: "staticAnalysis";
|
|
6619
|
+
aiTooling: "aiTooling";
|
|
6620
|
+
codeGeneration: "codeGeneration";
|
|
6621
|
+
developerEnvironment: "developerEnvironment";
|
|
6622
|
+
containerOrchestration: "containerOrchestration";
|
|
6623
|
+
apiGateway: "apiGateway";
|
|
6624
|
+
continuousIntegration: "continuousIntegration";
|
|
6625
|
+
backendUtilities: "backendUtilities";
|
|
6542
6626
|
examples: "examples";
|
|
6543
6627
|
language: "language";
|
|
6544
6628
|
buildTool: "buildTool";
|
|
@@ -6672,6 +6756,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
6672
6756
|
skills: "skills";
|
|
6673
6757
|
turborepo: "turborepo";
|
|
6674
6758
|
nx: "nx";
|
|
6759
|
+
"vite-plus": "vite-plus";
|
|
6675
6760
|
fumadocs: "fumadocs";
|
|
6676
6761
|
ultracite: "ultracite";
|
|
6677
6762
|
oxlint: "oxlint";
|
|
@@ -7038,6 +7123,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7038
7123
|
plausible: "plausible";
|
|
7039
7124
|
umami: "umami";
|
|
7040
7125
|
ga4: "ga4";
|
|
7126
|
+
"vercel-analytics": "vercel-analytics";
|
|
7041
7127
|
}>;
|
|
7042
7128
|
cms: z.ZodEnum<{
|
|
7043
7129
|
none: "none";
|
|
@@ -7059,6 +7145,11 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7059
7145
|
arcjet: "arcjet";
|
|
7060
7146
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
7061
7147
|
}>;
|
|
7148
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
7149
|
+
none: "none";
|
|
7150
|
+
botid: "botid";
|
|
7151
|
+
turnstile: "turnstile";
|
|
7152
|
+
}>>;
|
|
7062
7153
|
i18n: z.ZodEnum<{
|
|
7063
7154
|
none: "none";
|
|
7064
7155
|
paraglide: "paraglide";
|
|
@@ -7854,6 +7945,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7854
7945
|
fileStorage: "fileStorage";
|
|
7855
7946
|
jobQueue: "jobQueue";
|
|
7856
7947
|
rateLimit: "rateLimit";
|
|
7948
|
+
botProtection: "botProtection";
|
|
7857
7949
|
testing: "testing";
|
|
7858
7950
|
stateManagement: "stateManagement";
|
|
7859
7951
|
forms: "forms";
|
|
@@ -7880,6 +7972,17 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
7880
7972
|
appPlatform: "appPlatform";
|
|
7881
7973
|
dataFetching: "dataFetching";
|
|
7882
7974
|
workspaceTooling: "workspaceTooling";
|
|
7975
|
+
toolchain: "toolchain";
|
|
7976
|
+
workspaceRunner: "workspaceRunner";
|
|
7977
|
+
gitHooks: "gitHooks";
|
|
7978
|
+
staticAnalysis: "staticAnalysis";
|
|
7979
|
+
aiTooling: "aiTooling";
|
|
7980
|
+
codeGeneration: "codeGeneration";
|
|
7981
|
+
developerEnvironment: "developerEnvironment";
|
|
7982
|
+
containerOrchestration: "containerOrchestration";
|
|
7983
|
+
apiGateway: "apiGateway";
|
|
7984
|
+
continuousIntegration: "continuousIntegration";
|
|
7985
|
+
backendUtilities: "backendUtilities";
|
|
7883
7986
|
examples: "examples";
|
|
7884
7987
|
language: "language";
|
|
7885
7988
|
buildTool: "buildTool";
|
|
@@ -8013,6 +8116,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8013
8116
|
skills: "skills";
|
|
8014
8117
|
turborepo: "turborepo";
|
|
8015
8118
|
nx: "nx";
|
|
8119
|
+
"vite-plus": "vite-plus";
|
|
8016
8120
|
fumadocs: "fumadocs";
|
|
8017
8121
|
ultracite: "ultracite";
|
|
8018
8122
|
oxlint: "oxlint";
|
|
@@ -8379,6 +8483,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8379
8483
|
plausible: "plausible";
|
|
8380
8484
|
umami: "umami";
|
|
8381
8485
|
ga4: "ga4";
|
|
8486
|
+
"vercel-analytics": "vercel-analytics";
|
|
8382
8487
|
}>;
|
|
8383
8488
|
cms: z.ZodEnum<{
|
|
8384
8489
|
none: "none";
|
|
@@ -8400,6 +8505,11 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
8400
8505
|
arcjet: "arcjet";
|
|
8401
8506
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
8402
8507
|
}>;
|
|
8508
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
8509
|
+
none: "none";
|
|
8510
|
+
botid: "botid";
|
|
8511
|
+
turnstile: "turnstile";
|
|
8512
|
+
}>>;
|
|
8403
8513
|
i18n: z.ZodEnum<{
|
|
8404
8514
|
none: "none";
|
|
8405
8515
|
paraglide: "paraglide";
|
|
@@ -9195,6 +9305,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9195
9305
|
fileStorage: "fileStorage";
|
|
9196
9306
|
jobQueue: "jobQueue";
|
|
9197
9307
|
rateLimit: "rateLimit";
|
|
9308
|
+
botProtection: "botProtection";
|
|
9198
9309
|
testing: "testing";
|
|
9199
9310
|
stateManagement: "stateManagement";
|
|
9200
9311
|
forms: "forms";
|
|
@@ -9221,6 +9332,17 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
9221
9332
|
appPlatform: "appPlatform";
|
|
9222
9333
|
dataFetching: "dataFetching";
|
|
9223
9334
|
workspaceTooling: "workspaceTooling";
|
|
9335
|
+
toolchain: "toolchain";
|
|
9336
|
+
workspaceRunner: "workspaceRunner";
|
|
9337
|
+
gitHooks: "gitHooks";
|
|
9338
|
+
staticAnalysis: "staticAnalysis";
|
|
9339
|
+
aiTooling: "aiTooling";
|
|
9340
|
+
codeGeneration: "codeGeneration";
|
|
9341
|
+
developerEnvironment: "developerEnvironment";
|
|
9342
|
+
containerOrchestration: "containerOrchestration";
|
|
9343
|
+
apiGateway: "apiGateway";
|
|
9344
|
+
continuousIntegration: "continuousIntegration";
|
|
9345
|
+
backendUtilities: "backendUtilities";
|
|
9224
9346
|
examples: "examples";
|
|
9225
9347
|
language: "language";
|
|
9226
9348
|
buildTool: "buildTool";
|
|
@@ -9355,6 +9477,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9355
9477
|
skills: "skills";
|
|
9356
9478
|
turborepo: "turborepo";
|
|
9357
9479
|
nx: "nx";
|
|
9480
|
+
"vite-plus": "vite-plus";
|
|
9358
9481
|
fumadocs: "fumadocs";
|
|
9359
9482
|
ultracite: "ultracite";
|
|
9360
9483
|
oxlint: "oxlint";
|
|
@@ -9721,6 +9844,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9721
9844
|
plausible: "plausible";
|
|
9722
9845
|
umami: "umami";
|
|
9723
9846
|
ga4: "ga4";
|
|
9847
|
+
"vercel-analytics": "vercel-analytics";
|
|
9724
9848
|
}>;
|
|
9725
9849
|
cms: z.ZodEnum<{
|
|
9726
9850
|
none: "none";
|
|
@@ -9742,6 +9866,11 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
9742
9866
|
arcjet: "arcjet";
|
|
9743
9867
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
9744
9868
|
}>;
|
|
9869
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
9870
|
+
none: "none";
|
|
9871
|
+
botid: "botid";
|
|
9872
|
+
turnstile: "turnstile";
|
|
9873
|
+
}>>;
|
|
9745
9874
|
i18n: z.ZodEnum<{
|
|
9746
9875
|
none: "none";
|
|
9747
9876
|
paraglide: "paraglide";
|
|
@@ -10537,6 +10666,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10537
10666
|
fileStorage: "fileStorage";
|
|
10538
10667
|
jobQueue: "jobQueue";
|
|
10539
10668
|
rateLimit: "rateLimit";
|
|
10669
|
+
botProtection: "botProtection";
|
|
10540
10670
|
testing: "testing";
|
|
10541
10671
|
stateManagement: "stateManagement";
|
|
10542
10672
|
forms: "forms";
|
|
@@ -10563,6 +10693,17 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
10563
10693
|
appPlatform: "appPlatform";
|
|
10564
10694
|
dataFetching: "dataFetching";
|
|
10565
10695
|
workspaceTooling: "workspaceTooling";
|
|
10696
|
+
toolchain: "toolchain";
|
|
10697
|
+
workspaceRunner: "workspaceRunner";
|
|
10698
|
+
gitHooks: "gitHooks";
|
|
10699
|
+
staticAnalysis: "staticAnalysis";
|
|
10700
|
+
aiTooling: "aiTooling";
|
|
10701
|
+
codeGeneration: "codeGeneration";
|
|
10702
|
+
developerEnvironment: "developerEnvironment";
|
|
10703
|
+
containerOrchestration: "containerOrchestration";
|
|
10704
|
+
apiGateway: "apiGateway";
|
|
10705
|
+
continuousIntegration: "continuousIntegration";
|
|
10706
|
+
backendUtilities: "backendUtilities";
|
|
10566
10707
|
examples: "examples";
|
|
10567
10708
|
language: "language";
|
|
10568
10709
|
buildTool: "buildTool";
|
|
@@ -10697,6 +10838,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
10697
10838
|
skills: "skills";
|
|
10698
10839
|
turborepo: "turborepo";
|
|
10699
10840
|
nx: "nx";
|
|
10841
|
+
"vite-plus": "vite-plus";
|
|
10700
10842
|
fumadocs: "fumadocs";
|
|
10701
10843
|
ultracite: "ultracite";
|
|
10702
10844
|
oxlint: "oxlint";
|
|
@@ -11063,6 +11205,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11063
11205
|
plausible: "plausible";
|
|
11064
11206
|
umami: "umami";
|
|
11065
11207
|
ga4: "ga4";
|
|
11208
|
+
"vercel-analytics": "vercel-analytics";
|
|
11066
11209
|
}>;
|
|
11067
11210
|
cms: z.ZodEnum<{
|
|
11068
11211
|
none: "none";
|
|
@@ -11084,6 +11227,11 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11084
11227
|
arcjet: "arcjet";
|
|
11085
11228
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
11086
11229
|
}>;
|
|
11230
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
11231
|
+
none: "none";
|
|
11232
|
+
botid: "botid";
|
|
11233
|
+
turnstile: "turnstile";
|
|
11234
|
+
}>>;
|
|
11087
11235
|
i18n: z.ZodEnum<{
|
|
11088
11236
|
none: "none";
|
|
11089
11237
|
paraglide: "paraglide";
|
|
@@ -11879,6 +12027,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11879
12027
|
fileStorage: "fileStorage";
|
|
11880
12028
|
jobQueue: "jobQueue";
|
|
11881
12029
|
rateLimit: "rateLimit";
|
|
12030
|
+
botProtection: "botProtection";
|
|
11882
12031
|
testing: "testing";
|
|
11883
12032
|
stateManagement: "stateManagement";
|
|
11884
12033
|
forms: "forms";
|
|
@@ -11905,6 +12054,17 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
11905
12054
|
appPlatform: "appPlatform";
|
|
11906
12055
|
dataFetching: "dataFetching";
|
|
11907
12056
|
workspaceTooling: "workspaceTooling";
|
|
12057
|
+
toolchain: "toolchain";
|
|
12058
|
+
workspaceRunner: "workspaceRunner";
|
|
12059
|
+
gitHooks: "gitHooks";
|
|
12060
|
+
staticAnalysis: "staticAnalysis";
|
|
12061
|
+
aiTooling: "aiTooling";
|
|
12062
|
+
codeGeneration: "codeGeneration";
|
|
12063
|
+
developerEnvironment: "developerEnvironment";
|
|
12064
|
+
containerOrchestration: "containerOrchestration";
|
|
12065
|
+
apiGateway: "apiGateway";
|
|
12066
|
+
continuousIntegration: "continuousIntegration";
|
|
12067
|
+
backendUtilities: "backendUtilities";
|
|
11908
12068
|
examples: "examples";
|
|
11909
12069
|
language: "language";
|
|
11910
12070
|
buildTool: "buildTool";
|
|
@@ -12039,6 +12199,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12039
12199
|
skills: "skills";
|
|
12040
12200
|
turborepo: "turborepo";
|
|
12041
12201
|
nx: "nx";
|
|
12202
|
+
"vite-plus": "vite-plus";
|
|
12042
12203
|
fumadocs: "fumadocs";
|
|
12043
12204
|
ultracite: "ultracite";
|
|
12044
12205
|
oxlint: "oxlint";
|
|
@@ -12407,6 +12568,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12407
12568
|
plausible: "plausible";
|
|
12408
12569
|
umami: "umami";
|
|
12409
12570
|
ga4: "ga4";
|
|
12571
|
+
"vercel-analytics": "vercel-analytics";
|
|
12410
12572
|
}>;
|
|
12411
12573
|
cms: z.ZodEnum<{
|
|
12412
12574
|
none: "none";
|
|
@@ -12428,6 +12590,11 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
12428
12590
|
arcjet: "arcjet";
|
|
12429
12591
|
"upstash-ratelimit": "upstash-ratelimit";
|
|
12430
12592
|
}>;
|
|
12593
|
+
botProtection: z.ZodDefault<z.ZodEnum<{
|
|
12594
|
+
none: "none";
|
|
12595
|
+
botid: "botid";
|
|
12596
|
+
turnstile: "turnstile";
|
|
12597
|
+
}>>;
|
|
12431
12598
|
i18n: z.ZodEnum<{
|
|
12432
12599
|
none: "none";
|
|
12433
12600
|
paraglide: "paraglide";
|
|
@@ -13223,6 +13390,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13223
13390
|
fileStorage: "fileStorage";
|
|
13224
13391
|
jobQueue: "jobQueue";
|
|
13225
13392
|
rateLimit: "rateLimit";
|
|
13393
|
+
botProtection: "botProtection";
|
|
13226
13394
|
testing: "testing";
|
|
13227
13395
|
stateManagement: "stateManagement";
|
|
13228
13396
|
forms: "forms";
|
|
@@ -13249,6 +13417,17 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
13249
13417
|
appPlatform: "appPlatform";
|
|
13250
13418
|
dataFetching: "dataFetching";
|
|
13251
13419
|
workspaceTooling: "workspaceTooling";
|
|
13420
|
+
toolchain: "toolchain";
|
|
13421
|
+
workspaceRunner: "workspaceRunner";
|
|
13422
|
+
gitHooks: "gitHooks";
|
|
13423
|
+
staticAnalysis: "staticAnalysis";
|
|
13424
|
+
aiTooling: "aiTooling";
|
|
13425
|
+
codeGeneration: "codeGeneration";
|
|
13426
|
+
developerEnvironment: "developerEnvironment";
|
|
13427
|
+
containerOrchestration: "containerOrchestration";
|
|
13428
|
+
apiGateway: "apiGateway";
|
|
13429
|
+
continuousIntegration: "continuousIntegration";
|
|
13430
|
+
backendUtilities: "backendUtilities";
|
|
13252
13431
|
examples: "examples";
|
|
13253
13432
|
language: "language";
|
|
13254
13433
|
buildTool: "buildTool";
|
|
@@ -13305,7 +13484,7 @@ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm
|
|
|
13305
13484
|
declare const BACKEND_VALUES: ("effect" | "none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
13306
13485
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
13307
13486
|
declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "vanilla-vite" | "vue" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
|
|
13308
|
-
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
|
|
13487
|
+
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "vite-plus" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
|
|
13309
13488
|
declare const EXAMPLES_VALUES: ("ai" | "none" | "chat-sdk" | "tanstack-showcase")[];
|
|
13310
13489
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
|
|
13311
13490
|
declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
|
|
@@ -13318,6 +13497,7 @@ declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "ra
|
|
|
13318
13497
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
|
|
13319
13498
|
declare const DIRECTORY_CONFLICT_VALUES: ("error" | "merge" | "overwrite" | "increment")[];
|
|
13320
13499
|
declare const TEMPLATE_VALUES: ("none" | "uniwind" | "mern" | "pern" | "t3" | "saas")[];
|
|
13500
|
+
declare const PROJECT_SHAPE_VALUES: ("frontend" | "backend" | "mobile" | "fullstack")[];
|
|
13321
13501
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "vue" | "svelte" | "solid" | "react")[];
|
|
13322
13502
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "openai-sdk" | "anthropic-sdk" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
13323
13503
|
declare const EFFECT_VALUES: ("effect" | "none" | "effect-full")[];
|
|
@@ -13337,7 +13517,7 @@ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "signoz" | "sent
|
|
|
13337
13517
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
13338
13518
|
declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
|
|
13339
13519
|
declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
|
|
13340
|
-
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4")[];
|
|
13520
|
+
declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4" | "vercel-analytics")[];
|
|
13341
13521
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
13342
13522
|
declare const MOBILE_UI_VALUES: ("none" | "tamagui" | "gluestack-ui" | "uniwind" | "unistyles")[];
|
|
13343
13523
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
@@ -13349,6 +13529,7 @@ declare const MOBILE_LIBRARIES_VALUES: ("none" | "expo-sqlite" | "expo-camera" |
|
|
|
13349
13529
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi" | "tinacms" | "directus" | "keystatic" | "contentful")[];
|
|
13350
13530
|
declare const CACHING_VALUES: ("none" | "redis" | "upstash-redis")[];
|
|
13351
13531
|
declare const RATE_LIMIT_VALUES: ("none" | "arcjet" | "upstash-ratelimit")[];
|
|
13532
|
+
declare const BOT_PROTECTION_VALUES: ("none" | "botid" | "turnstile")[];
|
|
13352
13533
|
declare const I18N_VALUES: ("none" | "paraglide" | "i18next" | "next-intl" | "intlayer")[];
|
|
13353
13534
|
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense" | "elasticsearch" | "opensearch" | "algolia" | "bleve")[];
|
|
13354
13535
|
declare const VECTOR_DB_VALUES: ("none" | "pgvector" | "qdrant" | "chroma" | "pinecone")[];
|
|
@@ -13463,5 +13644,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
13463
13644
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
13464
13645
|
declare const SHADCN_RADIUS_VALUES: ("default" | "none" | "small" | "medium" | "large")[];
|
|
13465
13646
|
//#endregion
|
|
13466
|
-
export {
|
|
13467
|
-
//# sourceMappingURL=schemas-
|
|
13647
|
+
export { DatabaseSchema as $, StackPartRoleSchema as $a, REALTIME_VALUES as $i, GoQualitySchema as $n, ORMSchema as $r, ElixirHttpServerSchema as $t, CMS_VALUES as A, RustTemplatingSchema as Aa, ProjectShapeSchema as Ai, GO_MESSAGE_QUEUE_VALUES as An, KOTLIN_MOBILE_LIBRARIES_VALUES as Ar, ELIXIR_JSON_VALUES as At, DOTNET_AUTH_VALUES as B, SHADCN_STYLE_VALUES as Ba, PythonMediaSchema as Bi, GO_WEB_FRAMEWORK_VALUES as Bn, MOBILE_PUSH_VALUES as Br, EXAMPLES_VALUES as Bt, BetterFullstackConfigSchema as C, RustFrontendSchema as Ca, PYTHON_TESTING_VALUES as Ci, GO_API_VALUES as Cn, JavaLanguageSchema as Cr, ELIXIR_DEPLOY_VALUES as Ct, CACHING_VALUES as D, RustObservabilitySchema as Da, PaymentsSchema as Di, GO_CONFIG_VALUES as Dn, JavaTestingLibrariesSchema as Dr, ELIXIR_HTTP_VALUES as Dt, BotProtectionSchema as E, RustMessageQueueSchema as Ea, PackageManagerSchema as Ei, GO_CLI_VALUES as En, JavaOrmSchema as Er, ELIXIR_HTTP_SERVER_VALUES as Et, DART_MOBILE_VALUES as F, SHADCN_BASE_VALUES as Fa, PythonCliSchema as Fi, GO_QUALITY_VALUES as Fn, LoggingSchema as Fr, ELIXIR_REALTIME_VALUES as Ft, DOTNET_LIBRARIES_VALUES as G, ShadcnBaseColorSchema as Ga, PythonQualitySchema as Gi, GoConfigSchema as Gn, MobileLibrariesSchema as Gr, ElixirApplicationFrameworkSchema as Gt, DOTNET_DEPLOY_VALUES as H, SWIFT_MOBILE_VALUES as Ha, PythonObservabilitySchema as Hi, GoAuthSchema as Hn, MOBILE_TESTING_VALUES as Hr, EcosystemSchema as Ht, DATABASE_SETUP_VALUES as I, SHADCN_COLOR_THEME_VALUES as Ia, PythonCloudSdkSchema as Ii, GO_REALTIME_VALUES as In, MOBILE_DEEP_LINKING_VALUES as Ir, ELIXIR_TESTING_VALUES as It, DOTNET_REALTIME_VALUES as J, ShadcnFontSchema as Ja, PythonTaskQueueSchema as Ji, GoMessageQueueSchema as Jn, MobilePushSchema as Jr, ElixirClusteringSchema as Jt, DOTNET_OBSERVABILITY_VALUES as K, ShadcnBaseSchema as Ka, PythonRealtimeSchema as Ki, GoDISchema as Kn, MobileNavigationSchema as Kr, ElixirAuthSchema as Kt, DATABASE_VALUES as L, SHADCN_FONT_VALUES as La, PythonDataSchema as Li, GO_TEMPLATING_VALUES as Ln, MOBILE_LIBRARIES_VALUES as Lr, ELIXIR_VALIDATION_VALUES as Lt, CSS_FRAMEWORK_VALUES as M, SEARCH_VALUES as Ma, PythonApiSchema as Mi, GO_OBSERVABILITY_VALUES as Mn, KotlinMobileLibrariesSchema as Mr, ELIXIR_OBSERVABILITY_VALUES as Mt, CachingSchema as N, SERVER_DEPLOY_VALUES as Na, PythonAuthSchema as Ni, GO_ORM_VALUES as Nn, KotlinMobileSchema as Nr, ELIXIR_ORM_VALUES as Nt, CLIInputSchema as O, RustOrmSchema as Oa, ProjectConfigSchema as Oi, GO_DI_VALUES as On, JavaWebFrameworkSchema as Or, ELIXIR_I18N_VALUES as Ot, CreateInputSchema as P, SHADCN_BASE_COLOR_VALUES as Pa, PythonCachingSchema as Pi, GO_PROTO_TOOLING_VALUES as Pn, LOGGING_VALUES as Pr, ELIXIR_QUALITY_VALUES as Pt, DartMobileSchema as Q, StackPartEcosystemSchema as Qa, RATE_LIMIT_VALUES as Qi, GoProtoToolingSchema as Qn, OBSERVABILITY_VALUES as Qr, ElixirHttpSchema as Qt, DIRECTORY_CONFLICT_VALUES as R, SHADCN_ICON_LIBRARY_VALUES as Ra, PythonGraphqlSchema as Ri, GO_TESTING_VALUES as Rn, MOBILE_NAVIGATION_VALUES as Rr, ELIXIR_WEB_FRAMEWORK_VALUES as Rt, BetterFullstackConfigFileSchema as S, RustErrorHandlingSchema as Sa, PYTHON_TASK_QUEUE_VALUES as Si, FrontendSchema as Sn, JavaBuildToolSchema as Sr, ELIXIR_CLUSTERING_VALUES as St, BetterTStackConfigSchema as T, RustLoggingSchema as Ta, PYTHON_WEB_FRAMEWORK_VALUES as Ti, GO_CACHING_VALUES as Tn, JavaLoggingSchema as Tr, ELIXIR_EMAIL_VALUES as Tt, DOTNET_FRONTEND_VALUES as U, SearchSchema as Ua, PythonOrmSchema as Ui, GoCachingSchema as Un, MOBILE_UI_VALUES as Ur, EffectSchema as Ut, DOTNET_CACHING_VALUES as V, STATE_MANAGEMENT_VALUES as Va, PythonMessageQueueSchema as Vi, GoApiSchema as Vn, MOBILE_STORAGE_VALUES as Vr, EcommerceSchema as Vt, DOTNET_JOB_QUEUE_VALUES as W, ServerDeploySchema as Wa, PythonPackageManagerSchema as Wi, GoCliSchema as Wn, MobileDeepLinkingSchema as Wr, ElixirApiSchema as Wt, DOTNET_VALIDATION_VALUES as X, ShadcnRadiusSchema as Xa, PythonValidationSchema as Xi, GoObservabilitySchema as Xn, MobileTestingSchema as Xr, ElixirDocumentationSchema as Xt, DOTNET_TESTING_VALUES as Y, ShadcnIconLibrarySchema as Ya, PythonTestingSchema as Yi, GoMigrationsSchema as Yn, MobileStorageSchema as Yr, ElixirDeploySchema as Yt, DOTNET_WEB_FRAMEWORK_VALUES as Z, ShadcnStyleSchema as Za, PythonWebFrameworkSchema as Zi, GoOrmSchema as Zn, MobileUISchema as Zr, ElixirEmailSchema as Zt, AstroIntegrationSchema as _, RuntimeSchema as _a, PYTHON_ORM_VALUES as _i, FRONTEND_VALUES as _n, WORKSPACE_SHAPE_VALUES as _o, JAVA_TESTING_LIBRARIES_VALUES as _r, EFFECT_VALUES as _t, ANALYTICS_VALUES as a, RUST_ERROR_HANDLING_VALUES as aa, PYTHON_AI_VALUES as ai, ElixirOrmSchema as an, TESTING_VALUES as ao, I18N_VALUES as ar, DotnetDeploySchema as at, BOT_PROTECTION_VALUES as b, RustCachingSchema as ba, PYTHON_REALTIME_VALUES as bi, FileUploadSchema as bn, JavaApiSchema as br, ELIXIR_AUTH_VALUES as bt, API_VALUES as c, RUST_LOGGING_VALUES as ca, PYTHON_CACHING_VALUES as ci, ElixirTestingSchema as cn, UILibrarySchema as co, InitResultSchema as cr, DotnetLibrariesSchema as ct, AUTH_VALUES as d, RUST_ORM_VALUES as da, PYTHON_DATA_VALUES as di, EmailSchema as dn, VECTOR_DB_VALUES as do, JAVA_AUTH_VALUES as dr, DotnetRealtimeSchema as dt, RUNTIME_VALUES as ea, ORM_VALUES as ei, ElixirI18nSchema as en, StackPartSchema as eo, GoRealtimeSchema as er, DatabaseSetupSchema as et, AddInputSchema as f, RUST_REALTIME_VALUES as fa, PYTHON_GRAPHQL_VALUES as fi, ExamplesSchema as fn, VERSION_CHANNEL_VALUES as fo, JAVA_BUILD_TOOL_VALUES as fr, DotnetTestingSchema as ft, AnimationSchema as g, RealtimeSchema as ga, PYTHON_OBSERVABILITY_VALUES as gi, FORMS_VALUES as gn, WEB_DEPLOY_VALUES as go, JAVA_ORM_VALUES as gr, ECOSYSTEM_VALUES as gt, AnalyticsSchema as h, RateLimitSchema as ha, PYTHON_MESSAGE_QUEUE_VALUES as hi, FILE_UPLOAD_VALUES as hn, VersionChannelSchema as ho, JAVA_LOGGING_VALUES as hr, ECOMMERCE_VALUES as ht, AI_VALUES as i, RUST_CLI_VALUES as ia, PROJECT_SHAPE_VALUES as ii, ElixirObservabilitySchema as in, TEMPLATE_VALUES as io, GoWebFrameworkSchema as ir, DotnetCachingSchema as it, CSSFrameworkSchema as j, RustWebFrameworkSchema as ja, PythonAiSchema as ji, GO_MIGRATIONS_VALUES as jn, KOTLIN_MOBILE_VALUES as jr, ELIXIR_LIBRARIES_VALUES as jt, CMSSchema as k, RustRealtimeSchema as ka, ProjectNameSchema as ki, GO_LOGGING_VALUES as kn, JobQueueSchema as kr, ELIXIR_JOBS_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RUST_MESSAGE_QUEUE_VALUES as la, PYTHON_CLI_VALUES as li, ElixirValidationSchema as ln, UI_LIBRARY_VALUES as lo, IntegrationsSchema as lr, DotnetObservabilitySchema as lt, AiDocsSchema as m, RUST_WEB_FRAMEWORK_VALUES as ma, PYTHON_MEDIA_VALUES as mi, FILE_STORAGE_VALUES as mn, VectorDbSchema as mo, JAVA_LIBRARIES_VALUES as mr, DotnetWebFrameworkSchema as mt, AISchema as n, RUST_AUTH_VALUES as na, PACKAGE_MANAGER_VALUES as ni, ElixirJsonSchema as nn, StateManagementSchema as no, GoTestingSchema as nr, DotnetApiSchema as nt, ANIMATION_VALUES as o, RUST_FRONTEND_VALUES as oa, PYTHON_API_VALUES as oi, ElixirQualitySchema as on, TemplateSchema as oo, I18nSchema as or, DotnetFrontendSchema as ot, AddonsSchema as p, RUST_TEMPLATING_VALUES as pa, PYTHON_HTTP_CLIENT_VALUES as pi, FEATURE_FLAGS_VALUES as pn, ValidationSchema as po, JAVA_LANGUAGE_VALUES as pr, DotnetValidationSchema as pt, DOTNET_ORM_VALUES as q, ShadcnColorThemeSchema as qa, PythonServerSchema as qi, GoLoggingSchema as qn, MobileOTASchema as qr, ElixirCachingSchema as qt, AI_DOCS_VALUES as r, RUST_CACHING_VALUES as ra, PAYMENTS_VALUES as ri, ElixirLibrariesSchema as rn, SwiftMobileSchema as ro, GoValidationSchema as rr, DotnetAuthSchema as rt, APISchema as s, RUST_LIBRARIES_VALUES as sa, PYTHON_AUTH_VALUES as si, ElixirRealtimeSchema as sn, TestingSchema as so, INTEGRATIONS_VALUES as sr, DotnetJobQueueSchema as st, ADDONS_VALUES as t, RUST_API_VALUES as ta, ObservabilitySchema as ti, ElixirJobsSchema as tn, StackPartSourceSchema as to, GoTemplatingSchema as tr, DirectoryConflictSchema as tt, ASTRO_INTEGRATION_VALUES as u, RUST_OBSERVABILITY_VALUES as ua, PYTHON_CLOUD_SDK_VALUES as ui, ElixirWebFrameworkSchema as un, VALIDATION_VALUES as uo, JAVA_API_VALUES as ur, DotnetOrmSchema as ut, AuthSchema as v, RustApiSchema as va, PYTHON_PACKAGE_MANAGER_VALUES as vi, FeatureFlagsSchema as vn, WebDeploySchema as vo, JAVA_WEB_FRAMEWORK_VALUES as vr, ELIXIR_API_VALUES as vt, BetterTStackConfigFileSchema as w, RustLibrariesSchema as wa, PYTHON_VALIDATION_VALUES as wi, GO_AUTH_VALUES as wn, JavaLibrariesSchema as wr, ELIXIR_DOCUMENTATION_VALUES as wt, BackendSchema as x, RustCliSchema as xa, PYTHON_SERVER_VALUES as xi, FormsSchema as xn, JavaAuthSchema as xr, ELIXIR_CACHING_VALUES as xt, BACKEND_VALUES as y, RustAuthSchema as ya, PYTHON_QUALITY_VALUES as yi, FileStorageSchema as yn, WorkspaceShapeSchema as yo, JOB_QUEUE_VALUES as yr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as yt, DOTNET_API_VALUES as z, SHADCN_RADIUS_VALUES as za, PythonHttpClientSchema as zi, GO_VALIDATION_VALUES as zn, MOBILE_OTA_VALUES as zr, EMAIL_VALUES as zt };
|
|
13648
|
+
//# sourceMappingURL=schemas-CY0MaZmU.d.mts.map
|