@feedmepos/mf-e-invoice 0.0.25 → 0.0.27
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/{EInvoice-CNetp63c.js → EInvoice-CYuz8XHw.js} +4512 -4376
- package/dist/api/index.d.ts +5 -0
- package/dist/app.js +1 -1
- package/dist/{index.es-CxHMDeVY.js → index.es-ChQLAEFJ.js} +2 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/views/SubmitConsolidateInvoicesDialog.vue.d.ts +12 -0
- package/dist/views/submission.d.ts +13 -5
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
batch: {
|
|
3
|
+
type: NumberConstructor;
|
|
4
|
+
required: true;
|
|
5
|
+
};
|
|
6
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
batch: {
|
|
8
|
+
type: NumberConstructor;
|
|
9
|
+
required: true;
|
|
10
|
+
};
|
|
11
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
12
|
+
export default _default;
|
|
@@ -28,11 +28,19 @@ export type SubmissionDocument = _SubmissionDocument & {
|
|
|
28
28
|
export declare function formatSubmission(submission: FdoMyEInvoiceSubmission): Submission;
|
|
29
29
|
export declare function formatDocument(doc: FdoMyEInvoiceSubmissionDoc): SubmissionDocument;
|
|
30
30
|
export declare function convertToCSV(submission: Omit<FdoMyEInvoiceSubmission, "pf_documents">, bills: SubmissionDocument[]): string;
|
|
31
|
-
export declare function
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
31
|
+
export declare function getNextScheduledSubmissionDate({ today, activationDate, schedule, }: {
|
|
32
|
+
today: Date;
|
|
33
|
+
activationDate: Date;
|
|
34
|
+
schedule: {
|
|
35
|
+
day: number;
|
|
36
|
+
hour: number;
|
|
36
37
|
};
|
|
38
|
+
}): Date;
|
|
39
|
+
export declare function getSubmissionSalesRange({ submissionDate, activationDate, }: {
|
|
40
|
+
submissionDate: Date;
|
|
41
|
+
activationDate: Date;
|
|
42
|
+
}): {
|
|
43
|
+
startDate: string;
|
|
44
|
+
endDate: string;
|
|
37
45
|
};
|
|
38
46
|
export {};
|