evo360-types 1.3.364 → 1.3.366
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.
|
@@ -3,3 +3,7 @@ export declare const EvoHubiaPermissions: {
|
|
|
3
3
|
readonly Read: "evo_hubia_read";
|
|
4
4
|
};
|
|
5
5
|
export type EvoHubiaPermissions = (typeof EvoHubiaPermissions)[keyof typeof EvoHubiaPermissions];
|
|
6
|
+
export declare const EvoHubiaMcpPermissions: {
|
|
7
|
+
readonly Access: "evo_hubia_mcp_access";
|
|
8
|
+
};
|
|
9
|
+
export type EvoHubiaMcpPermissions = (typeof EvoHubiaMcpPermissions)[keyof typeof EvoHubiaMcpPermissions];
|
|
@@ -14,9 +14,14 @@ 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
|
+
exports.EvoHubiaMcpPermissions = exports.EvoHubiaPermissions = void 0;
|
|
18
18
|
__exportStar(require("./channel"), exports);
|
|
19
19
|
// Permissões para o evo-hubia
|
|
20
20
|
exports.EvoHubiaPermissions = {
|
|
21
21
|
Read: "evo_hubia_read",
|
|
22
22
|
};
|
|
23
|
+
// Permissão de conexão ao servidor MCP interno do hubia (evo_hubia_mcp).
|
|
24
|
+
// Separada do evo_mcp_access: gate de audiência interna (admin/ops/debug).
|
|
25
|
+
exports.EvoHubiaMcpPermissions = {
|
|
26
|
+
Access: "evo_hubia_mcp_access",
|
|
27
|
+
};
|
|
@@ -7,3 +7,12 @@ export const EvoHubiaPermissions = {
|
|
|
7
7
|
|
|
8
8
|
export type EvoHubiaPermissions =
|
|
9
9
|
(typeof EvoHubiaPermissions)[keyof typeof EvoHubiaPermissions];
|
|
10
|
+
|
|
11
|
+
// Permissão de conexão ao servidor MCP interno do hubia (evo_hubia_mcp).
|
|
12
|
+
// Separada do evo_mcp_access: gate de audiência interna (admin/ops/debug).
|
|
13
|
+
export const EvoHubiaMcpPermissions = {
|
|
14
|
+
Access: "evo_hubia_mcp_access",
|
|
15
|
+
} as const;
|
|
16
|
+
|
|
17
|
+
export type EvoHubiaMcpPermissions =
|
|
18
|
+
(typeof EvoHubiaMcpPermissions)[keyof typeof EvoHubiaMcpPermissions];
|
|
@@ -12,7 +12,7 @@ export type EvoIntegrationsPermissions = (typeof EvoIntegrationsPermissions)[key
|
|
|
12
12
|
export declare const SYNC_RUN_PUBSUB_TOPIC = "evo-integrations.sync_runs";
|
|
13
13
|
export declare const SYNC_RUN_HANDLER = "evo-integrations.sync-run";
|
|
14
14
|
export type CapabilityEntity = "appointment" | "patient" | "payment" | "sync";
|
|
15
|
-
export type CapabilityName = "appointment.get" | "appointment.list" | "appointment.create" | "appointment.update" | "appointment.cancel" | "appointment.confirm" | "appointment.reschedule" | "patient.get" | "patient.list" | "patient.create" | "patient.update" | "patient.document.upload" | "payment.update" | "sync.appointments";
|
|
15
|
+
export type CapabilityName = "appointment.get" | "appointment.list" | "appointment.create" | "appointment.update" | "appointment.cancel" | "appointment.confirm" | "appointment.reschedule" | "patient.get" | "patient.list" | "patient.create" | "patient.update" | "patient.delete" | "patient.document.upload" | "payment.update" | "sync.appointments";
|
|
16
16
|
/**
|
|
17
17
|
* Capabilities obrigatórias em qualquer adapter. Sem elas, o adapter
|
|
18
18
|
* não pode ser ativado. `appointment.get` é fundamental pra auto-deleção
|