@revxui/api-clients-ts 0.10.359 → 0.10.360

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 (56) 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 +91 -30
  4. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  5. package/esm2015/api/adminController.service.js +2 -2
  6. package/esm2015/api/advertiserController.service.js +2 -2
  7. package/esm2015/api/appSettingsController.service.js +2 -2
  8. package/esm2015/api/audienceController.service.js +2 -2
  9. package/esm2015/api/auditController.service.js +2 -2
  10. package/esm2015/api/bulkStrategyController.service.js +2 -2
  11. package/esm2015/api/cSSThemeController_.service.js +2 -2
  12. package/esm2015/api/campaignController.service.js +2 -2
  13. package/esm2015/api/catalogController.service.js +2 -2
  14. package/esm2015/api/clickDestinationController.service.js +2 -2
  15. package/esm2015/api/creativeController.service.js +36 -2
  16. package/esm2015/api/creativeSetsController.service.js +2 -2
  17. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  18. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  19. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  20. package/esm2015/api/customerReportingController.service.js +2 -2
  21. package/esm2015/api/dashboardController.service.js +2 -2
  22. package/esm2015/api/notificationsController.service.js +2 -2
  23. package/esm2015/api/pixelController.service.js +2 -2
  24. package/esm2015/api/reportingController.service.js +2 -2
  25. package/esm2015/api/sliceXController.service.js +2 -2
  26. package/esm2015/api/strategyController.service.js +2 -2
  27. package/esm2015/api/uILoggerController.service.js +2 -2
  28. package/esm2015/api/userPreferenceController.service.js +2 -2
  29. package/esm2015/model/advertiserSettings.js +1 -1
  30. package/esm2015/model/apiListResponseSizeWithPreview.js +2 -0
  31. package/esm2015/model/baseModelWithCreativeSetType.js +3 -2
  32. package/esm2015/model/creativeDetails.js +19 -2
  33. package/esm2015/model/creativeSetDashboardMetric.js +3 -2
  34. package/esm2015/model/creativeSetDetails.js +3 -2
  35. package/esm2015/model/creativeSetRequest.js +3 -2
  36. package/esm2015/model/creativeSetResponse.js +3 -2
  37. package/esm2015/model/duplicateCreativeSetResponse.js +3 -2
  38. package/esm2015/model/models.js +4 -1
  39. package/esm2015/model/sizeWithPreview.js +13 -0
  40. package/esm2015/model/videoAdTagVerifyRequest.js +13 -0
  41. package/fesm2015/revxui-api-clients-ts.js +114 -31
  42. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  43. package/model/advertiserSettings.d.ts +0 -1
  44. package/model/apiListResponseSizeWithPreview.d.ts +16 -0
  45. package/model/baseModelWithCreativeSetType.d.ts +2 -1
  46. package/model/creativeDetails.d.ts +22 -0
  47. package/model/creativeSetDashboardMetric.d.ts +2 -1
  48. package/model/creativeSetDetails.d.ts +2 -1
  49. package/model/creativeSetRequest.d.ts +2 -1
  50. package/model/creativeSetResponse.d.ts +2 -1
  51. package/model/duplicateCreativeSetResponse.d.ts +2 -1
  52. package/model/models.d.ts +3 -0
  53. package/model/sizeWithPreview.d.ts +16 -0
  54. package/model/videoAdTagVerifyRequest.d.ts +14 -0
  55. package/package.json +1 -1
  56. package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@0.10.359
1
+ ## @revxui/api-clients-ts@0.10.360
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.359 --save
22
+ npm install @revxui/api-clients-ts@0.10.360 --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
  }
