evo360-types 1.3.12 → 1.3.14

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.js CHANGED
@@ -22,6 +22,7 @@ __exportStar(require("./types/evo-activity"), exports);
22
22
  __exportStar(require("./types/evo-people"), exports);
23
23
  __exportStar(require("./types/evo-crm/dic"), exports);
24
24
  __exportStar(require("./types/evo-crm/lead"), exports);
25
+ __exportStar(require("./types/evo-chat"), exports);
25
26
  __exportStar(require("./types/evo-med/dic"), exports);
26
27
  __exportStar(require("./types/evo-med/insurance"), exports);
27
28
  __exportStar(require("./types/evo-med/people"), exports);
package/dist/index.ts CHANGED
@@ -6,6 +6,7 @@ export * from "./types/evo-activity";
6
6
  export * from "./types/evo-people";
7
7
  export * from "./types/evo-crm/dic";
8
8
  export * from "./types/evo-crm/lead";
9
+ export * from "./types/evo-chat";
9
10
  export * from "./types/evo-med/dic";
10
11
  export * from "./types/evo-med/insurance";
11
12
  export * from "./types/evo-med/people";
@@ -0,0 +1,3 @@
1
+ export declare const EVO_CHAT_APP = "evo-chat";
2
+ export declare const CONTACTS_COLLECTION = "contacts";
3
+ export declare const PROTOCOLS_COLLECTION = "protocols";
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PROTOCOLS_COLLECTION = exports.CONTACTS_COLLECTION = exports.EVO_CHAT_APP = void 0;
4
+ //EVO Chat Application Doc
5
+ exports.EVO_CHAT_APP = "evo-chat";
6
+ //contacts collection
7
+ exports.CONTACTS_COLLECTION = "contacts";
8
+ //protocols collection
9
+ exports.PROTOCOLS_COLLECTION = "protocols";
@@ -0,0 +1,8 @@
1
+ //EVO Chat Application Doc
2
+ export const EVO_CHAT_APP = "evo-chat";
3
+
4
+ //contacts collection
5
+ export const CONTACTS_COLLECTION = "contacts";
6
+
7
+ //protocols collection
8
+ export const PROTOCOLS_COLLECTION = "protocols";
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.12",
3
+ "version": "1.3.14",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",