@saritasa/renewaire-frontend-sdk 0.1.0-dev.275 → 0.1.0-dev.287

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
- # @@saritasa/renewaire-frontend-sdk@0.1.0-dev.275
1
+ # @@saritasa/renewaire-frontend-sdk@0.1.0-dev.287
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.1.0-dev.275 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.1.0-dev.287 --save
5
5
  ```
@@ -1145,6 +1145,50 @@ class UsersApiService extends BaseService {
1145
1145
  reportProgress: reportProgress,
1146
1146
  });
1147
1147
  }
1148
+ usersForgotPassword(requestParameters, observe = "body", reportProgress = false, options) {
1149
+ const forgotPasswordCommand = requestParameters?.forgotPasswordCommand;
1150
+ let localVarHeaders = this.defaultHeaders;
1151
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
1152
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1153
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1154
+ }
1155
+ const localVarHttpContext = options?.context ?? new HttpContext();
1156
+ const localVarTransferCache = options?.transferCache ?? true;
1157
+ // to determine the Content-Type header
1158
+ const consumes = [
1159
+ "application/json",
1160
+ "text/json",
1161
+ "application/*+json",
1162
+ ];
1163
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1164
+ if (httpContentTypeSelected !== undefined) {
1165
+ localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
1166
+ }
1167
+ let responseType_ = "json";
1168
+ if (localVarHttpHeaderAcceptSelected) {
1169
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1170
+ responseType_ = "text";
1171
+ }
1172
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1173
+ responseType_ = "json";
1174
+ }
1175
+ else {
1176
+ responseType_ = "blob";
1177
+ }
1178
+ }
1179
+ let localVarPath = `/api/users/forgot-password`;
1180
+ const { basePath, withCredentials } = this.configuration;
1181
+ return this.httpClient.request("post", `${basePath}${localVarPath}`, {
1182
+ context: localVarHttpContext,
1183
+ body: forgotPasswordCommand,
1184
+ responseType: responseType_,
1185
+ ...(withCredentials ? { withCredentials } : {}),
1186
+ headers: localVarHeaders,
1187
+ observe: observe,
1188
+ transferCache: localVarTransferCache,
1189
+ reportProgress: reportProgress,
1190
+ });
1191
+ }
1148
1192
  usersGetRepContacts(observe = "body", reportProgress = false, options) {
1149
1193
  let localVarHeaders = this.defaultHeaders;
1150
1194
  // authentication (Bearer) required
@@ -1320,6 +1364,50 @@ class UsersApiService extends BaseService {
1320
1364
  reportProgress: reportProgress,
1321
1365
  });
1322
1366
  }
1367
+ usersResetPassword(requestParameters, observe = "body", reportProgress = false, options) {
1368
+ const resetPasswordCommand = requestParameters?.resetPasswordCommand;
1369
+ let localVarHeaders = this.defaultHeaders;
1370
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([]);
1371
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
1372
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
1373
+ }
1374
+ const localVarHttpContext = options?.context ?? new HttpContext();
1375
+ const localVarTransferCache = options?.transferCache ?? true;
1376
+ // to determine the Content-Type header
1377
+ const consumes = [
1378
+ "application/json",
1379
+ "text/json",
1380
+ "application/*+json",
1381
+ ];
1382
+ const httpContentTypeSelected = this.configuration.selectHeaderContentType(consumes);
1383
+ if (httpContentTypeSelected !== undefined) {
1384
+ localVarHeaders = localVarHeaders.set("Content-Type", httpContentTypeSelected);
1385
+ }
1386
+ let responseType_ = "json";
1387
+ if (localVarHttpHeaderAcceptSelected) {
1388
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
1389
+ responseType_ = "text";
1390
+ }
1391
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
1392
+ responseType_ = "json";
1393
+ }
1394
+ else {
1395
+ responseType_ = "blob";
1396
+ }
1397
+ }
1398
+ let localVarPath = `/api/users/reset-password`;
1399
+ const { basePath, withCredentials } = this.configuration;
1400
+ return this.httpClient.request("post", `${basePath}${localVarPath}`, {
1401
+ context: localVarHttpContext,
1402
+ body: resetPasswordCommand,
1403
+ responseType: responseType_,
1404
+ ...(withCredentials ? { withCredentials } : {}),
1405
+ headers: localVarHeaders,
1406
+ observe: observe,
1407
+ transferCache: localVarTransferCache,
1408
+ reportProgress: reportProgress,
1409
+ });
1410
+ }
1323
1411
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
1324
1412
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: UsersApiService, providedIn: "root" });
1325
1413
  }
@@ -1473,6 +1561,16 @@ var AddressDtoCountryEnum;
1473
1561
  * Do not edit the class manually.
1474
1562
  */
1475
1563
 
1564
+ /**
1565
+ * RenewAire CORES API
1566
+ *
1567
+ * Contact: renewaire@saritasa.com
1568
+ *
1569
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1570
+ * https://openapi-generator.tech
1571
+ * Do not edit the class manually.
1572
+ */
1573
+
1476
1574
  /**
1477
1575
  * RenewAire CORES API
1478
1576
  *
@@ -1522,6 +1620,16 @@ var RegionLevel;
1522
1620
  * Do not edit the class manually.
1523
1621
  */
1524
1622
 
1623
+ /**
1624
+ * RenewAire CORES API
1625
+ *
1626
+ * Contact: renewaire@saritasa.com
1627
+ *
1628
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1629
+ * https://openapi-generator.tech
1630
+ * Do not edit the class manually.
1631
+ */
1632
+
1525
1633
  /**
1526
1634
  * RenewAire CORES API
1527
1635
  *
@@ -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/permissions-api.ts","../../api/regions-api.ts","../../api/rep-territories-api.ts","../../api/rsd-regions-api.ts","../../api/users-api.ts","../../api/api.ts","../../model/address-country.ts","../../model/address-dto.ts","../../model/create-rsd-region-dto.ts","../../model/email-confirmation-token-dto.ts","../../model/int32-id-dto.ts","../../model/login-user-command.ts","../../model/offset-limit-list-metadata.ts","../../model/paged-list-metadata.ts","../../model/permission-dto.ts","../../model/physical-address-dto.ts","../../model/refresh-token-command.ts","../../model/region-level.ts","../../model/rsd-region-document-dto.ts","../../model/rsd-region-rep-territory-dto.ts","../../model/rsd-region-user-dto.ts","../../model/search-region-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.ts","../../model/update-rsd-region-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 { 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 { RepTerritoryDto } from \"../model/rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryDto } from \"../model/save-rep-territory-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 RepTerritoriesGetRepTerritoryRequestParams,\n RepTerritoriesRemoveRepTerritoryRequestParams,\n RepTerritoriesSearchRsdTerritoriesRequestParams,\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 * 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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 { CreateRsdRegionDto } from \"../model/create-rsd-region-dto\";\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\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RsdRegionsApiServiceInterface,\n RsdRegionsCreateRsdRegionRequestParams,\n RsdRegionsGetRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionRequestParams,\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 * 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 * 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 * 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 { EmailConfirmationTokenDto } from \"../model/email-confirmation-token-dto\";\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 { 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 UsersGetRepContacts0RequestParams,\n UsersRegisterUserRequestParams,\n UsersRequestConfirmEmailRequestParams,\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 * 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 usersGetRepContacts(\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 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 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 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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1.\",\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","export * from \"./auth-api\";\nimport { AuthApiService } from \"./auth-api\";\nexport * from \"./auth-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-territories-api\";\nimport { RepTerritoriesApiService } from \"./rep-territories-api\";\nexport * from \"./rep-territories-apiInterface\";\nexport * from \"./rsd-regions-api\";\nimport { RsdRegionsApiService } from \"./rsd-regions-api\";\nexport * from \"./rsd-regions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [\n AuthApiService,\n PermissionsApiService,\n RegionsApiService,\n RepTerritoriesApiService,\n RsdRegionsApiService,\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 * 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 * 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 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 * 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 * 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 * RSD region document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionDocumentDto {\n id: object;\n contentType: string;\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 * 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 * 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 * 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 * 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/permissions-api.ts","../../api/regions-api.ts","../../api/rep-territories-api.ts","../../api/rsd-regions-api.ts","../../api/users-api.ts","../../api/api.ts","../../model/address-country.ts","../../model/address-dto.ts","../../model/create-rsd-region-dto.ts","../../model/email-confirmation-token-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-dto.ts","../../model/physical-address-dto.ts","../../model/refresh-token-command.ts","../../model/region-level.ts","../../model/reset-password-command.ts","../../model/rsd-region-document-dto.ts","../../model/rsd-region-rep-territory-dto.ts","../../model/rsd-region-user-dto.ts","../../model/search-region-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.ts","../../model/update-rsd-region-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 { 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 { RepTerritoryDto } from \"../model/rep-territory-dto\";\n// @ts-ignore\nimport { SaveRepTerritoryDto } from \"../model/save-rep-territory-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 RepTerritoriesGetRepTerritoryRequestParams,\n RepTerritoriesRemoveRepTerritoryRequestParams,\n RepTerritoriesSearchRsdTerritoriesRequestParams,\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 * 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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 repTerritoriesSearchRsdTerritories(\n requestParameters?: RepTerritoriesSearchRsdTerritoriesRequestParams,\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 { CreateRsdRegionDto } from \"../model/create-rsd-region-dto\";\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\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from \"../variables\";\nimport { Configuration } from \"../configuration\";\nimport { BaseService } from \"../api.base.service\";\nimport {\n RsdRegionsApiServiceInterface,\n RsdRegionsCreateRsdRegionRequestParams,\n RsdRegionsGetRsdRegionRequestParams,\n RsdRegionsRemoveRsdRegionRequestParams,\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 * 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 * 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 * 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 { 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 UsersGetRepContacts0RequestParams,\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 usersGetRepContacts(\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 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 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 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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1(\n requestParameters: UsersGetRepContacts0RequestParams,\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_1.\",\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\\&#39;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 \"./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-territories-api\";\nimport { RepTerritoriesApiService } from \"./rep-territories-api\";\nexport * from \"./rep-territories-apiInterface\";\nexport * from \"./rsd-regions-api\";\nimport { RsdRegionsApiService } from \"./rsd-regions-api\";\nexport * from \"./rsd-regions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [\n AuthApiService,\n PermissionsApiService,\n RegionsApiService,\n RepTerritoriesApiService,\n RsdRegionsApiService,\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 * 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 * 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 * 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 * 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 * 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 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 document DTO for query RenewAire.Cores.UseCases.RsdRegions.GetRsdRegion.GetRsdRegionQuery.\n */\nexport interface RsdRegionDocumentDto {\n id: object;\n contentType: string;\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 * 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 * 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 * 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 * 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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"}
package/index.d.ts CHANGED
@@ -349,6 +349,25 @@ interface EmailConfirmationTokenDto {
349
349
  token: string;
350
350
  }
351
351
 
352
+ /**
353
+ * RenewAire CORES API
354
+ *
355
+ * Contact: renewaire@saritasa.com
356
+ *
357
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
358
+ * https://openapi-generator.tech
359
+ * Do not edit the class manually.
360
+ */
361
+ /**
362
+ * Command for forgot password processing.
363
+ */
364
+ interface ForgotPasswordCommand {
365
+ /**
366
+ * Email.
367
+ */
368
+ email: string;
369
+ }
370
+
352
371
  /**
353
372
  * RenewAire CORES API
354
373
  *
@@ -603,6 +622,33 @@ interface RepTerritoryDto {
603
622
  salesContacts: Array<ContactDto>;
604
623
  }
605
624
 
625
+ /**
626
+ * RenewAire CORES API
627
+ *
628
+ * Contact: renewaire@saritasa.com
629
+ *
630
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
631
+ * https://openapi-generator.tech
632
+ * Do not edit the class manually.
633
+ */
634
+ /**
635
+ * Command to reset the password.
636
+ */
637
+ interface ResetPasswordCommand {
638
+ /**
639
+ * Email.
640
+ */
641
+ email: string;
642
+ /**
643
+ * Token received from \"forgot password\" email.
644
+ */
645
+ token: string;
646
+ /**
647
+ * New password to set.
648
+ */
649
+ newPassword: string;
650
+ }
651
+
606
652
  /**
607
653
  * RenewAire CORES API
608
654
  *
@@ -1537,6 +1583,9 @@ declare class RsdRegionsApiService extends BaseService implements RsdRegionsApiS
1537
1583
  interface UsersConfirmEmailRequestParams {
1538
1584
  emailConfirmationTokenDto?: EmailConfirmationTokenDto;
1539
1585
  }
1586
+ interface UsersForgotPasswordRequestParams {
1587
+ forgotPasswordCommand?: ForgotPasswordCommand;
1588
+ }
1540
1589
  interface UsersGetRepContacts0RequestParams {
1541
1590
  userId: number;
1542
1591
  }
@@ -1546,6 +1595,9 @@ interface UsersRegisterUserRequestParams {
1546
1595
  interface UsersRequestConfirmEmailRequestParams {
1547
1596
  userEmailDto?: UserEmailDto;
1548
1597
  }
1598
+ interface UsersResetPasswordRequestParams {
1599
+ resetPasswordCommand?: ResetPasswordCommand;
1600
+ }
1549
1601
  interface UsersApiServiceInterface {
1550
1602
  defaultHeaders: HttpHeaders;
1551
1603
  configuration: Configuration;
@@ -1555,6 +1607,12 @@ interface UsersApiServiceInterface {
1555
1607
  * @param requestParameters
1556
1608
  */
1557
1609
  usersConfirmEmail(requestParameters: UsersConfirmEmailRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1610
+ /**
1611
+ * Forgot password request.
1612
+ *
1613
+ * @param requestParameters
1614
+ */
1615
+ usersForgotPassword(requestParameters: UsersForgotPasswordRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1558
1616
  /**
1559
1617
  * Get current user REP contacts.
1560
1618
  *
@@ -1578,6 +1636,12 @@ interface UsersApiServiceInterface {
1578
1636
  * @param requestParameters
1579
1637
  */
1580
1638
  usersRequestConfirmEmail(requestParameters: UsersRequestConfirmEmailRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1639
+ /**
1640
+ * Reset user\&#39;s password.
1641
+ *
1642
+ * @param requestParameters
1643
+ */
1644
+ usersResetPassword(requestParameters: UsersResetPasswordRequestParams, extraHttpRequestParams?: any): Observable<{}>;
1581
1645
  }
1582
1646
 
1583
1647
  declare class UsersApiService extends BaseService implements UsersApiServiceInterface {
@@ -1604,6 +1668,27 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
1604
1668
  context?: HttpContext;
1605
1669
  transferCache?: boolean;
1606
1670
  }): Observable<HttpEvent<any>>;
1671
+ /**
1672
+ * Forgot password request.
1673
+ * @param requestParameters
1674
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1675
+ * @param reportProgress flag to report request and response progress.
1676
+ */
1677
+ usersForgotPassword(requestParameters?: UsersForgotPasswordRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1678
+ httpHeaderAccept?: undefined;
1679
+ context?: HttpContext;
1680
+ transferCache?: boolean;
1681
+ }): Observable<any>;
1682
+ usersForgotPassword(requestParameters?: UsersForgotPasswordRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1683
+ httpHeaderAccept?: undefined;
1684
+ context?: HttpContext;
1685
+ transferCache?: boolean;
1686
+ }): Observable<HttpResponse<any>>;
1687
+ usersForgotPassword(requestParameters?: UsersForgotPasswordRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1688
+ httpHeaderAccept?: undefined;
1689
+ context?: HttpContext;
1690
+ transferCache?: boolean;
1691
+ }): Observable<HttpEvent<any>>;
1607
1692
  /**
1608
1693
  * Get current user REP contacts.
1609
1694
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
@@ -1687,6 +1772,27 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
1687
1772
  context?: HttpContext;
1688
1773
  transferCache?: boolean;
1689
1774
  }): Observable<HttpEvent<any>>;
1775
+ /**
1776
+ * Reset user\&#39;s password.
1777
+ * @param requestParameters
1778
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
1779
+ * @param reportProgress flag to report request and response progress.
1780
+ */
1781
+ usersResetPassword(requestParameters?: UsersResetPasswordRequestParams, observe?: "body", reportProgress?: boolean, options?: {
1782
+ httpHeaderAccept?: undefined;
1783
+ context?: HttpContext;
1784
+ transferCache?: boolean;
1785
+ }): Observable<any>;
1786
+ usersResetPassword(requestParameters?: UsersResetPasswordRequestParams, observe?: "response", reportProgress?: boolean, options?: {
1787
+ httpHeaderAccept?: undefined;
1788
+ context?: HttpContext;
1789
+ transferCache?: boolean;
1790
+ }): Observable<HttpResponse<any>>;
1791
+ usersResetPassword(requestParameters?: UsersResetPasswordRequestParams, observe?: "events", reportProgress?: boolean, options?: {
1792
+ httpHeaderAccept?: undefined;
1793
+ context?: HttpContext;
1794
+ transferCache?: boolean;
1795
+ }): Observable<HttpEvent<any>>;
1690
1796
  static ɵfac: i0.ɵɵFactoryDeclaration<UsersApiService, [null, { optional: true; }, { optional: true; }]>;
1691
1797
  static ɵprov: i0.ɵɵInjectableDeclaration<UsersApiService>;
1692
1798
  }
@@ -1712,4 +1818,4 @@ declare class ApiModule {
1712
1818
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
1713
1819
 
1714
1820
  export { APIS, AddressCountry, AddressDtoCountryEnum, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, PermissionsApiService, RegionLevel, RegionsApiService, RepTerritoriesApiService, RsdRegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
1715
- export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRsdTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SaveRepTerritoryDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersGetRepContacts0RequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams };
1821
+ export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, CreateRsdRegionDto, DataFormat, DataType, EmailConfirmationTokenDto, ForgotPasswordCommand, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PermissionDto, PermissionsApiServiceInterface, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepTerritoriesApiServiceInterface, RepTerritoriesCreateRepTerritoryRequestParams, RepTerritoriesGetRepTerritoryRequestParams, RepTerritoriesRemoveRepTerritoryRequestParams, RepTerritoriesSearchRsdTerritoriesRequestParams, RepTerritoriesUpdateRepTerritoryRequestParams, RepTerritoryContactsDto, RepTerritoryDto, RepTerritoryRepContactDto, ResetPasswordCommand, RsdRegionDocumentDto, RsdRegionDto, RsdRegionRepTerritoryDto, RsdRegionUserDto, RsdRegionsApiServiceInterface, RsdRegionsCreateRsdRegionRequestParams, RsdRegionsGetRsdRegionRequestParams, RsdRegionsRemoveRsdRegionRequestParams, RsdRegionsSearchRsdRegionsRequestParams, RsdRegionsUpdateRsdRegionRequestParams, SaveRepTerritoryDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, SearchRepTerritoryDto, SearchRepTerritoryDtoPagedListMetadataDto, SearchRsdRegionDto, SearchRsdRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UpdateRsdRegionDto, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersForgotPasswordRequestParams, UsersGetRepContacts0RequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams, UsersResetPasswordRequestParams };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.1.0-dev.275",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.275+Branch.develop.Sha.95e70b4077aeae8f7a2c10a5f2dba4aa2a8668ba.95e70b4077aeae8f7a2c10a5f2dba4aa2a8668ba)",
3
+ "version": "0.1.0-dev.287",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.287+Branch.develop.Sha.9a383d349c3b1918db5e7486650a5fb6750b6c02.9a383d349c3b1918db5e7486650a5fb6750b6c02)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",