@better-fullstack/types 1.8.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{defaults-05kDqAVs.d.mts → defaults-BSM_JIBn.d.mts} +2 -2
- package/dist/defaults-BSM_JIBn.d.mts.map +1 -0
- package/dist/{defaults-D23vxGYl.mjs → defaults-DNmNiuxG.mjs} +1 -1
- package/dist/{defaults-D23vxGYl.mjs.map → defaults-DNmNiuxG.mjs.map} +1 -1
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -5
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +5 -4
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +490 -14
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-CUFM_Cdl.d.mts → schemas-B5EgRfVL.d.mts} +480 -16
- package/dist/schemas-B5EgRfVL.d.mts.map +1 -0
- package/dist/{schemas-Hj_Gbdf0.mjs → schemas-DnEGgQzA.mjs} +68 -6
- package/dist/schemas-DnEGgQzA.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/stack-graph-C2tzuzRe.mjs +585 -0
- package/dist/stack-graph-C2tzuzRe.mjs.map +1 -0
- package/dist/stack-graph-_551XvrL.d.mts +68 -0
- package/dist/stack-graph-_551XvrL.d.mts.map +1 -0
- package/dist/stack-graph.d.mts +4 -0
- package/dist/stack-graph.mjs +4 -0
- package/dist/{stack-translation-BpsvxDrw.mjs → stack-translation-BcsaMRuV.mjs} +207 -16
- package/dist/stack-translation-BcsaMRuV.mjs.map +1 -0
- package/dist/{stack-translation-D7H3h8Vs.d.mts → stack-translation-CqslePvp.d.mts} +13 -6
- package/dist/stack-translation-CqslePvp.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +5 -5
- package/dist/stack-translation.mjs +4 -3
- package/dist/{types-C0KHWyJI.d.mts → types-DorAmN4i.d.mts} +7 -3
- package/dist/types-DorAmN4i.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +5 -1
- package/dist/defaults-05kDqAVs.d.mts.map +0 -1
- package/dist/schemas-CUFM_Cdl.d.mts.map +0 -1
- package/dist/schemas-Hj_Gbdf0.mjs.map +0 -1
- package/dist/stack-translation-BpsvxDrw.mjs.map +0 -1
- package/dist/stack-translation-D7H3h8Vs.d.mts.map +0 -1
- package/dist/types-C0KHWyJI.d.mts.map +0 -1
|
@@ -10,6 +10,112 @@ declare const EcosystemSchema: z.ZodEnum<{
|
|
|
10
10
|
java: "java";
|
|
11
11
|
elixir: "elixir";
|
|
12
12
|
}>;
|
|
13
|
+
declare const StackPartEcosystemSchema: z.ZodUnion<readonly [z.ZodEnum<{
|
|
14
|
+
typescript: "typescript";
|
|
15
|
+
"react-native": "react-native";
|
|
16
|
+
rust: "rust";
|
|
17
|
+
python: "python";
|
|
18
|
+
go: "go";
|
|
19
|
+
java: "java";
|
|
20
|
+
elixir: "elixir";
|
|
21
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
22
|
+
declare const StackPartRoleSchema: z.ZodEnum<{
|
|
23
|
+
ai: "ai";
|
|
24
|
+
database: "database";
|
|
25
|
+
orm: "orm";
|
|
26
|
+
auth: "auth";
|
|
27
|
+
payments: "payments";
|
|
28
|
+
frontend: "frontend";
|
|
29
|
+
backend: "backend";
|
|
30
|
+
runtime: "runtime";
|
|
31
|
+
api: "api";
|
|
32
|
+
stateManagement: "stateManagement";
|
|
33
|
+
forms: "forms";
|
|
34
|
+
testing: "testing";
|
|
35
|
+
email: "email";
|
|
36
|
+
validation: "validation";
|
|
37
|
+
jobQueue: "jobQueue";
|
|
38
|
+
logging: "logging";
|
|
39
|
+
observability: "observability";
|
|
40
|
+
featureFlags: "featureFlags";
|
|
41
|
+
analytics: "analytics";
|
|
42
|
+
cms: "cms";
|
|
43
|
+
caching: "caching";
|
|
44
|
+
i18n: "i18n";
|
|
45
|
+
search: "search";
|
|
46
|
+
fileStorage: "fileStorage";
|
|
47
|
+
mobile: "mobile";
|
|
48
|
+
deploy: "deploy";
|
|
49
|
+
ui: "ui";
|
|
50
|
+
css: "css";
|
|
51
|
+
documentation: "documentation";
|
|
52
|
+
codeQuality: "codeQuality";
|
|
53
|
+
appPlatform: "appPlatform";
|
|
54
|
+
}>;
|
|
55
|
+
declare const StackPartSourceSchema: z.ZodEnum<{
|
|
56
|
+
selected: "selected";
|
|
57
|
+
defaulted: "defaulted";
|
|
58
|
+
provided: "provided";
|
|
59
|
+
legacy: "legacy";
|
|
60
|
+
adjusted: "adjusted";
|
|
61
|
+
}>;
|
|
62
|
+
declare const StackPartSchema: z.ZodObject<{
|
|
63
|
+
id: z.ZodString;
|
|
64
|
+
role: z.ZodEnum<{
|
|
65
|
+
ai: "ai";
|
|
66
|
+
database: "database";
|
|
67
|
+
orm: "orm";
|
|
68
|
+
auth: "auth";
|
|
69
|
+
payments: "payments";
|
|
70
|
+
frontend: "frontend";
|
|
71
|
+
backend: "backend";
|
|
72
|
+
runtime: "runtime";
|
|
73
|
+
api: "api";
|
|
74
|
+
stateManagement: "stateManagement";
|
|
75
|
+
forms: "forms";
|
|
76
|
+
testing: "testing";
|
|
77
|
+
email: "email";
|
|
78
|
+
validation: "validation";
|
|
79
|
+
jobQueue: "jobQueue";
|
|
80
|
+
logging: "logging";
|
|
81
|
+
observability: "observability";
|
|
82
|
+
featureFlags: "featureFlags";
|
|
83
|
+
analytics: "analytics";
|
|
84
|
+
cms: "cms";
|
|
85
|
+
caching: "caching";
|
|
86
|
+
i18n: "i18n";
|
|
87
|
+
search: "search";
|
|
88
|
+
fileStorage: "fileStorage";
|
|
89
|
+
mobile: "mobile";
|
|
90
|
+
deploy: "deploy";
|
|
91
|
+
ui: "ui";
|
|
92
|
+
css: "css";
|
|
93
|
+
documentation: "documentation";
|
|
94
|
+
codeQuality: "codeQuality";
|
|
95
|
+
appPlatform: "appPlatform";
|
|
96
|
+
}>;
|
|
97
|
+
toolId: z.ZodString;
|
|
98
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
99
|
+
typescript: "typescript";
|
|
100
|
+
"react-native": "react-native";
|
|
101
|
+
rust: "rust";
|
|
102
|
+
python: "python";
|
|
103
|
+
go: "go";
|
|
104
|
+
java: "java";
|
|
105
|
+
elixir: "elixir";
|
|
106
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
107
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
108
|
+
source: z.ZodEnum<{
|
|
109
|
+
selected: "selected";
|
|
110
|
+
defaulted: "defaulted";
|
|
111
|
+
provided: "provided";
|
|
112
|
+
legacy: "legacy";
|
|
113
|
+
adjusted: "adjusted";
|
|
114
|
+
}>;
|
|
115
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
116
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
117
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
118
|
+
}, z.core.$strip>;
|
|
13
119
|
declare const DatabaseSchema: z.ZodEnum<{
|
|
14
120
|
none: "none";
|
|
15
121
|
sqlite: "sqlite";
|
|
@@ -338,9 +444,9 @@ declare const MobileNavigationSchema: z.ZodEnum<{
|
|
|
338
444
|
}>;
|
|
339
445
|
declare const MobileUISchema: z.ZodEnum<{
|
|
340
446
|
none: "none";
|
|
447
|
+
uniwind: "uniwind";
|
|
341
448
|
tamagui: "tamagui";
|
|
342
449
|
"gluestack-ui": "gluestack-ui";
|
|
343
|
-
uniwind: "uniwind";
|
|
344
450
|
unistyles: "unistyles";
|
|
345
451
|
}>;
|
|
346
452
|
declare const MobileStorageSchema: z.ZodEnum<{
|
|
@@ -762,25 +868,26 @@ declare const DirectoryConflictSchema: z.ZodEnum<{
|
|
|
762
868
|
}>;
|
|
763
869
|
declare const TemplateSchema: z.ZodEnum<{
|
|
764
870
|
none: "none";
|
|
765
|
-
uniwind: "uniwind";
|
|
766
871
|
mern: "mern";
|
|
767
872
|
pern: "pern";
|
|
768
873
|
t3: "t3";
|
|
874
|
+
uniwind: "uniwind";
|
|
769
875
|
}>;
|
|
770
876
|
declare const ProjectNameSchema: z.ZodString;
|
|
771
877
|
declare const CreateInputSchema: z.ZodObject<{
|
|
772
878
|
projectName: z.ZodOptional<z.ZodString>;
|
|
773
879
|
template: z.ZodOptional<z.ZodEnum<{
|
|
774
880
|
none: "none";
|
|
775
|
-
uniwind: "uniwind";
|
|
776
881
|
mern: "mern";
|
|
777
882
|
pern: "pern";
|
|
778
883
|
t3: "t3";
|
|
884
|
+
uniwind: "uniwind";
|
|
779
885
|
}>>;
|
|
780
886
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
781
887
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
782
888
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
783
889
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
890
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
784
891
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
785
892
|
typescript: "typescript";
|
|
786
893
|
"react-native": "react-native";
|
|
@@ -1225,9 +1332,9 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1225
1332
|
}>>;
|
|
1226
1333
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
1227
1334
|
none: "none";
|
|
1335
|
+
uniwind: "uniwind";
|
|
1228
1336
|
tamagui: "tamagui";
|
|
1229
1337
|
"gluestack-ui": "gluestack-ui";
|
|
1230
|
-
uniwind: "uniwind";
|
|
1231
1338
|
unistyles: "unistyles";
|
|
1232
1339
|
}>>;
|
|
1233
1340
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1545,6 +1652,7 @@ declare const CreateInputSchema: z.ZodObject<{
|
|
|
1545
1652
|
"agents-md": "agents-md";
|
|
1546
1653
|
cursorrules: "cursorrules";
|
|
1547
1654
|
}>>>;
|
|
1655
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1548
1656
|
}, z.core.$strip>;
|
|
1549
1657
|
declare const AddInputSchema: z.ZodObject<{
|
|
1550
1658
|
addons: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1605,15 +1713,16 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
1605
1713
|
projectName: z.ZodOptional<z.ZodString>;
|
|
1606
1714
|
template: z.ZodOptional<z.ZodEnum<{
|
|
1607
1715
|
none: "none";
|
|
1608
|
-
uniwind: "uniwind";
|
|
1609
1716
|
mern: "mern";
|
|
1610
1717
|
pern: "pern";
|
|
1611
1718
|
t3: "t3";
|
|
1719
|
+
uniwind: "uniwind";
|
|
1612
1720
|
}>>;
|
|
1613
1721
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
1614
1722
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
1615
1723
|
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
1616
1724
|
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
1725
|
+
verify: z.ZodOptional<z.ZodBoolean>;
|
|
1617
1726
|
ecosystem: z.ZodOptional<z.ZodEnum<{
|
|
1618
1727
|
typescript: "typescript";
|
|
1619
1728
|
"react-native": "react-native";
|
|
@@ -2058,9 +2167,9 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2058
2167
|
}>>;
|
|
2059
2168
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
2060
2169
|
none: "none";
|
|
2170
|
+
uniwind: "uniwind";
|
|
2061
2171
|
tamagui: "tamagui";
|
|
2062
2172
|
"gluestack-ui": "gluestack-ui";
|
|
2063
|
-
uniwind: "uniwind";
|
|
2064
2173
|
unistyles: "unistyles";
|
|
2065
2174
|
}>>;
|
|
2066
2175
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -2378,6 +2487,7 @@ declare const CLIInputSchema: z.ZodObject<{
|
|
|
2378
2487
|
"agents-md": "agents-md";
|
|
2379
2488
|
cursorrules: "cursorrules";
|
|
2380
2489
|
}>>>;
|
|
2490
|
+
part: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2381
2491
|
projectDirectory: z.ZodOptional<z.ZodString>;
|
|
2382
2492
|
}, z.core.$strip>;
|
|
2383
2493
|
declare const ProjectConfigSchema: z.ZodObject<{
|
|
@@ -2819,9 +2929,9 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
2819
2929
|
}>;
|
|
2820
2930
|
mobileUI: z.ZodEnum<{
|
|
2821
2931
|
none: "none";
|
|
2932
|
+
uniwind: "uniwind";
|
|
2822
2933
|
tamagui: "tamagui";
|
|
2823
2934
|
"gluestack-ui": "gluestack-ui";
|
|
2824
|
-
uniwind: "uniwind";
|
|
2825
2935
|
unistyles: "unistyles";
|
|
2826
2936
|
}>;
|
|
2827
2937
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3139,10 +3249,69 @@ declare const ProjectConfigSchema: z.ZodObject<{
|
|
|
3139
3249
|
"agents-md": "agents-md";
|
|
3140
3250
|
cursorrules: "cursorrules";
|
|
3141
3251
|
}>>;
|
|
3252
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3253
|
+
id: z.ZodString;
|
|
3254
|
+
role: z.ZodEnum<{
|
|
3255
|
+
ai: "ai";
|
|
3256
|
+
database: "database";
|
|
3257
|
+
orm: "orm";
|
|
3258
|
+
auth: "auth";
|
|
3259
|
+
payments: "payments";
|
|
3260
|
+
frontend: "frontend";
|
|
3261
|
+
backend: "backend";
|
|
3262
|
+
runtime: "runtime";
|
|
3263
|
+
api: "api";
|
|
3264
|
+
stateManagement: "stateManagement";
|
|
3265
|
+
forms: "forms";
|
|
3266
|
+
testing: "testing";
|
|
3267
|
+
email: "email";
|
|
3268
|
+
validation: "validation";
|
|
3269
|
+
jobQueue: "jobQueue";
|
|
3270
|
+
logging: "logging";
|
|
3271
|
+
observability: "observability";
|
|
3272
|
+
featureFlags: "featureFlags";
|
|
3273
|
+
analytics: "analytics";
|
|
3274
|
+
cms: "cms";
|
|
3275
|
+
caching: "caching";
|
|
3276
|
+
i18n: "i18n";
|
|
3277
|
+
search: "search";
|
|
3278
|
+
fileStorage: "fileStorage";
|
|
3279
|
+
mobile: "mobile";
|
|
3280
|
+
deploy: "deploy";
|
|
3281
|
+
ui: "ui";
|
|
3282
|
+
css: "css";
|
|
3283
|
+
documentation: "documentation";
|
|
3284
|
+
codeQuality: "codeQuality";
|
|
3285
|
+
appPlatform: "appPlatform";
|
|
3286
|
+
}>;
|
|
3287
|
+
toolId: z.ZodString;
|
|
3288
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
3289
|
+
typescript: "typescript";
|
|
3290
|
+
"react-native": "react-native";
|
|
3291
|
+
rust: "rust";
|
|
3292
|
+
python: "python";
|
|
3293
|
+
go: "go";
|
|
3294
|
+
java: "java";
|
|
3295
|
+
elixir: "elixir";
|
|
3296
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
3297
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
3298
|
+
source: z.ZodEnum<{
|
|
3299
|
+
selected: "selected";
|
|
3300
|
+
defaulted: "defaulted";
|
|
3301
|
+
provided: "provided";
|
|
3302
|
+
legacy: "legacy";
|
|
3303
|
+
adjusted: "adjusted";
|
|
3304
|
+
}>;
|
|
3305
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
3306
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
3307
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3308
|
+
}, z.core.$strip>>>;
|
|
3142
3309
|
}, z.core.$strip>;
|
|
3143
3310
|
declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
3144
3311
|
version: z.ZodString;
|
|
3145
3312
|
createdAt: z.ZodString;
|
|
3313
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
3314
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3146
3315
|
ecosystem: z.ZodEnum<{
|
|
3147
3316
|
typescript: "typescript";
|
|
3148
3317
|
"react-native": "react-native";
|
|
@@ -3576,9 +3745,9 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3576
3745
|
}>;
|
|
3577
3746
|
mobileUI: z.ZodEnum<{
|
|
3578
3747
|
none: "none";
|
|
3748
|
+
uniwind: "uniwind";
|
|
3579
3749
|
tamagui: "tamagui";
|
|
3580
3750
|
"gluestack-ui": "gluestack-ui";
|
|
3581
|
-
uniwind: "uniwind";
|
|
3582
3751
|
unistyles: "unistyles";
|
|
3583
3752
|
}>;
|
|
3584
3753
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3896,10 +4065,69 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
|
|
|
3896
4065
|
"agents-md": "agents-md";
|
|
3897
4066
|
cursorrules: "cursorrules";
|
|
3898
4067
|
}>>;
|
|
4068
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4069
|
+
id: z.ZodString;
|
|
4070
|
+
role: z.ZodEnum<{
|
|
4071
|
+
ai: "ai";
|
|
4072
|
+
database: "database";
|
|
4073
|
+
orm: "orm";
|
|
4074
|
+
auth: "auth";
|
|
4075
|
+
payments: "payments";
|
|
4076
|
+
frontend: "frontend";
|
|
4077
|
+
backend: "backend";
|
|
4078
|
+
runtime: "runtime";
|
|
4079
|
+
api: "api";
|
|
4080
|
+
stateManagement: "stateManagement";
|
|
4081
|
+
forms: "forms";
|
|
4082
|
+
testing: "testing";
|
|
4083
|
+
email: "email";
|
|
4084
|
+
validation: "validation";
|
|
4085
|
+
jobQueue: "jobQueue";
|
|
4086
|
+
logging: "logging";
|
|
4087
|
+
observability: "observability";
|
|
4088
|
+
featureFlags: "featureFlags";
|
|
4089
|
+
analytics: "analytics";
|
|
4090
|
+
cms: "cms";
|
|
4091
|
+
caching: "caching";
|
|
4092
|
+
i18n: "i18n";
|
|
4093
|
+
search: "search";
|
|
4094
|
+
fileStorage: "fileStorage";
|
|
4095
|
+
mobile: "mobile";
|
|
4096
|
+
deploy: "deploy";
|
|
4097
|
+
ui: "ui";
|
|
4098
|
+
css: "css";
|
|
4099
|
+
documentation: "documentation";
|
|
4100
|
+
codeQuality: "codeQuality";
|
|
4101
|
+
appPlatform: "appPlatform";
|
|
4102
|
+
}>;
|
|
4103
|
+
toolId: z.ZodString;
|
|
4104
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
4105
|
+
typescript: "typescript";
|
|
4106
|
+
"react-native": "react-native";
|
|
4107
|
+
rust: "rust";
|
|
4108
|
+
python: "python";
|
|
4109
|
+
go: "go";
|
|
4110
|
+
java: "java";
|
|
4111
|
+
elixir: "elixir";
|
|
4112
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
4113
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4114
|
+
source: z.ZodEnum<{
|
|
4115
|
+
selected: "selected";
|
|
4116
|
+
defaulted: "defaulted";
|
|
4117
|
+
provided: "provided";
|
|
4118
|
+
legacy: "legacy";
|
|
4119
|
+
adjusted: "adjusted";
|
|
4120
|
+
}>;
|
|
4121
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
4122
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
4123
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4124
|
+
}, z.core.$strip>>>;
|
|
3899
4125
|
}, z.core.$strip>;
|
|
3900
4126
|
declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
3901
4127
|
version: z.ZodString;
|
|
3902
4128
|
createdAt: z.ZodString;
|
|
4129
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4130
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3903
4131
|
ecosystem: z.ZodEnum<{
|
|
3904
4132
|
typescript: "typescript";
|
|
3905
4133
|
"react-native": "react-native";
|
|
@@ -4333,9 +4561,9 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4333
4561
|
}>;
|
|
4334
4562
|
mobileUI: z.ZodEnum<{
|
|
4335
4563
|
none: "none";
|
|
4564
|
+
uniwind: "uniwind";
|
|
4336
4565
|
tamagui: "tamagui";
|
|
4337
4566
|
"gluestack-ui": "gluestack-ui";
|
|
4338
|
-
uniwind: "uniwind";
|
|
4339
4567
|
unistyles: "unistyles";
|
|
4340
4568
|
}>;
|
|
4341
4569
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4653,11 +4881,70 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
|
|
|
4653
4881
|
"agents-md": "agents-md";
|
|
4654
4882
|
cursorrules: "cursorrules";
|
|
4655
4883
|
}>>;
|
|
4884
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
|
+
id: z.ZodString;
|
|
4886
|
+
role: z.ZodEnum<{
|
|
4887
|
+
ai: "ai";
|
|
4888
|
+
database: "database";
|
|
4889
|
+
orm: "orm";
|
|
4890
|
+
auth: "auth";
|
|
4891
|
+
payments: "payments";
|
|
4892
|
+
frontend: "frontend";
|
|
4893
|
+
backend: "backend";
|
|
4894
|
+
runtime: "runtime";
|
|
4895
|
+
api: "api";
|
|
4896
|
+
stateManagement: "stateManagement";
|
|
4897
|
+
forms: "forms";
|
|
4898
|
+
testing: "testing";
|
|
4899
|
+
email: "email";
|
|
4900
|
+
validation: "validation";
|
|
4901
|
+
jobQueue: "jobQueue";
|
|
4902
|
+
logging: "logging";
|
|
4903
|
+
observability: "observability";
|
|
4904
|
+
featureFlags: "featureFlags";
|
|
4905
|
+
analytics: "analytics";
|
|
4906
|
+
cms: "cms";
|
|
4907
|
+
caching: "caching";
|
|
4908
|
+
i18n: "i18n";
|
|
4909
|
+
search: "search";
|
|
4910
|
+
fileStorage: "fileStorage";
|
|
4911
|
+
mobile: "mobile";
|
|
4912
|
+
deploy: "deploy";
|
|
4913
|
+
ui: "ui";
|
|
4914
|
+
css: "css";
|
|
4915
|
+
documentation: "documentation";
|
|
4916
|
+
codeQuality: "codeQuality";
|
|
4917
|
+
appPlatform: "appPlatform";
|
|
4918
|
+
}>;
|
|
4919
|
+
toolId: z.ZodString;
|
|
4920
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
4921
|
+
typescript: "typescript";
|
|
4922
|
+
"react-native": "react-native";
|
|
4923
|
+
rust: "rust";
|
|
4924
|
+
python: "python";
|
|
4925
|
+
go: "go";
|
|
4926
|
+
java: "java";
|
|
4927
|
+
elixir: "elixir";
|
|
4928
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
4929
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
4930
|
+
source: z.ZodEnum<{
|
|
4931
|
+
selected: "selected";
|
|
4932
|
+
defaulted: "defaulted";
|
|
4933
|
+
provided: "provided";
|
|
4934
|
+
legacy: "legacy";
|
|
4935
|
+
adjusted: "adjusted";
|
|
4936
|
+
}>;
|
|
4937
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
4938
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
4939
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4940
|
+
}, z.core.$strip>>>;
|
|
4656
4941
|
}, z.core.$strip>;
|
|
4657
4942
|
declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
4658
4943
|
$schema: z.ZodOptional<z.ZodString>;
|
|
4659
4944
|
version: z.ZodString;
|
|
4660
4945
|
createdAt: z.ZodString;
|
|
4946
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
4947
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4661
4948
|
ecosystem: z.ZodEnum<{
|
|
4662
4949
|
typescript: "typescript";
|
|
4663
4950
|
"react-native": "react-native";
|
|
@@ -5091,9 +5378,9 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5091
5378
|
}>;
|
|
5092
5379
|
mobileUI: z.ZodEnum<{
|
|
5093
5380
|
none: "none";
|
|
5381
|
+
uniwind: "uniwind";
|
|
5094
5382
|
tamagui: "tamagui";
|
|
5095
5383
|
"gluestack-ui": "gluestack-ui";
|
|
5096
|
-
uniwind: "uniwind";
|
|
5097
5384
|
unistyles: "unistyles";
|
|
5098
5385
|
}>;
|
|
5099
5386
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5411,11 +5698,70 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
|
|
|
5411
5698
|
"agents-md": "agents-md";
|
|
5412
5699
|
cursorrules: "cursorrules";
|
|
5413
5700
|
}>>;
|
|
5701
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5702
|
+
id: z.ZodString;
|
|
5703
|
+
role: z.ZodEnum<{
|
|
5704
|
+
ai: "ai";
|
|
5705
|
+
database: "database";
|
|
5706
|
+
orm: "orm";
|
|
5707
|
+
auth: "auth";
|
|
5708
|
+
payments: "payments";
|
|
5709
|
+
frontend: "frontend";
|
|
5710
|
+
backend: "backend";
|
|
5711
|
+
runtime: "runtime";
|
|
5712
|
+
api: "api";
|
|
5713
|
+
stateManagement: "stateManagement";
|
|
5714
|
+
forms: "forms";
|
|
5715
|
+
testing: "testing";
|
|
5716
|
+
email: "email";
|
|
5717
|
+
validation: "validation";
|
|
5718
|
+
jobQueue: "jobQueue";
|
|
5719
|
+
logging: "logging";
|
|
5720
|
+
observability: "observability";
|
|
5721
|
+
featureFlags: "featureFlags";
|
|
5722
|
+
analytics: "analytics";
|
|
5723
|
+
cms: "cms";
|
|
5724
|
+
caching: "caching";
|
|
5725
|
+
i18n: "i18n";
|
|
5726
|
+
search: "search";
|
|
5727
|
+
fileStorage: "fileStorage";
|
|
5728
|
+
mobile: "mobile";
|
|
5729
|
+
deploy: "deploy";
|
|
5730
|
+
ui: "ui";
|
|
5731
|
+
css: "css";
|
|
5732
|
+
documentation: "documentation";
|
|
5733
|
+
codeQuality: "codeQuality";
|
|
5734
|
+
appPlatform: "appPlatform";
|
|
5735
|
+
}>;
|
|
5736
|
+
toolId: z.ZodString;
|
|
5737
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
5738
|
+
typescript: "typescript";
|
|
5739
|
+
"react-native": "react-native";
|
|
5740
|
+
rust: "rust";
|
|
5741
|
+
python: "python";
|
|
5742
|
+
go: "go";
|
|
5743
|
+
java: "java";
|
|
5744
|
+
elixir: "elixir";
|
|
5745
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
5746
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
5747
|
+
source: z.ZodEnum<{
|
|
5748
|
+
selected: "selected";
|
|
5749
|
+
defaulted: "defaulted";
|
|
5750
|
+
provided: "provided";
|
|
5751
|
+
legacy: "legacy";
|
|
5752
|
+
adjusted: "adjusted";
|
|
5753
|
+
}>;
|
|
5754
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
5755
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
5756
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5757
|
+
}, z.core.$strip>>>;
|
|
5414
5758
|
}, z.core.$strip>;
|
|
5415
5759
|
declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
5416
5760
|
$schema: z.ZodOptional<z.ZodString>;
|
|
5417
5761
|
version: z.ZodString;
|
|
5418
5762
|
createdAt: z.ZodString;
|
|
5763
|
+
graphSummary: z.ZodOptional<z.ZodString>;
|
|
5764
|
+
effectiveStack: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5419
5765
|
ecosystem: z.ZodEnum<{
|
|
5420
5766
|
typescript: "typescript";
|
|
5421
5767
|
"react-native": "react-native";
|
|
@@ -5849,9 +6195,9 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
5849
6195
|
}>;
|
|
5850
6196
|
mobileUI: z.ZodEnum<{
|
|
5851
6197
|
none: "none";
|
|
6198
|
+
uniwind: "uniwind";
|
|
5852
6199
|
tamagui: "tamagui";
|
|
5853
6200
|
"gluestack-ui": "gluestack-ui";
|
|
5854
|
-
uniwind: "uniwind";
|
|
5855
6201
|
unistyles: "unistyles";
|
|
5856
6202
|
}>;
|
|
5857
6203
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6169,6 +6515,63 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
|
|
|
6169
6515
|
"agents-md": "agents-md";
|
|
6170
6516
|
cursorrules: "cursorrules";
|
|
6171
6517
|
}>>;
|
|
6518
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6519
|
+
id: z.ZodString;
|
|
6520
|
+
role: z.ZodEnum<{
|
|
6521
|
+
ai: "ai";
|
|
6522
|
+
database: "database";
|
|
6523
|
+
orm: "orm";
|
|
6524
|
+
auth: "auth";
|
|
6525
|
+
payments: "payments";
|
|
6526
|
+
frontend: "frontend";
|
|
6527
|
+
backend: "backend";
|
|
6528
|
+
runtime: "runtime";
|
|
6529
|
+
api: "api";
|
|
6530
|
+
stateManagement: "stateManagement";
|
|
6531
|
+
forms: "forms";
|
|
6532
|
+
testing: "testing";
|
|
6533
|
+
email: "email";
|
|
6534
|
+
validation: "validation";
|
|
6535
|
+
jobQueue: "jobQueue";
|
|
6536
|
+
logging: "logging";
|
|
6537
|
+
observability: "observability";
|
|
6538
|
+
featureFlags: "featureFlags";
|
|
6539
|
+
analytics: "analytics";
|
|
6540
|
+
cms: "cms";
|
|
6541
|
+
caching: "caching";
|
|
6542
|
+
i18n: "i18n";
|
|
6543
|
+
search: "search";
|
|
6544
|
+
fileStorage: "fileStorage";
|
|
6545
|
+
mobile: "mobile";
|
|
6546
|
+
deploy: "deploy";
|
|
6547
|
+
ui: "ui";
|
|
6548
|
+
css: "css";
|
|
6549
|
+
documentation: "documentation";
|
|
6550
|
+
codeQuality: "codeQuality";
|
|
6551
|
+
appPlatform: "appPlatform";
|
|
6552
|
+
}>;
|
|
6553
|
+
toolId: z.ZodString;
|
|
6554
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
6555
|
+
typescript: "typescript";
|
|
6556
|
+
"react-native": "react-native";
|
|
6557
|
+
rust: "rust";
|
|
6558
|
+
python: "python";
|
|
6559
|
+
go: "go";
|
|
6560
|
+
java: "java";
|
|
6561
|
+
elixir: "elixir";
|
|
6562
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
6563
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
6564
|
+
source: z.ZodEnum<{
|
|
6565
|
+
selected: "selected";
|
|
6566
|
+
defaulted: "defaulted";
|
|
6567
|
+
provided: "provided";
|
|
6568
|
+
legacy: "legacy";
|
|
6569
|
+
adjusted: "adjusted";
|
|
6570
|
+
}>;
|
|
6571
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
6572
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
6573
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6574
|
+
}, z.core.$strip>>>;
|
|
6172
6575
|
}, z.core.$strip>;
|
|
6173
6576
|
declare const InitResultSchema: z.ZodObject<{
|
|
6174
6577
|
success: z.ZodBoolean;
|
|
@@ -6611,9 +7014,9 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6611
7014
|
}>;
|
|
6612
7015
|
mobileUI: z.ZodEnum<{
|
|
6613
7016
|
none: "none";
|
|
7017
|
+
uniwind: "uniwind";
|
|
6614
7018
|
tamagui: "tamagui";
|
|
6615
7019
|
"gluestack-ui": "gluestack-ui";
|
|
6616
|
-
uniwind: "uniwind";
|
|
6617
7020
|
unistyles: "unistyles";
|
|
6618
7021
|
}>;
|
|
6619
7022
|
mobileStorage: z.ZodEnum<{
|
|
@@ -6931,6 +7334,63 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6931
7334
|
"agents-md": "agents-md";
|
|
6932
7335
|
cursorrules: "cursorrules";
|
|
6933
7336
|
}>>;
|
|
7337
|
+
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7338
|
+
id: z.ZodString;
|
|
7339
|
+
role: z.ZodEnum<{
|
|
7340
|
+
ai: "ai";
|
|
7341
|
+
database: "database";
|
|
7342
|
+
orm: "orm";
|
|
7343
|
+
auth: "auth";
|
|
7344
|
+
payments: "payments";
|
|
7345
|
+
frontend: "frontend";
|
|
7346
|
+
backend: "backend";
|
|
7347
|
+
runtime: "runtime";
|
|
7348
|
+
api: "api";
|
|
7349
|
+
stateManagement: "stateManagement";
|
|
7350
|
+
forms: "forms";
|
|
7351
|
+
testing: "testing";
|
|
7352
|
+
email: "email";
|
|
7353
|
+
validation: "validation";
|
|
7354
|
+
jobQueue: "jobQueue";
|
|
7355
|
+
logging: "logging";
|
|
7356
|
+
observability: "observability";
|
|
7357
|
+
featureFlags: "featureFlags";
|
|
7358
|
+
analytics: "analytics";
|
|
7359
|
+
cms: "cms";
|
|
7360
|
+
caching: "caching";
|
|
7361
|
+
i18n: "i18n";
|
|
7362
|
+
search: "search";
|
|
7363
|
+
fileStorage: "fileStorage";
|
|
7364
|
+
mobile: "mobile";
|
|
7365
|
+
deploy: "deploy";
|
|
7366
|
+
ui: "ui";
|
|
7367
|
+
css: "css";
|
|
7368
|
+
documentation: "documentation";
|
|
7369
|
+
codeQuality: "codeQuality";
|
|
7370
|
+
appPlatform: "appPlatform";
|
|
7371
|
+
}>;
|
|
7372
|
+
toolId: z.ZodString;
|
|
7373
|
+
ecosystem: z.ZodUnion<readonly [z.ZodEnum<{
|
|
7374
|
+
typescript: "typescript";
|
|
7375
|
+
"react-native": "react-native";
|
|
7376
|
+
rust: "rust";
|
|
7377
|
+
python: "python";
|
|
7378
|
+
go: "go";
|
|
7379
|
+
java: "java";
|
|
7380
|
+
elixir: "elixir";
|
|
7381
|
+
}>, z.ZodLiteral<"universal">]>;
|
|
7382
|
+
ownerPartId: z.ZodOptional<z.ZodString>;
|
|
7383
|
+
source: z.ZodEnum<{
|
|
7384
|
+
selected: "selected";
|
|
7385
|
+
defaulted: "defaulted";
|
|
7386
|
+
provided: "provided";
|
|
7387
|
+
legacy: "legacy";
|
|
7388
|
+
adjusted: "adjusted";
|
|
7389
|
+
}>;
|
|
7390
|
+
providedByPartId: z.ZodOptional<z.ZodString>;
|
|
7391
|
+
targetPath: z.ZodOptional<z.ZodString>;
|
|
7392
|
+
settings: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7393
|
+
}, z.core.$strip>>>;
|
|
6934
7394
|
}, z.core.$strip>;
|
|
6935
7395
|
reproducibleCommand: z.ZodString;
|
|
6936
7396
|
timeScaffolded: z.ZodString;
|
|
@@ -6938,6 +7398,10 @@ declare const InitResultSchema: z.ZodObject<{
|
|
|
6938
7398
|
projectDirectory: z.ZodString;
|
|
6939
7399
|
relativePath: z.ZodString;
|
|
6940
7400
|
error: z.ZodOptional<z.ZodString>;
|
|
7401
|
+
dryRun: z.ZodOptional<z.ZodBoolean>;
|
|
7402
|
+
fileCount: z.ZodOptional<z.ZodNumber>;
|
|
7403
|
+
directoryCount: z.ZodOptional<z.ZodNumber>;
|
|
7404
|
+
files: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
6941
7405
|
}, z.core.$strip>;
|
|
6942
7406
|
declare const DATABASE_VALUES: ("none" | "sqlite" | "postgres" | "mysql" | "mongodb" | "edgedb" | "redis")[];
|
|
6943
7407
|
declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm" | "kysely" | "mikroorm" | "sequelize")[];
|
|
@@ -6955,7 +7419,7 @@ declare const PAYMENTS_VALUES: ("none" | "polar" | "stripe" | "lemon-squeezy" |
|
|
|
6955
7419
|
declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
6956
7420
|
declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "sst" | "vercel")[];
|
|
6957
7421
|
declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
|
|
6958
|
-
declare const TEMPLATE_VALUES: ("none" | "
|
|
7422
|
+
declare const TEMPLATE_VALUES: ("none" | "mern" | "pern" | "t3" | "uniwind")[];
|
|
6959
7423
|
declare const ASTRO_INTEGRATION_VALUES: ("none" | "svelte" | "solid" | "react" | "vue")[];
|
|
6960
7424
|
declare const AI_VALUES: ("none" | "vercel-ai" | "mastra" | "voltagent" | "langgraph" | "openai-agents" | "google-adk" | "modelfusion" | "langchain" | "llamaindex" | "tanstack-ai" | "ai-cli")[];
|
|
6961
7425
|
declare const EFFECT_VALUES: ("none" | "effect" | "effect-full")[];
|
|
@@ -6975,7 +7439,7 @@ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "graf
|
|
|
6975
7439
|
declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
|
|
6976
7440
|
declare const ANALYTICS_VALUES: ("none" | "plausible" | "umami")[];
|
|
6977
7441
|
declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
|
|
6978
|
-
declare const MOBILE_UI_VALUES: ("none" | "
|
|
7442
|
+
declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
|
|
6979
7443
|
declare const MOBILE_STORAGE_VALUES: ("none" | "mmkv")[];
|
|
6980
7444
|
declare const MOBILE_TESTING_VALUES: ("none" | "maestro" | "react-native-testing-library" | "maestro-react-native-testing-library")[];
|
|
6981
7445
|
declare const MOBILE_PUSH_VALUES: ("none" | "expo-notifications")[];
|
|
@@ -7042,5 +7506,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
|
|
|
7042
7506
|
declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
|
|
7043
7507
|
declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
|
|
7044
7508
|
//#endregion
|
|
7045
|
-
export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn,
|
|
7046
|
-
//# sourceMappingURL=schemas-
|
|
7509
|
+
export { ELIXIR_VALIDATION_VALUES as $, RUST_API_VALUES as $n, ValidationSchema as $r, JOB_QUEUE_VALUES as $t, CachingSchema as A, PYTHON_API_VALUES as An, STATE_MANAGEMENT_VALUES as Ar, FormsSchema as At, ELIXIR_API_VALUES as B, ProjectConfigSchema as Bn, StackPartEcosystemSchema as Br, GoCliSchema as Bt, BetterTStackConfigSchema as C, OBSERVABILITY_VALUES as Cn, SHADCN_BASE_COLOR_VALUES as Cr, FILE_STORAGE_VALUES as Ct, CMS_VALUES as D, PACKAGE_MANAGER_VALUES as Dn, SHADCN_ICON_LIBRARY_VALUES as Dr, FeatureFlagsSchema as Dt, CMSSchema as E, ObservabilitySchema as En, SHADCN_FONT_VALUES as Er, FRONTEND_VALUES as Et, DatabaseSchema as F, PYTHON_TASK_QUEUE_VALUES as Fn, ShadcnColorThemeSchema as Fr, GO_LOGGING_VALUES as Ft, ELIXIR_HTTP_VALUES as G, PythonGraphqlSchema as Gn, TEMPLATE_VALUES as Gr, I18nSchema as Gt, ELIXIR_CACHING_VALUES as H, PythonAiSchema as Hn, StackPartSchema as Hr, GoOrmSchema as Ht, DatabaseSetupSchema as I, PYTHON_VALIDATION_VALUES as In, ShadcnFontSchema as Ir, GO_ORM_VALUES as It, ELIXIR_OBSERVABILITY_VALUES as J, PythonTaskQueueSchema as Jn, TestingSchema as Jr, JAVA_BUILD_TOOL_VALUES as Jt, ELIXIR_JOBS_VALUES as K, PythonOrmSchema as Kn, TESTING_VALUES as Kr, InitResultSchema as Kt, DirectoryConflictSchema as L, PYTHON_WEB_FRAMEWORK_VALUES as Ln, ShadcnIconLibrarySchema as Lr, GO_WEB_FRAMEWORK_VALUES as Lt, DATABASE_SETUP_VALUES as M, PYTHON_GRAPHQL_VALUES as Mn, ServerDeploySchema as Mr, GO_API_VALUES as Mt, DATABASE_VALUES as N, PYTHON_ORM_VALUES as Nn, ShadcnBaseColorSchema as Nr, GO_AUTH_VALUES as Nt, CSSFrameworkSchema as O, PAYMENTS_VALUES as On, SHADCN_RADIUS_VALUES as Or, FileStorageSchema as Ot, DIRECTORY_CONFLICT_VALUES as P, PYTHON_QUALITY_VALUES as Pn, ShadcnBaseSchema as Pr, GO_CLI_VALUES as Pt, ELIXIR_TESTING_VALUES as Q, RUNTIME_VALUES as Qn, VERSION_CHANNEL_VALUES as Qr, JAVA_WEB_FRAMEWORK_VALUES as Qt, ECOSYSTEM_VALUES as R, PackageManagerSchema as Rn, ShadcnRadiusSchema as Rr, GoApiSchema as Rt, BetterTStackConfigFileSchema as S, MobileUISchema as Sn, SERVER_DEPLOY_VALUES as Sr, FEATURE_FLAGS_VALUES as St, CLIInputSchema as T, ORM_VALUES as Tn, SHADCN_COLOR_THEME_VALUES as Tr, FORMS_VALUES as Tt, ELIXIR_DEPLOY_VALUES as U, PythonApiSchema as Un, StackPartSourceSchema as Ur, GoWebFrameworkSchema as Ut, ELIXIR_AUTH_VALUES as V, ProjectNameSchema as Vn, StackPartRoleSchema as Vr, GoLoggingSchema as Vt, ELIXIR_EMAIL_VALUES as W, PythonAuthSchema as Wn, StateManagementSchema as Wr, I18N_VALUES as Wt, ELIXIR_QUALITY_VALUES as X, PythonWebFrameworkSchema as Xn, UI_LIBRARY_VALUES as Xr, JAVA_ORM_VALUES as Xt, ELIXIR_ORM_VALUES as Y, PythonValidationSchema as Yn, UILibrarySchema as Yr, JAVA_LIBRARIES_VALUES as Yt, ELIXIR_REALTIME_VALUES as Z, REALTIME_VALUES as Zn, VALIDATION_VALUES as Zr, JAVA_TESTING_LIBRARIES_VALUES as Zt, AuthSchema as _, MobileNavigationSchema as _n, RustLibrariesSchema as _r, ElixirTestingSchema as _t, ANALYTICS_VALUES as a, JavaWebFrameworkSchema as an, RUST_LIBRARIES_VALUES as ar, ElixirApiSchema as at, BetterFullstackConfigFileSchema as b, MobileStorageSchema as bn, RustWebFrameworkSchema as br, EmailSchema as bt, API_VALUES as c, LoggingSchema as cn, RUST_WEB_FRAMEWORK_VALUES as cr, ElixirDeploySchema as ct, AddInputSchema as d, MOBILE_OTA_VALUES as dn, RustApiSchema as dr, ElixirJobsSchema as dt, VersionChannelSchema as ei, JavaAuthSchema as en, RUST_AUTH_VALUES as er, ELIXIR_WEB_FRAMEWORK_VALUES as et, AddonsSchema as f, MOBILE_PUSH_VALUES as fn, RustAuthSchema as fr, ElixirJsonSchema as ft, AstroIntegrationSchema as g, MobileDeepLinkingSchema as gn, RustFrontendSchema as gr, ElixirRealtimeSchema as gt, AnimationSchema as h, MOBILE_UI_VALUES as hn, RustErrorHandlingSchema as hr, ElixirQualitySchema as ht, AI_VALUES as i, JavaTestingLibrariesSchema as in, RUST_FRONTEND_VALUES as ir, EffectSchema as it, CreateInputSchema as j, PYTHON_AUTH_VALUES as jn, SearchSchema as jr, FrontendSchema as jt, CSS_FRAMEWORK_VALUES as k, PYTHON_AI_VALUES as kn, SHADCN_STYLE_VALUES as kr, FileUploadSchema as kt, ASTRO_INTEGRATION_VALUES as l, MOBILE_DEEP_LINKING_VALUES as ln, RealtimeSchema as lr, ElixirEmailSchema as lt, AnalyticsSchema as m, MOBILE_TESTING_VALUES as mn, RustCliSchema as mr, ElixirOrmSchema as mt, AISchema as n, WebDeploySchema as ni, JavaLibrariesSchema as nn, RUST_CLI_VALUES as nr, EXAMPLES_VALUES as nt, ANIMATION_VALUES as o, JobQueueSchema as on, RUST_LOGGING_VALUES as or, ElixirAuthSchema as ot, AiDocsSchema as p, MOBILE_STORAGE_VALUES as pn, RustCachingSchema as pr, ElixirObservabilitySchema as pt, ELIXIR_JSON_VALUES as q, PythonQualitySchema as qn, TemplateSchema as qr, JAVA_AUTH_VALUES as qt, AI_DOCS_VALUES as r, JavaOrmSchema as rn, RUST_ERROR_HANDLING_VALUES as rr, EcosystemSchema as rt, APISchema as s, LOGGING_VALUES as sn, RUST_ORM_VALUES as sr, ElixirCachingSchema as st, ADDONS_VALUES as t, WEB_DEPLOY_VALUES as ti, JavaBuildToolSchema as tn, RUST_CACHING_VALUES as tr, EMAIL_VALUES as tt, AUTH_VALUES as u, MOBILE_NAVIGATION_VALUES as un, RuntimeSchema as ur, ElixirHttpSchema as ut, BACKEND_VALUES as v, MobileOTASchema as vn, RustLoggingSchema as vr, ElixirValidationSchema as vt, CACHING_VALUES as w, ORMSchema as wn, SHADCN_BASE_VALUES as wr, FILE_UPLOAD_VALUES as wt, BetterFullstackConfigSchema as x, MobileTestingSchema as xn, SEARCH_VALUES as xr, ExamplesSchema as xt, BackendSchema as y, MobilePushSchema as yn, RustOrmSchema as yr, ElixirWebFrameworkSchema as yt, EFFECT_VALUES as z, PaymentsSchema as zn, ShadcnStyleSchema as zr, GoAuthSchema as zt };
|
|
7510
|
+
//# sourceMappingURL=schemas-B5EgRfVL.d.mts.map
|