evo360-types 1.3.49 → 1.3.51

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.
@@ -15,7 +15,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
15
15
  end_time: z.ZodDefault<z.ZodString>;
16
16
  interval: z.ZodDefault<z.ZodNumber>;
17
17
  view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
18
- last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
18
+ last_update: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodDate>>>;
19
19
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
20
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
21
21
  url: z.ZodString;
@@ -55,7 +55,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
55
55
  end_time: z.ZodDefault<z.ZodString>;
56
56
  interval: z.ZodDefault<z.ZodNumber>;
57
57
  view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
58
- last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
58
+ last_update: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodDate>>>;
59
59
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
60
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
61
61
  url: z.ZodString;
@@ -95,7 +95,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
95
95
  end_time: z.ZodDefault<z.ZodString>;
96
96
  interval: z.ZodDefault<z.ZodNumber>;
97
97
  view_mode: z.ZodDefault<z.ZodEnum<["day", "week"]>>;
98
- last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
98
+ last_update: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodDate>>>;
99
99
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
100
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
101
101
  url: z.ZodString;
@@ -12,7 +12,7 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
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
14
  view_mode: zod_1.z.enum(["day", "week"]).default("day"),
15
- last_update: zod_1.z.coerce.date().nullable().optional(),
15
+ last_update: zod_1.z.coerce.date().nullable().default(null).optional(),
16
16
  n8n_wf: zod_1.z.string().min(1).max(500).nullable().optional(),
17
17
  order: zod_1.z.number().min(0).max(100).default(0).optional(),
18
18
  url: zod_1.z.string().min(1).max(500),
@@ -10,7 +10,7 @@ export const zMedCalendarSchema = zFireDocSchema
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
12
  view_mode: z.enum(["day", "week"]).default("day"),
13
- last_update: z.coerce.date().nullable().optional(),
13
+ last_update: z.coerce.date().nullable().default(null).optional(),
14
14
  n8n_wf: z.string().min(1).max(500).nullable().optional(),
15
15
  order: z.number().min(0).max(100).default(0).optional(),
16
16
  url: z.string().min(1).max(500),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.49",
3
+ "version": "1.3.51",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",