@feedmepos/mf-e-invoice 0.0.82 → 0.0.83
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-_9SmcRVa.js → EInvoice-BlAc095N.js} +3971 -3912
- package/dist/app.js +1 -1
- package/dist/components/filter/Filter.vue.d.ts +8 -0
- package/dist/store/index.d.ts +38 -2
- package/dist/tsconfig.app.tsbuildinfo +1 -1
- package/package.json +1 -1
- /package/dist/components/{LocationSelect.vue.d.ts → filter/LocationSelect.vue.d.ts} +0 -0
package/dist/app.js
CHANGED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
searchValue: import("vue").PropType<any>;
|
|
3
|
+
exportSubmissions: import("vue").PropType<any>;
|
|
4
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
5
|
+
searchValue: import("vue").PropType<any>;
|
|
6
|
+
exportSubmissions: import("vue").PropType<any>;
|
|
7
|
+
}>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export default _default;
|
package/dist/store/index.d.ts
CHANGED
|
@@ -612,6 +612,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
612
612
|
}[]>;
|
|
613
613
|
manager: import("vue").ComputedRef<EInvoiceManager>;
|
|
614
614
|
locations: import("vue").ComputedRef<MerchantEInvoice[]>;
|
|
615
|
+
selectedLocationId: import("vue").Ref<string, string>;
|
|
616
|
+
selectedLocation: import("vue").ComputedRef<MerchantEInvoice | undefined>;
|
|
617
|
+
dateRange: import("vue").Ref<{
|
|
618
|
+
startDate: string;
|
|
619
|
+
endDate: string;
|
|
620
|
+
}, {
|
|
621
|
+
startDate: string;
|
|
622
|
+
endDate: string;
|
|
623
|
+
} | {
|
|
624
|
+
startDate: string;
|
|
625
|
+
endDate: string;
|
|
626
|
+
}>;
|
|
615
627
|
countryTaxes: import("vue").ComputedRef<{
|
|
616
628
|
[code: string]: {
|
|
617
629
|
taxLevel?: number | null | undefined;
|
|
@@ -643,7 +655,7 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
643
655
|
updateSettings: (newSettings: FdoMyEInvoiceSetting) => Promise<void>;
|
|
644
656
|
getMenu: () => Promise<void>;
|
|
645
657
|
getMarketingMenu: () => Promise<void>;
|
|
646
|
-
}, "marketing" | "restaurants" | "settings" | "menu" | "marketingMenu">, Pick<{
|
|
658
|
+
}, "marketing" | "restaurants" | "settings" | "menu" | "marketingMenu" | "selectedLocationId" | "dateRange">, Pick<{
|
|
647
659
|
restaurants: import("vue").Ref<Record<string, RestaurantEInvoice>, Record<string, RestaurantEInvoice>>;
|
|
648
660
|
marketing: import("vue").Ref<{
|
|
649
661
|
id: string;
|
|
@@ -1243,6 +1255,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1243
1255
|
}[]>;
|
|
1244
1256
|
manager: import("vue").ComputedRef<EInvoiceManager>;
|
|
1245
1257
|
locations: import("vue").ComputedRef<MerchantEInvoice[]>;
|
|
1258
|
+
selectedLocationId: import("vue").Ref<string, string>;
|
|
1259
|
+
selectedLocation: import("vue").ComputedRef<MerchantEInvoice | undefined>;
|
|
1260
|
+
dateRange: import("vue").Ref<{
|
|
1261
|
+
startDate: string;
|
|
1262
|
+
endDate: string;
|
|
1263
|
+
}, {
|
|
1264
|
+
startDate: string;
|
|
1265
|
+
endDate: string;
|
|
1266
|
+
} | {
|
|
1267
|
+
startDate: string;
|
|
1268
|
+
endDate: string;
|
|
1269
|
+
}>;
|
|
1246
1270
|
countryTaxes: import("vue").ComputedRef<{
|
|
1247
1271
|
[code: string]: {
|
|
1248
1272
|
taxLevel?: number | null | undefined;
|
|
@@ -1274,7 +1298,7 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1274
1298
|
updateSettings: (newSettings: FdoMyEInvoiceSetting) => Promise<void>;
|
|
1275
1299
|
getMenu: () => Promise<void>;
|
|
1276
1300
|
getMarketingMenu: () => Promise<void>;
|
|
1277
|
-
}, "manager" | "locations" | "countryTaxes" | "exemptedTax">, Pick<{
|
|
1301
|
+
}, "manager" | "locations" | "selectedLocation" | "countryTaxes" | "exemptedTax">, Pick<{
|
|
1278
1302
|
restaurants: import("vue").Ref<Record<string, RestaurantEInvoice>, Record<string, RestaurantEInvoice>>;
|
|
1279
1303
|
marketing: import("vue").Ref<{
|
|
1280
1304
|
id: string;
|
|
@@ -1874,6 +1898,18 @@ export declare const useStore: import("pinia").StoreDefinition<"mf-e-invoice-app
|
|
|
1874
1898
|
}[]>;
|
|
1875
1899
|
manager: import("vue").ComputedRef<EInvoiceManager>;
|
|
1876
1900
|
locations: import("vue").ComputedRef<MerchantEInvoice[]>;
|
|
1901
|
+
selectedLocationId: import("vue").Ref<string, string>;
|
|
1902
|
+
selectedLocation: import("vue").ComputedRef<MerchantEInvoice | undefined>;
|
|
1903
|
+
dateRange: import("vue").Ref<{
|
|
1904
|
+
startDate: string;
|
|
1905
|
+
endDate: string;
|
|
1906
|
+
}, {
|
|
1907
|
+
startDate: string;
|
|
1908
|
+
endDate: string;
|
|
1909
|
+
} | {
|
|
1910
|
+
startDate: string;
|
|
1911
|
+
endDate: string;
|
|
1912
|
+
}>;
|
|
1877
1913
|
countryTaxes: import("vue").ComputedRef<{
|
|
1878
1914
|
[code: string]: {
|
|
1879
1915
|
taxLevel?: number | null | undefined;
|