evo360-types 1.3.359 → 1.3.360

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
@@ -26,6 +26,8 @@ export * from "./types/evo-task-runner";
26
26
  export * from "./types/evo-integrations";
27
27
  export * from "./types/nex-customers";
28
28
  export * from "./types/nex-tenants";
29
+ export * from "./types/evo-hub-ia";
30
+ export * from "./types/evo-mcp";
29
31
  export * from "./apps/shared/zod-schemas";
30
32
  export * from "./apps/evo-core/zod-schemas";
31
33
  export * from "./apps/evo-tenant/zod-schemas";
package/dist/index.js CHANGED
@@ -43,6 +43,8 @@ __exportStar(require("./types/evo-task-runner"), exports);
43
43
  __exportStar(require("./types/evo-integrations"), exports);
44
44
  __exportStar(require("./types/nex-customers"), exports);
45
45
  __exportStar(require("./types/nex-tenants"), exports);
46
+ __exportStar(require("./types/evo-hub-ia"), exports);
47
+ __exportStar(require("./types/evo-mcp"), exports);
46
48
  // zod schemas
47
49
  __exportStar(require("./apps/shared/zod-schemas"), exports);
48
50
  __exportStar(require("./apps/evo-core/zod-schemas"), exports);
package/dist/index.ts CHANGED
@@ -27,6 +27,8 @@ export * from "./types/evo-task-runner";
27
27
  export * from "./types/evo-integrations";
28
28
  export * from "./types/nex-customers";
29
29
  export * from "./types/nex-tenants";
30
+ export * from "./types/evo-hub-ia";
31
+ export * from "./types/evo-mcp";
30
32
 
31
33
  // zod schemas
32
34
  export * from "./apps/shared/zod-schemas";
@@ -1 +1,5 @@
1
1
  export * from "./channel";
2
+ export declare const EvoHubiaPermissions: {
3
+ readonly Read: "evo_hubia_read";
4
+ };
5
+ export type EvoHubiaPermissions = (typeof EvoHubiaPermissions)[keyof typeof EvoHubiaPermissions];
@@ -14,4 +14,9 @@ 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.EvoHubiaPermissions = void 0;
17
18
  __exportStar(require("./channel"), exports);
19
+ // Permissões para o evo-hubia
20
+ exports.EvoHubiaPermissions = {
21
+ Read: "evo_hubia_read",
22
+ };
@@ -1,2 +1,9 @@
1
1
  export * from "./channel";
2
2
 
3
+ // Permissões para o evo-hubia
4
+ export const EvoHubiaPermissions = {
5
+ Read: "evo_hubia_read",
6
+ } as const;
7
+
8
+ export type EvoHubiaPermissions =
9
+ (typeof EvoHubiaPermissions)[keyof typeof EvoHubiaPermissions];
@@ -0,0 +1,4 @@
1
+ export declare const EvoMcpPermissions: {
2
+ readonly Access: "evo_mcp_access";
3
+ };
4
+ export type EvoMcpPermissions = (typeof EvoMcpPermissions)[keyof typeof EvoMcpPermissions];
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.EvoMcpPermissions = void 0;
4
+ // Permissões para o evo-mcp (servidor MCP tenant-level)
5
+ exports.EvoMcpPermissions = {
6
+ Access: "evo_mcp_access",
7
+ };
@@ -0,0 +1,7 @@
1
+ // Permissões para o evo-mcp (servidor MCP tenant-level)
2
+ export const EvoMcpPermissions = {
3
+ Access: "evo_mcp_access",
4
+ } as const;
5
+
6
+ export type EvoMcpPermissions =
7
+ (typeof EvoMcpPermissions)[keyof typeof EvoMcpPermissions];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.359",
3
+ "version": "1.3.360",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",