@carlosdiazz/lottodiz-shared 1.1.4 → 1.1.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.
@@ -10,6 +10,7 @@ export * from "./draw";
10
10
  export * from "./lottery";
11
11
  export * from "./page_webscraping";
12
12
  export * from "./permission";
13
+ export * from "./platform";
13
14
  export * from "./position_result";
14
15
  export * from "./role";
15
16
  export * from "./template_draw_webscraping";
@@ -26,6 +26,7 @@ __exportStar(require("./draw"), exports);
26
26
  __exportStar(require("./lottery"), exports);
27
27
  __exportStar(require("./page_webscraping"), exports);
28
28
  __exportStar(require("./permission"), exports);
29
+ __exportStar(require("./platform"), exports);
29
30
  __exportStar(require("./position_result"), exports);
30
31
  __exportStar(require("./role"), exports);
31
32
  __exportStar(require("./template_draw_webscraping"), exports);
@@ -0,0 +1,14 @@
1
+ export declare class CreatePlatformBase {
2
+ name: string;
3
+ active?: boolean;
4
+ preference?: number;
5
+ is_admob?: boolean;
6
+ about?: string;
7
+ policy?: string;
8
+ contact?: string;
9
+ message_share?: string;
10
+ message_statics?: string;
11
+ logo_image?: string;
12
+ banner_image?: string;
13
+ is_admob_full?: boolean;
14
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreatePlatformBase = void 0;
4
+ class CreatePlatformBase {
5
+ }
6
+ exports.CreatePlatformBase = CreatePlatformBase;
@@ -0,0 +1,3 @@
1
+ export * from "./create-platform.base";
2
+ export * from "./platform.base";
3
+ export * from "./response-platform.base";
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./create-platform.base"), exports);
18
+ __exportStar(require("./platform.base"), exports);
19
+ __exportStar(require("./response-platform.base"), exports);
@@ -0,0 +1,17 @@
1
+ export declare class PlatformBase {
2
+ id: number;
3
+ name: string;
4
+ active: boolean;
5
+ preference: number;
6
+ is_admob: boolean;
7
+ about: string;
8
+ policy: string;
9
+ contact: string;
10
+ message_share: string;
11
+ message_statics: string;
12
+ logo_image?: string;
13
+ banner_image?: string;
14
+ is_admob_full: boolean;
15
+ create_at: Date;
16
+ update_at: Date;
17
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlatformBase = void 0;
4
+ class PlatformBase {
5
+ }
6
+ exports.PlatformBase = PlatformBase;
@@ -0,0 +1,5 @@
1
+ import { PlatformBase } from "./platform.base";
2
+ export declare class ResponsePlatformBase {
3
+ items: PlatformBase[];
4
+ total: number;
5
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ResponsePlatformBase = void 0;
4
+ class ResponsePlatformBase {
5
+ }
6
+ exports.ResponsePlatformBase = ResponsePlatformBase;
@@ -1,6 +1,6 @@
1
1
  export declare class CreateTemplateDrawWebscrapingBase {
2
2
  name: string;
3
- active: boolean;
3
+ active?: boolean;
4
4
  number_of_attempts?: number;
5
5
  api_result?: number;
6
6
  id_template_draw: number;
@@ -1,3 +1,4 @@
1
- export * from './create-user.base';
2
- export * from './response-user.base';
3
- export * from './user.base';
1
+ export * from "./create-user.base";
2
+ export * from "./response-user.base";
3
+ export * from "./user.base";
4
+ export * from "./update-user.base";
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./create-user.base"), exports);
18
18
  __exportStar(require("./response-user.base"), exports);
19
19
  __exportStar(require("./user.base"), exports);
20
+ __exportStar(require("./update-user.base"), exports);
@@ -0,0 +1,5 @@
1
+ export declare class UpdateUserBase {
2
+ id: number;
3
+ id_role?: number;
4
+ name?: string;
5
+ }
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateUserBase = void 0;
4
+ class UpdateUserBase {
5
+ }
6
+ exports.UpdateUserBase = UpdateUserBase;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,