@better-fullstack/types 2.1.0 → 2.1.2
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-14rSFqF6.d.mts → defaults-BxirxtSa.d.mts} +2 -2
- package/dist/defaults-BxirxtSa.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/index.d.mts +5 -5
- package/dist/index.mjs +2 -2
- package/dist/json-schema.d.mts +268 -268
- package/dist/{schemas-jMCVu0xX.d.mts → schemas-O8yu_3Hd.d.mts} +267 -267
- package/dist/schemas-O8yu_3Hd.d.mts.map +1 -0
- package/dist/schemas.d.mts +1 -1
- package/dist/{stack-graph-CjobAqsm.d.mts → stack-graph-BuxVyZ3J.d.mts} +2 -2
- package/dist/{stack-graph-CjobAqsm.d.mts.map → stack-graph-BuxVyZ3J.d.mts.map} +1 -1
- package/dist/{stack-graph-D4iCezUq.mjs → stack-graph-Q0PrewPk.mjs} +58 -43
- package/dist/stack-graph-Q0PrewPk.mjs.map +1 -0
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +1 -1
- package/dist/{stack-translation-CjsJzLCX.d.mts → stack-translation-DkyErnfx.d.mts} +3 -3
- package/dist/{stack-translation-CjsJzLCX.d.mts.map → stack-translation-DkyErnfx.d.mts.map} +1 -1
- package/dist/{stack-translation-CAU_sdNI.mjs → stack-translation-gNYPvlYt.mjs} +11 -2
- package/dist/stack-translation-gNYPvlYt.mjs.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +2 -2
- package/dist/{types-DwY2BNyU.d.mts → types-CkvXj6HM.d.mts} +2 -2
- package/dist/{types-DwY2BNyU.d.mts.map → types-CkvXj6HM.d.mts.map} +1 -1
- package/dist/types.d.mts +2 -2
- package/package.json +1 -1
- package/dist/defaults-14rSFqF6.d.mts.map +0 -1
- package/dist/schemas-jMCVu0xX.d.mts.map +0 -1
- package/dist/stack-graph-D4iCezUq.mjs.map +0 -1
- package/dist/stack-translation-CAU_sdNI.mjs.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -93,8 +93,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
93
93
|
"github-actions": "github-actions";
|
|
94
94
|
}>>;
|
|
95
95
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
96
|
-
none: "none";
|
|
97
96
|
ai: "ai";
|
|
97
|
+
none: "none";
|
|
98
98
|
"chat-sdk": "chat-sdk";
|
|
99
99
|
"tanstack-showcase": "tanstack-showcase";
|
|
100
100
|
}>>;
|
|
@@ -170,26 +170,26 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
170
170
|
vercel: "vercel";
|
|
171
171
|
}>>;
|
|
172
172
|
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
173
|
+
error: "error";
|
|
173
174
|
merge: "merge";
|
|
174
175
|
overwrite: "overwrite";
|
|
175
176
|
increment: "increment";
|
|
176
|
-
error: "error";
|
|
177
177
|
}>>;
|
|
178
178
|
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
179
179
|
none: "none";
|
|
180
|
+
uniwind: "uniwind";
|
|
180
181
|
mern: "mern";
|
|
181
182
|
pern: "pern";
|
|
182
183
|
t3: "t3";
|
|
183
|
-
uniwind: "uniwind";
|
|
184
184
|
}>>;
|
|
185
185
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
186
186
|
projectName: z.ZodOptional<z.ZodString>;
|
|
187
187
|
template: z.ZodOptional<z.ZodEnum<{
|
|
188
188
|
none: "none";
|
|
189
|
+
uniwind: "uniwind";
|
|
189
190
|
mern: "mern";
|
|
190
191
|
pern: "pern";
|
|
191
192
|
t3: "t3";
|
|
192
|
-
uniwind: "uniwind";
|
|
193
193
|
}>>;
|
|
194
194
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
195
195
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -299,8 +299,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
299
299
|
"github-actions": "github-actions";
|
|
300
300
|
}>>>;
|
|
301
301
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
|
-
none: "none";
|
|
303
302
|
ai: "ai";
|
|
303
|
+
none: "none";
|
|
304
304
|
"chat-sdk": "chat-sdk";
|
|
305
305
|
"tanstack-showcase": "tanstack-showcase";
|
|
306
306
|
}>>>;
|
|
@@ -382,10 +382,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
382
382
|
vercel: "vercel";
|
|
383
383
|
}>>;
|
|
384
384
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
385
|
+
error: "error";
|
|
385
386
|
merge: "merge";
|
|
386
387
|
overwrite: "overwrite";
|
|
387
388
|
increment: "increment";
|
|
388
|
-
error: "error";
|
|
389
389
|
}>>;
|
|
390
390
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
391
391
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -412,8 +412,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
412
412
|
"ai-cli": "ai-cli";
|
|
413
413
|
}>>;
|
|
414
414
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
415
|
-
none: "none";
|
|
416
415
|
effect: "effect";
|
|
416
|
+
none: "none";
|
|
417
417
|
"effect-full": "effect-full";
|
|
418
418
|
}>>;
|
|
419
419
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -546,8 +546,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
546
546
|
"geist-mono": "geist-mono";
|
|
547
547
|
}>>;
|
|
548
548
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
549
|
-
none: "none";
|
|
550
549
|
default: "default";
|
|
550
|
+
none: "none";
|
|
551
551
|
small: "small";
|
|
552
552
|
medium: "medium";
|
|
553
553
|
large: "large";
|
|
@@ -672,9 +672,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
672
672
|
}>>;
|
|
673
673
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
674
674
|
none: "none";
|
|
675
|
-
uniwind: "uniwind";
|
|
676
675
|
tamagui: "tamagui";
|
|
677
676
|
"gluestack-ui": "gluestack-ui";
|
|
677
|
+
uniwind: "uniwind";
|
|
678
678
|
unistyles: "unistyles";
|
|
679
679
|
}>>;
|
|
680
680
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -727,12 +727,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
727
727
|
ratatui: "ratatui";
|
|
728
728
|
}>>;
|
|
729
729
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
730
|
+
config: "config";
|
|
730
731
|
none: "none";
|
|
731
732
|
serde: "serde";
|
|
732
733
|
uuid: "uuid";
|
|
733
734
|
chrono: "chrono";
|
|
734
735
|
reqwest: "reqwest";
|
|
735
|
-
config: "config";
|
|
736
736
|
dashmap: "dashmap";
|
|
737
737
|
"parking-lot": "parking-lot";
|
|
738
738
|
secrecy: "secrecy";
|
|
@@ -1264,8 +1264,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1264
1264
|
"github-actions": "github-actions";
|
|
1265
1265
|
}>>;
|
|
1266
1266
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1267
|
-
none: "none";
|
|
1268
1267
|
ai: "ai";
|
|
1268
|
+
none: "none";
|
|
1269
1269
|
"chat-sdk": "chat-sdk";
|
|
1270
1270
|
"tanstack-showcase": "tanstack-showcase";
|
|
1271
1271
|
}>>;
|
|
@@ -1369,8 +1369,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1369
1369
|
"ai-cli": "ai-cli";
|
|
1370
1370
|
}>;
|
|
1371
1371
|
effect: z.ZodEnum<{
|
|
1372
|
-
none: "none";
|
|
1373
1372
|
effect: "effect";
|
|
1373
|
+
none: "none";
|
|
1374
1374
|
"effect-full": "effect-full";
|
|
1375
1375
|
}>;
|
|
1376
1376
|
stateManagement: z.ZodEnum<{
|
|
@@ -1503,8 +1503,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1503
1503
|
"geist-mono": "geist-mono";
|
|
1504
1504
|
}>>;
|
|
1505
1505
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1506
|
-
none: "none";
|
|
1507
1506
|
default: "default";
|
|
1507
|
+
none: "none";
|
|
1508
1508
|
small: "small";
|
|
1509
1509
|
medium: "medium";
|
|
1510
1510
|
large: "large";
|
|
@@ -1629,9 +1629,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1629
1629
|
}>;
|
|
1630
1630
|
mobileUI: z.ZodEnum<{
|
|
1631
1631
|
none: "none";
|
|
1632
|
-
uniwind: "uniwind";
|
|
1633
1632
|
tamagui: "tamagui";
|
|
1634
1633
|
"gluestack-ui": "gluestack-ui";
|
|
1634
|
+
uniwind: "uniwind";
|
|
1635
1635
|
unistyles: "unistyles";
|
|
1636
1636
|
}>;
|
|
1637
1637
|
mobileStorage: z.ZodEnum<{
|
|
@@ -1684,12 +1684,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1684
1684
|
ratatui: "ratatui";
|
|
1685
1685
|
}>;
|
|
1686
1686
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
1687
|
+
config: "config";
|
|
1687
1688
|
none: "none";
|
|
1688
1689
|
serde: "serde";
|
|
1689
1690
|
uuid: "uuid";
|
|
1690
1691
|
chrono: "chrono";
|
|
1691
1692
|
reqwest: "reqwest";
|
|
1692
|
-
config: "config";
|
|
1693
1693
|
dashmap: "dashmap";
|
|
1694
1694
|
"parking-lot": "parking-lot";
|
|
1695
1695
|
secrecy: "secrecy";
|
|
@@ -2116,55 +2116,55 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2116
2116
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2117
2117
|
id: z.ZodString;
|
|
2118
2118
|
role: z.ZodEnum<{
|
|
2119
|
-
|
|
2119
|
+
frontend: "frontend";
|
|
2120
|
+
backend: "backend";
|
|
2121
|
+
mobile: "mobile";
|
|
2120
2122
|
database: "database";
|
|
2123
|
+
api: "api";
|
|
2121
2124
|
orm: "orm";
|
|
2122
2125
|
auth: "auth";
|
|
2123
|
-
payments: "payments";
|
|
2124
|
-
frontend: "frontend";
|
|
2125
|
-
examples: "examples";
|
|
2126
|
-
dbSetup: "dbSetup";
|
|
2127
|
-
backend: "backend";
|
|
2128
2126
|
runtime: "runtime";
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
stateManagement: "stateManagement";
|
|
2132
|
-
forms: "forms";
|
|
2133
|
-
testing: "testing";
|
|
2134
|
-
email: "email";
|
|
2135
|
-
validation: "validation";
|
|
2127
|
+
deploy: "deploy";
|
|
2128
|
+
dbSetup: "dbSetup";
|
|
2136
2129
|
realtime: "realtime";
|
|
2130
|
+
navigation: "navigation";
|
|
2131
|
+
caching: "caching";
|
|
2132
|
+
observability: "observability";
|
|
2133
|
+
email: "email";
|
|
2134
|
+
search: "search";
|
|
2135
|
+
vectorDb: "vectorDb";
|
|
2136
|
+
fileStorage: "fileStorage";
|
|
2137
2137
|
jobQueue: "jobQueue";
|
|
2138
|
+
rateLimit: "rateLimit";
|
|
2139
|
+
testing: "testing";
|
|
2140
|
+
stateManagement: "stateManagement";
|
|
2141
|
+
forms: "forms";
|
|
2138
2142
|
animation: "animation";
|
|
2139
2143
|
fileUpload: "fileUpload";
|
|
2144
|
+
validation: "validation";
|
|
2145
|
+
effect: "effect";
|
|
2146
|
+
ui: "ui";
|
|
2147
|
+
css: "css";
|
|
2148
|
+
storage: "storage";
|
|
2149
|
+
ai: "ai";
|
|
2150
|
+
payments: "payments";
|
|
2140
2151
|
logging: "logging";
|
|
2141
|
-
observability: "observability";
|
|
2142
2152
|
featureFlags: "featureFlags";
|
|
2143
2153
|
analytics: "analytics";
|
|
2144
2154
|
cms: "cms";
|
|
2145
|
-
caching: "caching";
|
|
2146
|
-
rateLimit: "rateLimit";
|
|
2147
2155
|
i18n: "i18n";
|
|
2148
|
-
search: "search";
|
|
2149
|
-
vectorDb: "vectorDb";
|
|
2150
|
-
fileStorage: "fileStorage";
|
|
2151
|
-
config: "config";
|
|
2152
|
-
mobile: "mobile";
|
|
2153
|
-
deploy: "deploy";
|
|
2154
|
-
navigation: "navigation";
|
|
2155
|
-
ui: "ui";
|
|
2156
|
-
css: "css";
|
|
2157
|
-
storage: "storage";
|
|
2158
2156
|
documentation: "documentation";
|
|
2159
2157
|
codeQuality: "codeQuality";
|
|
2160
2158
|
appPlatform: "appPlatform";
|
|
2161
2159
|
dataFetching: "dataFetching";
|
|
2162
2160
|
workspaceTooling: "workspaceTooling";
|
|
2161
|
+
examples: "examples";
|
|
2163
2162
|
buildTool: "buildTool";
|
|
2164
2163
|
cli: "cli";
|
|
2165
2164
|
errorHandling: "errorHandling";
|
|
2166
2165
|
httpClient: "httpClient";
|
|
2167
2166
|
libraries: "libraries";
|
|
2167
|
+
config: "config";
|
|
2168
2168
|
templating: "templating";
|
|
2169
2169
|
}>;
|
|
2170
2170
|
toolId: z.ZodString;
|
|
@@ -2298,8 +2298,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2298
2298
|
"github-actions": "github-actions";
|
|
2299
2299
|
}>>;
|
|
2300
2300
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2301
|
-
none: "none";
|
|
2302
2301
|
ai: "ai";
|
|
2302
|
+
none: "none";
|
|
2303
2303
|
"chat-sdk": "chat-sdk";
|
|
2304
2304
|
"tanstack-showcase": "tanstack-showcase";
|
|
2305
2305
|
}>>;
|
|
@@ -2401,8 +2401,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2401
2401
|
"ai-cli": "ai-cli";
|
|
2402
2402
|
}>;
|
|
2403
2403
|
effect: z.ZodEnum<{
|
|
2404
|
-
none: "none";
|
|
2405
2404
|
effect: "effect";
|
|
2405
|
+
none: "none";
|
|
2406
2406
|
"effect-full": "effect-full";
|
|
2407
2407
|
}>;
|
|
2408
2408
|
stateManagement: z.ZodEnum<{
|
|
@@ -2535,8 +2535,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2535
2535
|
"geist-mono": "geist-mono";
|
|
2536
2536
|
}>>;
|
|
2537
2537
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
2538
|
-
none: "none";
|
|
2539
2538
|
default: "default";
|
|
2539
|
+
none: "none";
|
|
2540
2540
|
small: "small";
|
|
2541
2541
|
medium: "medium";
|
|
2542
2542
|
large: "large";
|
|
@@ -2661,9 +2661,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2661
2661
|
}>;
|
|
2662
2662
|
mobileUI: z.ZodEnum<{
|
|
2663
2663
|
none: "none";
|
|
2664
|
-
uniwind: "uniwind";
|
|
2665
2664
|
tamagui: "tamagui";
|
|
2666
2665
|
"gluestack-ui": "gluestack-ui";
|
|
2666
|
+
uniwind: "uniwind";
|
|
2667
2667
|
unistyles: "unistyles";
|
|
2668
2668
|
}>;
|
|
2669
2669
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2716,12 +2716,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2716
2716
|
ratatui: "ratatui";
|
|
2717
2717
|
}>;
|
|
2718
2718
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
2719
|
+
config: "config";
|
|
2719
2720
|
none: "none";
|
|
2720
2721
|
serde: "serde";
|
|
2721
2722
|
uuid: "uuid";
|
|
2722
2723
|
chrono: "chrono";
|
|
2723
2724
|
reqwest: "reqwest";
|
|
2724
|
-
config: "config";
|
|
2725
2725
|
dashmap: "dashmap";
|
|
2726
2726
|
"parking-lot": "parking-lot";
|
|
2727
2727
|
secrecy: "secrecy";
|
|
@@ -3148,55 +3148,55 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3148
3148
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3149
3149
|
id: z.ZodString;
|
|
3150
3150
|
role: z.ZodEnum<{
|
|
3151
|
-
|
|
3151
|
+
frontend: "frontend";
|
|
3152
|
+
backend: "backend";
|
|
3153
|
+
mobile: "mobile";
|
|
3152
3154
|
database: "database";
|
|
3155
|
+
api: "api";
|
|
3153
3156
|
orm: "orm";
|
|
3154
3157
|
auth: "auth";
|
|
3155
|
-
payments: "payments";
|
|
3156
|
-
frontend: "frontend";
|
|
3157
|
-
examples: "examples";
|
|
3158
|
-
dbSetup: "dbSetup";
|
|
3159
|
-
backend: "backend";
|
|
3160
3158
|
runtime: "runtime";
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
stateManagement: "stateManagement";
|
|
3164
|
-
forms: "forms";
|
|
3165
|
-
testing: "testing";
|
|
3166
|
-
email: "email";
|
|
3167
|
-
validation: "validation";
|
|
3159
|
+
deploy: "deploy";
|
|
3160
|
+
dbSetup: "dbSetup";
|
|
3168
3161
|
realtime: "realtime";
|
|
3162
|
+
navigation: "navigation";
|
|
3163
|
+
caching: "caching";
|
|
3164
|
+
observability: "observability";
|
|
3165
|
+
email: "email";
|
|
3166
|
+
search: "search";
|
|
3167
|
+
vectorDb: "vectorDb";
|
|
3168
|
+
fileStorage: "fileStorage";
|
|
3169
3169
|
jobQueue: "jobQueue";
|
|
3170
|
+
rateLimit: "rateLimit";
|
|
3171
|
+
testing: "testing";
|
|
3172
|
+
stateManagement: "stateManagement";
|
|
3173
|
+
forms: "forms";
|
|
3170
3174
|
animation: "animation";
|
|
3171
3175
|
fileUpload: "fileUpload";
|
|
3176
|
+
validation: "validation";
|
|
3177
|
+
effect: "effect";
|
|
3178
|
+
ui: "ui";
|
|
3179
|
+
css: "css";
|
|
3180
|
+
storage: "storage";
|
|
3181
|
+
ai: "ai";
|
|
3182
|
+
payments: "payments";
|
|
3172
3183
|
logging: "logging";
|
|
3173
|
-
observability: "observability";
|
|
3174
3184
|
featureFlags: "featureFlags";
|
|
3175
3185
|
analytics: "analytics";
|
|
3176
3186
|
cms: "cms";
|
|
3177
|
-
caching: "caching";
|
|
3178
|
-
rateLimit: "rateLimit";
|
|
3179
3187
|
i18n: "i18n";
|
|
3180
|
-
search: "search";
|
|
3181
|
-
vectorDb: "vectorDb";
|
|
3182
|
-
fileStorage: "fileStorage";
|
|
3183
|
-
config: "config";
|
|
3184
|
-
mobile: "mobile";
|
|
3185
|
-
deploy: "deploy";
|
|
3186
|
-
navigation: "navigation";
|
|
3187
|
-
ui: "ui";
|
|
3188
|
-
css: "css";
|
|
3189
|
-
storage: "storage";
|
|
3190
3188
|
documentation: "documentation";
|
|
3191
3189
|
codeQuality: "codeQuality";
|
|
3192
3190
|
appPlatform: "appPlatform";
|
|
3193
3191
|
dataFetching: "dataFetching";
|
|
3194
3192
|
workspaceTooling: "workspaceTooling";
|
|
3193
|
+
examples: "examples";
|
|
3195
3194
|
buildTool: "buildTool";
|
|
3196
3195
|
cli: "cli";
|
|
3197
3196
|
errorHandling: "errorHandling";
|
|
3198
3197
|
httpClient: "httpClient";
|
|
3199
3198
|
libraries: "libraries";
|
|
3199
|
+
config: "config";
|
|
3200
3200
|
templating: "templating";
|
|
3201
3201
|
}>;
|
|
3202
3202
|
toolId: z.ZodString;
|
|
@@ -3330,8 +3330,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3330
3330
|
"github-actions": "github-actions";
|
|
3331
3331
|
}>>;
|
|
3332
3332
|
examples: z.ZodArray<z.ZodEnum<{
|
|
3333
|
-
none: "none";
|
|
3334
3333
|
ai: "ai";
|
|
3334
|
+
none: "none";
|
|
3335
3335
|
"chat-sdk": "chat-sdk";
|
|
3336
3336
|
"tanstack-showcase": "tanstack-showcase";
|
|
3337
3337
|
}>>;
|
|
@@ -3433,8 +3433,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3433
3433
|
"ai-cli": "ai-cli";
|
|
3434
3434
|
}>;
|
|
3435
3435
|
effect: z.ZodEnum<{
|
|
3436
|
-
none: "none";
|
|
3437
3436
|
effect: "effect";
|
|
3437
|
+
none: "none";
|
|
3438
3438
|
"effect-full": "effect-full";
|
|
3439
3439
|
}>;
|
|
3440
3440
|
stateManagement: z.ZodEnum<{
|
|
@@ -3567,8 +3567,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3567
3567
|
"geist-mono": "geist-mono";
|
|
3568
3568
|
}>>;
|
|
3569
3569
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3570
|
-
none: "none";
|
|
3571
3570
|
default: "default";
|
|
3571
|
+
none: "none";
|
|
3572
3572
|
small: "small";
|
|
3573
3573
|
medium: "medium";
|
|
3574
3574
|
large: "large";
|
|
@@ -3693,9 +3693,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3693
3693
|
}>;
|
|
3694
3694
|
mobileUI: z.ZodEnum<{
|
|
3695
3695
|
none: "none";
|
|
3696
|
-
uniwind: "uniwind";
|
|
3697
3696
|
tamagui: "tamagui";
|
|
3698
3697
|
"gluestack-ui": "gluestack-ui";
|
|
3698
|
+
uniwind: "uniwind";
|
|
3699
3699
|
unistyles: "unistyles";
|
|
3700
3700
|
}>;
|
|
3701
3701
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3748,12 +3748,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
3748
3748
|
ratatui: "ratatui";
|
|
3749
3749
|
}>;
|
|
3750
3750
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3751
|
+
config: "config";
|
|
3751
3752
|
none: "none";
|
|
3752
3753
|
serde: "serde";
|
|
3753
3754
|
uuid: "uuid";
|
|
3754
3755
|
chrono: "chrono";
|
|
3755
3756
|
reqwest: "reqwest";
|
|
3756
|
-
config: "config";
|
|
3757
3757
|
dashmap: "dashmap";
|
|
3758
3758
|
"parking-lot": "parking-lot";
|
|
3759
3759
|
secrecy: "secrecy";
|
|
@@ -4180,55 +4180,55 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4180
4180
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4181
4181
|
id: z.ZodString;
|
|
4182
4182
|
role: z.ZodEnum<{
|
|
4183
|
-
|
|
4183
|
+
frontend: "frontend";
|
|
4184
|
+
backend: "backend";
|
|
4185
|
+
mobile: "mobile";
|
|
4184
4186
|
database: "database";
|
|
4187
|
+
api: "api";
|
|
4185
4188
|
orm: "orm";
|
|
4186
4189
|
auth: "auth";
|
|
4187
|
-
payments: "payments";
|
|
4188
|
-
frontend: "frontend";
|
|
4189
|
-
examples: "examples";
|
|
4190
|
-
dbSetup: "dbSetup";
|
|
4191
|
-
backend: "backend";
|
|
4192
4190
|
runtime: "runtime";
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
stateManagement: "stateManagement";
|
|
4196
|
-
forms: "forms";
|
|
4197
|
-
testing: "testing";
|
|
4198
|
-
email: "email";
|
|
4199
|
-
validation: "validation";
|
|
4191
|
+
deploy: "deploy";
|
|
4192
|
+
dbSetup: "dbSetup";
|
|
4200
4193
|
realtime: "realtime";
|
|
4194
|
+
navigation: "navigation";
|
|
4195
|
+
caching: "caching";
|
|
4196
|
+
observability: "observability";
|
|
4197
|
+
email: "email";
|
|
4198
|
+
search: "search";
|
|
4199
|
+
vectorDb: "vectorDb";
|
|
4200
|
+
fileStorage: "fileStorage";
|
|
4201
4201
|
jobQueue: "jobQueue";
|
|
4202
|
+
rateLimit: "rateLimit";
|
|
4203
|
+
testing: "testing";
|
|
4204
|
+
stateManagement: "stateManagement";
|
|
4205
|
+
forms: "forms";
|
|
4202
4206
|
animation: "animation";
|
|
4203
4207
|
fileUpload: "fileUpload";
|
|
4208
|
+
validation: "validation";
|
|
4209
|
+
effect: "effect";
|
|
4210
|
+
ui: "ui";
|
|
4211
|
+
css: "css";
|
|
4212
|
+
storage: "storage";
|
|
4213
|
+
ai: "ai";
|
|
4214
|
+
payments: "payments";
|
|
4204
4215
|
logging: "logging";
|
|
4205
|
-
observability: "observability";
|
|
4206
4216
|
featureFlags: "featureFlags";
|
|
4207
4217
|
analytics: "analytics";
|
|
4208
4218
|
cms: "cms";
|
|
4209
|
-
caching: "caching";
|
|
4210
|
-
rateLimit: "rateLimit";
|
|
4211
4219
|
i18n: "i18n";
|
|
4212
|
-
search: "search";
|
|
4213
|
-
vectorDb: "vectorDb";
|
|
4214
|
-
fileStorage: "fileStorage";
|
|
4215
|
-
config: "config";
|
|
4216
|
-
mobile: "mobile";
|
|
4217
|
-
deploy: "deploy";
|
|
4218
|
-
navigation: "navigation";
|
|
4219
|
-
ui: "ui";
|
|
4220
|
-
css: "css";
|
|
4221
|
-
storage: "storage";
|
|
4222
4220
|
documentation: "documentation";
|
|
4223
4221
|
codeQuality: "codeQuality";
|
|
4224
4222
|
appPlatform: "appPlatform";
|
|
4225
4223
|
dataFetching: "dataFetching";
|
|
4226
4224
|
workspaceTooling: "workspaceTooling";
|
|
4225
|
+
examples: "examples";
|
|
4227
4226
|
buildTool: "buildTool";
|
|
4228
4227
|
cli: "cli";
|
|
4229
4228
|
errorHandling: "errorHandling";
|
|
4230
4229
|
httpClient: "httpClient";
|
|
4231
4230
|
libraries: "libraries";
|
|
4231
|
+
config: "config";
|
|
4232
4232
|
templating: "templating";
|
|
4233
4233
|
}>;
|
|
4234
4234
|
toolId: z.ZodString;
|
|
@@ -4363,8 +4363,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4363
4363
|
"github-actions": "github-actions";
|
|
4364
4364
|
}>>;
|
|
4365
4365
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4366
|
-
none: "none";
|
|
4367
4366
|
ai: "ai";
|
|
4367
|
+
none: "none";
|
|
4368
4368
|
"chat-sdk": "chat-sdk";
|
|
4369
4369
|
"tanstack-showcase": "tanstack-showcase";
|
|
4370
4370
|
}>>;
|
|
@@ -4468,8 +4468,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4468
4468
|
"ai-cli": "ai-cli";
|
|
4469
4469
|
}>;
|
|
4470
4470
|
effect: z.ZodEnum<{
|
|
4471
|
-
none: "none";
|
|
4472
4471
|
effect: "effect";
|
|
4472
|
+
none: "none";
|
|
4473
4473
|
"effect-full": "effect-full";
|
|
4474
4474
|
}>;
|
|
4475
4475
|
stateManagement: z.ZodEnum<{
|
|
@@ -4602,8 +4602,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4602
4602
|
"geist-mono": "geist-mono";
|
|
4603
4603
|
}>>;
|
|
4604
4604
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4605
|
-
none: "none";
|
|
4606
4605
|
default: "default";
|
|
4606
|
+
none: "none";
|
|
4607
4607
|
small: "small";
|
|
4608
4608
|
medium: "medium";
|
|
4609
4609
|
large: "large";
|
|
@@ -4728,9 +4728,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4728
4728
|
}>;
|
|
4729
4729
|
mobileUI: z.ZodEnum<{
|
|
4730
4730
|
none: "none";
|
|
4731
|
-
uniwind: "uniwind";
|
|
4732
4731
|
tamagui: "tamagui";
|
|
4733
4732
|
"gluestack-ui": "gluestack-ui";
|
|
4733
|
+
uniwind: "uniwind";
|
|
4734
4734
|
unistyles: "unistyles";
|
|
4735
4735
|
}>;
|
|
4736
4736
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4783,12 +4783,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
4783
4783
|
ratatui: "ratatui";
|
|
4784
4784
|
}>;
|
|
4785
4785
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4786
|
+
config: "config";
|
|
4786
4787
|
none: "none";
|
|
4787
4788
|
serde: "serde";
|
|
4788
4789
|
uuid: "uuid";
|
|
4789
4790
|
chrono: "chrono";
|
|
4790
4791
|
reqwest: "reqwest";
|
|
4791
|
-
config: "config";
|
|
4792
4792
|
dashmap: "dashmap";
|
|
4793
4793
|
"parking-lot": "parking-lot";
|
|
4794
4794
|
secrecy: "secrecy";
|
|
@@ -5215,55 +5215,55 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5215
5215
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5216
5216
|
id: z.ZodString;
|
|
5217
5217
|
role: z.ZodEnum<{
|
|
5218
|
-
|
|
5218
|
+
frontend: "frontend";
|
|
5219
|
+
backend: "backend";
|
|
5220
|
+
mobile: "mobile";
|
|
5219
5221
|
database: "database";
|
|
5222
|
+
api: "api";
|
|
5220
5223
|
orm: "orm";
|
|
5221
5224
|
auth: "auth";
|
|
5222
|
-
payments: "payments";
|
|
5223
|
-
frontend: "frontend";
|
|
5224
|
-
examples: "examples";
|
|
5225
|
-
dbSetup: "dbSetup";
|
|
5226
|
-
backend: "backend";
|
|
5227
5225
|
runtime: "runtime";
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
stateManagement: "stateManagement";
|
|
5231
|
-
forms: "forms";
|
|
5232
|
-
testing: "testing";
|
|
5233
|
-
email: "email";
|
|
5234
|
-
validation: "validation";
|
|
5226
|
+
deploy: "deploy";
|
|
5227
|
+
dbSetup: "dbSetup";
|
|
5235
5228
|
realtime: "realtime";
|
|
5229
|
+
navigation: "navigation";
|
|
5230
|
+
caching: "caching";
|
|
5231
|
+
observability: "observability";
|
|
5232
|
+
email: "email";
|
|
5233
|
+
search: "search";
|
|
5234
|
+
vectorDb: "vectorDb";
|
|
5235
|
+
fileStorage: "fileStorage";
|
|
5236
5236
|
jobQueue: "jobQueue";
|
|
5237
|
+
rateLimit: "rateLimit";
|
|
5238
|
+
testing: "testing";
|
|
5239
|
+
stateManagement: "stateManagement";
|
|
5240
|
+
forms: "forms";
|
|
5237
5241
|
animation: "animation";
|
|
5238
5242
|
fileUpload: "fileUpload";
|
|
5243
|
+
validation: "validation";
|
|
5244
|
+
effect: "effect";
|
|
5245
|
+
ui: "ui";
|
|
5246
|
+
css: "css";
|
|
5247
|
+
storage: "storage";
|
|
5248
|
+
ai: "ai";
|
|
5249
|
+
payments: "payments";
|
|
5239
5250
|
logging: "logging";
|
|
5240
|
-
observability: "observability";
|
|
5241
5251
|
featureFlags: "featureFlags";
|
|
5242
5252
|
analytics: "analytics";
|
|
5243
5253
|
cms: "cms";
|
|
5244
|
-
caching: "caching";
|
|
5245
|
-
rateLimit: "rateLimit";
|
|
5246
5254
|
i18n: "i18n";
|
|
5247
|
-
search: "search";
|
|
5248
|
-
vectorDb: "vectorDb";
|
|
5249
|
-
fileStorage: "fileStorage";
|
|
5250
|
-
config: "config";
|
|
5251
|
-
mobile: "mobile";
|
|
5252
|
-
deploy: "deploy";
|
|
5253
|
-
navigation: "navigation";
|
|
5254
|
-
ui: "ui";
|
|
5255
|
-
css: "css";
|
|
5256
|
-
storage: "storage";
|
|
5257
5255
|
documentation: "documentation";
|
|
5258
5256
|
codeQuality: "codeQuality";
|
|
5259
5257
|
appPlatform: "appPlatform";
|
|
5260
5258
|
dataFetching: "dataFetching";
|
|
5261
5259
|
workspaceTooling: "workspaceTooling";
|
|
5260
|
+
examples: "examples";
|
|
5262
5261
|
buildTool: "buildTool";
|
|
5263
5262
|
cli: "cli";
|
|
5264
5263
|
errorHandling: "errorHandling";
|
|
5265
5264
|
httpClient: "httpClient";
|
|
5266
5265
|
libraries: "libraries";
|
|
5266
|
+
config: "config";
|
|
5267
5267
|
templating: "templating";
|
|
5268
5268
|
}>;
|
|
5269
5269
|
toolId: z.ZodString;
|
|
@@ -5531,8 +5531,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5531
5531
|
"github-actions": "github-actions";
|
|
5532
5532
|
}>>;
|
|
5533
5533
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5534
|
-
none: "none";
|
|
5535
5534
|
ai: "ai";
|
|
5535
|
+
none: "none";
|
|
5536
5536
|
"chat-sdk": "chat-sdk";
|
|
5537
5537
|
"tanstack-showcase": "tanstack-showcase";
|
|
5538
5538
|
}>>;
|
|
@@ -5608,17 +5608,17 @@ declare function getAllJsonSchemas(): {
|
|
|
5608
5608
|
vercel: "vercel";
|
|
5609
5609
|
}>>;
|
|
5610
5610
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5611
|
+
error: "error";
|
|
5611
5612
|
merge: "merge";
|
|
5612
5613
|
overwrite: "overwrite";
|
|
5613
5614
|
increment: "increment";
|
|
5614
|
-
error: "error";
|
|
5615
5615
|
}>>;
|
|
5616
5616
|
template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5617
5617
|
none: "none";
|
|
5618
|
+
uniwind: "uniwind";
|
|
5618
5619
|
mern: "mern";
|
|
5619
5620
|
pern: "pern";
|
|
5620
5621
|
t3: "t3";
|
|
5621
|
-
uniwind: "uniwind";
|
|
5622
5622
|
}>>;
|
|
5623
5623
|
javaWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
5624
5624
|
none: "none";
|
|
@@ -5761,10 +5761,10 @@ declare function getAllJsonSchemas(): {
|
|
|
5761
5761
|
projectName: z.ZodOptional<z.ZodString>;
|
|
5762
5762
|
template: z.ZodOptional<z.ZodEnum<{
|
|
5763
5763
|
none: "none";
|
|
5764
|
+
uniwind: "uniwind";
|
|
5764
5765
|
mern: "mern";
|
|
5765
5766
|
pern: "pern";
|
|
5766
5767
|
t3: "t3";
|
|
5767
|
-
uniwind: "uniwind";
|
|
5768
5768
|
}>>;
|
|
5769
5769
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
5770
5770
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5874,8 +5874,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5874
5874
|
"github-actions": "github-actions";
|
|
5875
5875
|
}>>>;
|
|
5876
5876
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5877
|
-
none: "none";
|
|
5878
5877
|
ai: "ai";
|
|
5878
|
+
none: "none";
|
|
5879
5879
|
"chat-sdk": "chat-sdk";
|
|
5880
5880
|
"tanstack-showcase": "tanstack-showcase";
|
|
5881
5881
|
}>>>;
|
|
@@ -5957,10 +5957,10 @@ declare function getAllJsonSchemas(): {
|
|
|
5957
5957
|
vercel: "vercel";
|
|
5958
5958
|
}>>;
|
|
5959
5959
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
5960
|
+
error: "error";
|
|
5960
5961
|
merge: "merge";
|
|
5961
5962
|
overwrite: "overwrite";
|
|
5962
5963
|
increment: "increment";
|
|
5963
|
-
error: "error";
|
|
5964
5964
|
}>>;
|
|
5965
5965
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
5966
5966
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -5987,8 +5987,8 @@ declare function getAllJsonSchemas(): {
|
|
|
5987
5987
|
"ai-cli": "ai-cli";
|
|
5988
5988
|
}>>;
|
|
5989
5989
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
5990
|
-
none: "none";
|
|
5991
5990
|
effect: "effect";
|
|
5991
|
+
none: "none";
|
|
5992
5992
|
"effect-full": "effect-full";
|
|
5993
5993
|
}>>;
|
|
5994
5994
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6121,8 +6121,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6121
6121
|
"geist-mono": "geist-mono";
|
|
6122
6122
|
}>>;
|
|
6123
6123
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
6124
|
-
none: "none";
|
|
6125
6124
|
default: "default";
|
|
6125
|
+
none: "none";
|
|
6126
6126
|
small: "small";
|
|
6127
6127
|
medium: "medium";
|
|
6128
6128
|
large: "large";
|
|
@@ -6247,9 +6247,9 @@ declare function getAllJsonSchemas(): {
|
|
|
6247
6247
|
}>>;
|
|
6248
6248
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
6249
6249
|
none: "none";
|
|
6250
|
-
uniwind: "uniwind";
|
|
6251
6250
|
tamagui: "tamagui";
|
|
6252
6251
|
"gluestack-ui": "gluestack-ui";
|
|
6252
|
+
uniwind: "uniwind";
|
|
6253
6253
|
unistyles: "unistyles";
|
|
6254
6254
|
}>>;
|
|
6255
6255
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -6302,12 +6302,12 @@ declare function getAllJsonSchemas(): {
|
|
|
6302
6302
|
ratatui: "ratatui";
|
|
6303
6303
|
}>>;
|
|
6304
6304
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
6305
|
+
config: "config";
|
|
6305
6306
|
none: "none";
|
|
6306
6307
|
serde: "serde";
|
|
6307
6308
|
uuid: "uuid";
|
|
6308
6309
|
chrono: "chrono";
|
|
6309
6310
|
reqwest: "reqwest";
|
|
6310
|
-
config: "config";
|
|
6311
6311
|
dashmap: "dashmap";
|
|
6312
6312
|
"parking-lot": "parking-lot";
|
|
6313
6313
|
secrecy: "secrecy";
|
|
@@ -6839,8 +6839,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6839
6839
|
"github-actions": "github-actions";
|
|
6840
6840
|
}>>;
|
|
6841
6841
|
examples: z.ZodArray<z.ZodEnum<{
|
|
6842
|
-
none: "none";
|
|
6843
6842
|
ai: "ai";
|
|
6843
|
+
none: "none";
|
|
6844
6844
|
"chat-sdk": "chat-sdk";
|
|
6845
6845
|
"tanstack-showcase": "tanstack-showcase";
|
|
6846
6846
|
}>>;
|
|
@@ -6944,8 +6944,8 @@ declare function getAllJsonSchemas(): {
|
|
|
6944
6944
|
"ai-cli": "ai-cli";
|
|
6945
6945
|
}>;
|
|
6946
6946
|
effect: z.ZodEnum<{
|
|
6947
|
-
none: "none";
|
|
6948
6947
|
effect: "effect";
|
|
6948
|
+
none: "none";
|
|
6949
6949
|
"effect-full": "effect-full";
|
|
6950
6950
|
}>;
|
|
6951
6951
|
stateManagement: z.ZodEnum<{
|
|
@@ -7078,8 +7078,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7078
7078
|
"geist-mono": "geist-mono";
|
|
7079
7079
|
}>>;
|
|
7080
7080
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7081
|
-
none: "none";
|
|
7082
7081
|
default: "default";
|
|
7082
|
+
none: "none";
|
|
7083
7083
|
small: "small";
|
|
7084
7084
|
medium: "medium";
|
|
7085
7085
|
large: "large";
|
|
@@ -7204,9 +7204,9 @@ declare function getAllJsonSchemas(): {
|
|
|
7204
7204
|
}>;
|
|
7205
7205
|
mobileUI: z.ZodEnum<{
|
|
7206
7206
|
none: "none";
|
|
7207
|
-
uniwind: "uniwind";
|
|
7208
7207
|
tamagui: "tamagui";
|
|
7209
7208
|
"gluestack-ui": "gluestack-ui";
|
|
7209
|
+
uniwind: "uniwind";
|
|
7210
7210
|
unistyles: "unistyles";
|
|
7211
7211
|
}>;
|
|
7212
7212
|
mobileStorage: z.ZodEnum<{
|
|
@@ -7259,12 +7259,12 @@ declare function getAllJsonSchemas(): {
|
|
|
7259
7259
|
ratatui: "ratatui";
|
|
7260
7260
|
}>;
|
|
7261
7261
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
7262
|
+
config: "config";
|
|
7262
7263
|
none: "none";
|
|
7263
7264
|
serde: "serde";
|
|
7264
7265
|
uuid: "uuid";
|
|
7265
7266
|
chrono: "chrono";
|
|
7266
7267
|
reqwest: "reqwest";
|
|
7267
|
-
config: "config";
|
|
7268
7268
|
dashmap: "dashmap";
|
|
7269
7269
|
"parking-lot": "parking-lot";
|
|
7270
7270
|
secrecy: "secrecy";
|
|
@@ -7691,55 +7691,55 @@ declare function getAllJsonSchemas(): {
|
|
|
7691
7691
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7692
7692
|
id: z.ZodString;
|
|
7693
7693
|
role: z.ZodEnum<{
|
|
7694
|
-
|
|
7694
|
+
frontend: "frontend";
|
|
7695
|
+
backend: "backend";
|
|
7696
|
+
mobile: "mobile";
|
|
7695
7697
|
database: "database";
|
|
7698
|
+
api: "api";
|
|
7696
7699
|
orm: "orm";
|
|
7697
7700
|
auth: "auth";
|
|
7698
|
-
payments: "payments";
|
|
7699
|
-
frontend: "frontend";
|
|
7700
|
-
examples: "examples";
|
|
7701
|
-
dbSetup: "dbSetup";
|
|
7702
|
-
backend: "backend";
|
|
7703
7701
|
runtime: "runtime";
|
|
7704
|
-
|
|
7705
|
-
|
|
7706
|
-
stateManagement: "stateManagement";
|
|
7707
|
-
forms: "forms";
|
|
7708
|
-
testing: "testing";
|
|
7709
|
-
email: "email";
|
|
7710
|
-
validation: "validation";
|
|
7702
|
+
deploy: "deploy";
|
|
7703
|
+
dbSetup: "dbSetup";
|
|
7711
7704
|
realtime: "realtime";
|
|
7705
|
+
navigation: "navigation";
|
|
7706
|
+
caching: "caching";
|
|
7707
|
+
observability: "observability";
|
|
7708
|
+
email: "email";
|
|
7709
|
+
search: "search";
|
|
7710
|
+
vectorDb: "vectorDb";
|
|
7711
|
+
fileStorage: "fileStorage";
|
|
7712
7712
|
jobQueue: "jobQueue";
|
|
7713
|
+
rateLimit: "rateLimit";
|
|
7714
|
+
testing: "testing";
|
|
7715
|
+
stateManagement: "stateManagement";
|
|
7716
|
+
forms: "forms";
|
|
7713
7717
|
animation: "animation";
|
|
7714
7718
|
fileUpload: "fileUpload";
|
|
7719
|
+
validation: "validation";
|
|
7720
|
+
effect: "effect";
|
|
7721
|
+
ui: "ui";
|
|
7722
|
+
css: "css";
|
|
7723
|
+
storage: "storage";
|
|
7724
|
+
ai: "ai";
|
|
7725
|
+
payments: "payments";
|
|
7715
7726
|
logging: "logging";
|
|
7716
|
-
observability: "observability";
|
|
7717
7727
|
featureFlags: "featureFlags";
|
|
7718
7728
|
analytics: "analytics";
|
|
7719
7729
|
cms: "cms";
|
|
7720
|
-
caching: "caching";
|
|
7721
|
-
rateLimit: "rateLimit";
|
|
7722
7730
|
i18n: "i18n";
|
|
7723
|
-
search: "search";
|
|
7724
|
-
vectorDb: "vectorDb";
|
|
7725
|
-
fileStorage: "fileStorage";
|
|
7726
|
-
config: "config";
|
|
7727
|
-
mobile: "mobile";
|
|
7728
|
-
deploy: "deploy";
|
|
7729
|
-
navigation: "navigation";
|
|
7730
|
-
ui: "ui";
|
|
7731
|
-
css: "css";
|
|
7732
|
-
storage: "storage";
|
|
7733
7731
|
documentation: "documentation";
|
|
7734
7732
|
codeQuality: "codeQuality";
|
|
7735
7733
|
appPlatform: "appPlatform";
|
|
7736
7734
|
dataFetching: "dataFetching";
|
|
7737
7735
|
workspaceTooling: "workspaceTooling";
|
|
7736
|
+
examples: "examples";
|
|
7738
7737
|
buildTool: "buildTool";
|
|
7739
7738
|
cli: "cli";
|
|
7740
7739
|
errorHandling: "errorHandling";
|
|
7741
7740
|
httpClient: "httpClient";
|
|
7742
7741
|
libraries: "libraries";
|
|
7742
|
+
config: "config";
|
|
7743
7743
|
templating: "templating";
|
|
7744
7744
|
}>;
|
|
7745
7745
|
toolId: z.ZodString;
|
|
@@ -7873,8 +7873,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7873
7873
|
"github-actions": "github-actions";
|
|
7874
7874
|
}>>;
|
|
7875
7875
|
examples: z.ZodArray<z.ZodEnum<{
|
|
7876
|
-
none: "none";
|
|
7877
7876
|
ai: "ai";
|
|
7877
|
+
none: "none";
|
|
7878
7878
|
"chat-sdk": "chat-sdk";
|
|
7879
7879
|
"tanstack-showcase": "tanstack-showcase";
|
|
7880
7880
|
}>>;
|
|
@@ -7976,8 +7976,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7976
7976
|
"ai-cli": "ai-cli";
|
|
7977
7977
|
}>;
|
|
7978
7978
|
effect: z.ZodEnum<{
|
|
7979
|
-
none: "none";
|
|
7980
7979
|
effect: "effect";
|
|
7980
|
+
none: "none";
|
|
7981
7981
|
"effect-full": "effect-full";
|
|
7982
7982
|
}>;
|
|
7983
7983
|
stateManagement: z.ZodEnum<{
|
|
@@ -8110,8 +8110,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8110
8110
|
"geist-mono": "geist-mono";
|
|
8111
8111
|
}>>;
|
|
8112
8112
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
8113
|
-
none: "none";
|
|
8114
8113
|
default: "default";
|
|
8114
|
+
none: "none";
|
|
8115
8115
|
small: "small";
|
|
8116
8116
|
medium: "medium";
|
|
8117
8117
|
large: "large";
|
|
@@ -8236,9 +8236,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8236
8236
|
}>;
|
|
8237
8237
|
mobileUI: z.ZodEnum<{
|
|
8238
8238
|
none: "none";
|
|
8239
|
-
uniwind: "uniwind";
|
|
8240
8239
|
tamagui: "tamagui";
|
|
8241
8240
|
"gluestack-ui": "gluestack-ui";
|
|
8241
|
+
uniwind: "uniwind";
|
|
8242
8242
|
unistyles: "unistyles";
|
|
8243
8243
|
}>;
|
|
8244
8244
|
mobileStorage: z.ZodEnum<{
|
|
@@ -8291,12 +8291,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8291
8291
|
ratatui: "ratatui";
|
|
8292
8292
|
}>;
|
|
8293
8293
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
8294
|
+
config: "config";
|
|
8294
8295
|
none: "none";
|
|
8295
8296
|
serde: "serde";
|
|
8296
8297
|
uuid: "uuid";
|
|
8297
8298
|
chrono: "chrono";
|
|
8298
8299
|
reqwest: "reqwest";
|
|
8299
|
-
config: "config";
|
|
8300
8300
|
dashmap: "dashmap";
|
|
8301
8301
|
"parking-lot": "parking-lot";
|
|
8302
8302
|
secrecy: "secrecy";
|
|
@@ -8723,55 +8723,55 @@ declare function getAllJsonSchemas(): {
|
|
|
8723
8723
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8724
8724
|
id: z.ZodString;
|
|
8725
8725
|
role: z.ZodEnum<{
|
|
8726
|
-
|
|
8726
|
+
frontend: "frontend";
|
|
8727
|
+
backend: "backend";
|
|
8728
|
+
mobile: "mobile";
|
|
8727
8729
|
database: "database";
|
|
8730
|
+
api: "api";
|
|
8728
8731
|
orm: "orm";
|
|
8729
8732
|
auth: "auth";
|
|
8730
|
-
payments: "payments";
|
|
8731
|
-
frontend: "frontend";
|
|
8732
|
-
examples: "examples";
|
|
8733
|
-
dbSetup: "dbSetup";
|
|
8734
|
-
backend: "backend";
|
|
8735
8733
|
runtime: "runtime";
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
stateManagement: "stateManagement";
|
|
8739
|
-
forms: "forms";
|
|
8740
|
-
testing: "testing";
|
|
8741
|
-
email: "email";
|
|
8742
|
-
validation: "validation";
|
|
8734
|
+
deploy: "deploy";
|
|
8735
|
+
dbSetup: "dbSetup";
|
|
8743
8736
|
realtime: "realtime";
|
|
8737
|
+
navigation: "navigation";
|
|
8738
|
+
caching: "caching";
|
|
8739
|
+
observability: "observability";
|
|
8740
|
+
email: "email";
|
|
8741
|
+
search: "search";
|
|
8742
|
+
vectorDb: "vectorDb";
|
|
8743
|
+
fileStorage: "fileStorage";
|
|
8744
8744
|
jobQueue: "jobQueue";
|
|
8745
|
+
rateLimit: "rateLimit";
|
|
8746
|
+
testing: "testing";
|
|
8747
|
+
stateManagement: "stateManagement";
|
|
8748
|
+
forms: "forms";
|
|
8745
8749
|
animation: "animation";
|
|
8746
8750
|
fileUpload: "fileUpload";
|
|
8751
|
+
validation: "validation";
|
|
8752
|
+
effect: "effect";
|
|
8753
|
+
ui: "ui";
|
|
8754
|
+
css: "css";
|
|
8755
|
+
storage: "storage";
|
|
8756
|
+
ai: "ai";
|
|
8757
|
+
payments: "payments";
|
|
8747
8758
|
logging: "logging";
|
|
8748
|
-
observability: "observability";
|
|
8749
8759
|
featureFlags: "featureFlags";
|
|
8750
8760
|
analytics: "analytics";
|
|
8751
8761
|
cms: "cms";
|
|
8752
|
-
caching: "caching";
|
|
8753
|
-
rateLimit: "rateLimit";
|
|
8754
8762
|
i18n: "i18n";
|
|
8755
|
-
search: "search";
|
|
8756
|
-
vectorDb: "vectorDb";
|
|
8757
|
-
fileStorage: "fileStorage";
|
|
8758
|
-
config: "config";
|
|
8759
|
-
mobile: "mobile";
|
|
8760
|
-
deploy: "deploy";
|
|
8761
|
-
navigation: "navigation";
|
|
8762
|
-
ui: "ui";
|
|
8763
|
-
css: "css";
|
|
8764
|
-
storage: "storage";
|
|
8765
8763
|
documentation: "documentation";
|
|
8766
8764
|
codeQuality: "codeQuality";
|
|
8767
8765
|
appPlatform: "appPlatform";
|
|
8768
8766
|
dataFetching: "dataFetching";
|
|
8769
8767
|
workspaceTooling: "workspaceTooling";
|
|
8768
|
+
examples: "examples";
|
|
8770
8769
|
buildTool: "buildTool";
|
|
8771
8770
|
cli: "cli";
|
|
8772
8771
|
errorHandling: "errorHandling";
|
|
8773
8772
|
httpClient: "httpClient";
|
|
8774
8773
|
libraries: "libraries";
|
|
8774
|
+
config: "config";
|
|
8775
8775
|
templating: "templating";
|
|
8776
8776
|
}>;
|
|
8777
8777
|
toolId: z.ZodString;
|
|
@@ -8905,8 +8905,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8905
8905
|
"github-actions": "github-actions";
|
|
8906
8906
|
}>>;
|
|
8907
8907
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8908
|
-
none: "none";
|
|
8909
8908
|
ai: "ai";
|
|
8909
|
+
none: "none";
|
|
8910
8910
|
"chat-sdk": "chat-sdk";
|
|
8911
8911
|
"tanstack-showcase": "tanstack-showcase";
|
|
8912
8912
|
}>>;
|
|
@@ -9008,8 +9008,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9008
9008
|
"ai-cli": "ai-cli";
|
|
9009
9009
|
}>;
|
|
9010
9010
|
effect: z.ZodEnum<{
|
|
9011
|
-
none: "none";
|
|
9012
9011
|
effect: "effect";
|
|
9012
|
+
none: "none";
|
|
9013
9013
|
"effect-full": "effect-full";
|
|
9014
9014
|
}>;
|
|
9015
9015
|
stateManagement: z.ZodEnum<{
|
|
@@ -9142,8 +9142,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9142
9142
|
"geist-mono": "geist-mono";
|
|
9143
9143
|
}>>;
|
|
9144
9144
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9145
|
-
none: "none";
|
|
9146
9145
|
default: "default";
|
|
9146
|
+
none: "none";
|
|
9147
9147
|
small: "small";
|
|
9148
9148
|
medium: "medium";
|
|
9149
9149
|
large: "large";
|
|
@@ -9268,9 +9268,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9268
9268
|
}>;
|
|
9269
9269
|
mobileUI: z.ZodEnum<{
|
|
9270
9270
|
none: "none";
|
|
9271
|
-
uniwind: "uniwind";
|
|
9272
9271
|
tamagui: "tamagui";
|
|
9273
9272
|
"gluestack-ui": "gluestack-ui";
|
|
9273
|
+
uniwind: "uniwind";
|
|
9274
9274
|
unistyles: "unistyles";
|
|
9275
9275
|
}>;
|
|
9276
9276
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9323,12 +9323,12 @@ declare function getAllJsonSchemas(): {
|
|
|
9323
9323
|
ratatui: "ratatui";
|
|
9324
9324
|
}>;
|
|
9325
9325
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9326
|
+
config: "config";
|
|
9326
9327
|
none: "none";
|
|
9327
9328
|
serde: "serde";
|
|
9328
9329
|
uuid: "uuid";
|
|
9329
9330
|
chrono: "chrono";
|
|
9330
9331
|
reqwest: "reqwest";
|
|
9331
|
-
config: "config";
|
|
9332
9332
|
dashmap: "dashmap";
|
|
9333
9333
|
"parking-lot": "parking-lot";
|
|
9334
9334
|
secrecy: "secrecy";
|
|
@@ -9755,55 +9755,55 @@ declare function getAllJsonSchemas(): {
|
|
|
9755
9755
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9756
9756
|
id: z.ZodString;
|
|
9757
9757
|
role: z.ZodEnum<{
|
|
9758
|
-
|
|
9758
|
+
frontend: "frontend";
|
|
9759
|
+
backend: "backend";
|
|
9760
|
+
mobile: "mobile";
|
|
9759
9761
|
database: "database";
|
|
9762
|
+
api: "api";
|
|
9760
9763
|
orm: "orm";
|
|
9761
9764
|
auth: "auth";
|
|
9762
|
-
payments: "payments";
|
|
9763
|
-
frontend: "frontend";
|
|
9764
|
-
examples: "examples";
|
|
9765
|
-
dbSetup: "dbSetup";
|
|
9766
|
-
backend: "backend";
|
|
9767
9765
|
runtime: "runtime";
|
|
9768
|
-
|
|
9769
|
-
|
|
9770
|
-
stateManagement: "stateManagement";
|
|
9771
|
-
forms: "forms";
|
|
9772
|
-
testing: "testing";
|
|
9773
|
-
email: "email";
|
|
9774
|
-
validation: "validation";
|
|
9766
|
+
deploy: "deploy";
|
|
9767
|
+
dbSetup: "dbSetup";
|
|
9775
9768
|
realtime: "realtime";
|
|
9769
|
+
navigation: "navigation";
|
|
9770
|
+
caching: "caching";
|
|
9771
|
+
observability: "observability";
|
|
9772
|
+
email: "email";
|
|
9773
|
+
search: "search";
|
|
9774
|
+
vectorDb: "vectorDb";
|
|
9775
|
+
fileStorage: "fileStorage";
|
|
9776
9776
|
jobQueue: "jobQueue";
|
|
9777
|
+
rateLimit: "rateLimit";
|
|
9778
|
+
testing: "testing";
|
|
9779
|
+
stateManagement: "stateManagement";
|
|
9780
|
+
forms: "forms";
|
|
9777
9781
|
animation: "animation";
|
|
9778
9782
|
fileUpload: "fileUpload";
|
|
9783
|
+
validation: "validation";
|
|
9784
|
+
effect: "effect";
|
|
9785
|
+
ui: "ui";
|
|
9786
|
+
css: "css";
|
|
9787
|
+
storage: "storage";
|
|
9788
|
+
ai: "ai";
|
|
9789
|
+
payments: "payments";
|
|
9779
9790
|
logging: "logging";
|
|
9780
|
-
observability: "observability";
|
|
9781
9791
|
featureFlags: "featureFlags";
|
|
9782
9792
|
analytics: "analytics";
|
|
9783
9793
|
cms: "cms";
|
|
9784
|
-
caching: "caching";
|
|
9785
|
-
rateLimit: "rateLimit";
|
|
9786
9794
|
i18n: "i18n";
|
|
9787
|
-
search: "search";
|
|
9788
|
-
vectorDb: "vectorDb";
|
|
9789
|
-
fileStorage: "fileStorage";
|
|
9790
|
-
config: "config";
|
|
9791
|
-
mobile: "mobile";
|
|
9792
|
-
deploy: "deploy";
|
|
9793
|
-
navigation: "navigation";
|
|
9794
|
-
ui: "ui";
|
|
9795
|
-
css: "css";
|
|
9796
|
-
storage: "storage";
|
|
9797
9795
|
documentation: "documentation";
|
|
9798
9796
|
codeQuality: "codeQuality";
|
|
9799
9797
|
appPlatform: "appPlatform";
|
|
9800
9798
|
dataFetching: "dataFetching";
|
|
9801
9799
|
workspaceTooling: "workspaceTooling";
|
|
9800
|
+
examples: "examples";
|
|
9802
9801
|
buildTool: "buildTool";
|
|
9803
9802
|
cli: "cli";
|
|
9804
9803
|
errorHandling: "errorHandling";
|
|
9805
9804
|
httpClient: "httpClient";
|
|
9806
9805
|
libraries: "libraries";
|
|
9806
|
+
config: "config";
|
|
9807
9807
|
templating: "templating";
|
|
9808
9808
|
}>;
|
|
9809
9809
|
toolId: z.ZodString;
|
|
@@ -9938,8 +9938,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9938
9938
|
"github-actions": "github-actions";
|
|
9939
9939
|
}>>;
|
|
9940
9940
|
examples: z.ZodArray<z.ZodEnum<{
|
|
9941
|
-
none: "none";
|
|
9942
9941
|
ai: "ai";
|
|
9942
|
+
none: "none";
|
|
9943
9943
|
"chat-sdk": "chat-sdk";
|
|
9944
9944
|
"tanstack-showcase": "tanstack-showcase";
|
|
9945
9945
|
}>>;
|
|
@@ -10043,8 +10043,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10043
10043
|
"ai-cli": "ai-cli";
|
|
10044
10044
|
}>;
|
|
10045
10045
|
effect: z.ZodEnum<{
|
|
10046
|
-
none: "none";
|
|
10047
10046
|
effect: "effect";
|
|
10047
|
+
none: "none";
|
|
10048
10048
|
"effect-full": "effect-full";
|
|
10049
10049
|
}>;
|
|
10050
10050
|
stateManagement: z.ZodEnum<{
|
|
@@ -10177,8 +10177,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10177
10177
|
"geist-mono": "geist-mono";
|
|
10178
10178
|
}>>;
|
|
10179
10179
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10180
|
-
none: "none";
|
|
10181
10180
|
default: "default";
|
|
10181
|
+
none: "none";
|
|
10182
10182
|
small: "small";
|
|
10183
10183
|
medium: "medium";
|
|
10184
10184
|
large: "large";
|
|
@@ -10303,9 +10303,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10303
10303
|
}>;
|
|
10304
10304
|
mobileUI: z.ZodEnum<{
|
|
10305
10305
|
none: "none";
|
|
10306
|
-
uniwind: "uniwind";
|
|
10307
10306
|
tamagui: "tamagui";
|
|
10308
10307
|
"gluestack-ui": "gluestack-ui";
|
|
10308
|
+
uniwind: "uniwind";
|
|
10309
10309
|
unistyles: "unistyles";
|
|
10310
10310
|
}>;
|
|
10311
10311
|
mobileStorage: z.ZodEnum<{
|
|
@@ -10358,12 +10358,12 @@ declare function getAllJsonSchemas(): {
|
|
|
10358
10358
|
ratatui: "ratatui";
|
|
10359
10359
|
}>;
|
|
10360
10360
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10361
|
+
config: "config";
|
|
10361
10362
|
none: "none";
|
|
10362
10363
|
serde: "serde";
|
|
10363
10364
|
uuid: "uuid";
|
|
10364
10365
|
chrono: "chrono";
|
|
10365
10366
|
reqwest: "reqwest";
|
|
10366
|
-
config: "config";
|
|
10367
10367
|
dashmap: "dashmap";
|
|
10368
10368
|
"parking-lot": "parking-lot";
|
|
10369
10369
|
secrecy: "secrecy";
|
|
@@ -10790,55 +10790,55 @@ declare function getAllJsonSchemas(): {
|
|
|
10790
10790
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10791
10791
|
id: z.ZodString;
|
|
10792
10792
|
role: z.ZodEnum<{
|
|
10793
|
-
|
|
10793
|
+
frontend: "frontend";
|
|
10794
|
+
backend: "backend";
|
|
10795
|
+
mobile: "mobile";
|
|
10794
10796
|
database: "database";
|
|
10797
|
+
api: "api";
|
|
10795
10798
|
orm: "orm";
|
|
10796
10799
|
auth: "auth";
|
|
10797
|
-
payments: "payments";
|
|
10798
|
-
frontend: "frontend";
|
|
10799
|
-
examples: "examples";
|
|
10800
|
-
dbSetup: "dbSetup";
|
|
10801
|
-
backend: "backend";
|
|
10802
10800
|
runtime: "runtime";
|
|
10803
|
-
|
|
10804
|
-
|
|
10805
|
-
stateManagement: "stateManagement";
|
|
10806
|
-
forms: "forms";
|
|
10807
|
-
testing: "testing";
|
|
10808
|
-
email: "email";
|
|
10809
|
-
validation: "validation";
|
|
10801
|
+
deploy: "deploy";
|
|
10802
|
+
dbSetup: "dbSetup";
|
|
10810
10803
|
realtime: "realtime";
|
|
10804
|
+
navigation: "navigation";
|
|
10805
|
+
caching: "caching";
|
|
10806
|
+
observability: "observability";
|
|
10807
|
+
email: "email";
|
|
10808
|
+
search: "search";
|
|
10809
|
+
vectorDb: "vectorDb";
|
|
10810
|
+
fileStorage: "fileStorage";
|
|
10811
10811
|
jobQueue: "jobQueue";
|
|
10812
|
+
rateLimit: "rateLimit";
|
|
10813
|
+
testing: "testing";
|
|
10814
|
+
stateManagement: "stateManagement";
|
|
10815
|
+
forms: "forms";
|
|
10812
10816
|
animation: "animation";
|
|
10813
10817
|
fileUpload: "fileUpload";
|
|
10818
|
+
validation: "validation";
|
|
10819
|
+
effect: "effect";
|
|
10820
|
+
ui: "ui";
|
|
10821
|
+
css: "css";
|
|
10822
|
+
storage: "storage";
|
|
10823
|
+
ai: "ai";
|
|
10824
|
+
payments: "payments";
|
|
10814
10825
|
logging: "logging";
|
|
10815
|
-
observability: "observability";
|
|
10816
10826
|
featureFlags: "featureFlags";
|
|
10817
10827
|
analytics: "analytics";
|
|
10818
10828
|
cms: "cms";
|
|
10819
|
-
caching: "caching";
|
|
10820
|
-
rateLimit: "rateLimit";
|
|
10821
10829
|
i18n: "i18n";
|
|
10822
|
-
search: "search";
|
|
10823
|
-
vectorDb: "vectorDb";
|
|
10824
|
-
fileStorage: "fileStorage";
|
|
10825
|
-
config: "config";
|
|
10826
|
-
mobile: "mobile";
|
|
10827
|
-
deploy: "deploy";
|
|
10828
|
-
navigation: "navigation";
|
|
10829
|
-
ui: "ui";
|
|
10830
|
-
css: "css";
|
|
10831
|
-
storage: "storage";
|
|
10832
10830
|
documentation: "documentation";
|
|
10833
10831
|
codeQuality: "codeQuality";
|
|
10834
10832
|
appPlatform: "appPlatform";
|
|
10835
10833
|
dataFetching: "dataFetching";
|
|
10836
10834
|
workspaceTooling: "workspaceTooling";
|
|
10835
|
+
examples: "examples";
|
|
10837
10836
|
buildTool: "buildTool";
|
|
10838
10837
|
cli: "cli";
|
|
10839
10838
|
errorHandling: "errorHandling";
|
|
10840
10839
|
httpClient: "httpClient";
|
|
10841
10840
|
libraries: "libraries";
|
|
10841
|
+
config: "config";
|
|
10842
10842
|
templating: "templating";
|
|
10843
10843
|
}>;
|
|
10844
10844
|
toolId: z.ZodString;
|