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.
- package/dist/common.d.ts +3 -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
|
-
|
|
440
|
+
export type StandardType = 'lebanese' | 'ifrs' | 'gaap' | 'uk_gaap' | 'simple' | 'custom';
|
|
441
|
+
export interface IAccountingConfig {
|
|
441
442
|
enabled?: boolean;
|
|
442
|
-
accountingStandard?:
|
|
443
|
+
accountingStandard?: StandardType;
|
|
443
444
|
fiscalYearStart?: Date;
|
|
444
445
|
settings?: {
|
|
445
446
|
enableAutomaticEntries?: boolean;
|