shopoflex-types 1.0.132 → 1.0.137

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.
Files changed (2) hide show
  1. package/dist/common.d.ts +3 -2
  2. package/package.json +1 -1
package/dist/common.d.ts CHANGED
@@ -437,9 +437,10 @@ export interface IDineInSettings {
437
437
  menuSettings?: IMenuSettings;
438
438
  openingHours?: IOpeningHours;
439
439
  }
440
- interface IAccountingConfig {
440
+ export type StandardType = 'lebanese' | 'ifrs' | 'gaap' | 'uk_gaap' | 'simple' | 'custom';
441
+ export interface IAccountingConfig {
441
442
  enabled?: boolean;
442
- accountingStandard?: 'lebanese' | 'ifrs' | 'gaap' | 'uk_gaap' | 'simple' | 'custom';
443
+ accountingStandard?: StandardType;
443
444
  fiscalYearStart?: Date;
444
445
  settings?: {
445
446
  enableAutomaticEntries?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopoflex-types",
3
- "version": "1.0.132",
3
+ "version": "1.0.137",
4
4
  "description": "Shared TypeScript types for Shopoflex applications",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",