@revxui/api-clients-ts 0.10.335 → 0.10.337
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/appSettingsController.service.d.ts +39 -0
- package/api/auditController.service.d.ts +6 -6
- package/api/creativeSetsController.service.d.ts +0 -15
- package/api/dashboardController.service.d.ts +9 -9
- package/bundles/revxui-api-clients-ts.umd.js +148 -62
- 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 +91 -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 +2 -39
- 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/advertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectAdvertiserDynamicVideoConfig.js +2 -0
- package/esm2015/model/apiResponseObjectListDynamicVideoTemplate.js +2 -0
- package/esm2015/model/dynamicVideoConfigDTO.js +30 -0
- package/esm2015/model/dynamicVideoDTO.js +2 -0
- package/esm2015/model/dynamicVideoTemplate.js +2 -0
- package/esm2015/model/models.js +8 -2
- package/esm2015/model/nameAndTitleModel.js +13 -0
- package/fesm2015/revxui-api-clients-ts.js +155 -73
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/advertiserDynamicVideoConfig.d.ts +19 -0
- package/model/apiResponseObjectAdvertiserDynamicVideoConfig.d.ts +17 -0
- package/model/apiResponseObjectListDynamicVideoTemplate.d.ts +17 -0
- package/model/dynamicVideoConfigDTO.d.ts +34 -0
- package/model/dynamicVideoDTO.d.ts +16 -0
- package/model/dynamicVideoTemplate.d.ts +18 -0
- package/model/models.d.ts +7 -1
- package/model/{creativeSetRescheduleRequest.d.ts → nameAndTitleModel.d.ts} +3 -3
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/creativeSetRescheduleRequest.js +0 -13
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@0.10.
|
|
1
|
+
## @revxui/api-clients-ts@0.10.337
|
|
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.337 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -11,8 +11,12 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
|
|
13
13
|
import { Observable } from 'rxjs';
|
|
14
|
+
import { ApiResponseObjectAdvertiserDynamicVideoConfig } from '../model/apiResponseObjectAdvertiserDynamicVideoConfig';
|
|
14
15
|
import { ApiResponseObjectListAppSettingsDTO } from '../model/apiResponseObjectListAppSettingsDTO';
|
|
16
|
+
import { ApiResponseObjectListDynamicVideoTemplate } from '../model/apiResponseObjectListDynamicVideoTemplate';
|
|
17
|
+
import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
|
|
15
18
|
import { AppSettingsDTO } from '../model/appSettingsDTO';
|
|
19
|
+
import { DynamicVideoDTO } from '../model/dynamicVideoDTO';
|
|
16
20
|
import { Configuration } from '../configuration';
|
|
17
21
|
export declare class AppSettingsControllerService {
|
|
18
22
|
protected httpClient: HttpClient;
|
|
@@ -37,6 +41,29 @@ export declare class AppSettingsControllerService {
|
|
|
37
41
|
createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
|
|
38
42
|
createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
|
|
39
43
|
createAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
|
|
44
|
+
/**
|
|
45
|
+
* Api to fetch sample dynamic video templates
|
|
46
|
+
*
|
|
47
|
+
* @param reqId request id
|
|
48
|
+
* @param token Auth Token
|
|
49
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
50
|
+
* @param reportProgress flag to report request and response progress.
|
|
51
|
+
*/
|
|
52
|
+
fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListDynamicVideoTemplate>;
|
|
53
|
+
fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListDynamicVideoTemplate>>;
|
|
54
|
+
fetchAllDynamicVideoTemplatesUsingGET(reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListDynamicVideoTemplate>>;
|
|
55
|
+
/**
|
|
56
|
+
* Api to fetch dynamic video config for given advertiserid
|
|
57
|
+
*
|
|
58
|
+
* @param advertiserId advertiserId
|
|
59
|
+
* @param reqId request id
|
|
60
|
+
* @param token Auth Token
|
|
61
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
62
|
+
* @param reportProgress flag to report request and response progress.
|
|
63
|
+
*/
|
|
64
|
+
fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectAdvertiserDynamicVideoConfig>;
|
|
65
|
+
fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectAdvertiserDynamicVideoConfig>>;
|
|
66
|
+
fetchDynamicVideoConfigUsingGET(advertiserId?: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectAdvertiserDynamicVideoConfig>>;
|
|
40
67
|
/**
|
|
41
68
|
* Api to get App Settings
|
|
42
69
|
*
|
|
@@ -62,4 +89,16 @@ export declare class AppSettingsControllerService {
|
|
|
62
89
|
updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListAppSettingsDTO>;
|
|
63
90
|
updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListAppSettingsDTO>>;
|
|
64
91
|
updateAppSettingsUsingPOST(appSettings: Array<AppSettingsDTO>, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListAppSettingsDTO>>;
|
|
92
|
+
/**
|
|
93
|
+
* Api to upsert dynamic video
|
|
94
|
+
*
|
|
95
|
+
* @param dynamicVideoDTO dynamicVideoDTO
|
|
96
|
+
* @param reqId request id
|
|
97
|
+
* @param token Auth Token
|
|
98
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
99
|
+
* @param reportProgress flag to report request and response progress.
|
|
100
|
+
*/
|
|
101
|
+
upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectResponseMessage>;
|
|
102
|
+
upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectResponseMessage>>;
|
|
103
|
+
upsertDynamicVideoUsingPOST(dynamicVideoDTO: DynamicVideoDTO, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectResponseMessage>>;
|
|
65
104
|
}
|
|
@@ -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'
|
|
42
|
-
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
43
|
-
getAuditDetailsUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
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>>;
|
|
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'
|
|
57
|
-
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
58
|
-
getAuditLogUsingGET(endTime: number, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
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>>;
|
|
59
59
|
/**
|
|
60
60
|
* get user activity log
|
|
61
61
|
*
|
|
@@ -21,10 +21,8 @@ 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';
|
|
25
24
|
import { BulkEditCreativeSetsDTO } from '../model/bulkEditCreativeSetsDTO';
|
|
26
25
|
import { CreativeSetRequest } from '../model/creativeSetRequest';
|
|
27
|
-
import { CreativeSetRescheduleRequest } from '../model/creativeSetRescheduleRequest';
|
|
28
26
|
import { DashboardRequest } from '../model/dashboardRequest';
|
|
29
27
|
import { DuplicateCreativeSetsRequestDTO } from '../model/duplicateCreativeSetsRequestDTO';
|
|
30
28
|
import { Configuration } from '../configuration';
|
|
@@ -170,19 +168,6 @@ export declare class CreativeSetsControllerService {
|
|
|
170
168
|
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>;
|
|
171
169
|
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>>;
|
|
172
170
|
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>>;
|
|
186
171
|
/**
|
|
187
172
|
* Api to update creative sets
|
|
188
173
|
*
|
|
@@ -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'
|
|
114
|
-
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
115
|
-
getDashboardDataListCsvStreamUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
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>>;
|
|
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'
|
|
127
|
-
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
128
|
-
getDashboardDataListCsvUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
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>>;
|
|
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'
|
|
142
|
-
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
143
|
-
getDashboardDataListUsingPOST(dashboardRequest: DashboardRequest, entity: 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'HOMEPAGE' | 'PRODUCT_CATALOG' | 'CATEGORY_PERFORMANCE'
|
|
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>>;
|
|
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://apiv2stage3.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://apiv2stage3.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://apiv2stage3.atomex.net';
|
|
1013
1013
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1014
1014
|
this.configuration = new Configuration();
|
|
1015
1015
|
if (basePath) {
|
|
@@ -1080,6 +1080,65 @@
|
|
|
1080
1080
|
reportProgress: reportProgress
|
|
1081
1081
|
});
|
|
1082
1082
|
};
|
|
1083
|
+
AppSettingsControllerService.prototype.fetchAllDynamicVideoTemplatesUsingGET = function (reqId, token, observe, reportProgress) {
|
|
1084
|
+
if (observe === void 0) { observe = 'body'; }
|
|
1085
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
1086
|
+
var headers = this.defaultHeaders;
|
|
1087
|
+
if (reqId !== undefined && reqId !== null) {
|
|
1088
|
+
headers = headers.set('reqId', String(reqId));
|
|
1089
|
+
}
|
|
1090
|
+
if (token !== undefined && token !== null) {
|
|
1091
|
+
headers = headers.set('token', String(token));
|
|
1092
|
+
}
|
|
1093
|
+
// to determine the Accept header
|
|
1094
|
+
var httpHeaderAccepts = [
|
|
1095
|
+
'application/json'
|
|
1096
|
+
];
|
|
1097
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1098
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1099
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1100
|
+
}
|
|
1101
|
+
// to determine the Content-Type header
|
|
1102
|
+
var consumes = [];
|
|
1103
|
+
return this.httpClient.get(this.basePath + "/v2/api/appsettings/dynamicvideo/templates", {
|
|
1104
|
+
withCredentials: this.configuration.withCredentials,
|
|
1105
|
+
headers: headers,
|
|
1106
|
+
observe: observe,
|
|
1107
|
+
reportProgress: reportProgress
|
|
1108
|
+
});
|
|
1109
|
+
};
|
|
1110
|
+
AppSettingsControllerService.prototype.fetchDynamicVideoConfigUsingGET = function (advertiserId, reqId, token, observe, reportProgress) {
|
|
1111
|
+
if (observe === void 0) { observe = 'body'; }
|
|
1112
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
1113
|
+
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
1114
|
+
if (advertiserId !== undefined && advertiserId !== null) {
|
|
1115
|
+
queryParameters = queryParameters.set('advertiserId', advertiserId);
|
|
1116
|
+
}
|
|
1117
|
+
var headers = this.defaultHeaders;
|
|
1118
|
+
if (reqId !== undefined && reqId !== null) {
|
|
1119
|
+
headers = headers.set('reqId', String(reqId));
|
|
1120
|
+
}
|
|
1121
|
+
if (token !== undefined && token !== null) {
|
|
1122
|
+
headers = headers.set('token', String(token));
|
|
1123
|
+
}
|
|
1124
|
+
// to determine the Accept header
|
|
1125
|
+
var httpHeaderAccepts = [
|
|
1126
|
+
'application/json'
|
|
1127
|
+
];
|
|
1128
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1129
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1130
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1131
|
+
}
|
|
1132
|
+
// to determine the Content-Type header
|
|
1133
|
+
var consumes = [];
|
|
1134
|
+
return this.httpClient.get(this.basePath + "/v2/api/appsettings/dynamicvideo/config", {
|
|
1135
|
+
params: queryParameters,
|
|
1136
|
+
withCredentials: this.configuration.withCredentials,
|
|
1137
|
+
headers: headers,
|
|
1138
|
+
observe: observe,
|
|
1139
|
+
reportProgress: reportProgress
|
|
1140
|
+
});
|
|
1141
|
+
};
|
|
1083
1142
|
AppSettingsControllerService.prototype.getAppSettingsUsingGET = function (advertiserId, reqId, settingsKeys, token, observe, reportProgress) {
|
|
1084
1143
|
if (observe === void 0) { observe = 'body'; }
|
|
1085
1144
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -1153,6 +1212,42 @@
|
|
|
1153
1212
|
reportProgress: reportProgress
|
|
1154
1213
|
});
|
|
1155
1214
|
};
|
|
1215
|
+
AppSettingsControllerService.prototype.upsertDynamicVideoUsingPOST = function (dynamicVideoDTO, reqId, token, observe, reportProgress) {
|
|
1216
|
+
if (observe === void 0) { observe = 'body'; }
|
|
1217
|
+
if (reportProgress === void 0) { reportProgress = false; }
|
|
1218
|
+
if (dynamicVideoDTO === null || dynamicVideoDTO === undefined) {
|
|
1219
|
+
throw new Error('Required parameter dynamicVideoDTO was null or undefined when calling upsertDynamicVideoUsingPOST.');
|
|
1220
|
+
}
|
|
1221
|
+
var headers = this.defaultHeaders;
|
|
1222
|
+
if (reqId !== undefined && reqId !== null) {
|
|
1223
|
+
headers = headers.set('reqId', String(reqId));
|
|
1224
|
+
}
|
|
1225
|
+
if (token !== undefined && token !== null) {
|
|
1226
|
+
headers = headers.set('token', String(token));
|
|
1227
|
+
}
|
|
1228
|
+
// to determine the Accept header
|
|
1229
|
+
var httpHeaderAccepts = [
|
|
1230
|
+
'application/json'
|
|
1231
|
+
];
|
|
1232
|
+
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1233
|
+
if (httpHeaderAcceptSelected != undefined) {
|
|
1234
|
+
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1235
|
+
}
|
|
1236
|
+
// to determine the Content-Type header
|
|
1237
|
+
var consumes = [
|
|
1238
|
+
'application/json'
|
|
1239
|
+
];
|
|
1240
|
+
var httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
|
|
1241
|
+
if (httpContentTypeSelected != undefined) {
|
|
1242
|
+
headers = headers.set('Content-Type', httpContentTypeSelected);
|
|
1243
|
+
}
|
|
1244
|
+
return this.httpClient.post(this.basePath + "/v2/api/appsettings/dynamicvideo/upsert", dynamicVideoDTO, {
|
|
1245
|
+
withCredentials: this.configuration.withCredentials,
|
|
1246
|
+
headers: headers,
|
|
1247
|
+
observe: observe,
|
|
1248
|
+
reportProgress: reportProgress
|
|
1249
|
+
});
|
|
1250
|
+
};
|
|
1156
1251
|
return AppSettingsControllerService;
|
|
1157
1252
|
}());
|
|
1158
1253
|
AppSettingsControllerService.decorators = [
|
|
@@ -1167,7 +1262,7 @@
|
|
|
1167
1262
|
var AudienceControllerService = /** @class */ (function () {
|
|
1168
1263
|
function AudienceControllerService(httpClient, basePath, configuration) {
|
|
1169
1264
|
this.httpClient = httpClient;
|
|
1170
|
-
this.basePath = 'https://
|
|
1265
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1171
1266
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1172
1267
|
this.configuration = new Configuration();
|
|
1173
1268
|
if (basePath) {
|
|
@@ -1953,7 +2048,7 @@
|
|
|
1953
2048
|
var AuditControllerService = /** @class */ (function () {
|
|
1954
2049
|
function AuditControllerService(httpClient, basePath, configuration) {
|
|
1955
2050
|
this.httpClient = httpClient;
|
|
1956
|
-
this.basePath = 'https://
|
|
2051
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
1957
2052
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1958
2053
|
this.configuration = new Configuration();
|
|
1959
2054
|
if (basePath) {
|
|
@@ -2140,7 +2235,7 @@
|
|
|
2140
2235
|
var BulkStrategyControllerService = /** @class */ (function () {
|
|
2141
2236
|
function BulkStrategyControllerService(httpClient, basePath, configuration) {
|
|
2142
2237
|
this.httpClient = httpClient;
|
|
2143
|
-
this.basePath = 'https://
|
|
2238
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2144
2239
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2145
2240
|
this.configuration = new Configuration();
|
|
2146
2241
|
if (basePath) {
|
|
@@ -2371,7 +2466,7 @@
|
|
|
2371
2466
|
var CSSThemeController_Service = /** @class */ (function () {
|
|
2372
2467
|
function CSSThemeController_Service(httpClient, basePath, configuration) {
|
|
2373
2468
|
this.httpClient = httpClient;
|
|
2374
|
-
this.basePath = 'https://
|
|
2469
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2375
2470
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2376
2471
|
this.configuration = new Configuration();
|
|
2377
2472
|
if (basePath) {
|
|
@@ -2480,7 +2575,7 @@
|
|
|
2480
2575
|
var CampaignControllerService = /** @class */ (function () {
|
|
2481
2576
|
function CampaignControllerService(httpClient, basePath, configuration) {
|
|
2482
2577
|
this.httpClient = httpClient;
|
|
2483
|
-
this.basePath = 'https://
|
|
2578
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2484
2579
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2485
2580
|
this.configuration = new Configuration();
|
|
2486
2581
|
if (basePath) {
|
|
@@ -2790,7 +2885,7 @@
|
|
|
2790
2885
|
var CatalogControllerService = /** @class */ (function () {
|
|
2791
2886
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
2792
2887
|
this.httpClient = httpClient;
|
|
2793
|
-
this.basePath = 'https://
|
|
2888
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
2794
2889
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2795
2890
|
this.configuration = new Configuration();
|
|
2796
2891
|
if (basePath) {
|
|
@@ -3036,7 +3131,7 @@
|
|
|
3036
3131
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3037
3132
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3038
3133
|
this.httpClient = httpClient;
|
|
3039
|
-
this.basePath = 'https://
|
|
3134
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3040
3135
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3041
3136
|
this.configuration = new Configuration();
|
|
3042
3137
|
if (basePath) {
|
|
@@ -3274,7 +3369,7 @@
|
|
|
3274
3369
|
var CreativeControllerService = /** @class */ (function () {
|
|
3275
3370
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3276
3371
|
this.httpClient = httpClient;
|
|
3277
|
-
this.basePath = 'https://
|
|
3372
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3278
3373
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3279
3374
|
this.configuration = new Configuration();
|
|
3280
3375
|
if (basePath) {
|
|
@@ -3739,7 +3834,7 @@
|
|
|
3739
3834
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
3740
3835
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
3741
3836
|
this.httpClient = httpClient;
|
|
3742
|
-
this.basePath = 'https://
|
|
3837
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
3743
3838
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3744
3839
|
this.configuration = new Configuration();
|
|
3745
3840
|
if (basePath) {
|
|
@@ -4166,45 +4261,6 @@
|
|
|
4166
4261
|
reportProgress: reportProgress
|
|
4167
4262
|
});
|
|
4168
4263
|
};
|
|
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
|
-
};
|
|
4208
4264
|
CreativeSetsControllerService.prototype.updateUsingPOST = function (creativeSetRequest, id, reqId, token, observe, reportProgress) {
|
|
4209
4265
|
if (observe === void 0) { observe = 'body'; }
|
|
4210
4266
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -4258,7 +4314,7 @@
|
|
|
4258
4314
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4259
4315
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4260
4316
|
this.httpClient = httpClient;
|
|
4261
|
-
this.basePath = 'https://
|
|
4317
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4262
4318
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4263
4319
|
this.configuration = new Configuration();
|
|
4264
4320
|
if (basePath) {
|
|
@@ -4447,7 +4503,7 @@
|
|
|
4447
4503
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4448
4504
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4449
4505
|
this.httpClient = httpClient;
|
|
4450
|
-
this.basePath = 'https://
|
|
4506
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4451
4507
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4452
4508
|
this.configuration = new Configuration();
|
|
4453
4509
|
if (basePath) {
|
|
@@ -4523,7 +4579,7 @@
|
|
|
4523
4579
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
4524
4580
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
4525
4581
|
this.httpClient = httpClient;
|
|
4526
|
-
this.basePath = 'https://
|
|
4582
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4527
4583
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4528
4584
|
this.configuration = new Configuration();
|
|
4529
4585
|
if (basePath) {
|
|
@@ -4690,7 +4746,7 @@
|
|
|
4690
4746
|
var DashboardControllerService = /** @class */ (function () {
|
|
4691
4747
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
4692
4748
|
this.httpClient = httpClient;
|
|
4693
|
-
this.basePath = 'https://
|
|
4749
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
4694
4750
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4695
4751
|
this.configuration = new Configuration();
|
|
4696
4752
|
if (basePath) {
|
|
@@ -5335,7 +5391,7 @@
|
|
|
5335
5391
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5336
5392
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5337
5393
|
this.httpClient = httpClient;
|
|
5338
|
-
this.basePath = 'https://
|
|
5394
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5339
5395
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5340
5396
|
this.configuration = new Configuration();
|
|
5341
5397
|
if (basePath) {
|
|
@@ -5522,7 +5578,7 @@
|
|
|
5522
5578
|
var PixelControllerService = /** @class */ (function () {
|
|
5523
5579
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
5524
5580
|
this.httpClient = httpClient;
|
|
5525
|
-
this.basePath = 'https://
|
|
5581
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5526
5582
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5527
5583
|
this.configuration = new Configuration();
|
|
5528
5584
|
if (basePath) {
|
|
@@ -5839,7 +5895,7 @@
|
|
|
5839
5895
|
var ReportingControllerService = /** @class */ (function () {
|
|
5840
5896
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
5841
5897
|
this.httpClient = httpClient;
|
|
5842
|
-
this.basePath = 'https://
|
|
5898
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
5843
5899
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5844
5900
|
this.configuration = new Configuration();
|
|
5845
5901
|
if (basePath) {
|
|
@@ -6011,7 +6067,7 @@
|
|
|
6011
6067
|
var SliceXControllerService = /** @class */ (function () {
|
|
6012
6068
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
6013
6069
|
this.httpClient = httpClient;
|
|
6014
|
-
this.basePath = 'https://
|
|
6070
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6015
6071
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6016
6072
|
this.configuration = new Configuration();
|
|
6017
6073
|
if (basePath) {
|
|
@@ -6267,7 +6323,7 @@
|
|
|
6267
6323
|
var StrategyControllerService = /** @class */ (function () {
|
|
6268
6324
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
6269
6325
|
this.httpClient = httpClient;
|
|
6270
|
-
this.basePath = 'https://
|
|
6326
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6271
6327
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6272
6328
|
this.configuration = new Configuration();
|
|
6273
6329
|
if (basePath) {
|
|
@@ -6916,7 +6972,7 @@
|
|
|
6916
6972
|
var UILoggerControllerService = /** @class */ (function () {
|
|
6917
6973
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
6918
6974
|
this.httpClient = httpClient;
|
|
6919
|
-
this.basePath = 'https://
|
|
6975
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
6920
6976
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6921
6977
|
this.configuration = new Configuration();
|
|
6922
6978
|
if (basePath) {
|
|
@@ -7006,7 +7062,7 @@
|
|
|
7006
7062
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
7007
7063
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
7008
7064
|
this.httpClient = httpClient;
|
|
7009
|
-
this.basePath = 'https://
|
|
7065
|
+
this.basePath = 'https://apiv2stage3.atomex.net';
|
|
7010
7066
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7011
7067
|
this.configuration = new Configuration();
|
|
7012
7068
|
if (basePath) {
|
|
@@ -7651,6 +7707,36 @@
|
|
|
7651
7707
|
};
|
|
7652
7708
|
})(exports.DuplicateCreativeSetResponse || (exports.DuplicateCreativeSetResponse = {}));
|
|
7653
7709
|
|
|
7710
|
+
/**
|
|
7711
|
+
* Api Documentation
|
|
7712
|
+
* Api Documentation
|
|
7713
|
+
*
|
|
7714
|
+
* OpenAPI spec version: 1.0
|
|
7715
|
+
*
|
|
7716
|
+
*
|
|
7717
|
+
* NOTE: This class is auto generated by the swagger code generator program.
|
|
7718
|
+
* https://github.com/swagger-api/swagger-codegen.git
|
|
7719
|
+
* Do not edit the class manually.
|
|
7720
|
+
*/
|
|
7721
|
+
exports.DynamicVideoConfigDTO = void 0;
|
|
7722
|
+
(function (DynamicVideoConfigDTO) {
|
|
7723
|
+
DynamicVideoConfigDTO.ConfigKeyEnum = {
|
|
7724
|
+
TEMPLATEID: 'TEMPLATE_ID',
|
|
7725
|
+
LOGO: 'LOGO',
|
|
7726
|
+
SALEPRICEPREFIX: 'SALE_PRICE_PREFIX',
|
|
7727
|
+
ORIGINALPRICEPREFIX: 'ORIGINAL_PRICE_PREFIX',
|
|
7728
|
+
CTA: 'CTA',
|
|
7729
|
+
TITLELENGTH: 'TITLE_LENGTH',
|
|
7730
|
+
TITLEROWS: 'TITLE_ROWS',
|
|
7731
|
+
DISCOUNTSUFFIX: 'DISCOUNT_SUFFIX',
|
|
7732
|
+
FONT: 'FONT',
|
|
7733
|
+
ROUNDPRICE: 'ROUND_PRICE',
|
|
7734
|
+
MUSICFILE: 'MUSIC_FILE',
|
|
7735
|
+
VIDEOFILE: 'VIDEO_FILE',
|
|
7736
|
+
USERESIZER: 'USE_RESIZER'
|
|
7737
|
+
};
|
|
7738
|
+
})(exports.DynamicVideoConfigDTO || (exports.DynamicVideoConfigDTO = {}));
|
|
7739
|
+
|
|
7654
7740
|
/**
|
|
7655
7741
|
* Api Documentation
|
|
7656
7742
|
* Api Documentation
|