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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export declare const zCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
2
+ export declare const zMedCalendarSchema: z.ZodObject<z.objectUtil.extendShape<{
3
3
  id: z.ZodString;
4
4
  ref: z.ZodAny;
5
5
  tenant: z.ZodString;
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.zCalendarSchema = void 0;
3
+ exports.zMedCalendarSchema = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const zod_schemas_1 = require("../../shared/zod-schemas");
6
- exports.zCalendarSchema = zod_schemas_1.zFireDocSchema
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 zCalendarSchema = zFireDocSchema
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(),
@@ -1,6 +1,6 @@
1
1
  export * from "../../evo-people/fb_collections";
2
2
  import type { IFireDoc } from "../../shared";
3
- export interface ICalendar extends IFireDoc {
3
+ export interface IMedCalendar extends IFireDoc {
4
4
  calendarId: string;
5
5
  color: string;
6
6
  display_name: string;
@@ -3,7 +3,7 @@ import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
3
3
 
4
4
  // ----- MedCalendarTypes
5
5
 
6
- export interface ICalendar extends IFireDoc {
6
+ export interface IMedCalendar extends IFireDoc {
7
7
  calendarId: string;
8
8
  color: string;
9
9
  display_name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.29",
3
+ "version": "1.3.30",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",