@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.
|
@@ -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());
|