evo360-types 1.3.150 → 1.3.151

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.
@@ -21,7 +21,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
21
21
  url: z.ZodOptional<z.ZodString>;
22
22
  default_channel_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
23
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
24
- ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
24
+ ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodAny]>>>>;
25
25
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
26
26
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
27
27
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -82,7 +82,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
82
82
  url: z.ZodOptional<z.ZodString>;
83
83
  default_channel_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
84
84
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
85
- ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
85
+ ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodAny]>>>>;
86
86
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
87
87
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
88
88
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -143,7 +143,7 @@ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
143
143
  url: z.ZodOptional<z.ZodString>;
144
144
  default_channel_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
145
145
  params: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
146
- ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber]>>>>;
146
+ ext_urls: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodAny]>>>>;
147
147
  hidden: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
148
148
  external: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
149
149
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
@@ -23,7 +23,7 @@ exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
23
23
  .nullable()
24
24
  .optional(),
25
25
  ext_urls: zod_1.z
26
- .record(zod_1.z.string(), zod_1.z.union([zod_1.z.string(), zod_1.z.number()]))
26
+ .record(zod_1.z.string(), zod_1.z.union([zod_1.z.string(), zod_1.z.number(), zod_1.z.any()]))
27
27
  .nullable()
28
28
  .optional(),
29
29
  hidden: zod_1.z.boolean().default(false).optional(),
@@ -21,7 +21,7 @@ export const zMedCalendarSchema = zFireDocSchema
21
21
  .nullable()
22
22
  .optional(),
23
23
  ext_urls: z
24
- .record(z.string(), z.union([z.string(), z.number()]))
24
+ .record(z.string(), z.union([z.string(), z.number(), z.any()]))
25
25
  .nullable()
26
26
  .optional(),
27
27
  hidden: z.boolean().default(false).optional(),
@@ -15,7 +15,7 @@ export interface IMedCalendar extends IFireDoc {
15
15
  url?: string | null;
16
16
  default_channel_id?: string | null;
17
17
  params?: Record<string, string | number> | null;
18
- ext_urls?: Record<string, string | number> | null;
18
+ ext_urls?: Record<string, string | number | any> | null;
19
19
  hidden?: boolean;
20
20
  external?: boolean;
21
21
  tags?: ITag[] | null;
@@ -18,7 +18,7 @@ export interface IMedCalendar extends IFireDoc {
18
18
  url?: string | null;
19
19
  default_channel_id?: string | null;
20
20
  params?: Record<string, string | number> | null;
21
- ext_urls?: Record<string, string | number> | null;
21
+ ext_urls?: Record<string, string | number | any> | null;
22
22
  hidden?: boolean;
23
23
  external?: boolean;
24
24
  tags?: ITag[] | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.150",
3
+ "version": "1.3.151",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",