@carlosdiazz/lottodiz-shared 2.5.8 → 2.5.9

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.
@@ -130,4 +130,10 @@ export declare class MethodValid {
130
130
  static PAGE_WEBSCRAPING_FIND_ALL: string;
131
131
  static PAGE_WEBSCRAPING_UPDATE: string;
132
132
  static PAGE_WEBSCRAPING_REMOVE: string;
133
+ static VERIFY_STATUS_LOTTERY: string;
134
+ static VERIFY_STATUS_GATEWAY: string;
135
+ static VERIFY_STATUS_CRON: string;
136
+ static VERIFY_STATUS_WEBSCRAPING: string;
137
+ static VERIFY_STATUS_TOOLS: string;
138
+ static VERIFY_STATUS_AUTH: string;
133
139
  }
@@ -160,3 +160,9 @@ MethodValid.PAGE_WEBSCRAPING_FIND_ONE = "PAGE_WEBSCRAPING_FIND_ONE";
160
160
  MethodValid.PAGE_WEBSCRAPING_FIND_ALL = "PAGE_WEBSCRAPING_FIND_ALL";
161
161
  MethodValid.PAGE_WEBSCRAPING_UPDATE = "PAGE_WEBSCRAPING_UPDATE";
162
162
  MethodValid.PAGE_WEBSCRAPING_REMOVE = "PAGE_WEBSCRAPING_REMOVE";
163
+ MethodValid.VERIFY_STATUS_LOTTERY = "VERIFY_STATUS_LOTTERY";
164
+ MethodValid.VERIFY_STATUS_GATEWAY = "VERIFY_STATUS_GATEWAY";
165
+ MethodValid.VERIFY_STATUS_CRON = "VERIFY_STATUS_CRON";
166
+ MethodValid.VERIFY_STATUS_WEBSCRAPING = "VERIFY_STATUS_WEBSCRAPING";
167
+ MethodValid.VERIFY_STATUS_TOOLS = "VERIFY_STATUS_TOOLS";
168
+ MethodValid.VERIFY_STATUS_AUTH = "VERIFY_STATUS_AUTH";
@@ -10,4 +10,5 @@ export interface CountryControllerInterface {
10
10
  findOne(id: number): Promise<CountryInterface>;
11
11
  update(dto: UpdateCountryInterface): Promise<CountryInterface>;
12
12
  remove(id: number): Promise<ResponseInterface>;
13
+ verify_status_lottery(): Promise<ResponseInterface>;
13
14
  }
@@ -10,4 +10,5 @@ export interface CountryServiceInterface {
10
10
  findOne(id: number): Promise<CountryInterface>;
11
11
  update(dto: UpdateCountryInterface): Promise<CountryInterface>;
12
12
  remove(id: number): Promise<ResponseInterface>;
13
+ verify_status_lottery(): Promise<ResponseInterface>;
13
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.5.8",
3
+ "version": "2.5.9",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,