evo360-types 1.3.20 → 1.3.22
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
|
@@ -7,7 +7,8 @@ export * from "./types/evo-activity";
|
|
|
7
7
|
export * from "./types/evo-people";
|
|
8
8
|
export * from "./types/evo-crm/dic";
|
|
9
9
|
export * from "./types/evo-crm/lead";
|
|
10
|
-
export * from "./types/evo-chat";
|
|
10
|
+
export * from "./types/evo-chat/contact";
|
|
11
|
+
export * from "./types/evo-chat/message";
|
|
11
12
|
export * from "./types/evo-med/dic";
|
|
12
13
|
export * from "./types/evo-med/insurance";
|
|
13
14
|
export * from "./types/evo-med/people";
|
|
@@ -26,6 +27,8 @@ export * from "./apps/evo-activity/zod-schemas";
|
|
|
26
27
|
export * from "./apps/evo-people/zod-schemas";
|
|
27
28
|
export * from "./apps/evo-crm/dic/zod-schemas";
|
|
28
29
|
export * from "./apps/evo-crm/lead/zod-schemas";
|
|
30
|
+
export * from "./apps/evo-chat/contact/zod-schemas";
|
|
31
|
+
export * from "./apps/evo-chat/message/zod-schemas";
|
|
29
32
|
export * from "./apps/evo-med/dic/zod-schemas";
|
|
30
33
|
export * from "./apps/evo-med/insurance/zod-schemas";
|
|
31
34
|
export * from "./apps/evo-med/people/zod-schemas";
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,8 @@ __exportStar(require("./types/evo-activity"), exports);
|
|
|
23
23
|
__exportStar(require("./types/evo-people"), exports);
|
|
24
24
|
__exportStar(require("./types/evo-crm/dic"), exports);
|
|
25
25
|
__exportStar(require("./types/evo-crm/lead"), exports);
|
|
26
|
-
__exportStar(require("./types/evo-chat"), exports);
|
|
26
|
+
__exportStar(require("./types/evo-chat/contact"), exports);
|
|
27
|
+
__exportStar(require("./types/evo-chat/message"), exports);
|
|
27
28
|
__exportStar(require("./types/evo-med/dic"), exports);
|
|
28
29
|
__exportStar(require("./types/evo-med/insurance"), exports);
|
|
29
30
|
__exportStar(require("./types/evo-med/people"), exports);
|
|
@@ -41,6 +42,8 @@ __exportStar(require("./apps/evo-activity/zod-schemas"), exports);
|
|
|
41
42
|
__exportStar(require("./apps/evo-people/zod-schemas"), exports);
|
|
42
43
|
__exportStar(require("./apps/evo-crm/dic/zod-schemas"), exports);
|
|
43
44
|
__exportStar(require("./apps/evo-crm/lead/zod-schemas"), exports);
|
|
45
|
+
__exportStar(require("./apps/evo-chat/contact/zod-schemas"), exports);
|
|
46
|
+
__exportStar(require("./apps/evo-chat/message/zod-schemas"), exports);
|
|
44
47
|
__exportStar(require("./apps/evo-med/dic/zod-schemas"), exports);
|
|
45
48
|
__exportStar(require("./apps/evo-med/insurance/zod-schemas"), exports);
|
|
46
49
|
__exportStar(require("./apps/evo-med/people/zod-schemas"), exports);
|
package/dist/index.ts
CHANGED
|
@@ -7,7 +7,8 @@ export * from "./types/evo-activity";
|
|
|
7
7
|
export * from "./types/evo-people";
|
|
8
8
|
export * from "./types/evo-crm/dic";
|
|
9
9
|
export * from "./types/evo-crm/lead";
|
|
10
|
-
export * from "./types/evo-chat";
|
|
10
|
+
export * from "./types/evo-chat/contact";
|
|
11
|
+
export * from "./types/evo-chat/message";
|
|
11
12
|
export * from "./types/evo-med/dic";
|
|
12
13
|
export * from "./types/evo-med/insurance";
|
|
13
14
|
export * from "./types/evo-med/people";
|
|
@@ -26,6 +27,8 @@ export * from "./apps/evo-activity/zod-schemas";
|
|
|
26
27
|
export * from "./apps/evo-people/zod-schemas";
|
|
27
28
|
export * from "./apps/evo-crm/dic/zod-schemas";
|
|
28
29
|
export * from "./apps/evo-crm/lead/zod-schemas";
|
|
30
|
+
export * from "./apps/evo-chat/contact/zod-schemas";
|
|
31
|
+
export * from "./apps/evo-chat/message/zod-schemas";
|
|
29
32
|
export * from "./apps/evo-med/dic/zod-schemas";
|
|
30
33
|
export * from "./apps/evo-med/insurance/zod-schemas";
|
|
31
34
|
export * from "./apps/evo-med/people/zod-schemas";
|
|
@@ -1,17 +1,2 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("../fb_collections"), exports);
|