evo360-types 1.3.2 → 1.3.4

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,8 @@ 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-crm/dic";
8
+ export * from "./types/evo-crm/lead";
7
9
  export * from "./types/evo-med/dic";
8
10
  export * from "./types/evo-med/insurance";
9
11
  export * from "./types/evo-med/people";
@@ -20,6 +22,8 @@ export * from "./apps/evo-core/zod-schemas";
20
22
  export * from "./apps/evo-tenant/zod-schemas";
21
23
  export * from "./apps/evo-activity/zod-schemas";
22
24
  export * from "./apps/evo-people/zod-schemas";
25
+ export * from "./apps/evo-crm/dic/zod-schemas";
26
+ export * from "./apps/evo-crm/lead/zod-schemas";
23
27
  export * from "./apps/evo-med/dic/zod-schemas";
24
28
  export * from "./apps/evo-med/insurance/zod-schemas";
25
29
  export * from "./apps/evo-med/people/zod-schemas";
package/dist/index.js CHANGED
@@ -20,6 +20,8 @@ __exportStar(require("./types/evo-core"), exports);
20
20
  __exportStar(require("./types/evo-tenant"), exports);
21
21
  __exportStar(require("./types/evo-activity"), exports);
22
22
  __exportStar(require("./types/evo-people"), exports);
23
+ __exportStar(require("./types/evo-crm/dic"), exports);
24
+ __exportStar(require("./types/evo-crm/lead"), exports);
23
25
  __exportStar(require("./types/evo-med/dic"), exports);
24
26
  __exportStar(require("./types/evo-med/insurance"), exports);
25
27
  __exportStar(require("./types/evo-med/people"), exports);
@@ -35,6 +37,8 @@ __exportStar(require("./apps/evo-core/zod-schemas"), exports);
35
37
  __exportStar(require("./apps/evo-tenant/zod-schemas"), exports);
36
38
  __exportStar(require("./apps/evo-activity/zod-schemas"), exports);
37
39
  __exportStar(require("./apps/evo-people/zod-schemas"), exports);
40
+ __exportStar(require("./apps/evo-crm/dic/zod-schemas"), exports);
41
+ __exportStar(require("./apps/evo-crm/lead/zod-schemas"), exports);
38
42
  __exportStar(require("./apps/evo-med/dic/zod-schemas"), exports);
39
43
  __exportStar(require("./apps/evo-med/insurance/zod-schemas"), exports);
40
44
  __exportStar(require("./apps/evo-med/people/zod-schemas"), exports);
package/dist/index.ts CHANGED
@@ -4,6 +4,8 @@ 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-crm/dic";
8
+ export * from "./types/evo-crm/lead";
7
9
  export * from "./types/evo-med/dic";
8
10
  export * from "./types/evo-med/insurance";
9
11
  export * from "./types/evo-med/people";
@@ -20,6 +22,8 @@ export * from "./apps/evo-core/zod-schemas";
20
22
  export * from "./apps/evo-tenant/zod-schemas";
21
23
  export * from "./apps/evo-activity/zod-schemas";
22
24
  export * from "./apps/evo-people/zod-schemas";
25
+ export * from "./apps/evo-crm/dic/zod-schemas";
26
+ export * from "./apps/evo-crm/lead/zod-schemas";
23
27
  export * from "./apps/evo-med/dic/zod-schemas";
24
28
  export * from "./apps/evo-med/insurance/zod-schemas";
25
29
  export * from "./apps/evo-med/people/zod-schemas";
@@ -1,5 +1,4 @@
1
1
  export declare const EVO_CRM_APP = "evo-crm";
2
- export declare const DICS_COLLECTION = "dics";
3
2
  export declare const LEADS = "leads";
4
3
  export declare const LEAD_QUALIFICATION = "qualification";
5
4
  export declare const CHANNELS = "channels";
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.LEADS_COLLECTION = exports.DIST_CHANNELS_COLLECTION = exports.DIST_CHANNEL_TYPES_COLLECTION = exports.CHANNELS = exports.LEAD_QUALIFICATION = exports.LEADS = exports.DICS_COLLECTION = exports.EVO_CRM_APP = void 0;
3
+ exports.LEADS_COLLECTION = exports.DIST_CHANNELS_COLLECTION = exports.DIST_CHANNEL_TYPES_COLLECTION = exports.CHANNELS = exports.LEAD_QUALIFICATION = exports.LEADS = exports.EVO_CRM_APP = void 0;
4
4
  //EVO CRM Application Doc
5
5
  exports.EVO_CRM_APP = "evo-crm";
6
6
  //dictionaries
7
- exports.DICS_COLLECTION = "dics";
8
7
  exports.LEADS = "leads";
9
8
  exports.LEAD_QUALIFICATION = "qualification";
10
9
  exports.CHANNELS = "channels";
@@ -2,8 +2,6 @@
2
2
  export const EVO_CRM_APP = "evo-crm";
3
3
 
4
4
  //dictionaries
5
- export const DICS_COLLECTION = "dics";
6
-
7
5
  export const LEADS = "leads";
8
6
  export const LEAD_QUALIFICATION = "qualification";
9
7
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.2",
3
+ "version": "1.3.4",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  "build-bkp": "tsc",
13
13
  "compile": "tsc"
14
14
  },
15
- "homepage": "https://www.darvist.com",
15
+ "homepage": "https://www.hubmedica.com.br",
16
16
  "repository": {
17
17
  "type": "git",
18
18
  "url": "https://gitlab.com/hrhub/hr-evo360/evo-types.git"