evo360-types 1.3.292 → 1.3.293
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.
|
@@ -204,6 +204,7 @@ export declare const zQualificationSchema: z.ZodObject<{
|
|
|
204
204
|
name: z.ZodString;
|
|
205
205
|
funnelLevel: z.ZodEnum<["invalid", "new", "trying_contact", "contacted", "qualifying", "qualified", "disqualified", "presented", "proposal_sent", "negotiating", "won", "lost", "waiting_reply", "follow_up_later"]>;
|
|
206
206
|
hide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
207
|
+
funnelHide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
207
208
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
208
209
|
name: z.ZodString;
|
|
209
210
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -236,6 +237,7 @@ export declare const zQualificationSchema: z.ZodObject<{
|
|
|
236
237
|
name: z.ZodString;
|
|
237
238
|
funnelLevel: z.ZodEnum<["invalid", "new", "trying_contact", "contacted", "qualifying", "qualified", "disqualified", "presented", "proposal_sent", "negotiating", "won", "lost", "waiting_reply", "follow_up_later"]>;
|
|
238
239
|
hide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
240
|
+
funnelHide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
239
241
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
240
242
|
name: z.ZodString;
|
|
241
243
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -268,6 +270,7 @@ export declare const zQualificationSchema: z.ZodObject<{
|
|
|
268
270
|
name: z.ZodString;
|
|
269
271
|
funnelLevel: z.ZodEnum<["invalid", "new", "trying_contact", "contacted", "qualifying", "qualified", "disqualified", "presented", "proposal_sent", "negotiating", "won", "lost", "waiting_reply", "follow_up_later"]>;
|
|
270
272
|
hide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
273
|
+
funnelHide: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
271
274
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
272
275
|
name: z.ZodString;
|
|
273
276
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -42,6 +42,7 @@ exports.zQualificationSchema = zod_schemas_1.zFireDocSchema
|
|
|
42
42
|
name: zod_1.z.string().min(1).max(255),
|
|
43
43
|
funnelLevel: exports.zQualificationFunnelLevelSchema,
|
|
44
44
|
hide: zod_1.z.boolean().optional().default(false),
|
|
45
|
+
funnelHide: zod_1.z.boolean().optional().default(false),
|
|
45
46
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
46
47
|
})
|
|
47
48
|
.passthrough();
|
|
@@ -43,6 +43,7 @@ export const zQualificationSchema = zFireDocSchema
|
|
|
43
43
|
name: z.string().min(1).max(255),
|
|
44
44
|
funnelLevel: zQualificationFunnelLevelSchema,
|
|
45
45
|
hide: z.boolean().optional().default(false),
|
|
46
|
+
funnelHide: z.boolean().optional().default(false),
|
|
46
47
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
47
48
|
})
|
|
48
49
|
.passthrough();
|