@revxui/api-clients-ts 0.10.353 → 0.10.355
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/creativeController.service.d.ts +14 -0
- package/api/strategyController.service.d.ts +13 -0
- package/bundles/revxui-api-clients-ts.umd.js +106 -6
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/esm2015/api/creativeController.service.js +35 -1
- package/esm2015/api/strategyController.service.js +38 -1
- package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
- 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 +127 -7
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/apiListResponseSizeWithPreview.d.ts +16 -0
- package/model/baseModelWithCreativeSetType.d.ts +2 -1
- package/model/creativeDetails.d.ts +20 -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.355
|
|
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.355 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -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
|
}
|
|
@@ -100,6 +100,19 @@ export declare class StrategyControllerService {
|
|
|
100
100
|
deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectMaplongResponseMessage>;
|
|
101
101
|
deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectMaplongResponseMessage>>;
|
|
102
102
|
deactivateStrategyUsingPOST(id: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectMaplongResponseMessage>>;
|
|
103
|
+
/**
|
|
104
|
+
* Api to disassociate strategy to creative set
|
|
105
|
+
*
|
|
106
|
+
* @param creativeSetIdsToBeRemoved creativeSetIdsToBeRemoved
|
|
107
|
+
* @param id id
|
|
108
|
+
* @param reqId request id
|
|
109
|
+
* @param token Auth Token
|
|
110
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
111
|
+
* @param reportProgress flag to report request and response progress.
|
|
112
|
+
*/
|
|
113
|
+
disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectlong>;
|
|
114
|
+
disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectlong>>;
|
|
115
|
+
disassociateStrategyWithCreativeSetsUsingPOST(creativeSetIdsToBeRemoved: Array<number>, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectlong>>;
|
|
103
116
|
/**
|
|
104
117
|
* Api to Create duplicate Strategy
|
|
105
118
|
*
|
|
@@ -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 = [
|
|
@@ -6664,6 +6700,45 @@
|
|
|
6664
6700
|
reportProgress: reportProgress
|
|
6665
6701
|
});
|
|
6666
6702
|
};
|
|
6703
|
+
StrategyControllerService.prototype.disassociateStrategyWithCreativeSetsUsingPOST = function (creativeSetIdsToBeRemoved, id, reqId, token, observe, reportProgress) {
|
|
6704
|
+
if (observe === void 0) { observe = 'body'; }
|
|
6705
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
6706
|
+
if (creativeSetIdsToBeRemoved === null || creativeSetIdsToBeRemoved === undefined) {
|
|
6707
|
+
throw new Error('Required parameter creativeSetIdsToBeRemoved was null or undefined when calling disassociateStrategyWithCreativeSetsUsingPOST.');
|
|
6708
|
+
}
|
|
6709
|
+
if (id === null || id === undefined) {
|
|
6710
|
+
throw new Error('Required parameter id was null or undefined when calling disassociateStrategyWithCreativeSetsUsingPOST.');
|
|
6711
|
+
}
|
|
6712
|
+
var headers = this.defaultHeaders;
|
|
6713
|
+
if (reqId !== undefined && reqId !== null) {
|
|
6714
|
+
headers = headers.set('reqId', String(reqId));
|
|
6715
|
+
}
|
|
6716
|
+
if (token !== undefined && token !== null) {
|
|
6717
|
+
headers = headers.set('token', String(token));
|
|
6718
|
+
}
|
|
6719
|
+
// to determine the Accept header
|
|
6720
|
+
var httpHeaderAccepts = [
|
|
6721
|
+
'application/json'
|
|
6722
|
+
];
|
|
6723
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
6724
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
6725
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
6726
|
+
}
|
|
6727
|
+
// to determine the Content-Type header
|
|
6728
|
+
var consumes = [
|
|
6729
|
+
'application/json'
|
|
6730
|
+
];
|
|
6731
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
6732
|
+
if (httpContentTypeSelected != undefined) {
|
|
6733
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
6734
|
+
}
|
|
6735
|
+
return this.httpClient.post(this.basePath + "/v2/api/strategies/" + encodeURIComponent(String(id)) + "/disassociate/creativesets", creativeSetIdsToBeRemoved, {
|
|
6736
|
+
withCredentials: this.configuration.withCredentials,
|
|
6737
|
+
headers: headers,
|
|
6738
|
+
observe: observe,
|
|
6739
|
+
reportProgress: reportProgress
|
|
6740
|
+
});
|
|
6741
|
+
};
|
|
6667
6742
|
StrategyControllerService.prototype.duplicateStrategyUsingPOST = function (dto, id, reqId, token, observe, reportProgress) {
|
|
6668
6743
|
if (observe === void 0) { observe = 'body'; }
|
|
6669
6744
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -7555,7 +7630,8 @@
|
|
|
7555
7630
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7556
7631
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7557
7632
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7558
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7633
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7634
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7559
7635
|
};
|
|
7560
7636
|
})(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
|
|
7561
7637
|
|
|
@@ -7634,6 +7710,25 @@
|
|
|
7634
7710
|
};
|
|
7635
7711
|
})(exports.CreativeDTO || (exports.CreativeDTO = {}));
|
|
7636
7712
|
|
|
7713
|
+
exports.CreativeDetails = void 0;
|
|
7714
|
+
(function (CreativeDetails) {
|
|
7715
|
+
CreativeDetails.CreativeSetTypeEnum = {
|
|
7716
|
+
IMAGE: 'IMAGE',
|
|
7717
|
+
VIDEO: 'VIDEO',
|
|
7718
|
+
THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
|
|
7719
|
+
ZIPPEDHTML: 'ZIPPED_HTML',
|
|
7720
|
+
NATIVEIMAGE: 'NATIVE_IMAGE',
|
|
7721
|
+
NATIVEVIDEO: 'NATIVE_VIDEO',
|
|
7722
|
+
DYNAMICIMAGE: 'DYNAMIC_IMAGE',
|
|
7723
|
+
DYNAMICMACRO: 'DYNAMIC_MACRO',
|
|
7724
|
+
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7725
|
+
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7726
|
+
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7727
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7728
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7729
|
+
};
|
|
7730
|
+
})(exports.CreativeDetails || (exports.CreativeDetails = {}));
|
|
7731
|
+
|
|
7637
7732
|
exports.CreativeFileForSet = void 0;
|
|
7638
7733
|
(function (CreativeFileForSet) {
|
|
7639
7734
|
CreativeFileForSet.TypeEnum = {
|
|
@@ -7713,7 +7808,8 @@
|
|
|
7713
7808
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7714
7809
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7715
7810
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7716
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7811
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7812
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7717
7813
|
};
|
|
7718
7814
|
})(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
|
|
7719
7815
|
|
|
@@ -7731,7 +7827,8 @@
|
|
|
7731
7827
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7732
7828
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7733
7829
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7734
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7830
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7831
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7735
7832
|
};
|
|
7736
7833
|
})(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
|
|
7737
7834
|
|
|
@@ -7749,7 +7846,8 @@
|
|
|
7749
7846
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7750
7847
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7751
7848
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7752
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7849
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7850
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7753
7851
|
};
|
|
7754
7852
|
})(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
|
|
7755
7853
|
|
|
@@ -7778,7 +7876,8 @@
|
|
|
7778
7876
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7779
7877
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7780
7878
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7781
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7879
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7880
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7782
7881
|
};
|
|
7783
7882
|
})(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
|
|
7784
7883
|
|
|
@@ -7827,7 +7926,8 @@
|
|
|
7827
7926
|
DYNAMICHTML: 'DYNAMIC_HTML',
|
|
7828
7927
|
DYNAMICVIDEO: 'DYNAMIC_VIDEO',
|
|
7829
7928
|
HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
|
|
7830
|
-
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
|
|
7929
|
+
HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
|
|
7930
|
+
THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
|
|
7831
7931
|
};
|
|
7832
7932
|
})(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
|
|
7833
7933
|
|