@carlosdiazz/lottodiz-shared 2.0.4 → 2.0.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.
@@ -80,8 +80,7 @@ export declare class PermissionValid {
80
80
  static PAGE_WEBSCRAPING_UPDATE: string;
81
81
  static PAGE_WEBSCRAPING_DELETE: string;
82
82
  static PLATFORM_ADS_CREATE: string;
83
- static PLATFORM_ADS_FIND_ONE: string;
84
- static PLATFORM_ADS_FIND_ALL: string;
83
+ static PLATFORM_ADS_VIEW: string;
85
84
  static PLATFORM_ADS_UPDATE: string;
86
- static PLATFORM_ADS_REMOVE: string;
85
+ static PLATFORM_ADS_DELETE: string;
87
86
  }
@@ -105,7 +105,6 @@ PermissionValid.PAGE_WEBSCRAPING_UPDATE = "PAGE_WEBSCRAPING_UPDATE";
105
105
  PermissionValid.PAGE_WEBSCRAPING_DELETE = "PAGE_WEBSCRAPING_DELETE";
106
106
  //PLATFORM ADS
107
107
  PermissionValid.PLATFORM_ADS_CREATE = "PLATFORM_ADS_CREATE";
108
- PermissionValid.PLATFORM_ADS_FIND_ONE = "PLATFORM_ADS_FIND_ONE";
109
- PermissionValid.PLATFORM_ADS_FIND_ALL = "PLATFORM_ADS_FIND_ALL";
108
+ PermissionValid.PLATFORM_ADS_VIEW = "PLATFORM_ADS_VIEW";
110
109
  PermissionValid.PLATFORM_ADS_UPDATE = "PLATFORM_ADS_UPDATE";
111
- PermissionValid.PLATFORM_ADS_REMOVE = "PLATFORM_ADS_REMOVE";
110
+ PermissionValid.PLATFORM_ADS_DELETE = "PLATFORM_ADS_DELETE";
@@ -4,6 +4,7 @@ export interface CreatePlatformAdsInterface {
4
4
  active?: boolean;
5
5
  preference?: number;
6
6
  image: string;
7
+ image_banner: string;
7
8
  days_active?: number;
8
9
  url_link?: string;
9
10
  id_platform: number;
@@ -6,6 +6,7 @@ export interface PlatformAdsInterface {
6
6
  active?: boolean;
7
7
  preference?: number;
8
8
  image: string;
9
+ image_banner: string;
9
10
  days_active?: number;
10
11
  url_link?: string;
11
12
  platform?: PlatformInterface;
@@ -19,6 +20,7 @@ export interface PlatformAdsFormInterface {
19
20
  active?: boolean;
20
21
  preference?: number;
21
22
  image: string;
23
+ image_banner: string;
22
24
  days_active?: number;
23
25
  url_link?: string;
24
26
  id_platform: number;
@@ -5,6 +5,7 @@ export interface UpdatePlatformAdsInterface {
5
5
  active?: boolean;
6
6
  preference?: number;
7
7
  image?: string;
8
+ image_banner?: string;
8
9
  days_active?: number;
9
10
  url_link?: string;
10
11
  id_platform?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carlosdiazz/lottodiz-shared",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "description": "Shared Dtos, models, constants and utils",
5
5
  "main": "dist/index.js",
6
6
  "private": false,