@revxui/api-clients-ts 1.1.91 → 1.1.92

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.
Files changed (38) hide show
  1. package/README.md +2 -2
  2. package/api/api.d.ts +3 -1
  3. package/api/bidFunnelController.service.d.ts +56 -0
  4. package/api/strategyController.service.d.ts +0 -28
  5. package/bundles/revxui-api-clients-ts.umd.js +159 -96
  6. package/bundles/revxui-api-clients-ts.umd.js.map +1 -1
  7. package/esm2015/api/adminController.service.js +2 -2
  8. package/esm2015/api/advertiserController.service.js +2 -2
  9. package/esm2015/api/api.js +4 -2
  10. package/esm2015/api/appSettingsController.service.js +2 -2
  11. package/esm2015/api/audienceController.service.js +2 -2
  12. package/esm2015/api/auditController.service.js +2 -2
  13. package/esm2015/api/bidFunnelController.service.js +132 -0
  14. package/esm2015/api/bulkStrategyController.service.js +2 -2
  15. package/esm2015/api/cSSThemeController_.service.js +2 -2
  16. package/esm2015/api/campaignController.service.js +2 -2
  17. package/esm2015/api/catalogController.service.js +2 -2
  18. package/esm2015/api/clickDestinationController.service.js +2 -2
  19. package/esm2015/api/creativeController.service.js +2 -2
  20. package/esm2015/api/creativeSetsController.service.js +2 -2
  21. package/esm2015/api/creativeTemplateThemesController.service.js +2 -2
  22. package/esm2015/api/creativeTemplateVariablesController.service.js +2 -2
  23. package/esm2015/api/creativeTemplatesController.service.js +2 -2
  24. package/esm2015/api/customerReportingController.service.js +2 -2
  25. package/esm2015/api/dashboardController.service.js +2 -2
  26. package/esm2015/api/notificationsController.service.js +2 -2
  27. package/esm2015/api/pixelController.service.js +2 -2
  28. package/esm2015/api/reportingController.service.js +2 -2
  29. package/esm2015/api/sliceXController.service.js +2 -2
  30. package/esm2015/api/strategyController.service.js +2 -68
  31. package/esm2015/api/strategyTemplateController.service.js +2 -2
  32. package/esm2015/api/uILoggerController.service.js +2 -2
  33. package/esm2015/api/userPreferenceController.service.js +2 -2
  34. package/esm2015/api.module.js +3 -1
  35. package/fesm2015/revxui-api-clients-ts.js +154 -93
  36. package/fesm2015/revxui-api-clients-ts.js.map +1 -1
  37. package/package.json +1 -1
  38. package/revxui-api-clients-ts.metadata.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @revxui/api-clients-ts@1.1.91