@@ -370,7 +370,7 @@
370
370
  var AdminControllerService = /** @class */ (function () {
371
371
  function AdminControllerService(httpClient, basePath, configuration) {
372
372
  this.httpClient = httpClient;
373
- this.basePath = 'https://localhost:10045';
373
+ this.basePath = 'https://apiv2stage1.atomex.net';
374
374
  this.defaultHeaders = new http.HttpHeaders();
375
375
  this.configuration = new Configuration();
376
376
  if (basePath) {
@@ -575,7 +575,7 @@
575
575
  var AdvertiserControllerService = /** @class */ (function () {
576
576
  function AdvertiserControllerService(httpClient, basePath, configuration) {
577
577
  this.httpClient = httpClient;
578
- this.basePath = 'https://localhost:10045';
578
+ this.basePath = 'https://apiv2stage1.atomex.net';
579
579
  this.defaultHeaders = new http.HttpHeaders();
580
580
  this.configuration = new Configuration();
581
581
  if (basePath) {
@@ -1009,7 +1009,7 @@
1009
1009
  var AppSettingsControllerService = /** @class */ (function () {
1010
1010
  function AppSettingsControllerService(httpClient, basePath, configuration) {
1011
1011
  this.httpClient = httpClient;
1012
- this.basePath = 'https://localhost:10045';
1012
+ this.basePath = 'https://apiv2stage1.atomex.net';
1013
1013
  this.defaultHeaders = new http.HttpHeaders();
1014
1014
  this.configuration = new Configuration();
1015
1015
  if (basePath) {
@@ -1262,7 +1262,7 @@
1262
1262
  var AudienceControllerService = /** @class */ (function () {
1263
1263
  function AudienceControllerService(httpClient, basePath, configuration) {
1264
1264
  this.httpClient = httpClient;
1265
- this.basePath = 'https://localhost:10045';
1265
+ this.basePath = 'https://apiv2stage1.atomex.net';
1266
1266
  this.defaultHeaders = new http.HttpHeaders();
1267
1267
  this.configuration = new Configuration();
1268
1268
  if (basePath) {
@@ -2048,7 +2048,7 @@
2048
2048
  var AuditControllerService = /** @class */ (function () {
2049
2049
  function AuditControllerService(httpClient, basePath, configuration) {
2050
2050
  this.httpClient = httpClient;
2051
- this.basePath = 'https://localhost:10045';
2051
+ this.basePath = 'https://apiv2stage1.atomex.net';
2052
2052
  this.defaultHeaders = new http.HttpHeaders();
2053
2053
  this.configuration = new Configuration();
2054
2054
  if (basePath) {
@@ -2235,7 +2235,7 @@
2235
2235
  var BulkStrategyControllerService = /** @class */ (function () {
2236
2236
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2237
2237
  this.httpClient = httpClient;
2238
- this.basePath = 'https://localhost:10045';
2238
+ this.basePath = 'https://apiv2stage1.atomex.net';
2239
2239
  this.defaultHeaders = new http.HttpHeaders();
2240
2240
  this.configuration = new Configuration();
2241
2241
  if (basePath) {
@@ -2466,7 +2466,7 @@
2466
2466
  var CSSThemeController_Service = /** @class */ (function () {
2467
2467
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2468
2468
  this.httpClient = httpClient;
2469
- this.basePath = 'https://localhost:10045';
2469
+ this.basePath = 'https://apiv2stage1.atomex.net';
2470
2470
  this.defaultHeaders = new http.HttpHeaders();
2471
2471
  this.configuration = new Configuration();
2472
2472
  if (basePath) {
@@ -2575,7 +2575,7 @@
2575
2575
  var CampaignControllerService = /** @class */ (function () {
2576
2576
  function CampaignControllerService(httpClient, basePath, configuration) {
2577
2577
  this.httpClient = httpClient;
2578
- this.basePath = 'https://localhost:10045';
2578
+ this.basePath = 'https://apiv2stage1.atomex.net';
2579
2579
  this.defaultHeaders = new http.HttpHeaders();
2580
2580
  this.configuration = new Configuration();
2581
2581
  if (basePath) {
@@ -2885,7 +2885,7 @@
2885
2885
  var CatalogControllerService = /** @class */ (function () {
2886
2886
  function CatalogControllerService(httpClient, basePath, configuration) {
2887
2887
  this.httpClient = httpClient;
2888
- this.basePath = 'https://localhost:10045';
2888
+ this.basePath = 'https://apiv2stage1.atomex.net';
2889
2889
  this.defaultHeaders = new http.HttpHeaders();
2890
2890
  this.configuration = new Configuration();
2891
2891
  if (basePath) {
@@ -3131,7 +3131,7 @@
3131
3131
  var ClickDestinationControllerService = /** @class */ (function () {
3132
3132
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3133
3133
  this.httpClient = httpClient;
3134
- this.basePath = 'https://localhost:10045';
3134
+ this.basePath = 'https://apiv2stage1.atomex.net';
3135
3135
  this.defaultHeaders = new http.HttpHeaders();
3136
3136
  this.configuration = new Configuration();
3137
3137
  if (basePath) {
@@ -3369,7 +3369,7 @@
3369
3369
  var CreativeControllerService = /** @class */ (function () {
3370
3370
  function CreativeControllerService(httpClient, basePath, configuration) {
3371
3371
  this.httpClient = httpClient;
3372
- this.basePath = 'https://localhost:10045';
3372
+ this.basePath = 'https://apiv2stage1.atomex.net';
3373
3373
  this.defaultHeaders = new http.HttpHeaders();
3374
3374
  this.configuration = new Configuration();
3375
3375
  if (basePath) {
@@ -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 = [
@@ -3834,7 +3870,7 @@
3834
3870
  var CreativeSetsControllerService = /** @class */ (function () {
3835
3871
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
3836
3872
  this.httpClient = httpClient;
3837
- this.basePath = 'https://localhost:10045';
3873
+ this.basePath = 'https://apiv2stage1.atomex.net';
3838
3874
  this.defaultHeaders = new http.HttpHeaders();
3839
3875
  this.configuration = new Configuration();
3840
3876
  if (basePath) {
@@ -4353,7 +4389,7 @@
4353
4389
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4354
4390
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4355
4391
  this.httpClient = httpClient;
4356
- this.basePath = 'https://localhost:10045';
4392
+ this.basePath = 'https://apiv2stage1.atomex.net';
4357
4393
  this.defaultHeaders = new http.HttpHeaders();
4358
4394
  this.configuration = new Configuration();
4359
4395
  if (basePath) {
@@ -4542,7 +4578,7 @@
4542
4578
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4543
4579
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4544
4580
  this.httpClient = httpClient;
4545
- this.basePath = 'https://localhost:10045';
4581
+ this.basePath = 'https://apiv2stage1.atomex.net';
4546
4582
  this.defaultHeaders = new http.HttpHeaders();
4547
4583
  this.configuration = new Configuration();
4548
4584
  if (basePath) {
@@ -4618,7 +4654,7 @@
4618
4654
  var CreativeTemplatesControllerService = /** @class */ (function () {
4619
4655
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4620
4656
  this.httpClient = httpClient;
4621
- this.basePath = 'https://localhost:10045';
4657
+ this.basePath = 'https://apiv2stage1.atomex.net';
4622
4658
  this.defaultHeaders = new http.HttpHeaders();
4623
4659
  this.configuration = new Configuration();
4624
4660
  if (basePath) {
@@ -4785,7 +4821,7 @@
4785
4821
  var CustomerReportingControllerService = /** @class */ (function () {
4786
4822
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
4787
4823
  this.httpClient = httpClient;
4788
- this.basePath = 'https://localhost:10045';
4824
+ this.basePath = 'https://apiv2stage1.atomex.net';
4789
4825
  this.defaultHeaders = new http.HttpHeaders();
4790
4826
  this.configuration = new Configuration();
4791
4827
  if (basePath) {
@@ -4870,7 +4906,7 @@
4870
4906
  var DashboardControllerService = /** @class */ (function () {
4871
4907
  function DashboardControllerService(httpClient, basePath, configuration) {
4872
4908
  this.httpClient = httpClient;
4873
- this.basePath = 'https://localhost:10045';
4909
+ this.basePath = 'https://apiv2stage1.atomex.net';
4874
4910
  this.defaultHeaders = new http.HttpHeaders();
4875
4911
  this.configuration = new Configuration();
4876
4912
  if (basePath) {
@@ -5515,7 +5551,7 @@
5515
5551
  var NotificationsControllerService = /** @class */ (function () {
5516
5552
  function NotificationsControllerService(httpClient, basePath, configuration) {
5517
5553
  this.httpClient = httpClient;
5518
- this.basePath = 'https://localhost:10045';
5554
+ this.basePath = 'https://apiv2stage1.atomex.net';
5519
5555
  this.defaultHeaders = new http.HttpHeaders();
5520
5556
  this.configuration = new Configuration();
5521
5557
  if (basePath) {
@@ -5702,7 +5738,7 @@
5702
5738
  var PixelControllerService = /** @class */ (function () {
5703
5739
  function PixelControllerService(httpClient, basePath, configuration) {
5704
5740
  this.httpClient = httpClient;
5705
- this.basePath = 'https://localhost:10045';
5741
+ this.basePath = 'https://apiv2stage1.atomex.net';
5706
5742
  this.defaultHeaders = new http.HttpHeaders();
5707
5743
  this.configuration = new Configuration();
5708
5744
  if (basePath) {
@@ -6019,7 +6055,7 @@
6019
6055
  var ReportingControllerService = /** @class */ (function () {
6020
6056
  function ReportingControllerService(httpClient, basePath, configuration) {
6021
6057
  this.httpClient = httpClient;
6022
- this.basePath = 'https://localhost:10045';
6058
+ this.basePath = 'https://apiv2stage1.atomex.net';
6023
6059
  this.defaultHeaders = new http.HttpHeaders();
6024
6060
  this.configuration = new Configuration();
6025
6061
  if (basePath) {
@@ -6191,7 +6227,7 @@
6191
6227
  var SliceXControllerService = /** @class */ (function () {
6192
6228
  function SliceXControllerService(httpClient, basePath, configuration) {
6193
6229
  this.httpClient = httpClient;
6194
- this.basePath = 'https://localhost:10045';
6230
+ this.basePath = 'https://apiv2stage1.atomex.net';
6195
6231
  this.defaultHeaders = new http.HttpHeaders();
6196
6232
  this.configuration = new Configuration();
6197
6233
  if (basePath) {
@@ -6447,7 +6483,7 @@
6447
6483
  var StrategyControllerService = /** @class */ (function () {
6448
6484
  function StrategyControllerService(httpClient, basePath, configuration) {
6449
6485
  this.httpClient = httpClient;
6450
- this.basePath = 'https://localhost:10045';
6486
+ this.basePath = 'https://apiv2stage1.atomex.net';
6451
6487
  this.defaultHeaders = new http.HttpHeaders();
6452
6488
  this.configuration = new Configuration();
6453
6489
  if (basePath) {
@@ -7174,7 +7210,7 @@
7174
7210
  var UILoggerControllerService = /** @class */ (function () {
7175
7211
  function UILoggerControllerService(httpClient, basePath, configuration) {
7176
7212
  this.httpClient = httpClient;
7177
- this.basePath = 'https://localhost:10045';
7213
+ this.basePath = 'https://apiv2stage1.atomex.net';
7178
7214
  this.defaultHeaders = new http.HttpHeaders();
7179
7215
  this.configuration = new Configuration();
7180
7216
  if (basePath) {
@@ -7264,7 +7300,7 @@
7264
7300
  var UserPreferenceControllerService = /** @class */ (function () {
7265
7301
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
7266
7302
  this.httpClient = httpClient;
7267
- this.basePath = 'https://localhost:10045';
7303
+ this.basePath = 'https://apiv2stage1.atomex.net';
7268
7304
  this.defaultHeaders = new http.HttpHeaders();
7269
7305
  this.configuration = new Configuration();
7270
7306
  if (basePath) {
@@ -7633,7 +7669,8 @@
7633
7669
  DYNAMICHTML: 'DYNAMIC_HTML',
7634
7670
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7635
7671
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7636
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7672
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7673
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7637
7674
  };
7638
7675
  })(exports.BaseModelWithCreativeSetType || (exports.BaseModelWithCreativeSetType = {}));
7639
7676
 
@@ -7712,6 +7749,25 @@
7712
7749
  };
7713
7750
  })(exports.CreativeDTO || (exports.CreativeDTO = {}));
7714
7751
 
7752
+ exports.CreativeDetails = void 0;
7753
+ (function (CreativeDetails) {
7754
+ CreativeDetails.CreativeSetTypeEnum = {
7755
+ IMAGE: 'IMAGE',
7756
+ VIDEO: 'VIDEO',
7757
+ THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',
7758
+ ZIPPEDHTML: 'ZIPPED_HTML',
7759
+ NATIVEIMAGE: 'NATIVE_IMAGE',
7760
+ NATIVEVIDEO: 'NATIVE_VIDEO',
7761
+ DYNAMICIMAGE: 'DYNAMIC_IMAGE',
7762
+ DYNAMICMACRO: 'DYNAMIC_MACRO',
7763
+ DYNAMICHTML: 'DYNAMIC_HTML',
7764
+ DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7765
+ HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7766
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7767
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7768
+ };
7769
+ })(exports.CreativeDetails || (exports.CreativeDetails = {}));
7770
+
7715
7771
  exports.CreativeFileForSet = void 0;
7716
7772
  (function (CreativeFileForSet) {
7717
7773
  CreativeFileForSet.TypeEnum = {
@@ -7791,7 +7847,8 @@
7791
7847
  DYNAMICHTML: 'DYNAMIC_HTML',
7792
7848
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7793
7849
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7794
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7850
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7851
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7795
7852
  };
7796
7853
  })(exports.CreativeSetDashboardMetric || (exports.CreativeSetDashboardMetric = {}));
7797
7854
 
@@ -7809,7 +7866,8 @@
7809
7866
  DYNAMICHTML: 'DYNAMIC_HTML',
7810
7867
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7811
7868
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7812
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7869
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7870
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7813
7871
  };
7814
7872
  })(exports.CreativeSetDetails || (exports.CreativeSetDetails = {}));
7815
7873
 
@@ -7827,7 +7885,8 @@
7827
7885
  DYNAMICHTML: 'DYNAMIC_HTML',
7828
7886
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7829
7887
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7830
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7888
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7889
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7831
7890
  };
7832
7891
  })(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
7833
7892
 
@@ -7856,7 +7915,8 @@
7856
7915
  DYNAMICHTML: 'DYNAMIC_HTML',
7857
7916
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7858
7917
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7859
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7918
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7919
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7860
7920
  };
7861
7921
  })(exports.CreativeSetResponse || (exports.CreativeSetResponse = {}));
7862
7922
 
@@ -7905,7 +7965,8 @@
7905
7965
  DYNAMICHTML: 'DYNAMIC_HTML',
7906
7966
  DYNAMICVIDEO: 'DYNAMIC_VIDEO',
7907
7967
  HYBRIDSTATICAD: 'HYBRID_STATIC_AD',
7908
- HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD'
7968
+ HYBRIDDYNAMICAD: 'HYBRID_DYNAMIC_AD',
7969
+ THIRDPARTYVIDEOADTAGS: 'THIRD_PARTY_VIDEO_AD_TAGS'
7909
7970
  };
7910
7971
  })(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
7911
7972