@carlosdiazz/lottodiz-shared 2.9.6 → 2.9.8

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.
@@ -5,4 +5,6 @@ export interface ParamsPosInterface extends PaginationInterface {
5
5
  active: boolean;
6
6
  id_group?: number | null;
7
7
  id_company?: number | null;
8
+ is_pos_code?: boolean | null;
9
+ is_pos_monitor?: boolean | null;
8
10
  }
@@ -2,6 +2,7 @@ import { PosInterface } from "../pos";
2
2
  export interface PosCodeInterface {
3
3
  id: number;
4
4
  uuid: string;
5
+ active: boolean;
5
6
  pos?: PosInterface;
6
7
  create_at: Date;
7
8
  }
@@ -2,6 +2,7 @@ import { PosInterface } from "../pos";
2
2
  export interface PosMonitorInterface {
3
3
  id: number;
4
4
  uuid: string;
5
+ active: boolean;
5
6
  pos?: PosInterface;
6
7
  create_at: Date;
7
8
  }
@@ -4,6 +4,5 @@ const main = async () => {
4
4
  const date = new Date("2025-12-03");
5
5
  const time_end = "11:40";
6
6
  //const time = getDelayFromDateTime(date, time_end);
7
- //console.log(time);
8
7
  };
9
8
  main();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.9.6",
3
+ "version": "2.9.8",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,