@better-fullstack/types 2.3.0 → 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.
Files changed (44) hide show
  1. package/LICENSE +22 -0
  2. package/dist/{defaults-Cl16mM84.mjs → defaults-BzWJP6p0.mjs} +3 -1
  3. package/dist/defaults-BzWJP6p0.mjs.map +1 -0
  4. package/dist/{defaults-BT-WhLPX.d.mts → defaults-DdEGPWbd.d.mts} +2 -2
  5. package/dist/defaults-DdEGPWbd.d.mts.map +1 -0
  6. package/dist/defaults.d.mts +3 -3
  7. package/dist/defaults.mjs +1 -1
  8. package/dist/index.d.mts +6 -6
  9. package/dist/index.d.mts.map +1 -1
  10. package/dist/index.mjs +23 -5
  11. package/dist/index.mjs.map +1 -1
  12. package/dist/json-schema.d.mts +176 -0
  13. package/dist/json-schema.d.mts.map +1 -1
  14. package/dist/json-schema.mjs +1 -1
  15. package/dist/{schemas-q5-QVYJy.d.mts → schemas-BMTIauzB.d.mts} +175 -7
  16. package/dist/schemas-BMTIauzB.d.mts.map +1 -0
  17. package/dist/{schemas-CprYz5Sh.mjs → schemas-CNrFm0ld.mjs} +21 -2
  18. package/dist/schemas-CNrFm0ld.mjs.map +1 -0
  19. package/dist/schemas.d.mts +2 -2
  20. package/dist/schemas.mjs +2 -2
  21. package/dist/{stack-graph-DiLi3WuL.mjs → stack-graph-BqmxkJKS.mjs} +110 -9
  22. package/dist/stack-graph-BqmxkJKS.mjs.map +1 -0
  23. package/dist/{stack-graph-CgFYIeir.d.mts → stack-graph-DWpdF4s0.d.mts} +2 -2
  24. package/dist/{stack-graph-CgFYIeir.d.mts.map → stack-graph-DWpdF4s0.d.mts.map} +1 -1
  25. package/dist/stack-graph.d.mts +3 -3
  26. package/dist/stack-graph.mjs +2 -2
  27. package/dist/{stack-translation-Ay-_1mNB.mjs → stack-translation-CIt0ziI4.mjs} +234 -9
  28. package/dist/stack-translation-CIt0ziI4.mjs.map +1 -0
  29. package/dist/{stack-translation-CU1kpqq3.d.mts → stack-translation-DyfJJgeD.d.mts} +18 -7
  30. package/dist/stack-translation-DyfJJgeD.d.mts.map +1 -0
  31. package/dist/stack-translation.d.mts +4 -4
  32. package/dist/stack-translation.mjs +3 -3
  33. package/dist/{types-Cp7krSdb.d.mts → types-BUQyhJDc.d.mts} +5 -3
  34. package/dist/types-BUQyhJDc.d.mts.map +1 -0
  35. package/dist/types.d.mts +3 -3
  36. package/package.json +3 -2
  37. package/dist/defaults-BT-WhLPX.d.mts.map +0 -1
  38. package/dist/defaults-Cl16mM84.mjs.map +0 -1
  39. package/dist/schemas-CprYz5Sh.mjs.map +0 -1
  40. package/dist/schemas-q5-QVYJy.d.mts.map +0 -1
  41. package/dist/stack-graph-DiLi3WuL.mjs.map +0 -1
  42. package/dist/stack-translation-Ay-_1mNB.mjs.map +0 -1
  43. package/dist/stack-translation-CU1kpqq3.d.mts.map +0 -1
  44. package/dist/types-Cp7krSdb.d.mts.map +0 -1
