@revxui/api-clients-ts 1.1.263 → 1.1.265
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/audienceController.service.d.ts +0 -13
- package/api/bidFunnelController.service.d.ts +10 -8
- package/bundles/revxui-api-clients-ts.umd.js +53 -65
- package/bundles/revxui-api-clients-ts.umd.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 -30
- package/esm2015/api/auditController.service.js +2 -2
- package/esm2015/api/bidFunnelController.service.js +28 -10
- 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 -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/customerReportingController.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/reportingSchedulerController.service.js +2 -2
- package/esm2015/api/sliceXController.service.js +2 -2
- package/esm2015/api/strategyController.service.js +2 -2
- package/esm2015/api/strategyTemplateController.service.js +2 -2
- package/esm2015/api/uILoggerController.service.js +2 -2
- package/esm2015/api/userPreferenceController.service.js +2 -2
- package/esm2015/model/creativeSetDetails.js +1 -1
- package/esm2015/model/models.js +1 -2
- package/fesm2015/revxui-api-clients-ts.js +53 -75
- package/fesm2015/revxui-api-clients-ts.js.map +1 -1
- package/model/creativeSetDetails.d.ts +1 -2
- package/model/models.d.ts +0 -1
- package/package.json +1 -1
- package/revxui-api-clients-ts.metadata.json +1 -1
- package/esm2015/model/currencyModel.js +0 -13
- package/model/currencyModel.d.ts +0 -16
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @revxui/api-clients-ts@1.1.
|
|
1
|
+
## @revxui/api-clients-ts@1.1.265
|
|
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.
|
|
22
|
+
npm install @revxui/api-clients-ts@1.1.265 --save
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
_without publishing (not recommended):_
|
|
@@ -21,7 +21,6 @@ import { ApiResponseObjectDmpAudienceDTO } from '../model/apiResponseObjectDmpAu
|
|
|
21
21
|
import { ApiResponseObjectEligibleUsersResponse } from '../model/apiResponseObjectEligibleUsersResponse';
|
|
22
22
|
import { ApiResponseObjectListAudienceDTO } from '../model/apiResponseObjectListAudienceDTO';
|
|
23
23
|
import { ApiResponseObjectListBackfillAudienceQueryTemplateDTO } from '../model/apiResponseObjectListBackfillAudienceQueryTemplateDTO';
|
|
24
|
-
import { ApiResponseObjectListBaseModel } from '../model/apiResponseObjectListBaseModel';
|
|
25
24
|
import { ApiResponseObjectMapintResponseMessage } from '../model/apiResponseObjectMapintResponseMessage';
|
|
26
25
|
import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
|
|
27
26
|
import { ApiResponseObjectMetaRulesDto } from '../model/apiResponseObjectMetaRulesDto';
|
|
@@ -188,18 +187,6 @@ export declare class AudienceControllerService {
|
|
|
188
187
|
getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectEligibleUsersResponse>;
|
|
189
188
|
getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectEligibleUsersResponse>>;
|
|
190
189
|
getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest: TotalUniqueUserRequest, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectEligibleUsersResponse>>;
|
|
191
|
-
/**
|
|
192
|
-
* getAudienceStrategyMapping
|
|
193
|
-
*
|
|
194
|
-
* @param id id
|
|
195
|
-
* @param reqId request id
|
|
196
|
-
* @param token Auth Token
|
|
197
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
198
|
-
* @param reportProgress flag to report request and response progress.
|
|
199
|
-
*/
|
|
200
|
-
getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectListBaseModel>;
|
|
201
|
-
getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectListBaseModel>>;
|
|
202
|
-
getAudienceStrategyMappingUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectListBaseModel>>;
|
|
203
190
|
/**
|
|
204
191
|
* Api to get Audience
|
|
205
192
|
*
|
|
@@ -28,29 +28,31 @@ export declare class BidFunnelControllerService {
|
|
|
28
28
|
/**
|
|
29
29
|
* API to get bid to conversion funnel details
|
|
30
30
|
*
|
|
31
|
+
* @param end end
|
|
31
32
|
* @param entity entity
|
|
32
33
|
* @param id id
|
|
33
|
-
* @param
|
|
34
|
+
* @param start start
|
|
34
35
|
* @param reqId request id
|
|
35
36
|
* @param token Auth Token
|
|
36
37
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
37
38
|
* @param reportProgress flag to report request and response progress.
|
|
38
39
|
*/
|
|
39
|
-
getBidToConversionDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
40
|
-
getBidToConversionDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
41
|
-
getBidToConversionDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
40
|
+
getBidToConversionDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionDTO>;
|
|
41
|
+
getBidToConversionDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionDTO>>;
|
|
42
|
+
getBidToConversionDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionDTO>>;
|
|
42
43
|
/**
|
|
43
44
|
* API to get bid to conversion filter details
|
|
44
45
|
*
|
|
46
|
+
* @param end end
|
|
45
47
|
* @param entity entity
|
|
46
48
|
* @param id id
|
|
47
|
-
* @param
|
|
49
|
+
* @param start start
|
|
48
50
|
* @param reqId request id
|
|
49
51
|
* @param token Auth Token
|
|
50
52
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
51
53
|
* @param reportProgress flag to report request and response progress.
|
|
52
54
|
*/
|
|
53
|
-
getBidToConversionFilterDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
54
|
-
getBidToConversionFilterDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
55
|
-
getBidToConversionFilterDetailsUsingGET(entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number,
|
|
55
|
+
getBidToConversionFilterDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionFilterMap>;
|
|
56
|
+
getBidToConversionFilterDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionFilterMap>>;
|
|
57
|
+
getBidToConversionFilterDetailsUsingGET(end: string, entity: 'LICENSEE' | 'ADVERTISER' | 'CAMPAIGN' | 'STRATEGY' | 'CREATIVE' | 'AGGREGATOR' | 'AUDIENCE' | 'APP_AUDIENCE' | 'WEB_AUDIENCE' | 'DMP_AUDIENCE' | 'PIXEL' | 'SITE' | 'COUNTRY' | 'STATE' | 'CITY' | 'OS' | 'PRICING' | 'CURRENCY' | 'LANGUAGE' | 'TIMEZONE' | 'CATEGORY' | 'MMP' | 'CDTYPE' | 'CDSUBTYPE' | 'DEVICE' | 'DELIVERY_PRIORITY' | 'PACING_TYPE' | 'OS_VERSION' | 'DEVICE_MODEL' | 'DEVICE_BRAND' | 'SOURCE_TYPE' | 'PLATFORM' | 'APP_CATEGORY' | 'BROWSER' | 'CALL_TO_ACTION' | 'CREATIVE_SIZE' | 'DEAL_CATEGORY' | 'ADVERTISER_REGION' | 'CLICK_DESTINATION' | 'ADVERTISER_LOGO' | 'LOSS_REASON_CODES' | 'CREATIVE_SET' | 'USER_FREQUENCY_BUCKET_MAPPING' | 'CREATIVE_SET_TYPE' | 'AUDIENCE_UU_COUNT' | 'STRATEGY_TEMPLATE' | 'FEED_PRODUCT_CATEGORY' | 'STRATEGY_CREATIVE_MAPPING', id: number, start: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionFilterMap>>;
|
|
56
58
|
}
|
|
@@ -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://apiv2stage5.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://apiv2stage5.atomex.net';
|
|
579
579
|
this.defaultHeaders = new http.HttpHeaders();
|
|
580
580
|
this.configuration = new Configuration();
|
|
581
581
|
if (basePath) {
|
|
@@ -1047,7 +1047,7 @@
|
|
|
1047
1047
|
var AppSettingsControllerService = /** @class */ (function () {
|
|
1048
1048
|
function AppSettingsControllerService(httpClient, basePath, configuration) {
|
|
1049
1049
|
this.httpClient = httpClient;
|
|
1050
|
-
this.basePath = 'https://
|
|
1050
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
1051
1051
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1052
1052
|
this.configuration = new Configuration();
|
|
1053
1053
|
if (basePath) {
|
|
@@ -1300,7 +1300,7 @@
|
|
|
1300
1300
|
var AudienceControllerService = /** @class */ (function () {
|
|
1301
1301
|
function AudienceControllerService(httpClient, basePath, configuration) {
|
|
1302
1302
|
this.httpClient = httpClient;
|
|
1303
|
-
this.basePath = 'https://
|
|
1303
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
1304
1304
|
this.defaultHeaders = new http.HttpHeaders();
|
|
1305
1305
|
this.configuration = new Configuration();
|
|
1306
1306
|
if (basePath) {
|
|
@@ -1740,36 +1740,6 @@
|
|
|
1740
1740
|
reportProgress: reportProgress
|
|
1741
1741
|
});
|
|
1742
1742
|
};
|
|
1743
|
-
AudienceControllerService.prototype.getAudienceStrategyMappingUsingGET = function (id, reqId, token, observe, reportProgress) {
|
|
1744
|
-
if (observe === void 0) { observe = 'body'; }
|
|
1745
|
-
if (reportProgress === void 0) { reportProgress = false; }
|
|
1746
|
-
if (id === null || id === undefined) {
|
|
1747
|
-
throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMappingUsingGET.');
|
|
1748
|
-
}
|
|
1749
|
-
var headers = this.defaultHeaders;
|
|
1750
|
-
if (reqId !== undefined && reqId !== null) {
|
|
1751
|
-
headers = headers.set('reqId', String(reqId));
|
|
1752
|
-
}
|
|
1753
|
-
if (token !== undefined && token !== null) {
|
|
1754
|
-
headers = headers.set('token', String(token));
|
|
1755
|
-
}
|
|
1756
|
-
// to determine the Accept header
|
|
1757
|
-
var httpHeaderAccepts = [
|
|
1758
|
-
'*/*'
|
|
1759
|
-
];
|
|
1760
|
-
var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
|
|
1761
|
-
if (httpHeaderAcceptSelected != undefined) {
|
|
1762
|
-
headers = headers.set('Accept', httpHeaderAcceptSelected);
|
|
1763
|
-
}
|
|
1764
|
-
// to determine the Content-Type header
|
|
1765
|
-
var consumes = [];
|
|
1766
|
-
return this.httpClient.get(this.basePath + "/v2/api/audience/strategyMapping/" + encodeURIComponent(String(id)), {
|
|
1767
|
-
withCredentials: this.configuration.withCredentials,
|
|
1768
|
-
headers: headers,
|
|
1769
|
-
observe: observe,
|
|
1770
|
-
reportProgress: reportProgress
|
|
1771
|
-
});
|
|
1772
|
-
};
|
|
1773
1743
|
AudienceControllerService.prototype.getByIdUsingGET1 = function (id, refresh, reqId, token, observe, reportProgress) {
|
|
1774
1744
|
if (observe === void 0) { observe = 'body'; }
|
|
1775
1745
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
@@ -2188,7 +2158,7 @@
|
|
|
2188
2158
|
var AuditControllerService = /** @class */ (function () {
|
|
2189
2159
|
function AuditControllerService(httpClient, basePath, configuration) {
|
|
2190
2160
|
this.httpClient = httpClient;
|
|
2191
|
-
this.basePath = 'https://
|
|
2161
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
2192
2162
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2193
2163
|
this.configuration = new Configuration();
|
|
2194
2164
|
if (basePath) {
|
|
@@ -2375,7 +2345,7 @@
|
|
|
2375
2345
|
var BidFunnelControllerService = /** @class */ (function () {
|
|
2376
2346
|
function BidFunnelControllerService(httpClient, basePath, configuration) {
|
|
2377
2347
|
this.httpClient = httpClient;
|
|
2378
|
-
this.basePath = 'https://
|
|
2348
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
2379
2349
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2380
2350
|
this.configuration = new Configuration();
|
|
2381
2351
|
if (basePath) {
|
|
@@ -2410,22 +2380,31 @@
|
|
|
2410
2380
|
}
|
|
2411
2381
|
return false;
|
|
2412
2382
|
};
|
|
2413
|
-
BidFunnelControllerService.prototype.getBidToConversionDetailsUsingGET = function (entity, id,
|
|
2383
|
+
BidFunnelControllerService.prototype.getBidToConversionDetailsUsingGET = function (end, entity, id, start, reqId, token, observe, reportProgress) {
|
|
2414
2384
|
if (observe === void 0) { observe = 'body'; }
|
|
2415
2385
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
2386
|
+
if (end === null || end === undefined) {
|
|
2387
|
+
throw new Error('Required parameter end was null or undefined when calling getBidToConversionDetailsUsingGET.');
|
|
2388
|
+
}
|
|
2416
2389
|
if (entity === null || entity === undefined) {
|
|
2417
2390
|
throw new Error('Required parameter entity was null or undefined when calling getBidToConversionDetailsUsingGET.');
|
|
2418
2391
|
}
|
|
2419
2392
|
if (id === null || id === undefined) {
|
|
2420
2393
|
throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsUsingGET.');
|
|
2421
2394
|
}
|
|
2395
|
+
if (start === null || start === undefined) {
|
|
2396
|
+
throw new Error('Required parameter start was null or undefined when calling getBidToConversionDetailsUsingGET.');
|
|
2397
|
+
}
|
|
2422
2398
|
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2423
|
-
if (
|
|
2424
|
-
queryParameters = queryParameters.set('
|
|
2399
|
+
if (end !== undefined && end !== null) {
|
|
2400
|
+
queryParameters = queryParameters.set('end', end);
|
|
2425
2401
|
}
|
|
2426
2402
|
if (entity !== undefined && entity !== null) {
|
|
2427
2403
|
queryParameters = queryParameters.set('entity', entity);
|
|
2428
2404
|
}
|
|
2405
|
+
if (start !== undefined && start !== null) {
|
|
2406
|
+
queryParameters = queryParameters.set('start', start);
|
|
2407
|
+
}
|
|
2429
2408
|
var headers = this.defaultHeaders;
|
|
2430
2409
|
if (reqId !== undefined && reqId !== null) {
|
|
2431
2410
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -2443,7 +2422,7 @@
|
|
|
2443
2422
|
}
|
|
2444
2423
|
// to determine the Content-Type header
|
|
2445
2424
|
var consumes = [];
|
|
2446
|
-
return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)), {
|
|
2425
|
+
return this.httpClient.get(this.basePath + "/v2/api/bidfunnel/" + encodeURIComponent(String(id)), {
|
|
2447
2426
|
params: queryParameters,
|
|
2448
2427
|
withCredentials: this.configuration.withCredentials,
|
|
2449
2428
|
headers: headers,
|
|
@@ -2451,22 +2430,31 @@
|
|
|
2451
2430
|
reportProgress: reportProgress
|
|
2452
2431
|
});
|
|
2453
2432
|
};
|
|
2454
|
-
BidFunnelControllerService.prototype.getBidToConversionFilterDetailsUsingGET = function (entity, id,
|
|
2433
|
+
BidFunnelControllerService.prototype.getBidToConversionFilterDetailsUsingGET = function (end, entity, id, start, reqId, token, observe, reportProgress) {
|
|
2455
2434
|
if (observe === void 0) { observe = 'body'; }
|
|
2456
2435
|
if (reportProgress === void 0) { reportProgress = false; }
|
|
2436
|
+
if (end === null || end === undefined) {
|
|
2437
|
+
throw new Error('Required parameter end was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
|
|
2438
|
+
}
|
|
2457
2439
|
if (entity === null || entity === undefined) {
|
|
2458
2440
|
throw new Error('Required parameter entity was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
|
|
2459
2441
|
}
|
|
2460
2442
|
if (id === null || id === undefined) {
|
|
2461
2443
|
throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
|
|
2462
2444
|
}
|
|
2445
|
+
if (start === null || start === undefined) {
|
|
2446
|
+
throw new Error('Required parameter start was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
|
|
2447
|
+
}
|
|
2463
2448
|
var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
|
|
2464
|
-
if (
|
|
2465
|
-
queryParameters = queryParameters.set('
|
|
2449
|
+
if (end !== undefined && end !== null) {
|
|
2450
|
+
queryParameters = queryParameters.set('end', end);
|
|
2466
2451
|
}
|
|
2467
2452
|
if (entity !== undefined && entity !== null) {
|
|
2468
2453
|
queryParameters = queryParameters.set('entity', entity);
|
|
2469
2454
|
}
|
|
2455
|
+
if (start !== undefined && start !== null) {
|
|
2456
|
+
queryParameters = queryParameters.set('start', start);
|
|
2457
|
+
}
|
|
2470
2458
|
var headers = this.defaultHeaders;
|
|
2471
2459
|
if (reqId !== undefined && reqId !== null) {
|
|
2472
2460
|
headers = headers.set('reqId', String(reqId));
|
|
@@ -2484,7 +2472,7 @@
|
|
|
2484
2472
|
}
|
|
2485
2473
|
// to determine the Content-Type header
|
|
2486
2474
|
var consumes = [];
|
|
2487
|
-
return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)) + "/filters", {
|
|
2475
|
+
return this.httpClient.get(this.basePath + "/v2/api/bidfunnel/" + encodeURIComponent(String(id)) + "/filters", {
|
|
2488
2476
|
params: queryParameters,
|
|
2489
2477
|
withCredentials: this.configuration.withCredentials,
|
|
2490
2478
|
headers: headers,
|
|
@@ -2506,7 +2494,7 @@
|
|
|
2506
2494
|
var BulkStrategyControllerService = /** @class */ (function () {
|
|
2507
2495
|
function BulkStrategyControllerService(httpClient, basePath, configuration) {
|
|
2508
2496
|
this.httpClient = httpClient;
|
|
2509
|
-
this.basePath = 'https://
|
|
2497
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
2510
2498
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2511
2499
|
this.configuration = new Configuration();
|
|
2512
2500
|
if (basePath) {
|
|
@@ -2737,7 +2725,7 @@
|
|
|
2737
2725
|
var CSSThemeController_Service = /** @class */ (function () {
|
|
2738
2726
|
function CSSThemeController_Service(httpClient, basePath, configuration) {
|
|
2739
2727
|
this.httpClient = httpClient;
|
|
2740
|
-
this.basePath = 'https://
|
|
2728
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
2741
2729
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2742
2730
|
this.configuration = new Configuration();
|
|
2743
2731
|
if (basePath) {
|
|
@@ -2846,7 +2834,7 @@
|
|
|
2846
2834
|
var CampaignControllerService = /** @class */ (function () {
|
|
2847
2835
|
function CampaignControllerService(httpClient, basePath, configuration) {
|
|
2848
2836
|
this.httpClient = httpClient;
|
|
2849
|
-
this.basePath = 'https://
|
|
2837
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
2850
2838
|
this.defaultHeaders = new http.HttpHeaders();
|
|
2851
2839
|
this.configuration = new Configuration();
|
|
2852
2840
|
if (basePath) {
|
|
@@ -3156,7 +3144,7 @@
|
|
|
3156
3144
|
var CatalogControllerService = /** @class */ (function () {
|
|
3157
3145
|
function CatalogControllerService(httpClient, basePath, configuration) {
|
|
3158
3146
|
this.httpClient = httpClient;
|
|
3159
|
-
this.basePath = 'https://
|
|
3147
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
3160
3148
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3161
3149
|
this.configuration = new Configuration();
|
|
3162
3150
|
if (basePath) {
|
|
@@ -3402,7 +3390,7 @@
|
|
|
3402
3390
|
var ClickDestinationControllerService = /** @class */ (function () {
|
|
3403
3391
|
function ClickDestinationControllerService(httpClient, basePath, configuration) {
|
|
3404
3392
|
this.httpClient = httpClient;
|
|
3405
|
-
this.basePath = 'https://
|
|
3393
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
3406
3394
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3407
3395
|
this.configuration = new Configuration();
|
|
3408
3396
|
if (basePath) {
|
|
@@ -3640,7 +3628,7 @@
|
|
|
3640
3628
|
var CreativeControllerService = /** @class */ (function () {
|
|
3641
3629
|
function CreativeControllerService(httpClient, basePath, configuration) {
|
|
3642
3630
|
this.httpClient = httpClient;
|
|
3643
|
-
this.basePath = 'https://
|
|
3631
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
3644
3632
|
this.defaultHeaders = new http.HttpHeaders();
|
|
3645
3633
|
this.configuration = new Configuration();
|
|
3646
3634
|
if (basePath) {
|
|
@@ -4141,7 +4129,7 @@
|
|
|
4141
4129
|
var CreativeSetsControllerService = /** @class */ (function () {
|
|
4142
4130
|
function CreativeSetsControllerService(httpClient, basePath, configuration) {
|
|
4143
4131
|
this.httpClient = httpClient;
|
|
4144
|
-
this.basePath = 'https://
|
|
4132
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
4145
4133
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4146
4134
|
this.configuration = new Configuration();
|
|
4147
4135
|
if (basePath) {
|
|
@@ -4775,7 +4763,7 @@
|
|
|
4775
4763
|
var CreativeTemplateThemesControllerService = /** @class */ (function () {
|
|
4776
4764
|
function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
|
|
4777
4765
|
this.httpClient = httpClient;
|
|
4778
|
-
this.basePath = 'https://
|
|
4766
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
4779
4767
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4780
4768
|
this.configuration = new Configuration();
|
|
4781
4769
|
if (basePath) {
|
|
@@ -4964,7 +4952,7 @@
|
|
|
4964
4952
|
var CreativeTemplateVariablesControllerService = /** @class */ (function () {
|
|
4965
4953
|
function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
|
|
4966
4954
|
this.httpClient = httpClient;
|
|
4967
|
-
this.basePath = 'https://
|
|
4955
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
4968
4956
|
this.defaultHeaders = new http.HttpHeaders();
|
|
4969
4957
|
this.configuration = new Configuration();
|
|
4970
4958
|
if (basePath) {
|
|
@@ -5040,7 +5028,7 @@
|
|
|
5040
5028
|
var CreativeTemplatesControllerService = /** @class */ (function () {
|
|
5041
5029
|
function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
|
|
5042
5030
|
this.httpClient = httpClient;
|
|
5043
|
-
this.basePath = 'https://
|
|
5031
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
5044
5032
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5045
5033
|
this.configuration = new Configuration();
|
|
5046
5034
|
if (basePath) {
|
|
@@ -5207,7 +5195,7 @@
|
|
|
5207
5195
|
var CustomerReportingControllerService = /** @class */ (function () {
|
|
5208
5196
|
function CustomerReportingControllerService(httpClient, basePath, configuration) {
|
|
5209
5197
|
this.httpClient = httpClient;
|
|
5210
|
-
this.basePath = 'https://
|
|
5198
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
5211
5199
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5212
5200
|
this.configuration = new Configuration();
|
|
5213
5201
|
if (basePath) {
|
|
@@ -5292,7 +5280,7 @@
|
|
|
5292
5280
|
var DashboardControllerService = /** @class */ (function () {
|
|
5293
5281
|
function DashboardControllerService(httpClient, basePath, configuration) {
|
|
5294
5282
|
this.httpClient = httpClient;
|
|
5295
|
-
this.basePath = 'https://
|
|
5283
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
5296
5284
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5297
5285
|
this.configuration = new Configuration();
|
|
5298
5286
|
if (basePath) {
|
|
@@ -5978,7 +5966,7 @@
|
|
|
5978
5966
|
var NotificationsControllerService = /** @class */ (function () {
|
|
5979
5967
|
function NotificationsControllerService(httpClient, basePath, configuration) {
|
|
5980
5968
|
this.httpClient = httpClient;
|
|
5981
|
-
this.basePath = 'https://
|
|
5969
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
5982
5970
|
this.defaultHeaders = new http.HttpHeaders();
|
|
5983
5971
|
this.configuration = new Configuration();
|
|
5984
5972
|
if (basePath) {
|
|
@@ -6197,7 +6185,7 @@
|
|
|
6197
6185
|
var PixelControllerService = /** @class */ (function () {
|
|
6198
6186
|
function PixelControllerService(httpClient, basePath, configuration) {
|
|
6199
6187
|
this.httpClient = httpClient;
|
|
6200
|
-
this.basePath = 'https://
|
|
6188
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
6201
6189
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6202
6190
|
this.configuration = new Configuration();
|
|
6203
6191
|
if (basePath) {
|
|
@@ -6514,7 +6502,7 @@
|
|
|
6514
6502
|
var ReportingControllerService = /** @class */ (function () {
|
|
6515
6503
|
function ReportingControllerService(httpClient, basePath, configuration) {
|
|
6516
6504
|
this.httpClient = httpClient;
|
|
6517
|
-
this.basePath = 'https://
|
|
6505
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
6518
6506
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6519
6507
|
this.configuration = new Configuration();
|
|
6520
6508
|
if (basePath) {
|
|
@@ -6686,7 +6674,7 @@
|
|
|
6686
6674
|
var ReportingSchedulerControllerService = /** @class */ (function () {
|
|
6687
6675
|
function ReportingSchedulerControllerService(httpClient, basePath, configuration) {
|
|
6688
6676
|
this.httpClient = httpClient;
|
|
6689
|
-
this.basePath = 'https://
|
|
6677
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
6690
6678
|
this.defaultHeaders = new http.HttpHeaders();
|
|
6691
6679
|
this.configuration = new Configuration();
|
|
6692
6680
|
if (basePath) {
|
|
@@ -7011,7 +6999,7 @@
|
|
|
7011
6999
|
var SliceXControllerService = /** @class */ (function () {
|
|
7012
7000
|
function SliceXControllerService(httpClient, basePath, configuration) {
|
|
7013
7001
|
this.httpClient = httpClient;
|
|
7014
|
-
this.basePath = 'https://
|
|
7002
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
7015
7003
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7016
7004
|
this.configuration = new Configuration();
|
|
7017
7005
|
if (basePath) {
|
|
@@ -7267,7 +7255,7 @@
|
|
|
7267
7255
|
var StrategyControllerService = /** @class */ (function () {
|
|
7268
7256
|
function StrategyControllerService(httpClient, basePath, configuration) {
|
|
7269
7257
|
this.httpClient = httpClient;
|
|
7270
|
-
this.basePath = 'https://
|
|
7258
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
7271
7259
|
this.defaultHeaders = new http.HttpHeaders();
|
|
7272
7260
|
this.configuration = new Configuration();
|
|
7273
7261
|
if (basePath) {
|
|
@@ -8099,7 +8087,7 @@
|
|
|
8099
8087
|
var StrategyTemplateControllerService = /** @class */ (function () {
|
|
8100
8088
|
function StrategyTemplateControllerService(httpClient, basePath, configuration) {
|
|
8101
8089
|
this.httpClient = httpClient;
|
|
8102
|
-
this.basePath = 'https://
|
|
8090
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
8103
8091
|
this.defaultHeaders = new http.HttpHeaders();
|
|
8104
8092
|
this.configuration = new Configuration();
|
|
8105
8093
|
if (basePath) {
|
|
@@ -8221,7 +8209,7 @@
|
|
|
8221
8209
|
var UILoggerControllerService = /** @class */ (function () {
|
|
8222
8210
|
function UILoggerControllerService(httpClient, basePath, configuration) {
|
|
8223
8211
|
this.httpClient = httpClient;
|
|
8224
|
-
this.basePath = 'https://
|
|
8212
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
8225
8213
|
this.defaultHeaders = new http.HttpHeaders();
|
|
8226
8214
|
this.configuration = new Configuration();
|
|
8227
8215
|
if (basePath) {
|
|
@@ -8311,7 +8299,7 @@
|
|
|
8311
8299
|
var UserPreferenceControllerService = /** @class */ (function () {
|
|
8312
8300
|
function UserPreferenceControllerService(httpClient, basePath, configuration) {
|
|
8313
8301
|
this.httpClient = httpClient;
|
|
8314
|
-
this.basePath = 'https://
|
|
8302
|
+
this.basePath = 'https://apiv2stage5.atomex.net';
|
|
8315
8303
|
this.defaultHeaders = new http.HttpHeaders();
|
|
8316
8304
|
this.configuration = new Configuration();
|
|
8317
8305
|
if (basePath) {
|