@posx/core 5.5.393 → 5.5.396

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/build/index.d.ts CHANGED
@@ -1883,6 +1883,8 @@ interface ICoreItem extends IProductBase {
1883
1883
  * Recipe of the modifier
1884
1884
  */
1885
1885
  recipe: string;
1886
+ /** Whether remark is disabled for this item */
1887
+ is_remark_disabled: boolean;
1886
1888
  }
1887
1889
  declare class CoreItem extends ProductBase implements ICoreItem {
1888
1890
  image_url: string;
@@ -1902,6 +1904,7 @@ declare class CoreItem extends ProductBase implements ICoreItem {
1902
1904
  price_adjustable: boolean;
1903
1905
  is_sold_out: boolean;
1904
1906
  recipe: string;
1907
+ is_remark_disabled: boolean;
1905
1908
  uid: string;
1906
1909
  constructor();
1907
1910
  }
@@ -4174,6 +4177,10 @@ interface IPrintJob extends IAppCoreModel {
4174
4177
  /** Print sequence order (lower number prints first) */
4175
4178
  print_sequence?: number;
4176
4179
  meta: Record<string, unknown>;
4180
+ /** USB device ID (runtime dynamic) */
4181
+ usb_device_id?: number;
4182
+ /** USB serial number for persistent device identification */
4183
+ usb_serial_number?: string;
4177
4184
  }
4178
4185
  declare class PrintJob extends AppBaseModel implements IPrintJob {
4179
4186
  printer_name: string;
@@ -4231,6 +4238,8 @@ interface IPrinter extends IAppBaseModel {
4231
4238
  retries: number;
4232
4239
  /** Print sequence order (lower number prints first) */
4233
4240
  print_sequence?: number;
4241
+ /** USB serial number for persistent device identification */
4242
+ usb_serial_number?: string;
4234
4243
  }
4235
4244
  declare class Printer extends AppBaseModel implements IPrinter {
4236
4245
  device_uid: string;