@carlosdiazz/lottodiz-shared 1.7.4 → 1.7.5
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.
- package/dist/models/country/country.base.d.ts +10 -0
- package/dist/models/draw/update-draw.base.d.ts +12 -0
- package/dist/models/draw_day/draw_day.base.d.ts +7 -0
- package/dist/models/draw_number/draw_number.base.d.ts +7 -0
- package/dist/models/draw_result/draw_result.base.d.ts +8 -0
- package/dist/models/draw_statistic/draw_statistic.base.d.ts +9 -0
- package/dist/models/draw_webscraping/draw_webscraping.base.d.ts +18 -0
- package/dist/models/draw_youtube/draw_youtube.base.d.ts +8 -0
- package/dist/models/lottery/lottery.base.d.ts +13 -0
- package/dist/models/page_webscraping/page_webscraping.base.d.ts +8 -0
- package/dist/models/platform/platform.base.d.ts +15 -0
- package/dist/models/position_result/position_result.base.d.ts +7 -0
- package/dist/models/role/role.interface.d.ts +6 -0
- package/dist/models/template_draw/template_draw.base.d.ts +17 -0
- package/dist/models/template_draw_webscraping/template_draw_webscraping.base.d.ts +10 -0
- package/dist/models/template_page_webscraping/template_page_webscraping.base.d.ts +9 -0
- package/dist/models/template_result/template_result.base.d.ts +7 -0
- package/package.json +1 -1
|
@@ -12,3 +12,13 @@ export interface CountryInterface {
|
|
|
12
12
|
create_at: Date;
|
|
13
13
|
update_at: Date;
|
|
14
14
|
}
|
|
15
|
+
export interface CountryFormInterface {
|
|
16
|
+
id: number;
|
|
17
|
+
name: string;
|
|
18
|
+
active: boolean;
|
|
19
|
+
preference: number;
|
|
20
|
+
color: string;
|
|
21
|
+
imagen?: string;
|
|
22
|
+
view_screen: boolean;
|
|
23
|
+
id_platform?: number;
|
|
24
|
+
}
|
|
@@ -10,3 +10,15 @@ export interface UpdateDrawInterface {
|
|
|
10
10
|
time_start?: string;
|
|
11
11
|
time_end?: string;
|
|
12
12
|
}
|
|
13
|
+
export interface UpdateDrawFormInterface {
|
|
14
|
+
id: number;
|
|
15
|
+
is_open?: boolean;
|
|
16
|
+
name?: string;
|
|
17
|
+
active?: boolean;
|
|
18
|
+
imagen?: string;
|
|
19
|
+
preference?: number;
|
|
20
|
+
is_completed?: boolean;
|
|
21
|
+
view_screen?: boolean;
|
|
22
|
+
time_start?: string;
|
|
23
|
+
time_end?: string;
|
|
24
|
+
}
|
|
@@ -8,3 +8,12 @@ export interface DrawStatisticInterface {
|
|
|
8
8
|
create_at: Date;
|
|
9
9
|
update_at: Date;
|
|
10
10
|
}
|
|
11
|
+
export interface DrawStatistiFormInterface {
|
|
12
|
+
id: number;
|
|
13
|
+
item_hot: number[];
|
|
14
|
+
item_cold: number[];
|
|
15
|
+
active: boolean;
|
|
16
|
+
id_template_draw: number;
|
|
17
|
+
create_at: Date;
|
|
18
|
+
update_at: Date;
|
|
19
|
+
}
|
|
@@ -20,3 +20,21 @@ export interface DrawWebscrapingInterface {
|
|
|
20
20
|
create_at: Date;
|
|
21
21
|
update_at: Date;
|
|
22
22
|
}
|
|
23
|
+
export interface DrawWebscrapingFormInterface {
|
|
24
|
+
id: number;
|
|
25
|
+
name: string;
|
|
26
|
+
active: boolean;
|
|
27
|
+
number_of_attempts: number;
|
|
28
|
+
number_total_of_attempts: number;
|
|
29
|
+
is_error: boolean;
|
|
30
|
+
is_completed: boolean;
|
|
31
|
+
message: string;
|
|
32
|
+
time_start: string;
|
|
33
|
+
is_init: boolean;
|
|
34
|
+
api_result_v1?: number;
|
|
35
|
+
api_result_v2?: string;
|
|
36
|
+
is_automatic_result: boolean;
|
|
37
|
+
is_running: boolean;
|
|
38
|
+
id_template_draw_webscraping: number;
|
|
39
|
+
id_draw: number;
|
|
40
|
+
}
|
|
@@ -9,3 +9,11 @@ export interface DrawYoutubeInterface {
|
|
|
9
9
|
create_at: Date;
|
|
10
10
|
update_at: Date;
|
|
11
11
|
}
|
|
12
|
+
export interface DrawYoutubeFormInterface {
|
|
13
|
+
id: number;
|
|
14
|
+
name: string;
|
|
15
|
+
active: boolean;
|
|
16
|
+
channel_id: string;
|
|
17
|
+
video_id: string;
|
|
18
|
+
id_template_draw: number;
|
|
19
|
+
}
|
|
@@ -16,3 +16,16 @@ export interface LotteryInterface {
|
|
|
16
16
|
create_at: Date;
|
|
17
17
|
update_at: Date;
|
|
18
18
|
}
|
|
19
|
+
export interface LotteryFormInterface {
|
|
20
|
+
id: number;
|
|
21
|
+
name: string;
|
|
22
|
+
description: string;
|
|
23
|
+
active: boolean;
|
|
24
|
+
topic: string;
|
|
25
|
+
imagen?: string;
|
|
26
|
+
view_screen: boolean;
|
|
27
|
+
preference: number;
|
|
28
|
+
color: string;
|
|
29
|
+
is_express: boolean;
|
|
30
|
+
id_country: number;
|
|
31
|
+
}
|
|
@@ -10,3 +10,11 @@ export interface PageWebscrapingInterface {
|
|
|
10
10
|
create_at: Date;
|
|
11
11
|
update_at: Date;
|
|
12
12
|
}
|
|
13
|
+
export interface PageWebscrapingFormInterface {
|
|
14
|
+
id: number;
|
|
15
|
+
active: boolean;
|
|
16
|
+
xpath_url: string[][];
|
|
17
|
+
xpath_verify?: string[][];
|
|
18
|
+
id_template_draw_webscraping: number;
|
|
19
|
+
id_template_page_webscraping: number;
|
|
20
|
+
}
|
|
@@ -15,3 +15,18 @@ export interface PlatformInterface {
|
|
|
15
15
|
create_at: Date;
|
|
16
16
|
update_at: Date;
|
|
17
17
|
}
|
|
18
|
+
export interface PlatformFormInterface {
|
|
19
|
+
id: number;
|
|
20
|
+
name: string;
|
|
21
|
+
active: boolean;
|
|
22
|
+
preference: number;
|
|
23
|
+
is_admob: boolean;
|
|
24
|
+
about: string;
|
|
25
|
+
policy: string;
|
|
26
|
+
contact: string;
|
|
27
|
+
message_share: string;
|
|
28
|
+
message_statics: string;
|
|
29
|
+
logo_image?: string;
|
|
30
|
+
banner_image?: string;
|
|
31
|
+
is_admob_full: boolean;
|
|
32
|
+
}
|
|
@@ -30,3 +30,20 @@ export interface TemplateDrawInterface {
|
|
|
30
30
|
create_at: Date;
|
|
31
31
|
update_at: Date;
|
|
32
32
|
}
|
|
33
|
+
export interface TemplateDrawFormInterface {
|
|
34
|
+
id: number;
|
|
35
|
+
name: string;
|
|
36
|
+
description: string;
|
|
37
|
+
active: boolean;
|
|
38
|
+
imagen?: string;
|
|
39
|
+
view_screen: boolean;
|
|
40
|
+
color: string;
|
|
41
|
+
preference: number;
|
|
42
|
+
interval?: number;
|
|
43
|
+
is_express: boolean;
|
|
44
|
+
is_traditional: boolean;
|
|
45
|
+
time_zone: string;
|
|
46
|
+
id_lottery: number;
|
|
47
|
+
id_template_result: number;
|
|
48
|
+
id_number_draw: number;
|
|
49
|
+
}
|
|
@@ -15,3 +15,13 @@ export interface TemplateDrawWebscrapingInterface {
|
|
|
15
15
|
create_at: Date;
|
|
16
16
|
update_at: Date;
|
|
17
17
|
}
|
|
18
|
+
export interface TemplateDrawWebscrapingFormInterface {
|
|
19
|
+
id: number;
|
|
20
|
+
name: string;
|
|
21
|
+
active: boolean;
|
|
22
|
+
number_of_attempts: number;
|
|
23
|
+
api_result_v1?: number;
|
|
24
|
+
api_result_v2?: string;
|
|
25
|
+
is_automatic_result: boolean;
|
|
26
|
+
id_template_draw: number;
|
|
27
|
+
}
|
|
@@ -11,3 +11,12 @@ export interface TemplatePageWebscrapingInterface {
|
|
|
11
11
|
create_at: Date;
|
|
12
12
|
update_at: Date;
|
|
13
13
|
}
|
|
14
|
+
export interface TemplatePageWebscrapingFormInterface {
|
|
15
|
+
id: number;
|
|
16
|
+
name: string;
|
|
17
|
+
active: boolean;
|
|
18
|
+
total_item: number;
|
|
19
|
+
xpath_item: string[][];
|
|
20
|
+
xpath_date: string[][];
|
|
21
|
+
xpath_verify?: string[][];
|
|
22
|
+
}
|