@feedmepos/mf-e-invoice 0.0.53 → 0.0.55
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-DIrn-EPR.js +32270 -0
- package/dist/api/index.d.ts +7 -4
- package/dist/app.js +14 -14
- package/dist/main.d.ts +1 -1
- package/dist/store/index.d.ts +1500 -131
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/type/index.d.ts +2 -0
- package/dist/type/thailand/e-invoice-profile.do.d.ts +1449 -0
- package/dist/type/thailand/e-invoice.do.d.ts +842 -0
- package/dist/type/thailand/e-invoice.dto.d.ts +541 -0
- package/dist/type/thailand/index.d.ts +3 -0
- package/dist/type/vietnam/e-invoice-profile.do.d.ts +170 -197
- package/dist/type/vietnam/e-invoice.do.d.ts +72 -82
- package/dist/type/vietnam/e-invoice.dto.d.ts +14 -14
- package/dist/type/vietnam/index.d.ts +4 -0
- package/dist/types.d.ts +6 -4
- package/dist/views/manager/thailand/ThailandProfileDialog.vue.d.ts +1 -1
- package/dist/views/manager/thailand/data.d.ts +2 -1
- package/dist/views/manager/thailand/submission.d.ts +1 -1
- package/dist/views/manager/thailand/thailand.d.ts +2 -1
- package/dist/views/manager/vietnam/VietnamProfileDialog.vue.d.ts +2 -7
- package/dist/views/manager/vietnam/data.d.ts +4 -3
- package/dist/views/manager/vietnam/submission.d.ts +1 -1
- package/dist/views/manager/vietnam/vietnam.d.ts +6 -6
- package/package.json +6 -9
- package/dist/EInvoice-El02J1ap.js +0 -47687
- package/dist/html2canvas.esm-DgRhIRvu.js +0 -4870
- package/dist/index.es-CUExVX41.js +0 -5631
- package/dist/purify.es-Cuujoyyu.js +0 -553
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { AnyEInvoiceSubmission } from "@/api";
|
|
2
|
-
import
|
|
3
|
-
import { FdoMyEInvoiceMarketingProfile, FdoMyEInvoiceRestaurantProfile, type FdoMyEInvoiceSubmission, FdoRestaurant, FdoStoreOption } from "@feedmepos/core/entity";
|
|
2
|
+
import { FdoRestaurant, FdoStoreOption } from "@feedmepos/core/entity";
|
|
4
3
|
import { EInvoiceManager, type Submission } from "../manager";
|
|
4
|
+
import type { FdoVnEInvoiceMarketingProfile, FdoVnEInvoiceRestaurantProfile, FdoVnEInvoiceSubmission } from "@/type";
|
|
5
5
|
declare class VietnamManager extends EInvoiceManager {
|
|
6
6
|
get settingDialogComponent(): import("vue").DefineComponent<{}, {
|
|
7
7
|
show: () => void;
|
|
@@ -11,14 +11,14 @@ declare class VietnamManager extends EInvoiceManager {
|
|
|
11
11
|
startDate: string;
|
|
12
12
|
endDate: string;
|
|
13
13
|
};
|
|
14
|
-
formatSubmission(submission:
|
|
14
|
+
formatSubmission(submission: FdoVnEInvoiceSubmission): Submission;
|
|
15
15
|
sortSubmissions(submissions: any[]): AnyEInvoiceSubmission[];
|
|
16
16
|
exportSubmissions(submissions: FdoVnEInvoiceSubmission[], dateRange: {
|
|
17
17
|
startDate: string;
|
|
18
18
|
endDate: string;
|
|
19
|
-
}): void
|
|
20
|
-
initRestaurantProfile(restaurant: FdoRestaurant):
|
|
21
|
-
initMarketingProfile(businessId: string, store?: FdoStoreOption):
|
|
19
|
+
}): Promise<void>;
|
|
20
|
+
initRestaurantProfile(restaurant: FdoRestaurant): FdoVnEInvoiceRestaurantProfile;
|
|
21
|
+
initMarketingProfile(businessId: string, store?: FdoStoreOption): FdoVnEInvoiceMarketingProfile;
|
|
22
22
|
}
|
|
23
23
|
export declare const vietnamManager: VietnamManager;
|
|
24
24
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmepos/mf-e-invoice",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.55",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -45,17 +45,14 @@
|
|
|
45
45
|
"axios": "^1.6.2",
|
|
46
46
|
"dayjs": "^1.11.10",
|
|
47
47
|
"dotenv-cli": "^7.4.2",
|
|
48
|
-
"jspdf": "^3.0.1",
|
|
49
|
-
"jspdf-autotable": "^5.0.2",
|
|
50
48
|
"libphonenumber-js": "^1.12.10",
|
|
51
49
|
"pinia": "^2.1.7",
|
|
52
50
|
"vue": "^3.4.21",
|
|
53
|
-
"vue-router": "^4.3.0"
|
|
54
|
-
"xlsx": "^0.18.5"
|
|
51
|
+
"vue-router": "^4.3.0"
|
|
55
52
|
},
|
|
56
53
|
"devDependencies": {
|
|
57
54
|
"@casl/ability": "^3.4.0",
|
|
58
|
-
"@rushstack/eslint-patch": "^1.
|
|
55
|
+
"@rushstack/eslint-patch": "^1.15.0",
|
|
59
56
|
"@tsconfig/node18": "^18.2.2",
|
|
60
57
|
"@types/node": "^18.17.17",
|
|
61
58
|
"@vitejs/plugin-vue": "^4.3.4",
|
|
@@ -64,9 +61,9 @@
|
|
|
64
61
|
"@vue/tsconfig": "^0.4.0",
|
|
65
62
|
"autoprefixer": "^10.4.16",
|
|
66
63
|
"cross-env": "^7.0.3",
|
|
67
|
-
"eslint": "^8.49.0",
|
|
68
64
|
"eslint-plugin-tailwindcss": "^3.14.0",
|
|
69
|
-
"eslint
|
|
65
|
+
"eslint": "^8.54.0",
|
|
66
|
+
"eslint-plugin-vue": "^9.19.2",
|
|
70
67
|
"jsdom": "^24.0.0",
|
|
71
68
|
"npm-run-all2": "^6.0.6",
|
|
72
69
|
"postcss": "^8.4.31",
|
|
@@ -78,4 +75,4 @@
|
|
|
78
75
|
"vitest": "^2.0.0",
|
|
79
76
|
"vue-tsc": "^1.8.11"
|
|
80
77
|
}
|
|
81
|
-
}
|
|
78
|
+
}
|