@drzl/cli 4.23.0 → 4.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/config.d.cts CHANGED
@@ -161,8 +161,8 @@ declare const GeneratorSchema: z.ZodObject<{
161
161
  includeRelations: z.ZodOptional<z.ZodBoolean>;
162
162
  sharedEnums: z.ZodOptional<z.ZodBoolean>;
163
163
  coerceDates: z.ZodOptional<z.ZodEnum<{
164
- input: "input";
165
164
  none: "none";
165
+ input: "input";
166
166
  all: "all";
167
167
  }>>;
168
168
  typedJson: z.ZodOptional<z.ZodBoolean>;
@@ -385,8 +385,8 @@ declare const ConfigSchema: z.ZodObject<{
385
385
  includeRelations: z.ZodOptional<z.ZodBoolean>;
386
386
  sharedEnums: z.ZodOptional<z.ZodBoolean>;
387
387
  coerceDates: z.ZodOptional<z.ZodEnum<{
388
- input: "input";
389
388
  none: "none";
389
+ input: "input";
390
390
  all: "all";
391
391
  }>>;
392
392
  typedJson: z.ZodOptional<z.ZodBoolean>;
package/dist/config.d.ts CHANGED
@@ -161,8 +161,8 @@ declare const GeneratorSchema: z.ZodObject<{
161
161
  includeRelations: z.ZodOptional<z.ZodBoolean>;
162
162
  sharedEnums: z.ZodOptional<z.ZodBoolean>;
163
163
  coerceDates: z.ZodOptional<z.ZodEnum<{
164
- input: "input";
165
164
  none: "none";
165
+ input: "input";
166
166
  all: "all";
167
167
  }>>;
168
168
  typedJson: z.ZodOptional<z.ZodBoolean>;
@@ -385,8 +385,8 @@ declare const ConfigSchema: z.ZodObject<{
385
385
  includeRelations: z.ZodOptional<z.ZodBoolean>;
386
386
  sharedEnums: z.ZodOptional<z.ZodBoolean>;
387
387
  coerceDates: z.ZodOptional<z.ZodEnum<{
388
- input: "input";
389
388
  none: "none";
389
+ input: "input";
390
390
  all: "all";
391
391
  }>>;
392
392
  typedJson: z.ZodOptional<z.ZodBoolean>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drzl/cli",
3
- "version": "4.23.0",
3
+ "version": "4.24.0",
4
4
  "private": false,
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -30,12 +30,20 @@
30
30
  "ora": "^9.4.1",
31
31
  "zod": "^4.4.3",
32
32
  "@drzl/analyzer": "^1.21.0",
33
+ "@drzl/generator-effect": "^0.5.0",
34
+ "@drzl/generator-express": "^0.2.0",
33
35
  "@drzl/generator-arktype": "^3.17.0",
34
- "@drzl/generator-orpc": "^2.9.0",
36
+ "@drzl/generator-fastify": "^0.2.0",
37
+ "@drzl/generator-graphql": "^0.2.0",
38
+ "@drzl/generator-hono": "^0.2.0",
39
+ "@drzl/generator-nestjs": "^0.2.0",
35
40
  "@drzl/generator-service": "^2.5.0",
36
- "@drzl/generator-typebox": "^0.14.0",
41
+ "@drzl/generator-json-schema": "^0.9.0",
42
+ "@drzl/generator-trpc": "^0.3.0",
37
43
  "@drzl/generator-valibot": "^3.20.0",
44
+ "@drzl/generator-orpc": "^2.9.0",
38
45
  "@drzl/generator-zod": "^3.21.0",
46
+ "@drzl/generator-typebox": "^0.14.0",
39
47
  "@drzl/validation-core": "^3.22.0"
40
48
  },
41
49
  "devDependencies": {
@@ -62,16 +70,6 @@
62
70
  "type": "github",
63
71
  "url": "https://github.com/sponsors/omar-dulaimi"
64
72
  },
65
- "optionalDependencies": {
66
- "@drzl/generator-effect": "^0.5.0",
67
- "@drzl/generator-express": "^0.2.0",
68
- "@drzl/generator-fastify": "^0.2.0",
69
- "@drzl/generator-graphql": "^0.2.0",
70
- "@drzl/generator-hono": "^0.2.0",
71
- "@drzl/generator-json-schema": "^0.9.0",
72
- "@drzl/generator-nestjs": "^0.2.0",
73
- "@drzl/generator-trpc": "^0.3.0"
74
- },
75
73
  "scripts": {
76
74
  "build": "tsup src/cli.ts src/config.ts --format esm,cjs --sourcemap --dts --clean && node scripts/gen-config-schema.mjs",
77
75
  "dev": "node --loader ts-node/esm src/cli.ts --help",