evo360-types 1.3.401 → 1.3.403
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-crm/dic/zod-schemas.d.ts +3 -3
- package/dist/apps/evo-crm/dic/zod-schemas.js +1 -1
- package/dist/apps/evo-crm/dic/zod-schemas.ts +1 -1
- package/dist/types/evo-crm/dic/index.d.ts +1 -1
- package/dist/types/evo-crm/dic/index.ts +1 -1
- package/dist/types/shared/external-links.d.ts +6 -0
- package/dist/types/shared/external-links.js +6 -0
- package/dist/types/shared/external-links.ts +6 -0
- package/package.json +1 -1
|
@@ -101,7 +101,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
101
101
|
} & {
|
|
102
102
|
code: z.ZodString;
|
|
103
103
|
name: z.ZodString;
|
|
104
|
-
type_code: z.ZodString
|
|
104
|
+
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
105
105
|
type_name: z.ZodString;
|
|
106
106
|
typeRef: z.ZodAny;
|
|
107
107
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -134,7 +134,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
134
134
|
} & {
|
|
135
135
|
code: z.ZodString;
|
|
136
136
|
name: z.ZodString;
|
|
137
|
-
type_code: z.ZodString
|
|
137
|
+
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
138
138
|
type_name: z.ZodString;
|
|
139
139
|
typeRef: z.ZodAny;
|
|
140
140
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -167,7 +167,7 @@ export declare const zDistChannelSchema: z.ZodObject<{
|
|
|
167
167
|
} & {
|
|
168
168
|
code: z.ZodString;
|
|
169
169
|
name: z.ZodString;
|
|
170
|
-
type_code: z.ZodString
|
|
170
|
+
type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
171
171
|
type_name: z.ZodString;
|
|
172
172
|
typeRef: z.ZodAny;
|
|
173
173
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -14,7 +14,7 @@ exports.zDistChannelSchema = zod_schemas_1.zFireDocSchema
|
|
|
14
14
|
.extend({
|
|
15
15
|
code: zod_1.z.string().min(1).max(20),
|
|
16
16
|
name: zod_1.z.string().min(1).max(255),
|
|
17
|
-
type_code: zod_1.z.string().min(1).max(20),
|
|
17
|
+
type_code: zod_1.z.string().min(1).max(20).nullable().optional(),
|
|
18
18
|
type_name: zod_1.z.string().min(1).max(255),
|
|
19
19
|
typeRef: zod_1.z.any(),
|
|
20
20
|
tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
|
|
@@ -13,7 +13,7 @@ export const zDistChannelSchema = zFireDocSchema
|
|
|
13
13
|
.extend({
|
|
14
14
|
code: z.string().min(1).max(20),
|
|
15
15
|
name: z.string().min(1).max(255),
|
|
16
|
-
type_code: z.string().min(1).max(20),
|
|
16
|
+
type_code: z.string().min(1).max(20).nullable().optional(),
|
|
17
17
|
type_name: z.string().min(1).max(255),
|
|
18
18
|
typeRef: z.any(),
|
|
19
19
|
tags: z.array(zTagSchema).nullable().optional(),
|
|
@@ -29,7 +29,7 @@ export interface IDistChannelType extends IFireDoc {
|
|
|
29
29
|
export interface IDistChannel extends IFireDoc {
|
|
30
30
|
code: string;
|
|
31
31
|
name: string;
|
|
32
|
-
type_code?: string;
|
|
32
|
+
type_code?: string | null;
|
|
33
33
|
type_name?: string;
|
|
34
34
|
typeRef?: FirestoreDocumentReference;
|
|
35
35
|
tags?: ITag[] | null;
|
|
@@ -50,7 +50,7 @@ export interface IDistChannelType extends IFireDoc {
|
|
|
50
50
|
export interface IDistChannel extends IFireDoc {
|
|
51
51
|
code: string;
|
|
52
52
|
name: string;
|
|
53
|
-
type_code?: string;
|
|
53
|
+
type_code?: string | null;
|
|
54
54
|
type_name?: string;
|
|
55
55
|
typeRef?: FirestoreDocumentReference;
|
|
56
56
|
tags?: ITag[] | null;
|
|
@@ -5,6 +5,12 @@ export declare const ExternalObjectTypeEnum: {
|
|
|
5
5
|
readonly MedProfessional: "med_professional";
|
|
6
6
|
readonly MedAppointment: "med_appointment";
|
|
7
7
|
readonly ChatContact: "chat_contact";
|
|
8
|
+
/**
|
|
9
|
+
* Task do evo-task (feat-075). Permite ligar um objeto ao trabalho que o produziu —
|
|
10
|
+
* a mensagem de notificação aponta para a task `notification.send`, que porta o
|
|
11
|
+
* desfecho do envio (sent/failed + os codes da feat-072).
|
|
12
|
+
*/
|
|
13
|
+
readonly EvoTask: "evo_task";
|
|
8
14
|
/** Nexus FinOps billing document */
|
|
9
15
|
readonly NexBilling: "nex_billing";
|
|
10
16
|
readonly NexContract: "nex_contract";
|
|
@@ -9,6 +9,12 @@ exports.ExternalObjectTypeEnum = {
|
|
|
9
9
|
MedProfessional: "med_professional",
|
|
10
10
|
MedAppointment: "med_appointment",
|
|
11
11
|
ChatContact: "chat_contact",
|
|
12
|
+
/**
|
|
13
|
+
* Task do evo-task (feat-075). Permite ligar um objeto ao trabalho que o produziu —
|
|
14
|
+
* a mensagem de notificação aponta para a task `notification.send`, que porta o
|
|
15
|
+
* desfecho do envio (sent/failed + os codes da feat-072).
|
|
16
|
+
*/
|
|
17
|
+
EvoTask: "evo_task",
|
|
12
18
|
/** Nexus FinOps billing document */
|
|
13
19
|
NexBilling: "nex_billing",
|
|
14
20
|
NexContract: "nex_contract",
|
|
@@ -9,6 +9,12 @@ export const ExternalObjectTypeEnum = {
|
|
|
9
9
|
MedProfessional: "med_professional",
|
|
10
10
|
MedAppointment: "med_appointment",
|
|
11
11
|
ChatContact: "chat_contact",
|
|
12
|
+
/**
|
|
13
|
+
* Task do evo-task (feat-075). Permite ligar um objeto ao trabalho que o produziu —
|
|
14
|
+
* a mensagem de notificação aponta para a task `notification.send`, que porta o
|
|
15
|
+
* desfecho do envio (sent/failed + os codes da feat-072).
|
|
16
|
+
*/
|
|
17
|
+
EvoTask: "evo_task",
|
|
12
18
|
/** Nexus FinOps billing document */
|
|
13
19
|
NexBilling: "nex_billing",
|
|
14
20
|
NexContract: "nex_contract",
|