evo360-types 1.3.101 → 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.101",
3
+ "version": "1.3.102",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",