@orderingstack/ordering-types 1.34.0 → 1.35.0
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/cjs/index.d.ts +8 -0
- package/dist/esm/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -698,6 +698,14 @@ export interface IFiscalizeData {
|
|
|
698
698
|
FiscalDeviceMemoryNo: string;
|
|
699
699
|
USN: string;
|
|
700
700
|
};
|
|
701
|
+
proforma?: boolean;
|
|
702
|
+
user?: string;
|
|
703
|
+
taxId?: string;
|
|
704
|
+
message?: string;
|
|
705
|
+
drsSummary?: Array<{
|
|
706
|
+
deposit: number;
|
|
707
|
+
count: number;
|
|
708
|
+
}>;
|
|
701
709
|
}
|
|
702
710
|
export declare const sizes: readonly [48, 57, 70, 100, 160, 250, 300, 500, 600, 900, 1000, 1920, 1080, 900];
|
|
703
711
|
export type TMediaSize = (typeof sizes)[number];
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -698,6 +698,14 @@ export interface IFiscalizeData {
|
|
|
698
698
|
FiscalDeviceMemoryNo: string;
|
|
699
699
|
USN: string;
|
|
700
700
|
};
|
|
701
|
+
proforma?: boolean;
|
|
702
|
+
user?: string;
|
|
703
|
+
taxId?: string;
|
|
704
|
+
message?: string;
|
|
705
|
+
drsSummary?: Array<{
|
|
706
|
+
deposit: number;
|
|
707
|
+
count: number;
|
|
708
|
+
}>;
|
|
701
709
|
}
|
|
702
710
|
export declare const sizes: readonly [48, 57, 70, 100, 160, 250, 300, 500, 600, 900, 1000, 1920, 1080, 900];
|
|
703
711
|
export type TMediaSize = (typeof sizes)[number];
|