@revxui/api-clients-ts 0.10.365 → 0.10.366
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/api/creativeController.service.d.ts +14 -0
- package/bundles/revxui-api-clients-ts.umd.js +69 -7
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/appSettingsController.service.js +1 -1
- package/esm2015/api/creativeController.service.js +35 -1
- package/esm2015/model/advertiserSettings.js +1 -1
- package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
- package/esm2015/model/appSettingsDTO.js +3 -2
- package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
- package/esm2015/model/creativeDetails.js +19 -2
- package/esm2015/model/creativeSetDashboardMetric.js +3 -2
- package/esm2015/model/creativeSetDetails.js +3 -2
- package/esm2015/model/creativeSetRequest.js +3 -2
- package/esm2015/model/creativeSetResponse.js +3 -2
- package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
- package/esm2015/model/models.js +4 -1
- package/esm2015/model/sizeWithPreview.js +13 -0
- package/esm2015/model/videoAdTagVerifyRequest.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +92 -8
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiserSettings.d.ts +1 -0
- package/model/apiListResponseSizeWithPreview.d.ts +16 -0
- package/model/appSettingsDTO.d.ts +2 -1
- package/model/baseModelWithCreativeSetType.d.ts +2 -1
- package/model/creativeDetails.d.ts +22 -0
- package/model/creativeSetDashboardMetric.d.ts +2 -1
- package/model/creativeSetDetails.d.ts +2 -1
- package/model/creativeSetRequest.d.ts +2 -1
- package/model/creativeSetResponse.d.ts +2 -1
- package/model/duplicateCreativeSetResponse.d.ts +2 -1
- package/model/models.d.ts +3 -0
- package/model/sizeWithPreview.d.ts +16 -0
- package/model/videoAdTagVerifyRequest.d.ts +14 -0
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.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.366
|
|
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.366 --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
|
*
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
14
|
import { ApiListResponseCreativeDTO } from '../model/apiListResponseCreativeDTO';
|
|
15
|
+
import { ApiListResponseSizeWithPreview } from '../model/apiListResponseSizeWithPreview';
|
|
15
16
|
import { ApiResponseObjectApiListResponseCreativeCompactDTO } from '../model/apiResponseObjectApiListResponseCreativeCompactDTO';
|
|
16
17
|
import { ApiResponseObjectApiListResponseCreativeDTO } from '../model/apiResponseObjectApiListResponseCreativeDTO';
|
|
17
18
|
import { ApiResponseObjectCreativeDTO } from '../model/apiResponseObjectCreativeDTO';
|
|
@@ -23,6 +24,7 @@ import { CreativeMockUpsDTO } from '../model/creativeMockUpsDTO';
|
|
|
23
24
|
import { CreativeThirdPartyAdTag } from '../model/creativeThirdPartyAdTag';
|
|
24
25
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
25
26
|
import { SearchRequest } from '../model/searchRequest';
|
|
27
|
+
import { VideoAdTagVerifyRequest } from '../model/videoAdTagVerifyRequest';
|
|
26
28
|
import { Configuration } from '../configuration';
|
|
27
29
|
export declare class CreativeControllerService {
|
|
28
30
|
protected httpClient: HttpClient;
|
|
@@ -172,4 +174,16 @@ export declare class CreativeControllerService {
|
|
|
172
174
|
updateCreativeUsingPOST(creative: CreativeDTO, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectCreativeDTO>;
|
|
173
175
|
updateCreativeUsingPOST(creative: CreativeDTO, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectCreativeDTO>>;
|
|
174
176
|
updateCreativeUsingPOST(creative: CreativeDTO, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectCreativeDTO>>;
|
|
177
|
+
/**
|
|
178
|
+
* Api to verify and get Third party video adtag creative details
|
|
179
|
+
*
|
|
180
|
+
* @param request request
|
|
181
|
+
* @param reqId request id
|
|
182
|
+
* @param token Auth Token
|
|
183
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
184
|
+
* @param reportProgress flag to report request and response progress.
|
|
185
|
+
*/
|
|
186
|
+
verifyAndGetVideoAdTagCreativeDetailsUsingPOST(request: VideoAdTagVerifyRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiListResponseSizeWithPreview>;
|
|
187
|
+
verifyAndGetVideoAdTagCreativeDetailsUsingPOST(request: VideoAdTagVerifyRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiListResponseSizeWithPreview>>;
|
|
188
|
+
verifyAndGetVideoAdTagCreativeDetailsUsingPOST(request: VideoAdTagVerifyRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseSizeWithPreview>>;
|
|
175
189
|
}
|
|
@@ -3820,6 +3820,42 @@
|
|
|
3820
3820
|
reportProgress: reportProgress
|
|
3821
3821
|
});
|
|
3822
3822
|
};
|
|
3823
|
+
CreativeControllerService.prototype.verifyAndGetVideoAdTagCreativeDetailsUsingPOST = function (request, reqId, token, observe, reportProgress) {
|
|
3824
|
+
if (observe === void 0) { observe = 'body'; }
|
|
3825
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
3826
|
+
if (request === null || request === undefined) {
|
|
3827
|
+
throw new Error('Required parameter request was null or undefined when calling verifyAndGetVideoAdTagCreativeDetailsUsingPOST.');
|
|
3828
|
+
}
|
|
3829
|
+
var headers = this.defaultHeaders;
|
|
3830
|
+
if (reqId !== undefined && reqId !== null) {
|
|
3831
|
+
headers = headers.set('reqId', String(reqId));
|
|
3832
|
+
}
|
|
3833
|
+
if (token !== undefined && token !== null) {
|
|
3834
|
+
headers = headers.set('token', String(token));
|
|
3835
|
+
}
|
|
3836
|
+
// to determine the Accept header
|
|
3837
|
+
var httpHeaderAccepts = [
|
|
3838
|
+
'application/json'
|
|
3839
|
+
];
|
|
3840
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
3841
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
3842
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
3843
|
+
}
|
|
3844
|
+
// to determine the Content-Type header
|
|
3845
|
+
var consumes = [
|
|
3846
|
+
'application/json'
|
|
3847
|
+
];
|
|
3848
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
3849
|
+
if (httpContentTypeSelected != undefined) {
|
|
3850
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
3851
|
+
}
|
|
3852
|
+
return this.httpClient.post(this.basePath + "/v2/api/creatives/videoAdtag", request, {
|
|
3853
|
+
withCredentials: this.configuration.withCredentials,
|
|
3854
|
+
headers: headers,
|
|
3855
|
+
observe: observe,
|
|
3856
|
+
reportProgress: reportProgress
|
|
3857
|
+
});
|
|
3858
|
+
};
|
|
3823
3859
|
return CreativeControllerService;
|
|
3824
3860
|
}());
|
|
3825
3861
|
CreativeControllerService.decorators = [
|
|
@@ -7574,7 +7610,8 @@
|
|
|
7574
7610
|
LOGOLINK: 'LOGO_LINK',
|
|
7575
7611
|
FALLBACKIMGLINK: 'FALLBACK_IMG_LINK',
|
|
7576
7612
|
OVERLAYIMGLINK: 'OVERLAY_IMG_LINK',
|
|
7577
|
-
DEFAULTLOGO: 'DEFAULT_LOGO'
|
|
7613
|
+
DEFAULTLOGO: 'DEFAULT_LOGO',
|
|
7614
|
+
CREATIVENAMEFORMAT: 'CREATIVE_NAME_FORMAT'
|
|
7578
7615
|
};
|
|
7579
7616
|
AppSettingsDTO.SettingsTypeEnum = {
|
|
7580
7617
|
BOOLEAN: 'BOOLEAN',
|
|
@@ -7738,7 +7775,8 @@
|
|
|
7738
7775
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7739
7776
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7740
7777
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7741
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7778
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7779
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7742
7780
|
};
|
|
7743
7781
|
})(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
|
|
7744
7782
|
|
|
@@ -7817,6 +7855,25 @@
|
|
|
7817
7855
|
};
|
|
7818
7856
|
})(exports.CreativeDTO || (exports.CreativeDTO = {}));
|
|
7819
7857
|
|
|
7858
|
+
exports.CreativeDetails = void 0;
|
|
7859
|
+
(function (CreativeDetails) {
|
|
7860
|
+
CreativeDetails.CreativeSetTypeEnum = {
|
|
7861
|
+
IMAGE: 'IMAGE',
|
|
7862
|
+
VIDEO: 'VIDEO',
|
|
7863
|
+
THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
|
|
7864
|
+
ZIPPEDHTML: 'ZIPPED_HTML',
|
|
7865
|
+
NATIVEIMAGE: 'NATIVE_IMAGE',
|
|
7866
|
+
NATIVEVIDEO: 'NATIVE_VIDEO',
|
|
7867
|
+
DYNAMICIMAGE: 'DYNAMIC_IMAGE',
|
|
7868
|
+
DYNAMICMACRO: 'DYNAMIC_MACRO',
|
|
7869
|
+
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7870
|
+
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7871
|
+
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7872
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7873
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7874
|
+
};
|
|
7875
|
+
})(exports.CreativeDetails || (exports.CreativeDetails = {}));
|
|
7876
|
+
|
|
7820
7877
|
exports.CreativeFileForSet = void 0;
|
|
7821
7878
|
(function (CreativeFileForSet) {
|
|
7822
7879
|
CreativeFileForSet.TypeEnum = {
|
|
@@ -7896,7 +7953,8 @@
|
|
|
7896
7953
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7897
7954
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7898
7955
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7899
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7956
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7957
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7900
7958
|
};
|
|
7901
7959
|
})(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
|
|
7902
7960
|
|
|
@@ -7914,7 +7972,8 @@
|
|
|
7914
7972
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7915
7973
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7916
7974
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7917
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7975
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7976
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7918
7977
|
};
|
|
7919
7978
|
})(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
|
|
7920
7979
|
|
|
@@ -7932,7 +7991,8 @@
|
|
|
7932
7991
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7933
7992
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7934
7993
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7935
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7994
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7995
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7936
7996
|
};
|
|
7937
7997
|
})(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
|
|
7938
7998
|
|
|
@@ -7961,7 +8021,8 @@
|
|
|
7961
8021
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7962
8022
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7963
8023
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7964
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
8024
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8025
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7965
8026
|
};
|
|
7966
8027
|
})(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
|
|
7967
8028
|
|
|
@@ -8010,7 +8071,8 @@
|
|
|
8010
8071
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
8011
8072
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
8012
8073
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
8013
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
8074
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
8075
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
8014
8076
|
};
|
|
8015
8077
|
})(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
|
|
8016
8078
|
|