evo360-types 1.2.19 → 1.2.20

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.
@@ -99,9 +99,9 @@ export declare const ProcedureSchema: z.ZodObject<z.objectUtil.extendShape<{
99
99
  type_code: string | null;
100
100
  type_name: string | null;
101
101
  acronym: string | null;
102
+ technical_name: string;
102
103
  duration: number | null;
103
104
  color: string | null;
104
- technical_name: string;
105
105
  tuss: string | null;
106
106
  ref?: any;
107
107
  created_at?: Date | null | undefined;
package/dist/index.js CHANGED
@@ -19,7 +19,11 @@ __exportStar(require("./types/shared"), exports);
19
19
  __exportStar(require("./types/evo-core"), exports);
20
20
  __exportStar(require("./types/evo-tenant"), exports);
21
21
  __exportStar(require("./types/evo-activity"), exports);
22
+ __exportStar(require("./types/evo-people"), exports);
23
+ __exportStar(require("./types/evo-med/dic"), exports);
24
+ __exportStar(require("./types/evo-med/insurance"), exports);
22
25
  __exportStar(require("./types/evo-med/people"), exports);
26
+ __exportStar(require("./types/evo-med/procedure"), exports);
23
27
  __exportStar(require("./types/evo-calendar"), exports);
24
28
  __exportStar(require("./types/evo-task"), exports);
25
29
  __exportStar(require("./types/evo-survey"), exports);
@@ -31,6 +35,10 @@ __exportStar(require("./apps/evo-core/zod-schemas"), exports);
31
35
  __exportStar(require("./apps/evo-tenant/zod-schemas"), exports);
32
36
  __exportStar(require("./apps/evo-activity/zod-schemas"), exports);
33
37
  __exportStar(require("./apps/evo-people/zod-schemas"), exports);
38
+ __exportStar(require("./apps/evo-med/dic/zod-schemas"), exports);
39
+ __exportStar(require("./apps/evo-med/insurance/zod-schemas"), exports);
40
+ __exportStar(require("./apps/evo-med/people/zod-schemas"), exports);
41
+ __exportStar(require("./apps/evo-med/procedure/zod-schemas"), exports);
34
42
  __exportStar(require("./apps/evo-calendar/zod-schemas"), exports);
35
43
  __exportStar(require("./apps/evo-task/zod-schemas"), exports);
36
44
  __exportStar(require("./apps/evo-survey/zod-schemas"), exports);
package/dist/index.ts CHANGED
@@ -3,7 +3,11 @@ export * from "./types/shared";
3
3
  export * from "./types/evo-core";
4
4
  export * from "./types/evo-tenant";
5
5
  export * from "./types/evo-activity";
6
+ export * from "./types/evo-people";
7
+ export * from "./types/evo-med/dic";
8
+ export * from "./types/evo-med/insurance";
6
9
  export * from "./types/evo-med/people";
10
+ export * from "./types/evo-med/procedure";
7
11
  export * from "./types/evo-calendar";
8
12
  export * from "./types/evo-task";
9
13
  export * from "./types/evo-survey";
@@ -16,6 +20,10 @@ export * from "./apps/evo-core/zod-schemas";
16
20
  export * from "./apps/evo-tenant/zod-schemas";
17
21
  export * from "./apps/evo-activity/zod-schemas";
18
22
  export * from "./apps/evo-people/zod-schemas";
23
+ export * from "./apps/evo-med/dic/zod-schemas";
24
+ export * from "./apps/evo-med/insurance/zod-schemas";
25
+ export * from "./apps/evo-med/people/zod-schemas";
26
+ export * from "./apps/evo-med/procedure/zod-schemas";
19
27
  export * from "./apps/evo-calendar/zod-schemas";
20
28
  export * from "./apps/evo-task/zod-schemas";
21
29
  export * from "./apps/evo-survey/zod-schemas";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.2.19",
3
+ "version": "1.2.20",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",