evo360-types 1.3.100 → 1.3.102
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/apps/evo-chat/chatbee/zod-schemas.d.ts +1 -1
- package/dist/apps/evo-chat/chatbee/zod-schemas.js +2 -2
- package/dist/apps/evo-chat/chatbee/zod-schemas.ts +1 -1
- package/dist/types/evo-chat/chatbee/index.d.ts +1 -1
- package/dist/types/evo-chat/chatbee/index.ts +2 -2
- package/dist/types/evo-chat/fb_collections.d.ts +1 -0
- package/dist/types/evo-chat/fb_collections.js +3 -1
- package/dist/types/evo-chat/fb_collections.ts +3 -0
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.zChatBeeChannelConfigSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const zod_schemas_1 = require("../../shared/zod-schemas");
|
|
6
6
|
const zod_schemas_2 = require("../../evo-hub-ia/channel/zod-schemas");
|
|
7
7
|
// ───────── ChatBee Channel ─────────
|
|
8
|
-
exports.
|
|
8
|
+
exports.zChatBeeChannelConfigSchema = zod_schemas_1.zFireDocSchema
|
|
9
9
|
.extend({
|
|
10
10
|
name: zod_1.z.string(), // Nome do canal
|
|
11
11
|
channel_id: zod_1.z.string(), // ID do canal
|
|
@@ -3,7 +3,7 @@ import { zFireDocSchema } from "../../shared/zod-schemas";
|
|
|
3
3
|
import { zHubIAConfigSchema } from "../../evo-hub-ia/channel/zod-schemas";
|
|
4
4
|
|
|
5
5
|
// ───────── ChatBee Channel ─────────
|
|
6
|
-
export const
|
|
6
|
+
export const zChatBeeChannelConfigSchema = zFireDocSchema
|
|
7
7
|
.extend({
|
|
8
8
|
name: z.string(), // Nome do canal
|
|
9
9
|
channel_id: z.string(), // ID do canal
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { IHubIAConfig } from "../../evo-hub-ia/channel";
|
|
2
2
|
import { IFireDoc } from "../../shared";
|
|
3
|
-
export interface
|
|
3
|
+
export interface IChatBeeChannelConfig extends IFireDoc {
|
|
4
4
|
name: string;
|
|
5
5
|
channel_id: string;
|
|
6
6
|
number: string;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { IHubIAConfig } from "../../evo-hub-ia/channel";
|
|
2
2
|
import { IFireDoc } from "../../shared";
|
|
3
3
|
|
|
4
|
-
// ───────── ChatBee Channel ─────────
|
|
5
|
-
export interface
|
|
4
|
+
// ───────── ChatBee Channel Config ─────────
|
|
5
|
+
export interface IChatBeeChannelConfig extends IFireDoc {
|
|
6
6
|
name: string; // Nome do canal
|
|
7
7
|
channel_id: string; // ID do canal
|
|
8
8
|
number: string; // Número do canal
|
|
@@ -2,3 +2,4 @@ export declare const EVO_CHAT_APP = "evo-chat";
|
|
|
2
2
|
export declare const CONTACTS_COLLECTION = "contacts";
|
|
3
3
|
export declare const PROTOCOLS_COLLECTION = "protocols";
|
|
4
4
|
export declare const HSM_MESSAGES_COLLECTION = "hsm-messages";
|
|
5
|
+
export declare const CHATBEE_CHANNELS_COLLECTION = "chatbee-channels";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.HSM_MESSAGES_COLLECTION = exports.PROTOCOLS_COLLECTION = exports.CONTACTS_COLLECTION = exports.EVO_CHAT_APP = void 0;
|
|
3
|
+
exports.CHATBEE_CHANNELS_COLLECTION = exports.HSM_MESSAGES_COLLECTION = exports.PROTOCOLS_COLLECTION = exports.CONTACTS_COLLECTION = exports.EVO_CHAT_APP = void 0;
|
|
4
4
|
//EVO Chat Application Doc
|
|
5
5
|
exports.EVO_CHAT_APP = "evo-chat";
|
|
6
6
|
//contacts collection
|
|
@@ -9,3 +9,5 @@ exports.CONTACTS_COLLECTION = "contacts";
|
|
|
9
9
|
exports.PROTOCOLS_COLLECTION = "protocols";
|
|
10
10
|
//protocols collection
|
|
11
11
|
exports.HSM_MESSAGES_COLLECTION = "hsm-messages";
|
|
12
|
+
//chatbee-channels collection
|
|
13
|
+
exports.CHATBEE_CHANNELS_COLLECTION = "chatbee-channels";
|