@feedmepos/mf-e-invoice 0.0.33 → 0.0.34

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.
@@ -1,11 +1,11 @@
1
1
  declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
- batch: {
3
- type: NumberConstructor;
2
+ email: {
3
+ type: StringConstructor;
4
4
  required: true;
5
5
  };
6
6
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
7
- batch: {
8
- type: NumberConstructor;
7
+ email: {
8
+ type: StringConstructor;
9
9
  required: true;
10
10
  };
11
11
  }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -1,5 +1,5 @@
1
1
  import type { AnyEInvoiceSubmission } from "@/api";
2
- import type { FdoRestaurant, FdoStoreOption } from "@feedmepos/core/entity";
2
+ import type { FdoMyEInvoiceSubmission, FdoRestaurant, FdoStoreOption, FdoThEInvoiceSubmission } from "@feedmepos/core/entity";
3
3
  import type { RendererElement, RendererNode, VNode } from "vue";
4
4
  export type Field = {
5
5
  title: string;
@@ -15,6 +15,7 @@ export type SubmissionDocument = {
15
15
  bills?: Field[][];
16
16
  };
17
17
  export type Submission = {
18
+ raw: FdoMyEInvoiceSubmission | FdoThEInvoiceSubmission;
18
19
  submissionSummary: Field[];
19
20
  submissionDetails: Field[];
20
21
  merchant: Field[];
@@ -23,7 +24,7 @@ export type Submission = {
23
24
  export?: {
24
25
  [key: string]: () => void;
25
26
  };
26
- sendEmail?: () => void;
27
+ sendEmail?: (email: string) => void;
27
28
  canSendEmail: boolean;
28
29
  };
29
30
  export declare abstract class EInvoiceManager {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-e-invoice",
3
- "version": "0.0.33",
3
+ "version": "0.0.34",
4
4
  "files": [
5
5
  "dist"
6
6
  ],