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.
@@ -1,5 +1,5 @@
1
1
  import { z } from "zod";
2
- export declare const zChatBeeChannelSchema: z.ZodObject<z.objectUtil.extendShape<{
2
+ export declare const zChatBeeChannelConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
3
3
  id: z.ZodString;
4
4
  ref: z.ZodAny;
5
5
  tenant: z.ZodString;
@@ -1,11 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.zChatBeeChannelSchema = void 0;
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.zChatBeeChannelSchema = zod_schemas_1.zFireDocSchema
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 zChatBeeChannelSchema = zFireDocSchema
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 IChatBeeChannel extends IFireDoc {
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 IChatBeeChannel extends IFireDoc {
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";
@@ -9,3 +9,6 @@ export const PROTOCOLS_COLLECTION = "protocols";
9
9
 
10
10
  //protocols collection
11
11
  export const HSM_MESSAGES_COLLECTION = "hsm-messages";
12
+
13
+ //chatbee-channels collection
14
+ export const CHATBEE_CHANNELS_COLLECTION = "chatbee-channels";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.100",
3
+ "version": "1.3.102",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",