evo360-types 1.3.401 → 1.3.402

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.
@@ -101,8 +101,8 @@ export declare const zDistChannelSchema: z.ZodObject<{
101
101
  } & {
102
102
  code: z.ZodString;
103
103
  name: z.ZodString;
104
- type_code: z.ZodString;
105
- type_name: z.ZodString;
104
+ type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
105
+ type_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
106
106
  typeRef: z.ZodAny;
107
107
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
108
108
  name: z.ZodString;
@@ -134,8 +134,8 @@ export declare const zDistChannelSchema: z.ZodObject<{
134
134
  } & {
135
135
  code: z.ZodString;
136
136
  name: z.ZodString;
137
- type_code: z.ZodString;
138
- type_name: z.ZodString;
137
+ type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
138
+ type_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
139
139
  typeRef: z.ZodAny;
140
140
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
141
141
  name: z.ZodString;
@@ -167,8 +167,8 @@ export declare const zDistChannelSchema: z.ZodObject<{
167
167
  } & {
168
168
  code: z.ZodString;
169
169
  name: z.ZodString;
170
- type_code: z.ZodString;
171
- type_name: z.ZodString;
170
+ type_code: z.ZodOptional<z.ZodNullable<z.ZodString>>;
171
+ type_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
172
172
  typeRef: z.ZodAny;
173
173
  tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
174
174
  name: z.ZodString;
@@ -14,8 +14,8 @@ 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),
18
- type_name: zod_1.z.string().min(1).max(255),
17
+ type_code: zod_1.z.string().min(1).max(20).nullable().optional(),
18
+ type_name: zod_1.z.string().min(1).max(255).nullable().optional(),
19
19
  typeRef: zod_1.z.any(),
20
20
  tags: zod_1.z.array(zod_schemas_1.zTagSchema).nullable().optional(),
21
21
  })
@@ -13,8 +13,8 @@ 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),
17
- type_name: z.string().min(1).max(255),
16
+ type_code: z.string().min(1).max(20).nullable().optional(),
17
+ type_name: z.string().min(1).max(255).nullable().optional(),
18
18
  typeRef: z.any(),
19
19
  tags: z.array(zTagSchema).nullable().optional(),
20
20
  })
@@ -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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.401",
3
+ "version": "1.3.402",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",