@drzl/cli 4.34.0 → 4.36.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/cli.cjs +278 -5
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +278 -5
- package/dist/cli.js.map +1 -1
- package/dist/config.d.cts +2 -2
- package/dist/config.d.ts +2 -2
- package/package.json +1 -1
package/dist/config.d.cts
CHANGED
|
@@ -199,8 +199,8 @@ declare const GeneratorSchema: z.ZodObject<{
|
|
|
199
199
|
includeRelations: z.ZodOptional<z.ZodBoolean>;
|
|
200
200
|
sharedEnums: z.ZodOptional<z.ZodBoolean>;
|
|
201
201
|
coerceDates: z.ZodOptional<z.ZodEnum<{
|
|
202
|
-
input: "input";
|
|
203
202
|
none: "none";
|
|
203
|
+
input: "input";
|
|
204
204
|
all: "all";
|
|
205
205
|
}>>;
|
|
206
206
|
typedJson: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -452,8 +452,8 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
452
452
|
includeRelations: z.ZodOptional<z.ZodBoolean>;
|
|
453
453
|
sharedEnums: z.ZodOptional<z.ZodBoolean>;
|
|
454
454
|
coerceDates: z.ZodOptional<z.ZodEnum<{
|
|
455
|
-
input: "input";
|
|
456
455
|
none: "none";
|
|
456
|
+
input: "input";
|
|
457
457
|
all: "all";
|
|
458
458
|
}>>;
|
|
459
459
|
typedJson: z.ZodOptional<z.ZodBoolean>;
|
package/dist/config.d.ts
CHANGED
|
@@ -199,8 +199,8 @@ declare const GeneratorSchema: z.ZodObject<{
|
|
|
199
199
|
includeRelations: z.ZodOptional<z.ZodBoolean>;
|
|
200
200
|
sharedEnums: z.ZodOptional<z.ZodBoolean>;
|
|
201
201
|
coerceDates: z.ZodOptional<z.ZodEnum<{
|
|
202
|
-
input: "input";
|
|
203
202
|
none: "none";
|
|
203
|
+
input: "input";
|
|
204
204
|
all: "all";
|
|
205
205
|
}>>;
|
|
206
206
|
typedJson: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -452,8 +452,8 @@ declare const ConfigSchema: z.ZodObject<{
|
|
|
452
452
|
includeRelations: z.ZodOptional<z.ZodBoolean>;
|
|
453
453
|
sharedEnums: z.ZodOptional<z.ZodBoolean>;
|
|
454
454
|
coerceDates: z.ZodOptional<z.ZodEnum<{
|
|
455
|
-
input: "input";
|
|
456
455
|
none: "none";
|
|
456
|
+
input: "input";
|
|
457
457
|
all: "all";
|
|
458
458
|
}>>;
|
|
459
459
|
typedJson: z.ZodOptional<z.ZodBoolean>;
|