evo360-types 1.3.168 → 1.3.172
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.
|
@@ -2,3 +2,8 @@ export * from "./fb_collections";
|
|
|
2
2
|
export * from "./contact";
|
|
3
3
|
export * from "./message";
|
|
4
4
|
export * from "./chatbee";
|
|
5
|
+
export declare const EvoChatPermissions: {
|
|
6
|
+
readonly Read: "evo_chat_read";
|
|
7
|
+
readonly Write: "evo_chat_write";
|
|
8
|
+
};
|
|
9
|
+
export type EvoChatPermissions = (typeof EvoChatPermissions)[keyof typeof EvoChatPermissions];
|
|
@@ -14,7 +14,13 @@ 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.EvoChatPermissions = void 0;
|
|
17
18
|
__exportStar(require("./fb_collections"), exports);
|
|
18
19
|
__exportStar(require("./contact"), exports);
|
|
19
20
|
__exportStar(require("./message"), exports);
|
|
20
21
|
__exportStar(require("./chatbee"), exports);
|
|
22
|
+
// Permissões para o evo-chat
|
|
23
|
+
exports.EvoChatPermissions = {
|
|
24
|
+
Read: "evo_chat_read",
|
|
25
|
+
Write: "evo_chat_write",
|
|
26
|
+
};
|
|
@@ -2,3 +2,12 @@ export * from "./fb_collections";
|
|
|
2
2
|
export * from "./contact";
|
|
3
3
|
export * from "./message";
|
|
4
4
|
export * from "./chatbee";
|
|
5
|
+
|
|
6
|
+
// Permissões para o evo-chat
|
|
7
|
+
export const EvoChatPermissions = {
|
|
8
|
+
Read: "evo_chat_read",
|
|
9
|
+
Write: "evo_chat_write",
|
|
10
|
+
} as const;
|
|
11
|
+
|
|
12
|
+
export type EvoChatPermissions =
|
|
13
|
+
(typeof EvoChatPermissions)[keyof typeof EvoChatPermissions];
|