@harbortouch/skytab-analytics-report-utils 0.7.1 → 0.7.2

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/index.cjs CHANGED
@@ -819,7 +819,9 @@ var Report = {
819
819
  ITEM_TAX: "item-tax",
820
820
  EMPLOYEE_TIMECARD: "employee-timecard",
821
821
  EMPLOYEE_TIP: "employee-tip",
822
- SALES_BY_ITEM: "sales-by-item"
822
+ SALES_BY_ITEM: "sales-by-item",
823
+ DAILY_SALES: "daily-sales",
824
+ DAILY_SALES_LIVE: "daily-sales-live"
823
825
  };
824
826
  var REPORT_CONFIG_MAP = {
825
827
  "sales-summary": salesSummaryConfig,
@@ -830,7 +832,9 @@ var REPORT_CONFIG_MAP = {
830
832
  "item-tax": itemTaxConfig,
831
833
  "employee-timecard": employeeTimecardConfig,
832
834
  "employee-tip": null,
833
- "sales-by-item": salesByItemDetailConfig
835
+ "sales-by-item": salesByItemDetailConfig,
836
+ "daily-sales": dailySalesConfig,
837
+ "daily-sales-live": null
834
838
  };
835
839
  var getReportConfig = (reportType) => REPORT_CONFIG_MAP[reportType];
836
840
 
package/dist/index.js CHANGED
@@ -731,7 +731,9 @@ var Report = {
731
731
  ITEM_TAX: "item-tax",
732
732
  EMPLOYEE_TIMECARD: "employee-timecard",
733
733
  EMPLOYEE_TIP: "employee-tip",
734
- SALES_BY_ITEM: "sales-by-item"
734
+ SALES_BY_ITEM: "sales-by-item",
735
+ DAILY_SALES: "daily-sales",
736
+ DAILY_SALES_LIVE: "daily-sales-live"
735
737
  };
736
738
  var REPORT_CONFIG_MAP = {
737
739
  "sales-summary": salesSummaryConfig,
@@ -742,7 +744,9 @@ var REPORT_CONFIG_MAP = {
742
744
  "item-tax": itemTaxConfig,
743
745
  "employee-timecard": employeeTimecardConfig,
744
746
  "employee-tip": null,
745
- "sales-by-item": salesByItemDetailConfig
747
+ "sales-by-item": salesByItemDetailConfig,
748
+ "daily-sales": dailySalesConfig,
749
+ "daily-sales-live": null
746
750
  };
747
751
  var getReportConfig = (reportType) => REPORT_CONFIG_MAP[reportType];
748
752
 
package/dist/report.d.ts CHANGED
@@ -9,6 +9,8 @@ export declare const Report: {
9
9
  readonly EMPLOYEE_TIMECARD: "employee-timecard";
10
10
  readonly EMPLOYEE_TIP: "employee-tip";
11
11
  readonly SALES_BY_ITEM: "sales-by-item";
12
+ readonly DAILY_SALES: "daily-sales";
13
+ readonly DAILY_SALES_LIVE: "daily-sales-live";
12
14
  };
13
15
  export type ReportType = (typeof Report)[keyof typeof Report];
14
16
  export declare const getReportConfig: (reportType: ReportType) => ReportConfig<string> | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harbortouch/skytab-analytics-report-utils",
3
- "version": "0.7.1",
3
+ "version": "0.7.2",
4
4
  "description": "Centralized report column presentation configuration for SkyTab Analytics",
5
5
  "engines": {
6
6
  "node": ">=22.6.0",