@revxui/api-clients-ts 0.10.360 → 0.10.362
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/README.md +2 -2
- package/api/appSettingsController.service.d.ts +3 -3
- package/bundles/revxui-api-clients-ts.umd.js +2 -1
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/appSettingsController.service.js +1 -1
- package/esm2015/model/advertiserSettings.js +1 -1
- package/esm2015/model/appSettingsDTO.js +3 -2
- package/fesm2015/revxui-api-clients-ts.js +2 -1
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiserSettings.d.ts +1 -0
- package/model/appSettingsDTO.d.ts +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.362
|
|
2
2
|
|
|
3
3
|
### Building
|
|
4
4
|
|
|
@@ -19,7 +19,7 @@ Navigate to the folder of your consuming project and run one of next commands.
|
|
|
19
19
|
_published:_
|
|
20
20
|
|
|
21
21
|
```
|
|
22
|
-
npm install @revxui/api-clients-ts@0.10.
|
|
22
|
+
npm install @revxui/api-clients-ts@0.10.362 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -74,9 +74,9 @@ export declare class AppSettingsControllerService {
|
|
|
74
74
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
75
75
|
* @param reportProgress flag to report request and response progress.
|
|
76
76
|
*/
|
|
77
|
-
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO'>, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
|
|
78
|
-
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO'>, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
|
|
79
|
-
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO'>, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
|
|
77
|
+
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT'>, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
|
|
78
|
+
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT'>, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
|
|
79
|
+
getAppSettingsUsingGET(advertiserId?: number, reqId?: string, settingsKeys?: Array<'LOGO_LINK' | 'FALLBACK_IMG_LINK' | 'OVERLAY_IMG_LINK' | 'DEFAULT_LOGO' | 'CREATIVE_NAME_FORMAT'>, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
|
|
80
80
|
/**
|
|
81
81
|
* Api to update App Settings
|
|
82
82
|
*
|
|
@@ -7505,7 +7505,8 @@
|
|
|
7505
7505
|
LOGOLINK: 'LOGO_LINK',
|
|
7506
7506
|
FALLBACKIMGLINK: 'FALLBACK_IMG_LINK',
|
|
7507
7507
|
OVERLAYIMGLINK: 'OVERLAY_IMG_LINK',
|
|
7508
|
-
DEFAULTLOGO: 'DEFAULT_LOGO'
|
|
7508
|
+
DEFAULTLOGO: 'DEFAULT_LOGO',
|
|
7509
|
+
CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT'
|
|
7509
7510
|
};
|
|
7510
7511
|
AppSettingsDTO.SettingsTypeEnum = {
|
|
7511
7512
|
BOOLEAN: 'BOOLEAN',
|