@feedmepos/mf-e-invoice 0.0.42 → 0.0.44

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,13 @@
1
1
  import { type FdoMyEInvoiceSubmission, FdoRestaurant, FdoStoreOption, FdoMyEInvoiceRestaurantProfile, FdoMyEInvoiceMarketingProfile } from "@feedmepos/core/entity";
2
2
  import { EInvoiceManager, type Submission } from "../manager";
3
+ import type { AnyEInvoiceSubmission } from "@/api";
3
4
  declare class MalaysiaManager extends EInvoiceManager {
4
5
  get settingDialogComponent(): import("vue").DefineComponent<{}, {
5
6
  show: () => void;
6
7
  hide: () => void;
7
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
9
  formatSubmission(submission: FdoMyEInvoiceSubmission): Submission;
10
+ sortSubmissions(submissions: AnyEInvoiceSubmission[]): AnyEInvoiceSubmission[];
9
11
  initRestaurantProfile(restaurant: FdoRestaurant): FdoMyEInvoiceRestaurantProfile;
10
12
  initMarketingProfile(businessId: string, store?: FdoStoreOption): FdoMyEInvoiceMarketingProfile;
11
13
  }
@@ -35,6 +35,7 @@ export declare abstract class EInvoiceManager {
35
35
  private settingDialogRef;
36
36
  abstract get settingDialogComponent(): any;
37
37
  abstract formatSubmission(submission: AnyEInvoiceSubmission): Submission;
38
+ abstract sortSubmissions(submissions: AnyEInvoiceSubmission[]): AnyEInvoiceSubmission[];
38
39
  abstract initRestaurantProfile(restaurant: FdoRestaurant): any;
39
40
  abstract initMarketingProfile(businessId: string, store?: FdoStoreOption): any;
40
41
  exportSubmissions?(submissions: any[], dateRange: {
@@ -1,11 +1,13 @@
1
1
  import { type FdoThEInvoiceSubmission, FdoRestaurant, FdoStoreOption, FdoThEInvoiceRestaurantProfile, FdoThEInvoiceMarketingProfile } from "@feedmepos/core/entity";
2
2
  import { EInvoiceManager, type Submission } from "../manager";
3
+ import type { AnyEInvoiceSubmission } from "@/api";
3
4
  declare class ThailandManager extends EInvoiceManager {
4
5
  get settingDialogComponent(): import("vue").DefineComponent<{}, {
5
6
  show: () => void;
6
7
  hide: () => void;
7
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
9
  formatSubmission(submission: FdoThEInvoiceSubmission): Submission;
10
+ sortSubmissions(submissions: AnyEInvoiceSubmission[]): AnyEInvoiceSubmission[];
9
11
  exportSubmissions(submissions: FdoThEInvoiceSubmission[], dateRange: {
10
12
  startDate: string;
11
13
  endDate: string;
@@ -1,11 +1,13 @@
1
1
  import { FdoMyEInvoiceMarketingProfile, FdoMyEInvoiceRestaurantProfile, type FdoMyEInvoiceSubmission, FdoRestaurant, FdoStoreOption } from "@feedmepos/core/entity";
2
2
  import { EInvoiceManager, type Submission } from "../manager";
3
+ import type { AnyEInvoiceSubmission } from "@/api";
3
4
  declare class VietnamManager extends EInvoiceManager {
4
5
  get settingDialogComponent(): import("vue").DefineComponent<{}, {
5
6
  show: () => void;
6
7
  hide: () => void;
7
8
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
9
  formatSubmission(submission: FdoMyEInvoiceSubmission): Submission;
10
+ sortSubmissions(submissions: any[]): AnyEInvoiceSubmission[];
9
11
  initRestaurantProfile(restaurant: FdoRestaurant): FdoMyEInvoiceRestaurantProfile;
10
12
  initMarketingProfile(businessId: string, store?: FdoStoreOption): FdoMyEInvoiceMarketingProfile;
11
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-e-invoice",
3
- "version": "0.0.42",
3
+ "version": "0.0.44",
4
4
  "files": [
5
5
  "dist"
6
6
  ],