evo360-types 1.3.30 → 1.3.31

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,7 +14,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
14
14
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
15
15
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16
16
  order: z.ZodDefault<z.ZodNumber>;
17
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17
+ url: z.ZodString;
18
18
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
19
19
  name: z.ZodString;
20
20
  color: z.ZodOptional<z.ZodString>;
@@ -28,6 +28,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
28
28
  hidden: boolean;
29
29
  color?: string | undefined;
30
30
  }>, "many">>>;
31
+ userRef: z.ZodAny;
31
32
  }>, "passthrough", z.ZodTypeAny, z.objectOutputType<z.objectUtil.extendShape<{
32
33
  id: z.ZodString;
33
34
  ref: z.ZodAny;
@@ -43,7 +44,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
43
44
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
44
45
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
45
46
  order: z.ZodDefault<z.ZodNumber>;
46
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
+ url: z.ZodString;
47
48
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
48
49
  name: z.ZodString;
49
50
  color: z.ZodOptional<z.ZodString>;
@@ -57,6 +58,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
57
58
  hidden: boolean;
58
59
  color?: string | undefined;
59
60
  }>, "many">>>;
61
+ userRef: z.ZodAny;
60
62
  }>, z.ZodTypeAny, "passthrough">, z.objectInputType<z.objectUtil.extendShape<{
61
63
  id: z.ZodString;
62
64
  ref: z.ZodAny;
@@ -72,7 +74,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
72
74
  last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
73
75
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
74
76
  order: z.ZodDefault<z.ZodNumber>;
75
- url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
77
+ url: z.ZodString;
76
78
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
77
79
  name: z.ZodString;
78
80
  color: z.ZodOptional<z.ZodString>;
@@ -86,4 +88,5 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
86
88
  hidden: boolean;
87
89
  color?: string | undefined;
88
90
  }>, "many">>>;
91
+ userRef: z.ZodAny;
89
92
  }>, z.ZodTypeAny, "passthrough">>;
@@ -11,7 +11,8 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
11
11
  last_update: zod_1.z.coerce.date().nullable().optional(),
12
12
  n8n_wf: zod_1.z.string().min(1).max(500).nullable().optional(),
13
13
  order: zod_1.z.number().default(0),
14
- url: zod_1.z.string().min(1).max(500).nullable().optional(),
14
+ url: zod_1.z.string().min(1).max(500),
15
15
  tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
16
+ userRef: zod_1.z.any(),
16
17
  })
17
18
  .passthrough();
@@ -9,7 +9,8 @@ export const zMedCalendarSchema = zFireDocSchema
9
9
  last_update: z.coerce.date().nullable().optional(),
10
10
  n8n_wf: z.string().min(1).max(500).nullable().optional(),
11
11
  order: z.number().default(0),
12
- url: z.string().min(1).max(500).nullable().optional(),
12
+ url: z.string().min(1).max(500),
13
13
  tags: z.array(zTagSchema).nullable().optional(),
14
+ userRef: z.any(),
14
15
  })
15
16
  .passthrough();
@@ -1,11 +1,14 @@
1
1
  export * from "../../evo-people/fb_collections";
2
- import type { IFireDoc } from "../../shared";
2
+ import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
3
3
  export interface IMedCalendar extends IFireDoc {
4
4
  calendarId: string;
5
- color: string;
6
- display_name: string;
7
- last_update: Date;
8
- n8n_wf: string;
5
+ color?: string | null;
6
+ display_name?: string | null;
7
+ last_update?: Date | null;
8
+ n8n_wf?: string | null;
9
9
  order: number;
10
10
  url: string;
11
+ tags?: ITag[] | null;
12
+ userRef?: FirestoreDocumentReference;
13
+ [key: string]: unknown;
11
14
  }
@@ -5,10 +5,13 @@ import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
5
5
 
6
6
  export interface IMedCalendar extends IFireDoc {
7
7
  calendarId: string;
8
- color: string;
9
- display_name: string;
10
- last_update: Date;
11
- n8n_wf: string;
8
+ color?: string | null;
9
+ display_name?: string | null;
10
+ last_update?: Date | null;
11
+ n8n_wf?: string | null;
12
12
  order: number;
13
13
  url: string;
14
+ tags?: ITag[] | null;
15
+ userRef?: FirestoreDocumentReference;
16
+ [key: string]: unknown; // index signature
14
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.30",
3
+ "version": "1.3.31",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",