@revxui/api-clients-ts 1.1.202 → 1.1.204

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.202
1
+ ## @revxui/api-clients-ts@1.1.204
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.202 --save
22
+ npm install @revxui/api-clients-ts@1.1.204 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
@@ -18,6 +18,7 @@ import { ApiResponseObjectApiListResponseCreativePerformanceList } from '../mode
18
18
  import { ApiResponseObjectApiListResponseCreativeSetDashboardMetric } from '../model/apiResponseObjectApiListResponseCreativeSetDashboardMetric';
19
19
  import { ApiResponseObjectApiListResponseCreativeSetPerformanceList } from '../model/apiResponseObjectApiListResponseCreativeSetPerformanceList';
20
20
  import { ApiResponseObjectBulkEditCreativeSetsResponse } from '../model/apiResponseObjectBulkEditCreativeSetsResponse';
21
+ import { ApiResponseObjectCreativePreviewDTO } from '../model/apiResponseObjectCreativePreviewDTO';
21
22
  import { ApiResponseObjectCreativeSetDetails } from '../model/apiResponseObjectCreativeSetDetails';
22
23
  import { ApiResponseObjectCreativeSetResponse } from '../model/apiResponseObjectCreativeSetResponse';
23
24
  import { ApiResponseObjectDashboardMetrics } from '../model/apiResponseObjectDashboardMetrics';
@@ -130,6 +131,18 @@ export declare class CreativeSetsControllerService {
130
131
  getCreativePerformanceDataUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectApiListResponseCreativePerformanceList>;
131
132
  getCreativePerformanceDataUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectApiListResponseCreativePerformanceList>>;
132
133
  getCreativePerformanceDataUsingPOST(dashboardRequest: DashboardRequest, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectApiListResponseCreativePerformanceList>>;
134
+ /**
135
+ * Api to get creative preview modal details
136
+ *
137
+ * @param id id
138
+ * @param reqId request id
139
+ * @param token Auth Token
140
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
141
+ * @param reportProgress flag to report request and response progress.
142
+ */
143
+ getCreativePreviewModalDataUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectCreativePreviewDTO>;
144
+ getCreativePreviewModalDataUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectCreativePreviewDTO>>;
145
+ getCreativePreviewModalDataUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectCreativePreviewDTO>>;
133
146
  /**
134
147
  * Api to get list of creative sets with performance data
135
148
  *
@@ -4368,6 +4368,36 @@
4368
4368
  reportProgress: reportProgress
4369
4369
  });
4370
4370
  };
4371
+ CreativeSetsControllerService.prototype.getCreativePreviewModalDataUsingGET = function (id, reqId, token, observe, reportProgress) {
4372
+ if (observe === void 0) { observe = 'body'; }
4373
+ if (reportProgress === void 0) { reportProgress = false; }
4374
+ if (id === null || id === undefined) {
4375
+ throw new Error('Required parameter id was null or undefined when calling getCreativePreviewModalDataUsingGET.');
4376
+ }
4377
+ var headers = this.defaultHeaders;
4378
+ if (reqId !== undefined && reqId !== null) {
4379
+ headers = headers.set('reqId', String(reqId));
4380
+ }
4381
+ if (token !== undefined && token !== null) {
4382
+ headers = headers.set('token', String(token));
4383
+ }
4384
+ // to determine the Accept header
4385
+ var httpHeaderAccepts = [
4386
+ 'application/json'
4387
+ ];
4388
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
4389
+ if (httpHeaderAcceptSelected != undefined) {
4390
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
4391
+ }
4392
+ // to determine the Content-Type header
4393
+ var consumes = [];
4394
+ return this.httpClient.get(this.basePath + "/v2/api/creativesets/creative/perview/" + encodeURIComponent(String(id)), {
4395
+ withCredentials: this.configuration.withCredentials,
4396
+ headers: headers,
4397
+ observe: observe,
4398
+ reportProgress: reportProgress
4399
+ });
4400
+ };
4371
4401
  CreativeSetsControllerService.prototype.getCreativeSetsPerformanceDataUsingPOST = function (dashboardRequest, refresh, reqId, token, observe, reportProgress) {
4372
4402
  if (observe === void 0) { observe = 'body'; }
4373
4403
  if (reportProgress === void 0) { reportProgress = false; }
@@ -8387,14 +8417,6 @@
8387
8417
  };
8388
8418
  })(exports.CreativeHtmlFileForSet || (exports.CreativeHtmlFileForSet = {}));
8389
8419
 
8390
- exports.CreativePerformanceList = void 0;
8391
- (function (CreativePerformanceList) {
8392
- CreativePerformanceList.StatusEnum = {
8393
- Active: 'active',
8394
- Inactive: 'inactive'
8395
- };
8396
- })(exports.CreativePerformanceList || (exports.CreativePerformanceList = {}));
8397
-
8398
8420
  exports.CreativeSetDashboardMetric = void 0;
8399
8421
  (function (CreativeSetDashboardMetric) {
8400
8422
  CreativeSetDashboardMetric.CreativeSetTypeEnum = {
@@ -8439,11 +8461,7 @@
8439
8461
 
8440
8462
  exports.CreativeSetPerformanceList = void 0;
8441
8463
  (function (CreativeSetPerformanceList) {
8442
- CreativeSetPerformanceList.StatusEnum = {
8443
- Active: 'active',
8444
- Inactive: 'inactive'
8445
- };
8446
- CreativeSetPerformanceList.TypeEnum = {
8464
+ CreativeSetPerformanceList.CreativeSetTypeEnum = {
8447
8465
  IMAGE: 'IMAGE',
8448
8466
  VIDEO: 'VIDEO',
8449
8467
  THIRDPARTYADTAGS: 'THIRD_PARTY_AD_TAGS',