@final-commerce/command-frame 0.3.1 → 0.3.2-beta.1
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.
|
@@ -29,6 +29,15 @@ export interface PrintOptions {
|
|
|
29
29
|
};
|
|
30
30
|
paperSize?: string;
|
|
31
31
|
width?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Routing tag for multi-printer stations (FI-7113): names the print CATEGORY
|
|
34
|
+
* (e.g. "receipt", "kitchen"), never a printer. The station maps tags to its
|
|
35
|
+
* connected printers; at print time the host resolves the tag and prints to
|
|
36
|
+
* every matched printer at that printer's own paper size/margins. Declare the
|
|
37
|
+
* flow's tag set in flow-settings (`print.tags`) so the station can offer them
|
|
38
|
+
* for mapping. Untagged prints keep the station's default behavior.
|
|
39
|
+
*/
|
|
40
|
+
tag?: string;
|
|
32
41
|
}
|
|
33
42
|
export interface PrintResponse {
|
|
34
43
|
success: boolean;
|