@posx/core 5.5.26 → 5.5.28
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 +3 -1
- package/build/index.js +1 -1
- package/package.json +1 -1
- package/package.publish.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -30,6 +30,7 @@ declare module '@posx/core/index' {
|
|
|
30
30
|
export * from '@posx/core/utils/autoquery.utils';
|
|
31
31
|
export * from '@posx/core/libs/electron.socket';
|
|
32
32
|
export * from '@posx/core/types/condition.type';
|
|
33
|
+
export * from '@posx/core/types/merchant.type';
|
|
33
34
|
|
|
34
35
|
}
|
|
35
36
|
declare module '@posx/core/libs/FindOptions' {
|
|
@@ -3317,7 +3318,8 @@ declare module '@posx/core/types/printer.type' {
|
|
|
3317
3318
|
export enum PrintJobStatus {
|
|
3318
3319
|
Queued = "queued",
|
|
3319
3320
|
Printed = "printed",
|
|
3320
|
-
Failed = "failed"
|
|
3321
|
+
Failed = "failed",
|
|
3322
|
+
Expired = "expired"
|
|
3321
3323
|
}
|
|
3322
3324
|
export interface IPrintJob extends IAppCoreModel {
|
|
3323
3325
|
printer_name: string;
|