1
+ ## @revxui/api-clients-ts@1.1.92
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.91 --save
22
+ npm install @revxui/api-clients-ts@1.1.92 --save
23
23
  ```
24
24
 
25
25
  _without publishing (not recommended):_
package/api/api.d.ts CHANGED
@@ -8,6 +8,8 @@ export * from './audienceController.service';
8
8
  import { AudienceControllerService } from './audienceController.service';
9
9
  export * from './auditController.service';
10
10
  import { AuditControllerService } from './auditController.service';
11
+ export * from './bidFunnelController.service';
12
+ import { BidFunnelControllerService } from './bidFunnelController.service';
11
13
  export * from './bulkStrategyController.service';
12
14
  import { BulkStrategyControllerService } from './bulkStrategyController.service';
13
15
  export * from './cSSThemeController_.service';
@@ -48,4 +50,4 @@ export * from './uILoggerController.service';
48
50
  import { UILoggerControllerService } from './uILoggerController.service';
49
51
  export * from './userPreferenceController.service';
50
52
  import { UserPreferenceControllerService } from './userPreferenceController.service';
51
- export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof SliceXControllerService | typeof StrategyControllerService | typeof StrategyTemplateControllerService | typeof UILoggerControllerService | typeof UserPreferenceControllerService)[];
53
+ export declare const APIS: (typeof AdminControllerService | typeof AdvertiserControllerService | typeof AppSettingsControllerService | typeof AudienceControllerService | typeof AuditControllerService | typeof BidFunnelControllerService | typeof BulkStrategyControllerService | typeof CSSThemeController_Service | typeof CampaignControllerService | typeof CatalogControllerService | typeof ClickDestinationControllerService | typeof CreativeControllerService | typeof CreativeSetsControllerService | typeof CreativeTemplateThemesControllerService | typeof CreativeTemplateVariablesControllerService | typeof CreativeTemplatesControllerService | typeof CustomerReportingControllerService | typeof DashboardControllerService | typeof NotificationsControllerService | typeof PixelControllerService | typeof ReportingControllerService | typeof SliceXControllerService | typeof StrategyControllerService | typeof StrategyTemplateControllerService | typeof UILoggerControllerService | typeof UserPreferenceControllerService)[];
@@ -0,0 +1,56 @@
1
+ /**
2
+ * Api Documentation
3
+ * Api Documentation
4
+ *
5
+ * OpenAPI spec version: 1.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by the swagger code generator program.
9
+ * https://github.com/swagger-api/swagger-codegen.git
10
+ * Do not edit the class manually.
11
+ */
12
+ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http';
13
+ import { Observable } from 'rxjs';
14
+ import { ApiResponseObjectBidToConversionDTO } from '../model/apiResponseObjectBidToConversionDTO';
15
+ import { ApiResponseObjectBidToConversionFilterMap } from '../model/apiResponseObjectBidToConversionFilterMap';
16
+ import { Configuration } from '../configuration';
17
+ export declare class BidFunnelControllerService {
18
+ protected httpClient: HttpClient;
19
+ protected basePath: string;
20
+ defaultHeaders: HttpHeaders;
21
+ configuration: Configuration;
22
+ constructor(httpClient: HttpClient, basePath: string, configuration: Configuration);
23
+ /**
24
+ * @param consumes string[] mime-types
25
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
26
+ */
27
+ private canConsumeForm;
28
+ /**
29
+ * API to get bid to conversion funnel details
30
+ *
31
+ * @param entity entity
32
+ * @param id id
33
+ * @param date date
34
+ * @param reqId request id
35
+ * @param token Auth Token
36
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
37
+ * @param reportProgress flag to report request and response progress.
38
+ */
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionDTO>;
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionDTO>>;
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionDTO>>;
42
+ /**
43
+ * API to get bid to conversion filter details
44
+ *
45
+ * @param entity entity
46
+ * @param id id
47
+ * @param date date
48
+ * @param reqId request id
49
+ * @param token Auth Token
50
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
51
+ * @param reportProgress flag to report request and response progress.
52
+ */
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionFilterMap>;
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionFilterMap>>;
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', id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionFilterMap>>;
56
+ }
@@ -14,8 +14,6 @@ import { Observable } from 'rxjs';
14
14
  import { ABTestDTO } from '../model/aBTestDTO';
15
15
  import { ApiListResponseABTestDTO } from '../model/apiListResponseABTestDTO';
16
16
  import { ApiResponseObjectABTestDTO } from '../model/apiResponseObjectABTestDTO';
17
- import { ApiResponseObjectBidToConversionDTO } from '../model/apiResponseObjectBidToConversionDTO';
18
- import { ApiResponseObjectBidToConversionFilterMap } from '../model/apiResponseObjectBidToConversionFilterMap';
19
17
  import { ApiResponseObjectGeoListDTO } from '../model/apiResponseObjectGeoListDTO';
20
18
  import { ApiResponseObjectMaplongResponseMessage } from '../model/apiResponseObjectMaplongResponseMessage';
21
19
  import { ApiResponseObjectResponseMessage } from '../model/apiResponseObjectResponseMessage';
@@ -158,32 +156,6 @@ export declare class StrategyControllerService {
158
156
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectABTestDTO>;
159
157
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectABTestDTO>>;
160
158
  getABTestExperimentUsingGET(id: number, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectABTestDTO>>;
161
- /**
162
- * API to get bid to conversion funnel details
163
- *
164
- * @param id id
165
- * @param date date
166
- * @param reqId request id
167
- * @param token Auth Token
168
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
169
- * @param reportProgress flag to report request and response progress.
170
- */
171
- getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionDTO>;
172
- getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionDTO>>;
173
- getBidToConversionDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionDTO>>;
174
- /**
175
- * API to get bid to conversion filter details
176
- *
177
- * @param id id
178
- * @param date date
179
- * @param reqId request id
180
- * @param token Auth Token
181
- * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
182
- * @param reportProgress flag to report request and response progress.
183
- */
184
- getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'body', reportProgress?: boolean): Observable<ApiResponseObjectBidToConversionFilterMap>;
185
- getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ApiResponseObjectBidToConversionFilterMap>>;
186
- getBidToConversionFilterDetailsForStrategyUsingGET(id: number, date?: string, reqId?: string, token?: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ApiResponseObjectBidToConversionFilterMap>>;
187
159
  /**
188
160
  * API to fetch settings for a SKAD Strategy
189
161
  *
@@ -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://apiv2stage7.atomex.net';
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://apiv2stage7.atomex.net';
578
+ this.basePath = 'https://apiv2stage5.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://apiv2stage7.atomex.net';
1012
+ this.basePath = 'https://apiv2stage5.atomex.net';
1013
1013
  this.defaultHeaders = new http.HttpHeaders();
1014
1014
  this.configuration = new Configuration();
1015
1015
  if (basePath) {
@@ -1262,7 +1262,7 @@
1262
1262
  var AudienceControllerService = /** @class */ (function () {
1263
1263
  function AudienceControllerService(httpClient, basePath, configuration) {
1264
1264
  this.httpClient = httpClient;
1265
- this.basePath = 'https://apiv2stage7.atomex.net';
1265
+ this.basePath = 'https://apiv2stage5.atomex.net';
1266
1266
  this.defaultHeaders = new http.HttpHeaders();
1267
1267
  this.configuration = new Configuration();
1268
1268
  if (basePath) {
@@ -2120,7 +2120,7 @@
2120
2120
  var AuditControllerService = /** @class */ (function () {
2121
2121
  function AuditControllerService(httpClient, basePath, configuration) {
2122
2122
  this.httpClient = httpClient;
2123
- this.basePath = 'https://apiv2stage7.atomex.net';
2123
+ this.basePath = 'https://apiv2stage5.atomex.net';
2124
2124
  this.defaultHeaders = new http.HttpHeaders();
2125
2125
  this.configuration = new Configuration();
2126
2126
  if (basePath) {
@@ -2304,10 +2304,141 @@
2304
2304
  { type: Configuration, decorators: [{ type: core.Optional }] }
2305
2305
  ]; };
2306
2306
 
2307
+ var BidFunnelControllerService = /** @class */ (function () {
2308
+ function BidFunnelControllerService(httpClient, basePath, configuration) {
2309
+ this.httpClient = httpClient;
2310
+ this.basePath = 'https://apiv2stage5.atomex.net';
2311
+ this.defaultHeaders = new http.HttpHeaders();
2312
+ this.configuration = new Configuration();
2313
+ if (basePath) {
2314
+ this.basePath = basePath;
2315
+ }
2316
+ if (configuration) {
2317
+ this.configuration = configuration;
2318
+ this.basePath = basePath || configuration.basePath || this.basePath;
2319
+ }
2320
+ }
2321
+ /**
2322
+ * @param consumes string[] mime-types
2323
+ * @return true: consumes contains 'multipart/form-data', false: otherwise
2324
+ */
2325
+ BidFunnelControllerService.prototype.canConsumeForm = function (consumes) {
2326
+ var e_1, _a;
2327
+ var form = 'multipart/form-data';
2328
+ try {
2329
+ for (var consumes_1 = __values(consumes), consumes_1_1 = consumes_1.next(); !consumes_1_1.done; consumes_1_1 = consumes_1.next()) {
2330
+ var consume = consumes_1_1.value;
2331
+ if (form === consume) {
2332
+ return true;
2333
+ }
2334
+ }
2335
+ }
2336
+ catch (e_1_1) { e_1 = { error: e_1_1 }; }
2337
+ finally {
2338
+ try {
2339
+ if (consumes_1_1 && !consumes_1_1.done && (_a = consumes_1.return)) _a.call(consumes_1);
2340
+ }
2341
+ finally { if (e_1) throw e_1.error; }
2342
+ }
2343
+ return false;
2344
+ };
2345
+ BidFunnelControllerService.prototype.getBidToConversionDetailsUsingGET = function (entity, id, date, reqId, token, observe, reportProgress) {
2346
+ if (observe === void 0) { observe = 'body'; }
2347
+ if (reportProgress === void 0) { reportProgress = false; }
2348
+ if (entity === null || entity === undefined) {
2349
+ throw new Error('Required parameter entity was null or undefined when calling getBidToConversionDetailsUsingGET.');
2350
+ }
2351
+ if (id === null || id === undefined) {
2352
+ throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsUsingGET.');
2353
+ }
2354
+ var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
2355
+ if (date !== undefined && date !== null) {
2356
+ queryParameters = queryParameters.set('date', date);
2357
+ }
2358
+ if (entity !== undefined && entity !== null) {
2359
+ queryParameters = queryParameters.set('entity', entity);
2360
+ }
2361
+ var headers = this.defaultHeaders;
2362
+ if (reqId !== undefined && reqId !== null) {
2363
+ headers = headers.set('reqId', String(reqId));
2364
+ }
2365
+ if (token !== undefined && token !== null) {
2366
+ headers = headers.set('token', String(token));
2367
+ }
2368
+ // to determine the Accept header
2369
+ var httpHeaderAccepts = [
2370
+ 'application/json'
2371
+ ];
2372
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2373
+ if (httpHeaderAcceptSelected != undefined) {
2374
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
2375
+ }
2376
+ // to determine the Content-Type header
2377
+ var consumes = [];
2378
+ return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)), {
2379
+ params: queryParameters,
2380
+ withCredentials: this.configuration.withCredentials,
2381
+ headers: headers,
2382
+ observe: observe,
2383
+ reportProgress: reportProgress
2384
+ });
2385
+ };
2386
+ BidFunnelControllerService.prototype.getBidToConversionFilterDetailsUsingGET = function (entity, id, date, reqId, token, observe, reportProgress) {
2387
+ if (observe === void 0) { observe = 'body'; }
2388
+ if (reportProgress === void 0) { reportProgress = false; }
2389
+ if (entity === null || entity === undefined) {
2390
+ throw new Error('Required parameter entity was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
2391
+ }
2392
+ if (id === null || id === undefined) {
2393
+ throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsUsingGET.');
2394
+ }
2395
+ var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
2396
+ if (date !== undefined && date !== null) {
2397
+ queryParameters = queryParameters.set('date', date);
2398
+ }
2399
+ if (entity !== undefined && entity !== null) {
2400
+ queryParameters = queryParameters.set('entity', entity);
2401
+ }
2402
+ var headers = this.defaultHeaders;
2403
+ if (reqId !== undefined && reqId !== null) {
2404
+ headers = headers.set('reqId', String(reqId));
2405
+ }
2406
+ if (token !== undefined && token !== null) {
2407
+ headers = headers.set('token', String(token));
2408
+ }
2409
+ // to determine the Accept header
2410
+ var httpHeaderAccepts = [
2411
+ 'application/json'
2412
+ ];
2413
+ var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
2414
+ if (httpHeaderAcceptSelected != undefined) {
2415
+ headers = headers.set('Accept', httpHeaderAcceptSelected);
2416
+ }
2417
+ // to determine the Content-Type header
2418
+ var consumes = [];
2419
+ return this.httpClient.get(this.basePath + "/bidfunnel/" + encodeURIComponent(String(id)) + "/filters", {
2420
+ params: queryParameters,
2421
+ withCredentials: this.configuration.withCredentials,
2422
+ headers: headers,
2423
+ observe: observe,
2424
+ reportProgress: reportProgress
2425
+ });
2426
+ };
2427
+ return BidFunnelControllerService;
2428
+ }());
2429
+ BidFunnelControllerService.decorators = [
2430
+ { type: core.Injectable }
2431
+ ];
2432
+ BidFunnelControllerService.ctorParameters = function () { return [
2433
+ { type: http.HttpClient },
2434
+ { type: String, decorators: [{ type: core.Optional }, { type: core.Inject, args: [BASE_PATH,] }] },
2435
+ { type: Configuration, decorators: [{ type: core.Optional }] }
2436
+ ]; };
2437
+
2307
2438
  var BulkStrategyControllerService = /** @class */ (function () {
2308
2439
  function BulkStrategyControllerService(httpClient, basePath, configuration) {
2309
2440
  this.httpClient = httpClient;
2310
- this.basePath = 'https://apiv2stage7.atomex.net';
2441
+ this.basePath = 'https://apiv2stage5.atomex.net';
2311
2442
  this.defaultHeaders = new http.HttpHeaders();
2312
2443
  this.configuration = new Configuration();
2313
2444
  if (basePath) {
@@ -2538,7 +2669,7 @@
2538
2669
  var CSSThemeController_Service = /** @class */ (function () {
2539
2670
  function CSSThemeController_Service(httpClient, basePath, configuration) {
2540
2671
  this.httpClient = httpClient;
2541
- this.basePath = 'https://apiv2stage7.atomex.net';
2672
+ this.basePath = 'https://apiv2stage5.atomex.net';
2542
2673
  this.defaultHeaders = new http.HttpHeaders();
2543
2674
  this.configuration = new Configuration();
2544
2675
  if (basePath) {
@@ -2647,7 +2778,7 @@
2647
2778
  var CampaignControllerService = /** @class */ (function () {
2648
2779
  function CampaignControllerService(httpClient, basePath, configuration) {
2649
2780
  this.httpClient = httpClient;
2650
- this.basePath = 'https://apiv2stage7.atomex.net';
2781
+ this.basePath = 'https://apiv2stage5.atomex.net';
2651
2782
  this.defaultHeaders = new http.HttpHeaders();
2652
2783
  this.configuration = new Configuration();
2653
2784
  if (basePath) {
@@ -2957,7 +3088,7 @@
2957
3088
  var CatalogControllerService = /** @class */ (function () {
2958
3089
  function CatalogControllerService(httpClient, basePath, configuration) {
2959
3090
  this.httpClient = httpClient;
2960
- this.basePath = 'https://apiv2stage7.atomex.net';
3091
+ this.basePath = 'https://apiv2stage5.atomex.net';
2961
3092
  this.defaultHeaders = new http.HttpHeaders();
2962
3093
  this.configuration = new Configuration();
2963
3094
  if (basePath) {
@@ -3203,7 +3334,7 @@
3203
3334
  var ClickDestinationControllerService = /** @class */ (function () {
3204
3335
  function ClickDestinationControllerService(httpClient, basePath, configuration) {
3205
3336
  this.httpClient = httpClient;
3206
- this.basePath = 'https://apiv2stage7.atomex.net';
3337
+ this.basePath = 'https://apiv2stage5.atomex.net';
3207
3338
  this.defaultHeaders = new http.HttpHeaders();
3208
3339
  this.configuration = new Configuration();
3209
3340
  if (basePath) {
@@ -3441,7 +3572,7 @@
3441
3572
  var CreativeControllerService = /** @class */ (function () {
3442
3573
  function CreativeControllerService(httpClient, basePath, configuration) {
3443
3574
  this.httpClient = httpClient;
3444
- this.basePath = 'https://apiv2stage7.atomex.net';
3575
+ this.basePath = 'https://apiv2stage5.atomex.net';
3445
3576
  this.defaultHeaders = new http.HttpHeaders();
3446
3577
  this.configuration = new Configuration();
3447
3578
  if (basePath) {
@@ -3942,7 +4073,7 @@
3942
4073
  var CreativeSetsControllerService = /** @class */ (function () {
3943
4074
  function CreativeSetsControllerService(httpClient, basePath, configuration) {
3944
4075
  this.httpClient = httpClient;
3945
- this.basePath = 'https://apiv2stage7.atomex.net';
4076
+ this.basePath = 'https://apiv2stage5.atomex.net';
3946
4077
  this.defaultHeaders = new http.HttpHeaders();
3947
4078
  this.configuration = new Configuration();
3948
4079
  if (basePath) {
@@ -4461,7 +4592,7 @@
4461
4592
  var CreativeTemplateThemesControllerService = /** @class */ (function () {
4462
4593
  function CreativeTemplateThemesControllerService(httpClient, basePath, configuration) {
4463
4594
  this.httpClient = httpClient;
4464
- this.basePath = 'https://apiv2stage7.atomex.net';
4595
+ this.basePath = 'https://apiv2stage5.atomex.net';
4465
4596
  this.defaultHeaders = new http.HttpHeaders();
4466
4597
  this.configuration = new Configuration();
4467
4598
  if (basePath) {
@@ -4650,7 +4781,7 @@
4650
4781
  var CreativeTemplateVariablesControllerService = /** @class */ (function () {
4651
4782
  function CreativeTemplateVariablesControllerService(httpClient, basePath, configuration) {
4652
4783
  this.httpClient = httpClient;
4653
- this.basePath = 'https://apiv2stage7.atomex.net';
4784
+ this.basePath = 'https://apiv2stage5.atomex.net';
4654
4785
  this.defaultHeaders = new http.HttpHeaders();
4655
4786
  this.configuration = new Configuration();
4656
4787
  if (basePath) {
@@ -4726,7 +4857,7 @@
4726
4857
  var CreativeTemplatesControllerService = /** @class */ (function () {
4727
4858
  function CreativeTemplatesControllerService(httpClient, basePath, configuration) {
4728
4859
  this.httpClient = httpClient;
4729
- this.basePath = 'https://apiv2stage7.atomex.net';
4860
+ this.basePath = 'https://apiv2stage5.atomex.net';
4730
4861
  this.defaultHeaders = new http.HttpHeaders();
4731
4862
  this.configuration = new Configuration();
4732
4863
  if (basePath) {
@@ -4893,7 +5024,7 @@
4893
5024
  var CustomerReportingControllerService = /** @class */ (function () {
4894
5025
  function CustomerReportingControllerService(httpClient, basePath, configuration) {
4895
5026
  this.httpClient = httpClient;
4896
- this.basePath = 'https://apiv2stage7.atomex.net';
5027
+ this.basePath = 'https://apiv2stage5.atomex.net';
4897
5028
  this.defaultHeaders = new http.HttpHeaders();
4898
5029
  this.configuration = new Configuration();
4899
5030
  if (basePath) {
@@ -4978,7 +5109,7 @@
4978
5109
  var DashboardControllerService = /** @class */ (function () {
4979
5110
  function DashboardControllerService(httpClient, basePath, configuration) {
4980
5111
  this.httpClient = httpClient;
4981
- this.basePath = 'https://apiv2stage7.atomex.net';
5112
+ this.basePath = 'https://apiv2stage5.atomex.net';
4982
5113
  this.defaultHeaders = new http.HttpHeaders();
4983
5114
  this.configuration = new Configuration();
4984
5115
  if (basePath) {
@@ -5623,7 +5754,7 @@
5623
5754
  var NotificationsControllerService = /** @class */ (function () {
5624
5755
  function NotificationsControllerService(httpClient, basePath, configuration) {
5625
5756
  this.httpClient = httpClient;
5626
- this.basePath = 'https://apiv2stage7.atomex.net';
5757
+ this.basePath = 'https://apiv2stage5.atomex.net';
5627
5758
  this.defaultHeaders = new http.HttpHeaders();
5628
5759
  this.configuration = new Configuration();
5629
5760
  if (basePath) {
@@ -5842,7 +5973,7 @@
5842
5973
  var PixelControllerService = /** @class */ (function () {
5843
5974
  function PixelControllerService(httpClient, basePath, configuration) {
5844
5975
  this.httpClient = httpClient;
5845
- this.basePath = 'https://apiv2stage7.atomex.net';
5976
+ this.basePath = 'https://apiv2stage5.atomex.net';
5846
5977
  this.defaultHeaders = new http.HttpHeaders();
5847
5978
  this.configuration = new Configuration();
5848
5979
  if (basePath) {
@@ -6159,7 +6290,7 @@
6159
6290
  var ReportingControllerService = /** @class */ (function () {
6160
6291
  function ReportingControllerService(httpClient, basePath, configuration) {
6161
6292
  this.httpClient = httpClient;
6162
- this.basePath = 'https://apiv2stage7.atomex.net';
6293
+ this.basePath = 'https://apiv2stage5.atomex.net';
6163
6294
  this.defaultHeaders = new http.HttpHeaders();
6164
6295
  this.configuration = new Configuration();
6165
6296
  if (basePath) {
@@ -6331,7 +6462,7 @@
6331
6462
  var SliceXControllerService = /** @class */ (function () {
6332
6463
  function SliceXControllerService(httpClient, basePath, configuration) {
6333
6464
  this.httpClient = httpClient;
6334
- this.basePath = 'https://apiv2stage7.atomex.net';
6465
+ this.basePath = 'https://apiv2stage5.atomex.net';
6335
6466
  this.defaultHeaders = new http.HttpHeaders();
6336
6467
  this.configuration = new Configuration();
6337
6468
  if (basePath) {
@@ -6587,7 +6718,7 @@
6587
6718
  var StrategyControllerService = /** @class */ (function () {
6588
6719
  function StrategyControllerService(httpClient, basePath, configuration) {
6589
6720
  this.httpClient = httpClient;
6590
- this.basePath = 'https://apiv2stage7.atomex.net';
6721
+ this.basePath = 'https://apiv2stage5.atomex.net';
6591
6722
  this.defaultHeaders = new http.HttpHeaders();
6592
6723
  this.configuration = new Configuration();
6593
6724
  if (basePath) {
@@ -6945,76 +7076,6 @@
6945
7076
  reportProgress: reportProgress
6946
7077
  });
6947
7078
  };
6948
- StrategyControllerService.prototype.getBidToConversionDetailsForStrategyUsingGET = function (id, date, reqId, token, observe, reportProgress) {
6949
- if (observe === void 0) { observe = 'body'; }
6950
- if (reportProgress === void 0) { reportProgress = false; }
6951
- if (id === null || id === undefined) {
6952
- throw new Error('Required parameter id was null or undefined when calling getBidToConversionDetailsForStrategyUsingGET.');
6953
- }
6954
- var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
6955
- if (date !== undefined && date !== null) {
6956
- queryParameters = queryParameters.set('date', date);
6957
- }
6958
- var headers = this.defaultHeaders;
6959
- if (reqId !== undefined && reqId !== null) {
6960
- headers = headers.set('reqId', String(reqId));
6961
- }
6962
- if (token !== undefined && token !== null) {
6963
- headers = headers.set('token', String(token));
6964
- }
6965
- // to determine the Accept header
6966
- var httpHeaderAccepts = [
6967
- 'application/json'
6968
- ];
6969
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
6970
- if (httpHeaderAcceptSelected != undefined) {
6971
- headers = headers.set('Accept', httpHeaderAcceptSelected);
6972
- }
6973
- // to determine the Content-Type header
6974
- var consumes = [];
6975
- return this.httpClient.get(this.basePath + "/v2/api/strategies/b2c/" + encodeURIComponent(String(id)), {
6976
- params: queryParameters,
6977
- withCredentials: this.configuration.withCredentials,
6978
- headers: headers,
6979
- observe: observe,
6980
- reportProgress: reportProgress
6981
- });
6982
- };
6983
- StrategyControllerService.prototype.getBidToConversionFilterDetailsForStrategyUsingGET = function (id, date, reqId, token, observe, reportProgress) {
6984
- if (observe === void 0) { observe = 'body'; }
6985
- if (reportProgress === void 0) { reportProgress = false; }
6986
- if (id === null || id === undefined) {
6987
- throw new Error('Required parameter id was null or undefined when calling getBidToConversionFilterDetailsForStrategyUsingGET.');
6988
- }
6989
- var queryParameters = new http.HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
6990
- if (date !== undefined && date !== null) {
6991
- queryParameters = queryParameters.set('date', date);
6992
- }
6993
- var headers = this.defaultHeaders;
6994
- if (reqId !== undefined && reqId !== null) {
6995
- headers = headers.set('reqId', String(reqId));
6996
- }
6997
- if (token !== undefined && token !== null) {
6998
- headers = headers.set('token', String(token));
6999
- }
7000
- // to determine the Accept header
7001
- var httpHeaderAccepts = [
7002
- 'application/json'
7003
- ];
7004
- var httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
7005
- if (httpHeaderAcceptSelected != undefined) {
7006
- headers = headers.set('Accept', httpHeaderAcceptSelected);
7007
- }
7008
- // to determine the Content-Type header
7009
- var consumes = [];
7010
- return this.httpClient.get(this.basePath + "/v2/api/strategies/b2c/" + encodeURIComponent(String(id)) + "/filters", {
7011
- params: queryParameters,
7012
- withCredentials: this.configuration.withCredentials,
7013
- headers: headers,
7014
- observe: observe,
7015
- reportProgress: reportProgress
7016
- });
7017
- };
7018
7079
  StrategyControllerService.prototype.getSkadSettingsUsingGET = function (reqId, token, observe, reportProgress) {
7019
7080
  if (observe === void 0) { observe = 'body'; }
7020
7081
  if (reportProgress === void 0) { reportProgress = false; }
@@ -7489,7 +7550,7 @@
7489
7550
  var StrategyTemplateControllerService = /** @class */ (function () {
7490
7551
  function StrategyTemplateControllerService(httpClient, basePath, configuration) {
7491
7552
  this.httpClient = httpClient;
7492
- this.basePath = 'https://apiv2stage7.atomex.net';
7553
+ this.basePath = 'https://apiv2stage5.atomex.net';
7493
7554
  this.defaultHeaders = new http.HttpHeaders();
7494
7555
  this.configuration = new Configuration();
7495
7556
  if (basePath) {
@@ -7611,7 +7672,7 @@
7611
7672
  var UILoggerControllerService = /** @class */ (function () {
7612
7673
  function UILoggerControllerService(httpClient, basePath, configuration) {
7613
7674
  this.httpClient = httpClient;
7614
- this.basePath = 'https://apiv2stage7.atomex.net';
7675
+ this.basePath = 'https://apiv2stage5.atomex.net';
7615
7676
  this.defaultHeaders = new http.HttpHeaders();
7616
7677
  this.configuration = new Configuration();
7617
7678
  if (basePath) {
@@ -7701,7 +7762,7 @@
7701
7762
  var UserPreferenceControllerService = /** @class */ (function () {
7702
7763
  function UserPreferenceControllerService(httpClient, basePath, configuration) {
7703
7764
  this.httpClient = httpClient;
7704
- this.basePath = 'https://apiv2stage7.atomex.net';
7765
+ this.basePath = 'https://apiv2stage5.atomex.net';
7705
7766
  this.defaultHeaders = new http.HttpHeaders();
7706
7767
  this.configuration = new Configuration();
7707
7768
  if (basePath) {
@@ -7876,7 +7937,7 @@
7876
7937
  { type: Configuration, decorators: [{ type: core.Optional }] }
7877
7938
  ]; };
7878
7939
 
7879
- var APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
7940
+ var APIS = [AdminControllerService, AdvertiserControllerService, AppSettingsControllerService, AudienceControllerService, AuditControllerService, BidFunnelControllerService, BulkStrategyControllerService, CSSThemeController_Service, CampaignControllerService, CatalogControllerService, ClickDestinationControllerService, CreativeControllerService, CreativeSetsControllerService, CreativeTemplateThemesControllerService, CreativeTemplateVariablesControllerService, CreativeTemplatesControllerService, CustomerReportingControllerService, DashboardControllerService, NotificationsControllerService, PixelControllerService, ReportingControllerService, SliceXControllerService, StrategyControllerService, StrategyTemplateControllerService, UILoggerControllerService, UserPreferenceControllerService];
7880
7941
 
7881
7942
  exports.ActivityLogsCreativeSetsBulkUpdateDTO = void 0;
7882
7943
  (function (ActivityLogsCreativeSetsBulkUpdateDTO) {
@@ -8937,6 +8998,7 @@
8937
8998
  AppSettingsControllerService,
8938
8999
  AudienceControllerService,
8939
9000
  AuditControllerService,
9001
+ BidFunnelControllerService,
8940
9002
  BulkStrategyControllerService,
8941
9003
  CSSThemeController_Service,
8942
9004
  CampaignControllerService,
@@ -8977,6 +9039,7 @@
8977
9039
  exports.AudienceControllerService = AudienceControllerService;
8978
9040
  exports.AuditControllerService = AuditControllerService;
8979
9041
  exports.BASE_PATH = BASE_PATH;
9042
+ exports.BidFunnelControllerService = BidFunnelControllerService;
8980
9043
  exports.BulkStrategyControllerService = BulkStrategyControllerService;
8981
9044
  exports.COLLECTION_FORMATS = COLLECTION_FORMATS;
8982
9045
  exports.CSSThemeController_Service = CSSThemeController_Service;