{ "version": 3, "sources": ["libs/angular/ng-auth/src/lib/deprecated/admin-client-auth.guard.ts", "libs/angular/api/ng-leads-api/src/generated/api-configuration.ts", "libs/angular/api/ng-leads-api/src/generated/base-service.ts", "libs/angular/api/ng-leads-api/src/generated/request-builder.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/create-buy-order.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/get-leads-csv.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/get-leads-map.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/get-marketplace-metadata.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/get-purchase.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/get-purchases.ts", "libs/angular/api/ng-leads-api/src/generated/fn/marketplace/search-marketplace.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-marketplace-api.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/add-funds.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/dissociate-lead.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/get-all-campaigns.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/get-leads-for-campaign.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/get-pending-replacements.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/get-replacements.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/rerun-side-effects.ts", "libs/angular/api/ng-leads-api/src/generated/fn/admin/set-replacement-status.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-admin-api.ts", "libs/angular/api/ng-leads-api/src/generated/fn/manage-funds/add-funds.ts", "libs/angular/api/ng-leads-api/src/generated/fn/manage-funds/create-payment-intent.ts", "libs/angular/api/ng-leads-api/src/generated/fn/manage-funds/list-transactions.ts", "libs/angular/api/ng-leads-api/src/generated/fn/manage-funds/retrieve-balance.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-manage-funds-api.ts", "libs/angular/api/ng-leads-api/src/generated/fn/leads/get-lead-dispositions.ts", "libs/angular/api/ng-leads-api/src/generated/fn/leads/lead-types.ts", "libs/angular/api/ng-leads-api/src/generated/fn/leads/request-replacement.ts", "libs/angular/api/ng-leads-api/src/generated/fn/leads/retrieve.ts", "libs/angular/api/ng-leads-api/src/generated/fn/leads/set-lead-disposition.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-leads-api.ts", "libs/angular/api/ng-leads-api/src/generated/fn/ping-post/create-ping.ts", "libs/angular/api/ng-leads-api/src/generated/fn/ping-post/create-post.ts", "libs/angular/api/ng-leads-api/src/generated/fn/ping-post/dnc-request.ts", "libs/angular/api/ng-leads-api/src/generated/fn/ping-post/simple-post-request.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-ping-post-api.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/create.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/export-campaign-leads-csv.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/list.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/passthrough-create.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/retrieve-campaign-leads.ts", "libs/angular/api/ng-leads-api/src/generated/fn/campaigns/retrieve-campaign-status.ts", "libs/angular/api/ng-leads-api/src/generated/services/itk-lead-campaigns-api.ts", "libs/angular/api/ng-leads-api/src/generated/generated-api.module.ts", "libs/angular/ng-auth/src/lib/deprecated/client-auth.interceptor.ts", "libs/angular/ng-auth/src/lib/deprecated/ng-auth.module.ts", "libs/angular/api/ng-leads-api/src/lib/ng-leads-api.module.ts"], "sourcesContent": ["import { Injectable } from '@angular/core';\nimport { UrlTree } from '@angular/router';\nimport { filter, map, merge, Observable, tap } from 'rxjs';\nimport { ClientAuthGuardDeprecated } from './client-auth.guard';\nimport { JwtTokenData, JwtTokenError } from './token-management.service';\n\n/**\n * @deprecated\n */\n@Injectable()\nexport class AdminClientAuthGuardDeprecated extends ClientAuthGuardDeprecated {\n override canActivate():\n | boolean\n | UrlTree\n | Observable\n | Promise {\n const tv = this.tokenManagement.refreshTokenIfNeeded();\n\n return merge(\n tv.pipe(\n filter((x): x is JwtTokenError => 'error' in x),\n map(() => false),\n ),\n tv.pipe(\n filter((x): x is JwtTokenData => !('error' in x)),\n map((claims) => {\n return (claims.roles ?? []).includes('admin');\n }),\n ),\n ).pipe(\n tap((x) => {\n if (!x) this.router.navigate(['/404/']);\n }),\n );\n }\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { Injectable } from '@angular/core';\n\n/**\n * Global configuration\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class ApiConfiguration {\n rootUrl: string = '';\n}\n\n/**\n * Parameters for `GeneratedApiModule.forRoot()`\n */\nexport interface ApiConfigurationParams {\n rootUrl?: string;\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { ApiConfiguration } from './api-configuration';\n\n/**\n * Base class for services\n */\n@Injectable()\nexport class BaseService {\n constructor(\n protected config: ApiConfiguration,\n protected http: HttpClient\n ) {\n }\n\n private _rootUrl?: string;\n\n /**\n * Returns the root url for all operations in this service. If not set directly in this\n * service, will fallback to `ApiConfiguration.rootUrl`.\n */\n get rootUrl(): string {\n return this._rootUrl || this.config.rootUrl;\n }\n\n /**\n * Sets the root URL for API operations in this service.\n */\n set rootUrl(rootUrl: string) {\n this._rootUrl = rootUrl;\n }\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpRequest, HttpParameterCodec, HttpParams, HttpHeaders, HttpContext } from '@angular/common/http';\n\n/**\n * Custom parameter codec to correctly handle the plus sign in parameter\n * values. See https://github.com/angular/angular/issues/18261\n */\nclass ParameterCodec implements HttpParameterCodec {\n encodeKey(key: string): string {\n return encodeURIComponent(key);\n }\n\n encodeValue(value: string): string {\n return encodeURIComponent(value);\n }\n\n decodeKey(key: string): string {\n return decodeURIComponent(key);\n }\n\n decodeValue(value: string): string {\n return decodeURIComponent(value);\n }\n}\nconst ParameterCodecInstance = new ParameterCodec();\n\n/**\n * Defines the options for appending a parameter\n */\ninterface ParameterOptions {\n style?: string;\n explode?: boolean;\n}\n\n/**\n * Base class for a parameter\n */\nabstract class Parameter {\n constructor(public name: string, public value: any, public options: ParameterOptions, defaultStyle: string, defaultExplode: boolean) {\n this.options = options || {};\n if (this.options.style === null || this.options.style === undefined) {\n this.options.style = defaultStyle;\n }\n if (this.options.explode === null || this.options.explode === undefined) {\n this.options.explode = defaultExplode;\n }\n }\n\n serializeValue(value: any, separator = ','): string {\n if (value === null || value === undefined) {\n return '';\n } else if (value instanceof Array) {\n return value.map(v => this.serializeValue(v).split(separator).join(encodeURIComponent(separator))).join(separator);\n } else if (typeof value === 'object') {\n const array: string[] = [];\n for (const key of Object.keys(value)) {\n let propVal = value[key];\n if (propVal !== null && propVal !== undefined) {\n propVal = this.serializeValue(propVal).split(separator).join(encodeURIComponent(separator));\n if (this.options.explode) {\n array.push(`${key}=${propVal}`);\n } else {\n array.push(key);\n array.push(propVal);\n }\n }\n }\n return array.join(separator);\n } else {\n return String(value);\n }\n }\n}\n\n/**\n * A parameter in the operation path\n */\nclass PathParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'simple', false);\n }\n\n append(path: string): string {\n let value = this.value;\n if (value === null || value === undefined) {\n value = '';\n }\n let prefix = this.options.style === 'label' ? '.' : '';\n let separator = this.options.explode ? prefix === '' ? ',' : prefix : ',';\n let alreadySerialized = false;\n if (this.options.style === 'matrix') {\n // The parameter name is just used as prefix, except in some cases...\n prefix = `;${this.name}=`;\n if (this.options.explode && typeof value === 'object') {\n prefix = ';';\n if (value instanceof Array) {\n // For arrays we have to repeat the name for each element\n value = value.map(v => `${this.name}=${this.serializeValue(v, ';')}`);\n value = value.join(';');\n alreadySerialized = true;\n } else {\n // For objects we have to put each the key / value pairs\n value = this.serializeValue(value, ';');\n alreadySerialized = true\n }\n }\n }\n value = prefix + (alreadySerialized ? value : this.serializeValue(value, separator));\n // Replace both the plain variable and the corresponding variant taking in the prefix and explode into account\n path = path.replace(`{${this.name}}`, value);\n path = path.replace(`{${prefix}${this.name}${this.options.explode ? '*' : ''}}`, value);\n return path;\n }\n\n // @ts-ignore\n serializeValue(value: any, separator = ','): string {\n var result = typeof value === 'string' ? encodeURIComponent(value) : super.serializeValue(value, separator);\n result = result.replace(/%3D/g, '=');\n result = result.replace(/%3B/g, ';');\n result = result.replace(/%2C/g, ',');\n return result;\n }\n}\n\n/**\n * A parameter in the query\n */\nclass QueryParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'form', true);\n }\n\n append(params: HttpParams): HttpParams {\n if (this.value instanceof Array) {\n // Array serialization\n if (this.options.explode) {\n for (const v of this.value) {\n params = params.append(this.name, this.serializeValue(v));\n }\n } else {\n const separator = this.options.style === 'spaceDelimited'\n ? ' ' : this.options.style === 'pipeDelimited'\n ? '|' : ',';\n return params.append(this.name, this.serializeValue(this.value, separator));\n }\n } else if (this.value !== null && typeof this.value === 'object') {\n // Object serialization\n if (this.options.style === 'deepObject') {\n // Append a parameter for each key, in the form `name[key]`\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n params = params.append(`${this.name}[${key}]`, this.serializeValue(propVal));\n }\n }\n } else if (this.options.explode) {\n // Append a parameter for each key without using the parameter name\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n params = params.append(key, this.serializeValue(propVal));\n }\n }\n } else {\n // Append a single parameter whose values are a comma-separated list of key,value,key,value...\n const array: any[] = [];\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n array.push(key);\n array.push(propVal);\n }\n }\n params = params.append(this.name, this.serializeValue(array));\n }\n } else if (this.value !== null && this.value !== undefined) {\n // Plain value\n params = params.append(this.name, this.serializeValue(this.value));\n }\n return params;\n }\n}\n\n/**\n * A parameter in the HTTP request header\n */\nclass HeaderParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'simple', false);\n }\n\n append(headers: HttpHeaders): HttpHeaders {\n if (this.value !== null && this.value !== undefined) {\n if (this.value instanceof Array) {\n for (const v of this.value) {\n headers = headers.append(this.name, this.serializeValue(v));\n }\n } else {\n headers = headers.append(this.name, this.serializeValue(this.value));\n }\n }\n return headers;\n }\n}\n\n/**\n * Helper to build http requests from parameters\n */\nexport class RequestBuilder {\n\n private _path = new Map();\n private _query = new Map();\n private _header = new Map();\n _bodyContent: any | null;\n _bodyContentType?: string;\n\n constructor(\n public rootUrl: string,\n public operationPath: string,\n public method: string) {\n }\n\n /**\n * Sets a path parameter\n */\n path(name: string, value: any, options?: ParameterOptions): void {\n this._path.set(name, new PathParameter(name, value, options || {}));\n }\n\n /**\n * Sets a query parameter\n */\n query(name: string, value: any, options?: ParameterOptions): void {\n this._query.set(name, new QueryParameter(name, value, options || {}));\n }\n\n /**\n * Sets a header parameter\n */\n header(name: string, value: any, options?: ParameterOptions): void {\n this._header.set(name, new HeaderParameter(name, value, options || {}));\n }\n\n /**\n * Sets the body content, along with the content type\n */\n body(value: any, contentType = 'application/json'): void {\n if (value instanceof Blob) {\n this._bodyContentType = value.type;\n } else {\n this._bodyContentType = contentType;\n }\n if (this._bodyContentType === 'application/x-www-form-urlencoded' && value !== null && typeof value === 'object') {\n // Handle URL-encoded data\n const pairs: Array<[string, string]> = [];\n for (const key of Object.keys(value)) {\n let val = value[key];\n if (!(val instanceof Array)) {\n val = [val];\n }\n for (const v of val) {\n const formValue = this.formDataValue(v);\n if (formValue !== null) {\n pairs.push([key, formValue]);\n }\n }\n }\n this._bodyContent = pairs.map(p => `${encodeURIComponent(p[0])}=${encodeURIComponent(p[1])}`).join('&');\n } else if (this._bodyContentType === 'multipart/form-data') {\n // Handle multipart form data\n const formData = new FormData();\n if (value !== null && value !== undefined) {\n for (const key of Object.keys(value)) {\n const val = value[key];\n if (val instanceof Array) {\n for (const v of val) {\n const toAppend = this.formDataValue(v);\n if (toAppend !== null) {\n formData.append(key, toAppend);\n }\n }\n } else {\n const toAppend = this.formDataValue(val);\n if (toAppend !== null) {\n formData.set(key, toAppend);\n }\n }\n }\n }\n this._bodyContent = formData;\n } else {\n // The body is the plain content\n this._bodyContent = value;\n }\n }\n\n private formDataValue(value: any): any {\n if (value === null || value === undefined) {\n return null;\n }\n if (value instanceof Blob) {\n return value;\n }\n if (typeof value === 'object') {\n return new Blob([JSON.stringify(value)], {type: 'application/json'})\n }\n return String(value);\n }\n\n /**\n * Builds the request with the current set parameters\n */\n build(options?: {\n /** Which content types to accept */\n accept?: string;\n\n /** The expected response type */\n responseType?: 'json' | 'text' | 'blob' | 'arraybuffer';\n\n /** Whether to report progress on uploads / downloads */\n reportProgress?: boolean;\n\n /** Allow passing HttpContext for HttpClient */\n context?: HttpContext;\n }): HttpRequest {\n\n options = options || {};\n\n // Path parameters\n let path = this.operationPath;\n for (const pathParam of this._path.values()) {\n path = pathParam.append(path);\n }\n const url = this.rootUrl + path;\n\n // Query parameters\n let httpParams = new HttpParams({\n encoder: ParameterCodecInstance\n });\n for (const queryParam of this._query.values()) {\n httpParams = queryParam.append(httpParams);\n }\n\n // Header parameters\n let httpHeaders = new HttpHeaders();\n if (options.accept) {\n httpHeaders = httpHeaders.append('Accept', options.accept);\n }\n for (const headerParam of this._header.values()) {\n httpHeaders = headerParam.append(httpHeaders);\n }\n\n // Request content headers\n if (this._bodyContentType && !(this._bodyContent instanceof FormData)) {\n httpHeaders = httpHeaders.set('Content-Type', this._bodyContentType);\n }\n\n // Perform the request\n return new HttpRequest(this.method.toUpperCase(), url, this._bodyContent, {\n params: httpParams,\n headers: httpHeaders,\n responseType: options.responseType,\n reportProgress: options.reportProgress,\n context: options.context\n });\n }\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { MarketplaceLeadsBuyOrderRequestApiModel } from '../../models/marketplace-leads-buy-order-request-api-model';\n\nexport interface CreateBuyOrder$Params {\n body: MarketplaceLeadsBuyOrderRequestApiModel\n}\n\nexport function createBuyOrder(http: HttpClient, rootUrl: string, params: CreateBuyOrder$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, createBuyOrder.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ncreateBuyOrder.PATH = '/marketplace/purchase';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CampaignLeadsResponseApiModel } from '../../models/campaign-leads-response-api-model';\n\nexport interface GetLeadsCsv$Params {\n id: string;\n}\n\nexport function getLeadsCsv(http: HttpClient, rootUrl: string, params: GetLeadsCsv$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getLeadsCsv.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetLeadsCsv.PATH = '/marketplace/{id}/csv';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { MarketplaceLeadsLookupRequestApiModel } from '../../models/marketplace-leads-lookup-request-api-model';\nimport { MarketplaceLeadsMapApiModel } from '../../models/marketplace-leads-map-api-model';\n\nexport interface GetLeadsMap$Params {\n body: MarketplaceLeadsLookupRequestApiModel\n}\n\nexport function getLeadsMap(http: HttpClient, rootUrl: string, params: GetLeadsMap$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getLeadsMap.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetLeadsMap.PATH = '/marketplace/map';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { MarketplaceMetadataApiModel } from '../../models/marketplace-metadata-api-model';\n\nexport interface GetMarketplaceMetadata$Params {\n}\n\nexport function getMarketplaceMetadata(http: HttpClient, rootUrl: string, params?: GetMarketplaceMetadata$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getMarketplaceMetadata.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetMarketplaceMetadata.PATH = '/marketplace/metadata';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PurchasedLeadsApiModel } from '../../models/purchased-leads-api-model';\n\nexport interface GetPurchase$Params {\n id: string;\n}\n\nexport function getPurchase(http: HttpClient, rootUrl: string, params: GetPurchase$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getPurchase.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetPurchase.PATH = '/marketplace/purchase/{id}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PurchasesResponseApiModel } from '../../models/purchases-response-api-model';\n\nexport interface GetPurchases$Params {\n\n/**\n * response size\n */\n limit?: number;\n\n/**\n * current page\n */\n page?: number;\n}\n\nexport function getPurchases(http: HttpClient, rootUrl: string, params?: GetPurchases$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getPurchases.PATH, 'get');\n if (params) {\n rb.query('limit', params.limit, {});\n rb.query('page', params.page, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetPurchases.PATH = '/marketplace/purchases';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { MarketplaceLeadsLookupRequestApiModel } from '../../models/marketplace-leads-lookup-request-api-model';\nimport { MarketplaceSearchResponseApiModel } from '../../models/marketplace-search-response-api-model';\n\nexport interface SearchMarketplace$Params {\n body: MarketplaceLeadsLookupRequestApiModel\n}\n\nexport function searchMarketplace(http: HttpClient, rootUrl: string, params: SearchMarketplace$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, searchMarketplace.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nsearchMarketplace.PATH = '/marketplace/search';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { CampaignLeadsResponseApiModel } from '../models/campaign-leads-response-api-model';\nimport { createBuyOrder } from '../fn/marketplace/create-buy-order';\nimport { CreateBuyOrder$Params } from '../fn/marketplace/create-buy-order';\nimport { getLeadsCsv } from '../fn/marketplace/get-leads-csv';\nimport { GetLeadsCsv$Params } from '../fn/marketplace/get-leads-csv';\nimport { getLeadsMap } from '../fn/marketplace/get-leads-map';\nimport { GetLeadsMap$Params } from '../fn/marketplace/get-leads-map';\nimport { getMarketplaceMetadata } from '../fn/marketplace/get-marketplace-metadata';\nimport { GetMarketplaceMetadata$Params } from '../fn/marketplace/get-marketplace-metadata';\nimport { getPurchase } from '../fn/marketplace/get-purchase';\nimport { GetPurchase$Params } from '../fn/marketplace/get-purchase';\nimport { getPurchases } from '../fn/marketplace/get-purchases';\nimport { GetPurchases$Params } from '../fn/marketplace/get-purchases';\nimport { MarketplaceLeadsBuyOrderRequestApiModel } from '../models/marketplace-leads-buy-order-request-api-model';\nimport { MarketplaceLeadsMapApiModel } from '../models/marketplace-leads-map-api-model';\nimport { MarketplaceMetadataApiModel } from '../models/marketplace-metadata-api-model';\nimport { MarketplaceSearchResponseApiModel } from '../models/marketplace-search-response-api-model';\nimport { PurchasedLeadsApiModel } from '../models/purchased-leads-api-model';\nimport { PurchasesResponseApiModel } from '../models/purchases-response-api-model';\nimport { searchMarketplace } from '../fn/marketplace/search-marketplace';\nimport { SearchMarketplace$Params } from '../fn/marketplace/search-marketplace';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadMarketplaceApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `marketplaceControllerGetLeadsMap()` */\n static readonly MarketplaceControllerGetLeadsMapPath = '/marketplace/map';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getLeadsMap()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n getLeadsMap$Response(params: GetLeadsMap$Params, context?: HttpContext): Observable> {\n return getLeadsMap(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getLeadsMap$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n getLeadsMap(params: GetLeadsMap$Params, context?: HttpContext): Observable {\n return this.getLeadsMap$Response(params, context).pipe(\n map((r: StrictHttpResponse): MarketplaceLeadsMapApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerSearchMarketplace()` */\n static readonly MarketplaceControllerSearchMarketplacePath = '/marketplace/search';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `searchMarketplace()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n searchMarketplace$Response(params: SearchMarketplace$Params, context?: HttpContext): Observable> {\n return searchMarketplace(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `searchMarketplace$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n searchMarketplace(params: SearchMarketplace$Params, context?: HttpContext): Observable {\n return this.searchMarketplace$Response(params, context).pipe(\n map((r: StrictHttpResponse): MarketplaceSearchResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerGetMarketplaceMetadata()` */\n static readonly MarketplaceControllerGetMarketplaceMetadataPath = '/marketplace/metadata';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getMarketplaceMetadata()` instead.\n *\n * This method doesn't expect any request body.\n */\n getMarketplaceMetadata$Response(params?: GetMarketplaceMetadata$Params, context?: HttpContext): Observable> {\n return getMarketplaceMetadata(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getMarketplaceMetadata$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getMarketplaceMetadata(params?: GetMarketplaceMetadata$Params, context?: HttpContext): Observable {\n return this.getMarketplaceMetadata$Response(params, context).pipe(\n map((r: StrictHttpResponse): MarketplaceMetadataApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerCreateBuyOrder()` */\n static readonly MarketplaceControllerCreateBuyOrderPath = '/marketplace/purchase';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `createBuyOrder()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createBuyOrder$Response(params: CreateBuyOrder$Params, context?: HttpContext): Observable> {\n return createBuyOrder(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `createBuyOrder$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createBuyOrder(params: CreateBuyOrder$Params, context?: HttpContext): Observable {\n return this.createBuyOrder$Response(params, context).pipe(\n map((r: StrictHttpResponse): MarketplaceLeadsBuyOrderRequestApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerGetLeadsCsv()` */\n static readonly MarketplaceControllerGetLeadsCsvPath = '/marketplace/{id}/csv';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getLeadsCsv()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadsCsv$Response(params: GetLeadsCsv$Params, context?: HttpContext): Observable> {\n return getLeadsCsv(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getLeadsCsv$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadsCsv(params: GetLeadsCsv$Params, context?: HttpContext): Observable {\n return this.getLeadsCsv$Response(params, context).pipe(\n map((r: StrictHttpResponse): CampaignLeadsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerGetPurchases()` */\n static readonly MarketplaceControllerGetPurchasesPath = '/marketplace/purchases';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getPurchases()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPurchases$Response(params?: GetPurchases$Params, context?: HttpContext): Observable> {\n return getPurchases(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getPurchases$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPurchases(params?: GetPurchases$Params, context?: HttpContext): Observable {\n return this.getPurchases$Response(params, context).pipe(\n map((r: StrictHttpResponse): PurchasesResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `marketplaceControllerGetPurchase()` */\n static readonly MarketplaceControllerGetPurchasePath = '/marketplace/purchase/{id}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getPurchase()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPurchase$Response(params: GetPurchase$Params, context?: HttpContext): Observable> {\n return getPurchase(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getPurchase$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPurchase(params: GetPurchase$Params, context?: HttpContext): Observable {\n return this.getPurchase$Response(params, context).pipe(\n map((r: StrictHttpResponse): PurchasedLeadsApiModel => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AccountBalanceApiModel } from '../../models/account-balance-api-model';\nimport { AdminAddFundsToUserRequestApiModel } from '../../models/admin-add-funds-to-user-request-api-model';\n\nexport interface AddFunds$Params {\n body: AdminAddFundsToUserRequestApiModel\n}\n\nexport function addFunds(http: HttpClient, rootUrl: string, params: AddFunds$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, addFunds.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\naddFunds.PATH = '/admin/funds/add';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { DissociateLeadInputModelApiModel } from '../../models/dissociate-lead-input-model-api-model';\n\nexport interface DissociateLead$Params {\n body: DissociateLeadInputModelApiModel\n}\n\nexport function dissociateLead(http: HttpClient, rootUrl: string, params: DissociateLead$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, dissociateLead.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'text', accept: '*/*', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return (r as HttpResponse).clone({ body: undefined }) as StrictHttpResponse;\n })\n );\n}\n\ndissociateLead.PATH = '/admin/dissociate';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AdminGetAllCampaignsResponseApiModel } from '../../models/admin-get-all-campaigns-response-api-model';\n\nexport interface GetAllCampaigns$Params {\n}\n\nexport function getAllCampaigns(http: HttpClient, rootUrl: string, params?: GetAllCampaigns$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getAllCampaigns.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetAllCampaigns.PATH = '/admin/campaigns';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AdminGetLeadsForCampaignResponseApiModel } from '../../models/admin-get-leads-for-campaign-response-api-model';\n\nexport interface GetLeadsForCampaign$Params {\n campaignId: string;\n}\n\nexport function getLeadsForCampaign(http: HttpClient, rootUrl: string, params: GetLeadsForCampaign$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getLeadsForCampaign.PATH, 'get');\n if (params) {\n rb.path('campaignId', params.campaignId, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetLeadsForCampaign.PATH = '/admin/campaigns/{campaignId}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { LeadReplacementsResponseApiModel } from '../../models/lead-replacements-response-api-model';\n\nexport interface GetPendingReplacements$Params {\n}\n\nexport function getPendingReplacements(http: HttpClient, rootUrl: string, params?: GetPendingReplacements$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getPendingReplacements.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetPendingReplacements.PATH = '/admin/pending-replacements';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { LeadReplacementsResponseApiModel } from '../../models/lead-replacements-response-api-model';\n\nexport interface GetReplacements$Params {\n}\n\nexport function getReplacements(http: HttpClient, rootUrl: string, params?: GetReplacements$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getReplacements.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetReplacements.PATH = '/admin/replacements';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AdminRerunSideEffectsRequestModelApiModel } from '../../models/admin-rerun-side-effects-request-model-api-model';\n\nexport interface RerunSideEffects$Params {\n body: AdminRerunSideEffectsRequestModelApiModel\n}\n\nexport function rerunSideEffects(http: HttpClient, rootUrl: string, params: RerunSideEffects$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, rerunSideEffects.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'text', accept: '*/*', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return (r as HttpResponse).clone({ body: undefined }) as StrictHttpResponse;\n })\n );\n}\n\nrerunSideEffects.PATH = '/admin/rerun-side-effects';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AdminSetReplacementStatusApiModel } from '../../models/admin-set-replacement-status-api-model';\n\nexport interface SetReplacementStatus$Params {\n body: AdminSetReplacementStatusApiModel\n}\n\nexport function setReplacementStatus(http: HttpClient, rootUrl: string, params: SetReplacementStatus$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, setReplacementStatus.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'text', accept: '*/*', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return (r as HttpResponse).clone({ body: undefined }) as StrictHttpResponse;\n })\n );\n}\n\nsetReplacementStatus.PATH = '/admin/replacements';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { AccountBalanceApiModel } from '../models/account-balance-api-model';\nimport { addFunds } from '../fn/admin/add-funds';\nimport { AddFunds$Params } from '../fn/admin/add-funds';\nimport { AdminGetAllCampaignsResponseApiModel } from '../models/admin-get-all-campaigns-response-api-model';\nimport { AdminGetLeadsForCampaignResponseApiModel } from '../models/admin-get-leads-for-campaign-response-api-model';\nimport { dissociateLead } from '../fn/admin/dissociate-lead';\nimport { DissociateLead$Params } from '../fn/admin/dissociate-lead';\nimport { getAllCampaigns } from '../fn/admin/get-all-campaigns';\nimport { GetAllCampaigns$Params } from '../fn/admin/get-all-campaigns';\nimport { getLeadsForCampaign } from '../fn/admin/get-leads-for-campaign';\nimport { GetLeadsForCampaign$Params } from '../fn/admin/get-leads-for-campaign';\nimport { getPendingReplacements } from '../fn/admin/get-pending-replacements';\nimport { GetPendingReplacements$Params } from '../fn/admin/get-pending-replacements';\nimport { getReplacements } from '../fn/admin/get-replacements';\nimport { GetReplacements$Params } from '../fn/admin/get-replacements';\nimport { LeadReplacementsResponseApiModel } from '../models/lead-replacements-response-api-model';\nimport { rerunSideEffects } from '../fn/admin/rerun-side-effects';\nimport { RerunSideEffects$Params } from '../fn/admin/rerun-side-effects';\nimport { setReplacementStatus } from '../fn/admin/set-replacement-status';\nimport { SetReplacementStatus$Params } from '../fn/admin/set-replacement-status';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadAdminApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `adminControllerAddFunds()` */\n static readonly AdminControllerAddFundsPath = '/admin/funds/add';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `addFunds()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n addFunds$Response(params: AddFunds$Params, context?: HttpContext): Observable> {\n return addFunds(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `addFunds$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n addFunds(params: AddFunds$Params, context?: HttpContext): Observable {\n return this.addFunds$Response(params, context).pipe(\n map((r: StrictHttpResponse): AccountBalanceApiModel => r.body)\n );\n }\n\n /** Path part for operation `adminControllerGetAllCampaigns()` */\n static readonly AdminControllerGetAllCampaignsPath = '/admin/campaigns';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getAllCampaigns()` instead.\n *\n * This method doesn't expect any request body.\n */\n getAllCampaigns$Response(params?: GetAllCampaigns$Params, context?: HttpContext): Observable> {\n return getAllCampaigns(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getAllCampaigns$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getAllCampaigns(params?: GetAllCampaigns$Params, context?: HttpContext): Observable {\n return this.getAllCampaigns$Response(params, context).pipe(\n map((r: StrictHttpResponse): AdminGetAllCampaignsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `adminControllerGetLeadsForCampaign()` */\n static readonly AdminControllerGetLeadsForCampaignPath = '/admin/campaigns/{campaignId}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getLeadsForCampaign()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadsForCampaign$Response(params: GetLeadsForCampaign$Params, context?: HttpContext): Observable> {\n return getLeadsForCampaign(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getLeadsForCampaign$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadsForCampaign(params: GetLeadsForCampaign$Params, context?: HttpContext): Observable {\n return this.getLeadsForCampaign$Response(params, context).pipe(\n map((r: StrictHttpResponse): AdminGetLeadsForCampaignResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `adminControllerDissociateLead()` */\n static readonly AdminControllerDissociateLeadPath = '/admin/dissociate';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `dissociateLead()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n dissociateLead$Response(params: DissociateLead$Params, context?: HttpContext): Observable> {\n return dissociateLead(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `dissociateLead$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n dissociateLead(params: DissociateLead$Params, context?: HttpContext): Observable {\n return this.dissociateLead$Response(params, context).pipe(\n map((r: StrictHttpResponse): void => r.body)\n );\n }\n\n /** Path part for operation `adminControllerGetReplacements()` */\n static readonly AdminControllerGetReplacementsPath = '/admin/replacements';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getReplacements()` instead.\n *\n * This method doesn't expect any request body.\n */\n getReplacements$Response(params?: GetReplacements$Params, context?: HttpContext): Observable> {\n return getReplacements(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getReplacements$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getReplacements(params?: GetReplacements$Params, context?: HttpContext): Observable {\n return this.getReplacements$Response(params, context).pipe(\n map((r: StrictHttpResponse): LeadReplacementsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `adminControllerSetReplacementStatus()` */\n static readonly AdminControllerSetReplacementStatusPath = '/admin/replacements';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `setReplacementStatus()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n setReplacementStatus$Response(params: SetReplacementStatus$Params, context?: HttpContext): Observable> {\n return setReplacementStatus(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `setReplacementStatus$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n setReplacementStatus(params: SetReplacementStatus$Params, context?: HttpContext): Observable {\n return this.setReplacementStatus$Response(params, context).pipe(\n map((r: StrictHttpResponse): void => r.body)\n );\n }\n\n /** Path part for operation `adminControllerGetPendingReplacements()` */\n static readonly AdminControllerGetPendingReplacementsPath = '/admin/pending-replacements';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getPendingReplacements()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPendingReplacements$Response(params?: GetPendingReplacements$Params, context?: HttpContext): Observable> {\n return getPendingReplacements(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getPendingReplacements$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getPendingReplacements(params?: GetPendingReplacements$Params, context?: HttpContext): Observable {\n return this.getPendingReplacements$Response(params, context).pipe(\n map((r: StrictHttpResponse): LeadReplacementsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `adminControllerRerunSideEffects()` */\n static readonly AdminControllerRerunSideEffectsPath = '/admin/rerun-side-effects';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `rerunSideEffects()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n rerunSideEffects$Response(params: RerunSideEffects$Params, context?: HttpContext): Observable> {\n return rerunSideEffects(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `rerunSideEffects$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n rerunSideEffects(params: RerunSideEffects$Params, context?: HttpContext): Observable {\n return this.rerunSideEffects$Response(params, context).pipe(\n map((r: StrictHttpResponse): void => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AccountBalanceApiModel } from '../../models/account-balance-api-model';\nimport { DepositFundsApiModel } from '../../models/deposit-funds-api-model';\n\nexport interface AddFunds$Params {\n body: DepositFundsApiModel\n}\n\nexport function addFunds(http: HttpClient, rootUrl: string, params: AddFunds$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, addFunds.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\naddFunds.PATH = '/funds';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PaymentIntentApiModel } from '../../models/payment-intent-api-model';\nimport { PaymentIntentResponseApiModel } from '../../models/payment-intent-response-api-model';\n\nexport interface CreatePaymentIntent$Params {\n body: PaymentIntentApiModel\n}\n\nexport function createPaymentIntent(http: HttpClient, rootUrl: string, params: CreatePaymentIntent$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, createPaymentIntent.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ncreatePaymentIntent.PATH = '/funds/create-payment-intent';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { TransactionsResponseApiModel } from '../../models/transactions-response-api-model';\n\nexport interface ListTransactions$Params {\n\n/**\n * response size\n */\n limit?: number;\n\n/**\n * current page\n */\n page?: number;\n}\n\nexport function listTransactions(http: HttpClient, rootUrl: string, params?: ListTransactions$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, listTransactions.PATH, 'get');\n if (params) {\n rb.query('limit', params.limit, {});\n rb.query('page', params.page, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nlistTransactions.PATH = '/funds/transactions';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { AccountBalanceApiModel } from '../../models/account-balance-api-model';\n\nexport interface RetrieveBalance$Params {\n}\n\nexport function retrieveBalance(http: HttpClient, rootUrl: string, params?: RetrieveBalance$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, retrieveBalance.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nretrieveBalance.PATH = '/funds';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { AccountBalanceApiModel } from '../models/account-balance-api-model';\nimport { addFunds } from '../fn/manage-funds/add-funds';\nimport { AddFunds$Params } from '../fn/manage-funds/add-funds';\nimport { createPaymentIntent } from '../fn/manage-funds/create-payment-intent';\nimport { CreatePaymentIntent$Params } from '../fn/manage-funds/create-payment-intent';\nimport { listTransactions } from '../fn/manage-funds/list-transactions';\nimport { ListTransactions$Params } from '../fn/manage-funds/list-transactions';\nimport { PaymentIntentResponseApiModel } from '../models/payment-intent-response-api-model';\nimport { retrieveBalance } from '../fn/manage-funds/retrieve-balance';\nimport { RetrieveBalance$Params } from '../fn/manage-funds/retrieve-balance';\nimport { TransactionsResponseApiModel } from '../models/transactions-response-api-model';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadManageFundsApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `fundsControllerRetrieveBalance()` */\n static readonly FundsControllerRetrieveBalancePath = '/funds';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `retrieveBalance()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveBalance$Response(params?: RetrieveBalance$Params, context?: HttpContext): Observable> {\n return retrieveBalance(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `retrieveBalance$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveBalance(params?: RetrieveBalance$Params, context?: HttpContext): Observable {\n return this.retrieveBalance$Response(params, context).pipe(\n map((r: StrictHttpResponse): AccountBalanceApiModel => r.body)\n );\n }\n\n /** Path part for operation `fundsControllerAddFunds()` */\n static readonly FundsControllerAddFundsPath = '/funds';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `addFunds()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n addFunds$Response(params: AddFunds$Params, context?: HttpContext): Observable> {\n return addFunds(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `addFunds$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n addFunds(params: AddFunds$Params, context?: HttpContext): Observable {\n return this.addFunds$Response(params, context).pipe(\n map((r: StrictHttpResponse): AccountBalanceApiModel => r.body)\n );\n }\n\n /** Path part for operation `fundsControllerListTransactions()` */\n static readonly FundsControllerListTransactionsPath = '/funds/transactions';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `listTransactions()` instead.\n *\n * This method doesn't expect any request body.\n */\n listTransactions$Response(params?: ListTransactions$Params, context?: HttpContext): Observable> {\n return listTransactions(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `listTransactions$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n listTransactions(params?: ListTransactions$Params, context?: HttpContext): Observable {\n return this.listTransactions$Response(params, context).pipe(\n map((r: StrictHttpResponse): TransactionsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `fundsControllerCreatePaymentIntent()` */\n static readonly FundsControllerCreatePaymentIntentPath = '/funds/create-payment-intent';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `createPaymentIntent()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPaymentIntent$Response(params: CreatePaymentIntent$Params, context?: HttpContext): Observable> {\n return createPaymentIntent(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `createPaymentIntent$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPaymentIntent(params: CreatePaymentIntent$Params, context?: HttpContext): Observable {\n return this.createPaymentIntent$Response(params, context).pipe(\n map((r: StrictHttpResponse): PaymentIntentResponseApiModel => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { LeadDispositionsResponseApiModel } from '../../models/lead-dispositions-response-api-model';\n\nexport interface GetLeadDispositions$Params {\n}\n\nexport function getLeadDispositions(http: HttpClient, rootUrl: string, params?: GetLeadDispositions$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, getLeadDispositions.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ngetLeadDispositions.PATH = '/leads/dispositions';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { LeadTypesResponseApiModel } from '../../models/lead-types-response-api-model';\n\nexport interface LeadTypes$Params {\n}\n\nexport function leadTypes(http: HttpClient, rootUrl: string, params?: LeadTypes$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, leadTypes.PATH, 'get');\n if (params) {\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nleadTypes.PATH = '/leads/types';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { RequestReplacementApiModel } from '../../models/request-replacement-api-model';\n\nexport interface RequestReplacement$Params {\n body: RequestReplacementApiModel\n}\n\nexport function requestReplacement(http: HttpClient, rootUrl: string, params: RequestReplacement$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, requestReplacement.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nrequestReplacement.PATH = '/leads/replacement';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { LeadApiModel } from '../../models/lead-api-model';\n\nexport interface Retrieve$Params {\n id: string;\n}\n\nexport function retrieve(http: HttpClient, rootUrl: string, params: Retrieve$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, retrieve.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nretrieve.PATH = '/leads/{id}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { SetDispositionRequestApiModel } from '../../models/set-disposition-request-api-model';\nimport { SetDispositionResponseApiModel } from '../../models/set-disposition-response-api-model';\n\nexport interface SetLeadDisposition$Params {\n body: SetDispositionRequestApiModel\n}\n\nexport function setLeadDisposition(http: HttpClient, rootUrl: string, params: SetLeadDisposition$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, setLeadDisposition.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nsetLeadDisposition.PATH = '/leads/disposition';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { getLeadDispositions } from '../fn/leads/get-lead-dispositions';\nimport { GetLeadDispositions$Params } from '../fn/leads/get-lead-dispositions';\nimport { LeadApiModel } from '../models/lead-api-model';\nimport { LeadDispositionsResponseApiModel } from '../models/lead-dispositions-response-api-model';\nimport { leadTypes } from '../fn/leads/lead-types';\nimport { LeadTypes$Params } from '../fn/leads/lead-types';\nimport { LeadTypesResponseApiModel } from '../models/lead-types-response-api-model';\nimport { requestReplacement } from '../fn/leads/request-replacement';\nimport { RequestReplacementApiModel } from '../models/request-replacement-api-model';\nimport { RequestReplacement$Params } from '../fn/leads/request-replacement';\nimport { retrieve } from '../fn/leads/retrieve';\nimport { Retrieve$Params } from '../fn/leads/retrieve';\nimport { SetDispositionResponseApiModel } from '../models/set-disposition-response-api-model';\nimport { setLeadDisposition } from '../fn/leads/set-lead-disposition';\nimport { SetLeadDisposition$Params } from '../fn/leads/set-lead-disposition';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadLeadsApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `leadsControllerLeadTypes()` */\n static readonly LeadsControllerLeadTypesPath = '/leads/types';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `leadTypes()` instead.\n *\n * This method doesn't expect any request body.\n */\n leadTypes$Response(params?: LeadTypes$Params, context?: HttpContext): Observable> {\n return leadTypes(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `leadTypes$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n leadTypes(params?: LeadTypes$Params, context?: HttpContext): Observable {\n return this.leadTypes$Response(params, context).pipe(\n map((r: StrictHttpResponse): LeadTypesResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `leadsControllerGetLeadDispositions()` */\n static readonly LeadsControllerGetLeadDispositionsPath = '/leads/dispositions';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `getLeadDispositions()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadDispositions$Response(params?: GetLeadDispositions$Params, context?: HttpContext): Observable> {\n return getLeadDispositions(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `getLeadDispositions$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n getLeadDispositions(params?: GetLeadDispositions$Params, context?: HttpContext): Observable {\n return this.getLeadDispositions$Response(params, context).pipe(\n map((r: StrictHttpResponse): LeadDispositionsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `leadsControllerSetLeadDisposition()` */\n static readonly LeadsControllerSetLeadDispositionPath = '/leads/disposition';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `setLeadDisposition()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n setLeadDisposition$Response(params: SetLeadDisposition$Params, context?: HttpContext): Observable> {\n return setLeadDisposition(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `setLeadDisposition$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n setLeadDisposition(params: SetLeadDisposition$Params, context?: HttpContext): Observable {\n return this.setLeadDisposition$Response(params, context).pipe(\n map((r: StrictHttpResponse): SetDispositionResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `leadsControllerRequestReplacement()` */\n static readonly LeadsControllerRequestReplacementPath = '/leads/replacement';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `requestReplacement()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n requestReplacement$Response(params: RequestReplacement$Params, context?: HttpContext): Observable> {\n return requestReplacement(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `requestReplacement$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n requestReplacement(params: RequestReplacement$Params, context?: HttpContext): Observable {\n return this.requestReplacement$Response(params, context).pipe(\n map((r: StrictHttpResponse): RequestReplacementApiModel => r.body)\n );\n }\n\n /** Path part for operation `leadsControllerRetrieve()` */\n static readonly LeadsControllerRetrievePath = '/leads/{id}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `retrieve()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieve$Response(params: Retrieve$Params, context?: HttpContext): Observable> {\n return retrieve(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `retrieve$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieve(params: Retrieve$Params, context?: HttpContext): Observable {\n return this.retrieve$Response(params, context).pipe(\n map((r: StrictHttpResponse): LeadApiModel => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PingRequestApiModel } from '../../models/ping-request-api-model';\nimport { PingResponseApiModel } from '../../models/ping-response-api-model';\n\nexport interface CreatePing$Params {\n\n/**\n * Pass your token via the `Authorization` header prefixed with `Bearer` (e.g. `Authorization: Bearer xxxxxxx`)\n */\n Authorization?: string;\n \n /**\n * Zipcode, state and date of birth are the minimum required fields for a valid Ping request.\n *\n * On a successful Ping, a `campaignId` and `leadId` will be returned. These values should then be used to Post the lead if the bid is won.\n */\n body: PingRequestApiModel\n}\n\nexport function createPing(http: HttpClient, rootUrl: string, params: CreatePing$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, createPing.PATH, 'post');\n if (params) {\n rb.header('Authorization', params.Authorization, {});\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ncreatePing.PATH = '/ping-post/ping';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PostRequestApiModel } from '../../models/post-request-api-model';\nimport { PostResponseApiModel } from '../../models/post-response-api-model';\n\nexport interface CreatePost$Params {\n\n/**\n * Pass your token via the `Authorization` header prefixed with `Bearer` (e.g. `Authorization: Bearer xxxxxxx`)\n */\n Authorization?: string;\n \n /**\n * After a successful Ping, a `campaignId` and `leadId` are returned. These values are used to populate the `leadId` and `campaignId` fields of the Post body.\n *\n * If the `campaignId` was acquired by means other than the Ping endpoint (e.g. via a 3rd party API), then the `leadId` should match the `campaignId`.\n *\n * The `data` field does not enforce any kind of structure other than to be an Object. The fields in `data` shown below are just examples and not required.\n */\n body: PostRequestApiModel\n}\n\nexport function createPost(http: HttpClient, rootUrl: string, params: CreatePost$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, createPost.PATH, 'post');\n if (params) {\n rb.header('Authorization', params.Authorization, {});\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ncreatePost.PATH = '/ping-post/post';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { DncRequestApiModel } from '../../models/dnc-request-api-model';\n\nexport interface DncRequest$Params {\n token: string;\n body: DncRequestApiModel\n}\n\nexport function dncRequest(http: HttpClient, rootUrl: string, params: DncRequest$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, dncRequest.PATH, 'post');\n if (params) {\n rb.path('token', params.token, {});\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'text', accept: '*/*', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return (r as HttpResponse).clone({ body: undefined }) as StrictHttpResponse;\n })\n );\n}\n\ndncRequest.PATH = '/ping-post/dnc/{token}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { PostResponseApiModel } from '../../models/post-response-api-model';\nimport { SimplePostRequestApiModel } from '../../models/simple-post-request-api-model';\n\nexport interface SimplePostRequest$Params {\n token: string;\n \n /**\n * This endpoint is used for integrations with vendors that do not operator on the Ping/Post model. This is a wrapper around the post endpoint with the intention of being simpler to integrate with. The auth token is passed as a URL parameter and apart from the `campaignId` requirement,\n * the input is completely dynamic.\n *\n * The POST body of this endpoint can contain any valid JSON data as long as there is a field `campaignId` at the root.\n */\n body: SimplePostRequestApiModel\n}\n\nexport function simplePostRequest(http: HttpClient, rootUrl: string, params: SimplePostRequest$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, simplePostRequest.PATH, 'post');\n if (params) {\n rb.path('token', params.token, {});\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nsimplePostRequest.PATH = '/ping-post/post/{token}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { createPing } from '../fn/ping-post/create-ping';\nimport { CreatePing$Params } from '../fn/ping-post/create-ping';\nimport { createPost } from '../fn/ping-post/create-post';\nimport { CreatePost$Params } from '../fn/ping-post/create-post';\nimport { dncRequest } from '../fn/ping-post/dnc-request';\nimport { DncRequest$Params } from '../fn/ping-post/dnc-request';\nimport { PingResponseApiModel } from '../models/ping-response-api-model';\nimport { PostResponseApiModel } from '../models/post-response-api-model';\nimport { simplePostRequest } from '../fn/ping-post/simple-post-request';\nimport { SimplePostRequest$Params } from '../fn/ping-post/simple-post-request';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadPingPostApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `pingPostControllerCreatePing()` */\n static readonly PingPostControllerCreatePingPath = '/ping-post/ping';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `createPing()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPing$Response(params: CreatePing$Params, context?: HttpContext): Observable> {\n return createPing(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `createPing$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPing(params: CreatePing$Params, context?: HttpContext): Observable {\n return this.createPing$Response(params, context).pipe(\n map((r: StrictHttpResponse): PingResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `pingPostControllerCreatePost()` */\n static readonly PingPostControllerCreatePostPath = '/ping-post/post';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `createPost()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPost$Response(params: CreatePost$Params, context?: HttpContext): Observable> {\n return createPost(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `createPost$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n createPost(params: CreatePost$Params, context?: HttpContext): Observable {\n return this.createPost$Response(params, context).pipe(\n map((r: StrictHttpResponse): PostResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `pingPostControllerDncRequest()` */\n static readonly PingPostControllerDncRequestPath = '/ping-post/dnc/{token}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `dncRequest()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n dncRequest$Response(params: DncRequest$Params, context?: HttpContext): Observable> {\n return dncRequest(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `dncRequest$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n dncRequest(params: DncRequest$Params, context?: HttpContext): Observable {\n return this.dncRequest$Response(params, context).pipe(\n map((r: StrictHttpResponse): void => r.body)\n );\n }\n\n /** Path part for operation `pingPostControllerSimplePostRequest()` */\n static readonly PingPostControllerSimplePostRequestPath = '/ping-post/post/{token}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `simplePostRequest()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n simplePostRequest$Response(params: SimplePostRequest$Params, context?: HttpContext): Observable> {\n return simplePostRequest(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `simplePostRequest$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n simplePostRequest(params: SimplePostRequest$Params, context?: HttpContext): Observable {\n return this.simplePostRequest$Response(params, context).pipe(\n map((r: StrictHttpResponse): PostResponseApiModel => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CreateCampaignApiModel } from '../../models/create-campaign-api-model';\nimport { CreateCampaignResponseApiModel } from '../../models/create-campaign-response-api-model';\n\nexport interface Create$Params {\n body: CreateCampaignApiModel\n}\n\nexport function create(http: HttpClient, rootUrl: string, params: Create$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, create.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\ncreate.PATH = '/campaigns';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\n\nexport interface ExportCampaignLeadsCsv$Params {\n id: string;\n}\n\nexport function exportCampaignLeadsCsv(http: HttpClient, rootUrl: string, params: ExportCampaignLeadsCsv$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, exportCampaignLeadsCsv.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'text', accept: '*/*', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return (r as HttpResponse).clone({ body: undefined }) as StrictHttpResponse;\n })\n );\n}\n\nexportCampaignLeadsCsv.PATH = '/campaigns/{id}/leads/csv';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CampaignsResponseApiModel } from '../../models/campaigns-response-api-model';\n\nexport interface List$Params {\n\n/**\n * response size\n */\n limit?: number;\n\n/**\n * current page\n */\n page?: number;\n}\n\nexport function list(http: HttpClient, rootUrl: string, params?: List$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, list.PATH, 'get');\n if (params) {\n rb.query('limit', params.limit, {});\n rb.query('page', params.page, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nlist.PATH = '/campaigns';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CreateCampaignApiModel } from '../../models/create-campaign-api-model';\nimport { CreateCampaignResponseApiModel } from '../../models/create-campaign-response-api-model';\n\nexport interface PassthroughCreate$Params {\n token: string;\n body: CreateCampaignApiModel\n}\n\nexport function passthroughCreate(http: HttpClient, rootUrl: string, params: PassthroughCreate$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, passthroughCreate.PATH, 'post');\n if (params) {\n rb.path('token', params.token, {});\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\npassthroughCreate.PATH = '/campaigns/passthrough/{token}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CampaignLeadsResponseApiModel } from '../../models/campaign-leads-response-api-model';\n\nexport interface RetrieveCampaignLeads$Params {\n id: string;\n}\n\nexport function retrieveCampaignLeads(http: HttpClient, rootUrl: string, params: RetrieveCampaignLeads$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, retrieveCampaignLeads.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nretrieveCampaignLeads.PATH = '/campaigns/{id}/leads';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { CampaignStatusApiModel } from '../../models/campaign-status-api-model';\n\nexport interface RetrieveCampaignStatus$Params {\n id: string;\n}\n\nexport function retrieveCampaignStatus(http: HttpClient, rootUrl: string, params: RetrieveCampaignStatus$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, retrieveCampaignStatus.PATH, 'get');\n if (params) {\n rb.path('id', params.id, {});\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nretrieveCampaignStatus.PATH = '/campaigns/{id}';\n", "/* tslint:disable */\n/* eslint-disable */\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { CampaignLeadsResponseApiModel } from '../models/campaign-leads-response-api-model';\nimport { CampaignsResponseApiModel } from '../models/campaigns-response-api-model';\nimport { CampaignStatusApiModel } from '../models/campaign-status-api-model';\nimport { create } from '../fn/campaigns/create';\nimport { Create$Params } from '../fn/campaigns/create';\nimport { CreateCampaignResponseApiModel } from '../models/create-campaign-response-api-model';\nimport { exportCampaignLeadsCsv } from '../fn/campaigns/export-campaign-leads-csv';\nimport { ExportCampaignLeadsCsv$Params } from '../fn/campaigns/export-campaign-leads-csv';\nimport { list } from '../fn/campaigns/list';\nimport { List$Params } from '../fn/campaigns/list';\nimport { passthroughCreate } from '../fn/campaigns/passthrough-create';\nimport { PassthroughCreate$Params } from '../fn/campaigns/passthrough-create';\nimport { retrieveCampaignLeads } from '../fn/campaigns/retrieve-campaign-leads';\nimport { RetrieveCampaignLeads$Params } from '../fn/campaigns/retrieve-campaign-leads';\nimport { retrieveCampaignStatus } from '../fn/campaigns/retrieve-campaign-status';\nimport { RetrieveCampaignStatus$Params } from '../fn/campaigns/retrieve-campaign-status';\n\n@Injectable({ providedIn: 'root' })\nexport class ItkLeadCampaignsApi extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `campaignControllerList()` */\n static readonly CampaignControllerListPath = '/campaigns';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `list()` instead.\n *\n * This method doesn't expect any request body.\n */\n list$Response(params?: List$Params, context?: HttpContext): Observable> {\n return list(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `list$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n list(params?: List$Params, context?: HttpContext): Observable {\n return this.list$Response(params, context).pipe(\n map((r: StrictHttpResponse): CampaignsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `campaignControllerCreate()` */\n static readonly CampaignControllerCreatePath = '/campaigns';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `create()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n create$Response(params: Create$Params, context?: HttpContext): Observable> {\n return create(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `create$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n create(params: Create$Params, context?: HttpContext): Observable {\n return this.create$Response(params, context).pipe(\n map((r: StrictHttpResponse): CreateCampaignResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `campaignControllerRetrieveCampaignStatus()` */\n static readonly CampaignControllerRetrieveCampaignStatusPath = '/campaigns/{id}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `retrieveCampaignStatus()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveCampaignStatus$Response(params: RetrieveCampaignStatus$Params, context?: HttpContext): Observable> {\n return retrieveCampaignStatus(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `retrieveCampaignStatus$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveCampaignStatus(params: RetrieveCampaignStatus$Params, context?: HttpContext): Observable {\n return this.retrieveCampaignStatus$Response(params, context).pipe(\n map((r: StrictHttpResponse): CampaignStatusApiModel => r.body)\n );\n }\n\n /** Path part for operation `campaignControllerRetrieveCampaignLeads()` */\n static readonly CampaignControllerRetrieveCampaignLeadsPath = '/campaigns/{id}/leads';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `retrieveCampaignLeads()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveCampaignLeads$Response(params: RetrieveCampaignLeads$Params, context?: HttpContext): Observable> {\n return retrieveCampaignLeads(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `retrieveCampaignLeads$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n retrieveCampaignLeads(params: RetrieveCampaignLeads$Params, context?: HttpContext): Observable {\n return this.retrieveCampaignLeads$Response(params, context).pipe(\n map((r: StrictHttpResponse): CampaignLeadsResponseApiModel => r.body)\n );\n }\n\n /** Path part for operation `campaignControllerExportCampaignLeadsCsv()` */\n static readonly CampaignControllerExportCampaignLeadsCsvPath = '/campaigns/{id}/leads/csv';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `exportCampaignLeadsCsv()` instead.\n *\n * This method doesn't expect any request body.\n */\n exportCampaignLeadsCsv$Response(params: ExportCampaignLeadsCsv$Params, context?: HttpContext): Observable> {\n return exportCampaignLeadsCsv(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `exportCampaignLeadsCsv$Response()` instead.\n *\n * This method doesn't expect any request body.\n */\n exportCampaignLeadsCsv(params: ExportCampaignLeadsCsv$Params, context?: HttpContext): Observable {\n return this.exportCampaignLeadsCsv$Response(params, context).pipe(\n map((r: StrictHttpResponse): void => r.body)\n );\n }\n\n /** Path part for operation `campaignControllerPassthroughCreate()` */\n static readonly CampaignControllerPassthroughCreatePath = '/campaigns/passthrough/{token}';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `passthroughCreate()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n passthroughCreate$Response(params: PassthroughCreate$Params, context?: HttpContext): Observable> {\n return passthroughCreate(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `passthroughCreate$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n passthroughCreate(params: PassthroughCreate$Params, context?: HttpContext): Observable {\n return this.passthroughCreate$Response(params, context).pipe(\n map((r: StrictHttpResponse): CreateCampaignResponseApiModel => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\nimport { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { ApiConfiguration, ApiConfigurationParams } from './api-configuration';\n\nimport { ItkLeadMarketplaceApi } from './services/itk-lead-marketplace-api';\nimport { ItkLeadManageFundsApi } from './services/itk-lead-manage-funds-api';\nimport { ItkLeadLeadsApi } from './services/itk-lead-leads-api';\nimport { ItkLeadPingPostApi } from './services/itk-lead-ping-post-api';\nimport { ItkLeadCampaignsApi } from './services/itk-lead-campaigns-api';\nimport { ItkLeadAdminApi } from './services/itk-lead-admin-api';\n\n/**\n * Module that provides all services and configuration.\n */\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n ItkLeadMarketplaceApi,\n ItkLeadManageFundsApi,\n ItkLeadLeadsApi,\n ItkLeadPingPostApi,\n ItkLeadCampaignsApi,\n ItkLeadAdminApi,\n ApiConfiguration\n ],\n})\nexport class GeneratedApiModule {\n static forRoot(params: ApiConfigurationParams): ModuleWithProviders {\n return {\n ngModule: GeneratedApiModule,\n providers: [\n {\n provide: ApiConfiguration,\n useValue: params\n }\n ]\n }\n }\n\n constructor( \n @Optional() @SkipSelf() parentModule: GeneratedApiModule,\n @Optional() http: HttpClient\n ) {\n if (parentModule) {\n throw new Error('GeneratedApiModule 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", "import { Injectable } from '@angular/core';\nimport {\n HttpContextToken,\n HttpEvent,\n HttpHandler,\n HttpInterceptor,\n HttpRequest,\n} from '@angular/common/http';\nimport { from, map, Observable, switchMap } from 'rxjs';\nimport { ItkTokenManagementServiceDeprecated } from './token-management.service';\n\n/**\n * @deprecated\n */\nexport const ITK_CLIENT_AUTH_DISABLED = new HttpContextToken(\n () => false,\n);\n\n/**\n * @deprecated\n */\n@Injectable()\nexport class ItkClientAuthInterceptorDeprecated implements HttpInterceptor {\n constructor(\n private readonly tokenManagement: ItkTokenManagementServiceDeprecated,\n ) {}\n\n intercept(\n req: HttpRequest,\n next: HttpHandler,\n ): Observable> {\n return this.injectTokenIntoRequest(req, next);\n }\n\n injectTokenIntoRequest(\n req: HttpRequest,\n next: HttpHandler,\n ): Observable> {\n return from(this.tokenManagement.refreshTokenIfNeeded()).pipe(\n map(() => this.tokenManagement.getAccessToken()),\n map((token) =>\n req.context.get(ITK_CLIENT_AUTH_DISABLED) !== true\n ? { Authorization: `Bearer ${token}` }\n : undefined,\n ),\n map((headers) => req.clone({ setHeaders: { ...headers } })),\n switchMap((newReq) => next.handle(newReq)),\n );\n }\n}\n", "import { FactoryProvider, ModuleWithProviders, NgModule } from '@angular/core';\nimport { HTTP_INTERCEPTORS } from '@angular/common/http';\nimport { ItkTokenManagementServiceDeprecated } from './token-management.service';\nimport { ClientAuthGuardDeprecated } from './client-auth.guard';\nimport { AdminClientAuthGuardDeprecated } from './admin-client-auth.guard';\nimport { ItkClientAuthInterceptorDeprecated } from './client-auth.interceptor';\n\n/**\n * @deprecated\n */\n@NgModule()\nexport class ItkClientAuthModuleDeprecated {\n static forRoot(\n provider: Omit,\n ): ModuleWithProviders {\n return {\n ngModule: ItkClientAuthModuleDeprecated,\n providers: [\n {\n ...provider,\n provide: 'REFRESH_TOKEN',\n },\n ItkTokenManagementServiceDeprecated,\n ClientAuthGuardDeprecated,\n AdminClientAuthGuardDeprecated,\n {\n provide: HTTP_INTERCEPTORS,\n useClass: ItkClientAuthInterceptorDeprecated,\n multi: true,\n },\n ],\n };\n }\n}\n", "import { FactoryProvider, ModuleWithProviders, NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { GeneratedApiModule } from '../generated/generated-api.module';\nimport { ApiConfiguration } from '../generated/api-configuration';\nimport { HttpClientModule } from '@angular/common/http';\nimport { ItkClientAuthModuleDeprecated } from '@itk/ng-auth';\n\n@NgModule({\n imports: [\n CommonModule,\n HttpClientModule,\n ItkClientAuthModuleDeprecated,\n GeneratedApiModule.forRoot({}),\n ],\n})\nexport class ItkLeadsApiModule {\n static forRoot(\n provider: Omit,\n ): ModuleWithProviders {\n return {\n ngModule: ItkLeadsApiModule,\n providers: [{ ...provider, provide: ApiConfiguration }],\n };\n }\n}\n"], "mappings": "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", "names": ["AdminClientAuthGuardDeprecated", "ClientAuthGuardDeprecated", "canActivate", "tv", "tokenManagement", "refreshTokenIfNeeded", "merge", "pipe", "filter", "x", "map", "claims", "roles", "includes", "tap", "router", "navigate", "t", "factory", "\u0275fac", "_AdminClientAuthGuardDeprecated", "ApiConfiguration", "constructor", "rootUrl", "factory", "\u0275fac", "providedIn", "_ApiConfiguration", "BaseService", "constructor", "config", "http", "rootUrl", "_rootUrl", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "_BaseService", "ParameterCodec", "encodeKey", "key", "encodeURIComponent", "encodeValue", "value", "decodeKey", "decodeURIComponent", "decodeValue", "ParameterCodecInstance", "Parameter", "constructor", "name", "options", "defaultStyle", "defaultExplode", "style", "undefined", "explode", "serializeValue", "separator", "Array", "map", "v", "split", "join", "array", "Object", "keys", "propVal", "push", "String", "PathParameter", "append", "path", "prefix", "alreadySerialized", "replace", "result", "QueryParameter", "params", "HeaderParameter", "headers", "RequestBuilder", "rootUrl", "operationPath", "method", "_path", "Map", "_query", "_header", "set", "query", "header", "body", "contentType", "Blob", "_bodyContentType", "type", "pairs", "val", "formValue", "formDataValue", "_bodyContent", "p", "formData", "FormData", "toAppend", "JSON", "stringify", "build", "pathParam", "values", "url", "httpParams", "HttpParams", "encoder", "queryParam", "httpHeaders", "HttpHeaders", "accept", "headerParam", "HttpRequest", "toUpperCase", "responseType", "reportProgress", "context", "createBuyOrder", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getLeadsCsv", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getLeadsMap", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getMarketplaceMetadata", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getPurchase", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getPurchases", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "query", "limit", "page", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "searchMarketplace", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ItkLeadMarketplaceApi", "BaseService", "constructor", "config", "http", "getLeadsMap$Response", "params", "context", "getLeadsMap", "rootUrl", "pipe", "map", "r", "body", "searchMarketplace$Response", "searchMarketplace", "getMarketplaceMetadata$Response", "getMarketplaceMetadata", "createBuyOrder$Response", "createBuyOrder", "getLeadsCsv$Response", "getLeadsCsv", "getPurchases$Response", "getPurchases", "getPurchase$Response", "getPurchase", "_ItkLeadMarketplaceApi", "MarketplaceControllerGetLeadsMapPath", "MarketplaceControllerSearchMarketplacePath", "MarketplaceControllerGetMarketplaceMetadataPath", "MarketplaceControllerCreateBuyOrderPath", "MarketplaceControllerGetLeadsCsvPath", "MarketplaceControllerGetPurchasesPath", "MarketplaceControllerGetPurchasePath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "addFunds", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "dissociateLead", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "clone", "undefined", "getAllCampaigns", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getLeadsForCampaign", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "campaignId", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getPendingReplacements", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "getReplacements", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "rerunSideEffects", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "clone", "undefined", "setReplacementStatus", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "clone", "undefined", "ItkLeadAdminApi", "BaseService", "constructor", "config", "http", "addFunds$Response", "params", "context", "addFunds", "rootUrl", "pipe", "map", "r", "body", "getAllCampaigns$Response", "getAllCampaigns", "getLeadsForCampaign$Response", "getLeadsForCampaign", "dissociateLead$Response", "dissociateLead", "getReplacements$Response", "getReplacements", "setReplacementStatus$Response", "setReplacementStatus", "getPendingReplacements$Response", "getPendingReplacements", "rerunSideEffects$Response", "rerunSideEffects", "_ItkLeadAdminApi", "AdminControllerAddFundsPath", "AdminControllerGetAllCampaignsPath", "AdminControllerGetLeadsForCampaignPath", "AdminControllerDissociateLeadPath", "AdminControllerGetReplacementsPath", "AdminControllerSetReplacementStatusPath", "AdminControllerGetPendingReplacementsPath", "AdminControllerRerunSideEffectsPath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "addFunds", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "createPaymentIntent", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "listTransactions", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "query", "limit", "page", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "retrieveBalance", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ItkLeadManageFundsApi", "BaseService", "constructor", "config", "http", "retrieveBalance$Response", "params", "context", "retrieveBalance", "rootUrl", "pipe", "map", "r", "body", "addFunds$Response", "addFunds", "listTransactions$Response", "listTransactions", "createPaymentIntent$Response", "createPaymentIntent", "_ItkLeadManageFundsApi", "FundsControllerRetrieveBalancePath", "FundsControllerAddFundsPath", "FundsControllerListTransactionsPath", "FundsControllerCreatePaymentIntentPath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "getLeadDispositions", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "leadTypes", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "requestReplacement", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "retrieve", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "setLeadDisposition", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ItkLeadLeadsApi", "BaseService", "constructor", "config", "http", "leadTypes$Response", "params", "context", "leadTypes", "rootUrl", "pipe", "map", "r", "body", "getLeadDispositions$Response", "getLeadDispositions", "setLeadDisposition$Response", "setLeadDisposition", "requestReplacement$Response", "requestReplacement", "retrieve$Response", "retrieve", "_ItkLeadLeadsApi", "LeadsControllerLeadTypesPath", "LeadsControllerGetLeadDispositionsPath", "LeadsControllerSetLeadDispositionPath", "LeadsControllerRequestReplacementPath", "LeadsControllerRetrievePath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "createPing", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "header", "Authorization", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "createPost", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "header", "Authorization", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "dncRequest", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "token", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "clone", "undefined", "simplePostRequest", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "token", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ItkLeadPingPostApi", "BaseService", "constructor", "config", "http", "createPing$Response", "params", "context", "createPing", "rootUrl", "pipe", "map", "r", "body", "createPost$Response", "createPost", "dncRequest$Response", "dncRequest", "simplePostRequest$Response", "simplePostRequest", "_ItkLeadPingPostApi", "PingPostControllerCreatePingPath", "PingPostControllerCreatePostPath", "PingPostControllerDncRequestPath", "PingPostControllerSimplePostRequestPath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "create", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "exportCampaignLeadsCsv", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "clone", "body", "undefined", "list", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "query", "limit", "page", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "passthroughCreate", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "token", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "retrieveCampaignLeads", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "retrieveCampaignStatus", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "path", "id", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ItkLeadCampaignsApi", "BaseService", "constructor", "config", "http", "list$Response", "params", "context", "list", "rootUrl", "pipe", "map", "r", "body", "create$Response", "create", "retrieveCampaignStatus$Response", "retrieveCampaignStatus", "retrieveCampaignLeads$Response", "retrieveCampaignLeads", "exportCampaignLeadsCsv$Response", "exportCampaignLeadsCsv", "passthroughCreate$Response", "passthroughCreate", "_ItkLeadCampaignsApi", "CampaignControllerListPath", "CampaignControllerCreatePath", "CampaignControllerRetrieveCampaignStatusPath", "CampaignControllerRetrieveCampaignLeadsPath", "CampaignControllerExportCampaignLeadsCsvPath", "CampaignControllerPassthroughCreatePath", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "GeneratedApiModule", "forRoot", "params", "ngModule", "providers", "provide", "ApiConfiguration", "useValue", "constructor", "parentModule", "http", "Error", "\u0275\u0275inject", "HttpClient", "ItkLeadMarketplaceApi", "ItkLeadManageFundsApi", "ItkLeadLeadsApi", "ItkLeadPingPostApi", "ItkLeadCampaignsApi", "ItkLeadAdminApi", "_GeneratedApiModule", "ITK_CLIENT_AUTH_DISABLED", "HttpContextToken", "ItkClientAuthInterceptorDeprecated", "constructor", "tokenManagement", "intercept", "req", "next", "injectTokenIntoRequest", "from", "refreshTokenIfNeeded", "pipe", "map", "getAccessToken", "token", "context", "get", "Authorization", "undefined", "headers", "clone", "setHeaders", "__spreadValues", "switchMap", "newReq", "handle", "\u0275\u0275inject", "ItkTokenManagementServiceDeprecated", "factory", "\u0275fac", "_ItkClientAuthInterceptorDeprecated", "ItkClientAuthModuleDeprecated", "forRoot", "provider", "ngModule", "providers", "__spreadProps", "__spreadValues", "provide", "ItkTokenManagementServiceDeprecated", "ClientAuthGuardDeprecated", "AdminClientAuthGuardDeprecated", "HTTP_INTERCEPTORS", "useClass", "ItkClientAuthInterceptorDeprecated", "multi", "_ItkClientAuthModuleDeprecated", "ItkLeadsApiModule", "forRoot", "provider", "ngModule", "providers", "__spreadProps", "__spreadValues", "provide", "ApiConfiguration", "CommonModule", "HttpClientModule", "ItkClientAuthModuleDeprecated", "GeneratedApiModule", "_ItkLeadsApiModule"] }