@carlosdiazz/lottodiz-shared 2.3.0 → 2.3.2

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.
@@ -13,6 +13,7 @@ export interface DrawInterface {
13
13
  time_end: string;
14
14
  is_open: boolean;
15
15
  is_express: boolean;
16
+ message: string;
16
17
  is_traditional: boolean;
17
18
  id_day: number;
18
19
  is_completed: boolean;
@@ -4,6 +4,7 @@ export interface UpdateDrawInterface {
4
4
  name?: string;
5
5
  active?: boolean;
6
6
  imagen?: string;
7
+ message?: string;
7
8
  preference?: number;
8
9
  is_completed?: boolean;
9
10
  view_screen?: boolean;
@@ -16,6 +17,7 @@ export interface DrawFormInterface {
16
17
  name?: string;
17
18
  active?: boolean;
18
19
  imagen?: string;
20
+ message?: string;
19
21
  preference?: number;
20
22
  is_completed?: boolean;
21
23
  view_screen?: boolean;
@@ -25,6 +25,11 @@ const validateDate = (date_verify, arrs) => {
25
25
  //En Lote
26
26
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd DD [de] MMMM, YYYY").toUpperCase());
27
27
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd D [de] MMMM, YYYY").toUpperCase());
28
+ //Loto Salvador
29
+ format_dates.push(dayjs_1.default
30
+ .utc(date_verify)
31
+ .format("DD [de] MMMM, YYYY [a las 09:00 PM]")
32
+ .toUpperCase());
28
33
  //CHANCES COLOMBIA
29
34
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd DD MMMM YYYY").toUpperCase());
30
35
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd D MMMM YYYY").toUpperCase());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.3.0",
3
+ "version": "2.3.2",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,