@revxui/api-clients-ts 0.10.354 → 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.
Files changed (31) hide show
  1. package/README.md +2 -2
  2. package/api/creativeController.service.d.ts +14 -0
  3. package/bundles/revxui-api-clients-ts.umd.js +67 -6
  4. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  5. package/esm2015/api/creativeController.service.js +35 -1
  6. package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
  7. package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
  8. package/esm2015/model/creativeDetails.js +19 -2
  9. package/esm2015/model/creativeSetDashboardMetric.js +3 -2
  10. package/esm2015/model/creativeSetDetails.js +3 -2
  11. package/esm2015/model/creativeSetRequest.js +3 -2
  12. package/esm2015/model/creativeSetResponse.js +3 -2
  13. package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
  14. package/esm2015/model/models.js +4 -1
  15. package/esm2015/model/sizeWithPreview.js +13 -0
  16. package/esm2015/model/videoAdTagVerifyRequest.js +13 -0
  17. package/fesm2015/revxui-api-clients-ts.js +90 -7
  18. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  19. package/model/apiListResponseSizeWithPreview.d.ts +16 -0
  20. package/model/baseModelWithCreativeSetType.d.ts +2 -1
  21. package/model/creativeDetails.d.ts +20 -0
  22. package/model/creativeSetDashboardMetric.d.ts +2 -1
  23. package/model/creativeSetDetails.d.ts +2 -1
  24. package/model/creativeSetRequest.d.ts +2 -1
  25. package/model/creativeSetResponse.d.ts +2 -1
  26. package/model/duplicateCreativeSetResponse.d.ts +2 -1
  27. package/model/models.d.ts +3 -0
  28. package/model/sizeWithPreview.d.ts +16 -0
  29. package/model/videoAdTagVerifyRequest.d.ts +14 -0
  30. package/package.json +1 -1
  31. package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.354
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.354 --save
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
  }
@@ -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 = [
@@ -7594,7 +7630,8 @@
7594
7630
  DYNAMICHTML: 'DYNAMIC_HTML',
7595
7631
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7596
7632
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7597
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7633
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7634
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7598
7635
  };
7599
7636
  })(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
7600
7637
 
@@ -7673,6 +7710,25 @@
7673
7710
  };
7674
7711
  })(exports.CreativeDTO || (exports.CreativeDTO = {}));
7675
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
+
7676
7732
  exports.CreativeFileForSet = void 0;
7677
7733
  (function (CreativeFileForSet) {
7678
7734
  CreativeFileForSet.TypeEnum = {
@@ -7752,7 +7808,8 @@
7752
7808
  DYNAMICHTML: 'DYNAMIC_HTML',
7753
7809
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7754
7810
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7755
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7811
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7812
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7756
7813
  };
7757
7814
  })(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
7758
7815
 
@@ -7770,7 +7827,8 @@
7770
7827
  DYNAMICHTML: 'DYNAMIC_HTML',
7771
7828
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7772
7829
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7773
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7830
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7831
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7774
7832
  };
7775
7833
  })(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
7776
7834
 
@@ -7788,7 +7846,8 @@
7788
7846
  DYNAMICHTML: 'DYNAMIC_HTML',
7789
7847
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7790
7848
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7791
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7849
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7850
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7792
7851
  };
7793
7852
  })(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
7794
7853
 
@@ -7817,7 +7876,8 @@
7817
7876
  DYNAMICHTML: 'DYNAMIC_HTML',
7818
7877
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7819
7878
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7820
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7879
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7880
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7821
7881
  };
7822
7882
  })(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
7823
7883
 
@@ -7866,7 +7926,8 @@
7866
7926
  DYNAMICHTML: 'DYNAMIC_HTML',
7867
7927
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7868
7928
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7869
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7929
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7930
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7870
7931
  };
7871
7932
  })(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
7872
7933