@revxui/intellibid-client-ts 1.0.60 → 1.0.62
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/advertiserController.service.d.ts +11 -23
- package/api/api.d.ts +1 -3
- package/esm2020/api/advertiserController.service.mjs +23 -55
- package/esm2020/api/api.mjs +2 -4
- package/esm2020/api.module.mjs +1 -4
- package/esm2020/model/adAccountResponse.mjs +20 -0
- package/esm2020/model/advertiserResponse.mjs +1 -1
- package/esm2020/model/campaignRequest.mjs +1 -2
- package/esm2020/model/campaignResponse.mjs +1 -2
- package/esm2020/model/models.mjs +2 -8
- package/fesm2015/revxui-intellibid-client-ts.mjs +31 -219
- package/fesm2015/revxui-intellibid-client-ts.mjs.map +1 -1
- package/fesm2020/revxui-intellibid-client-ts.mjs +34 -256
- package/fesm2020/revxui-intellibid-client-ts.mjs.map +1 -1
- package/model/adAccountResponse.d.ts +24 -0
- package/model/advertiserResponse.d.ts +2 -0
- package/model/campaignRequest.d.ts +2 -2
- package/model/campaignResponse.d.ts +2 -2
- package/model/models.d.ts +1 -7
- package/package.json +1 -1
- package/api/audienceController.service.d.ts +0 -41
- package/esm2020/api/audienceController.service.mjs +0 -110
- package/esm2020/model/audienceChildStatusDTO.mjs +0 -22
- package/esm2020/model/audienceGroupStatusResponse.mjs +0 -16
- package/esm2020/model/childPreviewDTO.mjs +0 -13
- package/esm2020/model/createBucketizedLiveAudienceRequest.mjs +0 -19
- package/esm2020/model/createBucketizedLiveAudienceResponse.mjs +0 -10
- package/esm2020/model/productSetResponse.mjs +0 -13
- package/esm2020/model/upsertProductSetRequest.mjs +0 -13
- package/model/audienceChildStatusDTO.d.ts +0 -31
- package/model/audienceGroupStatusResponse.d.ts +0 -42
- package/model/childPreviewDTO.d.ts +0 -19
- package/model/createBucketizedLiveAudienceRequest.d.ts +0 -33
- package/model/createBucketizedLiveAudienceResponse.d.ts +0 -28
- package/model/productSetResponse.d.ts +0 -16
- package/model/upsertProductSetRequest.d.ts +0 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"revxui-intellibid-client-ts.mjs","sources":["../../encoder.ts","../../variables.ts","../../configuration.ts","../../api/advertiserController.service.ts","../../api/audienceController.service.ts","../../api/campaignController.service.ts","../../api/insightsController.service.ts","../../api/lookupDataController.service.ts","../../api/api.ts","../../model/audienceChildStatusDTO.ts","../../model/audienceGroupStatusResponse.ts","../../model/campaignChangeLogResponse.ts","../../model/campaignInsightRecord.ts","../../model/campaignRequest.ts","../../model/campaignResponse.ts","../../model/createBucketizedLiveAudienceRequest.ts","../../model/createBucketizedLiveAudienceResponse.ts","../../model/scheduleUpdateRequest.ts","../../api.module.ts","../../revxui-intellibid-client-ts.ts"],"sourcesContent":[" import { HttpUrlEncodingCodec } from '@angular/common/http';\n\n/**\n* CustomHttpUrlEncodingCodec\n* Fix plus sign (+) not encoding, so sent as blank space\n* See: https://github.com/angular/angular/issues/11058#issuecomment-247367318\n*/\nexport class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {\n encodeKey(k: string): string {\n k = super.encodeKey(k);\n return k.replace(/\\+/gi, '%2B');\n }\n encodeValue(v: string): string {\n v = super.encodeValue(v);\n return v.replace(/\\+/gi, '%2B');\n }\n}\n\n","import { InjectionToken } from '@angular/core';\n\nexport const BASE_PATH = new InjectionToken<string>('basePath');\nexport const COLLECTION_FORMATS = {\n 'csv': ',',\n 'tsv': ' ',\n 'ssv': ' ',\n 'pipes': '|'\n}\n","export interface ConfigurationParameters {\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n}\n\nexport class Configuration {\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n\n constructor(configurationParameters: ConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType (contentTypes: string[]): string | undefined {\n if (contentTypes.length == 0) {\n return undefined;\n }\n\n let type = contentTypes.find(x => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length == 0) {\n return undefined;\n }\n\n let type = accepts.find(x => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime != null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { AdvertiserMmpConversionEventResponse } from '../model/advertiserMmpConversionEventResponse';\nimport { AdvertiserResponse } from '../model/advertiserResponse';\nimport { AdvertiserSearchResponse } from '../model/advertiserSearchResponse';\nimport { BlockedEventResponse } from '../model/blockedEventResponse';\nimport { GoalResponse } from '../model/goalResponse';\nimport { PageAdvertiserResponse } from '../model/pageAdvertiserResponse';\nimport { ProductSetResponse } from '../model/productSetResponse';\nimport { UpsertProductSetRequest } from '../model/upsertProductSetRequest';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class AdvertiserControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<AdvertiserResponse>;\n public getAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<AdvertiserResponse>>;\n public getAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<AdvertiserResponse>>;\n public getAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<AdvertiserResponse>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param name \n * @param isActive \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageAdvertiserResponse>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageAdvertiserResponse>>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageAdvertiserResponse>>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (name !== undefined && name !== null) {\n queryParameters = queryParameters.set('name', <any>name);\n }\n if (isActive !== undefined && isActive !== null) {\n queryParameters = queryParameters.set('isActive', <any>isActive);\n }\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageAdvertiserResponse>('get',`${this.basePath}/api/advertiser`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all blocked events for an advertiser\n * Returns list of blocked events with eventName and blockingDays for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getBlockedEventsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<BlockedEventResponse>>;\n public getBlockedEventsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<BlockedEventResponse>>>;\n public getBlockedEventsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<BlockedEventResponse>>>;\n public getBlockedEventsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getBlockedEventsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<BlockedEventResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/blocked-events`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all goals for an advertiser\n * Returns list of goals derived from the advertiser's active postback event mappings\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getGoalsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<GoalResponse>>;\n public getGoalsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<GoalResponse>>>;\n public getGoalsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<GoalResponse>>>;\n public getGoalsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getGoalsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<GoalResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/goals`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all MMP conversion events for an advertiser\n * Returns list of configured MMP events with id and eventLabel for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<AdvertiserMmpConversionEventResponse>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdvertiserMmpConversionEventResponse>>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdvertiserMmpConversionEventResponse>>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getMMPConversionEventsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<AdvertiserMmpConversionEventResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/mmp-conversion-events`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * List product sets for an advertiser\n * Returns list of product sets configured for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listProductSets(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<ProductSetResponse>>;\n public listProductSets(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<ProductSetResponse>>>;\n public listProductSets(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<ProductSetResponse>>>;\n public listProductSets(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling listProductSets.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<ProductSetResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/product-sets`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param q \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public searchAdvertisers(q: string, observe?: 'body', reportProgress?: boolean): Observable<Array<AdvertiserSearchResponse>>;\n public searchAdvertisers(q: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdvertiserSearchResponse>>>;\n public searchAdvertisers(q: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdvertiserSearchResponse>>>;\n public searchAdvertisers(q: string, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (q === null || q === undefined) {\n throw new Error('Required parameter q was null or undefined when calling searchAdvertisers.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (q !== undefined && q !== null) {\n queryParameters = queryParameters.set('q', <any>q);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<AdvertiserSearchResponse>>('get',`${this.basePath}/api/advertiser/search`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Upsert a product set for an advertiser\n * Creates or updates a product set configuration for the specified advertiser\n * @param body \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public upsertProductSet(body: UpsertProductSetRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<ProductSetResponse>;\n public upsertProductSet(body: UpsertProductSetRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<ProductSetResponse>>;\n public upsertProductSet(body: UpsertProductSetRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<ProductSetResponse>>;\n public upsertProductSet(body: UpsertProductSetRequest, id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling upsertProductSet.');\n }\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling upsertProductSet.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<ProductSetResponse>('post',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/product-sets`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { AudienceGroupStatusResponse } from '../model/audienceGroupStatusResponse';\nimport { CreateBucketizedLiveAudienceRequest } from '../model/createBucketizedLiveAudienceRequest';\nimport { CreateBucketizedLiveAudienceResponse } from '../model/createBucketizedLiveAudienceResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class AudienceControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * Create a bucketized live audience group\n * Creates a CustomAudienceGroup with N child rows for each CVR x Retention bucket combination. Triggers a sync with Platform Manager and returns immediately with the group ID and operation ID.\n * @param body \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createBucketizedLiveAudience(body: CreateBucketizedLiveAudienceRequest, observe?: 'body', reportProgress?: boolean): Observable<CreateBucketizedLiveAudienceResponse>;\n public createBucketizedLiveAudience(body: CreateBucketizedLiveAudienceRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CreateBucketizedLiveAudienceResponse>>;\n public createBucketizedLiveAudience(body: CreateBucketizedLiveAudienceRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CreateBucketizedLiveAudienceResponse>>;\n public createBucketizedLiveAudience(body: CreateBucketizedLiveAudienceRequest, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling createBucketizedLiveAudience.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<CreateBucketizedLiveAudienceResponse>('post',`${this.basePath}/api/audience/live/bucketized`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get audience group status\n * Returns the status of an audience group including all child audiences and their sync status\n * @param groupId \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getGroupStatus(groupId: number, observe?: 'body', reportProgress?: boolean): Observable<AudienceGroupStatusResponse>;\n public getGroupStatus(groupId: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<AudienceGroupStatusResponse>>;\n public getGroupStatus(groupId: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<AudienceGroupStatusResponse>>;\n public getGroupStatus(groupId: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (groupId === null || groupId === undefined) {\n throw new Error('Required parameter groupId was null or undefined when calling getGroupStatus.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<AudienceGroupStatusResponse>('get',`${this.basePath}/api/audience/groups/${encodeURIComponent(String(groupId))}`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { CampaignRequest } from '../model/campaignRequest';\nimport { CampaignResponse } from '../model/campaignResponse';\nimport { CampaignSearchResponse } from '../model/campaignSearchResponse';\nimport { PageCampaignChangeLogResponse } from '../model/pageCampaignChangeLogResponse';\nimport { PageCampaignResponse } from '../model/pageCampaignResponse';\nimport { ScheduleUpdateRequest } from '../model/scheduleUpdateRequest';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class CampaignControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param body \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createCampaign(body: CampaignRequest, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public createCampaign(body: CampaignRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public createCampaign(body: CampaignRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public createCampaign(body: CampaignRequest, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling createCampaign.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param advertiserId \n * @param name \n * @param platformCampaignId \n * @param payoutType \n * @param marketFeedbackEnabled \n * @param activeOnPlatform \n * @param sourcePlatform \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageCampaignResponse>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageCampaignResponse>>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageCampaignResponse>>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n\n\n\n\n\n\n\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (id !== undefined && id !== null) {\n queryParameters = queryParameters.set('id', <any>id);\n }\n if (advertiserId !== undefined && advertiserId !== null) {\n queryParameters = queryParameters.set('advertiserId', <any>advertiserId);\n }\n if (name !== undefined && name !== null) {\n queryParameters = queryParameters.set('name', <any>name);\n }\n if (platformCampaignId !== undefined && platformCampaignId !== null) {\n queryParameters = queryParameters.set('platformCampaignId', <any>platformCampaignId);\n }\n if (payoutType !== undefined && payoutType !== null) {\n queryParameters = queryParameters.set('payoutType', <any>payoutType);\n }\n if (marketFeedbackEnabled !== undefined && marketFeedbackEnabled !== null) {\n queryParameters = queryParameters.set('marketFeedbackEnabled', <any>marketFeedbackEnabled);\n }\n if (activeOnPlatform !== undefined && activeOnPlatform !== null) {\n queryParameters = queryParameters.set('activeOnPlatform', <any>activeOnPlatform);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageCampaignResponse>('get',`${this.basePath}/api/campaign`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaign(id: number, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public getCampaign(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public getCampaign(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public getCampaign(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getCampaign.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignResponse>('get',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageCampaignChangeLogResponse>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageCampaignChangeLogResponse>>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageCampaignChangeLogResponse>>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getCampaignLogs.');\n }\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageCampaignChangeLogResponse>('get',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/log`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param body \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling scheduleUpdate.');\n }\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling scheduleUpdate.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/schedule-update`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param q \n * @param sourcePlatform \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'body', reportProgress?: boolean): Observable<Array<CampaignSearchResponse>>;\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<CampaignSearchResponse>>>;\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<CampaignSearchResponse>>>;\n public searchCampaign(q: string, sourcePlatform: string, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (q === null || q === undefined) {\n throw new Error('Required parameter q was null or undefined when calling searchCampaign.');\n }\n\n if (sourcePlatform === null || sourcePlatform === undefined) {\n throw new Error('Required parameter sourcePlatform was null or undefined when calling searchCampaign.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (q !== undefined && q !== null) {\n queryParameters = queryParameters.set('q', <any>q);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<CampaignSearchResponse>>('get',`${this.basePath}/api/campaign/search`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param active \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public setStatus(id: number, active: boolean, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public setStatus(id: number, active: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public setStatus(id: number, active: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public setStatus(id: number, active: boolean, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling setStatus.');\n }\n\n if (active === null || active === undefined) {\n throw new Error('Required parameter active was null or undefined when calling setStatus.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (active !== undefined && active !== null) {\n queryParameters = queryParameters.set('active', <any>active);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/status`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { CampaignInsightsResponse } from '../model/campaignInsightsResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class InsightsControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param startDate \n * @param endDate \n * @param sourcePlatform \n * @param interval \n * @param requireMmpReport \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'body', reportProgress?: boolean): Observable<CampaignInsightsResponse>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignInsightsResponse>>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignInsightsResponse>>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (startDate === null || startDate === undefined) {\n throw new Error('Required parameter startDate was null or undefined when calling getCampaignInsights.');\n }\n\n if (endDate === null || endDate === undefined) {\n throw new Error('Required parameter endDate was null or undefined when calling getCampaignInsights.');\n }\n\n if (sourcePlatform === null || sourcePlatform === undefined) {\n throw new Error('Required parameter sourcePlatform was null or undefined when calling getCampaignInsights.');\n }\n\n if (interval === null || interval === undefined) {\n throw new Error('Required parameter interval was null or undefined when calling getCampaignInsights.');\n }\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (startDate !== undefined && startDate !== null) {\n queryParameters = queryParameters.set('startDate', <any>startDate);\n }\n if (endDate !== undefined && endDate !== null) {\n queryParameters = queryParameters.set('endDate', <any>endDate);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n if (interval !== undefined && interval !== null) {\n queryParameters = queryParameters.set('interval', <any>interval);\n }\n if (requireMmpReport !== undefined && requireMmpReport !== null) {\n queryParameters = queryParameters.set('requireMmpReport', <any>requireMmpReport);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignInsightsResponse>('get',`${this.basePath}/api/campaign-insights`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { BusinessZoneResponse } from '../model/businessZoneResponse';\nimport { CountryResponse } from '../model/countryResponse';\nimport { OSResponse } from '../model/oSResponse';\nimport { PlatformResponse } from '../model/platformResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class LookupDataControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllActiveOS(observe?: 'body', reportProgress?: boolean): Observable<Array<OSResponse>>;\n public getAllActiveOS(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<OSResponse>>>;\n public getAllActiveOS(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<OSResponse>>>;\n public getAllActiveOS(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<OSResponse>>('get',`${this.basePath}/api/lookups/os`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllActivePlatforms(observe?: 'body', reportProgress?: boolean): Observable<Array<PlatformResponse>>;\n public getAllActivePlatforms(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<PlatformResponse>>>;\n public getAllActivePlatforms(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<PlatformResponse>>>;\n public getAllActivePlatforms(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<PlatformResponse>>('get',`${this.basePath}/api/lookups/platforms`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllBusinessZones(observe?: 'body', reportProgress?: boolean): Observable<Array<BusinessZoneResponse>>;\n public getAllBusinessZones(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<BusinessZoneResponse>>>;\n public getAllBusinessZones(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<BusinessZoneResponse>>>;\n public getAllBusinessZones(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<BusinessZoneResponse>>('get',`${this.basePath}/api/lookups/business-zones`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllCountries(observe?: 'body', reportProgress?: boolean): Observable<Array<CountryResponse>>;\n public getAllCountries(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<CountryResponse>>>;\n public getAllCountries(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<CountryResponse>>>;\n public getAllCountries(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<CountryResponse>>('get',`${this.basePath}/api/lookups/countries`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","export * from './advertiserController.service';\nimport { AdvertiserControllerService } from './advertiserController.service';\nexport * from './audienceController.service';\nimport { AudienceControllerService } from './audienceController.service';\nexport * from './campaignController.service';\nimport { CampaignControllerService } from './campaignController.service';\nexport * from './insightsController.service';\nimport { InsightsControllerService } from './insightsController.service';\nexport * from './lookupDataController.service';\nimport { LookupDataControllerService } from './lookupDataController.service';\nexport const APIS = [AdvertiserControllerService, AudienceControllerService, CampaignControllerService, InsightsControllerService, LookupDataControllerService];\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface AudienceChildStatusDTO { \n childId?: number;\n childKeyHash?: string;\n computedName?: string;\n platformAudienceId?: string;\n status?: AudienceChildStatusDTO.StatusEnum;\n lastError?: string;\n cvrBucketLabel?: string;\n retentionBucketLabel?: string;\n}\nexport namespace AudienceChildStatusDTO {\n export type StatusEnum = 'CREATING' | 'ACTIVE' | 'UPDATING' | 'DELETING' | 'FAILED';\n export const StatusEnum = {\n CREATING: 'CREATING' as StatusEnum,\n ACTIVE: 'ACTIVE' as StatusEnum,\n UPDATING: 'UPDATING' as StatusEnum,\n DELETING: 'DELETING' as StatusEnum,\n FAILED: 'FAILED' as StatusEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { AudienceChildStatusDTO } from './audienceChildStatusDTO';\n\nexport interface AudienceGroupStatusResponse { \n groupId?: number;\n groupType?: AudienceGroupStatusResponse.GroupTypeEnum;\n advertiserId?: number;\n platformId?: number;\n businessZoneId?: number;\n syncStatus?: AudienceGroupStatusResponse.SyncStatusEnum;\n lastSyncOperationId?: string;\n lastSyncError?: string;\n lastConfigAppliedAt?: Date;\n createdAt?: Date;\n updatedAt?: Date;\n children?: Array<AudienceChildStatusDTO>;\n}\nexport namespace AudienceGroupStatusResponse {\n export type GroupTypeEnum = 'BUCKETIZED_LIVE' | 'BLOCKED_LIVE' | 'BUCKETIZED_CUSTOM' | 'DS_CUSTOM_QUERY';\n export const GroupTypeEnum = {\n BUCKETIZEDLIVE: 'BUCKETIZED_LIVE' as GroupTypeEnum,\n BLOCKEDLIVE: 'BLOCKED_LIVE' as GroupTypeEnum,\n BUCKETIZEDCUSTOM: 'BUCKETIZED_CUSTOM' as GroupTypeEnum,\n DSCUSTOMQUERY: 'DS_CUSTOM_QUERY' as GroupTypeEnum\n };\n export type SyncStatusEnum = 'IDLE' | 'SYNCING' | 'PARTIAL' | 'FAILED';\n export const SyncStatusEnum = {\n IDLE: 'IDLE' as SyncStatusEnum,\n SYNCING: 'SYNCING' as SyncStatusEnum,\n PARTIAL: 'PARTIAL' as SyncStatusEnum,\n FAILED: 'FAILED' as SyncStatusEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignChangeLogResponse { \n id?: number;\n campaignId?: number;\n entityChanged?: CampaignChangeLogResponse.EntityChangedEnum;\n status?: CampaignChangeLogResponse.StatusEnum;\n oldValue?: string;\n newValue?: string;\n createdAt?: Date;\n createdBy?: string;\n}\nexport namespace CampaignChangeLogResponse {\n export type EntityChangedEnum = 'STATUS' | 'BUDGET' | 'PAYOUT_VALUE';\n export const EntityChangedEnum = {\n STATUS: 'STATUS' as EntityChangedEnum,\n BUDGET: 'BUDGET' as EntityChangedEnum,\n PAYOUTVALUE: 'PAYOUT_VALUE' as EntityChangedEnum\n };\n export type StatusEnum = 'SUCCESS' | 'FAILED';\n export const StatusEnum = {\n SUCCESS: 'SUCCESS' as StatusEnum,\n FAILED: 'FAILED' as StatusEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignInsightRecord { \n campaignActive?: boolean;\n campaignName?: string;\n advertiserName?: string;\n attributionSettings?: string;\n payoutType?: CampaignInsightRecord.PayoutTypeEnum;\n payoutValue?: number;\n dailyMediaBudget?: number;\n dailyAdvertiserBudget?: number;\n impressions?: number;\n clicks?: number;\n conversions?: number;\n installs?: number;\n mediaSpend?: number;\n advertiserSpend?: number;\n cumulativeMargin?: number;\n netMarginPercent?: number;\n netPayoutMargin?: number;\n cpm?: number;\n ctr?: number;\n cpc?: number;\n cpr?: number;\n cpi?: number;\n ecpm?: number;\n ecpc?: number;\n ecpr?: number;\n ecpi?: number;\n mmpConversions?: number;\n mmpInstalls?: number;\n mmpTotalRevenue?: number;\n mmpCpr?: number;\n mmpEcpr?: number;\n mmpCpi?: number;\n mmpEcpi?: number;\n mmpRoas?: number;\n mmpERoas?: number;\n scheduledUpdates?: string;\n}\nexport namespace CampaignInsightRecord {\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignRequest { \n advertiserId: number;\n sourcePlatform: CampaignRequest.SourcePlatformEnum;\n platformCampaignId: string;\n payoutType: CampaignRequest.PayoutTypeEnum;\n payoutValue: number;\n startDate: string;\n goal?: CampaignRequest.GoalEnum;\n goalValue?: number;\n marketFeedbackEnabled?: boolean;\n activeOnPlatform?: boolean;\n osId: number;\n mmpConversionEventId: number;\n mmpAttributionSetting: CampaignRequest.MmpAttributionSettingEnum;\n payoutValueValidForType?: boolean;\n goalValueConsistent?: boolean;\n}\nexport namespace CampaignRequest {\n export type SourcePlatformEnum = 'META' | 'TIKTOK' | 'GOOGLE' | 'SNAPCHAT';\n export const SourcePlatformEnum = {\n META: 'META' as SourcePlatformEnum,\n TIKTOK: 'TIKTOK' as SourcePlatformEnum,\n GOOGLE: 'GOOGLE' as SourcePlatformEnum,\n SNAPCHAT: 'SNAPCHAT' as SourcePlatformEnum\n };\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n export type GoalEnum = 'COST_PER_RESULT' | 'ROAS';\n export const GoalEnum = {\n COSTPERRESULT: 'COST_PER_RESULT' as GoalEnum,\n ROAS: 'ROAS' as GoalEnum\n };\n export type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';\n export const MmpAttributionSettingEnum = {\n CTA: 'CTA' as MmpAttributionSettingEnum,\n CTAANDVTA: 'CTA_AND_VTA' as MmpAttributionSettingEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { ScheduledUpdates } from './scheduledUpdates';\n\nexport interface CampaignResponse { \n id?: number;\n name?: string;\n advertiserId?: number;\n sourcePlatform?: CampaignResponse.SourcePlatformEnum;\n platformCampaignId?: string;\n marketFeedbackEnabled?: boolean;\n activeOnPlatform?: boolean;\n updating?: boolean;\n payoutType?: CampaignResponse.PayoutTypeEnum;\n payoutValue?: number;\n startDate?: string;\n goal?: CampaignResponse.GoalEnum;\n goalValue?: number;\n dailyAdvertiserBudget?: number;\n osId?: number;\n osName?: string;\n mmpConversionEventId?: number;\n mmpAttributionSetting?: CampaignResponse.MmpAttributionSettingEnum;\n lastErrorCode?: string;\n lastErrorMessage?: string;\n lastSyncAt?: Date;\n createdAt?: Date;\n lastUpdatedAt?: Date;\n createdBy?: string;\n lastUpdatedBy?: string;\n platformCurrency?: string;\n licenseeCurrency?: string;\n scheduledUpdates?: ScheduledUpdates;\n}\nexport namespace CampaignResponse {\n export type SourcePlatformEnum = 'META' | 'TIKTOK' | 'GOOGLE' | 'SNAPCHAT';\n export const SourcePlatformEnum = {\n META: 'META' as SourcePlatformEnum,\n TIKTOK: 'TIKTOK' as SourcePlatformEnum,\n GOOGLE: 'GOOGLE' as SourcePlatformEnum,\n SNAPCHAT: 'SNAPCHAT' as SourcePlatformEnum\n };\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n export type GoalEnum = 'COST_PER_RESULT' | 'ROAS';\n export const GoalEnum = {\n COSTPERRESULT: 'COST_PER_RESULT' as GoalEnum,\n ROAS: 'ROAS' as GoalEnum\n };\n export type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';\n export const MmpAttributionSettingEnum = {\n CTA: 'CTA' as MmpAttributionSettingEnum,\n CTAANDVTA: 'CTA_AND_VTA' as MmpAttributionSettingEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CreateBucketizedLiveAudienceRequest { \n advertiserId: number;\n platformId: number;\n audienceType: CreateBucketizedLiveAudienceRequest.AudienceTypeEnum;\n businessZoneId: number;\n goalEventNameId: number;\n osId: number;\n countryIds?: Array<number>;\n name: string;\n productSetId?: string;\n addEmailId: boolean;\n addPhoneNumber: boolean;\n addProbability: boolean;\n description?: string;\n}\nexport namespace CreateBucketizedLiveAudienceRequest {\n export type AudienceTypeEnum = 'DYNAMIC' | 'CATALOGUE';\n export const AudienceTypeEnum = {\n DYNAMIC: 'DYNAMIC' as AudienceTypeEnum,\n CATALOGUE: 'CATALOGUE' as AudienceTypeEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { ChildPreviewDTO } from './childPreviewDTO';\n\nexport interface CreateBucketizedLiveAudienceResponse { \n audienceGroupId?: number;\n operationId?: string;\n totalChildren?: number;\n syncStatus?: CreateBucketizedLiveAudienceResponse.SyncStatusEnum;\n childPreviews?: Array<ChildPreviewDTO>;\n}\nexport namespace CreateBucketizedLiveAudienceResponse {\n export type SyncStatusEnum = 'IDLE' | 'SYNCING' | 'PARTIAL' | 'FAILED';\n export const SyncStatusEnum = {\n IDLE: 'IDLE' as SyncStatusEnum,\n SYNCING: 'SYNCING' as SyncStatusEnum,\n PARTIAL: 'PARTIAL' as SyncStatusEnum,\n FAILED: 'FAILED' as SyncStatusEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface ScheduleUpdateRequest { \n requestType: ScheduleUpdateRequest.RequestTypeEnum;\n requestValue: number;\n}\nexport namespace ScheduleUpdateRequest {\n export type RequestTypeEnum = 'BUDGET' | 'PAYOUT_VALUE';\n export const RequestTypeEnum = {\n BUDGET: 'BUDGET' as RequestTypeEnum,\n PAYOUTVALUE: 'PAYOUT_VALUE' as RequestTypeEnum\n };\n}","import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\nimport { Configuration } from './configuration';\nimport { HttpClient } from '@angular/common/http';\n\n\nimport { AdvertiserControllerService } from './api/advertiserController.service';\nimport { AudienceControllerService } from './api/audienceController.service';\nimport { CampaignControllerService } from './api/campaignController.service';\nimport { InsightsControllerService } from './api/insightsController.service';\nimport { LookupDataControllerService } from './api/lookupDataController.service';\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [\n AdvertiserControllerService,\n AudienceControllerService,\n CampaignControllerService,\n InsightsControllerService,\n LookupDataControllerService ]\n})\nexport class ApiModule {\n public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [ { provide: Configuration, useFactory: configurationFactory } ]\n };\n }\n\n constructor( @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient) {\n if (parentModule) {\n throw new Error('ApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575');\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"revxui-intellibid-client-ts.mjs","sources":["../../encoder.ts","../../variables.ts","../../configuration.ts","../../api/advertiserController.service.ts","../../api/campaignController.service.ts","../../api/insightsController.service.ts","../../api/lookupDataController.service.ts","../../api/api.ts","../../model/adAccountResponse.ts","../../model/campaignChangeLogResponse.ts","../../model/campaignInsightRecord.ts","../../model/campaignRequest.ts","../../model/campaignResponse.ts","../../model/scheduleUpdateRequest.ts","../../api.module.ts","../../revxui-intellibid-client-ts.ts"],"sourcesContent":[" import { HttpUrlEncodingCodec } from '@angular/common/http';\n\n/**\n* CustomHttpUrlEncodingCodec\n* Fix plus sign (+) not encoding, so sent as blank space\n* See: https://github.com/angular/angular/issues/11058#issuecomment-247367318\n*/\nexport class CustomHttpUrlEncodingCodec extends HttpUrlEncodingCodec {\n encodeKey(k: string): string {\n k = super.encodeKey(k);\n return k.replace(/\\+/gi, '%2B');\n }\n encodeValue(v: string): string {\n v = super.encodeValue(v);\n return v.replace(/\\+/gi, '%2B');\n }\n}\n\n","import { InjectionToken } from '@angular/core';\n\nexport const BASE_PATH = new InjectionToken<string>('basePath');\nexport const COLLECTION_FORMATS = {\n 'csv': ',',\n 'tsv': ' ',\n 'ssv': ' ',\n 'pipes': '|'\n}\n","export interface ConfigurationParameters {\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n}\n\nexport class Configuration {\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n\n constructor(configurationParameters: ConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType (contentTypes: string[]): string | undefined {\n if (contentTypes.length == 0) {\n return undefined;\n }\n\n let type = contentTypes.find(x => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length == 0) {\n return undefined;\n }\n\n let type = accepts.find(x => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime != null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { AdAccountResponse } from '../model/adAccountResponse';\nimport { AdvertiserMmpConversionEventResponse } from '../model/advertiserMmpConversionEventResponse';\nimport { AdvertiserResponse } from '../model/advertiserResponse';\nimport { AdvertiserSearchResponse } from '../model/advertiserSearchResponse';\nimport { BlockedEventResponse } from '../model/blockedEventResponse';\nimport { GoalResponse } from '../model/goalResponse';\nimport { PageAdvertiserResponse } from '../model/pageAdvertiserResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class AdvertiserControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * Get all ad accounts for an advertiser\n * Returns all ad accounts across all platforms (Meta, TikTok, Snapchat) for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAdAccounts(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<AdAccountResponse>>;\n public getAdAccounts(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdAccountResponse>>>;\n public getAdAccounts(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdAccountResponse>>>;\n public getAdAccounts(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getAdAccounts.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<AdAccountResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/ad-accounts`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<AdvertiserResponse>;\n public getAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<AdvertiserResponse>>;\n public getAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<AdvertiserResponse>>;\n public getAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<AdvertiserResponse>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param name \n * @param isActive \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageAdvertiserResponse>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageAdvertiserResponse>>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageAdvertiserResponse>>;\n public getAllAdvertisers(name?: string, isActive?: boolean, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (name !== undefined && name !== null) {\n queryParameters = queryParameters.set('name', <any>name);\n }\n if (isActive !== undefined && isActive !== null) {\n queryParameters = queryParameters.set('isActive', <any>isActive);\n }\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageAdvertiserResponse>('get',`${this.basePath}/api/advertiser`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all blocked events for an advertiser\n * Returns list of blocked events with eventName and blockingDays for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getBlockedEventsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<BlockedEventResponse>>;\n public getBlockedEventsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<BlockedEventResponse>>>;\n public getBlockedEventsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<BlockedEventResponse>>>;\n public getBlockedEventsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getBlockedEventsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<BlockedEventResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/blocked-events`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all goals for an advertiser\n * Returns list of goals derived from the advertiser's active postback event mappings\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getGoalsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<GoalResponse>>;\n public getGoalsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<GoalResponse>>>;\n public getGoalsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<GoalResponse>>>;\n public getGoalsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getGoalsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<GoalResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/goals`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get all MMP conversion events for an advertiser\n * Returns list of configured MMP events with id and eventLabel for the specified advertiser\n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'body', reportProgress?: boolean): Observable<Array<AdvertiserMmpConversionEventResponse>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdvertiserMmpConversionEventResponse>>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdvertiserMmpConversionEventResponse>>>;\n public getMMPConversionEventsByAdvertiser(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getMMPConversionEventsByAdvertiser.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<AdvertiserMmpConversionEventResponse>>('get',`${this.basePath}/api/advertiser/${encodeURIComponent(String(id))}/mmp-conversion-events`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param q \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public searchAdvertisers(q: string, observe?: 'body', reportProgress?: boolean): Observable<Array<AdvertiserSearchResponse>>;\n public searchAdvertisers(q: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<AdvertiserSearchResponse>>>;\n public searchAdvertisers(q: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<AdvertiserSearchResponse>>>;\n public searchAdvertisers(q: string, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (q === null || q === undefined) {\n throw new Error('Required parameter q was null or undefined when calling searchAdvertisers.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (q !== undefined && q !== null) {\n queryParameters = queryParameters.set('q', <any>q);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<AdvertiserSearchResponse>>('get',`${this.basePath}/api/advertiser/search`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { CampaignRequest } from '../model/campaignRequest';\nimport { CampaignResponse } from '../model/campaignResponse';\nimport { CampaignSearchResponse } from '../model/campaignSearchResponse';\nimport { PageCampaignChangeLogResponse } from '../model/pageCampaignChangeLogResponse';\nimport { PageCampaignResponse } from '../model/pageCampaignResponse';\nimport { ScheduleUpdateRequest } from '../model/scheduleUpdateRequest';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class CampaignControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param body \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createCampaign(body: CampaignRequest, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public createCampaign(body: CampaignRequest, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public createCampaign(body: CampaignRequest, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public createCampaign(body: CampaignRequest, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling createCampaign.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param advertiserId \n * @param name \n * @param platformCampaignId \n * @param payoutType \n * @param marketFeedbackEnabled \n * @param activeOnPlatform \n * @param sourcePlatform \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageCampaignResponse>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageCampaignResponse>>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageCampaignResponse>>;\n public getAllCampaigns(id?: number, advertiserId?: number, name?: string, platformCampaignId?: string, payoutType?: string, marketFeedbackEnabled?: boolean, activeOnPlatform?: boolean, sourcePlatform?: string, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n\n\n\n\n\n\n\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (id !== undefined && id !== null) {\n queryParameters = queryParameters.set('id', <any>id);\n }\n if (advertiserId !== undefined && advertiserId !== null) {\n queryParameters = queryParameters.set('advertiserId', <any>advertiserId);\n }\n if (name !== undefined && name !== null) {\n queryParameters = queryParameters.set('name', <any>name);\n }\n if (platformCampaignId !== undefined && platformCampaignId !== null) {\n queryParameters = queryParameters.set('platformCampaignId', <any>platformCampaignId);\n }\n if (payoutType !== undefined && payoutType !== null) {\n queryParameters = queryParameters.set('payoutType', <any>payoutType);\n }\n if (marketFeedbackEnabled !== undefined && marketFeedbackEnabled !== null) {\n queryParameters = queryParameters.set('marketFeedbackEnabled', <any>marketFeedbackEnabled);\n }\n if (activeOnPlatform !== undefined && activeOnPlatform !== null) {\n queryParameters = queryParameters.set('activeOnPlatform', <any>activeOnPlatform);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageCampaignResponse>('get',`${this.basePath}/api/campaign`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaign(id: number, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public getCampaign(id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public getCampaign(id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public getCampaign(id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getCampaign.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignResponse>('get',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param page Zero-based page index (0..N)\n * @param size The size of the page to be returned\n * @param sort Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'body', reportProgress?: boolean): Observable<PageCampaignChangeLogResponse>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<PageCampaignChangeLogResponse>>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<PageCampaignChangeLogResponse>>;\n public getCampaignLogs(id: number, page?: number, size?: number, sort?: Array<string>, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling getCampaignLogs.');\n }\n\n\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (page !== undefined && page !== null) {\n queryParameters = queryParameters.set('page', <any>page);\n }\n if (size !== undefined && size !== null) {\n queryParameters = queryParameters.set('size', <any>size);\n }\n if (sort) {\n sort.forEach((element) => {\n queryParameters = queryParameters.append('sort', <any>element);\n })\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<PageCampaignChangeLogResponse>('get',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/log`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param body \n * @param id \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public scheduleUpdate(body: ScheduleUpdateRequest, id: number, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (body === null || body === undefined) {\n throw new Error('Required parameter body was null or undefined when calling scheduleUpdate.');\n }\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling scheduleUpdate.');\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected != undefined) {\n headers = headers.set('Content-Type', httpContentTypeSelected);\n }\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/schedule-update`,\n {\n body: body,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param q \n * @param sourcePlatform \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'body', reportProgress?: boolean): Observable<Array<CampaignSearchResponse>>;\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<CampaignSearchResponse>>>;\n public searchCampaign(q: string, sourcePlatform: string, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<CampaignSearchResponse>>>;\n public searchCampaign(q: string, sourcePlatform: string, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (q === null || q === undefined) {\n throw new Error('Required parameter q was null or undefined when calling searchCampaign.');\n }\n\n if (sourcePlatform === null || sourcePlatform === undefined) {\n throw new Error('Required parameter sourcePlatform was null or undefined when calling searchCampaign.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (q !== undefined && q !== null) {\n queryParameters = queryParameters.set('q', <any>q);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<CampaignSearchResponse>>('get',`${this.basePath}/api/campaign/search`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param id \n * @param active \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public setStatus(id: number, active: boolean, observe?: 'body', reportProgress?: boolean): Observable<CampaignResponse>;\n public setStatus(id: number, active: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignResponse>>;\n public setStatus(id: number, active: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignResponse>>;\n public setStatus(id: number, active: boolean, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (id === null || id === undefined) {\n throw new Error('Required parameter id was null or undefined when calling setStatus.');\n }\n\n if (active === null || active === undefined) {\n throw new Error('Required parameter active was null or undefined when calling setStatus.');\n }\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (active !== undefined && active !== null) {\n queryParameters = queryParameters.set('active', <any>active);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignResponse>('post',`${this.basePath}/api/campaign/${encodeURIComponent(String(id))}/status`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { CampaignInsightsResponse } from '../model/campaignInsightsResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class InsightsControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param startDate \n * @param endDate \n * @param sourcePlatform \n * @param interval \n * @param requireMmpReport \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'body', reportProgress?: boolean): Observable<CampaignInsightsResponse>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<CampaignInsightsResponse>>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<CampaignInsightsResponse>>;\n public getCampaignInsights(startDate: string, endDate: string, sourcePlatform: string, interval: string, requireMmpReport?: boolean, observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n if (startDate === null || startDate === undefined) {\n throw new Error('Required parameter startDate was null or undefined when calling getCampaignInsights.');\n }\n\n if (endDate === null || endDate === undefined) {\n throw new Error('Required parameter endDate was null or undefined when calling getCampaignInsights.');\n }\n\n if (sourcePlatform === null || sourcePlatform === undefined) {\n throw new Error('Required parameter sourcePlatform was null or undefined when calling getCampaignInsights.');\n }\n\n if (interval === null || interval === undefined) {\n throw new Error('Required parameter interval was null or undefined when calling getCampaignInsights.');\n }\n\n\n let queryParameters = new HttpParams({encoder: new CustomHttpUrlEncodingCodec()});\n if (startDate !== undefined && startDate !== null) {\n queryParameters = queryParameters.set('startDate', <any>startDate);\n }\n if (endDate !== undefined && endDate !== null) {\n queryParameters = queryParameters.set('endDate', <any>endDate);\n }\n if (sourcePlatform !== undefined && sourcePlatform !== null) {\n queryParameters = queryParameters.set('sourcePlatform', <any>sourcePlatform);\n }\n if (interval !== undefined && interval !== null) {\n queryParameters = queryParameters.set('interval', <any>interval);\n }\n if (requireMmpReport !== undefined && requireMmpReport !== null) {\n queryParameters = queryParameters.set('requireMmpReport', <any>requireMmpReport);\n }\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<CampaignInsightsResponse>('get',`${this.basePath}/api/campaign-insights`,\n {\n params: queryParameters,\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n *//* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent } from '@angular/common/http';\nimport { CustomHttpUrlEncodingCodec } from '../encoder';\n\nimport { Observable } from 'rxjs';\n\nimport { BusinessZoneResponse } from '../model/businessZoneResponse';\nimport { CountryResponse } from '../model/countryResponse';\nimport { OSResponse } from '../model/oSResponse';\nimport { PlatformResponse } from '../model/platformResponse';\n\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\n\n\n@Injectable()\nexport class LookupDataControllerService {\n\n protected basePath = 'http://dev1-intellibid-svc.revx.io';\n public defaultHeaders = new HttpHeaders();\n public configuration = new Configuration();\n\n constructor(protected httpClient: HttpClient, @Optional()@Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\n if (basePath) {\n this.basePath = basePath;\n }\n if (configuration) {\n this.configuration = configuration;\n this.basePath = basePath || configuration.basePath || this.basePath;\n }\n }\n\n /**\n * @param consumes string[] mime-types\n * @return true: consumes contains 'multipart/form-data', false: otherwise\n */\n private canConsumeForm(consumes: string[]): boolean {\n const form = 'multipart/form-data';\n for (const consume of consumes) {\n if (form === consume) {\n return true;\n }\n }\n return false;\n }\n\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllActiveOS(observe?: 'body', reportProgress?: boolean): Observable<Array<OSResponse>>;\n public getAllActiveOS(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<OSResponse>>>;\n public getAllActiveOS(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<OSResponse>>>;\n public getAllActiveOS(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<OSResponse>>('get',`${this.basePath}/api/lookups/os`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllActivePlatforms(observe?: 'body', reportProgress?: boolean): Observable<Array<PlatformResponse>>;\n public getAllActivePlatforms(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<PlatformResponse>>>;\n public getAllActivePlatforms(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<PlatformResponse>>>;\n public getAllActivePlatforms(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<PlatformResponse>>('get',`${this.basePath}/api/lookups/platforms`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllBusinessZones(observe?: 'body', reportProgress?: boolean): Observable<Array<BusinessZoneResponse>>;\n public getAllBusinessZones(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<BusinessZoneResponse>>>;\n public getAllBusinessZones(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<BusinessZoneResponse>>>;\n public getAllBusinessZones(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<BusinessZoneResponse>>('get',`${this.basePath}/api/lookups/business-zones`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * \n * \n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getAllCountries(observe?: 'body', reportProgress?: boolean): Observable<Array<CountryResponse>>;\n public getAllCountries(observe?: 'response', reportProgress?: boolean): Observable<HttpResponse<Array<CountryResponse>>>;\n public getAllCountries(observe?: 'events', reportProgress?: boolean): Observable<HttpEvent<Array<CountryResponse>>>;\n public getAllCountries(observe: any = 'body', reportProgress: boolean = false ): Observable<any> {\n\n let headers = this.defaultHeaders;\n\n // to determine the Accept header\n let httpHeaderAccepts: string[] = [\n '*/*'\n ];\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\n if (httpHeaderAcceptSelected != undefined) {\n headers = headers.set('Accept', httpHeaderAcceptSelected);\n }\n\n // to determine the Content-Type header\n const consumes: string[] = [\n ];\n\n return this.httpClient.request<Array<CountryResponse>>('get',`${this.basePath}/api/lookups/countries`,\n {\n withCredentials: this.configuration.withCredentials,\n headers: headers,\n observe: observe,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","export * from './advertiserController.service';\nimport { AdvertiserControllerService } from './advertiserController.service';\nexport * from './campaignController.service';\nimport { CampaignControllerService } from './campaignController.service';\nexport * from './insightsController.service';\nimport { InsightsControllerService } from './insightsController.service';\nexport * from './lookupDataController.service';\nimport { LookupDataControllerService } from './lookupDataController.service';\nexport const APIS = [AdvertiserControllerService, CampaignControllerService, InsightsControllerService, LookupDataControllerService];\n","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface AdAccountResponse { \n accountId?: string;\n accountName?: string;\n sourcePlatform?: AdAccountResponse.SourcePlatformEnum;\n}\nexport namespace AdAccountResponse {\n export type SourcePlatformEnum = 'META' | 'TIKTOK' | 'SNAPCHAT';\n export const SourcePlatformEnum = {\n META: 'META' as SourcePlatformEnum,\n TIKTOK: 'TIKTOK' as SourcePlatformEnum,\n SNAPCHAT: 'SNAPCHAT' as SourcePlatformEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignChangeLogResponse { \n id?: number;\n campaignId?: number;\n entityChanged?: CampaignChangeLogResponse.EntityChangedEnum;\n status?: CampaignChangeLogResponse.StatusEnum;\n oldValue?: string;\n newValue?: string;\n createdAt?: Date;\n createdBy?: string;\n}\nexport namespace CampaignChangeLogResponse {\n export type EntityChangedEnum = 'STATUS' | 'BUDGET' | 'PAYOUT_VALUE';\n export const EntityChangedEnum = {\n STATUS: 'STATUS' as EntityChangedEnum,\n BUDGET: 'BUDGET' as EntityChangedEnum,\n PAYOUTVALUE: 'PAYOUT_VALUE' as EntityChangedEnum\n };\n export type StatusEnum = 'SUCCESS' | 'FAILED';\n export const StatusEnum = {\n SUCCESS: 'SUCCESS' as StatusEnum,\n FAILED: 'FAILED' as StatusEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignInsightRecord { \n campaignActive?: boolean;\n campaignName?: string;\n advertiserName?: string;\n attributionSettings?: string;\n payoutType?: CampaignInsightRecord.PayoutTypeEnum;\n payoutValue?: number;\n dailyMediaBudget?: number;\n dailyAdvertiserBudget?: number;\n impressions?: number;\n clicks?: number;\n conversions?: number;\n installs?: number;\n mediaSpend?: number;\n advertiserSpend?: number;\n cumulativeMargin?: number;\n netMarginPercent?: number;\n netPayoutMargin?: number;\n cpm?: number;\n ctr?: number;\n cpc?: number;\n cpr?: number;\n cpi?: number;\n ecpm?: number;\n ecpc?: number;\n ecpr?: number;\n ecpi?: number;\n mmpConversions?: number;\n mmpInstalls?: number;\n mmpTotalRevenue?: number;\n mmpCpr?: number;\n mmpEcpr?: number;\n mmpCpi?: number;\n mmpEcpi?: number;\n mmpRoas?: number;\n mmpERoas?: number;\n scheduledUpdates?: string;\n}\nexport namespace CampaignInsightRecord {\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface CampaignRequest { \n advertiserId: number;\n sourcePlatform: CampaignRequest.SourcePlatformEnum;\n adAccountId: string;\n platformCampaignId: string;\n payoutType: CampaignRequest.PayoutTypeEnum;\n payoutValue: number;\n startDate: string;\n goal?: CampaignRequest.GoalEnum;\n goalValue?: number;\n marketFeedbackEnabled?: boolean;\n activeOnPlatform?: boolean;\n osId: number;\n mmpConversionEventId: number;\n mmpAttributionSetting: CampaignRequest.MmpAttributionSettingEnum;\n payoutValueValidForType?: boolean;\n goalValueConsistent?: boolean;\n}\nexport namespace CampaignRequest {\n export type SourcePlatformEnum = 'META' | 'TIKTOK' | 'SNAPCHAT';\n export const SourcePlatformEnum = {\n META: 'META' as SourcePlatformEnum,\n TIKTOK: 'TIKTOK' as SourcePlatformEnum,\n SNAPCHAT: 'SNAPCHAT' as SourcePlatformEnum\n };\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n export type GoalEnum = 'COST_PER_RESULT' | 'ROAS';\n export const GoalEnum = {\n COSTPERRESULT: 'COST_PER_RESULT' as GoalEnum,\n ROAS: 'ROAS' as GoalEnum\n };\n export type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';\n export const MmpAttributionSettingEnum = {\n CTA: 'CTA' as MmpAttributionSettingEnum,\n CTAANDVTA: 'CTA_AND_VTA' as MmpAttributionSettingEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\nimport { ScheduledUpdates } from './scheduledUpdates';\n\nexport interface CampaignResponse { \n id?: number;\n name?: string;\n advertiserId?: number;\n sourcePlatform?: CampaignResponse.SourcePlatformEnum;\n platformCampaignId?: string;\n adAccountId?: string;\n marketFeedbackEnabled?: boolean;\n activeOnPlatform?: boolean;\n updating?: boolean;\n payoutType?: CampaignResponse.PayoutTypeEnum;\n payoutValue?: number;\n startDate?: string;\n goal?: CampaignResponse.GoalEnum;\n goalValue?: number;\n dailyAdvertiserBudget?: number;\n osId?: number;\n osName?: string;\n mmpConversionEventId?: number;\n mmpAttributionSetting?: CampaignResponse.MmpAttributionSettingEnum;\n lastErrorCode?: string;\n lastErrorMessage?: string;\n lastSyncAt?: Date;\n createdAt?: Date;\n lastUpdatedAt?: Date;\n createdBy?: string;\n lastUpdatedBy?: string;\n platformCurrency?: string;\n licenseeCurrency?: string;\n scheduledUpdates?: ScheduledUpdates;\n}\nexport namespace CampaignResponse {\n export type SourcePlatformEnum = 'META' | 'TIKTOK' | 'SNAPCHAT';\n export const SourcePlatformEnum = {\n META: 'META' as SourcePlatformEnum,\n TIKTOK: 'TIKTOK' as SourcePlatformEnum,\n SNAPCHAT: 'SNAPCHAT' as SourcePlatformEnum\n };\n export type PayoutTypeEnum = 'DYNAMIC_MARGIN' | 'PAYOUT_PER_CONVERSION';\n export const PayoutTypeEnum = {\n DYNAMICMARGIN: 'DYNAMIC_MARGIN' as PayoutTypeEnum,\n PAYOUTPERCONVERSION: 'PAYOUT_PER_CONVERSION' as PayoutTypeEnum\n };\n export type GoalEnum = 'COST_PER_RESULT' | 'ROAS';\n export const GoalEnum = {\n COSTPERRESULT: 'COST_PER_RESULT' as GoalEnum,\n ROAS: 'ROAS' as GoalEnum\n };\n export type MmpAttributionSettingEnum = 'CTA' | 'CTA_AND_VTA';\n export const MmpAttributionSettingEnum = {\n CTA: 'CTA' as MmpAttributionSettingEnum,\n CTAANDVTA: 'CTA_AND_VTA' as MmpAttributionSettingEnum\n };\n}","/**\n * Intellibid API\n * API documentation for the Intellibid platform\n *\n * OpenAPI spec version: 1.0\n * \n *\n * NOTE: This class is auto generated by the swagger code generator program.\n * https://github.com/swagger-api/swagger-codegen.git\n * Do not edit the class manually.\n */\n\nexport interface ScheduleUpdateRequest { \n requestType: ScheduleUpdateRequest.RequestTypeEnum;\n requestValue: number;\n}\nexport namespace ScheduleUpdateRequest {\n export type RequestTypeEnum = 'BUDGET' | 'PAYOUT_VALUE';\n export const RequestTypeEnum = {\n BUDGET: 'BUDGET' as RequestTypeEnum,\n PAYOUTVALUE: 'PAYOUT_VALUE' as RequestTypeEnum\n };\n}","import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\nimport { Configuration } from './configuration';\nimport { HttpClient } from '@angular/common/http';\n\n\nimport { AdvertiserControllerService } from './api/advertiserController.service';\nimport { CampaignControllerService } from './api/campaignController.service';\nimport { InsightsControllerService } from './api/insightsController.service';\nimport { LookupDataControllerService } from './api/lookupDataController.service';\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [\n AdvertiserControllerService,\n CampaignControllerService,\n InsightsControllerService,\n LookupDataControllerService ]\n})\nexport class ApiModule {\n public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [ { provide: Configuration, useFactory: configurationFactory } ]\n };\n }\n\n constructor( @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient) {\n if (parentModule) {\n throw new Error('ApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575');\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}
|