@@ -47,6 +47,8 @@ declare const StackPartRoleSchema: z.ZodEnum<{
47
47
  logging: "logging";
48
48
  observability: "observability";
49
49
  featureFlags: "featureFlags";
50
+ integrations: "integrations";
51
+ ecommerce: "ecommerce";
50
52
  analytics: "analytics";
51
53
  cms: "cms";
52
54
  caching: "caching";
@@ -120,6 +122,8 @@ declare const StackPartSchema: z.ZodObject<{
120
122
  logging: "logging";
121
123
  observability: "observability";
122
124
  featureFlags: "featureFlags";
125
+ integrations: "integrations";
126
+ ecommerce: "ecommerce";
123
127
  analytics: "analytics";
124
128
  cms: "cms";
125
129
  caching: "caching";
@@ -259,6 +263,8 @@ declare const AddonsSchema: z.ZodEnum<{
259
263
  biome: "biome";
260
264
  lefthook: "lefthook";
261
265
  husky: "husky";
266
+ knip: "knip";
267
+ gitleaks: "gitleaks";
262
268
  ruler: "ruler";
263
269
  mcp: "mcp";
264
270
  skills: "skills";
@@ -280,6 +286,7 @@ declare const AddonsSchema: z.ZodEnum<{
280
286
  "backend-utils": "backend-utils";
281
287
  devcontainer: "devcontainer";
282
288
  "docker-compose": "docker-compose";
289
+ kong: "kong";
283
290
  "github-actions": "github-actions";
284
291
  eslint: "eslint";
285
292
  prettier: "prettier";
@@ -367,6 +374,7 @@ declare const PaymentsSchema: z.ZodEnum<{
367
374
  creem: "creem";
368
375
  autumn: "autumn";
369
376
  commet: "commet";
377
+ xendit: "xendit";
370
378
  }>;
371
379
  declare const WebDeploySchema: z.ZodEnum<{
372
380
  none: "none";
@@ -552,6 +560,7 @@ declare const LoggingSchema: z.ZodEnum<{
552
560
  declare const ObservabilitySchema: z.ZodEnum<{
553
561
  none: "none";
554
562
  opentelemetry: "opentelemetry";
563
+ signoz: "signoz";
555
564
  sentry: "sentry";
556
565
  grafana: "grafana";
557
566
  datadog: "datadog";
@@ -566,6 +575,14 @@ declare const FeatureFlagsSchema: z.ZodEnum<{
566
575
  flagsmith: "flagsmith";
567
576
  unleash: "unleash";
568
577
  }>;
578
+ declare const IntegrationsSchema: z.ZodEnum<{
579
+ none: "none";
580
+ nango: "nango";
581
+ }>;
582
+ declare const EcommerceSchema: z.ZodEnum<{
583
+ none: "none";
584
+ medusa: "medusa";
585
+ }>;
569
586
  declare const AnalyticsSchema: z.ZodEnum<{
570
587
  none: "none";
571
588
  posthog: "posthog";
@@ -826,6 +843,7 @@ declare const PythonRealtimeSchema: z.ZodEnum<{
826
843
  declare const PythonObservabilitySchema: z.ZodEnum<{
827
844
  none: "none";
828
845
  opentelemetry: "opentelemetry";
846
+ signoz: "signoz";
829
847
  "prometheus-client": "prometheus-client";
830
848
  }>;
831
849
  declare const PythonCliSchema: z.ZodEnum<{
@@ -945,6 +963,7 @@ declare const GoConfigSchema: z.ZodEnum<{
945
963
  declare const GoObservabilitySchema: z.ZodEnum<{
946
964
  none: "none";
947
965
  opentelemetry: "opentelemetry";
966
+ signoz: "signoz";
948
967
  prometheus: "prometheus";
949
968
  }>;
950
969
  declare const GoValidationSchema: z.ZodEnum<{
@@ -1460,6 +1479,7 @@ declare const CreateInputSchema: z.ZodObject<{
1460
1479
  creem: "creem";
1461
1480
  autumn: "autumn";
1462
1481
  commet: "commet";
1482
+ xendit: "xendit";
1463
1483
  }>>;
1464
1484
  frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1465
1485
  none: "none";
@@ -1492,6 +1512,8 @@ declare const CreateInputSchema: z.ZodObject<{
1492
1512
  biome: "biome";
1493
1513
  lefthook: "lefthook";
1494
1514
  husky: "husky";
1515
+ knip: "knip";
1516
+ gitleaks: "gitleaks";
1495
1517
  ruler: "ruler";
1496
1518
  mcp: "mcp";
1497
1519
  skills: "skills";
@@ -1513,6 +1535,7 @@ declare const CreateInputSchema: z.ZodObject<{
1513
1535
  "backend-utils": "backend-utils";
1514
1536
  devcontainer: "devcontainer";
1515
1537
  "docker-compose": "docker-compose";
1538
+ kong: "kong";
1516
1539
  "github-actions": "github-actions";
1517
1540
  eslint: "eslint";
1518
1541
  prettier: "prettier";
@@ -1837,6 +1860,7 @@ declare const CreateInputSchema: z.ZodObject<{
1837
1860
  observability: z.ZodOptional<z.ZodEnum<{
1838
1861
  none: "none";
1839
1862
  opentelemetry: "opentelemetry";
1863
+ signoz: "signoz";
1840
1864
  sentry: "sentry";
1841
1865
  grafana: "grafana";
1842
1866
  datadog: "datadog";
@@ -1851,6 +1875,14 @@ declare const CreateInputSchema: z.ZodObject<{
1851
1875
  flagsmith: "flagsmith";
1852
1876
  unleash: "unleash";
1853
1877
  }>>;
1878
+ integrations: z.ZodOptional<z.ZodEnum<{
1879
+ none: "none";
1880
+ nango: "nango";
1881
+ }>>;
1882
+ ecommerce: z.ZodOptional<z.ZodEnum<{
1883
+ none: "none";
1884
+ medusa: "medusa";
1885
+ }>>;
1854
1886
  analytics: z.ZodOptional<z.ZodEnum<{
1855
1887
  none: "none";
1856
1888
  posthog: "posthog";
@@ -2161,6 +2193,7 @@ declare const CreateInputSchema: z.ZodObject<{
2161
2193
  pythonObservability: z.ZodOptional<z.ZodEnum<{
2162
2194
  none: "none";
2163
2195
  opentelemetry: "opentelemetry";
2196
+ signoz: "signoz";
2164
2197
  "prometheus-client": "prometheus-client";
2165
2198
  }>>;
2166
2199
  pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -2280,6 +2313,7 @@ declare const CreateInputSchema: z.ZodObject<{
2280
2313
  goObservability: z.ZodOptional<z.ZodEnum<{
2281
2314
  none: "none";
2282
2315
  opentelemetry: "opentelemetry";
2316
+ signoz: "signoz";
2283
2317
  prometheus: "prometheus";
2284
2318
  }>>;
2285
2319
  goValidation: z.ZodOptional<z.ZodEnum<{
@@ -2693,6 +2727,7 @@ declare const AddInputSchema: z.ZodObject<{
2693
2727
  creem: "creem";
2694
2728
  autumn: "autumn";
2695
2729
  commet: "commet";
2730
+ xendit: "xendit";
2696
2731
  }>>;
2697
2732
  frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
2698
2733
  none: "none";
@@ -2725,6 +2760,8 @@ declare const AddInputSchema: z.ZodObject<{
2725
2760
  biome: "biome";
2726
2761
  lefthook: "lefthook";
2727
2762
  husky: "husky";
2763
+ knip: "knip";
2764
+ gitleaks: "gitleaks";
2728
2765
  ruler: "ruler";
2729
2766
  mcp: "mcp";
2730
2767
  skills: "skills";
@@ -2746,6 +2783,7 @@ declare const AddInputSchema: z.ZodObject<{
2746
2783
  "backend-utils": "backend-utils";
2747
2784
  devcontainer: "devcontainer";
2748
2785
  "docker-compose": "docker-compose";
2786
+ kong: "kong";
2749
2787
  "github-actions": "github-actions";
2750
2788
  eslint: "eslint";
2751
2789
  prettier: "prettier";
@@ -3039,6 +3077,7 @@ declare const AddInputSchema: z.ZodObject<{
3039
3077
  observability: z.ZodOptional<z.ZodEnum<{
3040
3078
  none: "none";
3041
3079
  opentelemetry: "opentelemetry";
3080
+ signoz: "signoz";
3042
3081
  sentry: "sentry";
3043
3082
  grafana: "grafana";
3044
3083
  datadog: "datadog";
@@ -3053,6 +3092,14 @@ declare const AddInputSchema: z.ZodObject<{
3053
3092
  flagsmith: "flagsmith";
3054
3093
  unleash: "unleash";
3055
3094
  }>>;
3095
+ integrations: z.ZodOptional<z.ZodEnum<{
3096
+ none: "none";
3097
+ nango: "nango";
3098
+ }>>;
3099
+ ecommerce: z.ZodOptional<z.ZodEnum<{
3100
+ none: "none";
3101
+ medusa: "medusa";
3102
+ }>>;
3056
3103
  analytics: z.ZodOptional<z.ZodEnum<{
3057
3104
  none: "none";
3058
3105
  posthog: "posthog";
@@ -3363,6 +3410,7 @@ declare const AddInputSchema: z.ZodObject<{
3363
3410
  pythonObservability: z.ZodOptional<z.ZodEnum<{
3364
3411
  none: "none";
3365
3412
  opentelemetry: "opentelemetry";
3413
+ signoz: "signoz";
3366
3414
  "prometheus-client": "prometheus-client";
3367
3415
  }>>;
3368
3416
  pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -3482,6 +3530,7 @@ declare const AddInputSchema: z.ZodObject<{
3482
3530
  goObservability: z.ZodOptional<z.ZodEnum<{
3483
3531
  none: "none";
3484
3532
  opentelemetry: "opentelemetry";
3533
+ signoz: "signoz";
3485
3534
  prometheus: "prometheus";
3486
3535
  }>>;
3487
3536
  goValidation: z.ZodOptional<z.ZodEnum<{
@@ -3889,6 +3938,7 @@ declare const CLIInputSchema: z.ZodObject<{
3889
3938
  creem: "creem";
3890
3939
  autumn: "autumn";
3891
3940
  commet: "commet";
3941
+ xendit: "xendit";
3892
3942
  }>>;
3893
3943
  frontend: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3894
3944
  none: "none";
@@ -3921,6 +3971,8 @@ declare const CLIInputSchema: z.ZodObject<{
3921
3971
  biome: "biome";
3922
3972
  lefthook: "lefthook";
3923
3973
  husky: "husky";
3974
+ knip: "knip";
3975
+ gitleaks: "gitleaks";
3924
3976
  ruler: "ruler";
3925
3977
  mcp: "mcp";
3926
3978
  skills: "skills";
@@ -3942,6 +3994,7 @@ declare const CLIInputSchema: z.ZodObject<{
3942
3994
  "backend-utils": "backend-utils";
3943
3995
  devcontainer: "devcontainer";
3944
3996
  "docker-compose": "docker-compose";
3997
+ kong: "kong";
3945
3998
  "github-actions": "github-actions";
3946
3999
  eslint: "eslint";
3947
4000
  prettier: "prettier";
@@ -4266,6 +4319,7 @@ declare const CLIInputSchema: z.ZodObject<{
4266
4319
  observability: z.ZodOptional<z.ZodEnum<{
4267
4320
  none: "none";
4268
4321
  opentelemetry: "opentelemetry";
4322
+ signoz: "signoz";
4269
4323
  sentry: "sentry";
4270
4324
  grafana: "grafana";
4271
4325
  datadog: "datadog";
@@ -4280,6 +4334,14 @@ declare const CLIInputSchema: z.ZodObject<{
4280
4334
  flagsmith: "flagsmith";
4281
4335
  unleash: "unleash";
4282
4336
  }>>;
4337
+ integrations: z.ZodOptional<z.ZodEnum<{
4338
+ none: "none";
4339
+ nango: "nango";
4340
+ }>>;
4341
+ ecommerce: z.ZodOptional<z.ZodEnum<{
4342
+ none: "none";
4343
+ medusa: "medusa";
4344
+ }>>;
4283
4345
  analytics: z.ZodOptional<z.ZodEnum<{
4284
4346
  none: "none";
4285
4347
  posthog: "posthog";
@@ -4590,6 +4652,7 @@ declare const CLIInputSchema: z.ZodObject<{
4590
4652
  pythonObservability: z.ZodOptional<z.ZodEnum<{
4591
4653
  none: "none";
4592
4654
  opentelemetry: "opentelemetry";
4655
+ signoz: "signoz";
4593
4656
  "prometheus-client": "prometheus-client";
4594
4657
  }>>;
4595
4658
  pythonCli: z.ZodOptional<z.ZodArray<z.ZodEnum<{
@@ -4709,6 +4772,7 @@ declare const CLIInputSchema: z.ZodObject<{
4709
4772
  goObservability: z.ZodOptional<z.ZodEnum<{
4710
4773
  none: "none";
4711
4774
  opentelemetry: "opentelemetry";
4775
+ signoz: "signoz";
4712
4776
  prometheus: "prometheus";
4713
4777
  }>>;
4714
4778
  goValidation: z.ZodOptional<z.ZodEnum<{
@@ -5130,6 +5194,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
5130
5194
  biome: "biome";
5131
5195
  lefthook: "lefthook";
5132
5196
  husky: "husky";
5197
+ knip: "knip";
5198
+ gitleaks: "gitleaks";
5133
5199
  ruler: "ruler";
5134
5200
  mcp: "mcp";
5135
5201
  skills: "skills";
@@ -5151,6 +5217,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5151
5217
  "backend-utils": "backend-utils";
5152
5218
  devcontainer: "devcontainer";
5153
5219
  "docker-compose": "docker-compose";
5220
+ kong: "kong";
5154
5221
  "github-actions": "github-actions";
5155
5222
  eslint: "eslint";
5156
5223
  prettier: "prettier";
@@ -5194,6 +5261,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5194
5261
  creem: "creem";
5195
5262
  autumn: "autumn";
5196
5263
  commet: "commet";
5264
+ xendit: "xendit";
5197
5265
  }>;
5198
5266
  git: z.ZodBoolean;
5199
5267
  packageManager: z.ZodEnum<{
@@ -5472,6 +5540,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5472
5540
  observability: z.ZodEnum<{
5473
5541
  none: "none";
5474
5542
  opentelemetry: "opentelemetry";
5543
+ signoz: "signoz";
5475
5544
  sentry: "sentry";
5476
5545
  grafana: "grafana";
5477
5546
  datadog: "datadog";
@@ -5486,6 +5555,14 @@ declare const ProjectConfigSchema: z.ZodObject<{
5486
5555
  flagsmith: "flagsmith";
5487
5556
  unleash: "unleash";
5488
5557
  }>;
5558
+ integrations: z.ZodDefault<z.ZodEnum<{
5559
+ none: "none";
5560
+ nango: "nango";
5561
+ }>>;
5562
+ ecommerce: z.ZodDefault<z.ZodEnum<{
5563
+ none: "none";
5564
+ medusa: "medusa";
5565
+ }>>;
5489
5566
  analytics: z.ZodEnum<{
5490
5567
  none: "none";
5491
5568
  posthog: "posthog";
@@ -5796,6 +5873,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5796
5873
  pythonObservability: z.ZodEnum<{
5797
5874
  none: "none";
5798
5875
  opentelemetry: "opentelemetry";
5876
+ signoz: "signoz";
5799
5877
  "prometheus-client": "prometheus-client";
5800
5878
  }>;
5801
5879
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -5915,6 +5993,7 @@ declare const ProjectConfigSchema: z.ZodObject<{
5915
5993
  goObservability: z.ZodEnum<{
5916
5994
  none: "none";
5917
5995
  opentelemetry: "opentelemetry";
5996
+ signoz: "signoz";
5918
5997
  prometheus: "prometheus";
5919
5998
  }>;
5920
5999
  goValidation: z.ZodEnum<{
@@ -6276,6 +6355,8 @@ declare const ProjectConfigSchema: z.ZodObject<{
6276
6355
  logging: "logging";
6277
6356
  observability: "observability";
6278
6357
  featureFlags: "featureFlags";
6358
+ integrations: "integrations";
6359
+ ecommerce: "ecommerce";
6279
6360
  analytics: "analytics";
6280
6361
  cms: "cms";
6281
6362
  caching: "caching";
@@ -6424,6 +6505,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6424
6505
  biome: "biome";
6425
6506
  lefthook: "lefthook";
6426
6507
  husky: "husky";
6508
+ knip: "knip";
6509
+ gitleaks: "gitleaks";
6427
6510
  ruler: "ruler";
6428
6511
  mcp: "mcp";
6429
6512
  skills: "skills";
@@ -6445,6 +6528,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6445
6528
  "backend-utils": "backend-utils";
6446
6529
  devcontainer: "devcontainer";
6447
6530
  "docker-compose": "docker-compose";
6531
+ kong: "kong";
6448
6532
  "github-actions": "github-actions";
6449
6533
  eslint: "eslint";
6450
6534
  prettier: "prettier";
@@ -6488,6 +6572,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6488
6572
  creem: "creem";
6489
6573
  autumn: "autumn";
6490
6574
  commet: "commet";
6575
+ xendit: "xendit";
6491
6576
  }>;
6492
6577
  packageManager: z.ZodEnum<{
6493
6578
  bun: "bun";
@@ -6764,6 +6849,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6764
6849
  observability: z.ZodEnum<{
6765
6850
  none: "none";
6766
6851
  opentelemetry: "opentelemetry";
6852
+ signoz: "signoz";
6767
6853
  sentry: "sentry";
6768
6854
  grafana: "grafana";
6769
6855
  datadog: "datadog";
@@ -6778,6 +6864,14 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
6778
6864
  flagsmith: "flagsmith";
6779
6865
  unleash: "unleash";
6780
6866
  }>;
6867
+ integrations: z.ZodDefault<z.ZodEnum<{
6868
+ none: "none";
6869
+ nango: "nango";
6870
+ }>>;
6871
+ ecommerce: z.ZodDefault<z.ZodEnum<{
6872
+ none: "none";
6873
+ medusa: "medusa";
6874
+ }>>;
6781
6875
  analytics: z.ZodEnum<{
6782
6876
  none: "none";
6783
6877
  posthog: "posthog";
@@ -7088,6 +7182,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7088
7182
  pythonObservability: z.ZodEnum<{
7089
7183
  none: "none";
7090
7184
  opentelemetry: "opentelemetry";
7185
+ signoz: "signoz";
7091
7186
  "prometheus-client": "prometheus-client";
7092
7187
  }>;
7093
7188
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -7207,6 +7302,7 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7207
7302
  goObservability: z.ZodEnum<{
7208
7303
  none: "none";
7209
7304
  opentelemetry: "opentelemetry";
7305
+ signoz: "signoz";
7210
7306
  prometheus: "prometheus";
7211
7307
  }>;
7212
7308
  goValidation: z.ZodEnum<{
@@ -7568,6 +7664,8 @@ declare const BetterTStackConfigSchema: z.ZodObject<{
7568
7664
  logging: "logging";
7569
7665
  observability: "observability";
7570
7666
  featureFlags: "featureFlags";
7667
+ integrations: "integrations";
7668
+ ecommerce: "ecommerce";
7571
7669
  analytics: "analytics";
7572
7670
  cms: "cms";
7573
7671
  caching: "caching";
@@ -7716,6 +7814,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
7716
7814
  biome: "biome";
7717
7815
  lefthook: "lefthook";
7718
7816
  husky: "husky";
7817
+ knip: "knip";
7818
+ gitleaks: "gitleaks";
7719
7819
  ruler: "ruler";
7720
7820
  mcp: "mcp";
7721
7821
  skills: "skills";
@@ -7737,6 +7837,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
7737
7837
  "backend-utils": "backend-utils";
7738
7838
  devcontainer: "devcontainer";
7739
7839
  "docker-compose": "docker-compose";
7840
+ kong: "kong";
7740
7841
  "github-actions": "github-actions";
7741
7842
  eslint: "eslint";
7742
7843
  prettier: "prettier";
@@ -7780,6 +7881,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
7780
7881
  creem: "creem";
7781
7882
  autumn: "autumn";
7782
7883
  commet: "commet";
7884
+ xendit: "xendit";
7783
7885
  }>;
7784
7886
  packageManager: z.ZodEnum<{
7785
7887
  bun: "bun";
@@ -8056,6 +8158,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8056
8158
  observability: z.ZodEnum<{
8057
8159
  none: "none";
8058
8160
  opentelemetry: "opentelemetry";
8161
+ signoz: "signoz";
8059
8162
  sentry: "sentry";
8060
8163
  grafana: "grafana";
8061
8164
  datadog: "datadog";
@@ -8070,6 +8173,14 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8070
8173
  flagsmith: "flagsmith";
8071
8174
  unleash: "unleash";
8072
8175
  }>;
8176
+ integrations: z.ZodDefault<z.ZodEnum<{
8177
+ none: "none";
8178
+ nango: "nango";
8179
+ }>>;
8180
+ ecommerce: z.ZodDefault<z.ZodEnum<{
8181
+ none: "none";
8182
+ medusa: "medusa";
8183
+ }>>;
8073
8184
  analytics: z.ZodEnum<{
8074
8185
  none: "none";
8075
8186
  posthog: "posthog";
@@ -8380,6 +8491,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8380
8491
  pythonObservability: z.ZodEnum<{
8381
8492
  none: "none";
8382
8493
  opentelemetry: "opentelemetry";
8494
+ signoz: "signoz";
8383
8495
  "prometheus-client": "prometheus-client";
8384
8496
  }>;
8385
8497
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -8499,6 +8611,7 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8499
8611
  goObservability: z.ZodEnum<{
8500
8612
  none: "none";
8501
8613
  opentelemetry: "opentelemetry";
8614
+ signoz: "signoz";
8502
8615
  prometheus: "prometheus";
8503
8616
  }>;
8504
8617
  goValidation: z.ZodEnum<{
@@ -8860,6 +8973,8 @@ declare const BetterFullstackConfigSchema: z.ZodObject<{
8860
8973
  logging: "logging";
8861
8974
  observability: "observability";
8862
8975
  featureFlags: "featureFlags";
8976
+ integrations: "integrations";
8977
+ ecommerce: "ecommerce";
8863
8978
  analytics: "analytics";
8864
8979
  cms: "cms";
8865
8980
  caching: "caching";
@@ -9009,6 +9124,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9009
9124
  biome: "biome";
9010
9125
  lefthook: "lefthook";
9011
9126
  husky: "husky";
9127
+ knip: "knip";
9128
+ gitleaks: "gitleaks";
9012
9129
  ruler: "ruler";
9013
9130
  mcp: "mcp";
9014
9131
  skills: "skills";
@@ -9030,6 +9147,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9030
9147
  "backend-utils": "backend-utils";
9031
9148
  devcontainer: "devcontainer";
9032
9149
  "docker-compose": "docker-compose";
9150
+ kong: "kong";
9033
9151
  "github-actions": "github-actions";
9034
9152
  eslint: "eslint";
9035
9153
  prettier: "prettier";
@@ -9073,6 +9191,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9073
9191
  creem: "creem";
9074
9192
  autumn: "autumn";
9075
9193
  commet: "commet";
9194
+ xendit: "xendit";
9076
9195
  }>;
9077
9196
  packageManager: z.ZodEnum<{
9078
9197
  bun: "bun";
@@ -9349,6 +9468,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9349
9468
  observability: z.ZodEnum<{
9350
9469
  none: "none";
9351
9470
  opentelemetry: "opentelemetry";
9471
+ signoz: "signoz";
9352
9472
  sentry: "sentry";
9353
9473
  grafana: "grafana";
9354
9474
  datadog: "datadog";
@@ -9363,6 +9483,14 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9363
9483
  flagsmith: "flagsmith";
9364
9484
  unleash: "unleash";
9365
9485
  }>;
9486
+ integrations: z.ZodDefault<z.ZodEnum<{
9487
+ none: "none";
9488
+ nango: "nango";
9489
+ }>>;
9490
+ ecommerce: z.ZodDefault<z.ZodEnum<{
9491
+ none: "none";
9492
+ medusa: "medusa";
9493
+ }>>;
9366
9494
  analytics: z.ZodEnum<{
9367
9495
  none: "none";
9368
9496
  posthog: "posthog";
@@ -9673,6 +9801,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9673
9801
  pythonObservability: z.ZodEnum<{
9674
9802
  none: "none";
9675
9803
  opentelemetry: "opentelemetry";
9804
+ signoz: "signoz";
9676
9805
  "prometheus-client": "prometheus-client";
9677
9806
  }>;
9678
9807
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -9792,6 +9921,7 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
9792
9921
  goObservability: z.ZodEnum<{
9793
9922
  none: "none";
9794
9923
  opentelemetry: "opentelemetry";
9924
+ signoz: "signoz";
9795
9925
  prometheus: "prometheus";
9796
9926
  }>;
9797
9927
  goValidation: z.ZodEnum<{
@@ -10153,6 +10283,8 @@ declare const BetterTStackConfigFileSchema: z.ZodObject<{
10153
10283
  logging: "logging";
10154
10284
  observability: "observability";
10155
10285
  featureFlags: "featureFlags";
10286
+ integrations: "integrations";
10287
+ ecommerce: "ecommerce";
10156
10288
  analytics: "analytics";
10157
10289
  cms: "cms";
10158
10290
  caching: "caching";
@@ -10302,6 +10434,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10302
10434
  biome: "biome";
10303
10435
  lefthook: "lefthook";
10304
10436
  husky: "husky";
10437
+ knip: "knip";
10438
+ gitleaks: "gitleaks";
10305
10439
  ruler: "ruler";
10306
10440
  mcp: "mcp";
10307
10441
  skills: "skills";
@@ -10323,6 +10457,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10323
10457
  "backend-utils": "backend-utils";
10324
10458
  devcontainer: "devcontainer";
10325
10459
  "docker-compose": "docker-compose";
10460
+ kong: "kong";
10326
10461
  "github-actions": "github-actions";
10327
10462
  eslint: "eslint";
10328
10463
  prettier: "prettier";
@@ -10366,6 +10501,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10366
10501
  creem: "creem";
10367
10502
  autumn: "autumn";
10368
10503
  commet: "commet";
10504
+ xendit: "xendit";
10369
10505
  }>;
10370
10506
  packageManager: z.ZodEnum<{
10371
10507
  bun: "bun";
@@ -10642,6 +10778,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10642
10778
  observability: z.ZodEnum<{
10643
10779
  none: "none";
10644
10780
  opentelemetry: "opentelemetry";
10781
+ signoz: "signoz";
10645
10782
  sentry: "sentry";
10646
10783
  grafana: "grafana";
10647
10784
  datadog: "datadog";
@@ -10656,6 +10793,14 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10656
10793
  flagsmith: "flagsmith";
10657
10794
  unleash: "unleash";
10658
10795
  }>;
10796
+ integrations: z.ZodDefault<z.ZodEnum<{
10797
+ none: "none";
10798
+ nango: "nango";
10799
+ }>>;
10800
+ ecommerce: z.ZodDefault<z.ZodEnum<{
10801
+ none: "none";
10802
+ medusa: "medusa";
10803
+ }>>;
10659
10804
  analytics: z.ZodEnum<{
10660
10805
  none: "none";
10661
10806
  posthog: "posthog";
@@ -10966,6 +11111,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
10966
11111
  pythonObservability: z.ZodEnum<{
10967
11112
  none: "none";
10968
11113
  opentelemetry: "opentelemetry";
11114
+ signoz: "signoz";
10969
11115
  "prometheus-client": "prometheus-client";
10970
11116
  }>;
10971
11117
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -11085,6 +11231,7 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11085
11231
  goObservability: z.ZodEnum<{
11086
11232
  none: "none";
11087
11233
  opentelemetry: "opentelemetry";
11234
+ signoz: "signoz";
11088
11235
  prometheus: "prometheus";
11089
11236
  }>;
11090
11237
  goValidation: z.ZodEnum<{
@@ -11446,6 +11593,8 @@ declare const BetterFullstackConfigFileSchema: z.ZodObject<{
11446
11593
  logging: "logging";
11447
11594
  observability: "observability";
11448
11595
  featureFlags: "featureFlags";
11596
+ integrations: "integrations";
11597
+ ecommerce: "ecommerce";
11449
11598
  analytics: "analytics";
11450
11599
  cms: "cms";
11451
11600
  caching: "caching";
@@ -11595,6 +11744,8 @@ declare const InitResultSchema: z.ZodObject<{
11595
11744
  biome: "biome";
11596
11745
  lefthook: "lefthook";
11597
11746
  husky: "husky";
11747
+ knip: "knip";
11748
+ gitleaks: "gitleaks";
11598
11749
  ruler: "ruler";
11599
11750
  mcp: "mcp";
11600
11751
  skills: "skills";
@@ -11616,6 +11767,7 @@ declare const InitResultSchema: z.ZodObject<{
11616
11767
  "backend-utils": "backend-utils";
11617
11768
  devcontainer: "devcontainer";
11618
11769
  "docker-compose": "docker-compose";
11770
+ kong: "kong";
11619
11771
  "github-actions": "github-actions";
11620
11772
  eslint: "eslint";
11621
11773
  prettier: "prettier";
@@ -11659,6 +11811,7 @@ declare const InitResultSchema: z.ZodObject<{
11659
11811
  creem: "creem";
11660
11812
  autumn: "autumn";
11661
11813
  commet: "commet";
11814
+ xendit: "xendit";
11662
11815
  }>;
11663
11816
  git: z.ZodBoolean;
11664
11817
  packageManager: z.ZodEnum<{
@@ -11937,6 +12090,7 @@ declare const InitResultSchema: z.ZodObject<{
11937
12090
  observability: z.ZodEnum<{
11938
12091
  none: "none";
11939
12092
  opentelemetry: "opentelemetry";
12093
+ signoz: "signoz";
11940
12094
  sentry: "sentry";
11941
12095
  grafana: "grafana";
11942
12096
  datadog: "datadog";
@@ -11951,6 +12105,14 @@ declare const InitResultSchema: z.ZodObject<{
11951
12105
  flagsmith: "flagsmith";
11952
12106
  unleash: "unleash";
11953
12107
  }>;
12108
+ integrations: z.ZodDefault<z.ZodEnum<{
12109
+ none: "none";
12110
+ nango: "nango";
12111
+ }>>;
12112
+ ecommerce: z.ZodDefault<z.ZodEnum<{
12113
+ none: "none";
12114
+ medusa: "medusa";
12115
+ }>>;
11954
12116
  analytics: z.ZodEnum<{
11955
12117
  none: "none";
11956
12118
  posthog: "posthog";
@@ -12261,6 +12423,7 @@ declare const InitResultSchema: z.ZodObject<{
12261
12423
  pythonObservability: z.ZodEnum<{
12262
12424
  none: "none";
12263
12425
  opentelemetry: "opentelemetry";
12426
+ signoz: "signoz";
12264
12427
  "prometheus-client": "prometheus-client";
12265
12428
  }>;
12266
12429
  pythonCli: z.ZodArray<z.ZodEnum<{
@@ -12380,6 +12543,7 @@ declare const InitResultSchema: z.ZodObject<{
12380
12543
  goObservability: z.ZodEnum<{
12381
12544
  none: "none";
12382
12545
  opentelemetry: "opentelemetry";
12546
+ signoz: "signoz";
12383
12547
  prometheus: "prometheus";
12384
12548
  }>;
12385
12549
  goValidation: z.ZodEnum<{
@@ -12741,6 +12905,8 @@ declare const InitResultSchema: z.ZodObject<{
12741
12905
  logging: "logging";
12742
12906
  observability: "observability";
12743
12907
  featureFlags: "featureFlags";
12908
+ integrations: "integrations";
12909
+ ecommerce: "ecommerce";
12744
12910
  analytics: "analytics";
12745
12911
  cms: "cms";
12746
12912
  caching: "caching";
@@ -12819,7 +12985,7 @@ declare const ORM_VALUES: ("none" | "drizzle" | "prisma" | "mongoose" | "typeorm
12819
12985
  declare const BACKEND_VALUES: ("none" | "hono" | "express" | "fastify" | "elysia" | "fets" | "effect" | "nestjs" | "adonisjs" | "nitro" | "encore" | "convex" | "self")[];
12820
12986
  declare const RUNTIME_VALUES: ("none" | "bun" | "node" | "workers")[];
12821
12987
  declare const FRONTEND_VALUES: ("none" | "tanstack-router" | "react-router" | "react-vite" | "vanilla-vite" | "vue" | "tanstack-start" | "next" | "vinext" | "nuxt" | "native-bare" | "native-uniwind" | "native-unistyles" | "svelte" | "solid" | "solid-start" | "astro" | "qwik" | "angular" | "redwood" | "fresh")[];
12822
- declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
12988
+ declare const ADDONS_VALUES: ("none" | "pwa" | "tauri" | "starlight" | "biome" | "lefthook" | "husky" | "knip" | "gitleaks" | "ruler" | "mcp" | "skills" | "turborepo" | "nx" | "fumadocs" | "ultracite" | "oxlint" | "opentui" | "wxt" | "msw" | "storybook" | "swr" | "tanstack-query" | "tanstack-table" | "tanstack-virtual" | "tanstack-db" | "tanstack-pacer" | "backend-utils" | "devcontainer" | "docker-compose" | "kong" | "github-actions" | "eslint" | "prettier" | "axios" | "firebase" | "graphql-codegen" | "openapi-typescript" | "apollo-client" | "electron" | "capacitor")[];
12823
12989
  declare const EXAMPLES_VALUES: ("none" | "ai" | "chat-sdk" | "tanstack-showcase")[];
12824
12990
  declare const PACKAGE_MANAGER_VALUES: ("bun" | "npm" | "pnpm" | "yarn")[];
12825
12991
  declare const WORKSPACE_SHAPE_VALUES: ("monorepo" | "single-app")[];
@@ -12827,7 +12993,7 @@ declare const VERSION_CHANNEL_VALUES: ("stable" | "latest" | "beta")[];
12827
12993
  declare const DATABASE_SETUP_VALUES: ("none" | "turso" | "neon" | "prisma-postgres" | "planetscale" | "mongodb-atlas" | "supabase" | "upstash" | "d1" | "docker")[];
12828
12994
  declare const API_VALUES: ("none" | "trpc" | "orpc" | "ts-rest" | "garph" | "graphql-yoga" | "apollo-server" | "openapi")[];
12829
12995
  declare const AUTH_VALUES: ("none" | "better-auth" | "better-auth-organizations" | "go-better-auth" | "clerk" | "nextauth" | "stack-auth" | "supabase-auth" | "auth0" | "workos" | "kinde" | "passport")[];
12830
- declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet")[];
12996
+ declare const PAYMENTS_VALUES: ("none" | "revenuecat" | "polar" | "stripe" | "lemon-squeezy" | "paddle" | "paypal" | "dodo" | "creem" | "autumn" | "commet" | "xendit")[];
12831
12997
  declare const WEB_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
12832
12998
  declare const SERVER_DEPLOY_VALUES: ("none" | "docker" | "cloudflare" | "fly" | "railway" | "render" | "netlify" | "sst" | "vercel")[];
12833
12999
  declare const DIRECTORY_CONFLICT_VALUES: ("merge" | "overwrite" | "increment" | "error")[];
@@ -12847,8 +13013,10 @@ declare const JOB_QUEUE_VALUES: ("none" | "bullmq" | "trigger-dev" | "inngest" |
12847
13013
  declare const ANIMATION_VALUES: ("none" | "framer-motion" | "gsap" | "react-spring" | "auto-animate" | "lottie")[];
12848
13014
  declare const FILE_UPLOAD_VALUES: ("none" | "uploadthing" | "filepond" | "uppy")[];
12849
13015
  declare const LOGGING_VALUES: ("none" | "pino" | "winston" | "evlog")[];
12850
- declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
13016
+ declare const OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "signoz" | "sentry" | "grafana" | "datadog" | "axiom" | "betterstack")[];
12851
13017
  declare const FEATURE_FLAGS_VALUES: ("none" | "growthbook" | "posthog" | "launchdarkly" | "flagsmith" | "unleash")[];
13018
+ declare const INTEGRATIONS_VALUES: ("none" | "nango")[];
13019
+ declare const ECOMMERCE_VALUES: ("none" | "medusa")[];
12852
13020
  declare const ANALYTICS_VALUES: ("none" | "posthog" | "plausible" | "umami" | "ga4")[];
12853
13021
  declare const MOBILE_NAVIGATION_VALUES: ("none" | "expo-router" | "react-navigation")[];
12854
13022
  declare const MOBILE_UI_VALUES: ("none" | "uniwind" | "tamagui" | "gluestack-ui" | "unistyles")[];
@@ -12892,7 +13060,7 @@ declare const PYTHON_QUALITY_VALUES: ("none" | "ruff" | "mypy" | "pyright")[];
12892
13060
  declare const PYTHON_TESTING_VALUES: ("none" | "pytest" | "hypothesis" | "pytest-cov")[];
12893
13061
  declare const PYTHON_CACHING_VALUES: ("none" | "redis" | "aiocache")[];
12894
13062
  declare const PYTHON_REALTIME_VALUES: ("none" | "python-socketio" | "websockets")[];
12895
- declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "prometheus-client")[];
13063
+ declare const PYTHON_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "signoz" | "prometheus-client")[];
12896
13064
  declare const PYTHON_CLI_VALUES: ("none" | "typer" | "click" | "rich")[];
12897
13065
  declare const PYTHON_CLOUD_SDK_VALUES: ("none" | "boto3")[];
12898
13066
  declare const PYTHON_HTTP_CLIENT_VALUES: ("none" | "requests")[];
@@ -12912,7 +13080,7 @@ declare const GO_REALTIME_VALUES: ("none" | "gorilla-websocket" | "centrifuge")[
12912
13080
  declare const GO_MESSAGE_QUEUE_VALUES: ("none" | "nats" | "watermill" | "kafka-go" | "asynq")[];
12913
13081
  declare const GO_CACHING_VALUES: ("none" | "redis" | "ristretto")[];
12914
13082
  declare const GO_CONFIG_VALUES: ("none" | "viper" | "koanf")[];
12915
- declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "prometheus")[];
13083
+ declare const GO_OBSERVABILITY_VALUES: ("none" | "opentelemetry" | "signoz" | "prometheus")[];
12916
13084
  declare const GO_VALIDATION_VALUES: ("none" | "validator")[];
12917
13085
  declare const GO_QUALITY_VALUES: ("none" | "golangci-lint")[];
12918
13086
  declare const GO_MIGRATIONS_VALUES: ("none" | "golang-migrate")[];
@@ -12970,5 +13138,5 @@ declare const SHADCN_BASE_COLOR_VALUES: ("neutral" | "stone" | "zinc" | "gray")[
12970
13138
  declare const SHADCN_FONT_VALUES: ("inter" | "geist" | "noto-sans" | "nunito-sans" | "figtree" | "roboto" | "raleway" | "dm-sans" | "public-sans" | "outfit" | "jetbrains-mono" | "geist-mono")[];
12971
13139
  declare const SHADCN_RADIUS_VALUES: ("none" | "default" | "small" | "medium" | "large")[];
12972
13140
  //#endregion
12973
- export { DotnetCachingSchema as $, WORKSPACE_SHAPE_VALUES as $a, RateLimitSchema as $i, InitResultSchema as $n, PYTHON_MEDIA_VALUES as $r, ElixirRealtimeSchema as $t, CSS_FRAMEWORK_VALUES as A, ShadcnColorThemeSchema as Aa, PythonRealtimeSchema as Ai, GO_TESTING_VALUES as An, MobileDeepLinkingSchema as Ar, ELIXIR_VALIDATION_VALUES as At, DOTNET_JOB_QUEUE_VALUES as B, TEMPLATE_VALUES as Ba, RUST_AUTH_VALUES as Bi, GoMessageQueueSchema as Bn, ORM_VALUES as Br, ElixirClusteringSchema as Bt, BetterTStackConfigFileSchema as C, SHADCN_RADIUS_VALUES as Ca, PythonHttpClientSchema as Ci, GO_MIGRATIONS_VALUES as Cn, MOBILE_LIBRARIES_VALUES as Cr, ELIXIR_JSON_VALUES as Ct, CMSSchema as D, ServerDeploySchema as Da, PythonOrmSchema as Di, GO_QUALITY_VALUES as Dn, MOBILE_STORAGE_VALUES as Dr, ELIXIR_QUALITY_VALUES as Dt, CLIInputSchema as E, SearchSchema as Ea, PythonObservabilitySchema as Ei, GO_PROTO_TOOLING_VALUES as En, MOBILE_PUSH_VALUES as Er, ELIXIR_ORM_VALUES as Et, DIRECTORY_CONFLICT_VALUES as F, StackPartEcosystemSchema as Fa, PythonWebFrameworkSchema as Fi, GoCachingSchema as Fn, MobileStorageSchema as Fr, EffectSchema as Ft, DOTNET_TESTING_VALUES as G, UI_LIBRARY_VALUES as Ga, RUST_LIBRARIES_VALUES as Gi, GoQualitySchema as Gn, PYTHON_API_VALUES as Gr, ElixirHttpServerSchema as Gt, DOTNET_OBSERVABILITY_VALUES as H, TemplateSchema as Ha, RUST_CLI_VALUES as Hi, GoObservabilitySchema as Hn, PACKAGE_MANAGER_VALUES as Hr, ElixirDocumentationSchema as Ht, DOTNET_API_VALUES as I, StackPartRoleSchema as Ia, RATE_LIMIT_VALUES as Ii, GoCliSchema as In, MobileTestingSchema as Ir, ElixirApiSchema as It, DatabaseSchema as J, VERSION_CHANNEL_VALUES as Ja, RUST_OBSERVABILITY_VALUES as Ji, GoTestingSchema as Jn, PYTHON_CLI_VALUES as Jr, ElixirJsonSchema as Jt, DOTNET_VALIDATION_VALUES as K, VALIDATION_VALUES as Ka, RUST_LOGGING_VALUES as Ki, GoRealtimeSchema as Kn, PYTHON_AUTH_VALUES as Kr, ElixirI18nSchema as Kt, DOTNET_AUTH_VALUES as L, StackPartSchema as La, REALTIME_VALUES as Li, GoConfigSchema as Ln, MobileUISchema as Lr, ElixirApplicationFrameworkSchema as Lt, CreateInputSchema as M, ShadcnIconLibrarySchema as Ma, PythonTaskQueueSchema as Mi, GO_WEB_FRAMEWORK_VALUES as Mn, MobileNavigationSchema as Mr, EMAIL_VALUES as Mt, DATABASE_SETUP_VALUES as N, ShadcnRadiusSchema as Na, PythonTestingSchema as Ni, GoApiSchema as Nn, MobileOTASchema as Nr, EXAMPLES_VALUES as Nt, CMS_VALUES as O, ShadcnBaseColorSchema as Oa, PythonPackageManagerSchema as Oi, GO_REALTIME_VALUES as On, MOBILE_TESTING_VALUES as Or, ELIXIR_REALTIME_VALUES as Ot, DATABASE_VALUES as P, ShadcnStyleSchema as Pa, PythonValidationSchema as Pi, GoAuthSchema as Pn, MobilePushSchema as Pr, EcosystemSchema as Pt, DotnetAuthSchema as Q, WEB_DEPLOY_VALUES as Qa, RUST_WEB_FRAMEWORK_VALUES as Qi, I18nSchema as Qn, PYTHON_HTTP_CLIENT_VALUES as Qr, ElixirQualitySchema as Qt, DOTNET_CACHING_VALUES as R, StackPartSourceSchema as Ra, RUNTIME_VALUES as Ri, GoDISchema as Rn, OBSERVABILITY_VALUES as Rr, ElixirAuthSchema as Rt, BetterFullstackConfigSchema as S, SHADCN_ICON_LIBRARY_VALUES as Sa, PythonGraphqlSchema as Si, GO_MESSAGE_QUEUE_VALUES as Sn, MOBILE_DEEP_LINKING_VALUES as Sr, ELIXIR_JOBS_VALUES as St, CACHING_VALUES as T, STATE_MANAGEMENT_VALUES as Ta, PythonMessageQueueSchema as Ti, GO_ORM_VALUES as Tn, MOBILE_OTA_VALUES as Tr, ELIXIR_OBSERVABILITY_VALUES as Tt, DOTNET_ORM_VALUES as U, TestingSchema as Ua, RUST_ERROR_HANDLING_VALUES as Ui, GoOrmSchema as Un, PAYMENTS_VALUES as Ur, ElixirEmailSchema as Ut, DOTNET_LIBRARIES_VALUES as V, TESTING_VALUES as Va, RUST_CACHING_VALUES as Vi, GoMigrationsSchema as Vn, ObservabilitySchema as Vr, ElixirDeploySchema as Vt, DOTNET_REALTIME_VALUES as W, UILibrarySchema as Wa, RUST_FRONTEND_VALUES as Wi, GoProtoToolingSchema as Wn, PYTHON_AI_VALUES as Wr, ElixirHttpSchema as Wt, DirectoryConflictSchema as X, VectorDbSchema as Xa, RUST_REALTIME_VALUES as Xi, GoWebFrameworkSchema as Xn, PYTHON_DATA_VALUES as Xr, ElixirObservabilitySchema as Xt, DatabaseSetupSchema as Y, ValidationSchema as Ya, RUST_ORM_VALUES as Yi, GoValidationSchema as Yn, PYTHON_CLOUD_SDK_VALUES as Yr, ElixirLibrariesSchema as Yt, DotnetApiSchema as Z, VersionChannelSchema as Za, RUST_TEMPLATING_VALUES as Zi, I18N_VALUES as Zn, PYTHON_GRAPHQL_VALUES as Zr, ElixirOrmSchema as Zt, AstroIntegrationSchema as _, SERVER_DEPLOY_VALUES as _a, PythonAuthSchema as _i, GO_CACHING_VALUES as _n, JavaTestingLibrariesSchema as _r, ELIXIR_DOCUMENTATION_VALUES as _t, ANALYTICS_VALUES as a, RustCliSchema as aa, PYTHON_REALTIME_VALUES as ai, FEATURE_FLAGS_VALUES as an, JAVA_LOGGING_VALUES as ar, DotnetRealtimeSchema as at, BackendSchema as b, SHADCN_COLOR_THEME_VALUES as ba, PythonCloudSdkSchema as bi, GO_DI_VALUES as bn, LOGGING_VALUES as br, ELIXIR_HTTP_VALUES as bt, API_VALUES as c, RustLibrariesSchema as ca, PYTHON_TESTING_VALUES as ci, FORMS_VALUES as cn, JAVA_WEB_FRAMEWORK_VALUES as cr, DotnetWebFrameworkSchema as ct, AUTH_VALUES as d, RustObservabilitySchema as da, PackageManagerSchema as di, FileStorageSchema as dn, JavaAuthSchema as dr, ELIXIR_API_VALUES as dt, RealtimeSchema as ea, PYTHON_MESSAGE_QUEUE_VALUES as ei, ElixirTestingSchema as en, WebDeploySchema as eo, JAVA_API_VALUES as er, DotnetDeploySchema as et, AddInputSchema as f, RustOrmSchema as fa, PaymentsSchema as fi, FileUploadSchema as fn, JavaBuildToolSchema as fr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as ft, AnimationSchema as g, SEARCH_VALUES as ga, PythonApiSchema as gi, GO_AUTH_VALUES as gn, JavaOrmSchema as gr, ELIXIR_DEPLOY_VALUES as gt, AnalyticsSchema as h, RustWebFrameworkSchema as ha, PythonAiSchema as hi, GO_API_VALUES as hn, JavaLoggingSchema as hr, ELIXIR_CLUSTERING_VALUES as ht, AI_VALUES as i, RustCachingSchema as ia, PYTHON_QUALITY_VALUES as ii, ExamplesSchema as in, JAVA_LIBRARIES_VALUES as ir, DotnetOrmSchema as it, CachingSchema as j, ShadcnFontSchema as ja, PythonServerSchema as ji, GO_VALIDATION_VALUES as jn, MobileLibrariesSchema as jr, ELIXIR_WEB_FRAMEWORK_VALUES as jt, CSSFrameworkSchema as k, ShadcnBaseSchema as ka, PythonQualitySchema as ki, GO_TEMPLATING_VALUES as kn, MOBILE_UI_VALUES as kr, ELIXIR_TESTING_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RustLoggingSchema as la, PYTHON_VALIDATION_VALUES as li, FRONTEND_VALUES as ln, JOB_QUEUE_VALUES as lr, ECOSYSTEM_VALUES as lt, AiDocsSchema as m, RustTemplatingSchema as ma, ProjectNameSchema as mi, FrontendSchema as mn, JavaLibrariesSchema as mr, ELIXIR_CACHING_VALUES as mt, AISchema as n, RustApiSchema as na, PYTHON_ORM_VALUES as ni, ElixirWebFrameworkSchema as nn, JAVA_BUILD_TOOL_VALUES as nr, DotnetLibrariesSchema as nt, ANIMATION_VALUES as o, RustErrorHandlingSchema as oa, PYTHON_SERVER_VALUES as oi, FILE_STORAGE_VALUES as on, JAVA_ORM_VALUES as or, DotnetTestingSchema as ot, AddonsSchema as p, RustRealtimeSchema as pa, ProjectConfigSchema as pi, FormsSchema as pn, JavaLanguageSchema as pr, ELIXIR_AUTH_VALUES as pt, DOTNET_WEB_FRAMEWORK_VALUES as q, VECTOR_DB_VALUES as qa, RUST_MESSAGE_QUEUE_VALUES as qi, GoTemplatingSchema as qn, PYTHON_CACHING_VALUES as qr, ElixirJobsSchema as qt, AI_DOCS_VALUES as r, RustAuthSchema as ra, PYTHON_PACKAGE_MANAGER_VALUES as ri, EmailSchema as rn, JAVA_LANGUAGE_VALUES as rr, DotnetObservabilitySchema as rt, APISchema as s, RustFrontendSchema as sa, PYTHON_TASK_QUEUE_VALUES as si, FILE_UPLOAD_VALUES as sn, JAVA_TESTING_LIBRARIES_VALUES as sr, DotnetValidationSchema as st, ADDONS_VALUES as t, RuntimeSchema as ta, PYTHON_OBSERVABILITY_VALUES as ti, ElixirValidationSchema as tn, WorkspaceShapeSchema as to, JAVA_AUTH_VALUES as tr, DotnetJobQueueSchema as tt, ASTRO_INTEGRATION_VALUES as u, RustMessageQueueSchema as ua, PYTHON_WEB_FRAMEWORK_VALUES as ui, FeatureFlagsSchema as un, JavaApiSchema as ur, EFFECT_VALUES as ut, AuthSchema as v, SHADCN_BASE_COLOR_VALUES as va, PythonCachingSchema as vi, GO_CLI_VALUES as vn, JavaWebFrameworkSchema as vr, ELIXIR_EMAIL_VALUES as vt, BetterTStackConfigSchema as w, SHADCN_STYLE_VALUES as wa, PythonMediaSchema as wi, GO_OBSERVABILITY_VALUES as wn, MOBILE_NAVIGATION_VALUES as wr, ELIXIR_LIBRARIES_VALUES as wt, BetterFullstackConfigFileSchema as x, SHADCN_FONT_VALUES as xa, PythonDataSchema as xi, GO_LOGGING_VALUES as xn, LoggingSchema as xr, ELIXIR_I18N_VALUES as xt, BACKEND_VALUES as y, SHADCN_BASE_VALUES as ya, PythonCliSchema as yi, GO_CONFIG_VALUES as yn, JobQueueSchema as yr, ELIXIR_HTTP_SERVER_VALUES as yt, DOTNET_DEPLOY_VALUES as z, StateManagementSchema as za, RUST_API_VALUES as zi, GoLoggingSchema as zn, ORMSchema as zr, ElixirCachingSchema as zt };
12974
- //# sourceMappingURL=schemas-q5-QVYJy.d.mts.map
13141
+ export { DotnetCachingSchema as $, ValidationSchema as $a, RUST_ORM_VALUES as $i, I18N_VALUES as $n, PYTHON_CLOUD_SDK_VALUES as $r, ElixirOrmSchema as $t, CSS_FRAMEWORK_VALUES as A, SearchSchema as Aa, PythonObservabilitySchema as Ai, GO_REALTIME_VALUES as An, MOBILE_PUSH_VALUES as Ar, ELIXIR_TESTING_VALUES as At, DOTNET_JOB_QUEUE_VALUES as B, StackPartRoleSchema as Ba, RATE_LIMIT_VALUES as Bi, GoDISchema as Bn, MobileTestingSchema as Br, ElixirAuthSchema as Bt, BetterTStackConfigFileSchema as C, SHADCN_BASE_VALUES as Ca, PythonCliSchema as Ci, GO_LOGGING_VALUES as Cn, JobQueueSchema as Cr, ELIXIR_JOBS_VALUES as Ct, CMSSchema as D, SHADCN_RADIUS_VALUES as Da, PythonHttpClientSchema as Di, GO_ORM_VALUES as Dn, MOBILE_LIBRARIES_VALUES as Dr, ELIXIR_ORM_VALUES as Dt, CLIInputSchema as E, SHADCN_ICON_LIBRARY_VALUES as Ea, PythonGraphqlSchema as Ei, GO_OBSERVABILITY_VALUES as En, MOBILE_DEEP_LINKING_VALUES as Er, ELIXIR_OBSERVABILITY_VALUES as Et, DIRECTORY_CONFLICT_VALUES as F, ShadcnFontSchema as Fa, PythonServerSchema as Fi, GoApiSchema as Fn, MobileLibrariesSchema as Fr, EcommerceSchema as Ft, DOTNET_TESTING_VALUES as G, TESTING_VALUES as Ga, RUST_CACHING_VALUES as Gi, GoOrmSchema as Gn, ObservabilitySchema as Gr, ElixirEmailSchema as Gt, DOTNET_OBSERVABILITY_VALUES as H, StackPartSourceSchema as Ha, RUNTIME_VALUES as Hi, GoMessageQueueSchema as Hn, OBSERVABILITY_VALUES as Hr, ElixirClusteringSchema as Ht, DOTNET_API_VALUES as I, ShadcnIconLibrarySchema as Ia, PythonTaskQueueSchema as Ii, GoAuthSchema as In, MobileNavigationSchema as Ir, EcosystemSchema as It, DatabaseSchema as J, UILibrarySchema as Ja, RUST_FRONTEND_VALUES as Ji, GoRealtimeSchema as Jn, PYTHON_AI_VALUES as Jr, ElixirI18nSchema as Jt, DOTNET_VALIDATION_VALUES as K, TemplateSchema as Ka, RUST_CLI_VALUES as Ki, GoProtoToolingSchema as Kn, PACKAGE_MANAGER_VALUES as Kr, ElixirHttpSchema as Kt, DOTNET_AUTH_VALUES as L, ShadcnRadiusSchema as La, PythonTestingSchema as Li, GoCachingSchema as Ln, MobileOTASchema as Lr, EffectSchema as Lt, CreateInputSchema as M, ShadcnBaseColorSchema as Ma, PythonPackageManagerSchema as Mi, GO_TESTING_VALUES as Mn, MOBILE_TESTING_VALUES as Mr, ELIXIR_WEB_FRAMEWORK_VALUES as Mt, DATABASE_SETUP_VALUES as N, ShadcnBaseSchema as Na, PythonQualitySchema as Ni, GO_VALIDATION_VALUES as Nn, MOBILE_UI_VALUES as Nr, EMAIL_VALUES as Nt, CMS_VALUES as O, SHADCN_STYLE_VALUES as Oa, PythonMediaSchema as Oi, GO_PROTO_TOOLING_VALUES as On, MOBILE_NAVIGATION_VALUES as Or, ELIXIR_QUALITY_VALUES as Ot, DATABASE_VALUES as P, ShadcnColorThemeSchema as Pa, PythonRealtimeSchema as Pi, GO_WEB_FRAMEWORK_VALUES as Pn, MobileDeepLinkingSchema as Pr, EXAMPLES_VALUES as Pt, DotnetAuthSchema as Q, VERSION_CHANNEL_VALUES as Qa, RUST_OBSERVABILITY_VALUES as Qi, GoWebFrameworkSchema as Qn, PYTHON_CLI_VALUES as Qr, ElixirObservabilitySchema as Qt, DOTNET_CACHING_VALUES as R, ShadcnStyleSchema as Ra, PythonValidationSchema as Ri, GoCliSchema as Rn, MobilePushSchema as Rr, ElixirApiSchema as Rt, BetterFullstackConfigSchema as S, SHADCN_BASE_COLOR_VALUES as Sa, PythonCachingSchema as Si, GO_DI_VALUES as Sn, JavaWebFrameworkSchema as Sr, ELIXIR_I18N_VALUES as St, CACHING_VALUES as T, SHADCN_FONT_VALUES as Ta, PythonDataSchema as Ti, GO_MIGRATIONS_VALUES as Tn, LoggingSchema as Tr, ELIXIR_LIBRARIES_VALUES as Tt, DOTNET_ORM_VALUES as U, StateManagementSchema as Ua, RUST_API_VALUES as Ui, GoMigrationsSchema as Un, ORMSchema as Ur, ElixirDeploySchema as Ut, DOTNET_LIBRARIES_VALUES as V, StackPartSchema as Va, REALTIME_VALUES as Vi, GoLoggingSchema as Vn, MobileUISchema as Vr, ElixirCachingSchema as Vt, DOTNET_REALTIME_VALUES as W, TEMPLATE_VALUES as Wa, RUST_AUTH_VALUES as Wi, GoObservabilitySchema as Wn, ORM_VALUES as Wr, ElixirDocumentationSchema as Wt, DirectoryConflictSchema as X, VALIDATION_VALUES as Xa, RUST_LOGGING_VALUES as Xi, GoTestingSchema as Xn, PYTHON_AUTH_VALUES as Xr, ElixirJsonSchema as Xt, DatabaseSetupSchema as Y, UI_LIBRARY_VALUES as Ya, RUST_LIBRARIES_VALUES as Yi, GoTemplatingSchema as Yn, PYTHON_API_VALUES as Yr, ElixirJobsSchema as Yt, DotnetApiSchema as Z, VECTOR_DB_VALUES as Za, RUST_MESSAGE_QUEUE_VALUES as Zi, GoValidationSchema as Zn, PYTHON_CACHING_VALUES as Zr, ElixirLibrariesSchema as Zt, AstroIntegrationSchema as _, RustRealtimeSchema as _a, ProjectConfigSchema as _i, GO_API_VALUES as _n, JavaLanguageSchema as _r, ELIXIR_DEPLOY_VALUES as _t, ANALYTICS_VALUES as a, RuntimeSchema as aa, PYTHON_OBSERVABILITY_VALUES as ai, EmailSchema as an, WorkspaceShapeSchema as ao, JAVA_AUTH_VALUES as ar, DotnetRealtimeSchema as at, BackendSchema as b, SEARCH_VALUES as ba, PythonApiSchema as bi, GO_CLI_VALUES as bn, JavaOrmSchema as br, ELIXIR_HTTP_SERVER_VALUES as bt, API_VALUES as c, RustCachingSchema as ca, PYTHON_QUALITY_VALUES as ci, FILE_STORAGE_VALUES as cn, JAVA_LIBRARIES_VALUES as cr, DotnetWebFrameworkSchema as ct, AUTH_VALUES as d, RustFrontendSchema as da, PYTHON_TASK_QUEUE_VALUES as di, FRONTEND_VALUES as dn, JAVA_TESTING_LIBRARIES_VALUES as dr, EFFECT_VALUES as dt, RUST_REALTIME_VALUES as ea, PYTHON_DATA_VALUES as ei, ElixirQualitySchema as en, VectorDbSchema as eo, I18nSchema as er, DotnetDeploySchema as et, AddInputSchema as f, RustLibrariesSchema as fa, PYTHON_TESTING_VALUES as fi, FeatureFlagsSchema as fn, JAVA_WEB_FRAMEWORK_VALUES as fr, ELIXIR_API_VALUES as ft, AnimationSchema as g, RustOrmSchema as ga, PaymentsSchema as gi, FrontendSchema as gn, JavaBuildToolSchema as gr, ELIXIR_CLUSTERING_VALUES as gt, AnalyticsSchema as h, RustObservabilitySchema as ha, PackageManagerSchema as hi, FormsSchema as hn, JavaAuthSchema as hr, ELIXIR_CACHING_VALUES as ht, AI_VALUES as i, RealtimeSchema as ia, PYTHON_MESSAGE_QUEUE_VALUES as ii, ElixirWebFrameworkSchema as in, WebDeploySchema as io, JAVA_API_VALUES as ir, DotnetOrmSchema as it, CachingSchema as j, ServerDeploySchema as ja, PythonOrmSchema as ji, GO_TEMPLATING_VALUES as jn, MOBILE_STORAGE_VALUES as jr, ELIXIR_VALIDATION_VALUES as jt, CSSFrameworkSchema as k, STATE_MANAGEMENT_VALUES as ka, PythonMessageQueueSchema as ki, GO_QUALITY_VALUES as kn, MOBILE_OTA_VALUES as kr, ELIXIR_REALTIME_VALUES as kt, APP_PLATFORM_ADDON_VALUES as l, RustCliSchema as la, PYTHON_REALTIME_VALUES as li, FILE_UPLOAD_VALUES as ln, JAVA_LOGGING_VALUES as lr, ECOMMERCE_VALUES as lt, AiDocsSchema as m, RustMessageQueueSchema as ma, PYTHON_WEB_FRAMEWORK_VALUES as mi, FileUploadSchema as mn, JavaApiSchema as mr, ELIXIR_AUTH_VALUES as mt, AISchema as n, RUST_WEB_FRAMEWORK_VALUES as na, PYTHON_HTTP_CLIENT_VALUES as ni, ElixirTestingSchema as nn, WEB_DEPLOY_VALUES as no, InitResultSchema as nr, DotnetLibrariesSchema as nt, ANIMATION_VALUES as o, RustApiSchema as oa, PYTHON_ORM_VALUES as oi, ExamplesSchema as on, JAVA_BUILD_TOOL_VALUES as or, DotnetTestingSchema as ot, AddonsSchema as p, RustLoggingSchema as pa, PYTHON_VALIDATION_VALUES as pi, FileStorageSchema as pn, JOB_QUEUE_VALUES as pr, ELIXIR_APPLICATION_FRAMEWORK_VALUES as pt, DOTNET_WEB_FRAMEWORK_VALUES as q, TestingSchema as qa, RUST_ERROR_HANDLING_VALUES as qi, GoQualitySchema as qn, PAYMENTS_VALUES as qr, ElixirHttpServerSchema as qt, AI_DOCS_VALUES as r, RateLimitSchema as ra, PYTHON_MEDIA_VALUES as ri, ElixirValidationSchema as rn, WORKSPACE_SHAPE_VALUES as ro, IntegrationsSchema as rr, DotnetObservabilitySchema as rt, APISchema as s, RustAuthSchema as sa, PYTHON_PACKAGE_MANAGER_VALUES as si, FEATURE_FLAGS_VALUES as sn, JAVA_LANGUAGE_VALUES as sr, DotnetValidationSchema as st, ADDONS_VALUES as t, RUST_TEMPLATING_VALUES as ta, PYTHON_GRAPHQL_VALUES as ti, ElixirRealtimeSchema as tn, VersionChannelSchema as to, INTEGRATIONS_VALUES as tr, DotnetJobQueueSchema as tt, ASTRO_INTEGRATION_VALUES as u, RustErrorHandlingSchema as ua, PYTHON_SERVER_VALUES as ui, FORMS_VALUES as un, JAVA_ORM_VALUES as ur, ECOSYSTEM_VALUES as ut, AuthSchema as v, RustTemplatingSchema as va, ProjectNameSchema as vi, GO_AUTH_VALUES as vn, JavaLibrariesSchema as vr, ELIXIR_DOCUMENTATION_VALUES as vt, BetterTStackConfigSchema as w, SHADCN_COLOR_THEME_VALUES as wa, PythonCloudSdkSchema as wi, GO_MESSAGE_QUEUE_VALUES as wn, LOGGING_VALUES as wr, ELIXIR_JSON_VALUES as wt, BetterFullstackConfigFileSchema as x, SERVER_DEPLOY_VALUES as xa, PythonAuthSchema as xi, GO_CONFIG_VALUES as xn, JavaTestingLibrariesSchema as xr, ELIXIR_HTTP_VALUES as xt, BACKEND_VALUES as y, RustWebFrameworkSchema as ya, PythonAiSchema as yi, GO_CACHING_VALUES as yn, JavaLoggingSchema as yr, ELIXIR_EMAIL_VALUES as yt, DOTNET_DEPLOY_VALUES as z, StackPartEcosystemSchema as za, PythonWebFrameworkSchema as zi, GoConfigSchema as zn, MobileStorageSchema as zr, ElixirApplicationFrameworkSchema as zt };
13142
+ //# sourceMappingURL=schemas-BMTIauzB.d.mts.map