evo360-types 1.3.51 → 1.3.52

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.
@@ -19,6 +19,9 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
19
19
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
20
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
21
21
  url: z.ZodString;
22
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
23
+ hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
24
+ external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
22
25
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
23
26
  name: z.ZodString;
24
27
  color: z.ZodOptional<z.ZodString>;
@@ -59,6 +62,9 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
59
62
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
60
63
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
61
64
  url: z.ZodString;
65
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
66
+ hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
67
+ external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
62
68
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
63
69
  name: z.ZodString;
64
70
  color: z.ZodOptional<z.ZodString>;
@@ -99,6 +105,9 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
99
105
  n8n_wf: z.ZodOptional<z.ZodNullable<z.ZodString>>;
100
106
  order: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
101
107
  url: z.ZodString;
108
+ params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>;
109
+ hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
110
+ external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
102
111
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
103
112
  name: z.ZodString;
104
113
  color: z.ZodOptional<z.ZodString>;
@@ -16,6 +16,9 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
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),
19
+ params: zod_1.z.record(zod_1.z.string(), zod_1.z.union([zod_1.z.string(), zod_1.z.number()])).optional(),
20
+ hidden: zod_1.z.boolean().default(false).optional(),
21
+ external: zod_1.z.boolean().default(true).optional(),
19
22
  tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
20
23
  userRef: zod_1.z.any(),
21
24
  })
@@ -14,6 +14,9 @@ export const zMedCalendarSchema = zFireDocSchema
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),
17
+ params: z.record(z.string(), z.union([z.string(), z.number()])).optional(),
18
+ hidden: z.boolean().default(false).optional(),
19
+ external: z.boolean().default(true).optional(),
17
20
  tags: z.array(zTagSchema).nullable().optional(),
18
21
  userRef: z.any(),
19
22
  })
package/dist/index.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- // @evo360/types/index.ts
2
1
  export * from "./types/shared";
3
2
  export * from "./types/firebase/pubsub-sync";
4
3
  export * from "./types/evo-core";
@@ -13,11 +12,9 @@ export * from "./types/evo-med/dic";
13
12
  export * from "./types/evo-med/insurance";
14
13
  export * from "./types/evo-med/people";
15
14
  export * from "./types/evo-med/procedure";
16
- export * from "./types/evo-task";
17
15
  export * from "./types/evo-tags";
16
+ export * from "./types/evo-task";
18
17
  export * from "./types/evo-survey";
19
-
20
- // zod schemas
21
18
  export * from "./apps/shared/zod-schemas";
22
19
  export * from "./apps/evo-core/zod-schemas";
23
20
  export * from "./apps/evo-tenant/zod-schemas";
@@ -12,6 +12,9 @@ export interface IMedCalendar extends IFireDoc {
12
12
  n8n_wf?: string | null;
13
13
  order?: number;
14
14
  url: string;
15
+ params?: Record<string, string | number>;
16
+ hidden?: boolean;
17
+ external?: boolean;
15
18
  tags?: ITag[] | null;
16
19
  userRef?: FirestoreDocumentReference;
17
20
  [key: string]: unknown;
@@ -15,6 +15,9 @@ export interface IMedCalendar extends IFireDoc {
15
15
  n8n_wf?: string | null;
16
16
  order?: number;
17
17
  url: string;
18
+ params?: Record<string, string | number>;
19
+ hidden?: boolean;
20
+ external?: boolean;
18
21
  tags?: ITag[] | null;
19
22
  userRef?: FirestoreDocumentReference;
20
23
  [key: string]: unknown; // index signature
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.51",
3
+ "version": "1.3.52",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",