@revxui/api-clients-ts 0.10.334 → 0.10.335
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/auditController.service.d.ts +6 -6
- package/api/creativeSetsController.service.d.ts +15 -0
- package/api/dashboardController.service.d.ts +9 -9
- package/bundles/revxui-api-clients-ts.umd.js +62 -23
- package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js +1 -1
- package/bundles/revxui-api-clients-ts.umd.min.js.map +1 -1
- package/esm2015/api/adminController.service.js +2 -2
- package/esm2015/api/advertiserController.service.js +2 -2
- package/esm2015/api/appSettingsController.service.js +2 -2
- package/esm2015/api/audienceController.service.js +2 -2
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bulkStrategyController.service.js +2 -2
- package/esm2015/api/cSSThemeController_.service.js +2 -2
- package/esm2015/api/campaignController.service.js +2 -2
- package/esm2015/api/catalogController.service.js +2 -2
- package/esm2015/api/clickDestinationController.service.js +2 -2
- package/esm2015/api/creativeController.service.js +2 -2
- package/esm2015/api/creativeSetsController.service.js +39 -2
- package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
- package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
- package/esm2015/api/creativeTemplatesController.service.js +2 -2
- package/esm2015/api/dashboardController.service.js +2 -2
- package/esm2015/api/notificationsController.service.js +2 -2
- package/esm2015/api/pixelController.service.js +2 -2
- package/esm2015/api/reportingController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/creativeSetRescheduleRequest.js +13 -0
- package/esm2015/model/models.js +2 -1
- package/fesm2015/revxui-api-clients-ts.js +72 -23
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/creativeSetRescheduleRequest.d.ts +15 -0
- package/model/models.d.ts +1 -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.335
|
|
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.335 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -38,9 +38,9 @@ export declare class AuditControllerService {
|
|
|
38
38
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
39
39
|
* @param reportProgress flag to report request and response progress.
|
|
40
40
|
*/
|
|
41
|
-
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditDetails>;
|
|
42
|
-
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditDetails>>;
|
|
43
|
-
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditDetails>>;
|
|
41
|
+
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditDetails>;
|
|
42
|
+
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditDetails>>;
|
|
43
|
+
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditDetails>>;
|
|
44
44
|
/**
|
|
45
45
|
* get Audit Log for campaign and strategy
|
|
46
46
|
*
|
|
@@ -53,9 +53,9 @@ export declare class AuditControllerService {
|
|
|
53
53
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
54
54
|
* @param reportProgress flag to report request and response progress.
|
|
55
55
|
*/
|
|
56
|
-
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditMarker>;
|
|
57
|
-
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditMarker>>;
|
|
58
|
-
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditMarker>>;
|
|
56
|
+
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAuditMarker>;
|
|
57
|
+
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAuditMarker>>;
|
|
58
|
+
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', id: number, startTime: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAuditMarker>>;
|
|
59
59
|
/**
|
|
60
60
|
* get user activity log
|
|
61
61
|
*
|
|
@@ -21,8 +21,10 @@ import { ApiResponseObjectCreativeSetResponse } from '../model/apiResponseObject
|
|
|
21
21
|
import { ApiResponseObjectDashboardMetrics } from '../model/apiResponseObjectDashboardMetrics';
|
|
22
22
|
import { ApiResponseObjectDashboardResponse } from '../model/apiResponseObjectDashboardResponse';
|
|
23
23
|
import { ApiResponseObjectDuplicateCreativeSetResponse } from '../model/apiResponseObjectDuplicateCreativeSetResponse';
|
|
24
|
+
import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
|
|
24
25
|
import { BulkEditCreativeSetsDTO } from '../model/bulkEditCreativeSetsDTO';
|
|
25
26
|
import { CreativeSetRequest } from '../model/creativeSetRequest';
|
|
27
|
+
import { CreativeSetRescheduleRequest } from '../model/creativeSetRescheduleRequest';
|
|
26
28
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
27
29
|
import { DuplicateCreativeSetsRequestDTO } from '../model/duplicateCreativeSetsRequestDTO';
|
|
28
30
|
import { Configuration } from '../configuration';
|
|
@@ -168,6 +170,19 @@ export declare class CreativeSetsControllerService {
|
|
|
168
170
|
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>;
|
|
169
171
|
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>>;
|
|
170
172
|
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>>;
|
|
173
|
+
/**
|
|
174
|
+
* Api to reschedule a creative sets
|
|
175
|
+
*
|
|
176
|
+
* @param creativeSetRescheduleRequest creativeSetRescheduleRequest
|
|
177
|
+
* @param id id
|
|
178
|
+
* @param reqId request id
|
|
179
|
+
* @param token Auth Token
|
|
180
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
181
|
+
* @param reportProgress flag to report request and response progress.
|
|
182
|
+
*/
|
|
183
|
+
rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectResponseMessage>;
|
|
184
|
+
rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectResponseMessage>>;
|
|
185
|
+
rescheduleUsingPOST(creativeSetRescheduleRequest: CreativeSetRescheduleRequest, id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectResponseMessage>>;
|
|
171
186
|
/**
|
|
172
187
|
* Api to update creative sets
|
|
173
188
|
*
|
|
@@ -110,9 +110,9 @@ export declare class DashboardControllerService {
|
|
|
110
110
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
111
111
|
* @param reportProgress flag to report request and response progress.
|
|
112
112
|
*/
|
|
113
|
-
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
|
114
|
-
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
|
|
115
|
-
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
|
|
113
|
+
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<any>;
|
|
114
|
+
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<any>>;
|
|
115
|
+
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<any>>;
|
|
116
116
|
/**
|
|
117
117
|
* DashBoard Api For Download List CSV.
|
|
118
118
|
*
|
|
@@ -123,9 +123,9 @@ export declare class DashboardControllerService {
|
|
|
123
123
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
124
124
|
* @param reportProgress flag to report request and response progress.
|
|
125
125
|
*/
|
|
126
|
-
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectFileDownloadResponse>;
|
|
127
|
-
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectFileDownloadResponse>>;
|
|
128
|
-
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectFileDownloadResponse>>;
|
|
126
|
+
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectFileDownloadResponse>;
|
|
127
|
+
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectFileDownloadResponse>>;
|
|
128
|
+
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectFileDownloadResponse>>;
|
|
129
129
|
/**
|
|
130
130
|
* DashBoard Api For DashBoard.
|
|
131
131
|
*
|
|
@@ -138,9 +138,9 @@ export declare class DashboardControllerService {
|
|
|
138
138
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
139
139
|
* @param reportProgress flag to report request and response progress.
|
|
140
140
|
*/
|
|
141
|
-
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
|
|
142
|
-
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
|
|
143
|
-
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
|
|
141
|
+
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectDashboardResponse>;
|
|
142
|
+
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectDashboardResponse>>;
|
|
143
|
+
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE' | 'CREATIVE_SET', showuu: boolean, refresh?: boolean, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectDashboardResponse>>;
|
|
144
144
|
/**
|
|
145
145
|
* getDetailById
|
|
146
146
|
*
|
|
@@ -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://
|
|
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://
|
|
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://
|
|
1012
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
1013
1013
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1014
1014
|
this.configuration = new Configuration();
|
|
1015
1015
|
if (basePath) {
|
|
@@ -1167,7 +1167,7 @@
|
|
|
1167
1167
|
var AudienceControllerService = /** @class */ (function () {
|
|
1168
1168
|
function AudienceControllerService(httpClient, basePath, configuration) {
|
|
1169
1169
|
this.httpClient = httpClient;
|
|
1170
|
-
this.basePath = 'https://
|
|
1170
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
1171
1171
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1172
1172
|
this.configuration = new Configuration();
|
|
1173
1173
|
if (basePath) {
|
|
@@ -1953,7 +1953,7 @@
|
|
|
1953
1953
|
var AuditControllerService = /** @class */ (function () {
|
|
1954
1954
|
function AuditControllerService(httpClient, basePath, configuration) {
|
|
1955
1955
|
this.httpClient = httpClient;
|
|
1956
|
-
this.basePath = 'https://
|
|
1956
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
1957
1957
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1958
1958
|
this.configuration = new Configuration();
|
|
1959
1959
|
if (basePath) {
|
|
@@ -2140,7 +2140,7 @@
|
|
|
2140
2140
|
var BulkStrategyControllerService = /** @class */ (function () {
|
|
2141
2141
|
function BulkStrategyControllerService(httpClient, basePath, configuration) {
|
|
2142
2142
|
this.httpClient = httpClient;
|
|
2143
|
-
this.basePath = 'https://
|
|
2143
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2144
2144
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2145
2145
|
this.configuration = new Configuration();
|
|
2146
2146
|
if (basePath) {
|
|
@@ -2371,7 +2371,7 @@
|
|
|
2371
2371
|
var CSSThemeController_Service = /** @class */ (function () {
|
|
2372
2372
|
function CSSThemeController_Service(httpClient, basePath, configuration) {
|
|
2373
2373
|
this.httpClient = httpClient;
|
|
2374
|
-
this.basePath = 'https://
|
|
2374
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2375
2375
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2376
2376
|
this.configuration = new Configuration();
|
|
2377
2377
|
if (basePath) {
|
|
@@ -2480,7 +2480,7 @@
|
|
|
2480
2480
|
var CampaignControllerService = /** @class */ (function () {
|
|
2481
2481
|
function CampaignControllerService(httpClient, basePath, configuration) {
|
|
2482
2482
|
this.httpClient = httpClient;
|
|
2483
|
-
this.basePath = 'https://
|
|
2483
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2484
2484
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2485
2485
|
this.configuration = new Configuration();
|
|
2486
2486
|
if (basePath) {
|
|
@@ -2790,7 +2790,7 @@
|
|
|
2790
2790
|
var CatalogControllerService = /** @class */ (function () {
|
|
2791
2791
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
2792
2792
|
this.httpClient = httpClient;
|
|
2793
|
-
this.basePath = 'https://
|
|
2793
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
2794
2794
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2795
2795
|
this.configuration = new Configuration();
|
|
2796
2796
|
if (basePath) {
|
|
@@ -3036,7 +3036,7 @@
|
|
|
3036
3036
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3037
3037
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3038
3038
|
this.httpClient = httpClient;
|
|
3039
|
-
this.basePath = 'https://
|
|
3039
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3040
3040
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3041
3041
|
this.configuration = new Configuration();
|
|
3042
3042
|
if (basePath) {
|
|
@@ -3274,7 +3274,7 @@
|
|
|
3274
3274
|
var CreativeControllerService = /** @class */ (function () {
|
|
3275
3275
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3276
3276
|
this.httpClient = httpClient;
|
|
3277
|
-
this.basePath = 'https://
|
|
3277
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3278
3278
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3279
3279
|
this.configuration = new Configuration();
|
|
3280
3280
|
if (basePath) {
|
|
@@ -3739,7 +3739,7 @@
|
|
|
3739
3739
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
3740
3740
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
3741
3741
|
this.httpClient = httpClient;
|
|
3742
|
-
this.basePath = 'https://
|
|
3742
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
3743
3743
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3744
3744
|
this.configuration = new Configuration();
|
|
3745
3745
|
if (basePath) {
|
|
@@ -4166,6 +4166,45 @@
|
|
|
4166
4166
|
reportProgress: reportProgress
|
|
4167
4167
|
});
|
|
4168
4168
|
};
|
|
4169
|
+
CreativeSetsControllerService.prototype.rescheduleUsingPOST = function (creativeSetRescheduleRequest, id, reqId, token, observe, reportProgress) {
|
|
4170
|
+
if (observe === void 0) { observe = 'body'; }
|
|
4171
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
4172
|
+
if (creativeSetRescheduleRequest === null || creativeSetRescheduleRequest === undefined) {
|
|
4173
|
+
throw new Error('Required parameter creativeSetRescheduleRequest was null or undefined when calling rescheduleUsingPOST.');
|
|
4174
|
+
}
|
|
4175
|
+
if (id === null || id === undefined) {
|
|
4176
|
+
throw new Error('Required parameter id was null or undefined when calling rescheduleUsingPOST.');
|
|
4177
|
+
}
|
|
4178
|
+
var headers = this.defaultHeaders;
|
|
4179
|
+
if (reqId !== undefined && reqId !== null) {
|
|
4180
|
+
headers = headers.set('reqId', String(reqId));
|
|
4181
|
+
}
|
|
4182
|
+
if (token !== undefined && token !== null) {
|
|
4183
|
+
headers = headers.set('token', String(token));
|
|
4184
|
+
}
|
|
4185
|
+
// to determine the Accept header
|
|
4186
|
+
var httpHeaderAccepts = [
|
|
4187
|
+
'application/json'
|
|
4188
|
+
];
|
|
4189
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
4190
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
4191
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
4192
|
+
}
|
|
4193
|
+
// to determine the Content-Type header
|
|
4194
|
+
var consumes = [
|
|
4195
|
+
'application/json'
|
|
4196
|
+
];
|
|
4197
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
4198
|
+
if (httpContentTypeSelected != undefined) {
|
|
4199
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
4200
|
+
}
|
|
4201
|
+
return this.httpClient.post(this.basePath + "/v2/api/creativesets/reschedule/" + encodeURIComponent(String(id)), creativeSetRescheduleRequest, {
|
|
4202
|
+
withCredentials: this.configuration.withCredentials,
|
|
4203
|
+
headers: headers,
|
|
4204
|
+
observe: observe,
|
|
4205
|
+
reportProgress: reportProgress
|
|
4206
|
+
});
|
|
4207
|
+
};
|
|
4169
4208
|
CreativeSetsControllerService.prototype.updateUsingPOST = function (creativeSetRequest, id, reqId, token, observe, reportProgress) {
|
|
4170
4209
|
if (observe === void 0) { observe = 'body'; }
|
|
4171
4210
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -4219,7 +4258,7 @@
|
|
|
4219
4258
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4220
4259
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4221
4260
|
this.httpClient = httpClient;
|
|
4222
|
-
this.basePath = 'https://
|
|
4261
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4223
4262
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4224
4263
|
this.configuration = new Configuration();
|
|
4225
4264
|
if (basePath) {
|
|
@@ -4408,7 +4447,7 @@
|
|
|
4408
4447
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4409
4448
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4410
4449
|
this.httpClient = httpClient;
|
|
4411
|
-
this.basePath = 'https://
|
|
4450
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4412
4451
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4413
4452
|
this.configuration = new Configuration();
|
|
4414
4453
|
if (basePath) {
|
|
@@ -4484,7 +4523,7 @@
|
|
|
4484
4523
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
4485
4524
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
4486
4525
|
this.httpClient = httpClient;
|
|
4487
|
-
this.basePath = 'https://
|
|
4526
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4488
4527
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4489
4528
|
this.configuration = new Configuration();
|
|
4490
4529
|
if (basePath) {
|
|
@@ -4651,7 +4690,7 @@
|
|
|
4651
4690
|
var DashboardControllerService = /** @class */ (function () {
|
|
4652
4691
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
4653
4692
|
this.httpClient = httpClient;
|
|
4654
|
-
this.basePath = 'https://
|
|
4693
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
4655
4694
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4656
4695
|
this.configuration = new Configuration();
|
|
4657
4696
|
if (basePath) {
|
|
@@ -5296,7 +5335,7 @@
|
|
|
5296
5335
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5297
5336
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5298
5337
|
this.httpClient = httpClient;
|
|
5299
|
-
this.basePath = 'https://
|
|
5338
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5300
5339
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5301
5340
|
this.configuration = new Configuration();
|
|
5302
5341
|
if (basePath) {
|
|
@@ -5483,7 +5522,7 @@
|
|
|
5483
5522
|
var PixelControllerService = /** @class */ (function () {
|
|
5484
5523
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
5485
5524
|
this.httpClient = httpClient;
|
|
5486
|
-
this.basePath = 'https://
|
|
5525
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5487
5526
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5488
5527
|
this.configuration = new Configuration();
|
|
5489
5528
|
if (basePath) {
|
|
@@ -5800,7 +5839,7 @@
|
|
|
5800
5839
|
var ReportingControllerService = /** @class */ (function () {
|
|
5801
5840
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
5802
5841
|
this.httpClient = httpClient;
|
|
5803
|
-
this.basePath = 'https://
|
|
5842
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5804
5843
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5805
5844
|
this.configuration = new Configuration();
|
|
5806
5845
|
if (basePath) {
|
|
@@ -5972,7 +6011,7 @@
|
|
|
5972
6011
|
var SliceXControllerService = /** @class */ (function () {
|
|
5973
6012
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
5974
6013
|
this.httpClient = httpClient;
|
|
5975
|
-
this.basePath = 'https://
|
|
6014
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
5976
6015
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5977
6016
|
this.configuration = new Configuration();
|
|
5978
6017
|
if (basePath) {
|
|
@@ -6228,7 +6267,7 @@
|
|
|
6228
6267
|
var StrategyControllerService = /** @class */ (function () {
|
|
6229
6268
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
6230
6269
|
this.httpClient = httpClient;
|
|
6231
|
-
this.basePath = 'https://
|
|
6270
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6232
6271
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6233
6272
|
this.configuration = new Configuration();
|
|
6234
6273
|
if (basePath) {
|
|
@@ -6877,7 +6916,7 @@
|
|
|
6877
6916
|
var UILoggerControllerService = /** @class */ (function () {
|
|
6878
6917
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
6879
6918
|
this.httpClient = httpClient;
|
|
6880
|
-
this.basePath = 'https://
|
|
6919
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6881
6920
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6882
6921
|
this.configuration = new Configuration();
|
|
6883
6922
|
if (basePath) {
|
|
@@ -6967,7 +7006,7 @@
|
|
|
6967
7006
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
6968
7007
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
6969
7008
|
this.httpClient = httpClient;
|
|
6970
|
-
this.basePath = 'https://
|
|
7009
|
+
this.basePath = 'https://apiv2stage1.atomex.net';
|
|
6971
7010
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6972
7011
|
this.configuration = new Configuration();
|
|
6973
7012
|
if (basePath) {
|