evo360-types 1.3.120 → 1.3.121
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/contact/zod-schemas.d.ts +3 -0
- package/dist/apps/evo-chat/contact/zod-schemas.js +1 -0
- package/dist/apps/evo-chat/contact/zod-schemas.ts +1 -0
- package/dist/types/evo-chat/contact/index.d.ts +1 -0
- package/dist/types/evo-chat/contact/index.ts +1 -0
- package/package.json +1 -1
|
@@ -196,6 +196,7 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
196
196
|
hub_ia_status: z.ZodOptional<z.ZodString>;
|
|
197
197
|
hub_ia_suggestion: z.ZodOptional<z.ZodString>;
|
|
198
198
|
hub_ia_action_suggestion: z.ZodOptional<z.ZodString>;
|
|
199
|
+
hub_ia_raised_hand: z.ZodOptional<z.ZodBoolean>;
|
|
199
200
|
hub_ia_mode: z.ZodOptional<z.ZodString>;
|
|
200
201
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
201
202
|
name: z.ZodString;
|
|
@@ -414,6 +415,7 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
414
415
|
hub_ia_status: z.ZodOptional<z.ZodString>;
|
|
415
416
|
hub_ia_suggestion: z.ZodOptional<z.ZodString>;
|
|
416
417
|
hub_ia_action_suggestion: z.ZodOptional<z.ZodString>;
|
|
418
|
+
hub_ia_raised_hand: z.ZodOptional<z.ZodBoolean>;
|
|
417
419
|
hub_ia_mode: z.ZodOptional<z.ZodString>;
|
|
418
420
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
419
421
|
name: z.ZodString;
|
|
@@ -632,6 +634,7 @@ export declare const zChatContactSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
632
634
|
hub_ia_status: z.ZodOptional<z.ZodString>;
|
|
633
635
|
hub_ia_suggestion: z.ZodOptional<z.ZodString>;
|
|
634
636
|
hub_ia_action_suggestion: z.ZodOptional<z.ZodString>;
|
|
637
|
+
hub_ia_raised_hand: z.ZodOptional<z.ZodBoolean>;
|
|
635
638
|
hub_ia_mode: z.ZodOptional<z.ZodString>;
|
|
636
639
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
637
640
|
name: z.ZodString;
|
|
@@ -16,6 +16,7 @@ exports.zChatContactSchema = zod_schemas_1.zFireDocSchema
|
|
|
16
16
|
hub_ia_status: zod_1.z.string().optional(), // processing / done
|
|
17
17
|
hub_ia_suggestion: zod_1.z.string().optional(), // Sugestão de resposta
|
|
18
18
|
hub_ia_action_suggestion: zod_1.z.string().optional(), // Sugestão de ação da IA
|
|
19
|
+
hub_ia_raised_hand: zod_1.z.boolean().optional(), // IA levantou a mão - pede interação humana
|
|
19
20
|
hub_ia_mode: zod_1.z.string().optional(), // reply, suggestion
|
|
20
21
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
21
22
|
userRef: zod_1.z.any(),
|
|
@@ -18,6 +18,7 @@ export const zChatContactSchema = zFireDocSchema
|
|
|
18
18
|
hub_ia_status: z.string().optional(), // processing / done
|
|
19
19
|
hub_ia_suggestion: z.string().optional(), // Sugestão de resposta
|
|
20
20
|
hub_ia_action_suggestion: z.string().optional(), // Sugestão de ação da IA
|
|
21
|
+
hub_ia_raised_hand: z.boolean().optional(), // IA levantou a mão - pede interação humana
|
|
21
22
|
hub_ia_mode: z.string().optional(), // reply, suggestion
|
|
22
23
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
23
24
|
userRef: z.any(),
|
|
@@ -11,6 +11,7 @@ export interface IChatContact extends IFireDoc {
|
|
|
11
11
|
hub_ia_status?: string;
|
|
12
12
|
hub_ia_suggestion?: string;
|
|
13
13
|
hub_ia_action_suggestion?: string;
|
|
14
|
+
hub_ia_raised_hand?: boolean;
|
|
14
15
|
hub_ia_mode?: string;
|
|
15
16
|
tags?: ITag[] | null;
|
|
16
17
|
userRef?: FirestoreDocumentReference;
|
|
@@ -16,6 +16,7 @@ export interface IChatContact extends IFireDoc {
|
|
|
16
16
|
hub_ia_status?: string; // processing / done
|
|
17
17
|
hub_ia_suggestion?: string; // Sugestão de resposta
|
|
18
18
|
hub_ia_action_suggestion?: string; // Sugestão de ação da IA
|
|
19
|
+
hub_ia_raised_hand?: boolean; // IA levantou a mão - pede interação humana
|
|
19
20
|
hub_ia_mode?: string; // reply, suggestion
|
|
20
21
|
tags?: ITag[] | null;
|
|
21
22
|
userRef?: FirestoreDocumentReference;
|