evo360-types 1.3.31 → 1.3.32
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.
- package/dist/apps/evo-med/calendar/zod-schemas.d.ts +9 -9
- package/dist/apps/evo-med/calendar/zod-schemas.js +3 -3
- package/dist/apps/evo-med/calendar/zod-schemas.ts +3 -3
- package/dist/types/evo-med/calendar/index.d.ts +3 -3
- package/dist/types/evo-med/calendar/index.ts +3 -3
- package/package.json +1 -1
|
@@ -9,11 +9,11 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9
9
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
10
10
|
}, {
|
|
11
11
|
calendarId: z.ZodString;
|
|
12
|
-
color: z.ZodOptional<z.
|
|
13
|
-
display_name: z.ZodOptional<z.
|
|
12
|
+
color: z.ZodOptional<z.ZodString>;
|
|
13
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
14
14
|
last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
15
15
|
n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
order: z.ZodDefault<z.ZodNumber
|
|
16
|
+
order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
17
17
|
url: z.ZodString;
|
|
18
18
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
19
19
|
name: z.ZodString;
|
|
@@ -39,11 +39,11 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
39
39
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
40
40
|
}, {
|
|
41
41
|
calendarId: z.ZodString;
|
|
42
|
-
color: z.ZodOptional<z.
|
|
43
|
-
display_name: z.ZodOptional<z.
|
|
42
|
+
color: z.ZodOptional<z.ZodString>;
|
|
43
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
44
44
|
last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
45
45
|
n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
46
|
-
order: z.ZodDefault<z.ZodNumber
|
|
46
|
+
order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
47
47
|
url: z.ZodString;
|
|
48
48
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
49
49
|
name: z.ZodString;
|
|
@@ -69,11 +69,11 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
69
69
|
deleted_at: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
70
70
|
}, {
|
|
71
71
|
calendarId: z.ZodString;
|
|
72
|
-
color: z.ZodOptional<z.
|
|
73
|
-
display_name: z.ZodOptional<z.
|
|
72
|
+
color: z.ZodOptional<z.ZodString>;
|
|
73
|
+
display_name: z.ZodOptional<z.ZodString>;
|
|
74
74
|
last_update: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
75
75
|
n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
76
|
-
order: z.ZodDefault<z.ZodNumber
|
|
76
|
+
order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
77
77
|
url: z.ZodString;
|
|
78
78
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
79
79
|
name: z.ZodString;
|
|
@@ -6,11 +6,11 @@ const zod_schemas_1 = require("../../shared/zod-schemas");
|
|
|
6
6
|
exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
|
|
7
7
|
.extend({
|
|
8
8
|
calendarId: zod_1.z.string().min(1).max(30),
|
|
9
|
-
color: zod_1.z.string().min(1).max(10).
|
|
10
|
-
display_name: zod_1.z.string().min(1).max(60).
|
|
9
|
+
color: zod_1.z.string().min(1).max(10).optional(),
|
|
10
|
+
display_name: zod_1.z.string().min(1).max(60).optional(),
|
|
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
|
-
order: zod_1.z.number().default(0),
|
|
13
|
+
order: zod_1.z.number().min(0).max(100).default(0).optional(),
|
|
14
14
|
url: zod_1.z.string().min(1).max(500),
|
|
15
15
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
16
16
|
userRef: zod_1.z.any(),
|
|
@@ -4,11 +4,11 @@ import { zFireDocSchema, zTagSchema } from "../../shared/zod-schemas";
|
|
|
4
4
|
export const zMedCalendarSchema = zFireDocSchema
|
|
5
5
|
.extend({
|
|
6
6
|
calendarId: z.string().min(1).max(30),
|
|
7
|
-
color: z.string().min(1).max(10).
|
|
8
|
-
display_name: z.string().min(1).max(60).
|
|
7
|
+
color: z.string().min(1).max(10).optional(),
|
|
8
|
+
display_name: z.string().min(1).max(60).optional(),
|
|
9
9
|
last_update: z.coerce.date().nullable().optional(),
|
|
10
10
|
n8n_wf: z.string().min(1).max(500).nullable().optional(),
|
|
11
|
-
order: z.number().default(0),
|
|
11
|
+
order: z.number().min(0).max(100).default(0).optional(),
|
|
12
12
|
url: z.string().min(1).max(500),
|
|
13
13
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
14
14
|
userRef: z.any(),
|
|
@@ -2,11 +2,11 @@ export * from "../../evo-people/fb_collections";
|
|
|
2
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
|
|
5
|
+
color?: string;
|
|
6
|
+
display_name?: string;
|
|
7
7
|
last_update?: Date | null;
|
|
8
8
|
n8n_wf?: string | null;
|
|
9
|
-
order
|
|
9
|
+
order?: number;
|
|
10
10
|
url: string;
|
|
11
11
|
tags?: ITag[] | null;
|
|
12
12
|
userRef?: FirestoreDocumentReference;
|
|
@@ -5,11 +5,11 @@ 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
|
|
8
|
+
color?: string;
|
|
9
|
+
display_name?: string;
|
|
10
10
|
last_update?: Date | null;
|
|
11
11
|
n8n_wf?: string | null;
|
|
12
|
-
order
|
|
12
|
+
order?: number;
|
|
13
13
|
url: string;
|
|
14
14
|
tags?: ITag[] | null;
|
|
15
15
|
userRef?: FirestoreDocumentReference;
|