@posx/core 5.3.60 → 5.3.62
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 +9 -3
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -3136,6 +3136,8 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3136
3136
|
}
|
|
3137
3137
|
export interface IPrintJob extends IAppCoreModel {
|
|
3138
3138
|
printer_name: string;
|
|
3139
|
+
/** Actual printer name using printer driver*/
|
|
3140
|
+
driver_printer_name: string;
|
|
3139
3141
|
printer_ip: string;
|
|
3140
3142
|
printer_uid: string;
|
|
3141
3143
|
printer_type: PrinterType;
|
|
@@ -3151,9 +3153,12 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3151
3153
|
device_uid_to_print: string;
|
|
3152
3154
|
/** Designated Table Sections */
|
|
3153
3155
|
designated_table_section_uids: string[];
|
|
3156
|
+
/** Job ID */
|
|
3157
|
+
job_id: number;
|
|
3154
3158
|
}
|
|
3155
3159
|
export class PrintJob extends AppBaseModel implements IPrintJob {
|
|
3156
3160
|
printer_name: string;
|
|
3161
|
+
driver_printer_name: string;
|
|
3157
3162
|
printer_ip: string;
|
|
3158
3163
|
printer_uid: string;
|
|
3159
3164
|
printer_type: PrinterType;
|
|
@@ -3168,6 +3173,7 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3168
3173
|
printed: number;
|
|
3169
3174
|
device_uid_to_print: string;
|
|
3170
3175
|
designated_table_section_uids: any[];
|
|
3176
|
+
job_id: number;
|
|
3171
3177
|
constructor(printer: IPrinter, printData: IPrintCommand, saveOnly?: boolean, printTimes?: number);
|
|
3172
3178
|
}
|
|
3173
3179
|
export enum PrinterStatus {
|
|
@@ -3179,8 +3185,8 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3179
3185
|
device_uid: string;
|
|
3180
3186
|
/** Printer type */
|
|
3181
3187
|
type: PrinterType;
|
|
3182
|
-
/** Actual printer name */
|
|
3183
|
-
|
|
3188
|
+
/** Actual printer name using printer driver*/
|
|
3189
|
+
driver_printer_name: string;
|
|
3184
3190
|
/** Backup printer ID */
|
|
3185
3191
|
fallback_printer_uid: number;
|
|
3186
3192
|
/** Printer protocol */
|
|
@@ -3201,7 +3207,7 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3201
3207
|
export class Printer extends AppBaseModel implements IPrinter {
|
|
3202
3208
|
device_uid: string;
|
|
3203
3209
|
type: PrinterType;
|
|
3204
|
-
|
|
3210
|
+
driver_printer_name: string;
|
|
3205
3211
|
fallback_printer_uid: number;
|
|
3206
3212
|
protocol: PrinterProtocols;
|
|
3207
3213
|
connection_type: PrinterConnections;
|