@carlosdiazz/lottodiz-shared 1.2.0 → 1.2.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.
- package/dist/models/draw/update-draw.base.d.ts +3 -1
- package/dist/models/draw_day/update-draw_day.base.d.ts +3 -1
- package/dist/models/draw_number/update-draw_number.base.d.ts +3 -1
- package/dist/models/draw_result/update-draw_result.base.d.ts +3 -1
- package/dist/models/draw_statistic/update-draw_statistic.base.d.ts +3 -1
- package/dist/models/draw_webscraping/update-draw_webscraping.base.d.ts +3 -1
- package/dist/models/draw_youtube/update-draw_youtube.base.d.ts +3 -1
- package/dist/models/lottery/params-lottery.d.ts +1 -1
- package/dist/models/lottery/params-lottery.js +3 -3
- package/dist/models/lottery/update-lottery.base.d.ts +3 -1
- package/dist/models/page_webscraping/update-page_webscraping.base.d.ts +3 -1
- package/dist/models/platform/update-platform.base.d.ts +3 -1
- package/dist/models/position_result/update-position_result.base.d.ts +3 -1
- package/dist/models/role/update-role.d.ts +2 -1
- package/dist/models/template_draw/update-template_draw.base.d.ts +2 -1
- package/dist/models/template_draw_webscraping/update-template_draw_webscraping.base.d.ts +3 -1
- package/dist/models/template_page_webscraping/update-template_page_webscraping.base.d.ts +3 -1
- package/dist/models/template_result/update-template_result.base.d.ts +3 -1
- package/dist/models/user/update-user.base.d.ts +3 -1
- package/package.json +1 -1
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawDayBase } from "./draw_day.base";
|
|
3
|
+
export declare class UpdateDrawDayBase implements DeepPartial<DrawDayBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
time_start?: string;
|
|
4
6
|
time_end?: string;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawNumberBase } from "./draw_number.base";
|
|
3
|
+
export declare class UpdateDrawNumberBase implements DeepPartial<DrawNumberBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
prefix?: string;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawResultBase } from "./draw_result.base";
|
|
3
|
+
export declare class UpdateDrawResultBase implements DeepPartial<DrawResultBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
numbers_win?: number[];
|
|
4
6
|
text_win?: string[];
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawStatisticBase } from "./draw_statistic.base";
|
|
3
|
+
export declare class UpdateDrawStatisticBase implements DeepPartial<DrawStatisticBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
item_hot?: number[];
|
|
4
6
|
item_cold?: number[];
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawWebscrapingBase } from "./draw_webscraping.base";
|
|
3
|
+
export declare class UpdateDrawWebscrapingBase implements DeepPartial<DrawWebscrapingBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
active?: boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { DrawYoutubeBase } from "./draw_youtube.base";
|
|
3
|
+
export declare class UpdateDrawYoutubeBase implements DeepPartial<DrawYoutubeBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
channel_id?: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.ParamsLotteryBase = void 0;
|
|
4
4
|
const common_1 = require("../common");
|
|
5
|
-
class
|
|
5
|
+
class ParamsLotteryBase extends common_1.PaginationBase {
|
|
6
6
|
}
|
|
7
|
-
exports.
|
|
7
|
+
exports.ParamsLotteryBase = ParamsLotteryBase;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { PageWebscrapingBase } from "./page_webscraping.base";
|
|
3
|
+
export declare class UpdatePageWebscrapingBase implements DeepPartial<PageWebscrapingBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
active?: boolean;
|
|
4
6
|
xpath_url?: string[][];
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { PlatformBase } from "./platform.base";
|
|
3
|
+
export declare class UpdatePlatformBase implements DeepPartial<PlatformBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
active?: boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { PositionResultBase } from "./position_result.base";
|
|
3
|
+
export declare class UpdatePositionResultBase implements DeepPartial<PositionResultBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
min_value?: number;
|
|
4
6
|
max_value?: number;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { TemplateDrawWebscrapingBase } from "./template_draw_webscraping.base";
|
|
2
|
+
import { DeepPartial } from "../../utils";
|
|
3
|
+
export declare class UpdateTemplateDrawWebscrapingBase implements DeepPartial<TemplateDrawWebscrapingBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
active?: boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { TemplatePageWebscrapingBase } from "./template_page_webscraping.base";
|
|
3
|
+
export declare class UpdateTemplatePageWebscrapingBase implements DeepPartial<TemplatePageWebscrapingBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
active?: boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { DeepPartial } from "../../utils";
|
|
2
|
+
import { TemplateResultBase } from "./template_result.base";
|
|
3
|
+
export declare class UpdateTemplateResultBase implements DeepPartial<TemplateResultBase> {
|
|
2
4
|
id: number;
|
|
3
5
|
name?: string;
|
|
4
6
|
active?: boolean;
|