@feedmepos/mf-e-invoice 0.0.43 → 0.0.44-prod
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-BkPPqSWv.js → EInvoice-BAOcnjxn.js} +5596 -5548
- package/dist/api/index.d.ts +6 -0
- package/dist/app.js +1 -1
- package/dist/{index.es-CY8_6fQy.js → index.es-B77CeB8Y.js} +118 -118
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/dist/views/manager/malaysia/malaysia.d.ts +2 -0
- package/dist/views/manager/manager.d.ts +1 -0
- package/dist/views/manager/thailand/thailand.d.ts +2 -0
- package/dist/views/manager/vietnam/vietnam.d.ts +2 -0
- package/package.json +1 -1
package/dist/api/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export declare const api: {
|
|
|
17
17
|
getBusinessMarketingMenu: typeof getBusinessMarketingMenu;
|
|
18
18
|
sendSubmissionEmail: typeof sendSubmissionEmail;
|
|
19
19
|
submitConsolidateInvoices: typeof submitConsolidateInvoices;
|
|
20
|
+
getVnPdfLink: typeof getVnPdfLink;
|
|
20
21
|
};
|
|
21
22
|
declare function getRestaurantProfile(restaurantId: string, custom?: CustomApiConfig): Promise<AnyEInvoiceMerchantProfile | null>;
|
|
22
23
|
declare function getMarketingProfile(businessId: string, custom?: CustomApiConfig): Promise<AnyEInvoiceMerchantProfile | null>;
|
|
@@ -38,6 +39,11 @@ declare function getSubmissions(merchantId: string, filter: {
|
|
|
38
39
|
}, custom?: CustomApiConfig): Promise<AnyEInvoiceSubmission[]>;
|
|
39
40
|
declare function getBusinessMenu(businessId: string, custom?: CustomApiConfig): Promise<FdtoEInvoiceItemSetting[]>;
|
|
40
41
|
declare function getBusinessMarketingMenu(businessId: string, custom?: CustomApiConfig): Promise<FdtoEInvoiceItemSetting[]>;
|
|
42
|
+
declare function getVnPdfLink({ transactionId, restaurantId, businessId }: {
|
|
43
|
+
transactionId: string;
|
|
44
|
+
businessId: string;
|
|
45
|
+
restaurantId: string;
|
|
46
|
+
}): Promise<any>;
|
|
41
47
|
interface CustomApiConfig {
|
|
42
48
|
businessId?: string;
|
|
43
49
|
userToken?: string;
|
package/dist/app.js
CHANGED