evo360-types 1.3.29 → 1.3.30
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 +1 -1
- package/dist/apps/evo-med/calendar/zod-schemas.js +2 -2
- package/dist/apps/evo-med/calendar/zod-schemas.ts +1 -1
- package/dist/types/evo-med/calendar/index.d.ts +1 -1
- package/dist/types/evo-med/calendar/index.ts +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.zMedCalendarSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const zod_schemas_1 = require("../../shared/zod-schemas");
|
|
6
|
-
exports.
|
|
6
|
+
exports.zMedCalendarSchema = zod_schemas_1.zFireDocSchema
|
|
7
7
|
.extend({
|
|
8
8
|
calendarId: zod_1.z.string().min(1).max(30),
|
|
9
9
|
color: zod_1.z.string().min(1).max(10).nullable().optional(),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
import { zFireDocSchema, zTagSchema } from "../../shared/zod-schemas";
|
|
3
3
|
|
|
4
|
-
export const
|
|
4
|
+
export const zMedCalendarSchema = zFireDocSchema
|
|
5
5
|
.extend({
|
|
6
6
|
calendarId: z.string().min(1).max(30),
|
|
7
7
|
color: z.string().min(1).max(10).nullable().optional(),
|
|
@@ -3,7 +3,7 @@ import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
|
|
|
3
3
|
|
|
4
4
|
// ----- MedCalendarTypes
|
|
5
5
|
|
|
6
|
-
export interface
|
|
6
|
+
export interface IMedCalendar extends IFireDoc {
|
|
7
7
|
calendarId: string;
|
|
8
8
|
color: string;
|
|
9
9
|
display_name: string;
|