evo360-types 1.3.33 → 1.3.34

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.
@@ -14,6 +14,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
14
14
  start_time: z.ZodDefault<z.ZodString>;
15
15
  end_time: z.ZodDefault<z.ZodString>;
16
16
  interval: z.ZodDefault<z.ZodNumber>;
17
+ view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
17
18
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
18
19
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
19
20
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
@@ -47,6 +48,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
47
48
  start_time: z.ZodDefault<z.ZodString>;
48
49
  end_time: z.ZodDefault<z.ZodString>;
49
50
  interval: z.ZodDefault<z.ZodNumber>;
51
+ view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
50
52
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
51
53
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
54
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
@@ -80,6 +82,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
80
82
  start_time: z.ZodDefault<z.ZodString>;
81
83
  end_time: z.ZodDefault<z.ZodString>;
82
84
  interval: z.ZodDefault<z.ZodNumber>;
85
+ view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
83
86
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
84
87
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
85
88
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
@@ -11,6 +11,7 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
11
11
  start_time: zod_1.z.string().min(1).max(5).default("08:00"),
12
12
  end_time: zod_1.z.string().min(1).max(5).default("18:00"),
13
13
  interval: zod_1.z.number().min(1).max(1440).default(20),
14
+ view_mode: zod_1.z.enum(["day", "week"]).default("day"),
14
15
  last_update: zod_1.z.coerce.date().nullable().optional(),
15
16
  n8n_wf: zod_1.z.string().min(1).max(500).nullable().optional(),
16
17
  order: zod_1.z.number().min(0).max(100).default(0).optional(),
@@ -9,6 +9,7 @@ export const zMedCalendarSchema = zFireDocSchema
9
9
  start_time: z.string().min(1).max(5).default("08:00"),
10
10
  end_time: z.string().min(1).max(5).default("18:00"),
11
11
  interval: z.number().min(1).max(1440).default(20),
12
+ view_mode: z.enum(["day", "week"]).default("day"),
12
13
  last_update: z.coerce.date().nullable().optional(),
13
14
  n8n_wf: z.string().min(1).max(500).nullable().optional(),
14
15
  order: z.number().min(0).max(100).default(0).optional(),
@@ -7,6 +7,7 @@ export interface IMedCalendar extends IFireDoc {
7
7
  start_time: string;
8
8
  end_time: string;
9
9
  interval: number;
10
+ view_mode: string;
10
11
  last_update?: Date | null;
11
12
  n8n_wf?: string | null;
12
13
  order?: number;
@@ -10,6 +10,7 @@ export interface IMedCalendar extends IFireDoc {
10
10
  start_time: string;
11
11
  end_time: string;
12
12
  interval: number;
13
+ view_mode: string;
13
14
  last_update?: Date | null;
14
15
  n8n_wf?: string | null;
15
16
  order?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.33",
3
+ "version": "1.3.34",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",