@carlosdiazz/lottodiz-shared 2.2.9 → 2.3.1

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,9 @@ 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
+ //CHANCES COLOMBIA
29
+ format_dates.push(dayjs_1.default.utc(date_verify).format("dddd DD MMMM YYYY").toUpperCase());
30
+ format_dates.push(dayjs_1.default.utc(date_verify).format("dddd D MMMM YYYY").toUpperCase());
28
31
  // COSTA RICA JPS
29
32
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd, D [de] MMMM").toUpperCase());
30
33
  format_dates.push(dayjs_1.default.utc(date_verify).format("dddd, DD [de] MMMM").toUpperCase());
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.2.9",
3
+ "version": "2.3.1",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,