@saritasa/renewaire-frontend-sdk 0.1.0-dev.420 → 0.1.0-dev.426
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saritasa-renewaire-frontend-sdk.mjs","sources":["../../variables.ts","../../encoder.ts","../../configuration.ts","../../api.base.service.ts","../../api/auth-api.ts","../../api/permission-bundles-api.ts","../../api/permissions-api.ts","../../api/regions-api.ts","../../api/rep-contacts-api.ts","../../api/rep-territories-api.ts","../../api/rep-territory-locations-api.ts","../../api/rsd-regions-api.ts","../../api/user-design-conditions-api.ts","../../api/users-api.ts","../../api/api.ts","../../model/address-country.ts","../../model/address-dto.ts","../../model/cooling-design-basis.ts","../../model/create-rsd-region-dto.ts","../../model/create-upload-url-command.ts","../../model/design-weather-mode.ts","../../model/distance-dto.ts","../../model/email-confirmation-token-dto.ts","../../model/file-dto.ts","../../model/forgot-password-command.ts","../../model/int32-id-dto.ts","../../model/login-user-command.ts","../../model/offset-limit-list-metadata.ts","../../model/paged-list-metadata.ts","../../model/permission.ts","../../model/permission-dto.ts","../../model/physical-address-dto.ts","../../model/refresh-token-command.ts","../../model/region-dto.ts","../../model/region-level.ts","../../model/remove-documents-command.ts","../../model/reset-password-command.ts","../../model/rsd-region-rep-territory-dto.ts","../../model/rsd-region-user-dto.ts","../../model/save-rep-territory-location-dto.ts","../../model/save-user-design-conditions-dto.ts","../../model/search-permission-bundle-dto.ts","../../model/search-region-dto.ts","../../model/temperature-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.ts","../../model/update-rsd-region-dto.ts","../../model/upload-file-dto.ts","../../model/upload-url-result.ts","../../model/user-design-conditions-dto.ts","../../model/user-design-weather-condition-dto.ts","../../model/user-email-dto.ts","../../model/user-preferences-dto.ts","../../model/user-profile-dto.ts","../../api.module.ts","../../provide-api.ts","../../saritasa-renewaire-frontend-sdk.ts"],"sourcesContent":["import { InjectionToken } from \"@angular/core\";\n\nexport const BASE_PATH = new InjectionToken<string>(\"basePath\");\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n tsv: \" \",\n ssv: \" \",\n pipes: \"|\",\n};\n","import { HttpParameterCodec } from \"@angular/common/http\";\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n","import {\n HttpHeaders,\n HttpParams,\n HttpParameterCodec,\n} from \"@angular/common/http\";\nimport { Param } from \"./param\";\n\nexport interface ConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: { [key: string]: string | (() => string | undefined) };\n}\n\nexport class Configuration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: { [key: string]: string | (() => string | undefined) };\n\n constructor({\n accessToken,\n apiKeys,\n basePath,\n credentials,\n encodeParam,\n encoder,\n password,\n username,\n withCredentials,\n }: ConfigurationParameters = {}) {\n if (apiKeys) {\n this.apiKeys = apiKeys;\n }\n if (username !== undefined) {\n this.username = username;\n }\n if (password !== undefined) {\n this.password = password;\n }\n if (accessToken !== undefined) {\n this.accessToken = accessToken;\n }\n if (basePath !== undefined) {\n this.basePath = basePath;\n }\n if (withCredentials !== undefined) {\n this.withCredentials = withCredentials;\n }\n if (encoder) {\n this.encoder = encoder;\n }\n this.encodeParam =\n encodeParam ?? ((param) => this.defaultEncodeParam(param));\n this.credentials = credentials ?? {};\n\n // init default Bearer credential\n if (!this.credentials[\"Bearer\"]) {\n this.credentials[\"Bearer\"] = () => {\n return typeof this.accessToken === \"function\"\n ? this.accessToken()\n : this.accessToken;\n };\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp(\n \"^(application/json|[^;/ \\t]+/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$\",\n \"i\",\n );\n return (\n mime !== null &&\n (jsonMime.test(mime) ||\n mime.toLowerCase() === \"application/json-patch+json\")\n );\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === \"function\" ? value() : value;\n }\n\n public addCredentialToHeaders(\n credentialKey: string,\n headerName: string,\n headers: HttpHeaders,\n prefix?: string,\n ): HttpHeaders {\n const value = this.lookupCredential(credentialKey);\n return value ? headers.set(headerName, (prefix ?? \"\") + value) : headers;\n }\n\n public addCredentialToQuery(\n credentialKey: string,\n paramName: string,\n query: HttpParams,\n ): HttpParams {\n const value = this.lookupCredential(credentialKey);\n return value ? query.set(paramName, value) : query;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value =\n param.dataFormat === \"date-time\" && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport {\n HttpHeaders,\n HttpParams,\n HttpParameterCodec,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"./encoder\";\nimport { Configuration } from \"./configuration\";\n\nexport class BaseService {\n protected basePath = \"http://localhost\";\n public defaultHeaders = new HttpHeaders();\n public configuration: Configuration;\n public encoder: HttpParameterCodec;\n\n constructor(basePath?: string | string[], configuration?: Configuration) {\n this.configuration = configuration || new Configuration();\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n protected canConsumeForm(consumes: string[]): boolean {\n return consumes.indexOf(\"multipart/form-data\") !== -1;\n }\n\n protected addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n isDeep: boolean = false,\n ): HttpParams {\n // If the value is an object (but not a Date), recursively add its keys.\n if (typeof value === \"object\" && !(value instanceof Date)) {\n return this.addToHttpParamsRecursive(\n httpParams,\n value,\n isDeep ? key : undefined,\n isDeep,\n );\n }\n return this.addToHttpParamsRecursive(httpParams, value, key);\n }\n\n protected addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n isDeep: boolean = false,\n ): HttpParams {\n if (value === null || value === undefined) {\n return httpParams;\n }\n if (typeof value === \"object\") {\n // If JSON format is preferred, key must be provided.\n if (key != null) {\n return isDeep\n ? Object.keys(value as Record<string, any>).reduce(\n (hp, k) => hp.append(`${key}[${k}]`, value[k]),\n httpParams,\n )\n : httpParams.append(key, JSON.stringify(value));\n }\n // Otherwise, if it's an array, add each element.\n if (Array.isArray(value)) {\n value.forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(key, value.toISOString());\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach((k) => {\n const paramKey = key ? `${key}.${k}` : k;\n httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n paramKey,\n );\n });\n }\n return httpParams;\n } else if (key != null) {\n return httpParams.append(key, value);\n }\n throw Error(\"key may not be null if value is not object or array\");\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { LoginUserCommand } from \"../model/login-user-command\";\n// @ts-ignore\nimport { RefreshTokenCommand } from \"../model/refresh-token-command\";\n// @ts-ignore\nimport { TokenModel } from \"../model/token-model\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n AuthApiServiceInterface,\n AuthAuthenticateRequestParams,\n AuthRefreshTokenRequestParams,\n} from \"./auth-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class AuthApiService\n extends BaseService\n implements AuthApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Authenticate user by email and password.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenModel>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenModel>>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenModel>>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const loginUserCommand = requestParameters?.loginUserCommand;\n if (loginUserCommand === null || loginUserCommand === undefined) {\n throw new Error(\n \"Required parameter loginUserCommand was null or undefined when calling authAuthenticate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/auth`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<TokenModel>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: loginUserCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get new token by refresh token.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenModel>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenModel>>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenModel>>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const refreshTokenCommand = requestParameters?.refreshTokenCommand;\n if (refreshTokenCommand === null || refreshTokenCommand === undefined) {\n throw new Error(\n \"Required parameter refreshTokenCommand was null or undefined when calling authRefreshToken.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/auth`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<TokenModel>(\n \"put\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: refreshTokenCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { PermissionBundleDto } from \"../model/permission-bundle-dto\";\n// @ts-ignore\nimport { SavePermissionBundleDto } from \"../model/save-permission-bundle-dto\";\n// @ts-ignore\nimport { SearchPermissionBundleDtoPagedListMetadataDto } from \"../model/search-permission-bundle-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n PermissionBundlesApiServiceInterface,\n PermissionBundlesCreatePermissionBundleRequestParams,\n PermissionBundlesGetPermissionBundleRequestParams,\n PermissionBundlesRemovePermissionBundleRequestParams,\n PermissionBundlesRestorePermissionBundleRequestParams,\n PermissionBundlesSearchPermissionBundlesRequestParams,\n PermissionBundlesUpdatePermissionBundleRequestParams,\n} from \"./permission-bundles-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class PermissionBundlesApiService\n extends BaseService\n implements PermissionBundlesApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Create permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const savePermissionBundleDto = requestParameters?.savePermissionBundleDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: savePermissionBundleDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PermissionBundleDto>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PermissionBundleDto>>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PermissionBundleDto>>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesGetPermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<PermissionBundleDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesRemovePermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Restore permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesRestorePermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/restore`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Search permission bundles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchPermissionBundleDtoPagedListMetadataDto>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchPermissionBundleDtoPagedListMetadataDto>>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchPermissionBundleDtoPagedListMetadataDto>>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchPermissionBundleDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesUpdatePermissionBundle.\",\n );\n }\n const savePermissionBundleDto = requestParameters?.savePermissionBundleDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: savePermissionBundleDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { PermissionDto } from \"../model/permission-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport { PermissionsApiServiceInterface } from \"./permissions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class PermissionsApiService\n extends BaseService\n implements PermissionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get all system permissions.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionsGetPermissions(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Array<PermissionDto>>;\n public permissionsGetPermissions(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Array<PermissionDto>>>;\n public permissionsGetPermissions(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Array<PermissionDto>>>;\n public permissionsGetPermissions(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permissions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<Array<PermissionDto>>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RegionLevel } from \"../model/region-level\";\n// @ts-ignore\nimport { SearchRegionDtoPagedListMetadataDto } from \"../model/search-region-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RegionsApiServiceInterface,\n RegionsSearchRegionsRequestParams,\n} from \"./regions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RegionsApiService\n extends BaseService\n implements RegionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Search regions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRegionDtoPagedListMetadataDto>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRegionDtoPagedListMetadataDto>>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRegionDtoPagedListMetadataDto>>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const code = requestParameters?.code;\n const level = requestParameters?.level;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>code,\n \"Code\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>level,\n \"Level\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRegionDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryRepContactDto } from \"../model/rep-territory-rep-contact-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryRepContactDto } from \"../model/save-rep-territory-rep-contact-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepContactsApiServiceInterface,\n RepContactsGetRepTerritoryRepContactRequestParams,\n RepContactsRemoveRepTerritoryRepContactRequestParams,\n RepContactsUpdateRepTerritoryRepContactRequestParams,\n} from \"./rep-contacts-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepContactsApiService\n extends BaseService\n implements RepContactsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryRepContactDto>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryRepContactDto>>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryRepContactDto>>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsGetRepTerritoryRepContact.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryRepContactDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsRemoveRepTerritoryRepContact.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsUpdateRepTerritoryRepContact.\",\n );\n }\n const saveRepTerritoryRepContactDto =\n requestParameters?.saveRepTerritoryRepContactDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryRepContactDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryDto } from \"../model/rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryDto } from \"../model/save-rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryLocationDto } from \"../model/save-rep-territory-location-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryRepContactDto } from \"../model/save-rep-territory-rep-contact-dto\";\n// @ts-ignore\nimport { SearchRepTerritoryDtoPagedListMetadataDto } from \"../model/search-rep-territory-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepTerritoriesApiServiceInterface,\n RepTerritoriesCreateRepTerritoryRequestParams,\n RepTerritoriesCreateRepTerritoryLocationRequestParams,\n RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n RepTerritoriesGetRepTerritoryRequestParams,\n RepTerritoriesRemoveRepTerritoryRequestParams,\n RepTerritoriesSearchRepTerritoriesRequestParams,\n RepTerritoriesUpdateRepTerritoryRequestParams,\n} from \"./rep-territories-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepTerritoriesApiService\n extends BaseService\n implements RepTerritoriesApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Create REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const saveRepTerritoryDto = requestParameters?.saveRepTerritoryDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesCreateRepTerritoryLocation.\",\n );\n }\n const saveRepTerritoryLocationDto =\n requestParameters?.saveRepTerritoryLocationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/locations`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryLocationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create REP territory REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesCreateRepTerritoryRepContact.\",\n );\n }\n const saveRepTerritoryRepContactDto =\n requestParameters?.saveRepTerritoryRepContactDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryRepContactDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryDto>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryDto>>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryDto>>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesGetRepTerritory.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesRemoveRepTerritory.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search REP territories.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRepTerritoryDtoPagedListMetadataDto>>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRepTerritoryDtoPagedListMetadataDto>>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repName = requestParameters?.repName;\n const repCode = requestParameters?.repCode;\n const rsdRegionName = requestParameters?.rsdRegionName;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repName,\n \"RepName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repCode,\n \"RepCode\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>rsdRegionName,\n \"RsdRegionName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRepTerritoryDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesUpdateRepTerritory.\",\n );\n }\n const saveRepTerritoryDto = requestParameters?.saveRepTerritoryDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryLocationDto } from \"../model/rep-territory-location-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryLocationDto } from \"../model/save-rep-territory-location-dto\";\n// @ts-ignore\nimport { SearchRepTerritoryLocationDtoPagedListMetadataDto } from \"../model/search-rep-territory-location-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepTerritoryLocationsApiServiceInterface,\n RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n} from \"./rep-territory-locations-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepTerritoryLocationsApiService\n extends BaseService\n implements RepTerritoryLocationsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryLocationDto>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryLocationDto>>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryLocationDto>>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsGetRepTerritoryLocation.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryLocationDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsRemoveRepTerritoryLocation.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search REP territory locations.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<\n HttpResponse<SearchRepTerritoryLocationDtoPagedListMetadataDto>\n >;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const repTerritoryId = requestParameters?.repTerritoryId;\n const repName = requestParameters?.repName;\n const allCounties = requestParameters?.allCounties;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repTerritoryId,\n \"RepTerritoryId\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repName,\n \"RepName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>allCounties,\n \"AllCounties\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRepTerritoryLocationDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsUpdateRepTerritoryLocation.\",\n );\n }\n const saveRepTerritoryLocationDto =\n requestParameters?.saveRepTerritoryLocationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryLocationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { CreateDocumentsDto } from \"../model/create-documents-dto\";\n// @ts-ignore\nimport { CreateRsdRegionDto } from \"../model/create-rsd-region-dto\";\n// @ts-ignore\nimport { CreateUploadUrlCommand } from \"../model/create-upload-url-command\";\n// @ts-ignore\nimport { RemoveDocumentsCommand } from \"../model/remove-documents-command\";\n// @ts-ignore\nimport { RsdRegionDto } from \"../model/rsd-region-dto\";\n// @ts-ignore\nimport { SearchRsdRegionDtoPagedListMetadataDto } from \"../model/search-rsd-region-dto-paged-list-metadata-dto\";\n// @ts-ignore\nimport { UpdateRsdRegionDto } from \"../model/update-rsd-region-dto\";\n// @ts-ignore\nimport { UploadUrlResult } from \"../model/upload-url-result\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RsdRegionsApiServiceInterface,\n RsdRegionsCreateDocumentDownloadUrlRequestParams,\n RsdRegionsCreateDocumentUploadUrlRequestParams,\n RsdRegionsCreateRsdRegionRequestParams,\n RsdRegionsCreateRsdRegionDocumentsRequestParams,\n RsdRegionsGetRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n RsdRegionsSearchRsdRegionsRequestParams,\n RsdRegionsUpdateRsdRegionRequestParams,\n} from \"./rsd-regions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RsdRegionsApiService\n extends BaseService\n implements RsdRegionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Generate cloud URL for RSD region document uploading.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const rsdRegionId = requestParameters?.rsdRegionId;\n if (rsdRegionId === null || rsdRegionId === undefined) {\n throw new Error(\n \"Required parameter rsdRegionId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.\",\n );\n }\n const documentId = requestParameters?.documentId;\n if (documentId === null || documentId === undefined) {\n throw new Error(\n \"Required parameter documentId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"rsdRegionId\", value: rsdRegionId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/documents/${this.configuration.encodeParam({ name: \"documentId\", value: documentId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/download-url`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"get\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Generate cloud URL for RSD region document uploading.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UploadUrlResult>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UploadUrlResult>>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UploadUrlResult>>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const createUploadUrlCommand = requestParameters?.createUploadUrlCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/documents/upload-url`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<UploadUrlResult>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: createUploadUrlCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create RSD region.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const createRsdRegionDto = requestParameters?.createRsdRegionDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: createRsdRegionDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create RSD region documents.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsCreateRsdRegionDocuments.\",\n );\n }\n const createDocumentsDto = requestParameters?.createDocumentsDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/documents`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: createDocumentsDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Get RSD region by id.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RsdRegionDto>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RsdRegionDto>>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RsdRegionDto>>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsGetRsdRegion.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RsdRegionDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove RSD region by id.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsRemoveRsdRegion.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove RSD region documents.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const removeDocumentsCommand = requestParameters?.removeDocumentsCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/documents`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: removeDocumentsCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search RSD regions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRsdRegionDtoPagedListMetadataDto>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRsdRegionDtoPagedListMetadataDto>>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRsdRegionDtoPagedListMetadataDto>>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const isActive = requestParameters?.isActive;\n const rsdUserIds = requestParameters?.rsdUserIds;\n const repTerritoryIds = requestParameters?.repTerritoryIds;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>isActive,\n \"IsActive\",\n );\n if (rsdUserIds) {\n rsdUserIds.forEach((element) => {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>element,\n \"RsdUserIds\",\n );\n });\n }\n if (repTerritoryIds) {\n repTerritoryIds.forEach((element) => {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>element,\n \"RepTerritoryIds\",\n );\n });\n }\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRsdRegionDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update RSD region.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const updateRsdRegionDto = requestParameters?.updateRsdRegionDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: updateRsdRegionDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { SaveUserDesignConditionsDto } from \"../model/save-user-design-conditions-dto\";\n// @ts-ignore\nimport { UserDesignConditionsDto } from \"../model/user-design-conditions-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n UserDesignConditionsApiServiceInterface,\n UserDesignConditionsGetProjectDesignConditionsRequestParams,\n UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n} from \"./user-design-conditions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserDesignConditionsApiService\n extends BaseService\n implements UserDesignConditionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get user design conditions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserDesignConditionsDto>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserDesignConditionsDto>>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserDesignConditionsDto>>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userId = requestParameters?.userId;\n if (userId === null || userId === undefined) {\n throw new Error(\n \"Required parameter userId was null or undefined when calling userDesignConditionsGetProjectDesignConditions.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/design-conditions/${this.configuration.encodeParam({ name: \"userId\", value: userId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<UserDesignConditionsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Save user design conditions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const saveUserDesignConditionsDto =\n requestParameters?.saveUserDesignConditionsDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/design-conditions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveUserDesignConditionsDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { EmailConfirmationTokenDto } from \"../model/email-confirmation-token-dto\";\n// @ts-ignore\nimport { ForgotPasswordCommand } from \"../model/forgot-password-command\";\n// @ts-ignore\nimport { Int32IdDto } from \"../model/int32-id-dto\";\n// @ts-ignore\nimport { RepTerritoryContactsDto } from \"../model/rep-territory-contacts-dto\";\n// @ts-ignore\nimport { ResetPasswordCommand } from \"../model/reset-password-command\";\n// @ts-ignore\nimport { UserEmailDto } from \"../model/user-email-dto\";\n// @ts-ignore\nimport { UserRegistrationDto } from \"../model/user-registration-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n UsersApiServiceInterface,\n UsersConfirmEmailRequestParams,\n UsersForgotPasswordRequestParams,\n UsersGetRepContactsRequestParams,\n UsersRegisterUserRequestParams,\n UsersRequestConfirmEmailRequestParams,\n UsersResetPasswordRequestParams,\n} from \"./users-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UsersApiService\n extends BaseService\n implements UsersApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Confirm email address using the verification code from email and continue registration.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const emailConfirmationTokenDto =\n requestParameters?.emailConfirmationTokenDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/confirm-email`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: emailConfirmationTokenDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Forgot password request.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const forgotPasswordCommand = requestParameters?.forgotPasswordCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/forgot-password`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: forgotPasswordCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Get current user REP contacts.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersGetCurrentRepContacts(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryContactsDto>;\n public usersGetCurrentRepContacts(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryContactsDto>>;\n public usersGetCurrentRepContacts(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryContactsDto>>;\n public usersGetCurrentRepContacts(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/me/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryContactsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get user REP contacts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryContactsDto>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryContactsDto>>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryContactsDto>>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userId = requestParameters?.userId;\n if (userId === null || userId === undefined) {\n throw new Error(\n \"Required parameter userId was null or undefined when calling usersGetRepContacts.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/${this.configuration.encodeParam({ name: \"userId\", value: userId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryContactsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Register user.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Int32IdDto>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Int32IdDto>>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Int32IdDto>>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userRegistrationDto = requestParameters?.userRegistrationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<Int32IdDto>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userRegistrationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Request email confirmation and begin registration. This endpoint sends verification email to a given address.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userEmailDto = requestParameters?.userEmailDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/request-email`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: userEmailDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Reset user\\'s password.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const resetPasswordCommand = requestParameters?.resetPasswordCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/reset-password`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: resetPasswordCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","export * from \"./auth-api\";\nimport { AuthApiService } from \"./auth-api\";\nexport * from \"./auth-apiInterface\";\nexport * from \"./permission-bundles-api\";\nimport { PermissionBundlesApiService } from \"./permission-bundles-api\";\nexport * from \"./permission-bundles-apiInterface\";\nexport * from \"./permissions-api\";\nimport { PermissionsApiService } from \"./permissions-api\";\nexport * from \"./permissions-apiInterface\";\nexport * from \"./regions-api\";\nimport { RegionsApiService } from \"./regions-api\";\nexport * from \"./regions-apiInterface\";\nexport * from \"./rep-contacts-api\";\nimport { RepContactsApiService } from \"./rep-contacts-api\";\nexport * from \"./rep-contacts-apiInterface\";\nexport * from \"./rep-territories-api\";\nimport { RepTerritoriesApiService } from \"./rep-territories-api\";\nexport * from \"./rep-territories-apiInterface\";\nexport * from \"./rep-territory-locations-api\";\nimport { RepTerritoryLocationsApiService } from \"./rep-territory-locations-api\";\nexport * from \"./rep-territory-locations-apiInterface\";\nexport * from \"./rsd-regions-api\";\nimport { RsdRegionsApiService } from \"./rsd-regions-api\";\nexport * from \"./rsd-regions-apiInterface\";\nexport * from \"./user-design-conditions-api\";\nimport { UserDesignConditionsApiService } from \"./user-design-conditions-api\";\nexport * from \"./user-design-conditions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [\n AuthApiService,\n PermissionBundlesApiService,\n PermissionsApiService,\n RegionsApiService,\n RepContactsApiService,\n RepTerritoriesApiService,\n RepTerritoryLocationsApiService,\n RsdRegionsApiService,\n UserDesignConditionsApiService,\n UsersApiService,\n];\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico\n */\nexport enum AddressCountry {\n Unknown = \"Unknown\",\n\n UnitedStates = \"UnitedStates\",\n\n Canada = \"Canada\",\n\n Mexico = \"Mexico\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Address.\n */\nexport interface AddressDto {\n /**\n * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico\n */\n country: AddressDtoCountryEnum;\n address1: string;\n address2: string;\n city: string;\n county: string;\n state: string;\n postalCode: string;\n apartmentNumber: string;\n}\nexport enum AddressDtoCountryEnum {\n Unknown = \"Unknown\",\n UnitedStates = \"UnitedStates\",\n Canada = \"Canada\",\n Mexico = \"Mexico\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\nexport enum CoolingDesignBasis {\n Cooling = \"Cooling\",\n\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to create RenewAire.Cores.Domain.Users.RsdRegion.\n */\nexport interface CreateRsdRegionDto {\n name: string;\n notes: string;\n tags: Array<string>;\n /**\n * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.\n */\n primaryRsdUserId: number;\n /**\n * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.CreateRsdRegionDto.PrimaryRsdUserId.\n */\n rsdUserIds: Array<number>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to generate URL to upload RenewAire.Cores.Domain.Users.RsdRegionDocument.\n */\nexport interface CreateUploadUrlCommand {\n fileName: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb\n */\nexport enum DesignWeatherMode {\n RelativeHumidity = \"RelativeHumidity\",\n\n WetBulb = \"WetBulb\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\nexport interface DistanceDto {\n feet: number;\n meters: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Email confirmation token DTO.\n */\nexport interface EmailConfirmationTokenDto {\n /**\n * Email address.\n */\n email: string;\n /**\n * Confirmation token (code).\n */\n token: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.File.\n */\nexport interface FileDto {\n name: string;\n contentType: string;\n /**\n * URL to endpoint to get pre-signed URL for file.\n */\n preSignedUrlEndpoint?: string | null;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command for forgot password processing.\n */\nexport interface ForgotPasswordCommand {\n /**\n * Email.\n */\n email: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to return Id of entity.\n */\nexport interface Int32IdDto {\n id: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Login user command.\n */\nexport interface LoginUserCommand {\n /**\n * Username (email).\n */\n userName: string;\n /**\n * Password.\n */\n password: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface OffsetLimitListMetadata {\n totalCount: number;\n offset: number;\n limit: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface PagedListMetadata {\n totalCount: number;\n offset: number;\n limit: number;\n page: number;\n pageSize: number;\n totalPages: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Permission<br />0 = SystemAdmin<br />1 = UserAdministration\n */\nexport enum Permission {\n SystemAdmin = \"SystemAdmin\",\n\n UserAdministration = \"UserAdministration\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Users.Permission.\n */\nexport interface PermissionDto {\n /**\n * Identifier. Enum key.\n */\n id: number;\n /**\n * Name.\n */\n name: string;\n /**\n * Description.\n */\n description: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Physical address.\n */\nexport interface PhysicalAddressDto {\n /**\n * Address display name.\n */\n displayAddress: string;\n street1: string;\n stateCode: string;\n /**\n * Country name.\n */\n country: string;\n /**\n * Postal code.\n */\n postalCode: string;\n apartmentNumber?: string | null;\n street2?: string | null;\n county?: string | null;\n city?: string | null;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Refresh token command.\n */\nexport interface RefreshTokenCommand {\n /**\n * User token.\n */\n token: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Region.\n */\nexport interface RegionDto {\n id: object;\n /**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\n level: RegionDtoLevelEnum;\n name: string;\n code: string;\n}\nexport enum RegionDtoLevelEnum {\n Country = \"Country\",\n State = \"State\",\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\nexport enum RegionLevel {\n Country = \"Country\",\n\n State = \"State\",\n\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to remove list of RenewAire.Cores.Domain.Users.RsdRegionDocument.\n */\nexport interface RemoveDocumentsCommand {\n /**\n * RSD region document ids to remove.\n */\n rsdRegionDocumentIds: Array<object>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to reset the password.\n */\nexport interface ResetPasswordCommand {\n /**\n * Email.\n */\n email: string;\n /**\n * Token received from \\\"forgot password\\\" email.\n */\n token: string;\n /**\n * New password to set.\n */\n newPassword: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RSD region REP territory DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionRepTerritoryDto {\n id: object;\n name: string;\n externalDisplayName: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RSD region assign user DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionUserDto {\n /**\n * User id.\n */\n id: number;\n firstName: string;\n lastName: string;\n isPrimary: boolean;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Save REP territory location DTO.\n */\nexport interface SaveRepTerritoryLocationDto {\n name: string;\n allCounties: boolean;\n regions: Array<object>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DistanceDto } from \"./distance-dto\";\nimport { UserDesignWeatherConditionDto } from \"./user-design-weather-condition-dto\";\n\n/**\n * DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.\n */\nexport interface SaveUserDesignConditionsDto {\n userId: number;\n weatherStationState: string;\n weatherStation: string;\n coolingPercentileDay: number;\n heatingPercentileDay: number;\n /**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\n coolingDesignBasis: SaveUserDesignConditionsDtoCoolingDesignBasisEnum;\n /**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\n elevation: DistanceDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerReturnAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterReturnAir: UserDesignWeatherConditionDto;\n}\nexport enum SaveUserDesignConditionsDtoCoolingDesignBasisEnum {\n Cooling = \"Cooling\",\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Search permission bundle DTO.\n */\nexport interface SearchPermissionBundleDto {\n id: object;\n name: string;\n description: string;\n isSystem: boolean;\n /**\n * Is active. Not removed permission bundle.\n */\n isActive: boolean;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for searching RenewAire.Cores.Domain.Region.\n */\nexport interface SearchRegionDto {\n id: object;\n /**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\n level: SearchRegionDtoLevelEnum;\n name: string;\n code: string;\n parentRegionId?: object | null;\n}\nexport enum SearchRegionDtoLevelEnum {\n Country = \"Country\",\n State = \"State\",\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\nexport interface TemperatureDto {\n celsius: number;\n fahrenheit: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * API generated token model.\n */\nexport interface TokenModel {\n /**\n * Token.\n */\n token: string;\n /**\n * Token expiration in seconds.\n */\n expiresIn: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TotalCountListMetadata {\n totalCount: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to update RenewAire.Cores.Domain.Users.RsdRegion.\n */\nexport interface UpdateRsdRegionDto {\n id: object;\n name: string;\n notes: string;\n tags: Array<string>;\n /**\n * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.\n */\n primaryRsdUserId: number;\n /**\n * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.UpdateRsdRegionDto.PrimaryRsdUserId.\n */\n rsdUserIds: Array<number>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Represents metadata for an uploaded file.\n */\nexport interface UploadFileDto {\n /**\n * A temporary file id that is assigned when a pre-signed URL is received.\n */\n fileId: string;\n name: string;\n contentType: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * The result of creating a pre-signed URL to uploading file to the BLOB storage.\n */\nexport interface UploadUrlResult {\n /**\n * Temporary file id.\n */\n fileId: string;\n /**\n * Pre-signed URL to file.\n */\n preSignedUrl: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DistanceDto } from \"./distance-dto\";\nimport { UserDesignWeatherConditionDto } from \"./user-design-weather-condition-dto\";\n\n/**\n * User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\nexport interface UserDesignConditionsDto {\n userId: number;\n weatherStationState: string;\n weatherStation: string;\n coolingPercentileDay: number;\n heatingPercentileDay: number;\n /**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\n coolingDesignBasis: UserDesignConditionsDtoCoolingDesignBasisEnum;\n /**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\n elevation: DistanceDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerReturnAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterReturnAir: UserDesignWeatherConditionDto;\n}\nexport enum UserDesignConditionsDtoCoolingDesignBasisEnum {\n Cooling = \"Cooling\",\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { TemperatureDto } from \"./temperature-dto\";\n\n/**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\nexport interface UserDesignWeatherConditionDto {\n /**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\n dryBulb: TemperatureDto;\n /**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\n wetBulb: TemperatureDto;\n relativeHumidity: number;\n /**\n * DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb\n */\n designWeatherMode: UserDesignWeatherConditionDtoDesignWeatherModeEnum;\n}\nexport enum UserDesignWeatherConditionDtoDesignWeatherModeEnum {\n RelativeHumidity = \"RelativeHumidity\",\n WetBulb = \"WetBulb\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User email DTO.\n */\nexport interface UserEmailDto {\n /**\n * <inheritdoc cref=\\\"P:RenewAire.Cores.Domain.Users.User.Email\\\" />.\n */\n email: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User preferences DTO.\n */\nexport interface UserPreferencesDto {\n occupation: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User profile DTO.\n */\nexport interface UserProfileDto {\n firstName: string;\n lastName: string;\n company: string;\n title: string;\n /**\n * Phone number.\n */\n workPhoneNumber: string;\n /**\n * Work phone number extension. Optional.\n */\n workPhoneNumberExt?: string | null;\n /**\n * Work phone.\n */\n mobilePhoneNumber?: string | null;\n}\n","import {\n NgModule,\n ModuleWithProviders,\n SkipSelf,\n Optional,\n} from \"@angular/core\";\nimport { Configuration } from \"./configuration\";\nimport { HttpClient } from \"@angular/common/http\";\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [],\n})\nexport class ApiModule {\n public static forRoot(\n configurationFactory: () => Configuration,\n ): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [{ provide: Configuration, useFactory: configurationFactory }],\n };\n }\n\n constructor(\n @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient,\n ) {\n if (parentModule) {\n throw new Error(\n \"ApiModule is already loaded. Import in your base AppModule only.\",\n );\n }\n if (!http) {\n throw new Error(\n \"You need to import the HttpClientModule in your AppModule! \\n\" +\n \"See also https://github.com/angular/angular/issues/20575\",\n );\n }\n }\n}\n","import { EnvironmentProviders, makeEnvironmentProviders } from \"@angular/core\";\nimport { Configuration, ConfigurationParameters } from \"./configuration\";\nimport { BASE_PATH } from \"./variables\";\n\n// Returns the service class providers, to be used in the [ApplicationConfig](https://angular.dev/api/core/ApplicationConfig).\nexport function provideApi(\n configOrBasePath: string | ConfigurationParameters,\n): EnvironmentProviders {\n return makeEnvironmentProviders([\n typeof configOrBasePath === \"string\"\n ? { provide: BASE_PATH, useValue: configOrBasePath }\n : {\n provide: Configuration,\n useValue: new Configuration({ ...configOrBasePath }),\n },\n ]);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"saritasa-renewaire-frontend-sdk.mjs","sources":["../../variables.ts","../../encoder.ts","../../configuration.ts","../../api.base.service.ts","../../api/auth-api.ts","../../api/permission-bundles-api.ts","../../api/permissions-api.ts","../../api/regions-api.ts","../../api/rep-contacts-api.ts","../../api/rep-territories-api.ts","../../api/rep-territory-locations-api.ts","../../api/rsd-regions-api.ts","../../api/user-design-conditions-api.ts","../../api/users-api.ts","../../api/api.ts","../../model/address-country.ts","../../model/address-dto.ts","../../model/cooling-design-basis.ts","../../model/create-rsd-region-dto.ts","../../model/create-upload-url-command.ts","../../model/design-weather-mode.ts","../../model/distance-dto.ts","../../model/email-confirmation-token-dto.ts","../../model/file-dto.ts","../../model/forgot-password-command.ts","../../model/int32-id-dto.ts","../../model/login-user-command.ts","../../model/offset-limit-list-metadata.ts","../../model/paged-list-metadata.ts","../../model/permission.ts","../../model/permission-dto.ts","../../model/physical-address-dto.ts","../../model/post-pre-signed-url-dto.ts","../../model/refresh-token-command.ts","../../model/region-dto.ts","../../model/region-level.ts","../../model/remove-documents-command.ts","../../model/reset-password-command.ts","../../model/rsd-region-rep-territory-dto.ts","../../model/rsd-region-user-dto.ts","../../model/save-rep-territory-location-dto.ts","../../model/save-user-design-conditions-dto.ts","../../model/search-permission-bundle-dto.ts","../../model/search-region-dto.ts","../../model/temperature-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.ts","../../model/update-rsd-region-dto.ts","../../model/upload-file-dto.ts","../../model/user-design-conditions-dto.ts","../../model/user-design-weather-condition-dto.ts","../../model/user-email-dto.ts","../../model/user-preferences-dto.ts","../../model/user-profile-dto.ts","../../api.module.ts","../../provide-api.ts","../../saritasa-renewaire-frontend-sdk.ts"],"sourcesContent":["import { InjectionToken } from \"@angular/core\";\n\nexport const BASE_PATH = new InjectionToken<string>(\"basePath\");\nexport const COLLECTION_FORMATS = {\n csv: \",\",\n tsv: \" \",\n ssv: \" \",\n pipes: \"|\",\n};\n","import { HttpParameterCodec } from \"@angular/common/http\";\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n","import {\n HttpHeaders,\n HttpParams,\n HttpParameterCodec,\n} from \"@angular/common/http\";\nimport { Param } from \"./param\";\n\nexport interface ConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: { [key: string]: string | (() => string | undefined) };\n}\n\nexport class Configuration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: { [key: string]: string };\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: { [key: string]: string | (() => string | undefined) };\n\n constructor({\n accessToken,\n apiKeys,\n basePath,\n credentials,\n encodeParam,\n encoder,\n password,\n username,\n withCredentials,\n }: ConfigurationParameters = {}) {\n if (apiKeys) {\n this.apiKeys = apiKeys;\n }\n if (username !== undefined) {\n this.username = username;\n }\n if (password !== undefined) {\n this.password = password;\n }\n if (accessToken !== undefined) {\n this.accessToken = accessToken;\n }\n if (basePath !== undefined) {\n this.basePath = basePath;\n }\n if (withCredentials !== undefined) {\n this.withCredentials = withCredentials;\n }\n if (encoder) {\n this.encoder = encoder;\n }\n this.encodeParam =\n encodeParam ?? ((param) => this.defaultEncodeParam(param));\n this.credentials = credentials ?? {};\n\n // init default Bearer credential\n if (!this.credentials[\"Bearer\"]) {\n this.credentials[\"Bearer\"] = () => {\n return typeof this.accessToken === \"function\"\n ? this.accessToken()\n : this.accessToken;\n };\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType(contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp(\n \"^(application/json|[^;/ \\t]+/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$\",\n \"i\",\n );\n return (\n mime !== null &&\n (jsonMime.test(mime) ||\n mime.toLowerCase() === \"application/json-patch+json\")\n );\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === \"function\" ? value() : value;\n }\n\n public addCredentialToHeaders(\n credentialKey: string,\n headerName: string,\n headers: HttpHeaders,\n prefix?: string,\n ): HttpHeaders {\n const value = this.lookupCredential(credentialKey);\n return value ? headers.set(headerName, (prefix ?? \"\") + value) : headers;\n }\n\n public addCredentialToQuery(\n credentialKey: string,\n paramName: string,\n query: HttpParams,\n ): HttpParams {\n const value = this.lookupCredential(credentialKey);\n return value ? query.set(paramName, value) : query;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value =\n param.dataFormat === \"date-time\" && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport {\n HttpHeaders,\n HttpParams,\n HttpParameterCodec,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"./encoder\";\nimport { Configuration } from \"./configuration\";\n\nexport class BaseService {\n protected basePath = \"http://localhost\";\n public defaultHeaders = new HttpHeaders();\n public configuration: Configuration;\n public encoder: HttpParameterCodec;\n\n constructor(basePath?: string | string[], configuration?: Configuration) {\n this.configuration = configuration || new Configuration();\n if (typeof this.configuration.basePath !== \"string\") {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== \"string\") {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n protected canConsumeForm(consumes: string[]): boolean {\n return consumes.indexOf(\"multipart/form-data\") !== -1;\n }\n\n protected addToHttpParams(\n httpParams: HttpParams,\n value: any,\n key?: string,\n isDeep: boolean = false,\n ): HttpParams {\n // If the value is an object (but not a Date), recursively add its keys.\n if (typeof value === \"object\" && !(value instanceof Date)) {\n return this.addToHttpParamsRecursive(\n httpParams,\n value,\n isDeep ? key : undefined,\n isDeep,\n );\n }\n return this.addToHttpParamsRecursive(httpParams, value, key);\n }\n\n protected addToHttpParamsRecursive(\n httpParams: HttpParams,\n value?: any,\n key?: string,\n isDeep: boolean = false,\n ): HttpParams {\n if (value === null || value === undefined) {\n return httpParams;\n }\n if (typeof value === \"object\") {\n // If JSON format is preferred, key must be provided.\n if (key != null) {\n return isDeep\n ? Object.keys(value as Record<string, any>).reduce(\n (hp, k) => hp.append(`${key}[${k}]`, value[k]),\n httpParams,\n )\n : httpParams.append(key, JSON.stringify(value));\n }\n // Otherwise, if it's an array, add each element.\n if (Array.isArray(value)) {\n value.forEach(\n (elem) =>\n (httpParams = this.addToHttpParamsRecursive(httpParams, elem, key)),\n );\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(key, value.toISOString());\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach((k) => {\n const paramKey = key ? `${key}.${k}` : k;\n httpParams = this.addToHttpParamsRecursive(\n httpParams,\n value[k],\n paramKey,\n );\n });\n }\n return httpParams;\n } else if (key != null) {\n return httpParams.append(key, value);\n }\n throw Error(\"key may not be null if value is not object or array\");\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { LoginUserCommand } from \"../model/login-user-command\";\n// @ts-ignore\nimport { RefreshTokenCommand } from \"../model/refresh-token-command\";\n// @ts-ignore\nimport { TokenModel } from \"../model/token-model\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n AuthApiServiceInterface,\n AuthAuthenticateRequestParams,\n AuthRefreshTokenRequestParams,\n} from \"./auth-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class AuthApiService\n extends BaseService\n implements AuthApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Authenticate user by email and password.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenModel>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenModel>>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenModel>>;\n public authAuthenticate(\n requestParameters: AuthAuthenticateRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const loginUserCommand = requestParameters?.loginUserCommand;\n if (loginUserCommand === null || loginUserCommand === undefined) {\n throw new Error(\n \"Required parameter loginUserCommand was null or undefined when calling authAuthenticate.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/auth`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<TokenModel>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: loginUserCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get new token by refresh token.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<TokenModel>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<TokenModel>>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<TokenModel>>;\n public authRefreshToken(\n requestParameters: AuthRefreshTokenRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const refreshTokenCommand = requestParameters?.refreshTokenCommand;\n if (refreshTokenCommand === null || refreshTokenCommand === undefined) {\n throw new Error(\n \"Required parameter refreshTokenCommand was null or undefined when calling authRefreshToken.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/auth`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<TokenModel>(\n \"put\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: refreshTokenCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { PermissionBundleDto } from \"../model/permission-bundle-dto\";\n// @ts-ignore\nimport { SavePermissionBundleDto } from \"../model/save-permission-bundle-dto\";\n// @ts-ignore\nimport { SearchPermissionBundleDtoPagedListMetadataDto } from \"../model/search-permission-bundle-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n PermissionBundlesApiServiceInterface,\n PermissionBundlesCreatePermissionBundleRequestParams,\n PermissionBundlesGetPermissionBundleRequestParams,\n PermissionBundlesRemovePermissionBundleRequestParams,\n PermissionBundlesRestorePermissionBundleRequestParams,\n PermissionBundlesSearchPermissionBundlesRequestParams,\n PermissionBundlesUpdatePermissionBundleRequestParams,\n} from \"./permission-bundles-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class PermissionBundlesApiService\n extends BaseService\n implements PermissionBundlesApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Create permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public permissionBundlesCreatePermissionBundle(\n requestParameters?: PermissionBundlesCreatePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const savePermissionBundleDto = requestParameters?.savePermissionBundleDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: savePermissionBundleDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<PermissionBundleDto>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<PermissionBundleDto>>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<PermissionBundleDto>>;\n public permissionBundlesGetPermissionBundle(\n requestParameters: PermissionBundlesGetPermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesGetPermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<PermissionBundleDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesRemovePermissionBundle(\n requestParameters: PermissionBundlesRemovePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesRemovePermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Restore permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesRestorePermissionBundle(\n requestParameters: PermissionBundlesRestorePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesRestorePermissionBundle.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/restore`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Search permission bundles.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchPermissionBundleDtoPagedListMetadataDto>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchPermissionBundleDtoPagedListMetadataDto>>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchPermissionBundleDtoPagedListMetadataDto>>;\n public permissionBundlesSearchPermissionBundles(\n requestParameters?: PermissionBundlesSearchPermissionBundlesRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchPermissionBundleDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update permission bundle.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public permissionBundlesUpdatePermissionBundle(\n requestParameters: PermissionBundlesUpdatePermissionBundleRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const permissionBundleId = requestParameters?.permissionBundleId;\n if (permissionBundleId === null || permissionBundleId === undefined) {\n throw new Error(\n \"Required parameter permissionBundleId was null or undefined when calling permissionBundlesUpdatePermissionBundle.\",\n );\n }\n const savePermissionBundleDto = requestParameters?.savePermissionBundleDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permission-bundles/${this.configuration.encodeParam({ name: \"permissionBundleId\", value: permissionBundleId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: savePermissionBundleDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { PermissionDto } from \"../model/permission-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport { PermissionsApiServiceInterface } from \"./permissions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class PermissionsApiService\n extends BaseService\n implements PermissionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get all system permissions.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public permissionsGetPermissions(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Array<PermissionDto>>;\n public permissionsGetPermissions(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Array<PermissionDto>>>;\n public permissionsGetPermissions(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Array<PermissionDto>>>;\n public permissionsGetPermissions(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/permissions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<Array<PermissionDto>>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RegionLevel } from \"../model/region-level\";\n// @ts-ignore\nimport { SearchRegionDtoPagedListMetadataDto } from \"../model/search-region-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RegionsApiServiceInterface,\n RegionsSearchRegionsRequestParams,\n} from \"./regions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RegionsApiService\n extends BaseService\n implements RegionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Search regions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRegionDtoPagedListMetadataDto>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRegionDtoPagedListMetadataDto>>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRegionDtoPagedListMetadataDto>>;\n public regionsSearchRegions(\n requestParameters?: RegionsSearchRegionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const code = requestParameters?.code;\n const level = requestParameters?.level;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>code,\n \"Code\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>level,\n \"Level\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRegionDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryRepContactDto } from \"../model/rep-territory-rep-contact-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryRepContactDto } from \"../model/save-rep-territory-rep-contact-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepContactsApiServiceInterface,\n RepContactsGetRepTerritoryRepContactRequestParams,\n RepContactsRemoveRepTerritoryRepContactRequestParams,\n RepContactsUpdateRepTerritoryRepContactRequestParams,\n} from \"./rep-contacts-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepContactsApiService\n extends BaseService\n implements RepContactsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryRepContactDto>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryRepContactDto>>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryRepContactDto>>;\n public repContactsGetRepTerritoryRepContact(\n requestParameters: RepContactsGetRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsGetRepTerritoryRepContact.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryRepContactDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repContactsRemoveRepTerritoryRepContact(\n requestParameters: RepContactsRemoveRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsRemoveRepTerritoryRepContact.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repContactsUpdateRepTerritoryRepContact(\n requestParameters: RepContactsUpdateRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryRepContactId =\n requestParameters?.repTerritoryRepContactId;\n if (\n repTerritoryRepContactId === null ||\n repTerritoryRepContactId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryRepContactId was null or undefined when calling repContactsUpdateRepTerritoryRepContact.\",\n );\n }\n const saveRepTerritoryRepContactDto =\n requestParameters?.saveRepTerritoryRepContactDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-contacts/${this.configuration.encodeParam({ name: \"repTerritoryRepContactId\", value: repTerritoryRepContactId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryRepContactDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryDto } from \"../model/rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryDto } from \"../model/save-rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryLocationDto } from \"../model/save-rep-territory-location-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryRepContactDto } from \"../model/save-rep-territory-rep-contact-dto\";\n// @ts-ignore\nimport { SearchRepTerritoryDtoPagedListMetadataDto } from \"../model/search-rep-territory-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepTerritoriesApiServiceInterface,\n RepTerritoriesCreateRepTerritoryRequestParams,\n RepTerritoriesCreateRepTerritoryLocationRequestParams,\n RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n RepTerritoriesGetRepTerritoryRequestParams,\n RepTerritoriesRemoveRepTerritoryRequestParams,\n RepTerritoriesSearchRepTerritoriesRequestParams,\n RepTerritoriesUpdateRepTerritoryRequestParams,\n} from \"./rep-territories-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepTerritoriesApiService\n extends BaseService\n implements RepTerritoriesApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Create REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritory(\n requestParameters?: RepTerritoriesCreateRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const saveRepTerritoryDto = requestParameters?.saveRepTerritoryDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritoryLocation(\n requestParameters: RepTerritoriesCreateRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesCreateRepTerritoryLocation.\",\n );\n }\n const saveRepTerritoryLocationDto =\n requestParameters?.saveRepTerritoryLocationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/locations`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryLocationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create REP territory REP contact.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public repTerritoriesCreateRepTerritoryRepContact(\n requestParameters: RepTerritoriesCreateRepTerritoryRepContactRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesCreateRepTerritoryRepContact.\",\n );\n }\n const saveRepTerritoryRepContactDto =\n requestParameters?.saveRepTerritoryRepContactDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: saveRepTerritoryRepContactDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryDto>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryDto>>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryDto>>;\n public repTerritoriesGetRepTerritory(\n requestParameters: RepTerritoriesGetRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesGetRepTerritory.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoriesRemoveRepTerritory(\n requestParameters: RepTerritoriesRemoveRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesRemoveRepTerritory.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search REP territories.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRepTerritoryDtoPagedListMetadataDto>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRepTerritoryDtoPagedListMetadataDto>>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRepTerritoryDtoPagedListMetadataDto>>;\n public repTerritoriesSearchRepTerritories(\n requestParameters?: RepTerritoriesSearchRepTerritoriesRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repName = requestParameters?.repName;\n const repCode = requestParameters?.repCode;\n const rsdRegionName = requestParameters?.rsdRegionName;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repName,\n \"RepName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repCode,\n \"RepCode\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>rsdRegionName,\n \"RsdRegionName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRepTerritoryDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP territory.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoriesUpdateRepTerritory(\n requestParameters: RepTerritoriesUpdateRepTerritoryRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryId = requestParameters?.repTerritoryId;\n if (repTerritoryId === null || repTerritoryId === undefined) {\n throw new Error(\n \"Required parameter repTerritoryId was null or undefined when calling repTerritoriesUpdateRepTerritory.\",\n );\n }\n const saveRepTerritoryDto = requestParameters?.saveRepTerritoryDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territories/${this.configuration.encodeParam({ name: \"repTerritoryId\", value: repTerritoryId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { RepTerritoryLocationDto } from \"../model/rep-territory-location-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryLocationDto } from \"../model/save-rep-territory-location-dto\";\n// @ts-ignore\nimport { SearchRepTerritoryLocationDtoPagedListMetadataDto } from \"../model/search-rep-territory-location-dto-paged-list-metadata-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RepTerritoryLocationsApiServiceInterface,\n RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n} from \"./rep-territory-locations-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RepTerritoryLocationsApiService\n extends BaseService\n implements RepTerritoryLocationsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryLocationDto>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryLocationDto>>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryLocationDto>>;\n public repTerritoryLocationsGetRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsGetRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsGetRepTerritoryLocation.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryLocationDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoryLocationsRemoveRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsRemoveRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsRemoveRepTerritoryLocation.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search REP territory locations.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRepTerritoryLocationDtoPagedListMetadataDto>;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<\n HttpResponse<SearchRepTerritoryLocationDtoPagedListMetadataDto>\n >;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRepTerritoryLocationDtoPagedListMetadataDto>>;\n public repTerritoryLocationsSearchRepTerritoryLocations(\n requestParameters?: RepTerritoryLocationsSearchRepTerritoryLocationsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const repTerritoryId = requestParameters?.repTerritoryId;\n const repName = requestParameters?.repName;\n const allCounties = requestParameters?.allCounties;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repTerritoryId,\n \"RepTerritoryId\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>repName,\n \"RepName\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>allCounties,\n \"AllCounties\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRepTerritoryLocationDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update REP territory location.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public repTerritoryLocationsUpdateRepTerritoryLocation(\n requestParameters: RepTerritoryLocationsUpdateRepTerritoryLocationRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const repTerritoryLocationId = requestParameters?.repTerritoryLocationId;\n if (\n repTerritoryLocationId === null ||\n repTerritoryLocationId === undefined\n ) {\n throw new Error(\n \"Required parameter repTerritoryLocationId was null or undefined when calling repTerritoryLocationsUpdateRepTerritoryLocation.\",\n );\n }\n const saveRepTerritoryLocationDto =\n requestParameters?.saveRepTerritoryLocationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rep-territory-locations/${this.configuration.encodeParam({ name: \"repTerritoryLocationId\", value: repTerritoryLocationId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveRepTerritoryLocationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { CreateDocumentsDto } from \"../model/create-documents-dto\";\n// @ts-ignore\nimport { CreateRsdRegionDto } from \"../model/create-rsd-region-dto\";\n// @ts-ignore\nimport { CreateUploadUrlCommand } from \"../model/create-upload-url-command\";\n// @ts-ignore\nimport { RemoveDocumentsCommand } from \"../model/remove-documents-command\";\n// @ts-ignore\nimport { RsdRegionDto } from \"../model/rsd-region-dto\";\n// @ts-ignore\nimport { SearchRsdRegionDtoPagedListMetadataDto } from \"../model/search-rsd-region-dto-paged-list-metadata-dto\";\n// @ts-ignore\nimport { UpdateRsdRegionDto } from \"../model/update-rsd-region-dto\";\n// @ts-ignore\nimport { UploadUrlResult } from \"../model/upload-url-result\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RsdRegionsApiServiceInterface,\n RsdRegionsCreateDocumentDownloadUrlRequestParams,\n RsdRegionsCreateDocumentUploadUrlRequestParams,\n RsdRegionsCreateRsdRegionRequestParams,\n RsdRegionsCreateRsdRegionDocumentsRequestParams,\n RsdRegionsGetRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n RsdRegionsSearchRsdRegionsRequestParams,\n RsdRegionsUpdateRsdRegionRequestParams,\n} from \"./rsd-regions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class RsdRegionsApiService\n extends BaseService\n implements RsdRegionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Generate cloud URL for RSD region document uploading.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsCreateDocumentDownloadUrl(\n requestParameters: RsdRegionsCreateDocumentDownloadUrlRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const rsdRegionId = requestParameters?.rsdRegionId;\n if (rsdRegionId === null || rsdRegionId === undefined) {\n throw new Error(\n \"Required parameter rsdRegionId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.\",\n );\n }\n const documentId = requestParameters?.documentId;\n if (documentId === null || documentId === undefined) {\n throw new Error(\n \"Required parameter documentId was null or undefined when calling rsdRegionsCreateDocumentDownloadUrl.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"rsdRegionId\", value: rsdRegionId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/documents/${this.configuration.encodeParam({ name: \"documentId\", value: documentId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/download-url`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"get\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Generate cloud URL for RSD region document uploading.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UploadUrlResult>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UploadUrlResult>>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UploadUrlResult>>;\n public rsdRegionsCreateDocumentUploadUrl(\n requestParameters?: RsdRegionsCreateDocumentUploadUrlRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const createUploadUrlCommand = requestParameters?.createUploadUrlCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/documents/upload-url`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<UploadUrlResult>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: createUploadUrlCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create RSD region.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<object>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<object>>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<object>>;\n public rsdRegionsCreateRsdRegion(\n requestParameters?: RsdRegionsCreateRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const createRsdRegionDto = requestParameters?.createRsdRegionDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<object>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: createRsdRegionDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Create RSD region documents.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsCreateRsdRegionDocuments(\n requestParameters: RsdRegionsCreateRsdRegionDocumentsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsCreateRsdRegionDocuments.\",\n );\n }\n const createDocumentsDto = requestParameters?.createDocumentsDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/documents`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: createDocumentsDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Get RSD region by id.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RsdRegionDto>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RsdRegionDto>>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RsdRegionDto>>;\n public rsdRegionsGetRsdRegion(\n requestParameters: RsdRegionsGetRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsGetRsdRegion.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RsdRegionDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove RSD region by id.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsRemoveRsdRegion(\n requestParameters: RsdRegionsRemoveRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const id = requestParameters?.id;\n if (id === null || id === undefined) {\n throw new Error(\n \"Required parameter id was null or undefined when calling rsdRegionsRemoveRsdRegion.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/${this.configuration.encodeParam({ name: \"id\", value: id, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Remove RSD region documents.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsRemoveRsdRegionDocuments(\n requestParameters?: RsdRegionsRemoveRsdRegionDocumentsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const removeDocumentsCommand = requestParameters?.removeDocumentsCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions/documents`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\n \"delete\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: removeDocumentsCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Search RSD regions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<SearchRsdRegionDtoPagedListMetadataDto>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<SearchRsdRegionDtoPagedListMetadataDto>>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<SearchRsdRegionDtoPagedListMetadataDto>>;\n public rsdRegionsSearchRsdRegions(\n requestParameters?: RsdRegionsSearchRsdRegionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const name = requestParameters?.name;\n const isActive = requestParameters?.isActive;\n const rsdUserIds = requestParameters?.rsdUserIds;\n const repTerritoryIds = requestParameters?.repTerritoryIds;\n const orderBy = requestParameters?.orderBy;\n const page = requestParameters?.page;\n const pageSize = requestParameters?.pageSize;\n\n let localVarQueryParameters = new HttpParams({ encoder: this.encoder });\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>name,\n \"Name\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>isActive,\n \"IsActive\",\n );\n if (rsdUserIds) {\n rsdUserIds.forEach((element) => {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>element,\n \"RsdUserIds\",\n );\n });\n }\n if (repTerritoryIds) {\n repTerritoryIds.forEach((element) => {\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>element,\n \"RepTerritoryIds\",\n );\n });\n }\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>orderBy,\n \"OrderBy\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>page,\n \"Page\",\n );\n localVarQueryParameters = this.addToHttpParams(\n localVarQueryParameters,\n <any>pageSize,\n \"PageSize\",\n );\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<SearchRsdRegionDtoPagedListMetadataDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Update RSD region.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public rsdRegionsUpdateRsdRegion(\n requestParameters?: RsdRegionsUpdateRsdRegionRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const updateRsdRegionDto = requestParameters?.updateRsdRegionDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/rsd-regions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: updateRsdRegionDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { SaveUserDesignConditionsDto } from \"../model/save-user-design-conditions-dto\";\n// @ts-ignore\nimport { UserDesignConditionsDto } from \"../model/user-design-conditions-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n UserDesignConditionsApiServiceInterface,\n UserDesignConditionsGetProjectDesignConditionsRequestParams,\n UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n} from \"./user-design-conditions-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UserDesignConditionsApiService\n extends BaseService\n implements UserDesignConditionsApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Get user design conditions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<UserDesignConditionsDto>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<UserDesignConditionsDto>>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<UserDesignConditionsDto>>;\n public userDesignConditionsGetProjectDesignConditions(\n requestParameters: UserDesignConditionsGetProjectDesignConditionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userId = requestParameters?.userId;\n if (userId === null || userId === undefined) {\n throw new Error(\n \"Required parameter userId was null or undefined when calling userDesignConditionsGetProjectDesignConditions.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/design-conditions/${this.configuration.encodeParam({ name: \"userId\", value: userId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<UserDesignConditionsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Save user design conditions.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public userDesignConditionsSaveProjectDesignConditions(\n requestParameters?: UserDesignConditionsSaveProjectDesignConditionsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const saveUserDesignConditionsDto =\n requestParameters?.saveUserDesignConditionsDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/design-conditions`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: saveUserDesignConditionsDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from \"@angular/core\";\nimport {\n HttpClient,\n HttpHeaders,\n HttpParams,\n HttpResponse,\n HttpEvent,\n HttpParameterCodec,\n HttpContext,\n} from \"@angular/common/http\";\nimport { CustomHttpParameterCodec } from \"../encoder\";\nimport { Observable } from \"rxjs\";\n\n// @ts-ignore\nimport { EmailConfirmationTokenDto } from \"../model/email-confirmation-token-dto\";\n// @ts-ignore\nimport { ForgotPasswordCommand } from \"../model/forgot-password-command\";\n// @ts-ignore\nimport { Int32IdDto } from \"../model/int32-id-dto\";\n// @ts-ignore\nimport { RepTerritoryContactsDto } from \"../model/rep-territory-contacts-dto\";\n// @ts-ignore\nimport { ResetPasswordCommand } from \"../model/reset-password-command\";\n// @ts-ignore\nimport { UserEmailDto } from \"../model/user-email-dto\";\n// @ts-ignore\nimport { UserRegistrationDto } from \"../model/user-registration-dto\";\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n UsersApiServiceInterface,\n UsersConfirmEmailRequestParams,\n UsersForgotPasswordRequestParams,\n UsersGetRepContactsRequestParams,\n UsersRegisterUserRequestParams,\n UsersRequestConfirmEmailRequestParams,\n UsersResetPasswordRequestParams,\n} from \"./users-apiInterface\";\n\n@Injectable({\n providedIn: \"root\",\n})\nexport class UsersApiService\n extends BaseService\n implements UsersApiServiceInterface\n{\n constructor(\n protected httpClient: HttpClient,\n @Optional() @Inject(BASE_PATH) basePath: string | string[],\n @Optional() configuration?: Configuration,\n ) {\n super(basePath, configuration);\n }\n\n /**\n * Confirm email address using the verification code from email and continue registration.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersConfirmEmail(\n requestParameters?: UsersConfirmEmailRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const emailConfirmationTokenDto =\n requestParameters?.emailConfirmationTokenDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/confirm-email`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: emailConfirmationTokenDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Forgot password request.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersForgotPassword(\n requestParameters?: UsersForgotPasswordRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const forgotPasswordCommand = requestParameters?.forgotPasswordCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/forgot-password`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: forgotPasswordCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Get current user REP contacts.\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersGetCurrentRepContacts(\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryContactsDto>;\n public usersGetCurrentRepContacts(\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryContactsDto>>;\n public usersGetCurrentRepContacts(\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryContactsDto>>;\n public usersGetCurrentRepContacts(\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/me/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryContactsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Get user REP contacts.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<RepTerritoryContactsDto>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<RepTerritoryContactsDto>>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<RepTerritoryContactsDto>>;\n public usersGetRepContacts(\n requestParameters: UsersGetRepContactsRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userId = requestParameters?.userId;\n if (userId === null || userId === undefined) {\n throw new Error(\n \"Required parameter userId was null or undefined when calling usersGetRepContacts.\",\n );\n }\n\n let localVarHeaders = this.defaultHeaders;\n\n // authentication (Bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders(\n \"Bearer\",\n \"Authorization\",\n localVarHeaders,\n \"Bearer \",\n );\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/${this.configuration.encodeParam({ name: \"userId\", value: userId, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\" })}/rep-contacts`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<RepTerritoryContactsDto>(\n \"get\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Register user.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<Int32IdDto>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<Int32IdDto>>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<Int32IdDto>>;\n public usersRegisterUser(\n requestParameters?: UsersRegisterUserRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: \"text/plain\" | \"application/json\" | \"text/json\";\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userRegistrationDto = requestParameters?.userRegistrationDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ??\n this.configuration.selectHeaderAccept([\n \"text/plain\",\n \"application/json\",\n \"text/json\",\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<Int32IdDto>(\n \"post\",\n `${basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: userRegistrationDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n },\n );\n }\n\n /**\n * Request email confirmation and begin registration. This endpoint sends verification email to a given address.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersRequestConfirmEmail(\n requestParameters?: UsersRequestConfirmEmailRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const userEmailDto = requestParameters?.userEmailDto;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/request-email`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"put\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: userEmailDto,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n\n /**\n * Reset user\\'s password.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"body\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"response\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpResponse<any>>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe?: \"events\",\n reportProgress?: boolean,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<HttpEvent<any>>;\n public usersResetPassword(\n requestParameters?: UsersResetPasswordRequestParams,\n observe: any = \"body\",\n reportProgress: boolean = false,\n options?: {\n httpHeaderAccept?: undefined;\n context?: HttpContext;\n transferCache?: boolean;\n },\n ): Observable<any> {\n const resetPasswordCommand = requestParameters?.resetPasswordCommand;\n\n let localVarHeaders = this.defaultHeaders;\n\n const localVarHttpHeaderAcceptSelected: string | undefined =\n options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Accept\",\n localVarHttpHeaderAcceptSelected,\n );\n }\n\n const localVarHttpContext: HttpContext =\n options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n // to determine the Content-Type header\n const consumes: string[] = [\n \"application/json\",\n \"text/json\",\n \"application/*+json\",\n ];\n const httpContentTypeSelected: string | undefined =\n this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set(\n \"Content-Type\",\n httpContentTypeSelected,\n );\n }\n\n let responseType_: \"text\" | \"json\" | \"blob\" = \"json\";\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith(\"text\")) {\n responseType_ = \"text\";\n } else if (\n this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)\n ) {\n responseType_ = \"json\";\n } else {\n responseType_ = \"blob\";\n }\n }\n\n let localVarPath = `/api/users/reset-password`;\n const { basePath, withCredentials } = this.configuration;\n return this.httpClient.request<any>(\"post\", `${basePath}${localVarPath}`, {\n context: localVarHttpContext,\n body: resetPasswordCommand,\n responseType: <any>responseType_,\n ...(withCredentials ? { withCredentials } : {}),\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress,\n });\n }\n}\n","export * from \"./auth-api\";\nimport { AuthApiService } from \"./auth-api\";\nexport * from \"./auth-apiInterface\";\nexport * from \"./permission-bundles-api\";\nimport { PermissionBundlesApiService } from \"./permission-bundles-api\";\nexport * from \"./permission-bundles-apiInterface\";\nexport * from \"./permissions-api\";\nimport { PermissionsApiService } from \"./permissions-api\";\nexport * from \"./permissions-apiInterface\";\nexport * from \"./regions-api\";\nimport { RegionsApiService } from \"./regions-api\";\nexport * from \"./regions-apiInterface\";\nexport * from \"./rep-contacts-api\";\nimport { RepContactsApiService } from \"./rep-contacts-api\";\nexport * from \"./rep-contacts-apiInterface\";\nexport * from \"./rep-territories-api\";\nimport { RepTerritoriesApiService } from \"./rep-territories-api\";\nexport * from \"./rep-territories-apiInterface\";\nexport * from \"./rep-territory-locations-api\";\nimport { RepTerritoryLocationsApiService } from \"./rep-territory-locations-api\";\nexport * from \"./rep-territory-locations-apiInterface\";\nexport * from \"./rsd-regions-api\";\nimport { RsdRegionsApiService } from \"./rsd-regions-api\";\nexport * from \"./rsd-regions-apiInterface\";\nexport * from \"./user-design-conditions-api\";\nimport { UserDesignConditionsApiService } from \"./user-design-conditions-api\";\nexport * from \"./user-design-conditions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [\n AuthApiService,\n PermissionBundlesApiService,\n PermissionsApiService,\n RegionsApiService,\n RepContactsApiService,\n RepTerritoriesApiService,\n RepTerritoryLocationsApiService,\n RsdRegionsApiService,\n UserDesignConditionsApiService,\n UsersApiService,\n];\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico\n */\nexport enum AddressCountry {\n Unknown = \"Unknown\",\n\n UnitedStates = \"UnitedStates\",\n\n Canada = \"Canada\",\n\n Mexico = \"Mexico\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Address.\n */\nexport interface AddressDto {\n /**\n * AddressCountry<br />0 = Unknown<br />1 = UnitedStates<br />2 = Canada<br />3 = Mexico\n */\n country: AddressDtoCountryEnum;\n address1: string;\n address2: string;\n city: string;\n county: string;\n state: string;\n postalCode: string;\n apartmentNumber: string;\n}\nexport enum AddressDtoCountryEnum {\n Unknown = \"Unknown\",\n UnitedStates = \"UnitedStates\",\n Canada = \"Canada\",\n Mexico = \"Mexico\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\nexport enum CoolingDesignBasis {\n Cooling = \"Cooling\",\n\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to create RenewAire.Cores.Domain.Users.RsdRegion.\n */\nexport interface CreateRsdRegionDto {\n name: string;\n notes: string;\n tags: Array<string>;\n /**\n * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.\n */\n primaryRsdUserId: number;\n /**\n * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.CreateRsdRegionDto.PrimaryRsdUserId.\n */\n rsdUserIds: Array<number>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to generate URL to upload RenewAire.Cores.Domain.Users.RsdRegionDocument.\n */\nexport interface CreateUploadUrlCommand {\n fileName: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb\n */\nexport enum DesignWeatherMode {\n RelativeHumidity = \"RelativeHumidity\",\n\n WetBulb = \"WetBulb\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\nexport interface DistanceDto {\n feet: number;\n meters: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Email confirmation token DTO.\n */\nexport interface EmailConfirmationTokenDto {\n /**\n * Email address.\n */\n email: string;\n /**\n * Confirmation token (code).\n */\n token: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.File.\n */\nexport interface FileDto {\n name: string;\n contentType: string;\n /**\n * URL to endpoint to get pre-signed URL for file.\n */\n preSignedUrlEndpoint?: string | null;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command for forgot password processing.\n */\nexport interface ForgotPasswordCommand {\n /**\n * Email.\n */\n email: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to return Id of entity.\n */\nexport interface Int32IdDto {\n id: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Login user command.\n */\nexport interface LoginUserCommand {\n /**\n * Username (email).\n */\n userName: string;\n /**\n * Password.\n */\n password: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface OffsetLimitListMetadata {\n totalCount: number;\n offset: number;\n limit: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface PagedListMetadata {\n totalCount: number;\n offset: number;\n limit: number;\n page: number;\n pageSize: number;\n totalPages: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Permission<br />0 = SystemAdmin<br />1 = UserAdministration\n */\nexport enum Permission {\n SystemAdmin = \"SystemAdmin\",\n\n UserAdministration = \"UserAdministration\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Users.Permission.\n */\nexport interface PermissionDto {\n /**\n * Identifier. Enum key.\n */\n id: number;\n /**\n * Name.\n */\n name: string;\n /**\n * Description.\n */\n description: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Physical address.\n */\nexport interface PhysicalAddressDto {\n /**\n * Address display name.\n */\n displayAddress: string;\n street1: string;\n stateCode: string;\n /**\n * Country name.\n */\n country: string;\n /**\n * Postal code.\n */\n postalCode: string;\n apartmentNumber?: string | null;\n street2?: string | null;\n county?: string | null;\n city?: string | null;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface PostPreSignedUrlDto {\n url: string;\n fields: { [key: string]: string };\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Refresh token command.\n */\nexport interface RefreshTokenCommand {\n /**\n * User token.\n */\n token: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Region.\n */\nexport interface RegionDto {\n id: object;\n /**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\n level: RegionDtoLevelEnum;\n name: string;\n code: string;\n}\nexport enum RegionDtoLevelEnum {\n Country = \"Country\",\n State = \"State\",\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\nexport enum RegionLevel {\n Country = \"Country\",\n\n State = \"State\",\n\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to remove list of RenewAire.Cores.Domain.Users.RsdRegionDocument.\n */\nexport interface RemoveDocumentsCommand {\n /**\n * RSD region document ids to remove.\n */\n rsdRegionDocumentIds: Array<object>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Command to reset the password.\n */\nexport interface ResetPasswordCommand {\n /**\n * Email.\n */\n email: string;\n /**\n * Token received from \\\"forgot password\\\" email.\n */\n token: string;\n /**\n * New password to set.\n */\n newPassword: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RSD region REP territory DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionRepTerritoryDto {\n id: object;\n name: string;\n externalDisplayName: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * RSD region assign user DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionUserDto {\n /**\n * User id.\n */\n id: number;\n firstName: string;\n lastName: string;\n isPrimary: boolean;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Save REP territory location DTO.\n */\nexport interface SaveRepTerritoryLocationDto {\n name: string;\n allCounties: boolean;\n regions: Array<object>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DistanceDto } from \"./distance-dto\";\nimport { UserDesignWeatherConditionDto } from \"./user-design-weather-condition-dto\";\n\n/**\n * DTO to save RenewAire.Cores.Domain.Users.UserDesignConditions.\n */\nexport interface SaveUserDesignConditionsDto {\n userId: number;\n weatherStationState: string;\n weatherStation: string;\n coolingPercentileDay: number;\n heatingPercentileDay: number;\n /**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\n coolingDesignBasis: SaveUserDesignConditionsDtoCoolingDesignBasisEnum;\n /**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\n elevation: DistanceDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerReturnAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterReturnAir: UserDesignWeatherConditionDto;\n}\nexport enum SaveUserDesignConditionsDtoCoolingDesignBasisEnum {\n Cooling = \"Cooling\",\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Search permission bundle DTO.\n */\nexport interface SearchPermissionBundleDto {\n id: object;\n name: string;\n description: string;\n isSystem: boolean;\n /**\n * Is active. Not removed permission bundle.\n */\n isActive: boolean;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for searching RenewAire.Cores.Domain.Region.\n */\nexport interface SearchRegionDto {\n id: object;\n /**\n * RegionLevel<br />0 = Country<br />1 = State<br />2 = County\n */\n level: SearchRegionDtoLevelEnum;\n name: string;\n code: string;\n parentRegionId?: object | null;\n}\nexport enum SearchRegionDtoLevelEnum {\n Country = \"Country\",\n State = \"State\",\n County = \"County\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\nexport interface TemperatureDto {\n celsius: number;\n fahrenheit: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * API generated token model.\n */\nexport interface TokenModel {\n /**\n * Token.\n */\n token: string;\n /**\n * Token expiration in seconds.\n */\n expiresIn: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\nexport interface TotalCountListMetadata {\n totalCount: number;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * DTO to update RenewAire.Cores.Domain.Users.RsdRegion.\n */\nexport interface UpdateRsdRegionDto {\n id: object;\n name: string;\n notes: string;\n tags: Array<string>;\n /**\n * The main RSD user id in the region. More details: RenewAire.Cores.Domain.Users.RsdRegionAssignedRsd.IsPrimary.\n */\n primaryRsdUserId: number;\n /**\n * List of RSD users for the region, not including RenewAire.Cores.UseCases.Dtos.RsdRegions.UpdateRsdRegionDto.PrimaryRsdUserId.\n */\n rsdUserIds: Array<number>;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * Represents metadata for an uploaded file.\n */\nexport interface UploadFileDto {\n /**\n * A temporary file id that is assigned when a pre-signed URL is received.\n */\n fileId: string;\n name: string;\n contentType: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DistanceDto } from \"./distance-dto\";\nimport { UserDesignWeatherConditionDto } from \"./user-design-weather-condition-dto\";\n\n/**\n * User design condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\nexport interface UserDesignConditionsDto {\n userId: number;\n weatherStationState: string;\n weatherStation: string;\n coolingPercentileDay: number;\n heatingPercentileDay: number;\n /**\n * CoolingDesignBasis<br />0 = Cooling<br />1 = Dehumidification\n */\n coolingDesignBasis: UserDesignConditionsDtoCoolingDesignBasisEnum;\n /**\n * DTO for RenewAire.Cores.Domain.Distance.\n */\n elevation: DistanceDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n summerReturnAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterOutsideAir: UserDesignWeatherConditionDto;\n /**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\n winterReturnAir: UserDesignWeatherConditionDto;\n}\nexport enum UserDesignConditionsDtoCoolingDesignBasisEnum {\n Cooling = \"Cooling\",\n Dehumidification = \"Dehumidification\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { TemperatureDto } from \"./temperature-dto\";\n\n/**\n * User design weather condition DTO for RenewAire.Cores.UseCases.Users.DesignConditions.GetUserDesignConditions.GetUserDesignConditionsQuery.\n */\nexport interface UserDesignWeatherConditionDto {\n /**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\n dryBulb: TemperatureDto;\n /**\n * DTO for RenewAire.Cores.Domain.Temperature.\n */\n wetBulb: TemperatureDto;\n relativeHumidity: number;\n /**\n * DesignWeatherMode<br />0 = RelativeHumidity<br />1 = WetBulb\n */\n designWeatherMode: UserDesignWeatherConditionDtoDesignWeatherModeEnum;\n}\nexport enum UserDesignWeatherConditionDtoDesignWeatherModeEnum {\n RelativeHumidity = \"RelativeHumidity\",\n WetBulb = \"WetBulb\",\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User email DTO.\n */\nexport interface UserEmailDto {\n /**\n * <inheritdoc cref=\\\"P:RenewAire.Cores.Domain.Users.User.Email\\\" />.\n */\n email: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User preferences DTO.\n */\nexport interface UserPreferencesDto {\n occupation: string;\n}\n","/**\n * RenewAire CORES API\n *\n * Contact: renewaire@saritasa.com\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n/**\n * User profile DTO.\n */\nexport interface UserProfileDto {\n firstName: string;\n lastName: string;\n company: string;\n title: string;\n /**\n * Phone number.\n */\n workPhoneNumber: string;\n /**\n * Work phone number extension. Optional.\n */\n workPhoneNumberExt?: string | null;\n /**\n * Work phone.\n */\n mobilePhoneNumber?: string | null;\n}\n","import {\n NgModule,\n ModuleWithProviders,\n SkipSelf,\n Optional,\n} from \"@angular/core\";\nimport { Configuration } from \"./configuration\";\nimport { HttpClient } from \"@angular/common/http\";\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: [],\n})\nexport class ApiModule {\n public static forRoot(\n configurationFactory: () => Configuration,\n ): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [{ provide: Configuration, useFactory: configurationFactory }],\n };\n }\n\n constructor(\n @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient,\n ) {\n if (parentModule) {\n throw new Error(\n \"ApiModule is already loaded. Import in your base AppModule only.\",\n );\n }\n if (!http) {\n throw new Error(\n \"You need to import the HttpClientModule in your AppModule! \\n\" +\n \"See also https://github.com/angular/angular/issues/20575\",\n );\n }\n }\n}\n","import { EnvironmentProviders, makeEnvironmentProviders } from \"@angular/core\";\nimport { Configuration, ConfigurationParameters } from \"./configuration\";\nimport { BASE_PATH } from \"./variables\";\n\n// Returns the service class providers, to be used in the [ApplicationConfig](https://angular.dev/api/core/ApplicationConfig).\nexport function provideApi(\n configOrBasePath: string | ConfigurationParameters,\n): EnvironmentProviders {\n return makeEnvironmentProviders([\n typeof configOrBasePath === \"string\"\n ? { provide: BASE_PATH, useValue: configOrBasePath }\n : {\n provide: Configuration,\n useValue: new Configuration({ ...configOrBasePath }),\n },\n ]);\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}
|