@revxui/api-clients-ts 1.1.236 → 1.1.237

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.236
1
+ ## @revxui/api-clients-ts@1.1.237
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@1.1.236 --save
22
+ npm install @revxui/api-clients-ts@1.1.237 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -202,15 +202,16 @@ export declare class CreativeSetsControllerService {
202
202
  * @param advertiserId advertiserId
203
203
  * @param type type
204
204
  * @param filters filters
205
+ * @param hybridSupportType hybridSupportType
205
206
  * @param isPlacebo isPlacebo
206
207
  * @param reqId request id
207
208
  * @param token Auth Token
208
209
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
209
210
  * @param reportProgress flag to report request and response progress.
210
211
  */
211
- getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiListResponseCreativeTemplateDTO>;
212
- getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiListResponseCreativeTemplateDTO>>;
213
- getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseCreativeTemplateDTO>>;
212
+ getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, hybridSupportType?: 'IMAGE' | 'VIDEO', isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiListResponseCreativeTemplateDTO>;
213
+ getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, hybridSupportType?: 'IMAGE' | 'VIDEO', isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiListResponseCreativeTemplateDTO>>;
214
+ getTemplateListUsingGET(advertiserId: number, type: 'DCO' | 'HYBRID_STATIC_AD' | 'HYBRID_DYNAMIC_AD', filters?: string, hybridSupportType?: 'IMAGE' | 'VIDEO', isPlacebo?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiListResponseCreativeTemplateDTO>>;
214
215
  /**
215
216
  * Api to reschedule a creative sets
216
217
  *
@@ -4603,7 +4603,7 @@
4603
4603
  reportProgress: reportProgress
4604
4604
  });
4605
4605
  };
4606
- CreativeSetsControllerService.prototype.getTemplateListUsingGET = function (advertiserId, type, filters, isPlacebo, reqId, token, observe, reportProgress) {
4606
+ CreativeSetsControllerService.prototype.getTemplateListUsingGET = function (advertiserId, type, filters, hybridSupportType, isPlacebo, reqId, token, observe, reportProgress) {
4607
4607
  if (observe === void 0) { observe = 'body'; }
4608
4608
  if (reportProgress === void 0) { reportProgress = false; }
4609
4609
  if (advertiserId === null || advertiserId === undefined) {
@@ -4619,6 +4619,9 @@
4619
4619
  if (filters !== undefined && filters !== null) {
4620
4620
  queryParameters = queryParameters.set('filters', filters);
4621
4621
  }
4622
+ if (hybridSupportType !== undefined && hybridSupportType !== null) {
4623
+ queryParameters = queryParameters.set('hybridSupportType', hybridSupportType);
4624
+ }
4622
4625
  if (isPlacebo !== undefined && isPlacebo !== null) {
4623
4626
  queryParameters = queryParameters.set('isPlacebo', isPlacebo);
4624
4627
  }
@@ -8927,6 +8930,10 @@
8927
8930
  ICON: 'ICON',
8928
8931
  CTVVIDEO: 'CTV_VIDEO'
8929
8932
  };
8933
+ CreativeSetRequest.HybridSupportTypeEnum = {
8934
+ IMAGE: 'IMAGE',
8935
+ VIDEO: 'VIDEO'
8936
+ };
8930
8937
  })(exports.CreativeSetRequest || (exports.CreativeSetRequest = {}));
8931
8938
 
8932
8939
  /**