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();
@@ -57,5 +57,6 @@ export interface IQualification extends IFireDoc {
57
57
  name: string;
58
58
  funnelLevel: QualificationFunnelLevel;
59
59
  hide?: boolean;
60
+ funnelHide?: boolean;
60
61
  [key: string]: unknown;
61
62
  }
@@ -97,5 +97,6 @@ export interface IQualification extends IFireDoc {
97
97
  name: string;
98
98
  funnelLevel: QualificationFunnelLevel;
99
99
  hide?: boolean;
100
+ funnelHide?: boolean;
100
101
  [key: string]: unknown; // index signature
101
102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.292",
3
+ "version": "1.3.293",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",