@carlosdiazz/lottodiz-shared 2.5.5 → 2.5.6

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.
@@ -57,6 +57,7 @@ export declare class MethodValid {
57
57
  static DRAW_STATISTIC_REMOVE: string;
58
58
  static DRAW_TRIGGER: string;
59
59
  static DRAW_TRIGGER_BY_DATE: string;
60
+ static DRAW_AUTO_TRIGGER_BY_DATE: string;
60
61
  static DRAW_FIND_ALL_BY_DATE: string;
61
62
  static DRAW_CREATE: string;
62
63
  static DRAW_FIND_ONE: string;
@@ -76,6 +76,7 @@ MethodValid.DRAW_STATISTIC_REMOVE = "DRAW_STATISTIC_REMOVE";
76
76
  //DRAW
77
77
  MethodValid.DRAW_TRIGGER = "DRAW_TRIGGER";
78
78
  MethodValid.DRAW_TRIGGER_BY_DATE = "DRAW_TRIGGER_BY_DATE";
79
+ MethodValid.DRAW_AUTO_TRIGGER_BY_DATE = "DRAW_AUTO_TRIGGER_BY_DATE";
79
80
  MethodValid.DRAW_FIND_ALL_BY_DATE = "DRAW_FIND_ALL_BY_DATE";
80
81
  MethodValid.DRAW_CREATE = "DRAW_CREATE";
81
82
  MethodValid.DRAW_FIND_ONE = "DRAW_FIND_ONE";
@@ -7,6 +7,7 @@ import { UpdateDrawInterface } from "./update-draw.base";
7
7
  export interface DrawControllerInterface {
8
8
  triggerDraw(createDrawByDate: CreateDrawByDateInterface): Promise<ResponseInterface>;
9
9
  triggerDrawsByDate(createDrawsByDate: CreateDrawsByDateInterface): Promise<ResponseInterface>;
10
+ triggerAutoDrawsByDate(createDrawsByDate: CreateDrawsByDateInterface): Promise<ResponseInterface>;
10
11
  findAll(pagination: ParamsDrawInterface): Promise<ResponseDrawInterface>;
11
12
  findOne(id: number): Promise<DrawInterface>;
12
13
  update(dto: UpdateDrawInterface): Promise<DrawInterface>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.5.5",
3
+ "version": "2.5.6",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,