@carlosdiazz/lottodiz-shared 2.5.9 → 2.6.0

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.
@@ -1,5 +1,7 @@
1
+ import { ResponseInterface } from "../common";
1
2
  import { DrawResultInterface } from "../draw_result";
2
3
  import { CreateDrawWebscrapingAutomaticInterface } from "../draw_webscraping/create-draw_webscraping.base";
3
4
  export interface DrawWebscrapingAutomaticControllerInterface {
4
5
  exectDrawWebscrapingAutomatic(createDrawWebscrapingAutomatic: CreateDrawWebscrapingAutomaticInterface): Promise<DrawResultInterface>;
6
+ verify_status_webscraping(): Promise<ResponseInterface>;
5
7
  }
@@ -1,5 +1,7 @@
1
+ import { ResponseInterface } from "../common";
1
2
  import { DrawResultInterface } from "../draw_result";
2
3
  import { CreateDrawWebscrapingAutomaticInterface } from "../draw_webscraping/create-draw_webscraping.base";
3
4
  export interface DrawWebscrapingAutomaticServiceInterface {
4
5
  exectDrawWebscrapingAutomatic(createDrawWebscrapingAutomatic: CreateDrawWebscrapingAutomaticInterface): Promise<DrawResultInterface>;
6
+ verify_status_webscraping(): Promise<ResponseInterface>;
5
7
  }
@@ -9,4 +9,5 @@ export interface PlatformControllerInterface {
9
9
  findOne(id: number): Promise<PlatformInterface>;
10
10
  update(dto: UpdatePlatformInterface): Promise<PlatformInterface>;
11
11
  remove(id: number): Promise<ResponseInterface>;
12
+ verify_status_tools(): Promise<ResponseInterface>;
12
13
  }
@@ -9,4 +9,5 @@ export interface PlatformServiceInterface {
9
9
  findOne(id: number): Promise<PlatformInterface>;
10
10
  update(dto: UpdatePlatformInterface): Promise<PlatformInterface>;
11
11
  remove(id: number): Promise<ResponseInterface>;
12
+ verify_status_tools(): Promise<ResponseInterface>;
12
13
  }
@@ -6,4 +6,5 @@ export interface QueueControllerInterface {
6
6
  createJobsDraw(draw: DrawInterface): Promise<ResponseInterface>;
7
7
  createJobsDrawWebScraping(drawWebscraping: DrawWebscrapingInterface): Promise<ResponseInterface>;
8
8
  createJobsVideoTemplateDraw(template_draw: TemplateDrawInterface): Promise<ResponseInterface>;
9
+ verify_status_cron(): Promise<ResponseInterface>;
9
10
  }
@@ -6,4 +6,5 @@ export interface QueueServiceInterface {
6
6
  createJobsDraw(draw: DrawInterface): Promise<ResponseInterface>;
7
7
  createJobsDrawWebScraping(drawWebscraping: DrawWebscrapingInterface): Promise<ResponseInterface>;
8
8
  createJobsVideoTemplateDraw(template_draw: TemplateDrawInterface): Promise<ResponseInterface>;
9
+ verify_status_cron(): Promise<ResponseInterface>;
9
10
  }
@@ -9,4 +9,5 @@ export interface RoleControllerInterface {
9
9
  findOne(id: number): Promise<RoleInterface>;
10
10
  update(dto: UpdateRoleInterface): Promise<RoleInterface>;
11
11
  remove(id: number): Promise<ResponseInterface>;
12
+ verify_status_auth(): Promise<ResponseInterface>;
12
13
  }
@@ -9,4 +9,5 @@ export interface RoleServiceInterface {
9
9
  findOne(id: number): Promise<RoleInterface>;
10
10
  update(dto: UpdateRoleInterface): Promise<RoleInterface>;
11
11
  remove(id: number): Promise<ResponseInterface>;
12
+ verify_status_auth(): Promise<ResponseInterface>;
12
13
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.5.9",
3
+ "version": "2.6.0",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,