@feedmepos/mf-e-invoice 0.0.69 → 0.0.71
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.
|
@@ -233,6 +233,7 @@ export declare const FdoThEInvoiceBillRef: z.ZodObject<{
|
|
|
233
233
|
}>;
|
|
234
234
|
export declare const FdoThEInvoiceSubmission: z.ZodObject<{
|
|
235
235
|
_id: z.ZodEffects<z.ZodString, string, string>;
|
|
236
|
+
ref: z.ZodString;
|
|
236
237
|
submissionDate: z.ZodEffects<z.ZodString, string, string>;
|
|
237
238
|
submissionUid: z.ZodString;
|
|
238
239
|
merchant: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<z.extendShape<{
|
|
@@ -643,6 +644,7 @@ export declare const FdoThEInvoiceSubmission: z.ZodObject<{
|
|
|
643
644
|
precision: number;
|
|
644
645
|
};
|
|
645
646
|
}>;
|
|
647
|
+
status: z.ZodEnum<["InProgress", "Valid", "Invalid"]>;
|
|
646
648
|
updatedAt: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
647
649
|
req: z.ZodAny;
|
|
648
650
|
res: z.ZodAny;
|
|
@@ -651,7 +653,9 @@ export declare const FdoThEInvoiceSubmission: z.ZodObject<{
|
|
|
651
653
|
updatedAt?: string | null | undefined;
|
|
652
654
|
req?: any;
|
|
653
655
|
res?: any;
|
|
656
|
+
status: "Valid" | "Invalid" | "InProgress";
|
|
654
657
|
_id: string;
|
|
658
|
+
ref: string;
|
|
655
659
|
submissionUid: string;
|
|
656
660
|
submissionDate: string;
|
|
657
661
|
merchant: {
|
|
@@ -762,7 +766,9 @@ export declare const FdoThEInvoiceSubmission: z.ZodObject<{
|
|
|
762
766
|
updatedAt?: string | null | undefined;
|
|
763
767
|
req?: any;
|
|
764
768
|
res?: any;
|
|
769
|
+
status: "Valid" | "Invalid" | "InProgress";
|
|
765
770
|
_id: string;
|
|
771
|
+
ref: string;
|
|
766
772
|
submissionUid: string;
|
|
767
773
|
submissionDate: string;
|
|
768
774
|
merchant: {
|