@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.
- package/dist/enum/permission-valid.d.ts +2 -3
- package/dist/enum/permission-valid.js +2 -3
- package/dist/models/platform_ads/create-platform-ads.base.d.ts +1 -0
- package/dist/models/platform_ads/platform-ads.base.d.ts +2 -0
- package/dist/models/platform_ads/update-platform-ads.base.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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
|
|
84
|
-
static PLATFORM_ADS_FIND_ALL: string;
|
|
83
|
+
static PLATFORM_ADS_VIEW: string;
|
|
85
84
|
static PLATFORM_ADS_UPDATE: string;
|
|
86
|
-
static
|
|
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.
|
|
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.
|
|
110
|
+
PermissionValid.PLATFORM_ADS_DELETE = "PLATFORM_ADS_DELETE";
|
|
@@ -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;
|