@carlosdiazz/lottodiz-shared 2.2.5 → 2.2.6
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 +2 -0
- package/dist/models/country/country.controller.d.ts +1 -1
- package/dist/models/country/create-country.base.d.ts +1 -0
- package/dist/models/country/params-country.base.d.ts +1 -0
- package/dist/models/country/update-country.base.d.ts +1 -0
- package/dist/models/template_draw/create-template_draw.base.d.ts +1 -0
- package/dist/models/template_draw/params-template_draw.base.d.ts +1 -0
- package/dist/models/template_draw/template_draw.base.d.ts +2 -0
- package/dist/models/template_draw/template_draw.controller.d.ts +1 -1
- package/dist/models/template_draw/template_draw.datasource.d.ts +1 -1
- package/dist/models/template_draw/template_draw.resolver.d.ts +2 -2
- package/dist/models/template_draw/template_draw.service.d.ts +1 -1
- package/dist/models/template_draw/update-template_draw.base.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,6 +8,7 @@ export interface CountryInterface {
|
|
|
8
8
|
imagen?: string;
|
|
9
9
|
view_screen: boolean;
|
|
10
10
|
id_platform?: number;
|
|
11
|
+
is_global: boolean;
|
|
11
12
|
lottery?: LotteryInterface[];
|
|
12
13
|
create_at: Date;
|
|
13
14
|
update_at: Date;
|
|
@@ -20,5 +21,6 @@ export interface CountryFormInterface {
|
|
|
20
21
|
color: string;
|
|
21
22
|
imagen?: string;
|
|
22
23
|
view_screen: boolean;
|
|
24
|
+
is_global: boolean;
|
|
23
25
|
id_platform?: number;
|
|
24
26
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ResponseInterface } from "../common";
|
|
2
1
|
import { CountryInterface } from "./country.base";
|
|
3
2
|
import { CreateCountryInterface } from "./create-country.base";
|
|
4
3
|
import { ParamsCountryInterface } from "./params-country.base";
|
|
5
4
|
import { ResponseCountryInterface } from "./response-country.base";
|
|
6
5
|
import { UpdateCountryInterface } from "./update-country.base";
|
|
6
|
+
import { ResponseInterface } from "../common";
|
|
7
7
|
export interface CountryControllerInterface {
|
|
8
8
|
create(dto: CreateCountryInterface): Promise<CountryInterface>;
|
|
9
9
|
findAll(pagination: ParamsCountryInterface): Promise<ResponseCountryInterface>;
|
|
@@ -19,6 +19,7 @@ export interface TemplateDrawInterface {
|
|
|
19
19
|
is_express: boolean;
|
|
20
20
|
is_traditional: boolean;
|
|
21
21
|
time_zone: string;
|
|
22
|
+
is_statistics: boolean;
|
|
22
23
|
lottery?: LotteryInterface;
|
|
23
24
|
template_result?: TemplateResultInterface;
|
|
24
25
|
draw_number?: DrawNumberInterface;
|
|
@@ -43,6 +44,7 @@ export interface TemplateDrawFormInterface {
|
|
|
43
44
|
is_express: boolean;
|
|
44
45
|
is_traditional: boolean;
|
|
45
46
|
time_zone: string;
|
|
47
|
+
is_statistics: boolean;
|
|
46
48
|
id_lottery: number;
|
|
47
49
|
id_template_result: number;
|
|
48
50
|
id_number_draw: number;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ResponseInterface } from "../common";
|
|
2
1
|
import { CreateTemplateDrawInterface } from "./create-template_draw.base";
|
|
3
2
|
import { ParamsTemplateDrawInterface } from "./params-template_draw.base";
|
|
4
3
|
import { ResponseTemplateDrawInterface } from "./response-template_draw";
|
|
5
4
|
import { TemplateDrawInterface } from "./template_draw.base";
|
|
6
5
|
import { UpdateTemplateDrawInterface } from "./update-template_draw.base";
|
|
6
|
+
import { ResponseInterface } from "../common";
|
|
7
7
|
export interface TemplateDrawControllerInterface {
|
|
8
8
|
create(dto: CreateTemplateDrawInterface): Promise<TemplateDrawInterface>;
|
|
9
9
|
findAll(pagination: ParamsTemplateDrawInterface): Promise<ResponseTemplateDrawInterface>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ResponseInterface } from "../common";
|
|
2
1
|
import { CreateTemplateDrawInterface } from "./create-template_draw.base";
|
|
3
2
|
import { ParamsTemplateDrawInterface } from "./params-template_draw.base";
|
|
4
3
|
import { ResponseTemplateDrawInterface } from "./response-template_draw";
|
|
5
4
|
import { TemplateDrawInterface } from "./template_draw.base";
|
|
6
5
|
import { UpdateTemplateDrawInterface } from "./update-template_draw.base";
|
|
6
|
+
import { ResponseInterface } from "../common";
|
|
7
7
|
export interface TemplateDrawDatasourceInterface {
|
|
8
8
|
create(dto: CreateTemplateDrawInterface): Promise<TemplateDrawInterface>;
|
|
9
9
|
findAll(pagination: ParamsTemplateDrawInterface): Promise<ResponseTemplateDrawInterface>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { ResponseInterface } from "../common";
|
|
2
|
-
import { UserInterface } from "../user";
|
|
3
1
|
import { CreateTemplateDrawInterface } from "./create-template_draw.base";
|
|
4
2
|
import { ParamsTemplateDrawInterface } from "./params-template_draw.base";
|
|
5
3
|
import { ResponseTemplateDrawInterface } from "./response-template_draw";
|
|
6
4
|
import { TemplateDrawInterface } from "./template_draw.base";
|
|
7
5
|
import { UpdateTemplateDrawInterface } from "./update-template_draw.base";
|
|
6
|
+
import { ResponseInterface } from "../common";
|
|
7
|
+
import { UserInterface } from "../user";
|
|
8
8
|
export interface TemplateDrawResolverInterface {
|
|
9
9
|
create(dto: CreateTemplateDrawInterface, user?: UserInterface): Promise<TemplateDrawInterface>;
|
|
10
10
|
findAll(pagination: ParamsTemplateDrawInterface, user?: UserInterface): Promise<ResponseTemplateDrawInterface>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ResponseInterface } from "../common";
|
|
2
1
|
import { CreateTemplateDrawInterface } from "./create-template_draw.base";
|
|
3
2
|
import { ParamsTemplateDrawInterface } from "./params-template_draw.base";
|
|
4
3
|
import { ResponseTemplateDrawInterface } from "./response-template_draw";
|
|
5
4
|
import { TemplateDrawInterface } from "./template_draw.base";
|
|
6
5
|
import { UpdateTemplateDrawInterface } from "./update-template_draw.base";
|
|
6
|
+
import { ResponseInterface } from "../common";
|
|
7
7
|
export interface TemplateDrawServiceInterface {
|
|
8
8
|
create(dto: CreateTemplateDrawInterface): Promise<TemplateDrawInterface>;
|
|
9
9
|
findAll(pagination: ParamsTemplateDrawInterface): Promise<ResponseTemplateDrawInterface>;
|