evo360-types 1.2.1 → 1.2.2

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/index.d.ts CHANGED
@@ -4,6 +4,10 @@ export * from "./types/evo-core";
4
4
  export * from "./types/evo-tenant";
5
5
  export * from "./types/evo-activity";
6
6
  export * from "./types/evo-people";
7
+ export * from "./types/evo-med/dic";
8
+ export * from "./types/evo-med/insurance";
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";
@@ -1,7 +1,7 @@
1
1
  export * from "../../evo-people/fb_collections";
2
2
  import type { IAddress, IContact, IFireDoc, ITag } from "../../shared";
3
3
  export type MedInsuranceAction = "CREATE_INSURANCE" | "DELETE_INSURANCE" | "UPDATE_INSURANCE";
4
- export declare enum IMedDicAction {
4
+ export declare enum IMedInsuranceAction {
5
5
  Create_insurance = "CREATE_INSURANCE",
6
6
  Delete_insurance = "DELETE_INSURANCE",
7
7
  Update_insurance = "UPDATE_INSURANCE"
@@ -14,11 +14,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.IMedDicAction = void 0;
17
+ exports.IMedInsuranceAction = void 0;
18
18
  __exportStar(require("../../evo-people/fb_collections"), exports);
19
- var IMedDicAction;
20
- (function (IMedDicAction) {
21
- IMedDicAction["Create_insurance"] = "CREATE_INSURANCE";
22
- IMedDicAction["Delete_insurance"] = "DELETE_INSURANCE";
23
- IMedDicAction["Update_insurance"] = "UPDATE_INSURANCE";
24
- })(IMedDicAction || (exports.IMedDicAction = IMedDicAction = {}));
19
+ var IMedInsuranceAction;
20
+ (function (IMedInsuranceAction) {
21
+ IMedInsuranceAction["Create_insurance"] = "CREATE_INSURANCE";
22
+ IMedInsuranceAction["Delete_insurance"] = "DELETE_INSURANCE";
23
+ IMedInsuranceAction["Update_insurance"] = "UPDATE_INSURANCE";
24
+ })(IMedInsuranceAction || (exports.IMedInsuranceAction = IMedInsuranceAction = {}));
@@ -9,7 +9,7 @@ export type MedInsuranceAction =
9
9
  | "DELETE_INSURANCE"
10
10
  | "UPDATE_INSURANCE";
11
11
 
12
- export enum IMedDicAction {
12
+ export enum IMedInsuranceAction {
13
13
  Create_insurance = "CREATE_INSURANCE",
14
14
  Delete_insurance = "DELETE_INSURANCE",
15
15
  Update_insurance = "UPDATE_INSURANCE",
@@ -4,14 +4,13 @@ import type {
4
4
  FirestoreDocumentReference,
5
5
  IAddress,
6
6
  IContact,
7
- IGeoPoint,
8
7
  ITag,
9
8
  } from "../../shared";
10
9
  import { IAllergy, IChronicCondition } from "../dic";
11
10
 
12
11
  // ----- MedPeopleTypes
13
12
 
14
- // Enum for EvoMed Action - used in Professionals and Patients tracking
13
+ // Enum for EvoMed People Action - used in Professionals and Patients tracking
15
14
  export type MedPeopleAction =
16
15
  | "CREATE_PROFESSIONAL"
17
16
  | "DELETE_PROFESSIONAL"
@@ -3,7 +3,7 @@ import type { FirestoreDocumentReference, IFireDoc, ITag } from "../../shared";
3
3
 
4
4
  // ----- MedProcedureAction
5
5
 
6
- // Enum for EvoMed Dic Action - used in Dictionaries tracking
6
+ // Enum for EvoMed Procedure Action - used in Dictionaries tracking
7
7
  export type MedProcedureAction =
8
8
  | "CREATE_PROCEDURE"
9
9
  | "DELETE_PROCEDURE"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",