evo360-types 1.3.129 → 1.3.131

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.
@@ -18,7 +18,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
18
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
- url: z.ZodString;
21
+ url: z.ZodOptional<z.ZodString>;
22
22
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
23
23
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
24
24
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
@@ -61,7 +61,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
61
61
  last_update: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodDate>>>;
62
62
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
63
63
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
64
- url: z.ZodString;
64
+ url: z.ZodOptional<z.ZodString>;
65
65
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
66
66
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
67
67
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
@@ -104,7 +104,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
104
104
  last_update: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodDate>>>;
105
105
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106
106
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
107
- url: z.ZodString;
107
+ url: z.ZodOptional<z.ZodString>;
108
108
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
109
109
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
110
110
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
@@ -15,7 +15,7 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
15
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
- url: zod_1.z.string().min(1).max(500),
18
+ url: zod_1.z.string().min(1).max(500).optional(),
19
19
  params: zod_1.z
20
20
  .record(zod_1.z.string(), zod_1.z.union([zod_1.z.string(), zod_1.z.number()]))
21
21
  .nullable()
@@ -13,7 +13,7 @@ export const zMedCalendarSchema = zFireDocSchema
13
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
- url: z.string().min(1).max(500),
16
+ url: z.string().min(1).max(500).optional(),
17
17
  params: z
18
18
  .record(z.string(), z.union([z.string(), z.number()]))
19
19
  .nullable()
@@ -11,7 +11,7 @@ export interface IMedCalendar extends IFireDoc {
11
11
  last_update?: Date | null;
12
12
  n8n_wf?: string | null;
13
13
  order?: number;
14
- url: string;
14
+ url?: string | null;
15
15
  params?: Record<string, string | number> | null;
16
16
  hidden?: boolean;
17
17
  external?: boolean;
@@ -14,7 +14,7 @@ export interface IMedCalendar extends IFireDoc {
14
14
  last_update?: Date | null;
15
15
  n8n_wf?: string | null;
16
16
  order?: number;
17
- url: string;
17
+ url?: string | null;
18
18
  params?: Record<string, string | number> | null;
19
19
  hidden?: boolean;
20
20
  external?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.129",
3
+ "version": "1.3.131",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",