@better-fullstack/types 2.3.1 → 2.4.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/LICENSE +22 -0
- package/dist/{defaults-Cl16mM84.mjs → defaults-BzWJP6p0.mjs} +3 -1
- package/dist/defaults-BzWJP6p0.mjs.map +1 -0
- package/dist/{defaults-BCprHCB6.d.mts → defaults-DdEGPWbd.d.mts} +2 -2
- package/dist/defaults-DdEGPWbd.d.mts.map +1 -0
- package/dist/defaults.d.mts +3 -3
- package/dist/defaults.mjs +1 -1
- package/dist/index.d.mts +6 -6
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +23 -5
- package/dist/index.mjs.map +1 -1
- package/dist/json-schema.d.mts +496 -320
- package/dist/json-schema.d.mts.map +1 -1
- package/dist/json-schema.mjs +1 -1
- package/dist/{schemas-B79HRN5e.d.mts → schemas-BMTIauzB.d.mts} +777 -609
- package/dist/schemas-BMTIauzB.d.mts.map +1 -0
- package/dist/{schemas-CprYz5Sh.mjs → schemas-CNrFm0ld.mjs} +21 -2
- package/dist/schemas-CNrFm0ld.mjs.map +1 -0
- package/dist/schemas.d.mts +2 -2
- package/dist/schemas.mjs +2 -2
- package/dist/{stack-graph-DiLi3WuL.mjs → stack-graph-BqmxkJKS.mjs} +110 -9
- package/dist/stack-graph-BqmxkJKS.mjs.map +1 -0
- package/dist/{stack-graph-BkHZlyKH.d.mts → stack-graph-DWpdF4s0.d.mts} +2 -2
- package/dist/{stack-graph-BkHZlyKH.d.mts.map → stack-graph-DWpdF4s0.d.mts.map} +1 -1
- package/dist/stack-graph.d.mts +3 -3
- package/dist/stack-graph.mjs +2 -2
- package/dist/{stack-translation-Ay-_1mNB.mjs → stack-translation-CIt0ziI4.mjs} +234 -9
- package/dist/stack-translation-CIt0ziI4.mjs.map +1 -0
- package/dist/{stack-translation-BmsX82IA.d.mts → stack-translation-DyfJJgeD.d.mts} +18 -7
- package/dist/stack-translation-DyfJJgeD.d.mts.map +1 -0
- package/dist/stack-translation.d.mts +4 -4
- package/dist/stack-translation.mjs +3 -3
- package/dist/{types-BuRzqsRV.d.mts → types-BUQyhJDc.d.mts} +5 -3
- package/dist/types-BUQyhJDc.d.mts.map +1 -0
- package/dist/types.d.mts +3 -3
- package/package.json +3 -2
- package/dist/defaults-BCprHCB6.d.mts.map +0 -1
- package/dist/defaults-Cl16mM84.mjs.map +0 -1
- package/dist/schemas-B79HRN5e.d.mts.map +0 -1
- package/dist/schemas-CprYz5Sh.mjs.map +0 -1
- package/dist/stack-graph-DiLi3WuL.mjs.map +0 -1
- package/dist/stack-translation-Ay-_1mNB.mjs.map +0 -1
- package/dist/stack-translation-BmsX82IA.d.mts.map +0 -1
- package/dist/types-BuRzqsRV.d.mts.map +0 -1
package/dist/json-schema.d.mts
CHANGED
|
@@ -21,13 +21,13 @@ declare function getORMJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEn
|
|
|
21
21
|
sequelize: "sequelize";
|
|
22
22
|
}>>;
|
|
23
23
|
declare function getBackendJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
24
|
-
effect: "effect";
|
|
25
24
|
none: "none";
|
|
26
25
|
hono: "hono";
|
|
27
26
|
express: "express";
|
|
28
27
|
fastify: "fastify";
|
|
29
28
|
elysia: "elysia";
|
|
30
29
|
fets: "fets";
|
|
30
|
+
effect: "effect";
|
|
31
31
|
nestjs: "nestjs";
|
|
32
32
|
adonisjs: "adonisjs";
|
|
33
33
|
nitro: "nitro";
|
|
@@ -72,6 +72,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
72
72
|
biome: "biome";
|
|
73
73
|
lefthook: "lefthook";
|
|
74
74
|
husky: "husky";
|
|
75
|
+
knip: "knip";
|
|
76
|
+
gitleaks: "gitleaks";
|
|
75
77
|
ruler: "ruler";
|
|
76
78
|
mcp: "mcp";
|
|
77
79
|
skills: "skills";
|
|
@@ -93,6 +95,7 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
93
95
|
"backend-utils": "backend-utils";
|
|
94
96
|
devcontainer: "devcontainer";
|
|
95
97
|
"docker-compose": "docker-compose";
|
|
98
|
+
kong: "kong";
|
|
96
99
|
"github-actions": "github-actions";
|
|
97
100
|
eslint: "eslint";
|
|
98
101
|
prettier: "prettier";
|
|
@@ -105,8 +108,8 @@ declare function getAddonsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.Zo
|
|
|
105
108
|
capacitor: "capacitor";
|
|
106
109
|
}>>;
|
|
107
110
|
declare function getExamplesJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
108
|
-
ai: "ai";
|
|
109
111
|
none: "none";
|
|
112
|
+
ai: "ai";
|
|
110
113
|
"chat-sdk": "chat-sdk";
|
|
111
114
|
"tanstack-showcase": "tanstack-showcase";
|
|
112
115
|
}>>;
|
|
@@ -164,6 +167,7 @@ declare function getPaymentsJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
164
167
|
creem: "creem";
|
|
165
168
|
autumn: "autumn";
|
|
166
169
|
commet: "commet";
|
|
170
|
+
xendit: "xendit";
|
|
167
171
|
}>>;
|
|
168
172
|
declare function getWebDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
169
173
|
none: "none";
|
|
@@ -188,28 +192,28 @@ declare function getServerDeployJsonSchema(): z.core.ZodStandardJSONSchemaPayloa
|
|
|
188
192
|
vercel: "vercel";
|
|
189
193
|
}>>;
|
|
190
194
|
declare function getDirectoryConflictJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
191
|
-
error: "error";
|
|
192
195
|
merge: "merge";
|
|
193
196
|
overwrite: "overwrite";
|
|
194
197
|
increment: "increment";
|
|
198
|
+
error: "error";
|
|
195
199
|
}>>;
|
|
196
200
|
declare function getTemplateJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
197
201
|
none: "none";
|
|
198
|
-
uniwind: "uniwind";
|
|
199
202
|
mern: "mern";
|
|
200
203
|
pern: "pern";
|
|
201
204
|
t3: "t3";
|
|
202
205
|
saas: "saas";
|
|
206
|
+
uniwind: "uniwind";
|
|
203
207
|
}>>;
|
|
204
208
|
declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodObject<{
|
|
205
209
|
projectName: z.ZodOptional<z.ZodString>;
|
|
206
210
|
template: z.ZodOptional<z.ZodEnum<{
|
|
207
211
|
none: "none";
|
|
208
|
-
uniwind: "uniwind";
|
|
209
212
|
mern: "mern";
|
|
210
213
|
pern: "pern";
|
|
211
214
|
t3: "t3";
|
|
212
215
|
saas: "saas";
|
|
216
|
+
uniwind: "uniwind";
|
|
213
217
|
}>>;
|
|
214
218
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
215
219
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -271,6 +275,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
271
275
|
creem: "creem";
|
|
272
276
|
autumn: "autumn";
|
|
273
277
|
commet: "commet";
|
|
278
|
+
xendit: "xendit";
|
|
274
279
|
}>>;
|
|
275
280
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
276
281
|
none: "none";
|
|
@@ -303,6 +308,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
303
308
|
biome: "biome";
|
|
304
309
|
lefthook: "lefthook";
|
|
305
310
|
husky: "husky";
|
|
311
|
+
knip: "knip";
|
|
312
|
+
gitleaks: "gitleaks";
|
|
306
313
|
ruler: "ruler";
|
|
307
314
|
mcp: "mcp";
|
|
308
315
|
skills: "skills";
|
|
@@ -324,6 +331,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
324
331
|
"backend-utils": "backend-utils";
|
|
325
332
|
devcontainer: "devcontainer";
|
|
326
333
|
"docker-compose": "docker-compose";
|
|
334
|
+
kong: "kong";
|
|
327
335
|
"github-actions": "github-actions";
|
|
328
336
|
eslint: "eslint";
|
|
329
337
|
prettier: "prettier";
|
|
@@ -336,8 +344,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
336
344
|
capacitor: "capacitor";
|
|
337
345
|
}>>>;
|
|
338
346
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
339
|
-
ai: "ai";
|
|
340
347
|
none: "none";
|
|
348
|
+
ai: "ai";
|
|
341
349
|
"chat-sdk": "chat-sdk";
|
|
342
350
|
"tanstack-showcase": "tanstack-showcase";
|
|
343
351
|
}>>>;
|
|
@@ -371,13 +379,13 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
371
379
|
docker: "docker";
|
|
372
380
|
}>>;
|
|
373
381
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
374
|
-
effect: "effect";
|
|
375
382
|
none: "none";
|
|
376
383
|
hono: "hono";
|
|
377
384
|
express: "express";
|
|
378
385
|
fastify: "fastify";
|
|
379
386
|
elysia: "elysia";
|
|
380
387
|
fets: "fets";
|
|
388
|
+
effect: "effect";
|
|
381
389
|
nestjs: "nestjs";
|
|
382
390
|
adonisjs: "adonisjs";
|
|
383
391
|
nitro: "nitro";
|
|
@@ -424,10 +432,10 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
424
432
|
vercel: "vercel";
|
|
425
433
|
}>>;
|
|
426
434
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
427
|
-
error: "error";
|
|
428
435
|
merge: "merge";
|
|
429
436
|
overwrite: "overwrite";
|
|
430
437
|
increment: "increment";
|
|
438
|
+
error: "error";
|
|
431
439
|
}>>;
|
|
432
440
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
433
441
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -456,8 +464,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
456
464
|
"ai-cli": "ai-cli";
|
|
457
465
|
}>>;
|
|
458
466
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
459
|
-
effect: "effect";
|
|
460
467
|
none: "none";
|
|
468
|
+
effect: "effect";
|
|
461
469
|
"effect-full": "effect-full";
|
|
462
470
|
}>>;
|
|
463
471
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -592,8 +600,8 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
592
600
|
"geist-mono": "geist-mono";
|
|
593
601
|
}>>;
|
|
594
602
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
595
|
-
default: "default";
|
|
596
603
|
none: "none";
|
|
604
|
+
default: "default";
|
|
597
605
|
small: "small";
|
|
598
606
|
medium: "medium";
|
|
599
607
|
large: "large";
|
|
@@ -648,6 +656,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
648
656
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
649
657
|
none: "none";
|
|
650
658
|
opentelemetry: "opentelemetry";
|
|
659
|
+
signoz: "signoz";
|
|
651
660
|
sentry: "sentry";
|
|
652
661
|
grafana: "grafana";
|
|
653
662
|
datadog: "datadog";
|
|
@@ -662,6 +671,14 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
662
671
|
flagsmith: "flagsmith";
|
|
663
672
|
unleash: "unleash";
|
|
664
673
|
}>>;
|
|
674
|
+
integrations: z.ZodOptional<z.ZodEnum<{
|
|
675
|
+
none: "none";
|
|
676
|
+
nango: "nango";
|
|
677
|
+
}>>;
|
|
678
|
+
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
679
|
+
none: "none";
|
|
680
|
+
medusa: "medusa";
|
|
681
|
+
}>>;
|
|
665
682
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
666
683
|
none: "none";
|
|
667
684
|
posthog: "posthog";
|
|
@@ -726,9 +743,9 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
726
743
|
}>>;
|
|
727
744
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
728
745
|
none: "none";
|
|
746
|
+
uniwind: "uniwind";
|
|
729
747
|
tamagui: "tamagui";
|
|
730
748
|
"gluestack-ui": "gluestack-ui";
|
|
731
|
-
uniwind: "uniwind";
|
|
732
749
|
unistyles: "unistyles";
|
|
733
750
|
}>>;
|
|
734
751
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -813,12 +830,12 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
813
830
|
ratatui: "ratatui";
|
|
814
831
|
}>>;
|
|
815
832
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
816
|
-
config: "config";
|
|
817
833
|
none: "none";
|
|
818
834
|
serde: "serde";
|
|
819
835
|
uuid: "uuid";
|
|
820
836
|
chrono: "chrono";
|
|
821
837
|
reqwest: "reqwest";
|
|
838
|
+
config: "config";
|
|
822
839
|
dashmap: "dashmap";
|
|
823
840
|
"parking-lot": "parking-lot";
|
|
824
841
|
secrecy: "secrecy";
|
|
@@ -972,6 +989,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
972
989
|
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
973
990
|
none: "none";
|
|
974
991
|
opentelemetry: "opentelemetry";
|
|
992
|
+
signoz: "signoz";
|
|
975
993
|
"prometheus-client": "prometheus-client";
|
|
976
994
|
}>>;
|
|
977
995
|
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1091,6 +1109,7 @@ declare function getCreateInputJsonSchema(): z.core.ZodStandardJSONSchemaPayload
|
|
|
1091
1109
|
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
1092
1110
|
none: "none";
|
|
1093
1111
|
opentelemetry: "opentelemetry";
|
|
1112
|
+
signoz: "signoz";
|
|
1094
1113
|
prometheus: "prometheus";
|
|
1095
1114
|
}>>;
|
|
1096
1115
|
goValidation: z.ZodOptional<z.ZodEnum<{
|
|
@@ -1460,13 +1479,13 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1460
1479
|
sequelize: "sequelize";
|
|
1461
1480
|
}>;
|
|
1462
1481
|
backend: z.ZodEnum<{
|
|
1463
|
-
effect: "effect";
|
|
1464
1482
|
none: "none";
|
|
1465
1483
|
hono: "hono";
|
|
1466
1484
|
express: "express";
|
|
1467
1485
|
fastify: "fastify";
|
|
1468
1486
|
elysia: "elysia";
|
|
1469
1487
|
fets: "fets";
|
|
1488
|
+
effect: "effect";
|
|
1470
1489
|
nestjs: "nestjs";
|
|
1471
1490
|
adonisjs: "adonisjs";
|
|
1472
1491
|
nitro: "nitro";
|
|
@@ -1511,6 +1530,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1511
1530
|
biome: "biome";
|
|
1512
1531
|
lefthook: "lefthook";
|
|
1513
1532
|
husky: "husky";
|
|
1533
|
+
knip: "knip";
|
|
1534
|
+
gitleaks: "gitleaks";
|
|
1514
1535
|
ruler: "ruler";
|
|
1515
1536
|
mcp: "mcp";
|
|
1516
1537
|
skills: "skills";
|
|
@@ -1532,6 +1553,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1532
1553
|
"backend-utils": "backend-utils";
|
|
1533
1554
|
devcontainer: "devcontainer";
|
|
1534
1555
|
"docker-compose": "docker-compose";
|
|
1556
|
+
kong: "kong";
|
|
1535
1557
|
"github-actions": "github-actions";
|
|
1536
1558
|
eslint: "eslint";
|
|
1537
1559
|
prettier: "prettier";
|
|
@@ -1544,8 +1566,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1544
1566
|
capacitor: "capacitor";
|
|
1545
1567
|
}>>;
|
|
1546
1568
|
examples: z.ZodArray<z.ZodEnum<{
|
|
1547
|
-
ai: "ai";
|
|
1548
1569
|
none: "none";
|
|
1570
|
+
ai: "ai";
|
|
1549
1571
|
"chat-sdk": "chat-sdk";
|
|
1550
1572
|
"tanstack-showcase": "tanstack-showcase";
|
|
1551
1573
|
}>>;
|
|
@@ -1575,6 +1597,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1575
1597
|
creem: "creem";
|
|
1576
1598
|
autumn: "autumn";
|
|
1577
1599
|
commet: "commet";
|
|
1600
|
+
xendit: "xendit";
|
|
1578
1601
|
}>;
|
|
1579
1602
|
git: z.ZodBoolean;
|
|
1580
1603
|
packageManager: z.ZodEnum<{
|
|
@@ -1661,8 +1684,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1661
1684
|
"ai-cli": "ai-cli";
|
|
1662
1685
|
}>;
|
|
1663
1686
|
effect: z.ZodEnum<{
|
|
1664
|
-
effect: "effect";
|
|
1665
1687
|
none: "none";
|
|
1688
|
+
effect: "effect";
|
|
1666
1689
|
"effect-full": "effect-full";
|
|
1667
1690
|
}>;
|
|
1668
1691
|
stateManagement: z.ZodEnum<{
|
|
@@ -1797,8 +1820,8 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1797
1820
|
"geist-mono": "geist-mono";
|
|
1798
1821
|
}>>;
|
|
1799
1822
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
1800
|
-
default: "default";
|
|
1801
1823
|
none: "none";
|
|
1824
|
+
default: "default";
|
|
1802
1825
|
small: "small";
|
|
1803
1826
|
medium: "medium";
|
|
1804
1827
|
large: "large";
|
|
@@ -1853,6 +1876,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1853
1876
|
observability: z.ZodEnum<{
|
|
1854
1877
|
none: "none";
|
|
1855
1878
|
opentelemetry: "opentelemetry";
|
|
1879
|
+
signoz: "signoz";
|
|
1856
1880
|
sentry: "sentry";
|
|
1857
1881
|
grafana: "grafana";
|
|
1858
1882
|
datadog: "datadog";
|
|
@@ -1867,6 +1891,14 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1867
1891
|
flagsmith: "flagsmith";
|
|
1868
1892
|
unleash: "unleash";
|
|
1869
1893
|
}>;
|
|
1894
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
1895
|
+
none: "none";
|
|
1896
|
+
nango: "nango";
|
|
1897
|
+
}>>;
|
|
1898
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
1899
|
+
none: "none";
|
|
1900
|
+
medusa: "medusa";
|
|
1901
|
+
}>>;
|
|
1870
1902
|
analytics: z.ZodEnum<{
|
|
1871
1903
|
none: "none";
|
|
1872
1904
|
posthog: "posthog";
|
|
@@ -1931,9 +1963,9 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
1931
1963
|
}>;
|
|
1932
1964
|
mobileUI: z.ZodEnum<{
|
|
1933
1965
|
none: "none";
|
|
1966
|
+
uniwind: "uniwind";
|
|
1934
1967
|
tamagui: "tamagui";
|
|
1935
1968
|
"gluestack-ui": "gluestack-ui";
|
|
1936
|
-
uniwind: "uniwind";
|
|
1937
1969
|
unistyles: "unistyles";
|
|
1938
1970
|
}>;
|
|
1939
1971
|
mobileStorage: z.ZodEnum<{
|
|
@@ -2018,12 +2050,12 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2018
2050
|
ratatui: "ratatui";
|
|
2019
2051
|
}>;
|
|
2020
2052
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
2021
|
-
config: "config";
|
|
2022
2053
|
none: "none";
|
|
2023
2054
|
serde: "serde";
|
|
2024
2055
|
uuid: "uuid";
|
|
2025
2056
|
chrono: "chrono";
|
|
2026
2057
|
reqwest: "reqwest";
|
|
2058
|
+
config: "config";
|
|
2027
2059
|
dashmap: "dashmap";
|
|
2028
2060
|
"parking-lot": "parking-lot";
|
|
2029
2061
|
secrecy: "secrecy";
|
|
@@ -2177,6 +2209,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2177
2209
|
pythonObservability: z.ZodEnum<{
|
|
2178
2210
|
none: "none";
|
|
2179
2211
|
opentelemetry: "opentelemetry";
|
|
2212
|
+
signoz: "signoz";
|
|
2180
2213
|
"prometheus-client": "prometheus-client";
|
|
2181
2214
|
}>;
|
|
2182
2215
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -2296,6 +2329,7 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2296
2329
|
goObservability: z.ZodEnum<{
|
|
2297
2330
|
none: "none";
|
|
2298
2331
|
opentelemetry: "opentelemetry";
|
|
2332
|
+
signoz: "signoz";
|
|
2299
2333
|
prometheus: "prometheus";
|
|
2300
2334
|
}>;
|
|
2301
2335
|
goValidation: z.ZodEnum<{
|
|
@@ -2632,67 +2666,69 @@ declare function getProjectConfigJsonSchema(): z.core.ZodStandardJSONSchemaPaylo
|
|
|
2632
2666
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2633
2667
|
id: z.ZodString;
|
|
2634
2668
|
role: z.ZodEnum<{
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
backend: "backend";
|
|
2638
|
-
mobile: "mobile";
|
|
2669
|
+
effect: "effect";
|
|
2670
|
+
ai: "ai";
|
|
2639
2671
|
database: "database";
|
|
2640
|
-
api: "api";
|
|
2641
|
-
graphql: "graphql";
|
|
2642
2672
|
orm: "orm";
|
|
2643
2673
|
auth: "auth";
|
|
2644
|
-
|
|
2645
|
-
|
|
2674
|
+
payments: "payments";
|
|
2675
|
+
frontend: "frontend";
|
|
2676
|
+
examples: "examples";
|
|
2677
|
+
packageManager: "packageManager";
|
|
2646
2678
|
dbSetup: "dbSetup";
|
|
2647
|
-
|
|
2679
|
+
backend: "backend";
|
|
2680
|
+
runtime: "runtime";
|
|
2681
|
+
api: "api";
|
|
2682
|
+
stateManagement: "stateManagement";
|
|
2683
|
+
forms: "forms";
|
|
2684
|
+
testing: "testing";
|
|
2685
|
+
email: "email";
|
|
2686
|
+
validation: "validation";
|
|
2648
2687
|
realtime: "realtime";
|
|
2649
|
-
|
|
2650
|
-
|
|
2688
|
+
jobQueue: "jobQueue";
|
|
2689
|
+
animation: "animation";
|
|
2690
|
+
fileUpload: "fileUpload";
|
|
2691
|
+
logging: "logging";
|
|
2651
2692
|
observability: "observability";
|
|
2652
|
-
|
|
2693
|
+
featureFlags: "featureFlags";
|
|
2694
|
+
integrations: "integrations";
|
|
2695
|
+
ecommerce: "ecommerce";
|
|
2696
|
+
analytics: "analytics";
|
|
2697
|
+
cms: "cms";
|
|
2698
|
+
caching: "caching";
|
|
2699
|
+
rateLimit: "rateLimit";
|
|
2700
|
+
i18n: "i18n";
|
|
2653
2701
|
search: "search";
|
|
2654
2702
|
vectorDb: "vectorDb";
|
|
2655
2703
|
fileStorage: "fileStorage";
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
fileUpload: "fileUpload";
|
|
2663
|
-
validation: "validation";
|
|
2664
|
-
effect: "effect";
|
|
2704
|
+
config: "config";
|
|
2705
|
+
mobile: "mobile";
|
|
2706
|
+
graphql: "graphql";
|
|
2707
|
+
deploy: "deploy";
|
|
2708
|
+
migrations: "migrations";
|
|
2709
|
+
navigation: "navigation";
|
|
2665
2710
|
ui: "ui";
|
|
2666
2711
|
css: "css";
|
|
2667
2712
|
storage: "storage";
|
|
2713
|
+
push: "push";
|
|
2668
2714
|
ota: "ota";
|
|
2669
2715
|
deepLinking: "deepLinking";
|
|
2670
|
-
ai: "ai";
|
|
2671
|
-
payments: "payments";
|
|
2672
|
-
logging: "logging";
|
|
2673
|
-
featureFlags: "featureFlags";
|
|
2674
|
-
analytics: "analytics";
|
|
2675
|
-
cms: "cms";
|
|
2676
|
-
i18n: "i18n";
|
|
2677
2716
|
documentation: "documentation";
|
|
2678
2717
|
codeQuality: "codeQuality";
|
|
2679
2718
|
appPlatform: "appPlatform";
|
|
2680
2719
|
dataFetching: "dataFetching";
|
|
2681
2720
|
workspaceTooling: "workspaceTooling";
|
|
2682
|
-
examples: "examples";
|
|
2683
2721
|
language: "language";
|
|
2684
2722
|
buildTool: "buildTool";
|
|
2685
2723
|
cli: "cli";
|
|
2686
2724
|
errorHandling: "errorHandling";
|
|
2687
2725
|
httpClient: "httpClient";
|
|
2688
2726
|
libraries: "libraries";
|
|
2689
|
-
config: "config";
|
|
2690
2727
|
templating: "templating";
|
|
2691
2728
|
cloudSdk: "cloudSdk";
|
|
2692
2729
|
data: "data";
|
|
2693
2730
|
media: "media";
|
|
2694
2731
|
server: "server";
|
|
2695
|
-
packageManager: "packageManager";
|
|
2696
2732
|
messageQueue: "messageQueue";
|
|
2697
2733
|
}>;
|
|
2698
2734
|
toolId: z.ZodString;
|
|
@@ -2754,13 +2790,13 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2754
2790
|
sequelize: "sequelize";
|
|
2755
2791
|
}>;
|
|
2756
2792
|
backend: z.ZodEnum<{
|
|
2757
|
-
effect: "effect";
|
|
2758
2793
|
none: "none";
|
|
2759
2794
|
hono: "hono";
|
|
2760
2795
|
express: "express";
|
|
2761
2796
|
fastify: "fastify";
|
|
2762
2797
|
elysia: "elysia";
|
|
2763
2798
|
fets: "fets";
|
|
2799
|
+
effect: "effect";
|
|
2764
2800
|
nestjs: "nestjs";
|
|
2765
2801
|
adonisjs: "adonisjs";
|
|
2766
2802
|
nitro: "nitro";
|
|
@@ -2805,6 +2841,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2805
2841
|
biome: "biome";
|
|
2806
2842
|
lefthook: "lefthook";
|
|
2807
2843
|
husky: "husky";
|
|
2844
|
+
knip: "knip";
|
|
2845
|
+
gitleaks: "gitleaks";
|
|
2808
2846
|
ruler: "ruler";
|
|
2809
2847
|
mcp: "mcp";
|
|
2810
2848
|
skills: "skills";
|
|
@@ -2826,6 +2864,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2826
2864
|
"backend-utils": "backend-utils";
|
|
2827
2865
|
devcontainer: "devcontainer";
|
|
2828
2866
|
"docker-compose": "docker-compose";
|
|
2867
|
+
kong: "kong";
|
|
2829
2868
|
"github-actions": "github-actions";
|
|
2830
2869
|
eslint: "eslint";
|
|
2831
2870
|
prettier: "prettier";
|
|
@@ -2838,8 +2877,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2838
2877
|
capacitor: "capacitor";
|
|
2839
2878
|
}>>;
|
|
2840
2879
|
examples: z.ZodArray<z.ZodEnum<{
|
|
2841
|
-
ai: "ai";
|
|
2842
2880
|
none: "none";
|
|
2881
|
+
ai: "ai";
|
|
2843
2882
|
"chat-sdk": "chat-sdk";
|
|
2844
2883
|
"tanstack-showcase": "tanstack-showcase";
|
|
2845
2884
|
}>>;
|
|
@@ -2869,6 +2908,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2869
2908
|
creem: "creem";
|
|
2870
2909
|
autumn: "autumn";
|
|
2871
2910
|
commet: "commet";
|
|
2911
|
+
xendit: "xendit";
|
|
2872
2912
|
}>;
|
|
2873
2913
|
packageManager: z.ZodEnum<{
|
|
2874
2914
|
bun: "bun";
|
|
@@ -2953,8 +2993,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
2953
2993
|
"ai-cli": "ai-cli";
|
|
2954
2994
|
}>;
|
|
2955
2995
|
effect: z.ZodEnum<{
|
|
2956
|
-
effect: "effect";
|
|
2957
2996
|
none: "none";
|
|
2997
|
+
effect: "effect";
|
|
2958
2998
|
"effect-full": "effect-full";
|
|
2959
2999
|
}>;
|
|
2960
3000
|
stateManagement: z.ZodEnum<{
|
|
@@ -3089,8 +3129,8 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3089
3129
|
"geist-mono": "geist-mono";
|
|
3090
3130
|
}>>;
|
|
3091
3131
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
3092
|
-
default: "default";
|
|
3093
3132
|
none: "none";
|
|
3133
|
+
default: "default";
|
|
3094
3134
|
small: "small";
|
|
3095
3135
|
medium: "medium";
|
|
3096
3136
|
large: "large";
|
|
@@ -3145,6 +3185,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3145
3185
|
observability: z.ZodEnum<{
|
|
3146
3186
|
none: "none";
|
|
3147
3187
|
opentelemetry: "opentelemetry";
|
|
3188
|
+
signoz: "signoz";
|
|
3148
3189
|
sentry: "sentry";
|
|
3149
3190
|
grafana: "grafana";
|
|
3150
3191
|
datadog: "datadog";
|
|
@@ -3159,6 +3200,14 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3159
3200
|
flagsmith: "flagsmith";
|
|
3160
3201
|
unleash: "unleash";
|
|
3161
3202
|
}>;
|
|
3203
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
3204
|
+
none: "none";
|
|
3205
|
+
nango: "nango";
|
|
3206
|
+
}>>;
|
|
3207
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
3208
|
+
none: "none";
|
|
3209
|
+
medusa: "medusa";
|
|
3210
|
+
}>>;
|
|
3162
3211
|
analytics: z.ZodEnum<{
|
|
3163
3212
|
none: "none";
|
|
3164
3213
|
posthog: "posthog";
|
|
@@ -3223,9 +3272,9 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3223
3272
|
}>;
|
|
3224
3273
|
mobileUI: z.ZodEnum<{
|
|
3225
3274
|
none: "none";
|
|
3275
|
+
uniwind: "uniwind";
|
|
3226
3276
|
tamagui: "tamagui";
|
|
3227
3277
|
"gluestack-ui": "gluestack-ui";
|
|
3228
|
-
uniwind: "uniwind";
|
|
3229
3278
|
unistyles: "unistyles";
|
|
3230
3279
|
}>;
|
|
3231
3280
|
mobileStorage: z.ZodEnum<{
|
|
@@ -3310,12 +3359,12 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3310
3359
|
ratatui: "ratatui";
|
|
3311
3360
|
}>;
|
|
3312
3361
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
3313
|
-
config: "config";
|
|
3314
3362
|
none: "none";
|
|
3315
3363
|
serde: "serde";
|
|
3316
3364
|
uuid: "uuid";
|
|
3317
3365
|
chrono: "chrono";
|
|
3318
3366
|
reqwest: "reqwest";
|
|
3367
|
+
config: "config";
|
|
3319
3368
|
dashmap: "dashmap";
|
|
3320
3369
|
"parking-lot": "parking-lot";
|
|
3321
3370
|
secrecy: "secrecy";
|
|
@@ -3469,6 +3518,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3469
3518
|
pythonObservability: z.ZodEnum<{
|
|
3470
3519
|
none: "none";
|
|
3471
3520
|
opentelemetry: "opentelemetry";
|
|
3521
|
+
signoz: "signoz";
|
|
3472
3522
|
"prometheus-client": "prometheus-client";
|
|
3473
3523
|
}>;
|
|
3474
3524
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -3588,6 +3638,7 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3588
3638
|
goObservability: z.ZodEnum<{
|
|
3589
3639
|
none: "none";
|
|
3590
3640
|
opentelemetry: "opentelemetry";
|
|
3641
|
+
signoz: "signoz";
|
|
3591
3642
|
prometheus: "prometheus";
|
|
3592
3643
|
}>;
|
|
3593
3644
|
goValidation: z.ZodEnum<{
|
|
@@ -3924,67 +3975,69 @@ declare function getBetterTStackConfigJsonSchema(): z.core.ZodStandardJSONSchema
|
|
|
3924
3975
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3925
3976
|
id: z.ZodString;
|
|
3926
3977
|
role: z.ZodEnum<{
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
backend: "backend";
|
|
3930
|
-
mobile: "mobile";
|
|
3978
|
+
effect: "effect";
|
|
3979
|
+
ai: "ai";
|
|
3931
3980
|
database: "database";
|
|
3932
|
-
api: "api";
|
|
3933
|
-
graphql: "graphql";
|
|
3934
3981
|
orm: "orm";
|
|
3935
3982
|
auth: "auth";
|
|
3936
|
-
|
|
3937
|
-
|
|
3983
|
+
payments: "payments";
|
|
3984
|
+
frontend: "frontend";
|
|
3985
|
+
examples: "examples";
|
|
3986
|
+
packageManager: "packageManager";
|
|
3938
3987
|
dbSetup: "dbSetup";
|
|
3939
|
-
|
|
3988
|
+
backend: "backend";
|
|
3989
|
+
runtime: "runtime";
|
|
3990
|
+
api: "api";
|
|
3991
|
+
stateManagement: "stateManagement";
|
|
3992
|
+
forms: "forms";
|
|
3993
|
+
testing: "testing";
|
|
3994
|
+
email: "email";
|
|
3995
|
+
validation: "validation";
|
|
3940
3996
|
realtime: "realtime";
|
|
3941
|
-
|
|
3942
|
-
|
|
3997
|
+
jobQueue: "jobQueue";
|
|
3998
|
+
animation: "animation";
|
|
3999
|
+
fileUpload: "fileUpload";
|
|
4000
|
+
logging: "logging";
|
|
3943
4001
|
observability: "observability";
|
|
3944
|
-
|
|
4002
|
+
featureFlags: "featureFlags";
|
|
4003
|
+
integrations: "integrations";
|
|
4004
|
+
ecommerce: "ecommerce";
|
|
4005
|
+
analytics: "analytics";
|
|
4006
|
+
cms: "cms";
|
|
4007
|
+
caching: "caching";
|
|
4008
|
+
rateLimit: "rateLimit";
|
|
4009
|
+
i18n: "i18n";
|
|
3945
4010
|
search: "search";
|
|
3946
4011
|
vectorDb: "vectorDb";
|
|
3947
4012
|
fileStorage: "fileStorage";
|
|
3948
|
-
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
|
|
3954
|
-
fileUpload: "fileUpload";
|
|
3955
|
-
validation: "validation";
|
|
3956
|
-
effect: "effect";
|
|
4013
|
+
config: "config";
|
|
4014
|
+
mobile: "mobile";
|
|
4015
|
+
graphql: "graphql";
|
|
4016
|
+
deploy: "deploy";
|
|
4017
|
+
migrations: "migrations";
|
|
4018
|
+
navigation: "navigation";
|
|
3957
4019
|
ui: "ui";
|
|
3958
4020
|
css: "css";
|
|
3959
4021
|
storage: "storage";
|
|
4022
|
+
push: "push";
|
|
3960
4023
|
ota: "ota";
|
|
3961
4024
|
deepLinking: "deepLinking";
|
|
3962
|
-
ai: "ai";
|
|
3963
|
-
payments: "payments";
|
|
3964
|
-
logging: "logging";
|
|
3965
|
-
featureFlags: "featureFlags";
|
|
3966
|
-
analytics: "analytics";
|
|
3967
|
-
cms: "cms";
|
|
3968
|
-
i18n: "i18n";
|
|
3969
4025
|
documentation: "documentation";
|
|
3970
4026
|
codeQuality: "codeQuality";
|
|
3971
4027
|
appPlatform: "appPlatform";
|
|
3972
4028
|
dataFetching: "dataFetching";
|
|
3973
4029
|
workspaceTooling: "workspaceTooling";
|
|
3974
|
-
examples: "examples";
|
|
3975
4030
|
language: "language";
|
|
3976
4031
|
buildTool: "buildTool";
|
|
3977
4032
|
cli: "cli";
|
|
3978
4033
|
errorHandling: "errorHandling";
|
|
3979
4034
|
httpClient: "httpClient";
|
|
3980
4035
|
libraries: "libraries";
|
|
3981
|
-
config: "config";
|
|
3982
4036
|
templating: "templating";
|
|
3983
4037
|
cloudSdk: "cloudSdk";
|
|
3984
4038
|
data: "data";
|
|
3985
4039
|
media: "media";
|
|
3986
4040
|
server: "server";
|
|
3987
|
-
packageManager: "packageManager";
|
|
3988
4041
|
messageQueue: "messageQueue";
|
|
3989
4042
|
}>;
|
|
3990
4043
|
toolId: z.ZodString;
|
|
@@ -4046,13 +4099,13 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4046
4099
|
sequelize: "sequelize";
|
|
4047
4100
|
}>;
|
|
4048
4101
|
backend: z.ZodEnum<{
|
|
4049
|
-
effect: "effect";
|
|
4050
4102
|
none: "none";
|
|
4051
4103
|
hono: "hono";
|
|
4052
4104
|
express: "express";
|
|
4053
4105
|
fastify: "fastify";
|
|
4054
4106
|
elysia: "elysia";
|
|
4055
4107
|
fets: "fets";
|
|
4108
|
+
effect: "effect";
|
|
4056
4109
|
nestjs: "nestjs";
|
|
4057
4110
|
adonisjs: "adonisjs";
|
|
4058
4111
|
nitro: "nitro";
|
|
@@ -4097,6 +4150,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4097
4150
|
biome: "biome";
|
|
4098
4151
|
lefthook: "lefthook";
|
|
4099
4152
|
husky: "husky";
|
|
4153
|
+
knip: "knip";
|
|
4154
|
+
gitleaks: "gitleaks";
|
|
4100
4155
|
ruler: "ruler";
|
|
4101
4156
|
mcp: "mcp";
|
|
4102
4157
|
skills: "skills";
|
|
@@ -4118,6 +4173,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4118
4173
|
"backend-utils": "backend-utils";
|
|
4119
4174
|
devcontainer: "devcontainer";
|
|
4120
4175
|
"docker-compose": "docker-compose";
|
|
4176
|
+
kong: "kong";
|
|
4121
4177
|
"github-actions": "github-actions";
|
|
4122
4178
|
eslint: "eslint";
|
|
4123
4179
|
prettier: "prettier";
|
|
@@ -4130,8 +4186,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4130
4186
|
capacitor: "capacitor";
|
|
4131
4187
|
}>>;
|
|
4132
4188
|
examples: z.ZodArray<z.ZodEnum<{
|
|
4133
|
-
ai: "ai";
|
|
4134
4189
|
none: "none";
|
|
4190
|
+
ai: "ai";
|
|
4135
4191
|
"chat-sdk": "chat-sdk";
|
|
4136
4192
|
"tanstack-showcase": "tanstack-showcase";
|
|
4137
4193
|
}>>;
|
|
@@ -4161,6 +4217,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4161
4217
|
creem: "creem";
|
|
4162
4218
|
autumn: "autumn";
|
|
4163
4219
|
commet: "commet";
|
|
4220
|
+
xendit: "xendit";
|
|
4164
4221
|
}>;
|
|
4165
4222
|
packageManager: z.ZodEnum<{
|
|
4166
4223
|
bun: "bun";
|
|
@@ -4245,8 +4302,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4245
4302
|
"ai-cli": "ai-cli";
|
|
4246
4303
|
}>;
|
|
4247
4304
|
effect: z.ZodEnum<{
|
|
4248
|
-
effect: "effect";
|
|
4249
4305
|
none: "none";
|
|
4306
|
+
effect: "effect";
|
|
4250
4307
|
"effect-full": "effect-full";
|
|
4251
4308
|
}>;
|
|
4252
4309
|
stateManagement: z.ZodEnum<{
|
|
@@ -4381,8 +4438,8 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4381
4438
|
"geist-mono": "geist-mono";
|
|
4382
4439
|
}>>;
|
|
4383
4440
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
4384
|
-
default: "default";
|
|
4385
4441
|
none: "none";
|
|
4442
|
+
default: "default";
|
|
4386
4443
|
small: "small";
|
|
4387
4444
|
medium: "medium";
|
|
4388
4445
|
large: "large";
|
|
@@ -4437,6 +4494,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4437
4494
|
observability: z.ZodEnum<{
|
|
4438
4495
|
none: "none";
|
|
4439
4496
|
opentelemetry: "opentelemetry";
|
|
4497
|
+
signoz: "signoz";
|
|
4440
4498
|
sentry: "sentry";
|
|
4441
4499
|
grafana: "grafana";
|
|
4442
4500
|
datadog: "datadog";
|
|
@@ -4451,6 +4509,14 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4451
4509
|
flagsmith: "flagsmith";
|
|
4452
4510
|
unleash: "unleash";
|
|
4453
4511
|
}>;
|
|
4512
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
4513
|
+
none: "none";
|
|
4514
|
+
nango: "nango";
|
|
4515
|
+
}>>;
|
|
4516
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
4517
|
+
none: "none";
|
|
4518
|
+
medusa: "medusa";
|
|
4519
|
+
}>>;
|
|
4454
4520
|
analytics: z.ZodEnum<{
|
|
4455
4521
|
none: "none";
|
|
4456
4522
|
posthog: "posthog";
|
|
@@ -4515,9 +4581,9 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4515
4581
|
}>;
|
|
4516
4582
|
mobileUI: z.ZodEnum<{
|
|
4517
4583
|
none: "none";
|
|
4584
|
+
uniwind: "uniwind";
|
|
4518
4585
|
tamagui: "tamagui";
|
|
4519
4586
|
"gluestack-ui": "gluestack-ui";
|
|
4520
|
-
uniwind: "uniwind";
|
|
4521
4587
|
unistyles: "unistyles";
|
|
4522
4588
|
}>;
|
|
4523
4589
|
mobileStorage: z.ZodEnum<{
|
|
@@ -4602,12 +4668,12 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4602
4668
|
ratatui: "ratatui";
|
|
4603
4669
|
}>;
|
|
4604
4670
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
4605
|
-
config: "config";
|
|
4606
4671
|
none: "none";
|
|
4607
4672
|
serde: "serde";
|
|
4608
4673
|
uuid: "uuid";
|
|
4609
4674
|
chrono: "chrono";
|
|
4610
4675
|
reqwest: "reqwest";
|
|
4676
|
+
config: "config";
|
|
4611
4677
|
dashmap: "dashmap";
|
|
4612
4678
|
"parking-lot": "parking-lot";
|
|
4613
4679
|
secrecy: "secrecy";
|
|
@@ -4761,6 +4827,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4761
4827
|
pythonObservability: z.ZodEnum<{
|
|
4762
4828
|
none: "none";
|
|
4763
4829
|
opentelemetry: "opentelemetry";
|
|
4830
|
+
signoz: "signoz";
|
|
4764
4831
|
"prometheus-client": "prometheus-client";
|
|
4765
4832
|
}>;
|
|
4766
4833
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -4880,6 +4947,7 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
4880
4947
|
goObservability: z.ZodEnum<{
|
|
4881
4948
|
none: "none";
|
|
4882
4949
|
opentelemetry: "opentelemetry";
|
|
4950
|
+
signoz: "signoz";
|
|
4883
4951
|
prometheus: "prometheus";
|
|
4884
4952
|
}>;
|
|
4885
4953
|
goValidation: z.ZodEnum<{
|
|
@@ -5216,67 +5284,69 @@ declare function getBetterFullstackConfigJsonSchema(): z.core.ZodStandardJSONSch
|
|
|
5216
5284
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5217
5285
|
id: z.ZodString;
|
|
5218
5286
|
role: z.ZodEnum<{
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
backend: "backend";
|
|
5222
|
-
mobile: "mobile";
|
|
5287
|
+
effect: "effect";
|
|
5288
|
+
ai: "ai";
|
|
5223
5289
|
database: "database";
|
|
5224
|
-
api: "api";
|
|
5225
|
-
graphql: "graphql";
|
|
5226
5290
|
orm: "orm";
|
|
5227
5291
|
auth: "auth";
|
|
5228
|
-
|
|
5229
|
-
|
|
5292
|
+
payments: "payments";
|
|
5293
|
+
frontend: "frontend";
|
|
5294
|
+
examples: "examples";
|
|
5295
|
+
packageManager: "packageManager";
|
|
5230
5296
|
dbSetup: "dbSetup";
|
|
5231
|
-
|
|
5297
|
+
backend: "backend";
|
|
5298
|
+
runtime: "runtime";
|
|
5299
|
+
api: "api";
|
|
5300
|
+
stateManagement: "stateManagement";
|
|
5301
|
+
forms: "forms";
|
|
5302
|
+
testing: "testing";
|
|
5303
|
+
email: "email";
|
|
5304
|
+
validation: "validation";
|
|
5232
5305
|
realtime: "realtime";
|
|
5233
|
-
|
|
5234
|
-
|
|
5306
|
+
jobQueue: "jobQueue";
|
|
5307
|
+
animation: "animation";
|
|
5308
|
+
fileUpload: "fileUpload";
|
|
5309
|
+
logging: "logging";
|
|
5235
5310
|
observability: "observability";
|
|
5236
|
-
|
|
5311
|
+
featureFlags: "featureFlags";
|
|
5312
|
+
integrations: "integrations";
|
|
5313
|
+
ecommerce: "ecommerce";
|
|
5314
|
+
analytics: "analytics";
|
|
5315
|
+
cms: "cms";
|
|
5316
|
+
caching: "caching";
|
|
5317
|
+
rateLimit: "rateLimit";
|
|
5318
|
+
i18n: "i18n";
|
|
5237
5319
|
search: "search";
|
|
5238
5320
|
vectorDb: "vectorDb";
|
|
5239
5321
|
fileStorage: "fileStorage";
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
fileUpload: "fileUpload";
|
|
5247
|
-
validation: "validation";
|
|
5248
|
-
effect: "effect";
|
|
5322
|
+
config: "config";
|
|
5323
|
+
mobile: "mobile";
|
|
5324
|
+
graphql: "graphql";
|
|
5325
|
+
deploy: "deploy";
|
|
5326
|
+
migrations: "migrations";
|
|
5327
|
+
navigation: "navigation";
|
|
5249
5328
|
ui: "ui";
|
|
5250
5329
|
css: "css";
|
|
5251
5330
|
storage: "storage";
|
|
5331
|
+
push: "push";
|
|
5252
5332
|
ota: "ota";
|
|
5253
5333
|
deepLinking: "deepLinking";
|
|
5254
|
-
ai: "ai";
|
|
5255
|
-
payments: "payments";
|
|
5256
|
-
logging: "logging";
|
|
5257
|
-
featureFlags: "featureFlags";
|
|
5258
|
-
analytics: "analytics";
|
|
5259
|
-
cms: "cms";
|
|
5260
|
-
i18n: "i18n";
|
|
5261
5334
|
documentation: "documentation";
|
|
5262
5335
|
codeQuality: "codeQuality";
|
|
5263
5336
|
appPlatform: "appPlatform";
|
|
5264
5337
|
dataFetching: "dataFetching";
|
|
5265
5338
|
workspaceTooling: "workspaceTooling";
|
|
5266
|
-
examples: "examples";
|
|
5267
5339
|
language: "language";
|
|
5268
5340
|
buildTool: "buildTool";
|
|
5269
5341
|
cli: "cli";
|
|
5270
5342
|
errorHandling: "errorHandling";
|
|
5271
5343
|
httpClient: "httpClient";
|
|
5272
5344
|
libraries: "libraries";
|
|
5273
|
-
config: "config";
|
|
5274
5345
|
templating: "templating";
|
|
5275
5346
|
cloudSdk: "cloudSdk";
|
|
5276
5347
|
data: "data";
|
|
5277
5348
|
media: "media";
|
|
5278
5349
|
server: "server";
|
|
5279
|
-
packageManager: "packageManager";
|
|
5280
5350
|
messageQueue: "messageQueue";
|
|
5281
5351
|
}>;
|
|
5282
5352
|
toolId: z.ZodString;
|
|
@@ -5339,13 +5409,13 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5339
5409
|
sequelize: "sequelize";
|
|
5340
5410
|
}>;
|
|
5341
5411
|
backend: z.ZodEnum<{
|
|
5342
|
-
effect: "effect";
|
|
5343
5412
|
none: "none";
|
|
5344
5413
|
hono: "hono";
|
|
5345
5414
|
express: "express";
|
|
5346
5415
|
fastify: "fastify";
|
|
5347
5416
|
elysia: "elysia";
|
|
5348
5417
|
fets: "fets";
|
|
5418
|
+
effect: "effect";
|
|
5349
5419
|
nestjs: "nestjs";
|
|
5350
5420
|
adonisjs: "adonisjs";
|
|
5351
5421
|
nitro: "nitro";
|
|
@@ -5390,6 +5460,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5390
5460
|
biome: "biome";
|
|
5391
5461
|
lefthook: "lefthook";
|
|
5392
5462
|
husky: "husky";
|
|
5463
|
+
knip: "knip";
|
|
5464
|
+
gitleaks: "gitleaks";
|
|
5393
5465
|
ruler: "ruler";
|
|
5394
5466
|
mcp: "mcp";
|
|
5395
5467
|
skills: "skills";
|
|
@@ -5411,6 +5483,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5411
5483
|
"backend-utils": "backend-utils";
|
|
5412
5484
|
devcontainer: "devcontainer";
|
|
5413
5485
|
"docker-compose": "docker-compose";
|
|
5486
|
+
kong: "kong";
|
|
5414
5487
|
"github-actions": "github-actions";
|
|
5415
5488
|
eslint: "eslint";
|
|
5416
5489
|
prettier: "prettier";
|
|
@@ -5423,8 +5496,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5423
5496
|
capacitor: "capacitor";
|
|
5424
5497
|
}>>;
|
|
5425
5498
|
examples: z.ZodArray<z.ZodEnum<{
|
|
5426
|
-
ai: "ai";
|
|
5427
5499
|
none: "none";
|
|
5500
|
+
ai: "ai";
|
|
5428
5501
|
"chat-sdk": "chat-sdk";
|
|
5429
5502
|
"tanstack-showcase": "tanstack-showcase";
|
|
5430
5503
|
}>>;
|
|
@@ -5454,6 +5527,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5454
5527
|
creem: "creem";
|
|
5455
5528
|
autumn: "autumn";
|
|
5456
5529
|
commet: "commet";
|
|
5530
|
+
xendit: "xendit";
|
|
5457
5531
|
}>;
|
|
5458
5532
|
git: z.ZodBoolean;
|
|
5459
5533
|
packageManager: z.ZodEnum<{
|
|
@@ -5540,8 +5614,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5540
5614
|
"ai-cli": "ai-cli";
|
|
5541
5615
|
}>;
|
|
5542
5616
|
effect: z.ZodEnum<{
|
|
5543
|
-
effect: "effect";
|
|
5544
5617
|
none: "none";
|
|
5618
|
+
effect: "effect";
|
|
5545
5619
|
"effect-full": "effect-full";
|
|
5546
5620
|
}>;
|
|
5547
5621
|
stateManagement: z.ZodEnum<{
|
|
@@ -5676,8 +5750,8 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5676
5750
|
"geist-mono": "geist-mono";
|
|
5677
5751
|
}>>;
|
|
5678
5752
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
5679
|
-
default: "default";
|
|
5680
5753
|
none: "none";
|
|
5754
|
+
default: "default";
|
|
5681
5755
|
small: "small";
|
|
5682
5756
|
medium: "medium";
|
|
5683
5757
|
large: "large";
|
|
@@ -5732,6 +5806,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5732
5806
|
observability: z.ZodEnum<{
|
|
5733
5807
|
none: "none";
|
|
5734
5808
|
opentelemetry: "opentelemetry";
|
|
5809
|
+
signoz: "signoz";
|
|
5735
5810
|
sentry: "sentry";
|
|
5736
5811
|
grafana: "grafana";
|
|
5737
5812
|
datadog: "datadog";
|
|
@@ -5746,6 +5821,14 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5746
5821
|
flagsmith: "flagsmith";
|
|
5747
5822
|
unleash: "unleash";
|
|
5748
5823
|
}>;
|
|
5824
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
5825
|
+
none: "none";
|
|
5826
|
+
nango: "nango";
|
|
5827
|
+
}>>;
|
|
5828
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
5829
|
+
none: "none";
|
|
5830
|
+
medusa: "medusa";
|
|
5831
|
+
}>>;
|
|
5749
5832
|
analytics: z.ZodEnum<{
|
|
5750
5833
|
none: "none";
|
|
5751
5834
|
posthog: "posthog";
|
|
@@ -5810,9 +5893,9 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5810
5893
|
}>;
|
|
5811
5894
|
mobileUI: z.ZodEnum<{
|
|
5812
5895
|
none: "none";
|
|
5896
|
+
uniwind: "uniwind";
|
|
5813
5897
|
tamagui: "tamagui";
|
|
5814
5898
|
"gluestack-ui": "gluestack-ui";
|
|
5815
|
-
uniwind: "uniwind";
|
|
5816
5899
|
unistyles: "unistyles";
|
|
5817
5900
|
}>;
|
|
5818
5901
|
mobileStorage: z.ZodEnum<{
|
|
@@ -5897,12 +5980,12 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
5897
5980
|
ratatui: "ratatui";
|
|
5898
5981
|
}>;
|
|
5899
5982
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
5900
|
-
config: "config";
|
|
5901
5983
|
none: "none";
|
|
5902
5984
|
serde: "serde";
|
|
5903
5985
|
uuid: "uuid";
|
|
5904
5986
|
chrono: "chrono";
|
|
5905
5987
|
reqwest: "reqwest";
|
|
5988
|
+
config: "config";
|
|
5906
5989
|
dashmap: "dashmap";
|
|
5907
5990
|
"parking-lot": "parking-lot";
|
|
5908
5991
|
secrecy: "secrecy";
|
|
@@ -6056,6 +6139,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6056
6139
|
pythonObservability: z.ZodEnum<{
|
|
6057
6140
|
none: "none";
|
|
6058
6141
|
opentelemetry: "opentelemetry";
|
|
6142
|
+
signoz: "signoz";
|
|
6059
6143
|
"prometheus-client": "prometheus-client";
|
|
6060
6144
|
}>;
|
|
6061
6145
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -6175,6 +6259,7 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6175
6259
|
goObservability: z.ZodEnum<{
|
|
6176
6260
|
none: "none";
|
|
6177
6261
|
opentelemetry: "opentelemetry";
|
|
6262
|
+
signoz: "signoz";
|
|
6178
6263
|
prometheus: "prometheus";
|
|
6179
6264
|
}>;
|
|
6180
6265
|
goValidation: z.ZodEnum<{
|
|
@@ -6511,67 +6596,69 @@ declare function getInitResultJsonSchema(): z.core.ZodStandardJSONSchemaPayload<
|
|
|
6511
6596
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6512
6597
|
id: z.ZodString;
|
|
6513
6598
|
role: z.ZodEnum<{
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
backend: "backend";
|
|
6517
|
-
mobile: "mobile";
|
|
6599
|
+
effect: "effect";
|
|
6600
|
+
ai: "ai";
|
|
6518
6601
|
database: "database";
|
|
6519
|
-
api: "api";
|
|
6520
|
-
graphql: "graphql";
|
|
6521
6602
|
orm: "orm";
|
|
6522
6603
|
auth: "auth";
|
|
6523
|
-
|
|
6524
|
-
|
|
6604
|
+
payments: "payments";
|
|
6605
|
+
frontend: "frontend";
|
|
6606
|
+
examples: "examples";
|
|
6607
|
+
packageManager: "packageManager";
|
|
6525
6608
|
dbSetup: "dbSetup";
|
|
6526
|
-
|
|
6609
|
+
backend: "backend";
|
|
6610
|
+
runtime: "runtime";
|
|
6611
|
+
api: "api";
|
|
6612
|
+
stateManagement: "stateManagement";
|
|
6613
|
+
forms: "forms";
|
|
6614
|
+
testing: "testing";
|
|
6615
|
+
email: "email";
|
|
6616
|
+
validation: "validation";
|
|
6527
6617
|
realtime: "realtime";
|
|
6528
|
-
|
|
6529
|
-
|
|
6618
|
+
jobQueue: "jobQueue";
|
|
6619
|
+
animation: "animation";
|
|
6620
|
+
fileUpload: "fileUpload";
|
|
6621
|
+
logging: "logging";
|
|
6530
6622
|
observability: "observability";
|
|
6531
|
-
|
|
6623
|
+
featureFlags: "featureFlags";
|
|
6624
|
+
integrations: "integrations";
|
|
6625
|
+
ecommerce: "ecommerce";
|
|
6626
|
+
analytics: "analytics";
|
|
6627
|
+
cms: "cms";
|
|
6628
|
+
caching: "caching";
|
|
6629
|
+
rateLimit: "rateLimit";
|
|
6630
|
+
i18n: "i18n";
|
|
6532
6631
|
search: "search";
|
|
6533
6632
|
vectorDb: "vectorDb";
|
|
6534
6633
|
fileStorage: "fileStorage";
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
fileUpload: "fileUpload";
|
|
6542
|
-
validation: "validation";
|
|
6543
|
-
effect: "effect";
|
|
6634
|
+
config: "config";
|
|
6635
|
+
mobile: "mobile";
|
|
6636
|
+
graphql: "graphql";
|
|
6637
|
+
deploy: "deploy";
|
|
6638
|
+
migrations: "migrations";
|
|
6639
|
+
navigation: "navigation";
|
|
6544
6640
|
ui: "ui";
|
|
6545
6641
|
css: "css";
|
|
6546
6642
|
storage: "storage";
|
|
6643
|
+
push: "push";
|
|
6547
6644
|
ota: "ota";
|
|
6548
6645
|
deepLinking: "deepLinking";
|
|
6549
|
-
ai: "ai";
|
|
6550
|
-
payments: "payments";
|
|
6551
|
-
logging: "logging";
|
|
6552
|
-
featureFlags: "featureFlags";
|
|
6553
|
-
analytics: "analytics";
|
|
6554
|
-
cms: "cms";
|
|
6555
|
-
i18n: "i18n";
|
|
6556
6646
|
documentation: "documentation";
|
|
6557
6647
|
codeQuality: "codeQuality";
|
|
6558
6648
|
appPlatform: "appPlatform";
|
|
6559
6649
|
dataFetching: "dataFetching";
|
|
6560
6650
|
workspaceTooling: "workspaceTooling";
|
|
6561
|
-
examples: "examples";
|
|
6562
6651
|
language: "language";
|
|
6563
6652
|
buildTool: "buildTool";
|
|
6564
6653
|
cli: "cli";
|
|
6565
6654
|
errorHandling: "errorHandling";
|
|
6566
6655
|
httpClient: "httpClient";
|
|
6567
6656
|
libraries: "libraries";
|
|
6568
|
-
config: "config";
|
|
6569
6657
|
templating: "templating";
|
|
6570
6658
|
cloudSdk: "cloudSdk";
|
|
6571
6659
|
data: "data";
|
|
6572
6660
|
media: "media";
|
|
6573
6661
|
server: "server";
|
|
6574
|
-
packageManager: "packageManager";
|
|
6575
6662
|
messageQueue: "messageQueue";
|
|
6576
6663
|
}>;
|
|
6577
6664
|
toolId: z.ZodString;
|
|
@@ -6711,6 +6798,7 @@ declare function getGoConfigJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.
|
|
|
6711
6798
|
declare function getGoObservabilityJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
6712
6799
|
none: "none";
|
|
6713
6800
|
opentelemetry: "opentelemetry";
|
|
6801
|
+
signoz: "signoz";
|
|
6714
6802
|
prometheus: "prometheus";
|
|
6715
6803
|
}>>;
|
|
6716
6804
|
declare function getGoValidationJsonSchema(): z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
@@ -6973,13 +7061,13 @@ declare function getAllJsonSchemas(): {
|
|
|
6973
7061
|
sequelize: "sequelize";
|
|
6974
7062
|
}>>;
|
|
6975
7063
|
backend: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
6976
|
-
effect: "effect";
|
|
6977
7064
|
none: "none";
|
|
6978
7065
|
hono: "hono";
|
|
6979
7066
|
express: "express";
|
|
6980
7067
|
fastify: "fastify";
|
|
6981
7068
|
elysia: "elysia";
|
|
6982
7069
|
fets: "fets";
|
|
7070
|
+
effect: "effect";
|
|
6983
7071
|
nestjs: "nestjs";
|
|
6984
7072
|
adonisjs: "adonisjs";
|
|
6985
7073
|
nitro: "nitro";
|
|
@@ -7024,6 +7112,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7024
7112
|
biome: "biome";
|
|
7025
7113
|
lefthook: "lefthook";
|
|
7026
7114
|
husky: "husky";
|
|
7115
|
+
knip: "knip";
|
|
7116
|
+
gitleaks: "gitleaks";
|
|
7027
7117
|
ruler: "ruler";
|
|
7028
7118
|
mcp: "mcp";
|
|
7029
7119
|
skills: "skills";
|
|
@@ -7045,6 +7135,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7045
7135
|
"backend-utils": "backend-utils";
|
|
7046
7136
|
devcontainer: "devcontainer";
|
|
7047
7137
|
"docker-compose": "docker-compose";
|
|
7138
|
+
kong: "kong";
|
|
7048
7139
|
"github-actions": "github-actions";
|
|
7049
7140
|
eslint: "eslint";
|
|
7050
7141
|
prettier: "prettier";
|
|
@@ -7057,8 +7148,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7057
7148
|
capacitor: "capacitor";
|
|
7058
7149
|
}>>;
|
|
7059
7150
|
examples: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7060
|
-
ai: "ai";
|
|
7061
7151
|
none: "none";
|
|
7152
|
+
ai: "ai";
|
|
7062
7153
|
"chat-sdk": "chat-sdk";
|
|
7063
7154
|
"tanstack-showcase": "tanstack-showcase";
|
|
7064
7155
|
}>>;
|
|
@@ -7116,6 +7207,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7116
7207
|
creem: "creem";
|
|
7117
7208
|
autumn: "autumn";
|
|
7118
7209
|
commet: "commet";
|
|
7210
|
+
xendit: "xendit";
|
|
7119
7211
|
}>>;
|
|
7120
7212
|
webDeploy: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7121
7213
|
none: "none";
|
|
@@ -7140,18 +7232,18 @@ declare function getAllJsonSchemas(): {
|
|
|
7140
7232
|
vercel: "vercel";
|
|
7141
7233
|
}>>;
|
|
7142
7234
|
directoryConflict: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7143
|
-
error: "error";
|
|
7144
7235
|
merge: "merge";
|
|
7145
7236
|
overwrite: "overwrite";
|
|
7146
7237
|
increment: "increment";
|
|
7238
|
+
error: "error";
|
|
7147
7239
|
}>>;
|
|
7148
7240
|
template: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7149
7241
|
none: "none";
|
|
7150
|
-
uniwind: "uniwind";
|
|
7151
7242
|
mern: "mern";
|
|
7152
7243
|
pern: "pern";
|
|
7153
7244
|
t3: "t3";
|
|
7154
7245
|
saas: "saas";
|
|
7246
|
+
uniwind: "uniwind";
|
|
7155
7247
|
}>>;
|
|
7156
7248
|
goWebFramework: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7157
7249
|
none: "none";
|
|
@@ -7233,6 +7325,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7233
7325
|
goObservability: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
7234
7326
|
none: "none";
|
|
7235
7327
|
opentelemetry: "opentelemetry";
|
|
7328
|
+
signoz: "signoz";
|
|
7236
7329
|
prometheus: "prometheus";
|
|
7237
7330
|
}>>;
|
|
7238
7331
|
goValidation: z.core.ZodStandardJSONSchemaPayload<z.ZodEnum<{
|
|
@@ -7500,11 +7593,11 @@ declare function getAllJsonSchemas(): {
|
|
|
7500
7593
|
projectName: z.ZodOptional<z.ZodString>;
|
|
7501
7594
|
template: z.ZodOptional<z.ZodEnum<{
|
|
7502
7595
|
none: "none";
|
|
7503
|
-
uniwind: "uniwind";
|
|
7504
7596
|
mern: "mern";
|
|
7505
7597
|
pern: "pern";
|
|
7506
7598
|
t3: "t3";
|
|
7507
7599
|
saas: "saas";
|
|
7600
|
+
uniwind: "uniwind";
|
|
7508
7601
|
}>>;
|
|
7509
7602
|
yes: z.ZodOptional<z.ZodBoolean>;
|
|
7510
7603
|
yolo: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7566,6 +7659,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7566
7659
|
creem: "creem";
|
|
7567
7660
|
autumn: "autumn";
|
|
7568
7661
|
commet: "commet";
|
|
7662
|
+
xendit: "xendit";
|
|
7569
7663
|
}>>;
|
|
7570
7664
|
frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7571
7665
|
none: "none";
|
|
@@ -7598,6 +7692,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7598
7692
|
biome: "biome";
|
|
7599
7693
|
lefthook: "lefthook";
|
|
7600
7694
|
husky: "husky";
|
|
7695
|
+
knip: "knip";
|
|
7696
|
+
gitleaks: "gitleaks";
|
|
7601
7697
|
ruler: "ruler";
|
|
7602
7698
|
mcp: "mcp";
|
|
7603
7699
|
skills: "skills";
|
|
@@ -7619,6 +7715,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7619
7715
|
"backend-utils": "backend-utils";
|
|
7620
7716
|
devcontainer: "devcontainer";
|
|
7621
7717
|
"docker-compose": "docker-compose";
|
|
7718
|
+
kong: "kong";
|
|
7622
7719
|
"github-actions": "github-actions";
|
|
7623
7720
|
eslint: "eslint";
|
|
7624
7721
|
prettier: "prettier";
|
|
@@ -7631,8 +7728,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7631
7728
|
capacitor: "capacitor";
|
|
7632
7729
|
}>>>;
|
|
7633
7730
|
examples: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
7634
|
-
ai: "ai";
|
|
7635
7731
|
none: "none";
|
|
7732
|
+
ai: "ai";
|
|
7636
7733
|
"chat-sdk": "chat-sdk";
|
|
7637
7734
|
"tanstack-showcase": "tanstack-showcase";
|
|
7638
7735
|
}>>>;
|
|
@@ -7666,13 +7763,13 @@ declare function getAllJsonSchemas(): {
|
|
|
7666
7763
|
docker: "docker";
|
|
7667
7764
|
}>>;
|
|
7668
7765
|
backend: z.ZodOptional<z.ZodEnum<{
|
|
7669
|
-
effect: "effect";
|
|
7670
7766
|
none: "none";
|
|
7671
7767
|
hono: "hono";
|
|
7672
7768
|
express: "express";
|
|
7673
7769
|
fastify: "fastify";
|
|
7674
7770
|
elysia: "elysia";
|
|
7675
7771
|
fets: "fets";
|
|
7772
|
+
effect: "effect";
|
|
7676
7773
|
nestjs: "nestjs";
|
|
7677
7774
|
adonisjs: "adonisjs";
|
|
7678
7775
|
nitro: "nitro";
|
|
@@ -7719,10 +7816,10 @@ declare function getAllJsonSchemas(): {
|
|
|
7719
7816
|
vercel: "vercel";
|
|
7720
7817
|
}>>;
|
|
7721
7818
|
directoryConflict: z.ZodOptional<z.ZodEnum<{
|
|
7722
|
-
error: "error";
|
|
7723
7819
|
merge: "merge";
|
|
7724
7820
|
overwrite: "overwrite";
|
|
7725
7821
|
increment: "increment";
|
|
7822
|
+
error: "error";
|
|
7726
7823
|
}>>;
|
|
7727
7824
|
renderTitle: z.ZodOptional<z.ZodBoolean>;
|
|
7728
7825
|
disableAnalytics: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7751,8 +7848,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7751
7848
|
"ai-cli": "ai-cli";
|
|
7752
7849
|
}>>;
|
|
7753
7850
|
effect: z.ZodOptional<z.ZodEnum<{
|
|
7754
|
-
effect: "effect";
|
|
7755
7851
|
none: "none";
|
|
7852
|
+
effect: "effect";
|
|
7756
7853
|
"effect-full": "effect-full";
|
|
7757
7854
|
}>>;
|
|
7758
7855
|
stateManagement: z.ZodOptional<z.ZodEnum<{
|
|
@@ -7887,8 +7984,8 @@ declare function getAllJsonSchemas(): {
|
|
|
7887
7984
|
"geist-mono": "geist-mono";
|
|
7888
7985
|
}>>;
|
|
7889
7986
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
7890
|
-
default: "default";
|
|
7891
7987
|
none: "none";
|
|
7988
|
+
default: "default";
|
|
7892
7989
|
small: "small";
|
|
7893
7990
|
medium: "medium";
|
|
7894
7991
|
large: "large";
|
|
@@ -7943,6 +8040,7 @@ declare function getAllJsonSchemas(): {
|
|
|
7943
8040
|
observability: z.ZodOptional<z.ZodEnum<{
|
|
7944
8041
|
none: "none";
|
|
7945
8042
|
opentelemetry: "opentelemetry";
|
|
8043
|
+
signoz: "signoz";
|
|
7946
8044
|
sentry: "sentry";
|
|
7947
8045
|
grafana: "grafana";
|
|
7948
8046
|
datadog: "datadog";
|
|
@@ -7957,6 +8055,14 @@ declare function getAllJsonSchemas(): {
|
|
|
7957
8055
|
flagsmith: "flagsmith";
|
|
7958
8056
|
unleash: "unleash";
|
|
7959
8057
|
}>>;
|
|
8058
|
+
integrations: z.ZodOptional<z.ZodEnum<{
|
|
8059
|
+
none: "none";
|
|
8060
|
+
nango: "nango";
|
|
8061
|
+
}>>;
|
|
8062
|
+
ecommerce: z.ZodOptional<z.ZodEnum<{
|
|
8063
|
+
none: "none";
|
|
8064
|
+
medusa: "medusa";
|
|
8065
|
+
}>>;
|
|
7960
8066
|
analytics: z.ZodOptional<z.ZodEnum<{
|
|
7961
8067
|
none: "none";
|
|
7962
8068
|
posthog: "posthog";
|
|
@@ -8021,9 +8127,9 @@ declare function getAllJsonSchemas(): {
|
|
|
8021
8127
|
}>>;
|
|
8022
8128
|
mobileUI: z.ZodOptional<z.ZodEnum<{
|
|
8023
8129
|
none: "none";
|
|
8130
|
+
uniwind: "uniwind";
|
|
8024
8131
|
tamagui: "tamagui";
|
|
8025
8132
|
"gluestack-ui": "gluestack-ui";
|
|
8026
|
-
uniwind: "uniwind";
|
|
8027
8133
|
unistyles: "unistyles";
|
|
8028
8134
|
}>>;
|
|
8029
8135
|
mobileStorage: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8108,12 +8214,12 @@ declare function getAllJsonSchemas(): {
|
|
|
8108
8214
|
ratatui: "ratatui";
|
|
8109
8215
|
}>>;
|
|
8110
8216
|
rustLibraries: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
8111
|
-
config: "config";
|
|
8112
8217
|
none: "none";
|
|
8113
8218
|
serde: "serde";
|
|
8114
8219
|
uuid: "uuid";
|
|
8115
8220
|
chrono: "chrono";
|
|
8116
8221
|
reqwest: "reqwest";
|
|
8222
|
+
config: "config";
|
|
8117
8223
|
dashmap: "dashmap";
|
|
8118
8224
|
"parking-lot": "parking-lot";
|
|
8119
8225
|
secrecy: "secrecy";
|
|
@@ -8267,6 +8373,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8267
8373
|
pythonObservability: z.ZodOptional<z.ZodEnum<{
|
|
8268
8374
|
none: "none";
|
|
8269
8375
|
opentelemetry: "opentelemetry";
|
|
8376
|
+
signoz: "signoz";
|
|
8270
8377
|
"prometheus-client": "prometheus-client";
|
|
8271
8378
|
}>>;
|
|
8272
8379
|
pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -8386,6 +8493,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8386
8493
|
goObservability: z.ZodOptional<z.ZodEnum<{
|
|
8387
8494
|
none: "none";
|
|
8388
8495
|
opentelemetry: "opentelemetry";
|
|
8496
|
+
signoz: "signoz";
|
|
8389
8497
|
prometheus: "prometheus";
|
|
8390
8498
|
}>>;
|
|
8391
8499
|
goValidation: z.ZodOptional<z.ZodEnum<{
|
|
@@ -8755,13 +8863,13 @@ declare function getAllJsonSchemas(): {
|
|
|
8755
8863
|
sequelize: "sequelize";
|
|
8756
8864
|
}>;
|
|
8757
8865
|
backend: z.ZodEnum<{
|
|
8758
|
-
effect: "effect";
|
|
8759
8866
|
none: "none";
|
|
8760
8867
|
hono: "hono";
|
|
8761
8868
|
express: "express";
|
|
8762
8869
|
fastify: "fastify";
|
|
8763
8870
|
elysia: "elysia";
|
|
8764
8871
|
fets: "fets";
|
|
8872
|
+
effect: "effect";
|
|
8765
8873
|
nestjs: "nestjs";
|
|
8766
8874
|
adonisjs: "adonisjs";
|
|
8767
8875
|
nitro: "nitro";
|
|
@@ -8806,6 +8914,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8806
8914
|
biome: "biome";
|
|
8807
8915
|
lefthook: "lefthook";
|
|
8808
8916
|
husky: "husky";
|
|
8917
|
+
knip: "knip";
|
|
8918
|
+
gitleaks: "gitleaks";
|
|
8809
8919
|
ruler: "ruler";
|
|
8810
8920
|
mcp: "mcp";
|
|
8811
8921
|
skills: "skills";
|
|
@@ -8827,6 +8937,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8827
8937
|
"backend-utils": "backend-utils";
|
|
8828
8938
|
devcontainer: "devcontainer";
|
|
8829
8939
|
"docker-compose": "docker-compose";
|
|
8940
|
+
kong: "kong";
|
|
8830
8941
|
"github-actions": "github-actions";
|
|
8831
8942
|
eslint: "eslint";
|
|
8832
8943
|
prettier: "prettier";
|
|
@@ -8839,8 +8950,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8839
8950
|
capacitor: "capacitor";
|
|
8840
8951
|
}>>;
|
|
8841
8952
|
examples: z.ZodArray<z.ZodEnum<{
|
|
8842
|
-
ai: "ai";
|
|
8843
8953
|
none: "none";
|
|
8954
|
+
ai: "ai";
|
|
8844
8955
|
"chat-sdk": "chat-sdk";
|
|
8845
8956
|
"tanstack-showcase": "tanstack-showcase";
|
|
8846
8957
|
}>>;
|
|
@@ -8870,6 +8981,7 @@ declare function getAllJsonSchemas(): {
|
|
|
8870
8981
|
creem: "creem";
|
|
8871
8982
|
autumn: "autumn";
|
|
8872
8983
|
commet: "commet";
|
|
8984
|
+
xendit: "xendit";
|
|
8873
8985
|
}>;
|
|
8874
8986
|
git: z.ZodBoolean;
|
|
8875
8987
|
packageManager: z.ZodEnum<{
|
|
@@ -8956,8 +9068,8 @@ declare function getAllJsonSchemas(): {
|
|
|
8956
9068
|
"ai-cli": "ai-cli";
|
|
8957
9069
|
}>;
|
|
8958
9070
|
effect: z.ZodEnum<{
|
|
8959
|
-
effect: "effect";
|
|
8960
9071
|
none: "none";
|
|
9072
|
+
effect: "effect";
|
|
8961
9073
|
"effect-full": "effect-full";
|
|
8962
9074
|
}>;
|
|
8963
9075
|
stateManagement: z.ZodEnum<{
|
|
@@ -9092,8 +9204,8 @@ declare function getAllJsonSchemas(): {
|
|
|
9092
9204
|
"geist-mono": "geist-mono";
|
|
9093
9205
|
}>>;
|
|
9094
9206
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
9095
|
-
default: "default";
|
|
9096
9207
|
none: "none";
|
|
9208
|
+
default: "default";
|
|
9097
9209
|
small: "small";
|
|
9098
9210
|
medium: "medium";
|
|
9099
9211
|
large: "large";
|
|
@@ -9148,6 +9260,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9148
9260
|
observability: z.ZodEnum<{
|
|
9149
9261
|
none: "none";
|
|
9150
9262
|
opentelemetry: "opentelemetry";
|
|
9263
|
+
signoz: "signoz";
|
|
9151
9264
|
sentry: "sentry";
|
|
9152
9265
|
grafana: "grafana";
|
|
9153
9266
|
datadog: "datadog";
|
|
@@ -9162,6 +9275,14 @@ declare function getAllJsonSchemas(): {
|
|
|
9162
9275
|
flagsmith: "flagsmith";
|
|
9163
9276
|
unleash: "unleash";
|
|
9164
9277
|
}>;
|
|
9278
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
9279
|
+
none: "none";
|
|
9280
|
+
nango: "nango";
|
|
9281
|
+
}>>;
|
|
9282
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
9283
|
+
none: "none";
|
|
9284
|
+
medusa: "medusa";
|
|
9285
|
+
}>>;
|
|
9165
9286
|
analytics: z.ZodEnum<{
|
|
9166
9287
|
none: "none";
|
|
9167
9288
|
posthog: "posthog";
|
|
@@ -9226,9 +9347,9 @@ declare function getAllJsonSchemas(): {
|
|
|
9226
9347
|
}>;
|
|
9227
9348
|
mobileUI: z.ZodEnum<{
|
|
9228
9349
|
none: "none";
|
|
9350
|
+
uniwind: "uniwind";
|
|
9229
9351
|
tamagui: "tamagui";
|
|
9230
9352
|
"gluestack-ui": "gluestack-ui";
|
|
9231
|
-
uniwind: "uniwind";
|
|
9232
9353
|
unistyles: "unistyles";
|
|
9233
9354
|
}>;
|
|
9234
9355
|
mobileStorage: z.ZodEnum<{
|
|
@@ -9313,12 +9434,12 @@ declare function getAllJsonSchemas(): {
|
|
|
9313
9434
|
ratatui: "ratatui";
|
|
9314
9435
|
}>;
|
|
9315
9436
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
9316
|
-
config: "config";
|
|
9317
9437
|
none: "none";
|
|
9318
9438
|
serde: "serde";
|
|
9319
9439
|
uuid: "uuid";
|
|
9320
9440
|
chrono: "chrono";
|
|
9321
9441
|
reqwest: "reqwest";
|
|
9442
|
+
config: "config";
|
|
9322
9443
|
dashmap: "dashmap";
|
|
9323
9444
|
"parking-lot": "parking-lot";
|
|
9324
9445
|
secrecy: "secrecy";
|
|
@@ -9472,6 +9593,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9472
9593
|
pythonObservability: z.ZodEnum<{
|
|
9473
9594
|
none: "none";
|
|
9474
9595
|
opentelemetry: "opentelemetry";
|
|
9596
|
+
signoz: "signoz";
|
|
9475
9597
|
"prometheus-client": "prometheus-client";
|
|
9476
9598
|
}>;
|
|
9477
9599
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -9591,6 +9713,7 @@ declare function getAllJsonSchemas(): {
|
|
|
9591
9713
|
goObservability: z.ZodEnum<{
|
|
9592
9714
|
none: "none";
|
|
9593
9715
|
opentelemetry: "opentelemetry";
|
|
9716
|
+
signoz: "signoz";
|
|
9594
9717
|
prometheus: "prometheus";
|
|
9595
9718
|
}>;
|
|
9596
9719
|
goValidation: z.ZodEnum<{
|
|
@@ -9927,67 +10050,69 @@ declare function getAllJsonSchemas(): {
|
|
|
9927
10050
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9928
10051
|
id: z.ZodString;
|
|
9929
10052
|
role: z.ZodEnum<{
|
|
9930
|
-
|
|
9931
|
-
|
|
9932
|
-
backend: "backend";
|
|
9933
|
-
mobile: "mobile";
|
|
10053
|
+
effect: "effect";
|
|
10054
|
+
ai: "ai";
|
|
9934
10055
|
database: "database";
|
|
9935
|
-
api: "api";
|
|
9936
|
-
graphql: "graphql";
|
|
9937
10056
|
orm: "orm";
|
|
9938
10057
|
auth: "auth";
|
|
9939
|
-
|
|
9940
|
-
|
|
10058
|
+
payments: "payments";
|
|
10059
|
+
frontend: "frontend";
|
|
10060
|
+
examples: "examples";
|
|
10061
|
+
packageManager: "packageManager";
|
|
9941
10062
|
dbSetup: "dbSetup";
|
|
9942
|
-
|
|
10063
|
+
backend: "backend";
|
|
10064
|
+
runtime: "runtime";
|
|
10065
|
+
api: "api";
|
|
10066
|
+
stateManagement: "stateManagement";
|
|
10067
|
+
forms: "forms";
|
|
10068
|
+
testing: "testing";
|
|
10069
|
+
email: "email";
|
|
10070
|
+
validation: "validation";
|
|
9943
10071
|
realtime: "realtime";
|
|
9944
|
-
|
|
9945
|
-
|
|
10072
|
+
jobQueue: "jobQueue";
|
|
10073
|
+
animation: "animation";
|
|
10074
|
+
fileUpload: "fileUpload";
|
|
10075
|
+
logging: "logging";
|
|
9946
10076
|
observability: "observability";
|
|
9947
|
-
|
|
10077
|
+
featureFlags: "featureFlags";
|
|
10078
|
+
integrations: "integrations";
|
|
10079
|
+
ecommerce: "ecommerce";
|
|
10080
|
+
analytics: "analytics";
|
|
10081
|
+
cms: "cms";
|
|
10082
|
+
caching: "caching";
|
|
10083
|
+
rateLimit: "rateLimit";
|
|
10084
|
+
i18n: "i18n";
|
|
9948
10085
|
search: "search";
|
|
9949
10086
|
vectorDb: "vectorDb";
|
|
9950
10087
|
fileStorage: "fileStorage";
|
|
9951
|
-
|
|
9952
|
-
|
|
9953
|
-
|
|
9954
|
-
|
|
9955
|
-
|
|
9956
|
-
|
|
9957
|
-
fileUpload: "fileUpload";
|
|
9958
|
-
validation: "validation";
|
|
9959
|
-
effect: "effect";
|
|
10088
|
+
config: "config";
|
|
10089
|
+
mobile: "mobile";
|
|
10090
|
+
graphql: "graphql";
|
|
10091
|
+
deploy: "deploy";
|
|
10092
|
+
migrations: "migrations";
|
|
10093
|
+
navigation: "navigation";
|
|
9960
10094
|
ui: "ui";
|
|
9961
10095
|
css: "css";
|
|
9962
10096
|
storage: "storage";
|
|
10097
|
+
push: "push";
|
|
9963
10098
|
ota: "ota";
|
|
9964
10099
|
deepLinking: "deepLinking";
|
|
9965
|
-
ai: "ai";
|
|
9966
|
-
payments: "payments";
|
|
9967
|
-
logging: "logging";
|
|
9968
|
-
featureFlags: "featureFlags";
|
|
9969
|
-
analytics: "analytics";
|
|
9970
|
-
cms: "cms";
|
|
9971
|
-
i18n: "i18n";
|
|
9972
10100
|
documentation: "documentation";
|
|
9973
10101
|
codeQuality: "codeQuality";
|
|
9974
10102
|
appPlatform: "appPlatform";
|
|
9975
10103
|
dataFetching: "dataFetching";
|
|
9976
10104
|
workspaceTooling: "workspaceTooling";
|
|
9977
|
-
examples: "examples";
|
|
9978
10105
|
language: "language";
|
|
9979
10106
|
buildTool: "buildTool";
|
|
9980
10107
|
cli: "cli";
|
|
9981
10108
|
errorHandling: "errorHandling";
|
|
9982
10109
|
httpClient: "httpClient";
|
|
9983
10110
|
libraries: "libraries";
|
|
9984
|
-
config: "config";
|
|
9985
10111
|
templating: "templating";
|
|
9986
10112
|
cloudSdk: "cloudSdk";
|
|
9987
10113
|
data: "data";
|
|
9988
10114
|
media: "media";
|
|
9989
10115
|
server: "server";
|
|
9990
|
-
packageManager: "packageManager";
|
|
9991
10116
|
messageQueue: "messageQueue";
|
|
9992
10117
|
}>;
|
|
9993
10118
|
toolId: z.ZodString;
|
|
@@ -10049,13 +10174,13 @@ declare function getAllJsonSchemas(): {
|
|
|
10049
10174
|
sequelize: "sequelize";
|
|
10050
10175
|
}>;
|
|
10051
10176
|
backend: z.ZodEnum<{
|
|
10052
|
-
effect: "effect";
|
|
10053
10177
|
none: "none";
|
|
10054
10178
|
hono: "hono";
|
|
10055
10179
|
express: "express";
|
|
10056
10180
|
fastify: "fastify";
|
|
10057
10181
|
elysia: "elysia";
|
|
10058
10182
|
fets: "fets";
|
|
10183
|
+
effect: "effect";
|
|
10059
10184
|
nestjs: "nestjs";
|
|
10060
10185
|
adonisjs: "adonisjs";
|
|
10061
10186
|
nitro: "nitro";
|
|
@@ -10100,6 +10225,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10100
10225
|
biome: "biome";
|
|
10101
10226
|
lefthook: "lefthook";
|
|
10102
10227
|
husky: "husky";
|
|
10228
|
+
knip: "knip";
|
|
10229
|
+
gitleaks: "gitleaks";
|
|
10103
10230
|
ruler: "ruler";
|
|
10104
10231
|
mcp: "mcp";
|
|
10105
10232
|
skills: "skills";
|
|
@@ -10121,6 +10248,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10121
10248
|
"backend-utils": "backend-utils";
|
|
10122
10249
|
devcontainer: "devcontainer";
|
|
10123
10250
|
"docker-compose": "docker-compose";
|
|
10251
|
+
kong: "kong";
|
|
10124
10252
|
"github-actions": "github-actions";
|
|
10125
10253
|
eslint: "eslint";
|
|
10126
10254
|
prettier: "prettier";
|
|
@@ -10133,8 +10261,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10133
10261
|
capacitor: "capacitor";
|
|
10134
10262
|
}>>;
|
|
10135
10263
|
examples: z.ZodArray<z.ZodEnum<{
|
|
10136
|
-
ai: "ai";
|
|
10137
10264
|
none: "none";
|
|
10265
|
+
ai: "ai";
|
|
10138
10266
|
"chat-sdk": "chat-sdk";
|
|
10139
10267
|
"tanstack-showcase": "tanstack-showcase";
|
|
10140
10268
|
}>>;
|
|
@@ -10164,6 +10292,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10164
10292
|
creem: "creem";
|
|
10165
10293
|
autumn: "autumn";
|
|
10166
10294
|
commet: "commet";
|
|
10295
|
+
xendit: "xendit";
|
|
10167
10296
|
}>;
|
|
10168
10297
|
packageManager: z.ZodEnum<{
|
|
10169
10298
|
bun: "bun";
|
|
@@ -10248,8 +10377,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10248
10377
|
"ai-cli": "ai-cli";
|
|
10249
10378
|
}>;
|
|
10250
10379
|
effect: z.ZodEnum<{
|
|
10251
|
-
effect: "effect";
|
|
10252
10380
|
none: "none";
|
|
10381
|
+
effect: "effect";
|
|
10253
10382
|
"effect-full": "effect-full";
|
|
10254
10383
|
}>;
|
|
10255
10384
|
stateManagement: z.ZodEnum<{
|
|
@@ -10384,8 +10513,8 @@ declare function getAllJsonSchemas(): {
|
|
|
10384
10513
|
"geist-mono": "geist-mono";
|
|
10385
10514
|
}>>;
|
|
10386
10515
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
10387
|
-
default: "default";
|
|
10388
10516
|
none: "none";
|
|
10517
|
+
default: "default";
|
|
10389
10518
|
small: "small";
|
|
10390
10519
|
medium: "medium";
|
|
10391
10520
|
large: "large";
|
|
@@ -10440,6 +10569,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10440
10569
|
observability: z.ZodEnum<{
|
|
10441
10570
|
none: "none";
|
|
10442
10571
|
opentelemetry: "opentelemetry";
|
|
10572
|
+
signoz: "signoz";
|
|
10443
10573
|
sentry: "sentry";
|
|
10444
10574
|
grafana: "grafana";
|
|
10445
10575
|
datadog: "datadog";
|
|
@@ -10454,6 +10584,14 @@ declare function getAllJsonSchemas(): {
|
|
|
10454
10584
|
flagsmith: "flagsmith";
|
|
10455
10585
|
unleash: "unleash";
|
|
10456
10586
|
}>;
|
|
10587
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
10588
|
+
none: "none";
|
|
10589
|
+
nango: "nango";
|
|
10590
|
+
}>>;
|
|
10591
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
10592
|
+
none: "none";
|
|
10593
|
+
medusa: "medusa";
|
|
10594
|
+
}>>;
|
|
10457
10595
|
analytics: z.ZodEnum<{
|
|
10458
10596
|
none: "none";
|
|
10459
10597
|
posthog: "posthog";
|
|
@@ -10518,9 +10656,9 @@ declare function getAllJsonSchemas(): {
|
|
|
10518
10656
|
}>;
|
|
10519
10657
|
mobileUI: z.ZodEnum<{
|
|
10520
10658
|
none: "none";
|
|
10659
|
+
uniwind: "uniwind";
|
|
10521
10660
|
tamagui: "tamagui";
|
|
10522
10661
|
"gluestack-ui": "gluestack-ui";
|
|
10523
|
-
uniwind: "uniwind";
|
|
10524
10662
|
unistyles: "unistyles";
|
|
10525
10663
|
}>;
|
|
10526
10664
|
mobileStorage: z.ZodEnum<{
|
|
@@ -10605,12 +10743,12 @@ declare function getAllJsonSchemas(): {
|
|
|
10605
10743
|
ratatui: "ratatui";
|
|
10606
10744
|
}>;
|
|
10607
10745
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
10608
|
-
config: "config";
|
|
10609
10746
|
none: "none";
|
|
10610
10747
|
serde: "serde";
|
|
10611
10748
|
uuid: "uuid";
|
|
10612
10749
|
chrono: "chrono";
|
|
10613
10750
|
reqwest: "reqwest";
|
|
10751
|
+
config: "config";
|
|
10614
10752
|
dashmap: "dashmap";
|
|
10615
10753
|
"parking-lot": "parking-lot";
|
|
10616
10754
|
secrecy: "secrecy";
|
|
@@ -10764,6 +10902,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10764
10902
|
pythonObservability: z.ZodEnum<{
|
|
10765
10903
|
none: "none";
|
|
10766
10904
|
opentelemetry: "opentelemetry";
|
|
10905
|
+
signoz: "signoz";
|
|
10767
10906
|
"prometheus-client": "prometheus-client";
|
|
10768
10907
|
}>;
|
|
10769
10908
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -10883,6 +11022,7 @@ declare function getAllJsonSchemas(): {
|
|
|
10883
11022
|
goObservability: z.ZodEnum<{
|
|
10884
11023
|
none: "none";
|
|
10885
11024
|
opentelemetry: "opentelemetry";
|
|
11025
|
+
signoz: "signoz";
|
|
10886
11026
|
prometheus: "prometheus";
|
|
10887
11027
|
}>;
|
|
10888
11028
|
goValidation: z.ZodEnum<{
|
|
@@ -11219,67 +11359,69 @@ declare function getAllJsonSchemas(): {
|
|
|
11219
11359
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11220
11360
|
id: z.ZodString;
|
|
11221
11361
|
role: z.ZodEnum<{
|
|
11222
|
-
|
|
11223
|
-
|
|
11224
|
-
backend: "backend";
|
|
11225
|
-
mobile: "mobile";
|
|
11362
|
+
effect: "effect";
|
|
11363
|
+
ai: "ai";
|
|
11226
11364
|
database: "database";
|
|
11227
|
-
api: "api";
|
|
11228
|
-
graphql: "graphql";
|
|
11229
11365
|
orm: "orm";
|
|
11230
11366
|
auth: "auth";
|
|
11231
|
-
|
|
11232
|
-
|
|
11367
|
+
payments: "payments";
|
|
11368
|
+
frontend: "frontend";
|
|
11369
|
+
examples: "examples";
|
|
11370
|
+
packageManager: "packageManager";
|
|
11233
11371
|
dbSetup: "dbSetup";
|
|
11234
|
-
|
|
11372
|
+
backend: "backend";
|
|
11373
|
+
runtime: "runtime";
|
|
11374
|
+
api: "api";
|
|
11375
|
+
stateManagement: "stateManagement";
|
|
11376
|
+
forms: "forms";
|
|
11377
|
+
testing: "testing";
|
|
11378
|
+
email: "email";
|
|
11379
|
+
validation: "validation";
|
|
11235
11380
|
realtime: "realtime";
|
|
11236
|
-
|
|
11237
|
-
|
|
11381
|
+
jobQueue: "jobQueue";
|
|
11382
|
+
animation: "animation";
|
|
11383
|
+
fileUpload: "fileUpload";
|
|
11384
|
+
logging: "logging";
|
|
11238
11385
|
observability: "observability";
|
|
11239
|
-
|
|
11386
|
+
featureFlags: "featureFlags";
|
|
11387
|
+
integrations: "integrations";
|
|
11388
|
+
ecommerce: "ecommerce";
|
|
11389
|
+
analytics: "analytics";
|
|
11390
|
+
cms: "cms";
|
|
11391
|
+
caching: "caching";
|
|
11392
|
+
rateLimit: "rateLimit";
|
|
11393
|
+
i18n: "i18n";
|
|
11240
11394
|
search: "search";
|
|
11241
11395
|
vectorDb: "vectorDb";
|
|
11242
11396
|
fileStorage: "fileStorage";
|
|
11243
|
-
|
|
11244
|
-
|
|
11245
|
-
|
|
11246
|
-
|
|
11247
|
-
|
|
11248
|
-
|
|
11249
|
-
fileUpload: "fileUpload";
|
|
11250
|
-
validation: "validation";
|
|
11251
|
-
effect: "effect";
|
|
11397
|
+
config: "config";
|
|
11398
|
+
mobile: "mobile";
|
|
11399
|
+
graphql: "graphql";
|
|
11400
|
+
deploy: "deploy";
|
|
11401
|
+
migrations: "migrations";
|
|
11402
|
+
navigation: "navigation";
|
|
11252
11403
|
ui: "ui";
|
|
11253
11404
|
css: "css";
|
|
11254
11405
|
storage: "storage";
|
|
11406
|
+
push: "push";
|
|
11255
11407
|
ota: "ota";
|
|
11256
11408
|
deepLinking: "deepLinking";
|
|
11257
|
-
ai: "ai";
|
|
11258
|
-
payments: "payments";
|
|
11259
|
-
logging: "logging";
|
|
11260
|
-
featureFlags: "featureFlags";
|
|
11261
|
-
analytics: "analytics";
|
|
11262
|
-
cms: "cms";
|
|
11263
|
-
i18n: "i18n";
|
|
11264
11409
|
documentation: "documentation";
|
|
11265
11410
|
codeQuality: "codeQuality";
|
|
11266
11411
|
appPlatform: "appPlatform";
|
|
11267
11412
|
dataFetching: "dataFetching";
|
|
11268
11413
|
workspaceTooling: "workspaceTooling";
|
|
11269
|
-
examples: "examples";
|
|
11270
11414
|
language: "language";
|
|
11271
11415
|
buildTool: "buildTool";
|
|
11272
11416
|
cli: "cli";
|
|
11273
11417
|
errorHandling: "errorHandling";
|
|
11274
11418
|
httpClient: "httpClient";
|
|
11275
11419
|
libraries: "libraries";
|
|
11276
|
-
config: "config";
|
|
11277
11420
|
templating: "templating";
|
|
11278
11421
|
cloudSdk: "cloudSdk";
|
|
11279
11422
|
data: "data";
|
|
11280
11423
|
media: "media";
|
|
11281
11424
|
server: "server";
|
|
11282
|
-
packageManager: "packageManager";
|
|
11283
11425
|
messageQueue: "messageQueue";
|
|
11284
11426
|
}>;
|
|
11285
11427
|
toolId: z.ZodString;
|
|
@@ -11341,13 +11483,13 @@ declare function getAllJsonSchemas(): {
|
|
|
11341
11483
|
sequelize: "sequelize";
|
|
11342
11484
|
}>;
|
|
11343
11485
|
backend: z.ZodEnum<{
|
|
11344
|
-
effect: "effect";
|
|
11345
11486
|
none: "none";
|
|
11346
11487
|
hono: "hono";
|
|
11347
11488
|
express: "express";
|
|
11348
11489
|
fastify: "fastify";
|
|
11349
11490
|
elysia: "elysia";
|
|
11350
11491
|
fets: "fets";
|
|
11492
|
+
effect: "effect";
|
|
11351
11493
|
nestjs: "nestjs";
|
|
11352
11494
|
adonisjs: "adonisjs";
|
|
11353
11495
|
nitro: "nitro";
|
|
@@ -11392,6 +11534,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11392
11534
|
biome: "biome";
|
|
11393
11535
|
lefthook: "lefthook";
|
|
11394
11536
|
husky: "husky";
|
|
11537
|
+
knip: "knip";
|
|
11538
|
+
gitleaks: "gitleaks";
|
|
11395
11539
|
ruler: "ruler";
|
|
11396
11540
|
mcp: "mcp";
|
|
11397
11541
|
skills: "skills";
|
|
@@ -11413,6 +11557,7 @@ declare function getAllJsonSchemas(): {
|
|
|
11413
11557
|
"backend-utils": "backend-utils";
|
|
11414
11558
|
devcontainer: "devcontainer";
|
|
11415
11559
|
"docker-compose": "docker-compose";
|
|
11560
|
+
kong: "kong";
|
|
11416
11561
|
"github-actions": "github-actions";
|
|
11417
11562
|
eslint: "eslint";
|
|
11418
11563
|
prettier: "prettier";
|
|
@@ -11425,8 +11570,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11425
11570
|
capacitor: "capacitor";
|
|
11426
11571
|
}>>;
|
|
11427
11572
|
examples: z.ZodArray<z.ZodEnum<{
|
|
11428
|
-
ai: "ai";
|
|
11429
11573
|
none: "none";
|
|
11574
|
+
ai: "ai";
|
|
11430
11575
|
"chat-sdk": "chat-sdk";
|
|
11431
11576
|
"tanstack-showcase": "tanstack-showcase";
|
|
11432
11577
|
}>>;
|
|
@@ -11456,6 +11601,7 @@ declare function getAllJsonSchemas(): {
|
|
|
11456
11601
|
creem: "creem";
|
|
11457
11602
|
autumn: "autumn";
|
|
11458
11603
|
commet: "commet";
|
|
11604
|
+
xendit: "xendit";
|
|
11459
11605
|
}>;
|
|
11460
11606
|
packageManager: z.ZodEnum<{
|
|
11461
11607
|
bun: "bun";
|
|
@@ -11540,8 +11686,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11540
11686
|
"ai-cli": "ai-cli";
|
|
11541
11687
|
}>;
|
|
11542
11688
|
effect: z.ZodEnum<{
|
|
11543
|
-
effect: "effect";
|
|
11544
11689
|
none: "none";
|
|
11690
|
+
effect: "effect";
|
|
11545
11691
|
"effect-full": "effect-full";
|
|
11546
11692
|
}>;
|
|
11547
11693
|
stateManagement: z.ZodEnum<{
|
|
@@ -11676,8 +11822,8 @@ declare function getAllJsonSchemas(): {
|
|
|
11676
11822
|
"geist-mono": "geist-mono";
|
|
11677
11823
|
}>>;
|
|
11678
11824
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
11679
|
-
default: "default";
|
|
11680
11825
|
none: "none";
|
|
11826
|
+
default: "default";
|
|
11681
11827
|
small: "small";
|
|
11682
11828
|
medium: "medium";
|
|
11683
11829
|
large: "large";
|
|
@@ -11732,6 +11878,7 @@ declare function getAllJsonSchemas(): {
|
|
|
11732
11878
|
observability: z.ZodEnum<{
|
|
11733
11879
|
none: "none";
|
|
11734
11880
|
opentelemetry: "opentelemetry";
|
|
11881
|
+
signoz: "signoz";
|
|
11735
11882
|
sentry: "sentry";
|
|
11736
11883
|
grafana: "grafana";
|
|
11737
11884
|
datadog: "datadog";
|
|
@@ -11746,6 +11893,14 @@ declare function getAllJsonSchemas(): {
|
|
|
11746
11893
|
flagsmith: "flagsmith";
|
|
11747
11894
|
unleash: "unleash";
|
|
11748
11895
|
}>;
|
|
11896
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
11897
|
+
none: "none";
|
|
11898
|
+
nango: "nango";
|
|
11899
|
+
}>>;
|
|
11900
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
11901
|
+
none: "none";
|
|
11902
|
+
medusa: "medusa";
|
|
11903
|
+
}>>;
|
|
11749
11904
|
analytics: z.ZodEnum<{
|
|
11750
11905
|
none: "none";
|
|
11751
11906
|
posthog: "posthog";
|
|
@@ -11810,9 +11965,9 @@ declare function getAllJsonSchemas(): {
|
|
|
11810
11965
|
}>;
|
|
11811
11966
|
mobileUI: z.ZodEnum<{
|
|
11812
11967
|
none: "none";
|
|
11968
|
+
uniwind: "uniwind";
|
|
11813
11969
|
tamagui: "tamagui";
|
|
11814
11970
|
"gluestack-ui": "gluestack-ui";
|
|
11815
|
-
uniwind: "uniwind";
|
|
11816
11971
|
unistyles: "unistyles";
|
|
11817
11972
|
}>;
|
|
11818
11973
|
mobileStorage: z.ZodEnum<{
|
|
@@ -11897,12 +12052,12 @@ declare function getAllJsonSchemas(): {
|
|
|
11897
12052
|
ratatui: "ratatui";
|
|
11898
12053
|
}>;
|
|
11899
12054
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
11900
|
-
config: "config";
|
|
11901
12055
|
none: "none";
|
|
11902
12056
|
serde: "serde";
|
|
11903
12057
|
uuid: "uuid";
|
|
11904
12058
|
chrono: "chrono";
|
|
11905
12059
|
reqwest: "reqwest";
|
|
12060
|
+
config: "config";
|
|
11906
12061
|
dashmap: "dashmap";
|
|
11907
12062
|
"parking-lot": "parking-lot";
|
|
11908
12063
|
secrecy: "secrecy";
|
|
@@ -12056,6 +12211,7 @@ declare function getAllJsonSchemas(): {
|
|
|
12056
12211
|
pythonObservability: z.ZodEnum<{
|
|
12057
12212
|
none: "none";
|
|
12058
12213
|
opentelemetry: "opentelemetry";
|
|
12214
|
+
signoz: "signoz";
|
|
12059
12215
|
"prometheus-client": "prometheus-client";
|
|
12060
12216
|
}>;
|
|
12061
12217
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -12175,6 +12331,7 @@ declare function getAllJsonSchemas(): {
|
|
|
12175
12331
|
goObservability: z.ZodEnum<{
|
|
12176
12332
|
none: "none";
|
|
12177
12333
|
opentelemetry: "opentelemetry";
|
|
12334
|
+
signoz: "signoz";
|
|
12178
12335
|
prometheus: "prometheus";
|
|
12179
12336
|
}>;
|
|
12180
12337
|
goValidation: z.ZodEnum<{
|
|
@@ -12511,67 +12668,69 @@ declare function getAllJsonSchemas(): {
|
|
|
12511
12668
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12512
12669
|
id: z.ZodString;
|
|
12513
12670
|
role: z.ZodEnum<{
|
|
12514
|
-
|
|
12515
|
-
|
|
12516
|
-
backend: "backend";
|
|
12517
|
-
mobile: "mobile";
|
|
12671
|
+
effect: "effect";
|
|
12672
|
+
ai: "ai";
|
|
12518
12673
|
database: "database";
|
|
12519
|
-
api: "api";
|
|
12520
|
-
graphql: "graphql";
|
|
12521
12674
|
orm: "orm";
|
|
12522
12675
|
auth: "auth";
|
|
12523
|
-
|
|
12524
|
-
|
|
12676
|
+
payments: "payments";
|
|
12677
|
+
frontend: "frontend";
|
|
12678
|
+
examples: "examples";
|
|
12679
|
+
packageManager: "packageManager";
|
|
12525
12680
|
dbSetup: "dbSetup";
|
|
12526
|
-
|
|
12681
|
+
backend: "backend";
|
|
12682
|
+
runtime: "runtime";
|
|
12683
|
+
api: "api";
|
|
12684
|
+
stateManagement: "stateManagement";
|
|
12685
|
+
forms: "forms";
|
|
12686
|
+
testing: "testing";
|
|
12687
|
+
email: "email";
|
|
12688
|
+
validation: "validation";
|
|
12527
12689
|
realtime: "realtime";
|
|
12528
|
-
|
|
12529
|
-
|
|
12690
|
+
jobQueue: "jobQueue";
|
|
12691
|
+
animation: "animation";
|
|
12692
|
+
fileUpload: "fileUpload";
|
|
12693
|
+
logging: "logging";
|
|
12530
12694
|
observability: "observability";
|
|
12531
|
-
|
|
12695
|
+
featureFlags: "featureFlags";
|
|
12696
|
+
integrations: "integrations";
|
|
12697
|
+
ecommerce: "ecommerce";
|
|
12698
|
+
analytics: "analytics";
|
|
12699
|
+
cms: "cms";
|
|
12700
|
+
caching: "caching";
|
|
12701
|
+
rateLimit: "rateLimit";
|
|
12702
|
+
i18n: "i18n";
|
|
12532
12703
|
search: "search";
|
|
12533
12704
|
vectorDb: "vectorDb";
|
|
12534
12705
|
fileStorage: "fileStorage";
|
|
12535
|
-
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12539
|
-
|
|
12540
|
-
|
|
12541
|
-
fileUpload: "fileUpload";
|
|
12542
|
-
validation: "validation";
|
|
12543
|
-
effect: "effect";
|
|
12706
|
+
config: "config";
|
|
12707
|
+
mobile: "mobile";
|
|
12708
|
+
graphql: "graphql";
|
|
12709
|
+
deploy: "deploy";
|
|
12710
|
+
migrations: "migrations";
|
|
12711
|
+
navigation: "navigation";
|
|
12544
12712
|
ui: "ui";
|
|
12545
12713
|
css: "css";
|
|
12546
12714
|
storage: "storage";
|
|
12715
|
+
push: "push";
|
|
12547
12716
|
ota: "ota";
|
|
12548
12717
|
deepLinking: "deepLinking";
|
|
12549
|
-
ai: "ai";
|
|
12550
|
-
payments: "payments";
|
|
12551
|
-
logging: "logging";
|
|
12552
|
-
featureFlags: "featureFlags";
|
|
12553
|
-
analytics: "analytics";
|
|
12554
|
-
cms: "cms";
|
|
12555
|
-
i18n: "i18n";
|
|
12556
12718
|
documentation: "documentation";
|
|
12557
12719
|
codeQuality: "codeQuality";
|
|
12558
12720
|
appPlatform: "appPlatform";
|
|
12559
12721
|
dataFetching: "dataFetching";
|
|
12560
12722
|
workspaceTooling: "workspaceTooling";
|
|
12561
|
-
examples: "examples";
|
|
12562
12723
|
language: "language";
|
|
12563
12724
|
buildTool: "buildTool";
|
|
12564
12725
|
cli: "cli";
|
|
12565
12726
|
errorHandling: "errorHandling";
|
|
12566
12727
|
httpClient: "httpClient";
|
|
12567
12728
|
libraries: "libraries";
|
|
12568
|
-
config: "config";
|
|
12569
12729
|
templating: "templating";
|
|
12570
12730
|
cloudSdk: "cloudSdk";
|
|
12571
12731
|
data: "data";
|
|
12572
12732
|
media: "media";
|
|
12573
12733
|
server: "server";
|
|
12574
|
-
packageManager: "packageManager";
|
|
12575
12734
|
messageQueue: "messageQueue";
|
|
12576
12735
|
}>;
|
|
12577
12736
|
toolId: z.ZodString;
|
|
@@ -12634,13 +12793,13 @@ declare function getAllJsonSchemas(): {
|
|
|
12634
12793
|
sequelize: "sequelize";
|
|
12635
12794
|
}>;
|
|
12636
12795
|
backend: z.ZodEnum<{
|
|
12637
|
-
effect: "effect";
|
|
12638
12796
|
none: "none";
|
|
12639
12797
|
hono: "hono";
|
|
12640
12798
|
express: "express";
|
|
12641
12799
|
fastify: "fastify";
|
|
12642
12800
|
elysia: "elysia";
|
|
12643
12801
|
fets: "fets";
|
|
12802
|
+
effect: "effect";
|
|
12644
12803
|
nestjs: "nestjs";
|
|
12645
12804
|
adonisjs: "adonisjs";
|
|
12646
12805
|
nitro: "nitro";
|
|
@@ -12685,6 +12844,8 @@ declare function getAllJsonSchemas(): {
|
|
|
12685
12844
|
biome: "biome";
|
|
12686
12845
|
lefthook: "lefthook";
|
|
12687
12846
|
husky: "husky";
|
|
12847
|
+
knip: "knip";
|
|
12848
|
+
gitleaks: "gitleaks";
|
|
12688
12849
|
ruler: "ruler";
|
|
12689
12850
|
mcp: "mcp";
|
|
12690
12851
|
skills: "skills";
|
|
@@ -12706,6 +12867,7 @@ declare function getAllJsonSchemas(): {
|
|
|
12706
12867
|
"backend-utils": "backend-utils";
|
|
12707
12868
|
devcontainer: "devcontainer";
|
|
12708
12869
|
"docker-compose": "docker-compose";
|
|
12870
|
+
kong: "kong";
|
|
12709
12871
|
"github-actions": "github-actions";
|
|
12710
12872
|
eslint: "eslint";
|
|
12711
12873
|
prettier: "prettier";
|
|
@@ -12718,8 +12880,8 @@ declare function getAllJsonSchemas(): {
|
|
|
12718
12880
|
capacitor: "capacitor";
|
|
12719
12881
|
}>>;
|
|
12720
12882
|
examples: z.ZodArray<z.ZodEnum<{
|
|
12721
|
-
ai: "ai";
|
|
12722
12883
|
none: "none";
|
|
12884
|
+
ai: "ai";
|
|
12723
12885
|
"chat-sdk": "chat-sdk";
|
|
12724
12886
|
"tanstack-showcase": "tanstack-showcase";
|
|
12725
12887
|
}>>;
|
|
@@ -12749,6 +12911,7 @@ declare function getAllJsonSchemas(): {
|
|
|
12749
12911
|
creem: "creem";
|
|
12750
12912
|
autumn: "autumn";
|
|
12751
12913
|
commet: "commet";
|
|
12914
|
+
xendit: "xendit";
|
|
12752
12915
|
}>;
|
|
12753
12916
|
git: z.ZodBoolean;
|
|
12754
12917
|
packageManager: z.ZodEnum<{
|
|
@@ -12835,8 +12998,8 @@ declare function getAllJsonSchemas(): {
|
|
|
12835
12998
|
"ai-cli": "ai-cli";
|
|
12836
12999
|
}>;
|
|
12837
13000
|
effect: z.ZodEnum<{
|
|
12838
|
-
effect: "effect";
|
|
12839
13001
|
none: "none";
|
|
13002
|
+
effect: "effect";
|
|
12840
13003
|
"effect-full": "effect-full";
|
|
12841
13004
|
}>;
|
|
12842
13005
|
stateManagement: z.ZodEnum<{
|
|
@@ -12971,8 +13134,8 @@ declare function getAllJsonSchemas(): {
|
|
|
12971
13134
|
"geist-mono": "geist-mono";
|
|
12972
13135
|
}>>;
|
|
12973
13136
|
shadcnRadius: z.ZodOptional<z.ZodEnum<{
|
|
12974
|
-
default: "default";
|
|
12975
13137
|
none: "none";
|
|
13138
|
+
default: "default";
|
|
12976
13139
|
small: "small";
|
|
12977
13140
|
medium: "medium";
|
|
12978
13141
|
large: "large";
|
|
@@ -13027,6 +13190,7 @@ declare function getAllJsonSchemas(): {
|
|
|
13027
13190
|
observability: z.ZodEnum<{
|
|
13028
13191
|
none: "none";
|
|
13029
13192
|
opentelemetry: "opentelemetry";
|
|
13193
|
+
signoz: "signoz";
|
|
13030
13194
|
sentry: "sentry";
|
|
13031
13195
|
grafana: "grafana";
|
|
13032
13196
|
datadog: "datadog";
|
|
@@ -13041,6 +13205,14 @@ declare function getAllJsonSchemas(): {
|
|
|
13041
13205
|
flagsmith: "flagsmith";
|
|
13042
13206
|
unleash: "unleash";
|
|
13043
13207
|
}>;
|
|
13208
|
+
integrations: z.ZodDefault<z.ZodEnum<{
|
|
13209
|
+
none: "none";
|
|
13210
|
+
nango: "nango";
|
|
13211
|
+
}>>;
|
|
13212
|
+
ecommerce: z.ZodDefault<z.ZodEnum<{
|
|
13213
|
+
none: "none";
|
|
13214
|
+
medusa: "medusa";
|
|
13215
|
+
}>>;
|
|
13044
13216
|
analytics: z.ZodEnum<{
|
|
13045
13217
|
none: "none";
|
|
13046
13218
|
posthog: "posthog";
|
|
@@ -13105,9 +13277,9 @@ declare function getAllJsonSchemas(): {
|
|
|
13105
13277
|
}>;
|
|
13106
13278
|
mobileUI: z.ZodEnum<{
|
|
13107
13279
|
none: "none";
|
|
13280
|
+
uniwind: "uniwind";
|
|
13108
13281
|
tamagui: "tamagui";
|
|
13109
13282
|
"gluestack-ui": "gluestack-ui";
|
|
13110
|
-
uniwind: "uniwind";
|
|
13111
13283
|
unistyles: "unistyles";
|
|
13112
13284
|
}>;
|
|
13113
13285
|
mobileStorage: z.ZodEnum<{
|
|
@@ -13192,12 +13364,12 @@ declare function getAllJsonSchemas(): {
|
|
|
13192
13364
|
ratatui: "ratatui";
|
|
13193
13365
|
}>;
|
|
13194
13366
|
rustLibraries: z.ZodArray<z.ZodEnum<{
|
|
13195
|
-
config: "config";
|
|
13196
13367
|
none: "none";
|
|
13197
13368
|
serde: "serde";
|
|
13198
13369
|
uuid: "uuid";
|
|
13199
13370
|
chrono: "chrono";
|
|
13200
13371
|
reqwest: "reqwest";
|
|
13372
|
+
config: "config";
|
|
13201
13373
|
dashmap: "dashmap";
|
|
13202
13374
|
"parking-lot": "parking-lot";
|
|
13203
13375
|
secrecy: "secrecy";
|
|
@@ -13351,6 +13523,7 @@ declare function getAllJsonSchemas(): {
|
|
|
13351
13523
|
pythonObservability: z.ZodEnum<{
|
|
13352
13524
|
none: "none";
|
|
13353
13525
|
opentelemetry: "opentelemetry";
|
|
13526
|
+
signoz: "signoz";
|
|
13354
13527
|
"prometheus-client": "prometheus-client";
|
|
13355
13528
|
}>;
|
|
13356
13529
|
pythonCli: z.ZodArray<z.ZodEnum<{
|
|
@@ -13470,6 +13643,7 @@ declare function getAllJsonSchemas(): {
|
|
|
13470
13643
|
goObservability: z.ZodEnum<{
|
|
13471
13644
|
none: "none";
|
|
13472
13645
|
opentelemetry: "opentelemetry";
|
|
13646
|
+
signoz: "signoz";
|
|
13473
13647
|
prometheus: "prometheus";
|
|
13474
13648
|
}>;
|
|
13475
13649
|
goValidation: z.ZodEnum<{
|
|
@@ -13806,67 +13980,69 @@ declare function getAllJsonSchemas(): {
|
|
|
13806
13980
|
stackParts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13807
13981
|
id: z.ZodString;
|
|
13808
13982
|
role: z.ZodEnum<{
|
|
13809
|
-
|
|
13810
|
-
|
|
13811
|
-
backend: "backend";
|
|
13812
|
-
mobile: "mobile";
|
|
13983
|
+
effect: "effect";
|
|
13984
|
+
ai: "ai";
|
|
13813
13985
|
database: "database";
|
|
13814
|
-
api: "api";
|
|
13815
|
-
graphql: "graphql";
|
|
13816
13986
|
orm: "orm";
|
|
13817
13987
|
auth: "auth";
|
|
13818
|
-
|
|
13819
|
-
|
|
13988
|
+
payments: "payments";
|
|
13989
|
+
frontend: "frontend";
|
|
13990
|
+
examples: "examples";
|
|
13991
|
+
packageManager: "packageManager";
|
|
13820
13992
|
dbSetup: "dbSetup";
|
|
13821
|
-
|
|
13993
|
+
backend: "backend";
|
|
13994
|
+
runtime: "runtime";
|
|
13995
|
+
api: "api";
|
|
13996
|
+
stateManagement: "stateManagement";
|
|
13997
|
+
forms: "forms";
|
|
13998
|
+
testing: "testing";
|
|
13999
|
+
email: "email";
|
|
14000
|
+
validation: "validation";
|
|
13822
14001
|
realtime: "realtime";
|
|
13823
|
-
|
|
13824
|
-
|
|
14002
|
+
jobQueue: "jobQueue";
|
|
14003
|
+
animation: "animation";
|
|
14004
|
+
fileUpload: "fileUpload";
|
|
14005
|
+
logging: "logging";
|
|
13825
14006
|
observability: "observability";
|
|
13826
|
-
|
|
14007
|
+
featureFlags: "featureFlags";
|
|
14008
|
+
integrations: "integrations";
|
|
14009
|
+
ecommerce: "ecommerce";
|
|
14010
|
+
analytics: "analytics";
|
|
14011
|
+
cms: "cms";
|
|
14012
|
+
caching: "caching";
|
|
14013
|
+
rateLimit: "rateLimit";
|
|
14014
|
+
i18n: "i18n";
|
|
13827
14015
|
search: "search";
|
|
13828
14016
|
vectorDb: "vectorDb";
|
|
13829
14017
|
fileStorage: "fileStorage";
|
|
13830
|
-
|
|
13831
|
-
|
|
13832
|
-
|
|
13833
|
-
|
|
13834
|
-
|
|
13835
|
-
|
|
13836
|
-
fileUpload: "fileUpload";
|
|
13837
|
-
validation: "validation";
|
|
13838
|
-
effect: "effect";
|
|
14018
|
+
config: "config";
|
|
14019
|
+
mobile: "mobile";
|
|
14020
|
+
graphql: "graphql";
|
|
14021
|
+
deploy: "deploy";
|
|
14022
|
+
migrations: "migrations";
|
|
14023
|
+
navigation: "navigation";
|
|
13839
14024
|
ui: "ui";
|
|
13840
14025
|
css: "css";
|
|
13841
14026
|
storage: "storage";
|
|
14027
|
+
push: "push";
|
|
13842
14028
|
ota: "ota";
|
|
13843
14029
|
deepLinking: "deepLinking";
|
|
13844
|
-
ai: "ai";
|
|
13845
|
-
payments: "payments";
|
|
13846
|
-
logging: "logging";
|
|
13847
|
-
featureFlags: "featureFlags";
|
|
13848
|
-
analytics: "analytics";
|
|
13849
|
-
cms: "cms";
|
|
13850
|
-
i18n: "i18n";
|
|
13851
14030
|
documentation: "documentation";
|
|
13852
14031
|
codeQuality: "codeQuality";
|
|
13853
14032
|
appPlatform: "appPlatform";
|
|
13854
14033
|
dataFetching: "dataFetching";
|
|
13855
14034
|
workspaceTooling: "workspaceTooling";
|
|
13856
|
-
examples: "examples";
|
|
13857
14035
|
language: "language";
|
|
13858
14036
|
buildTool: "buildTool";
|
|
13859
14037
|
cli: "cli";
|
|
13860
14038
|
errorHandling: "errorHandling";
|
|
13861
14039
|
httpClient: "httpClient";
|
|
13862
14040
|
libraries: "libraries";
|
|
13863
|
-
config: "config";
|
|
13864
14041
|
templating: "templating";
|
|
13865
14042
|
cloudSdk: "cloudSdk";
|
|
13866
14043
|
data: "data";
|
|
13867
14044
|
media: "media";
|
|
13868
14045
|
server: "server";
|
|
13869
|
-
packageManager: "packageManager";
|
|
13870
14046
|
messageQueue: "messageQueue";
|
|
13871
14047
|
}>;
|
|
13872
14048
|
toolId: z.ZodString;
|