evo360-types 1.3.247 → 1.3.249
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.
|
@@ -10879,6 +10879,7 @@ export declare const zServiceInvoiceSchema: z.ZodObject<{
|
|
|
10879
10879
|
label: z.ZodOptional<z.ZodString>;
|
|
10880
10880
|
ref: z.ZodOptional<z.ZodAny>;
|
|
10881
10881
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
10882
|
+
externalLinkKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
10882
10883
|
evo_chat: z.ZodOptional<z.ZodObject<{
|
|
10883
10884
|
notifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10884
10885
|
at: z.ZodEffects<z.ZodDate, Date, unknown>;
|
|
@@ -11297,6 +11298,7 @@ export declare const zServiceInvoiceSchema: z.ZodObject<{
|
|
|
11297
11298
|
label: z.ZodOptional<z.ZodString>;
|
|
11298
11299
|
ref: z.ZodOptional<z.ZodAny>;
|
|
11299
11300
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
11301
|
+
externalLinkKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11300
11302
|
evo_chat: z.ZodOptional<z.ZodObject<{
|
|
11301
11303
|
notifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11302
11304
|
at: z.ZodEffects<z.ZodDate, Date, unknown>;
|
|
@@ -11715,6 +11717,7 @@ export declare const zServiceInvoiceSchema: z.ZodObject<{
|
|
|
11715
11717
|
label: z.ZodOptional<z.ZodString>;
|
|
11716
11718
|
ref: z.ZodOptional<z.ZodAny>;
|
|
11717
11719
|
}, z.ZodTypeAny, "passthrough">>, "many">>;
|
|
11720
|
+
externalLinkKeys: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
11718
11721
|
evo_chat: z.ZodOptional<z.ZodObject<{
|
|
11719
11722
|
notifications: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
11720
11723
|
at: z.ZodEffects<z.ZodDate, Date, unknown>;
|
|
@@ -570,6 +570,7 @@ exports.zServiceInvoiceSchema = zod_schemas_1.zFireDocSchema
|
|
|
570
570
|
taker: exports.zInvoiceTakerRefSchema,
|
|
571
571
|
source: exports.zInvoiceSourceRefSchema.optional(),
|
|
572
572
|
externalLinks: zod_1.z.array(zod_schemas_2.zExternalLinkSchema).optional(),
|
|
573
|
+
externalLinkKeys: zod_1.z.array(zod_1.z.string()).optional(),
|
|
573
574
|
evo_chat: zod_1.z
|
|
574
575
|
.object({
|
|
575
576
|
notifications: zod_1.z
|
|
@@ -621,6 +621,7 @@ export const zServiceInvoiceSchema = zFireDocSchema
|
|
|
621
621
|
taker: zInvoiceTakerRefSchema,
|
|
622
622
|
source: zInvoiceSourceRefSchema.optional(),
|
|
623
623
|
externalLinks: z.array(zExternalLinkSchema).optional(),
|
|
624
|
+
externalLinkKeys: z.array(z.string()).optional(),
|
|
624
625
|
evo_chat: z
|
|
625
626
|
.object({
|
|
626
627
|
notifications: z
|
|
@@ -123,6 +123,7 @@ export interface IServiceInvoice extends IFireDoc {
|
|
|
123
123
|
taker: IInvoiceTakerRef;
|
|
124
124
|
source?: IInvoiceSourceRef;
|
|
125
125
|
externalLinks?: IExternalLink[];
|
|
126
|
+
externalLinkKeys?: string[];
|
|
126
127
|
evo_chat?: {
|
|
127
128
|
notifications?: IInvoiceChatNotification[];
|
|
128
129
|
};
|
|
@@ -171,6 +171,7 @@ export interface IServiceInvoice extends IFireDoc {
|
|
|
171
171
|
|
|
172
172
|
// Links to other documents (crm_lead, med_patient, etc.)
|
|
173
173
|
externalLinks?: IExternalLink[];
|
|
174
|
+
externalLinkKeys?: string[];
|
|
174
175
|
|
|
175
176
|
// Chat notifications (e.g. NFSe sent via WhatsApp)
|
|
176
177
|
evo_chat?: { notifications?: IInvoiceChatNotification[] };
|