@revxui/api-clients-ts
Version:
swagger client for @revxui/api-clients-ts
884 lines • 181 kB
JavaScript
/**
* Api Documentation
* Api Documentation
*
* OpenAPI spec version: 1.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
/* tslint:disable:no-unused-variable member-ordering */
import { Inject, Injectable, Optional } from '@angular/core';
import { HttpHeaders, HttpParams } from '@angular/common/http';
import { CustomHttpUrlEncodingCodec } from '../encoder';
import { BASE_PATH } from '../variables';
import { Configuration } from '../configuration';
import * as i0 from "@angular/core";
import * as i1 from "@angular/common/http";
import * as i2 from "../configuration";
export class AudienceControllerService {
constructor(httpClient, basePath, configuration) {
this.httpClient = httpClient;
this.basePath = 'https://apiv2stage3.atomex.net';
this.defaultHeaders = new HttpHeaders();
this.configuration = new Configuration();
if (basePath) {
this.basePath = basePath;
}
if (configuration) {
this.configuration = configuration;
this.basePath = basePath || configuration.basePath || this.basePath;
}
}
/**
* @param consumes string[] mime-types
* @return true: consumes contains 'multipart/form-data', false: otherwise
*/
canConsumeForm(consumes) {
const form = 'multipart/form-data';
for (const consume of consumes) {
if (form === consume) {
return true;
}
}
return false;
}
activateAudienceUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling activateAudienceUsingPOST.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (id !== undefined && id !== null) {
queryParameters = queryParameters.set('id', id);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
return this.httpClient.post(`${this.basePath}/v2/api/audience/activate`, null, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
activateBackfillRuleUsingGET(id, queryID, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling activateBackfillRuleUsingGET.');
}
if (queryID === null || queryID === undefined) {
throw new Error('Required parameter queryID was null or undefined when calling activateBackfillRuleUsingGET.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/${encodeURIComponent(String(id))}/${encodeURIComponent(String(queryID))}`, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
addBackfillRuleUsingPOST(request, reqId, token, observe = 'body', reportProgress = false) {
if (request === null || request === undefined) {
throw new Error('Required parameter request was null or undefined when calling addBackfillRuleUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/addbackfillrule`, request, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
checkConnectionUsingPOST(config, reqId, token, observe = 'body', reportProgress = false) {
if (config === null || config === undefined) {
throw new Error('Required parameter config was null or undefined when calling checkConnectionUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/check_connection`, config, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
createAudienceUsingPOST(audience, reqId, token, observe = 'body', reportProgress = false) {
if (audience === null || audience === undefined) {
throw new Error('Required parameter audience was null or undefined when calling createAudienceUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience`, audience, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
deactivateAudienceUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling deactivateAudienceUsingPOST.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (id !== undefined && id !== null) {
queryParameters = queryParameters.set('id', id);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
return this.httpClient.post(`${this.basePath}/v2/api/audience/deactivate`, null, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getAccessUsingGET(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling getAccessUsingGET.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/access/${encodeURIComponent(String(id))}`, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getActiveTemplatesUsingPOST(id, request, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling getActiveTemplatesUsingPOST.');
}
if (request === null || request === undefined) {
throw new Error('Required parameter request was null or undefined when calling getActiveTemplatesUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/activetemplates/${encodeURIComponent(String(id))}`, request, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getAllAudienceUsingPOST(advertiser_id, refresh, reqId, search, token, observe = 'body', reportProgress = false) {
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (advertiser_id !== undefined && advertiser_id !== null) {
queryParameters = queryParameters.set('advertiser_id', advertiser_id);
}
if (refresh !== undefined && refresh !== null) {
queryParameters = queryParameters.set('refresh', refresh);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/all`, search, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getAllDmpAudienceUsingGET(advertiser_id, limit, reqId, start, stype, token, observe = 'body', reportProgress = false) {
if (advertiser_id === null || advertiser_id === undefined) {
throw new Error('Required parameter advertiser_id was null or undefined when calling getAllDmpAudienceUsingGET.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (advertiser_id !== undefined && advertiser_id !== null) {
queryParameters = queryParameters.set('advertiser_id', advertiser_id);
}
if (limit !== undefined && limit !== null) {
queryParameters = queryParameters.set('limit', limit);
}
if (start !== undefined && start !== null) {
queryParameters = queryParameters.set('start', start);
}
if (stype !== undefined && stype !== null) {
queryParameters = queryParameters.set('stype', stype);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/dmp`, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getAnalysisAudienceCountUsingPOST(totalUniqueUserRequest, reqId, token, observe = 'body', reportProgress = false) {
if (totalUniqueUserRequest === null || totalUniqueUserRequest === undefined) {
throw new Error('Required parameter totalUniqueUserRequest was null or undefined when calling getAnalysisAudienceCountUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/audienceanalysis`, totalUniqueUserRequest, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getAudienceStrategyMappingUsingGET(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling getAudienceStrategyMappingUsingGET.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/${encodeURIComponent(String(id))}/strategies`, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getByIdUsingGET1(id, refresh, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling getByIdUsingGET1.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (refresh !== undefined && refresh !== null) {
queryParameters = queryParameters.set('refresh', refresh);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/${encodeURIComponent(String(id))}`, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getChartDataUsingPOST(audienceType, dashboardRequest, id, metric, refresh, reqId, token, observe = 'body', reportProgress = false) {
if (audienceType === null || audienceType === undefined) {
throw new Error('Required parameter audienceType was null or undefined when calling getChartDataUsingPOST.');
}
if (dashboardRequest === null || dashboardRequest === undefined) {
throw new Error('Required parameter dashboardRequest was null or undefined when calling getChartDataUsingPOST.');
}
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling getChartDataUsingPOST.');
}
if (metric === null || metric === undefined) {
throw new Error('Required parameter metric was null or undefined when calling getChartDataUsingPOST.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (audienceType !== undefined && audienceType !== null) {
queryParameters = queryParameters.set('audienceType', audienceType);
}
if (id !== undefined && id !== null) {
queryParameters = queryParameters.set('id', id);
}
if (metric !== undefined && metric !== null) {
queryParameters = queryParameters.set('metric', metric);
}
if (refresh !== undefined && refresh !== null) {
queryParameters = queryParameters.set('refresh', refresh);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/chart`, dashboardRequest, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getCombinedAnalysisAudienceCountUsingPOST(audienceAnalysisRequest, reqId, token, observe = 'body', reportProgress = false) {
if (audienceAnalysisRequest === null || audienceAnalysisRequest === undefined) {
throw new Error('Required parameter audienceAnalysisRequest was null or undefined when calling getCombinedAnalysisAudienceCountUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/audienceanalysis/combination`, audienceAnalysisRequest, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getEligibleUsersCountUsingPOST(eligibleUsersRequest, reqId, token, observe = 'body', reportProgress = false) {
if (eligibleUsersRequest === null || eligibleUsersRequest === undefined) {
throw new Error('Required parameter eligibleUsersRequest was null or undefined when calling getEligibleUsersCountUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/eligibleusers`, eligibleUsersRequest, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getMetaRulesUsingGET(reqId, token, observe = 'body', reportProgress = false) {
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/rules`, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
getSyncedDmpAudienceUsingGET(advertiser_id, reqId, token, observe = 'body', reportProgress = false) {
if (advertiser_id === null || advertiser_id === undefined) {
throw new Error('Required parameter advertiser_id was null or undefined when calling getSyncedDmpAudienceUsingGET.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (advertiser_id !== undefined && advertiser_id !== null) {
queryParameters = queryParameters.set('advertiser_id', advertiser_id);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/dmp/synced`, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
refreshLookalikeAudienceUsingPOST(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling refreshLookalikeAudienceUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
return this.httpClient.post(`${this.basePath}/v2/api/audience/lookalike/refresh/${encodeURIComponent(String(id))}`, null, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
retrySchedulerForAdvertisersUsingGET(advIds, reqId, token, observe = 'body', reportProgress = false) {
if (advIds === null || advIds === undefined) {
throw new Error('Required parameter advIds was null or undefined when calling retrySchedulerForAdvertisersUsingGET.');
}
let queryParameters = new HttpParams({ encoder: new CustomHttpUrlEncodingCodec() });
if (advIds !== undefined && advIds !== null) {
queryParameters = queryParameters.set('advIds', advIds);
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/schedulerRetry`, {
params: queryParameters,
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
syncAudienceUsingPOST(platformAudienceDTO, reqId, token, observe = 'body', reportProgress = false) {
if (platformAudienceDTO === null || platformAudienceDTO === undefined) {
throw new Error('Required parameter platformAudienceDTO was null or undefined when calling syncAudienceUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/sync`, platformAudienceDTO, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
syncRemoteAudienceUsingGET(id, reqId, token, observe = 'body', reportProgress = false) {
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling syncRemoteAudienceUsingGET.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'*/*'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [];
return this.httpClient.get(`${this.basePath}/v2/api/audience/${encodeURIComponent(String(id))}/sync_remote`, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
updateAudienceUsingPOST(audience, id, reqId, token, observe = 'body', reportProgress = false) {
if (audience === null || audience === undefined) {
throw new Error('Required parameter audience was null or undefined when calling updateAudienceUsingPOST.');
}
if (id === null || id === undefined) {
throw new Error('Required parameter id was null or undefined when calling updateAudienceUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/${encodeURIComponent(String(id))}`, audience, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
validateBackfillRuleUsingPOST(query, reqId, token, observe = 'body', reportProgress = false) {
if (query === null || query === undefined) {
throw new Error('Required parameter query was null or undefined when calling validateBackfillRuleUsingPOST.');
}
let headers = this.defaultHeaders;
if (reqId !== undefined && reqId !== null) {
headers = headers.set('reqId', String(reqId));
}
if (token !== undefined && token !== null) {
headers = headers.set('token', String(token));
}
// to determine the Accept header
let httpHeaderAccepts = [
'application/json'
];
const httpHeaderAcceptSelected = this.configuration.selectHeaderAccept(httpHeaderAccepts);
if (httpHeaderAcceptSelected != undefined) {
headers = headers.set('Accept', httpHeaderAcceptSelected);
}
// to determine the Content-Type header
const consumes = [
'application/json'
];
const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
if (httpContentTypeSelected != undefined) {
headers = headers.set('Content-Type', httpContentTypeSelected);
}
return this.httpClient.post(`${this.basePath}/v2/api/audience/validatebackfillrule`, query, {
withCredentials: this.configuration.withCredentials,
headers: headers,
observe: observe,
reportProgress: reportProgress
});
}
}
AudienceControllerService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: i2.Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
AudienceControllerService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService });
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: AudienceControllerService, decorators: [{
type: Injectable
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: undefined, decorators: [{
type: Optional
}, {
type: Inject,
args: [BASE_PATH]
}] }, { type: i2.Configuration, decorators: [{
type: Optional
}] }]; } });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXVkaWVuY2VDb250cm9sbGVyLnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9hcGkvYXVkaWVuY2VDb250cm9sbGVyLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7Ozs7Ozs7R0FVRztBQUNILHVEQUF1RDtBQUV2RCxPQUFPLEVBQUUsTUFBTSxFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsTUFBMkIsZUFBZSxDQUFDO0FBQ2xGLE9BQU8sRUFBYyxXQUFXLEVBQUUsVUFBVSxFQUNWLE1BQWdDLHNCQUFzQixDQUFDO0FBQ3pGLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUE2QixZQUFZLENBQUM7QUErQi9FLE9BQU8sRUFBRSxTQUFTLEVBQXNCLE1BQTBCLGNBQWMsQ0FBQztBQUNqRixPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQTBDLGtCQUFrQixDQUFDOzs7O0FBSXJGLE1BQU0sT0FBTyx5QkFBeUI7SUFNbEMsWUFBc0IsVUFBc0IsRUFBZ0MsUUFBZ0IsRUFBYyxhQUE0QjtRQUFoSCxlQUFVLEdBQVYsVUFBVSxDQUFZO1FBSmxDLGFBQVEsR0FBRyxnQ0FBZ0MsQ0FBQztRQUMvQyxtQkFBYyxHQUFHLElBQUksV0FBVyxFQUFFLENBQUM7UUFDbkMsa0JBQWEsR0FBRyxJQUFJLGFBQWEsRUFBRSxDQUFDO1FBR3ZDLElBQUksUUFBUSxFQUFFO1lBQ1YsSUFBSSxDQUFDLFFBQVEsR0FBRyxRQUFRLENBQUM7U0FDNUI7UUFDRCxJQUFJLGFBQWEsRUFBRTtZQUNmLElBQUksQ0FBQyxhQUFhLEdBQUcsYUFBYSxDQUFDO1lBQ25DLElBQUksQ0FBQyxRQUFRLEdBQUcsUUFBUSxJQUFJLGFBQWEsQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQztTQUN2RTtJQUNMLENBQUM7SUFFRDs7O09BR0c7SUFDSyxjQUFjLENBQUMsUUFBa0I7UUFDckMsTUFBTSxJQUFJLEdBQUcscUJBQXFCLENBQUM7UUFD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