@better-fullstack/types 1.1.12 → 1.1.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +17 -2
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/json-schema.d.mts +764 -0
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-alCUZZqP.mjs → schemas-DYTmrPqe.mjs} +159 -10
- package/dist/schemas-DYTmrPqe.mjs.map +1 -0
- package/dist/{schemas-CPHhbryb.d.mts → schemas-ev9lcPma.d.mts} +676 -9
- package/dist/schemas-ev9lcPma.d.mts.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/package.json +1 -1
- package/dist/schemas-CPHhbryb.d.mts.map +0 -1
- package/dist/schemas-alCUZZqP.mjs.map +0 -1
|
@@ -4,6 +4,8 @@ import { z } from "zod";
|
|
|
4
4
|
declare const EcosystemSchema: z.ZodEnum<{
|
|
5
5
|
typescript: "typescript";
|
|
6
6
|
rust: "rust";
|
|
7
|
+
python: "python";
|
|
8
|
+
go: "go";
|
|
7
9
|
}>;
|
|
8
10
|
declare const DatabaseSchema: z.ZodEnum<{
|
|
9
11
|
none: "none";
|
|
@@ -11,6 +13,8 @@ declare const DatabaseSchema: z.ZodEnum<{
|
|
|
11
13
|
postgres: "postgres";
|
|
12
14
|
mysql: "mysql";
|
|
13
15
|
mongodb: "mongodb";
|
|
16
|
+
edgedb: "edgedb";
|
|
17
|
+
redis: "redis";
|
|
14
18
|
}>;
|
|
15
19
|
declare const ORMSchema: z.ZodEnum<{
|
|
16
20
|
none: "none";
|
|
@@ -103,6 +107,7 @@ declare const DatabaseSetupSchema: z.ZodEnum<{
|
|
|
103
107
|
planetscale: "planetscale";
|
|
104
108
|
"mongodb-atlas": "mongodb-atlas";
|
|
105
109
|
supabase: "supabase";
|
|
110
|
+
upstash: "upstash";
|
|
106
111
|
d1: "d1";
|
|
107
112
|
docker: "docker";
|
|
108
113
|
}>;
|
|
@@ -118,6 +123,9 @@ declare const AuthSchema: z.ZodEnum<{
|
|
|
118
123
|
"better-auth": "better-auth";
|
|
119
124
|
clerk: "clerk";
|
|
120
125
|
nextauth: "nextauth";
|
|
126
|
+
"stack-auth": "stack-auth";
|
|
127
|
+
"supabase-auth": "supabase-auth";
|
|
128
|
+
auth0: "auth0";
|
|
121
129
|
}>;
|
|
122
130
|
declare const PaymentsSchema: z.ZodEnum<{
|
|
123
131
|
none: "none";
|
|
@@ -129,11 +137,19 @@ declare const PaymentsSchema: z.ZodEnum<{
|
|
|
129
137
|
}>;
|
|
130
138
|
declare const WebDeploySchema: z.ZodEnum<{
|
|
131
139
|
none: "none";
|
|
140
|
+
docker: "docker";
|
|
132
141
|
cloudflare: "cloudflare";
|
|
142
|
+
fly: "fly";
|
|
143
|
+
railway: "railway";
|
|
144
|
+
sst: "sst";
|
|
133
145
|
}>;
|
|
134
146
|
declare const ServerDeploySchema: z.ZodEnum<{
|
|
135
147
|
none: "none";
|
|
148
|
+
docker: "docker";
|
|
136
149
|
cloudflare: "cloudflare";
|
|
150
|
+
fly: "fly";
|
|
151
|
+
railway: "railway";
|
|
152
|
+
sst: "sst";
|
|
137
153
|
}>;
|
|
138
154
|
declare const AISchema: z.ZodEnum<{
|
|
139
155
|
none: "none";
|
|
@@ -228,6 +244,16 @@ declare const CachingSchema: z.ZodEnum<{
|
|
|
228
244
|
none: "none";
|
|
229
245
|
"upstash-redis": "upstash-redis";
|
|
230
246
|
}>;
|
|
247
|
+
declare const SearchSchema: z.ZodEnum<{
|
|
248
|
+
none: "none";
|
|
249
|
+
meilisearch: "meilisearch";
|
|
250
|
+
typesense: "typesense";
|
|
251
|
+
}>;
|
|
252
|
+
declare const FileStorageSchema: z.ZodEnum<{
|
|
253
|
+
none: "none";
|
|
254
|
+
s3: "s3";
|
|
255
|
+
r2: "r2";
|
|
256
|
+
}>;
|
|
231
257
|
declare const AnimationSchema: z.ZodEnum<{
|
|
232
258
|
none: "none";
|
|
233
259
|
"framer-motion": "framer-motion";
|
|
@@ -250,6 +276,18 @@ declare const LoggingSchema: z.ZodEnum<{
|
|
|
250
276
|
declare const ObservabilitySchema: z.ZodEnum<{
|
|
251
277
|
none: "none";
|
|
252
278
|
opentelemetry: "opentelemetry";
|
|
279
|
+
sentry: "sentry";
|
|
280
|
+
grafana: "grafana";
|
|
281
|
+
}>;
|
|
282
|
+
declare const FeatureFlagsSchema: z.ZodEnum<{
|
|
283
|
+
none: "none";
|
|
284
|
+
growthbook: "growthbook";
|
|
285
|
+
posthog: "posthog";
|
|
286
|
+
}>;
|
|
287
|
+
declare const AnalyticsSchema: z.ZodEnum<{
|
|
288
|
+
none: "none";
|
|
289
|
+
plausible: "plausible";
|
|
290
|
+
umami: "umami";
|
|
253
291
|
}>;
|
|
254
292
|
declare const RustWebFrameworkSchema: z.ZodEnum<{
|
|
255
293
|
none: "none";
|
|
@@ -285,6 +323,60 @@ declare const RustLibrariesSchema: z.ZodEnum<{
|
|
|
285
323
|
"tokio-test": "tokio-test";
|
|
286
324
|
mockall: "mockall";
|
|
287
325
|
}>;
|
|
326
|
+
declare const PythonWebFrameworkSchema: z.ZodEnum<{
|
|
327
|
+
none: "none";
|
|
328
|
+
fastapi: "fastapi";
|
|
329
|
+
django: "django";
|
|
330
|
+
}>;
|
|
331
|
+
declare const PythonOrmSchema: z.ZodEnum<{
|
|
332
|
+
none: "none";
|
|
333
|
+
sqlalchemy: "sqlalchemy";
|
|
334
|
+
sqlmodel: "sqlmodel";
|
|
335
|
+
}>;
|
|
336
|
+
declare const PythonValidationSchema: z.ZodEnum<{
|
|
337
|
+
none: "none";
|
|
338
|
+
pydantic: "pydantic";
|
|
339
|
+
}>;
|
|
340
|
+
declare const PythonAiSchema: z.ZodEnum<{
|
|
341
|
+
none: "none";
|
|
342
|
+
langgraph: "langgraph";
|
|
343
|
+
langchain: "langchain";
|
|
344
|
+
llamaindex: "llamaindex";
|
|
345
|
+
"openai-sdk": "openai-sdk";
|
|
346
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
347
|
+
crewai: "crewai";
|
|
348
|
+
}>;
|
|
349
|
+
declare const PythonTaskQueueSchema: z.ZodEnum<{
|
|
350
|
+
none: "none";
|
|
351
|
+
celery: "celery";
|
|
352
|
+
}>;
|
|
353
|
+
declare const PythonQualitySchema: z.ZodEnum<{
|
|
354
|
+
none: "none";
|
|
355
|
+
ruff: "ruff";
|
|
356
|
+
}>;
|
|
357
|
+
declare const GoWebFrameworkSchema: z.ZodEnum<{
|
|
358
|
+
none: "none";
|
|
359
|
+
gin: "gin";
|
|
360
|
+
echo: "echo";
|
|
361
|
+
}>;
|
|
362
|
+
declare const GoOrmSchema: z.ZodEnum<{
|
|
363
|
+
none: "none";
|
|
364
|
+
gorm: "gorm";
|
|
365
|
+
sqlc: "sqlc";
|
|
366
|
+
}>;
|
|
367
|
+
declare const GoApiSchema: z.ZodEnum<{
|
|
368
|
+
none: "none";
|
|
369
|
+
"grpc-go": "grpc-go";
|
|
370
|
+
}>;
|
|
371
|
+
declare const GoCliSchema: z.ZodEnum<{
|
|
372
|
+
none: "none";
|
|
373
|
+
cobra: "cobra";
|
|
374
|
+
bubbletea: "bubbletea";
|
|
375
|
+
}>;
|
|
376
|
+
declare const GoLoggingSchema: z.ZodEnum<{
|
|
377
|
+
none: "none";
|
|
378
|
+
zap: "zap";
|
|
379
|
+
}>;
|
|
288
380
|
declare const CSSFrameworkSchema: z.ZodEnum<{
|
|
289
381
|
none: "none";
|
|
290
382
|
tailwind: "tailwind";
|
|
@@ -335,6 +427,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
335
427
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
336
428
|
typescript: "typescript";
|
|
337
429
|
rust: "rust";
|
|
430
|
+
python: "python";
|
|
431
|
+
go: "go";
|
|
338
432
|
}>>;
|
|
339
433
|
database: z.ZodOptional<z.ZodEnum<{
|
|
340
434
|
none: "none";
|
|
@@ -342,6 +436,8 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
342
436
|
postgres: "postgres";
|
|
343
437
|
mysql: "mysql";
|
|
344
438
|
mongodb: "mongodb";
|
|
439
|
+
edgedb: "edgedb";
|
|
440
|
+
redis: "redis";
|
|
345
441
|
}>>;
|
|
346
442
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
347
443
|
none: "none";
|
|
@@ -358,6 +454,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
358
454
|
"better-auth": "better-auth";
|
|
359
455
|
clerk: "clerk";
|
|
360
456
|
nextauth: "nextauth";
|
|
457
|
+
"stack-auth": "stack-auth";
|
|
458
|
+
"supabase-auth": "supabase-auth";
|
|
459
|
+
auth0: "auth0";
|
|
361
460
|
}>>;
|
|
362
461
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
363
462
|
none: "none";
|
|
@@ -423,6 +522,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
423
522
|
planetscale: "planetscale";
|
|
424
523
|
"mongodb-atlas": "mongodb-atlas";
|
|
425
524
|
supabase: "supabase";
|
|
525
|
+
upstash: "upstash";
|
|
426
526
|
d1: "d1";
|
|
427
527
|
docker: "docker";
|
|
428
528
|
}>>;
|
|
@@ -455,11 +555,19 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
455
555
|
}>>;
|
|
456
556
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
457
557
|
none: "none";
|
|
558
|
+
docker: "docker";
|
|
458
559
|
cloudflare: "cloudflare";
|
|
560
|
+
fly: "fly";
|
|
561
|
+
railway: "railway";
|
|
562
|
+
sst: "sst";
|
|
459
563
|
}>>;
|
|
460
564
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
461
565
|
none: "none";
|
|
566
|
+
docker: "docker";
|
|
462
567
|
cloudflare: "cloudflare";
|
|
568
|
+
fly: "fly";
|
|
569
|
+
railway: "railway";
|
|
570
|
+
sst: "sst";
|
|
463
571
|
}>>;
|
|
464
572
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
465
573
|
merge: "merge";
|
|
@@ -603,6 +711,18 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
603
711
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
604
712
|
none: "none";
|
|
605
713
|
opentelemetry: "opentelemetry";
|
|
714
|
+
sentry: "sentry";
|
|
715
|
+
grafana: "grafana";
|
|
716
|
+
}>>;
|
|
717
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
718
|
+
none: "none";
|
|
719
|
+
growthbook: "growthbook";
|
|
720
|
+
posthog: "posthog";
|
|
721
|
+
}>>;
|
|
722
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
723
|
+
none: "none";
|
|
724
|
+
plausible: "plausible";
|
|
725
|
+
umami: "umami";
|
|
606
726
|
}>>;
|
|
607
727
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
608
728
|
none: "none";
|
|
@@ -614,6 +734,16 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
614
734
|
none: "none";
|
|
615
735
|
"upstash-redis": "upstash-redis";
|
|
616
736
|
}>>;
|
|
737
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
738
|
+
none: "none";
|
|
739
|
+
meilisearch: "meilisearch";
|
|
740
|
+
typesense: "typesense";
|
|
741
|
+
}>>;
|
|
742
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
743
|
+
none: "none";
|
|
744
|
+
s3: "s3";
|
|
745
|
+
r2: "r2";
|
|
746
|
+
}>>;
|
|
617
747
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
618
748
|
none: "none";
|
|
619
749
|
axum: "axum";
|
|
@@ -648,6 +778,60 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
648
778
|
"tokio-test": "tokio-test";
|
|
649
779
|
mockall: "mockall";
|
|
650
780
|
}>>>;
|
|
781
|
+
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
782
|
+
none: "none";
|
|
783
|
+
fastapi: "fastapi";
|
|
784
|
+
django: "django";
|
|
785
|
+
}>>;
|
|
786
|
+
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
787
|
+
none: "none";
|
|
788
|
+
sqlalchemy: "sqlalchemy";
|
|
789
|
+
sqlmodel: "sqlmodel";
|
|
790
|
+
}>>;
|
|
791
|
+
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
792
|
+
none: "none";
|
|
793
|
+
pydantic: "pydantic";
|
|
794
|
+
}>>;
|
|
795
|
+
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
796
|
+
none: "none";
|
|
797
|
+
langgraph: "langgraph";
|
|
798
|
+
langchain: "langchain";
|
|
799
|
+
llamaindex: "llamaindex";
|
|
800
|
+
"openai-sdk": "openai-sdk";
|
|
801
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
802
|
+
crewai: "crewai";
|
|
803
|
+
}>>>;
|
|
804
|
+
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
805
|
+
none: "none";
|
|
806
|
+
celery: "celery";
|
|
807
|
+
}>>;
|
|
808
|
+
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
809
|
+
none: "none";
|
|
810
|
+
ruff: "ruff";
|
|
811
|
+
}>>;
|
|
812
|
+
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
813
|
+
none: "none";
|
|
814
|
+
gin: "gin";
|
|
815
|
+
echo: "echo";
|
|
816
|
+
}>>;
|
|
817
|
+
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
818
|
+
none: "none";
|
|
819
|
+
gorm: "gorm";
|
|
820
|
+
sqlc: "sqlc";
|
|
821
|
+
}>>;
|
|
822
|
+
goApi: z.ZodOptional<z.ZodEnum<{
|
|
823
|
+
none: "none";
|
|
824
|
+
"grpc-go": "grpc-go";
|
|
825
|
+
}>>;
|
|
826
|
+
goCli: z.ZodOptional<z.ZodEnum<{
|
|
827
|
+
none: "none";
|
|
828
|
+
cobra: "cobra";
|
|
829
|
+
bubbletea: "bubbletea";
|
|
830
|
+
}>>;
|
|
831
|
+
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
832
|
+
none: "none";
|
|
833
|
+
zap: "zap";
|
|
834
|
+
}>>;
|
|
651
835
|
}, z.core.$strip>;
|
|
652
836
|
declare const AddInputSchema: z.ZodObject<{
|
|
653
837
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -670,11 +854,19 @@ declare const AddInputSchema: z.ZodObject<{
|
|
|
670
854
|
}>>>;
|
|
671
855
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
672
856
|
none: "none";
|
|
857
|
+
docker: "docker";
|
|
673
858
|
cloudflare: "cloudflare";
|
|
859
|
+
fly: "fly";
|
|
860
|
+
railway: "railway";
|
|
861
|
+
sst: "sst";
|
|
674
862
|
}>>;
|
|
675
863
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
676
864
|
none: "none";
|
|
865
|
+
docker: "docker";
|
|
677
866
|
cloudflare: "cloudflare";
|
|
867
|
+
fly: "fly";
|
|
868
|
+
railway: "railway";
|
|
869
|
+
sst: "sst";
|
|
678
870
|
}>>;
|
|
679
871
|
projectDir: z.ZodOptional<z.ZodString>;
|
|
680
872
|
install: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -699,6 +891,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
699
891
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
700
892
|
typescript: "typescript";
|
|
701
893
|
rust: "rust";
|
|
894
|
+
python: "python";
|
|
895
|
+
go: "go";
|
|
702
896
|
}>>;
|
|
703
897
|
database: z.ZodOptional<z.ZodEnum<{
|
|
704
898
|
none: "none";
|
|
@@ -706,6 +900,8 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
706
900
|
postgres: "postgres";
|
|
707
901
|
mysql: "mysql";
|
|
708
902
|
mongodb: "mongodb";
|
|
903
|
+
edgedb: "edgedb";
|
|
904
|
+
redis: "redis";
|
|
709
905
|
}>>;
|
|
710
906
|
orm: z.ZodOptional<z.ZodEnum<{
|
|
711
907
|
none: "none";
|
|
@@ -722,6 +918,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
722
918
|
"better-auth": "better-auth";
|
|
723
919
|
clerk: "clerk";
|
|
724
920
|
nextauth: "nextauth";
|
|
921
|
+
"stack-auth": "stack-auth";
|
|
922
|
+
"supabase-auth": "supabase-auth";
|
|
923
|
+
auth0: "auth0";
|
|
725
924
|
}>>;
|
|
726
925
|
payments: z.ZodOptional<z.ZodEnum<{
|
|
727
926
|
none: "none";
|
|
@@ -787,6 +986,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
787
986
|
planetscale: "planetscale";
|
|
788
987
|
"mongodb-atlas": "mongodb-atlas";
|
|
789
988
|
supabase: "supabase";
|
|
989
|
+
upstash: "upstash";
|
|
790
990
|
d1: "d1";
|
|
791
991
|
docker: "docker";
|
|
792
992
|
}>>;
|
|
@@ -819,11 +1019,19 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
819
1019
|
}>>;
|
|
820
1020
|
webDeploy: z.ZodOptional<z.ZodEnum<{
|
|
821
1021
|
none: "none";
|
|
1022
|
+
docker: "docker";
|
|
822
1023
|
cloudflare: "cloudflare";
|
|
1024
|
+
fly: "fly";
|
|
1025
|
+
railway: "railway";
|
|
1026
|
+
sst: "sst";
|
|
823
1027
|
}>>;
|
|
824
1028
|
serverDeploy: z.ZodOptional<z.ZodEnum<{
|
|
825
1029
|
none: "none";
|
|
1030
|
+
docker: "docker";
|
|
826
1031
|
cloudflare: "cloudflare";
|
|
1032
|
+
fly: "fly";
|
|
1033
|
+
railway: "railway";
|
|
1034
|
+
sst: "sst";
|
|
827
1035
|
}>>;
|
|
828
1036
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
829
1037
|
merge: "merge";
|
|
@@ -967,6 +1175,18 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
967
1175
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
968
1176
|
none: "none";
|
|
969
1177
|
opentelemetry: "opentelemetry";
|
|
1178
|
+
sentry: "sentry";
|
|
1179
|
+
grafana: "grafana";
|
|
1180
|
+
}>>;
|
|
1181
|
+
featureFlags: z.ZodOptional<z.ZodEnum<{
|
|
1182
|
+
none: "none";
|
|
1183
|
+
growthbook: "growthbook";
|
|
1184
|
+
posthog: "posthog";
|
|
1185
|
+
}>>;
|
|
1186
|
+
analytics: z.ZodOptional<z.ZodEnum<{
|
|
1187
|
+
none: "none";
|
|
1188
|
+
plausible: "plausible";
|
|
1189
|
+
umami: "umami";
|
|
970
1190
|
}>>;
|
|
971
1191
|
cms: z.ZodOptional<z.ZodEnum<{
|
|
972
1192
|
none: "none";
|
|
@@ -978,6 +1198,16 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
978
1198
|
none: "none";
|
|
979
1199
|
"upstash-redis": "upstash-redis";
|
|
980
1200
|
}>>;
|
|
1201
|
+
search: z.ZodOptional<z.ZodEnum<{
|
|
1202
|
+
none: "none";
|
|
1203
|
+
meilisearch: "meilisearch";
|
|
1204
|
+
typesense: "typesense";
|
|
1205
|
+
}>>;
|
|
1206
|
+
fileStorage: z.ZodOptional<z.ZodEnum<{
|
|
1207
|
+
none: "none";
|
|
1208
|
+
s3: "s3";
|
|
1209
|
+
r2: "r2";
|
|
1210
|
+
}>>;
|
|
981
1211
|
rustWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
982
1212
|
none: "none";
|
|
983
1213
|
axum: "axum";
|
|
@@ -1012,6 +1242,60 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1012
1242
|
"tokio-test": "tokio-test";
|
|
1013
1243
|
mockall: "mockall";
|
|
1014
1244
|
}>>>;
|
|
1245
|
+
pythonWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1246
|
+
none: "none";
|
|
1247
|
+
fastapi: "fastapi";
|
|
1248
|
+
django: "django";
|
|
1249
|
+
}>>;
|
|
1250
|
+
pythonOrm: z.ZodOptional<z.ZodEnum<{
|
|
1251
|
+
none: "none";
|
|
1252
|
+
sqlalchemy: "sqlalchemy";
|
|
1253
|
+
sqlmodel: "sqlmodel";
|
|
1254
|
+
}>>;
|
|
1255
|
+
pythonValidation: z.ZodOptional<z.ZodEnum<{
|
|
1256
|
+
none: "none";
|
|
1257
|
+
pydantic: "pydantic";
|
|
1258
|
+
}>>;
|
|
1259
|
+
pythonAi: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1260
|
+
none: "none";
|
|
1261
|
+
langgraph: "langgraph";
|
|
1262
|
+
langchain: "langchain";
|
|
1263
|
+
llamaindex: "llamaindex";
|
|
1264
|
+
"openai-sdk": "openai-sdk";
|
|
1265
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
1266
|
+
crewai: "crewai";
|
|
1267
|
+
}>>>;
|
|
1268
|
+
pythonTaskQueue: z.ZodOptional<z.ZodEnum<{
|
|
1269
|
+
none: "none";
|
|
1270
|
+
celery: "celery";
|
|
1271
|
+
}>>;
|
|
1272
|
+
pythonQuality: z.ZodOptional<z.ZodEnum<{
|
|
1273
|
+
none: "none";
|
|
1274
|
+
ruff: "ruff";
|
|
1275
|
+
}>>;
|
|
1276
|
+
goWebFramework: z.ZodOptional<z.ZodEnum<{
|
|
1277
|
+
none: "none";
|
|
1278
|
+
gin: "gin";
|
|
1279
|
+
echo: "echo";
|
|
1280
|
+
}>>;
|
|
1281
|
+
goOrm: z.ZodOptional<z.ZodEnum<{
|
|
1282
|
+
none: "none";
|
|
1283
|
+
gorm: "gorm";
|
|
1284
|
+
sqlc: "sqlc";
|
|
1285
|
+
}>>;
|
|
1286
|
+
goApi: z.ZodOptional<z.ZodEnum<{
|
|
1287
|
+
none: "none";
|
|
1288
|
+
"grpc-go": "grpc-go";
|
|
1289
|
+
}>>;
|
|
1290
|
+
goCli: z.ZodOptional<z.ZodEnum<{
|
|
1291
|
+
none: "none";
|
|
1292
|
+
cobra: "cobra";
|
|
1293
|
+
bubbletea: "bubbletea";
|
|
1294
|
+
}>>;
|
|
1295
|
+
goLogging: z.ZodOptional<z.ZodEnum<{
|
|
1296
|
+
none: "none";
|
|
1297
|
+
zap: "zap";
|
|
1298
|
+
}>>;
|
|
1015
1299
|
projectDirectory: z.ZodOptional<z.ZodString>;
|
|
1016
1300
|
}, z.core.$strip>;
|
|
1017
1301
|
declare const ProjectConfigSchema: z.ZodObject<{
|
|
@@ -1021,6 +1305,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1021
1305
|
ecosystem: z.ZodEnum<{
|
|
1022
1306
|
typescript: "typescript";
|
|
1023
1307
|
rust: "rust";
|
|
1308
|
+
python: "python";
|
|
1309
|
+
go: "go";
|
|
1024
1310
|
}>;
|
|
1025
1311
|
database: z.ZodEnum<{
|
|
1026
1312
|
none: "none";
|
|
@@ -1028,6 +1314,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1028
1314
|
postgres: "postgres";
|
|
1029
1315
|
mysql: "mysql";
|
|
1030
1316
|
mongodb: "mongodb";
|
|
1317
|
+
edgedb: "edgedb";
|
|
1318
|
+
redis: "redis";
|
|
1031
1319
|
}>;
|
|
1032
1320
|
orm: z.ZodEnum<{
|
|
1033
1321
|
none: "none";
|
|
@@ -1105,6 +1393,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1105
1393
|
"better-auth": "better-auth";
|
|
1106
1394
|
clerk: "clerk";
|
|
1107
1395
|
nextauth: "nextauth";
|
|
1396
|
+
"stack-auth": "stack-auth";
|
|
1397
|
+
"supabase-auth": "supabase-auth";
|
|
1398
|
+
auth0: "auth0";
|
|
1108
1399
|
}>;
|
|
1109
1400
|
payments: z.ZodEnum<{
|
|
1110
1401
|
none: "none";
|
|
@@ -1129,6 +1420,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1129
1420
|
planetscale: "planetscale";
|
|
1130
1421
|
"mongodb-atlas": "mongodb-atlas";
|
|
1131
1422
|
supabase: "supabase";
|
|
1423
|
+
upstash: "upstash";
|
|
1132
1424
|
d1: "d1";
|
|
1133
1425
|
docker: "docker";
|
|
1134
1426
|
}>;
|
|
@@ -1141,11 +1433,19 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1141
1433
|
}>;
|
|
1142
1434
|
webDeploy: z.ZodEnum<{
|
|
1143
1435
|
none: "none";
|
|
1436
|
+
docker: "docker";
|
|
1144
1437
|
cloudflare: "cloudflare";
|
|
1438
|
+
fly: "fly";
|
|
1439
|
+
railway: "railway";
|
|
1440
|
+
sst: "sst";
|
|
1145
1441
|
}>;
|
|
1146
1442
|
serverDeploy: z.ZodEnum<{
|
|
1147
1443
|
none: "none";
|
|
1444
|
+
docker: "docker";
|
|
1148
1445
|
cloudflare: "cloudflare";
|
|
1446
|
+
fly: "fly";
|
|
1447
|
+
railway: "railway";
|
|
1448
|
+
sst: "sst";
|
|
1149
1449
|
}>;
|
|
1150
1450
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1151
1451
|
none: "none";
|
|
@@ -1280,6 +1580,18 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1280
1580
|
observability: z.ZodEnum<{
|
|
1281
1581
|
none: "none";
|
|
1282
1582
|
opentelemetry: "opentelemetry";
|
|
1583
|
+
sentry: "sentry";
|
|
1584
|
+
grafana: "grafana";
|
|
1585
|
+
}>;
|
|
1586
|
+
featureFlags: z.ZodEnum<{
|
|
1587
|
+
none: "none";
|
|
1588
|
+
growthbook: "growthbook";
|
|
1589
|
+
posthog: "posthog";
|
|
1590
|
+
}>;
|
|
1591
|
+
analytics: z.ZodEnum<{
|
|
1592
|
+
none: "none";
|
|
1593
|
+
plausible: "plausible";
|
|
1594
|
+
umami: "umami";
|
|
1283
1595
|
}>;
|
|
1284
1596
|
cms: z.ZodEnum<{
|
|
1285
1597
|
none: "none";
|
|
@@ -1291,6 +1603,16 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1291
1603
|
none: "none";
|
|
1292
1604
|
"upstash-redis": "upstash-redis";
|
|
1293
1605
|
}>;
|
|
1606
|
+
search: z.ZodEnum<{
|
|
1607
|
+
none: "none";
|
|
1608
|
+
meilisearch: "meilisearch";
|
|
1609
|
+
typesense: "typesense";
|
|
1610
|
+
}>;
|
|
1611
|
+
fileStorage: z.ZodEnum<{
|
|
1612
|
+
none: "none";
|
|
1613
|
+
s3: "s3";
|
|
1614
|
+
r2: "r2";
|
|
1615
|
+
}>;
|
|
1294
1616
|
rustWebFramework: z.ZodEnum<{
|
|
1295
1617
|
none: "none";
|
|
1296
1618
|
axum: "axum";
|
|
@@ -1325,6 +1647,60 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
1325
1647
|
"tokio-test": "tokio-test";
|
|
1326
1648
|
mockall: "mockall";
|
|
1327
1649
|
}>>;
|
|
1650
|
+
pythonWebFramework: z.ZodEnum<{
|
|
1651
|
+
none: "none";
|
|
1652
|
+
fastapi: "fastapi";
|
|
1653
|
+
django: "django";
|
|
1654
|
+
}>;
|
|
1655
|
+
pythonOrm: z.ZodEnum<{
|
|
1656
|
+
none: "none";
|
|
1657
|
+
sqlalchemy: "sqlalchemy";
|
|
1658
|
+
sqlmodel: "sqlmodel";
|
|
1659
|
+
}>;
|
|
1660
|
+
pythonValidation: z.ZodEnum<{
|
|
1661
|
+
none: "none";
|
|
1662
|
+
pydantic: "pydantic";
|
|
1663
|
+
}>;
|
|
1664
|
+
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
1665
|
+
none: "none";
|
|
1666
|
+
langgraph: "langgraph";
|
|
1667
|
+
langchain: "langchain";
|
|
1668
|
+
llamaindex: "llamaindex";
|
|
1669
|
+
"openai-sdk": "openai-sdk";
|
|
1670
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
1671
|
+
crewai: "crewai";
|
|
1672
|
+
}>>;
|
|
1673
|
+
pythonTaskQueue: z.ZodEnum<{
|
|
1674
|
+
none: "none";
|
|
1675
|
+
celery: "celery";
|
|
1676
|
+
}>;
|
|
1677
|
+
pythonQuality: z.ZodEnum<{
|
|
1678
|
+
none: "none";
|
|
1679
|
+
ruff: "ruff";
|
|
1680
|
+
}>;
|
|
1681
|
+
goWebFramework: z.ZodEnum<{
|
|
1682
|
+
none: "none";
|
|
1683
|
+
gin: "gin";
|
|
1684
|
+
echo: "echo";
|
|
1685
|
+
}>;
|
|
1686
|
+
goOrm: z.ZodEnum<{
|
|
1687
|
+
none: "none";
|
|
1688
|
+
gorm: "gorm";
|
|
1689
|
+
sqlc: "sqlc";
|
|
1690
|
+
}>;
|
|
1691
|
+
goApi: z.ZodEnum<{
|
|
1692
|
+
none: "none";
|
|
1693
|
+
"grpc-go": "grpc-go";
|
|
1694
|
+
}>;
|
|
1695
|
+
goCli: z.ZodEnum<{
|
|
1696
|
+
none: "none";
|
|
1697
|
+
cobra: "cobra";
|
|
1698
|
+
bubbletea: "bubbletea";
|
|
1699
|
+
}>;
|
|
1700
|
+
goLogging: z.ZodEnum<{
|
|
1701
|
+
none: "none";
|
|
1702
|
+
zap: "zap";
|
|
1703
|
+
}>;
|
|
1328
1704
|
}, z.core.$strip>;
|
|
1329
1705
|
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
1330
1706
|
version: z.ZodString;
|
|
@@ -1332,6 +1708,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1332
1708
|
ecosystem: z.ZodEnum<{
|
|
1333
1709
|
typescript: "typescript";
|
|
1334
1710
|
rust: "rust";
|
|
1711
|
+
python: "python";
|
|
1712
|
+
go: "go";
|
|
1335
1713
|
}>;
|
|
1336
1714
|
database: z.ZodEnum<{
|
|
1337
1715
|
none: "none";
|
|
@@ -1339,6 +1717,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1339
1717
|
postgres: "postgres";
|
|
1340
1718
|
mysql: "mysql";
|
|
1341
1719
|
mongodb: "mongodb";
|
|
1720
|
+
edgedb: "edgedb";
|
|
1721
|
+
redis: "redis";
|
|
1342
1722
|
}>;
|
|
1343
1723
|
orm: z.ZodEnum<{
|
|
1344
1724
|
none: "none";
|
|
@@ -1416,6 +1796,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1416
1796
|
"better-auth": "better-auth";
|
|
1417
1797
|
clerk: "clerk";
|
|
1418
1798
|
nextauth: "nextauth";
|
|
1799
|
+
"stack-auth": "stack-auth";
|
|
1800
|
+
"supabase-auth": "supabase-auth";
|
|
1801
|
+
auth0: "auth0";
|
|
1419
1802
|
}>;
|
|
1420
1803
|
payments: z.ZodEnum<{
|
|
1421
1804
|
none: "none";
|
|
@@ -1438,6 +1821,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1438
1821
|
planetscale: "planetscale";
|
|
1439
1822
|
"mongodb-atlas": "mongodb-atlas";
|
|
1440
1823
|
supabase: "supabase";
|
|
1824
|
+
upstash: "upstash";
|
|
1441
1825
|
d1: "d1";
|
|
1442
1826
|
docker: "docker";
|
|
1443
1827
|
}>;
|
|
@@ -1450,11 +1834,19 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1450
1834
|
}>;
|
|
1451
1835
|
webDeploy: z.ZodEnum<{
|
|
1452
1836
|
none: "none";
|
|
1837
|
+
docker: "docker";
|
|
1453
1838
|
cloudflare: "cloudflare";
|
|
1839
|
+
fly: "fly";
|
|
1840
|
+
railway: "railway";
|
|
1841
|
+
sst: "sst";
|
|
1454
1842
|
}>;
|
|
1455
1843
|
serverDeploy: z.ZodEnum<{
|
|
1456
1844
|
none: "none";
|
|
1845
|
+
docker: "docker";
|
|
1457
1846
|
cloudflare: "cloudflare";
|
|
1847
|
+
fly: "fly";
|
|
1848
|
+
railway: "railway";
|
|
1849
|
+
sst: "sst";
|
|
1458
1850
|
}>;
|
|
1459
1851
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1460
1852
|
none: "none";
|
|
@@ -1589,6 +1981,18 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1589
1981
|
observability: z.ZodEnum<{
|
|
1590
1982
|
none: "none";
|
|
1591
1983
|
opentelemetry: "opentelemetry";
|
|
1984
|
+
sentry: "sentry";
|
|
1985
|
+
grafana: "grafana";
|
|
1986
|
+
}>;
|
|
1987
|
+
featureFlags: z.ZodEnum<{
|
|
1988
|
+
none: "none";
|
|
1989
|
+
growthbook: "growthbook";
|
|
1990
|
+
posthog: "posthog";
|
|
1991
|
+
}>;
|
|
1992
|
+
analytics: z.ZodEnum<{
|
|
1993
|
+
none: "none";
|
|
1994
|
+
plausible: "plausible";
|
|
1995
|
+
umami: "umami";
|
|
1592
1996
|
}>;
|
|
1593
1997
|
cms: z.ZodEnum<{
|
|
1594
1998
|
none: "none";
|
|
@@ -1600,6 +2004,16 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1600
2004
|
none: "none";
|
|
1601
2005
|
"upstash-redis": "upstash-redis";
|
|
1602
2006
|
}>;
|
|
2007
|
+
search: z.ZodEnum<{
|
|
2008
|
+
none: "none";
|
|
2009
|
+
meilisearch: "meilisearch";
|
|
2010
|
+
typesense: "typesense";
|
|
2011
|
+
}>;
|
|
2012
|
+
fileStorage: z.ZodEnum<{
|
|
2013
|
+
none: "none";
|
|
2014
|
+
s3: "s3";
|
|
2015
|
+
r2: "r2";
|
|
2016
|
+
}>;
|
|
1603
2017
|
rustWebFramework: z.ZodEnum<{
|
|
1604
2018
|
none: "none";
|
|
1605
2019
|
axum: "axum";
|
|
@@ -1634,6 +2048,60 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
1634
2048
|
"tokio-test": "tokio-test";
|
|
1635
2049
|
mockall: "mockall";
|
|
1636
2050
|
}>>;
|
|
2051
|
+
pythonWebFramework: z.ZodEnum<{
|
|
2052
|
+
none: "none";
|
|
2053
|
+
fastapi: "fastapi";
|
|
2054
|
+
django: "django";
|
|
2055
|
+
}>;
|
|
2056
|
+
pythonOrm: z.ZodEnum<{
|
|
2057
|
+
none: "none";
|
|
2058
|
+
sqlalchemy: "sqlalchemy";
|
|
2059
|
+
sqlmodel: "sqlmodel";
|
|
2060
|
+
}>;
|
|
2061
|
+
pythonValidation: z.ZodEnum<{
|
|
2062
|
+
none: "none";
|
|
2063
|
+
pydantic: "pydantic";
|
|
2064
|
+
}>;
|
|
2065
|
+
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
2066
|
+
none: "none";
|
|
2067
|
+
langgraph: "langgraph";
|
|
2068
|
+
langchain: "langchain";
|
|
2069
|
+
llamaindex: "llamaindex";
|
|
2070
|
+
"openai-sdk": "openai-sdk";
|
|
2071
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
2072
|
+
crewai: "crewai";
|
|
2073
|
+
}>>;
|
|
2074
|
+
pythonTaskQueue: z.ZodEnum<{
|
|
2075
|
+
none: "none";
|
|
2076
|
+
celery: "celery";
|
|
2077
|
+
}>;
|
|
2078
|
+
pythonQuality: z.ZodEnum<{
|
|
2079
|
+
none: "none";
|
|
2080
|
+
ruff: "ruff";
|
|
2081
|
+
}>;
|
|
2082
|
+
goWebFramework: z.ZodEnum<{
|
|
2083
|
+
none: "none";
|
|
2084
|
+
gin: "gin";
|
|
2085
|
+
echo: "echo";
|
|
2086
|
+
}>;
|
|
2087
|
+
goOrm: z.ZodEnum<{
|
|
2088
|
+
none: "none";
|
|
2089
|
+
gorm: "gorm";
|
|
2090
|
+
sqlc: "sqlc";
|
|
2091
|
+
}>;
|
|
2092
|
+
goApi: z.ZodEnum<{
|
|
2093
|
+
none: "none";
|
|
2094
|
+
"grpc-go": "grpc-go";
|
|
2095
|
+
}>;
|
|
2096
|
+
goCli: z.ZodEnum<{
|
|
2097
|
+
none: "none";
|
|
2098
|
+
cobra: "cobra";
|
|
2099
|
+
bubbletea: "bubbletea";
|
|
2100
|
+
}>;
|
|
2101
|
+
goLogging: z.ZodEnum<{
|
|
2102
|
+
none: "none";
|
|
2103
|
+
zap: "zap";
|
|
2104
|
+
}>;
|
|
1637
2105
|
}, z.core.$strip>;
|
|
1638
2106
|
declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
1639
2107
|
$schema: z.ZodOptional<z.ZodString>;
|
|
@@ -1642,6 +2110,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1642
2110
|
ecosystem: z.ZodEnum<{
|
|
1643
2111
|
typescript: "typescript";
|
|
1644
2112
|
rust: "rust";
|
|
2113
|
+
python: "python";
|
|
2114
|
+
go: "go";
|
|
1645
2115
|
}>;
|
|
1646
2116
|
database: z.ZodEnum<{
|
|
1647
2117
|
none: "none";
|
|
@@ -1649,6 +2119,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1649
2119
|
postgres: "postgres";
|
|
1650
2120
|
mysql: "mysql";
|
|
1651
2121
|
mongodb: "mongodb";
|
|
2122
|
+
edgedb: "edgedb";
|
|
2123
|
+
redis: "redis";
|
|
1652
2124
|
}>;
|
|
1653
2125
|
orm: z.ZodEnum<{
|
|
1654
2126
|
none: "none";
|
|
@@ -1726,6 +2198,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1726
2198
|
"better-auth": "better-auth";
|
|
1727
2199
|
clerk: "clerk";
|
|
1728
2200
|
nextauth: "nextauth";
|
|
2201
|
+
"stack-auth": "stack-auth";
|
|
2202
|
+
"supabase-auth": "supabase-auth";
|
|
2203
|
+
auth0: "auth0";
|
|
1729
2204
|
}>;
|
|
1730
2205
|
payments: z.ZodEnum<{
|
|
1731
2206
|
none: "none";
|
|
@@ -1748,6 +2223,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1748
2223
|
planetscale: "planetscale";
|
|
1749
2224
|
"mongodb-atlas": "mongodb-atlas";
|
|
1750
2225
|
supabase: "supabase";
|
|
2226
|
+
upstash: "upstash";
|
|
1751
2227
|
d1: "d1";
|
|
1752
2228
|
docker: "docker";
|
|
1753
2229
|
}>;
|
|
@@ -1760,11 +2236,19 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1760
2236
|
}>;
|
|
1761
2237
|
webDeploy: z.ZodEnum<{
|
|
1762
2238
|
none: "none";
|
|
2239
|
+
docker: "docker";
|
|
1763
2240
|
cloudflare: "cloudflare";
|
|
2241
|
+
fly: "fly";
|
|
2242
|
+
railway: "railway";
|
|
2243
|
+
sst: "sst";
|
|
1764
2244
|
}>;
|
|
1765
2245
|
serverDeploy: z.ZodEnum<{
|
|
1766
2246
|
none: "none";
|
|
2247
|
+
docker: "docker";
|
|
1767
2248
|
cloudflare: "cloudflare";
|
|
2249
|
+
fly: "fly";
|
|
2250
|
+
railway: "railway";
|
|
2251
|
+
sst: "sst";
|
|
1768
2252
|
}>;
|
|
1769
2253
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
1770
2254
|
none: "none";
|
|
@@ -1899,6 +2383,18 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1899
2383
|
observability: z.ZodEnum<{
|
|
1900
2384
|
none: "none";
|
|
1901
2385
|
opentelemetry: "opentelemetry";
|
|
2386
|
+
sentry: "sentry";
|
|
2387
|
+
grafana: "grafana";
|
|
2388
|
+
}>;
|
|
2389
|
+
featureFlags: z.ZodEnum<{
|
|
2390
|
+
none: "none";
|
|
2391
|
+
growthbook: "growthbook";
|
|
2392
|
+
posthog: "posthog";
|
|
2393
|
+
}>;
|
|
2394
|
+
analytics: z.ZodEnum<{
|
|
2395
|
+
none: "none";
|
|
2396
|
+
plausible: "plausible";
|
|
2397
|
+
umami: "umami";
|
|
1902
2398
|
}>;
|
|
1903
2399
|
cms: z.ZodEnum<{
|
|
1904
2400
|
none: "none";
|
|
@@ -1910,6 +2406,16 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1910
2406
|
none: "none";
|
|
1911
2407
|
"upstash-redis": "upstash-redis";
|
|
1912
2408
|
}>;
|
|
2409
|
+
search: z.ZodEnum<{
|
|
2410
|
+
none: "none";
|
|
2411
|
+
meilisearch: "meilisearch";
|
|
2412
|
+
typesense: "typesense";
|
|
2413
|
+
}>;
|
|
2414
|
+
fileStorage: z.ZodEnum<{
|
|
2415
|
+
none: "none";
|
|
2416
|
+
s3: "s3";
|
|
2417
|
+
r2: "r2";
|
|
2418
|
+
}>;
|
|
1913
2419
|
rustWebFramework: z.ZodEnum<{
|
|
1914
2420
|
none: "none";
|
|
1915
2421
|
axum: "axum";
|
|
@@ -1944,6 +2450,60 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
1944
2450
|
"tokio-test": "tokio-test";
|
|
1945
2451
|
mockall: "mockall";
|
|
1946
2452
|
}>>;
|
|
2453
|
+
pythonWebFramework: z.ZodEnum<{
|
|
2454
|
+
none: "none";
|
|
2455
|
+
fastapi: "fastapi";
|
|
2456
|
+
django: "django";
|
|
2457
|
+
}>;
|
|
2458
|
+
pythonOrm: z.ZodEnum<{
|
|
2459
|
+
none: "none";
|
|
2460
|
+
sqlalchemy: "sqlalchemy";
|
|
2461
|
+
sqlmodel: "sqlmodel";
|
|
2462
|
+
}>;
|
|
2463
|
+
pythonValidation: z.ZodEnum<{
|
|
2464
|
+
none: "none";
|
|
2465
|
+
pydantic: "pydantic";
|
|
2466
|
+
}>;
|
|
2467
|
+
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
2468
|
+
none: "none";
|
|
2469
|
+
langgraph: "langgraph";
|
|
2470
|
+
langchain: "langchain";
|
|
2471
|
+
llamaindex: "llamaindex";
|
|
2472
|
+
"openai-sdk": "openai-sdk";
|
|
2473
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
2474
|
+
crewai: "crewai";
|
|
2475
|
+
}>>;
|
|
2476
|
+
pythonTaskQueue: z.ZodEnum<{
|
|
2477
|
+
none: "none";
|
|
2478
|
+
celery: "celery";
|
|
2479
|
+
}>;
|
|
2480
|
+
pythonQuality: z.ZodEnum<{
|
|
2481
|
+
none: "none";
|
|
2482
|
+
ruff: "ruff";
|
|
2483
|
+
}>;
|
|
2484
|
+
goWebFramework: z.ZodEnum<{
|
|
2485
|
+
none: "none";
|
|
2486
|
+
gin: "gin";
|
|
2487
|
+
echo: "echo";
|
|
2488
|
+
}>;
|
|
2489
|
+
goOrm: z.ZodEnum<{
|
|
2490
|
+
none: "none";
|
|
2491
|
+
gorm: "gorm";
|
|
2492
|
+
sqlc: "sqlc";
|
|
2493
|
+
}>;
|
|
2494
|
+
goApi: z.ZodEnum<{
|
|
2495
|
+
none: "none";
|
|
2496
|
+
"grpc-go": "grpc-go";
|
|
2497
|
+
}>;
|
|
2498
|
+
goCli: z.ZodEnum<{
|
|
2499
|
+
none: "none";
|
|
2500
|
+
cobra: "cobra";
|
|
2501
|
+
bubbletea: "bubbletea";
|
|
2502
|
+
}>;
|
|
2503
|
+
goLogging: z.ZodEnum<{
|
|
2504
|
+
none: "none";
|
|
2505
|
+
zap: "zap";
|
|
2506
|
+
}>;
|
|
1947
2507
|
}, z.core.$strip>;
|
|
1948
2508
|
declare const InitResultSchema: z.ZodObject<{
|
|
1949
2509
|
success: z.ZodBoolean;
|
|
@@ -1954,6 +2514,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
1954
2514
|
ecosystem: z.ZodEnum<{
|
|
1955
2515
|
typescript: "typescript";
|
|
1956
2516
|
rust: "rust";
|
|
2517
|
+
python: "python";
|
|
2518
|
+
go: "go";
|
|
1957
2519
|
}>;
|
|
1958
2520
|
database: z.ZodEnum<{
|
|
1959
2521
|
none: "none";
|
|
@@ -1961,6 +2523,8 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
1961
2523
|
postgres: "postgres";
|
|
1962
2524
|
mysql: "mysql";
|
|
1963
2525
|
mongodb: "mongodb";
|
|
2526
|
+
edgedb: "edgedb";
|
|
2527
|
+
redis: "redis";
|
|
1964
2528
|
}>;
|
|
1965
2529
|
orm: z.ZodEnum<{
|
|
1966
2530
|
none: "none";
|
|
@@ -2038,6 +2602,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2038
2602
|
"better-auth": "better-auth";
|
|
2039
2603
|
clerk: "clerk";
|
|
2040
2604
|
nextauth: "nextauth";
|
|
2605
|
+
"stack-auth": "stack-auth";
|
|
2606
|
+
"supabase-auth": "supabase-auth";
|
|
2607
|
+
auth0: "auth0";
|
|
2041
2608
|
}>;
|
|
2042
2609
|
payments: z.ZodEnum<{
|
|
2043
2610
|
none: "none";
|
|
@@ -2062,6 +2629,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2062
2629
|
planetscale: "planetscale";
|
|
2063
2630
|
"mongodb-atlas": "mongodb-atlas";
|
|
2064
2631
|
supabase: "supabase";
|
|
2632
|
+
upstash: "upstash";
|
|
2065
2633
|
d1: "d1";
|
|
2066
2634
|
docker: "docker";
|
|
2067
2635
|
}>;
|
|
@@ -2074,11 +2642,19 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2074
2642
|
}>;
|
|
2075
2643
|
webDeploy: z.ZodEnum<{
|
|
2076
2644
|
none: "none";
|
|
2645
|
+
docker: "docker";
|
|
2077
2646
|
cloudflare: "cloudflare";
|
|
2647
|
+
fly: "fly";
|
|
2648
|
+
railway: "railway";
|
|
2649
|
+
sst: "sst";
|
|
2078
2650
|
}>;
|
|
2079
2651
|
serverDeploy: z.ZodEnum<{
|
|
2080
2652
|
none: "none";
|
|
2653
|
+
docker: "docker";
|
|
2081
2654
|
cloudflare: "cloudflare";
|
|
2655
|
+
fly: "fly";
|
|
2656
|
+
railway: "railway";
|
|
2657
|
+
sst: "sst";
|
|
2082
2658
|
}>;
|
|
2083
2659
|
astroIntegration: z.ZodOptional<z.ZodEnum<{
|
|
2084
2660
|
none: "none";
|
|
@@ -2213,6 +2789,18 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2213
2789
|
observability: z.ZodEnum<{
|
|
2214
2790
|
none: "none";
|
|
2215
2791
|
opentelemetry: "opentelemetry";
|
|
2792
|
+
sentry: "sentry";
|
|
2793
|
+
grafana: "grafana";
|
|
2794
|
+
}>;
|
|
2795
|
+
featureFlags: z.ZodEnum<{
|
|
2796
|
+
none: "none";
|
|
2797
|
+
growthbook: "growthbook";
|
|
2798
|
+
posthog: "posthog";
|
|
2799
|
+
}>;
|
|
2800
|
+
analytics: z.ZodEnum<{
|
|
2801
|
+
none: "none";
|
|
2802
|
+
plausible: "plausible";
|
|
2803
|
+
umami: "umami";
|
|
2216
2804
|
}>;
|
|
2217
2805
|
cms: z.ZodEnum<{
|
|
2218
2806
|
none: "none";
|
|
@@ -2224,6 +2812,16 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2224
2812
|
none: "none";
|
|
2225
2813
|
"upstash-redis": "upstash-redis";
|
|
2226
2814
|
}>;
|
|
2815
|
+
search: z.ZodEnum<{
|
|
2816
|
+
none: "none";
|
|
2817
|
+
meilisearch: "meilisearch";
|
|
2818
|
+
typesense: "typesense";
|
|
2819
|
+
}>;
|
|
2820
|
+
fileStorage: z.ZodEnum<{
|
|
2821
|
+
none: "none";
|
|
2822
|
+
s3: "s3";
|
|
2823
|
+
r2: "r2";
|
|
2824
|
+
}>;
|
|
2227
2825
|
rustWebFramework: z.ZodEnum<{
|
|
2228
2826
|
none: "none";
|
|
2229
2827
|
axum: "axum";
|
|
@@ -2258,6 +2856,60 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2258
2856
|
"tokio-test": "tokio-test";
|
|
2259
2857
|
mockall: "mockall";
|
|
2260
2858
|
}>>;
|
|
2859
|
+
pythonWebFramework: z.ZodEnum<{
|
|
2860
|
+
none: "none";
|
|
2861
|
+
fastapi: "fastapi";
|
|
2862
|
+
django: "django";
|
|
2863
|
+
}>;
|
|
2864
|
+
pythonOrm: z.ZodEnum<{
|
|
2865
|
+
none: "none";
|
|
2866
|
+
sqlalchemy: "sqlalchemy";
|
|
2867
|
+
sqlmodel: "sqlmodel";
|
|
2868
|
+
}>;
|
|
2869
|
+
pythonValidation: z.ZodEnum<{
|
|
2870
|
+
none: "none";
|
|
2871
|
+
pydantic: "pydantic";
|
|
2872
|
+
}>;
|
|
2873
|
+
pythonAi: z.ZodArray<z.ZodEnum<{
|
|
2874
|
+
none: "none";
|
|
2875
|
+
langgraph: "langgraph";
|
|
2876
|
+
langchain: "langchain";
|
|
2877
|
+
llamaindex: "llamaindex";
|
|
2878
|
+
"openai-sdk": "openai-sdk";
|
|
2879
|
+
"anthropic-sdk": "anthropic-sdk";
|
|
2880
|
+
crewai: "crewai";
|
|
2881
|
+
}>>;
|
|
2882
|
+
pythonTaskQueue: z.ZodEnum<{
|
|
2883
|
+
none: "none";
|
|
2884
|
+
celery: "celery";
|
|
2885
|
+
}>;
|
|
2886
|
+
pythonQuality: z.ZodEnum<{
|
|
2887
|
+
none: "none";
|
|
2888
|
+
ruff: "ruff";
|
|
2889
|
+
}>;
|
|
2890
|
+
goWebFramework: z.ZodEnum<{
|
|
2891
|
+
none: "none";
|
|
2892
|
+
gin: "gin";
|
|
2893
|
+
echo: "echo";
|
|
2894
|
+
}>;
|
|
2895
|
+
goOrm: z.ZodEnum<{
|
|
2896
|
+
none: "none";
|
|
2897
|
+
gorm: "gorm";
|
|
2898
|
+
sqlc: "sqlc";
|
|
2899
|
+
}>;
|
|
2900
|
+
goApi: z.ZodEnum<{
|
|
2901
|
+
none: "none";
|
|
2902
|
+
"grpc-go": "grpc-go";
|
|
2903
|
+
}>;
|
|
2904
|
+
goCli: z.ZodEnum<{
|
|
2905
|
+
none: "none";
|
|
2906
|
+
cobra: "cobra";
|
|
2907
|
+
bubbletea: "bubbletea";
|
|
2908
|
+
}>;
|
|
2909
|
+
goLogging: z.ZodEnum<{
|
|
2910
|
+
none: "none";
|
|
2911
|
+
zap: "zap";
|
|
2912
|
+
}>;
|
|
2261
2913
|
}, z.core.$strip>;
|
|
2262
2914
|
reproducibleCommand: z.ZodString;
|
|
2263
2915
|
timeScaffolded: z.ZodString;
|
|
@@ -2266,7 +2918,7 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
2266
2918
|
relativePath: z.ZodString;
|
|
2267
2919
|
error: z.ZodOptional<z.ZodString>;
|
|
2268
2920
|
}, z.core.$strip>;
|
|
2269
|
-
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb")[];
|
|
2921
|
+
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
2270
2922
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
2271
2923
|
declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
|
|
2272
2924
|
declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
|
|
@@ -2274,12 +2926,12 @@ declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "t
|
|
|
2274
2926
|
declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "turborepo" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook")[];
|
|
2275
2927
|
declare const EXAMPLES_VALUES: ("none" | "todo" | "ai")[];
|
|
2276
2928
|
declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm")[];
|
|
2277
|
-
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "d1" | "docker")[];
|
|
2929
|
+
declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
|
|
2278
2930
|
declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph")[];
|
|
2279
|
-
declare const AUTH_VALUES: ("none" | "better-auth" | "clerk" | "nextauth")[];
|
|
2931
|
+
declare const AUTH_VALUES: ("none" | "better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0")[];
|
|
2280
2932
|
declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "dodo")[];
|
|
2281
|
-
declare const WEB_DEPLOY_VALUES: ("none" | "cloudflare")[];
|
|
2282
|
-
declare const SERVER_DEPLOY_VALUES: ("none" | "cloudflare")[];
|
|
2933
|
+
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
2934
|
+
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst")[];
|
|
2283
2935
|
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
2284
2936
|
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
2285
2937
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
@@ -2297,16 +2949,31 @@ declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" |
|
|
|
2297
2949
|
declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
|
|
2298
2950
|
declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
|
|
2299
2951
|
declare const LOGGING_VALUES: ("none" | "pino" | "winston")[];
|
|
2300
|
-
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry")[];
|
|
2952
|
+
declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana")[];
|
|
2953
|
+
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog")[];
|
|
2954
|
+
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
2301
2955
|
declare const CMS_VALUES: ("none" | "payload" | "sanity" | "strapi")[];
|
|
2302
2956
|
declare const CACHING_VALUES: ("none" | "upstash-redis")[];
|
|
2303
|
-
declare const
|
|
2957
|
+
declare const SEARCH_VALUES: ("none" | "meilisearch" | "typesense")[];
|
|
2958
|
+
declare const FILE_STORAGE_VALUES: ("none" | "s3" | "r2")[];
|
|
2959
|
+
declare const ECOSYSTEM_VALUES: ("typescript" | "rust" | "python" | "go")[];
|
|
2304
2960
|
declare const RUST_WEB_FRAMEWORK_VALUES: ("none" | "axum" | "actix-web")[];
|
|
2305
2961
|
declare const RUST_FRONTEND_VALUES: ("none" | "leptos" | "dioxus")[];
|
|
2306
2962
|
declare const RUST_ORM_VALUES: ("none" | "sea-orm" | "sqlx")[];
|
|
2307
2963
|
declare const RUST_API_VALUES: ("none" | "tonic" | "async-graphql")[];
|
|
2308
2964
|
declare const RUST_CLI_VALUES: ("none" | "clap" | "ratatui")[];
|
|
2309
2965
|
declare const RUST_LIBRARIES_VALUES: ("none" | "serde" | "validator" | "jsonwebtoken" | "argon2" | "tokio-test" | "mockall")[];
|
|
2966
|
+
declare const PYTHON_WEB_FRAMEWORK_VALUES: ("none" | "fastapi" | "django")[];
|
|
2967
|
+
declare const PYTHON_ORM_VALUES: ("none" | "sqlalchemy" | "sqlmodel")[];
|
|
2968
|
+
declare const PYTHON_VALIDATION_VALUES: ("none" | "pydantic")[];
|
|
2969
|
+
declare const PYTHON_AI_VALUES: ("none" | "langgraph" | "langchain" | "llamaindex" | "openai-sdk" | "anthropic-sdk" | "crewai")[];
|
|
2970
|
+
declare const PYTHON_TASK_QUEUE_VALUES: ("none" | "celery")[];
|
|
2971
|
+
declare const PYTHON_QUALITY_VALUES: ("none" | "ruff")[];
|
|
2972
|
+
declare const GO_WEB_FRAMEWORK_VALUES: ("none" | "gin" | "echo")[];
|
|
2973
|
+
declare const GO_ORM_VALUES: ("none" | "gorm" | "sqlc")[];
|
|
2974
|
+
declare const GO_API_VALUES: ("none" | "grpc-go")[];
|
|
2975
|
+
declare const GO_CLI_VALUES: ("none" | "cobra" | "bubbletea")[];
|
|
2976
|
+
declare const GO_LOGGING_VALUES: ("none" | "zap")[];
|
|
2310
2977
|
//#endregion
|
|
2311
|
-
export {
|
|
2312
|
-
//# sourceMappingURL=schemas-
|
|
2978
|
+
export { GO_CLI_VALUES as $, STATE_MANAGEMENT_VALUES as $t, DIRECTORY_CONFLICT_VALUES as A, PythonOrmSchema as At, EmailSchema as B, RUST_LIBRARIES_VALUES as Bt, CMS_VALUES as C, PYTHON_VALIDATION_VALUES as Ct, CreateInputSchema as D, ProjectConfigSchema as Dt, CachingSchema as E, PaymentsSchema as Et, EFFECT_VALUES as F, REALTIME_VALUES as Ft, FORMS_VALUES as G, RustApiSchema as Gt, FEATURE_FLAGS_VALUES as H, RUST_WEB_FRAMEWORK_VALUES as Ht, EMAIL_VALUES as I, RUNTIME_VALUES as It, FileStorageSchema as J, RustLibrariesSchema as Jt, FRONTEND_VALUES as K, RustCliSchema as Kt, EXAMPLES_VALUES as L, RUST_API_VALUES as Lt, DatabaseSetupSchema as M, PythonTaskQueueSchema as Mt, DirectoryConflictSchema as N, PythonValidationSchema as Nt, DATABASE_SETUP_VALUES as O, ProjectNameSchema as Ot, ECOSYSTEM_VALUES as P, PythonWebFrameworkSchema as Pt, GO_API_VALUES as Q, SERVER_DEPLOY_VALUES as Qt, EcosystemSchema as R, RUST_CLI_VALUES as Rt, CMSSchema as S, PYTHON_TASK_QUEUE_VALUES as St, CSS_FRAMEWORK_VALUES as T, PackageManagerSchema as Tt, FILE_STORAGE_VALUES as U, RealtimeSchema as Ut, ExamplesSchema as V, RUST_ORM_VALUES as Vt, FILE_UPLOAD_VALUES as W, RuntimeSchema as Wt, FormsSchema as X, RustWebFrameworkSchema as Xt, FileUploadSchema as Y, RustOrmSchema as Yt, FrontendSchema as Z, SEARCH_VALUES as Zt, BackendSchema as _, PACKAGE_MANAGER_VALUES as _t, ANIMATION_VALUES as a, TemplateSchema as an, GoLoggingSchema as at, CACHING_VALUES as b, PYTHON_ORM_VALUES as bt, ASTRO_INTEGRATION_VALUES as c, UI_LIBRARY_VALUES as cn, InitResultSchema as ct, AddonsSchema as d, WEB_DEPLOY_VALUES as dn, LOGGING_VALUES as dt, SearchSchema as en, GO_LOGGING_VALUES as et, AnalyticsSchema as f, WebDeploySchema as fn, LoggingSchema as ft, BACKEND_VALUES as g, ObservabilitySchema as gt, AuthSchema as h, ORM_VALUES as ht, ANALYTICS_VALUES as i, TESTING_VALUES as in, GoCliSchema as it, DatabaseSchema as j, PythonQualitySchema as jt, DATABASE_VALUES as k, PythonAiSchema as kt, AUTH_VALUES as l, VALIDATION_VALUES as ln, JOB_QUEUE_VALUES as lt, AstroIntegrationSchema as m, ORMSchema as mt, AISchema as n, StateManagementSchema as nn, GO_WEB_FRAMEWORK_VALUES as nt, APISchema as o, TestingSchema as on, GoOrmSchema as ot, AnimationSchema as p, OBSERVABILITY_VALUES as pt, FeatureFlagsSchema as q, RustFrontendSchema as qt, AI_VALUES as r, TEMPLATE_VALUES as rn, GoApiSchema as rt, API_VALUES as s, UILibrarySchema as sn, GoWebFrameworkSchema as st, ADDONS_VALUES as t, ServerDeploySchema as tn, GO_ORM_VALUES as tt, AddInputSchema as u, ValidationSchema as un, JobQueueSchema as ut, BetterTStackConfigFileSchema as v, PAYMENTS_VALUES as vt, CSSFrameworkSchema as w, PYTHON_WEB_FRAMEWORK_VALUES as wt, CLIInputSchema as x, PYTHON_QUALITY_VALUES as xt, BetterTStackConfigSchema as y, PYTHON_AI_VALUES as yt, EffectSchema as z, RUST_FRONTEND_VALUES as zt };
|
|
2979
|
+
//# sourceMappingURL=schemas-ev9lcPma.d.mts.map
|