@saritasa/renewaire-frontend-sdk 0.1.6 → 0.1.7

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.6
1
+ # @@saritasa/renewaire-frontend-sdk@0.1.7
2
2
 
3
3
  ```bash
4
- npm install @saritasa/renewaire-frontend-sdk@0.1.6 --save
4
+ npm install @saritasa/renewaire-frontend-sdk@0.1.7 --save
5
5
  ```
@@ -368,10 +368,10 @@ class AuthApiService extends BaseService {
368
368
  reportProgress: reportProgress,
369
369
  });
370
370
  }
371
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: AuthApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
372
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: AuthApiService, providedIn: "root" });
371
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: AuthApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
372
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: AuthApiService, providedIn: "root" });
373
373
  }
374
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: AuthApiService, decorators: [{
374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: AuthApiService, decorators: [{
375
375
  type: Injectable,
376
376
  args: [{
377
377
  providedIn: "root",
@@ -454,10 +454,10 @@ class RegionsApiService extends BaseService {
454
454
  reportProgress: reportProgress,
455
455
  });
456
456
  }
457
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: RegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
458
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: RegionsApiService, providedIn: "root" });
457
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: RegionsApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
458
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: RegionsApiService, providedIn: "root" });
459
459
  }
460
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: RegionsApiService, decorators: [{
460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: RegionsApiService, decorators: [{
461
461
  type: Injectable,
462
462
  args: [{
463
463
  providedIn: "root",
@@ -531,6 +531,88 @@ class UsersApiService extends BaseService {
531
531
  reportProgress: reportProgress,
532
532
  });
533
533
  }
534
+ usersGetRepContacts(observe = "body", reportProgress = false, options) {
535
+ let localVarHeaders = this.defaultHeaders;
536
+ // authentication (Bearer) required
537
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
538
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
539
+ this.configuration.selectHeaderAccept([
540
+ "text/plain",
541
+ "application/json",
542
+ "text/json",
543
+ ]);
544
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
545
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
546
+ }
547
+ const localVarHttpContext = options?.context ?? new HttpContext();
548
+ const localVarTransferCache = options?.transferCache ?? true;
549
+ let responseType_ = "json";
550
+ if (localVarHttpHeaderAcceptSelected) {
551
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
552
+ responseType_ = "text";
553
+ }
554
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
555
+ responseType_ = "json";
556
+ }
557
+ else {
558
+ responseType_ = "blob";
559
+ }
560
+ }
561
+ let localVarPath = `/api/users/me/rep-contacts`;
562
+ const { basePath, withCredentials } = this.configuration;
563
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
564
+ context: localVarHttpContext,
565
+ responseType: responseType_,
566
+ ...(withCredentials ? { withCredentials } : {}),
567
+ headers: localVarHeaders,
568
+ observe: observe,
569
+ transferCache: localVarTransferCache,
570
+ reportProgress: reportProgress,
571
+ });
572
+ }
573
+ usersGetRepContacts_1(requestParameters, observe = "body", reportProgress = false, options) {
574
+ const userId = requestParameters?.userId;
575
+ if (userId === null || userId === undefined) {
576
+ throw new Error("Required parameter userId was null or undefined when calling usersGetRepContacts_1.");
577
+ }
578
+ let localVarHeaders = this.defaultHeaders;
579
+ // authentication (Bearer) required
580
+ localVarHeaders = this.configuration.addCredentialToHeaders("Bearer", "Authorization", localVarHeaders, "Bearer ");
581
+ const localVarHttpHeaderAcceptSelected = options?.httpHeaderAccept ??
582
+ this.configuration.selectHeaderAccept([
583
+ "text/plain",
584
+ "application/json",
585
+ "text/json",
586
+ ]);
587
+ if (localVarHttpHeaderAcceptSelected !== undefined) {
588
+ localVarHeaders = localVarHeaders.set("Accept", localVarHttpHeaderAcceptSelected);
589
+ }
590
+ const localVarHttpContext = options?.context ?? new HttpContext();
591
+ const localVarTransferCache = options?.transferCache ?? true;
592
+ let responseType_ = "json";
593
+ if (localVarHttpHeaderAcceptSelected) {
594
+ if (localVarHttpHeaderAcceptSelected.startsWith("text")) {
595
+ responseType_ = "text";
596
+ }
597
+ else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {
598
+ responseType_ = "json";
599
+ }
600
+ else {
601
+ responseType_ = "blob";
602
+ }
603
+ }
604
+ let localVarPath = `/api/users/${this.configuration.encodeParam({ name: "userId", value: userId, in: "path", style: "simple", explode: false, dataType: "number", dataFormat: "int32" })}/rep-contacts`;
605
+ const { basePath, withCredentials } = this.configuration;
606
+ return this.httpClient.request("get", `${basePath}${localVarPath}`, {
607
+ context: localVarHttpContext,
608
+ responseType: responseType_,
609
+ ...(withCredentials ? { withCredentials } : {}),
610
+ headers: localVarHeaders,
611
+ observe: observe,
612
+ transferCache: localVarTransferCache,
613
+ reportProgress: reportProgress,
614
+ });
615
+ }
534
616
  usersRegisterUser(requestParameters, observe = "body", reportProgress = false, options) {
535
617
  const userRegistrationDto = requestParameters?.userRegistrationDto;
536
618
  let localVarHeaders = this.defaultHeaders;
@@ -624,10 +706,10 @@ class UsersApiService extends BaseService {
624
706
  reportProgress: reportProgress,
625
707
  });
626
708
  }
627
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: UsersApiService, deps: [{ token: i1.HttpClient }, { token: BASE_PATH, optional: true }, { token: Configuration, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
628
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: UsersApiService, providedIn: "root" });
709
+ 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 });
710
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: UsersApiService, providedIn: "root" });
629
711
  }
630
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: UsersApiService, decorators: [{
712
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: UsersApiService, decorators: [{
631
713
  type: Injectable,
632
714
  args: [{
633
715
  providedIn: "root",
@@ -713,6 +795,16 @@ const APIS = [AuthApiService, RegionsApiService, UsersApiService];
713
795
  * Do not edit the class manually.
714
796
  */
715
797
 
798
+ /**
799
+ * RenewAire CORES API
800
+ *
801
+ * Contact: renewaire@saritasa.com
802
+ *
803
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
804
+ * https://openapi-generator.tech
805
+ * Do not edit the class manually.
806
+ */
807
+
716
808
  /**
717
809
  * RenewAire CORES API
718
810
  *
@@ -814,11 +906,11 @@ class ApiModule {
814
906
  "See also https://github.com/angular/angular/issues/20575");
815
907
  }
816
908
  }
817
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
818
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.2", ngImport: i0, type: ApiModule });
819
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: ApiModule });
909
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: ApiModule, deps: [{ token: ApiModule, optional: true, skipSelf: true }, { token: i1.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.NgModule });
910
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.1.3", ngImport: i0, type: ApiModule });
911
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: ApiModule });
820
912
  }
821
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.2", ngImport: i0, type: ApiModule, decorators: [{
913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.3", ngImport: i0, type: ApiModule, decorators: [{
822
914
  type: NgModule,
823
915
  args: [{
824
916
  imports: [],
@@ -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/regions-api.ts","../../api/users-api.ts","../../api/api.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/physical-address-dto.ts","../../model/refresh-token-command.ts","../../model/region-level.ts","../../model/search-region-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.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 { 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 { EmailConfirmationTokenDto } from \"../model/email-confirmation-token-dto\";\n// @ts-ignore\nimport { Int32IdDto } from \"../model/int32-id-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 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 * 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 \"./regions-api\";\nimport { RegionsApiService } from \"./regions-api\";\nexport * from \"./regions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [AuthApiService, RegionsApiService, UsersApiService];\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 * Remember user\\'s cookie for longer period.\n */\n rememberMe: 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\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 * 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 * 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 * 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":";;;;;MAEa,SAAS,GAAG,IAAI,cAAc,CAAS,UAAU;AACvD,MAAM,kBAAkB,GAAG;AAChC,IAAA,GAAG,EAAE,GAAG;AACR,IAAA,GAAG,EAAE,KAAK;AACV,IAAA,GAAG,EAAE,GAAG;AACR,IAAA,KAAK,EAAE,GAAG;;;ACLZ;;;AAGG;MACU,wBAAwB,CAAA;AACnC,IAAA,SAAS,CAAC,CAAS,EAAA;AACjB,QAAA,OAAO,kBAAkB,CAAC,CAAC,CAAC;IAC9B;AACA,IAAA,WAAW,CAAC,CAAS,EAAA;AACnB,QAAA,OAAO,kBAAkB,CAAC,CAAC,CAAC;IAC9B;AACA,IAAA,SAAS,CAAC,CAAS,EAAA;AACjB,QAAA,OAAO,kBAAkB,CAAC,CAAC,CAAC;IAC9B;AACA,IAAA,WAAW,CAAC,CAAS,EAAA;AACnB,QAAA,OAAO,kBAAkB,CAAC,CAAC,CAAC;IAC9B;AACD;;MCqBY,aAAa,CAAA;AACxB;;AAEG;AACH,IAAA,OAAO;AACP,IAAA,QAAQ;AACR,IAAA,QAAQ;AACR;;AAEG;AACH,IAAA,WAAW;AACX,IAAA,QAAQ;AACR,IAAA,eAAe;AACf;;AAEG;AACH,IAAA,OAAO;AACP;;;;;;AAMG;AACH,IAAA,WAAW;AACX;;;;AAIG;AACH,IAAA,WAAW;AAEX,IAAA,WAAA,CAAY,EACV,WAAW,EACX,OAAO,EACP,QAAQ,EACR,WAAW,EACX,WAAW,EACX,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,eAAe,MACY,EAAE,EAAA;QAC7B,IAAI,OAAO,EAAE;AACX,YAAA,IAAI,CAAC,OAAO,GAAG,OAAO;QACxB;AACA,QAAA,IAAI,QAAQ,KAAK,SAAS,EAAE;AAC1B,YAAA,IAAI,CAAC,QAAQ,GAAG,QAAQ;QAC1B;AACA,QAAA,IAAI,QAAQ,KAAK,SAAS,EAAE;AAC1B,YAAA,IAAI,CAAC,QAAQ,GAAG,QAAQ;QAC1B;AACA,QAAA,IAAI,WAAW,KAAK,SAAS,EAAE;AAC7B,YAAA,IAAI,CAAC,WAAW,GAAG,WAAW;QAChC;AACA,QAAA,IAAI,QAAQ,KAAK,SAAS,EAAE;AAC1B,YAAA,IAAI,CAAC,QAAQ,GAAG,QAAQ;QAC1B;AACA,QAAA,IAAI,eAAe,KAAK,SAAS,EAAE;AACjC,YAAA,IAAI,CAAC,eAAe,GAAG,eAAe;QACxC;QACA,IAAI,OAAO,EAAE;AACX,YAAA,IAAI,CAAC,OAAO,GAAG,OAAO;QACxB;AACA,QAAA,IAAI,CAAC,WAAW;AACd,YAAA,WAAW,KAAK,CAAC,KAAK,KAAK,IAAI,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;AAC5D,QAAA,IAAI,CAAC,WAAW,GAAG,WAAW,IAAI,EAAE;;QAGpC,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE;AAC/B,YAAA,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,GAAG,MAAK;AAChC,gBAAA,OAAO,OAAO,IAAI,CAAC,WAAW,KAAK;AACjC,sBAAE,IAAI,CAAC,WAAW;AAClB,sBAAE,IAAI,CAAC,WAAW;AACtB,YAAA,CAAC;QACH;IACF;AAEA;;;;;;AAMG;AACI,IAAA,uBAAuB,CAAC,YAAsB,EAAA;AACnD,QAAA,IAAI,YAAY,CAAC,MAAM,KAAK,CAAC,EAAE;AAC7B,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,MAAM,IAAI,GAAG,YAAY,CAAC,IAAI,CAAC,CAAC,CAAS,KAAK,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;AACjE,QAAA,IAAI,IAAI,KAAK,SAAS,EAAE;AACtB,YAAA,OAAO,YAAY,CAAC,CAAC,CAAC;QACxB;AACA,QAAA,OAAO,IAAI;IACb;AAEA;;;;;;AAMG;AACI,IAAA,kBAAkB,CAAC,OAAiB,EAAA;AACzC,QAAA,IAAI,OAAO,CAAC,MAAM,KAAK,CAAC,EAAE;AACxB,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,CAAC,CAAS,KAAK,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;AAC5D,QAAA,IAAI,IAAI,KAAK,SAAS,EAAE;AACtB,YAAA,OAAO,OAAO,CAAC,CAAC,CAAC;QACnB;AACA,QAAA,OAAO,IAAI;IACb;AAEA;;;;;;;;;AASG;AACI,IAAA,UAAU,CAAC,IAAY,EAAA;QAC5B,MAAM,QAAQ,GAAW,IAAI,MAAM,CACjC,6DAA6D,EAC7D,GAAG,CACJ;QACD,QACE,IAAI,KAAK,IAAI;AACb,aAAC,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC;AAClB,gBAAA,IAAI,CAAC,WAAW,EAAE,KAAK,6BAA6B,CAAC;IAE3D;AAEO,IAAA,gBAAgB,CAAC,GAAW,EAAA;QACjC,MAAM,KAAK,GAAG,IAAI,CAAC,WAAW,CAAC,GAAG,CAAC;AACnC,QAAA,OAAO,OAAO,KAAK,KAAK,UAAU,GAAG,KAAK,EAAE,GAAG,KAAK;IACtD;AAEO,IAAA,sBAAsB,CAC3B,aAAqB,EACrB,UAAkB,EAClB,OAAoB,EACpB,MAAe,EAAA;QAEf,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC;QAClD,OAAO,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,UAAU,EAAE,CAAC,MAAM,IAAI,EAAE,IAAI,KAAK,CAAC,GAAG,OAAO;IAC1E;AAEO,IAAA,oBAAoB,CACzB,aAAqB,EACrB,SAAiB,EACjB,KAAiB,EAAA;QAEjB,MAAM,KAAK,GAAG,IAAI,CAAC,gBAAgB,CAAC,aAAa,CAAC;AAClD,QAAA,OAAO,KAAK,GAAG,KAAK,CAAC,GAAG,CAAC,SAAS,EAAE,KAAK,CAAC,GAAG,KAAK;IACpD;AAEQ,IAAA,kBAAkB,CAAC,KAAY,EAAA;;;;;;;;AASrC,QAAA,MAAM,KAAK,GACT,KAAK,CAAC,UAAU,KAAK,WAAW,IAAI,KAAK,CAAC,KAAK,YAAY;AACzD,cAAG,KAAK,CAAC,KAAc,CAAC,WAAW;AACnC,cAAE,KAAK,CAAC,KAAK;AAEjB,QAAA,OAAO,kBAAkB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;IAC1C;AACD;;AC1ND;;;;;;;;AAQG;MASU,WAAW,CAAA;IACZ,QAAQ,GAAG,kBAAkB;AAChC,IAAA,cAAc,GAAG,IAAI,WAAW,EAAE;AAClC,IAAA,aAAa;AACb,IAAA,OAAO;IAEd,WAAA,CAAY,QAA4B,EAAE,aAA6B,EAAA;QACrE,IAAI,CAAC,aAAa,GAAG,aAAa,IAAI,IAAI,aAAa,EAAE;QACzD,IAAI,OAAO,IAAI,CAAC,aAAa,CAAC,QAAQ,KAAK,QAAQ,EAAE;AACnD,YAAA,MAAM,aAAa,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAC,CAAC,CAAC,GAAG,SAAS;AACvE,YAAA,IAAI,aAAa,IAAI,SAAS,EAAE;gBAC9B,QAAQ,GAAG,aAAa;YAC1B;AAEA,YAAA,IAAI,OAAO,QAAQ,KAAK,QAAQ,EAAE;AAChC,gBAAA,QAAQ,GAAG,IAAI,CAAC,QAAQ;YAC1B;AACA,YAAA,IAAI,CAAC,aAAa,CAAC,QAAQ,GAAG,QAAQ;QACxC;AACA,QAAA,IAAI,CAAC,OAAO,GAAG,IAAI,CAAC,aAAa,CAAC,OAAO,IAAI,IAAI,wBAAwB,EAAE;IAC7E;AAEU,IAAA,cAAc,CAAC,QAAkB,EAAA;QACzC,OAAO,QAAQ,CAAC,OAAO,CAAC,qBAAqB,CAAC,KAAK,CAAC,CAAC;IACvD;IAEU,eAAe,CACvB,UAAsB,EACtB,KAAU,EACV,GAAY,EACZ,SAAkB,KAAK,EAAA;;AAGvB,QAAA,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,EAAE,KAAK,YAAY,IAAI,CAAC,EAAE;YACzD,OAAO,IAAI,CAAC,wBAAwB,CAClC,UAAU,EACV,KAAK,EACL,MAAM,GAAG,GAAG,GAAG,SAAS,EACxB,MAAM,CACP;QACH;QACA,OAAO,IAAI,CAAC,wBAAwB,CAAC,UAAU,EAAE,KAAK,EAAE,GAAG,CAAC;IAC9D;IAEU,wBAAwB,CAChC,UAAsB,EACtB,KAAW,EACX,GAAY,EACZ,SAAkB,KAAK,EAAA;QAEvB,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;AACzC,YAAA,OAAO,UAAU;QACnB;AACA,QAAA,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;;AAE7B,YAAA,IAAI,GAAG,IAAI,IAAI,EAAE;AACf,gBAAA,OAAO;AACL,sBAAE,MAAM,CAAC,IAAI,CAAC,KAA4B,CAAC,CAAC,MAAM,CAC9C,CAAC,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,MAAM,CAAC,CAAA,EAAG,GAAG,IAAI,CAAC,CAAA,CAAA,CAAG,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAC9C,UAAU;AAEd,sBAAE,UAAU,CAAC,MAAM,CAAC,GAAG,EAAE,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;YACnD;;AAEA,YAAA,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE;gBACxB,KAAK,CAAC,OAAO,CACX,CAAC,IAAI,MACF,UAAU,GAAG,IAAI,CAAC,wBAAwB,CAAC,UAAU,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,CACtE;YACH;AAAO,iBAAA,IAAI,KAAK,YAAY,IAAI,EAAE;AAChC,gBAAA,IAAI,GAAG,IAAI,IAAI,EAAE;AACf,oBAAA,UAAU,GAAG,UAAU,CAAC,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,WAAW,EAAE,CAAC;gBAC1D;qBAAO;AACL,oBAAA,MAAM,KAAK,CAAC,sCAAsC,CAAC;gBACrD;YACF;iBAAO;gBACL,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,KAAI;AAC/B,oBAAA,MAAM,QAAQ,GAAG,GAAG,GAAG,CAAA,EAAG,GAAG,CAAA,CAAA,EAAI,CAAC,CAAA,CAAE,GAAG,CAAC;AACxC,oBAAA,UAAU,GAAG,IAAI,CAAC,wBAAwB,CACxC,UAAU,EACV,KAAK,CAAC,CAAC,CAAC,EACR,QAAQ,CACT;AACH,gBAAA,CAAC,CAAC;YACJ;AACA,YAAA,OAAO,UAAU;QACnB;AAAO,aAAA,IAAI,GAAG,IAAI,IAAI,EAAE;YACtB,OAAO,UAAU,CAAC,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC;QACtC;AACA,QAAA,MAAM,KAAK,CAAC,qDAAqD,CAAC;IACpE;AACD;;AC5GD;;;;;;;;AAQG;AACH;AAmCM,MAAO,cACX,SAAQ,WAAW,CAAA;AAIP,IAAA,UAAA;AADZ,IAAA,WAAA,CACY,UAAsB,EACD,QAA2B,EAC9C,aAA6B,EAAA;AAEzC,QAAA,KAAK,CAAC,QAAQ,EAAE,aAAa,CAAC;QAJpB,IAAA,CAAA,UAAU,GAAV,UAAU;IAKtB;IAsCO,gBAAgB,CACrB,iBAAgD,EAChD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,gBAAgB,GAAG,iBAAiB,EAAE,gBAAgB;QAC5D,IAAI,gBAAgB,KAAK,IAAI,IAAI,gBAAgB,KAAK,SAAS,EAAE;AAC/D,YAAA,MAAM,IAAI,KAAK,CACb,0FAA0F,CAC3F;QACH;AAEA,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;AAEzC,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB;AACzB,YAAA,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC;gBACpC,YAAY;gBACZ,kBAAkB;gBAClB,WAAW;AACZ,aAAA,CAAC;AACJ,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;;AAGrE,QAAA,MAAM,QAAQ,GAAa;YACzB,kBAAkB;YAClB,WAAW;YACX,oBAAoB;SACrB;QACD,MAAM,uBAAuB,GAC3B,IAAI,CAAC,aAAa,CAAC,uBAAuB,CAAC,QAAQ,CAAC;AACtD,QAAA,IAAI,uBAAuB,KAAK,SAAS,EAAE;YACzC,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,cAAc,EACd,uBAAuB,CACxB;QACH;QAEA,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,SAAA,CAAW;QAC9B,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAC5B,MAAM,EACN,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAC5B;AACE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,IAAI,EAAE,gBAAgB;AACtB,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CACF;IACH;IAsCO,gBAAgB,CACrB,iBAAgD,EAChD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,mBAAmB,GAAG,iBAAiB,EAAE,mBAAmB;QAClE,IAAI,mBAAmB,KAAK,IAAI,IAAI,mBAAmB,KAAK,SAAS,EAAE;AACrE,YAAA,MAAM,IAAI,KAAK,CACb,6FAA6F,CAC9F;QACH;AAEA,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;AAEzC,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB;AACzB,YAAA,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC;gBACpC,YAAY;gBACZ,kBAAkB;gBAClB,WAAW;AACZ,aAAA,CAAC;AACJ,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;;AAGrE,QAAA,MAAM,QAAQ,GAAa;YACzB,kBAAkB;YAClB,WAAW;YACX,oBAAoB;SACrB;QACD,MAAM,uBAAuB,GAC3B,IAAI,CAAC,aAAa,CAAC,uBAAuB,CAAC,QAAQ,CAAC;AACtD,QAAA,IAAI,uBAAuB,KAAK,SAAS,EAAE;YACzC,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,cAAc,EACd,uBAAuB,CACxB;QACH;QAEA,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,SAAA,CAAW;QAC9B,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAC5B,KAAK,EACL,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAC5B;AACE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,IAAI,EAAE,mBAAmB;AACzB,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CACF;IACH;AA1PW,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,4CAMH,SAAS,EAAA,QAAA,EAAA,IAAA,EAAA,EAAA,EAAA,KAAA,EAAAA,aAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AANpB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,cAAc,cAFb,MAAM,EAAA,CAAA;;2FAEP,cAAc,EAAA,UAAA,EAAA,CAAA;kBAH1B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA;;0BAOI;;0BAAY,MAAM;2BAAC,SAAS;;0BAC5B;;;ACnDL;;;;;;;;AAQG;AACH;AAgCM,MAAO,iBACX,SAAQ,WAAW,CAAA;AAIP,IAAA,UAAA;AADZ,IAAA,WAAA,CACY,UAAsB,EACD,QAA2B,EAC9C,aAA6B,EAAA;AAEzC,QAAA,KAAK,CAAC,QAAQ,EAAE,aAAa,CAAC;QAJpB,IAAA,CAAA,UAAU,GAAV,UAAU;IAKtB;IAsCO,oBAAoB,CACzB,iBAAqD,EACrD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,IAAI,GAAG,iBAAiB,EAAE,IAAI;AACpC,QAAA,MAAM,IAAI,GAAG,iBAAiB,EAAE,IAAI;AACpC,QAAA,MAAM,KAAK,GAAG,iBAAiB,EAAE,KAAK;AACtC,QAAA,MAAM,OAAO,GAAG,iBAAiB,EAAE,OAAO;AAC1C,QAAA,MAAM,IAAI,GAAG,iBAAiB,EAAE,IAAI;AACpC,QAAA,MAAM,QAAQ,GAAG,iBAAiB,EAAE,QAAQ;AAE5C,QAAA,IAAI,uBAAuB,GAAG,IAAI,UAAU,CAAC,EAAE,OAAO,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC;QACvE,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,IAAI,EACT,MAAM,CACP;QACD,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,IAAI,EACT,MAAM,CACP;QACD,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,KAAK,EACV,OAAO,CACR;QACD,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,OAAO,EACZ,SAAS,CACV;QACD,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,IAAI,EACT,MAAM,CACP;QACD,uBAAuB,GAAG,IAAI,CAAC,eAAe,CAC5C,uBAAuB,EAClB,QAAQ,EACb,UAAU,CACX;AAED,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;;AAGzC,QAAA,eAAe,GAAG,IAAI,CAAC,aAAa,CAAC,sBAAsB,CACzD,QAAQ,EACR,eAAe,EACf,eAAe,EACf,SAAS,CACV;AAED,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB;AACzB,YAAA,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC;gBACpC,YAAY;gBACZ,kBAAkB;gBAClB,WAAW;AACZ,aAAA,CAAC;AACJ,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;QAErE,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,YAAA,CAAc;QACjC,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAC5B,KAAK,EACL,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAC5B;AACE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,MAAM,EAAE,uBAAuB;AAC/B,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CACF;IACH;AA3JW,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,4CAMN,SAAS,EAAA,QAAA,EAAA,IAAA,EAAA,EAAA,EAAA,KAAA,EAAAA,aAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AANpB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,cAFhB,MAAM,EAAA,CAAA;;2FAEP,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAH7B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA;;0BAOI;;0BAAY,MAAM;2BAAC,SAAS;;0BAC5B;;;AChDL;;;;;;;;AAQG;AACH;AAsCM,MAAO,eACX,SAAQ,WAAW,CAAA;AAIP,IAAA,UAAA;AADZ,IAAA,WAAA,CACY,UAAsB,EACD,QAA2B,EAC9C,aAA6B,EAAA;AAEzC,QAAA,KAAK,CAAC,QAAQ,EAAE,aAAa,CAAC;QAJpB,IAAA,CAAA,UAAU,GAAV,UAAU;IAKtB;IAsCO,iBAAiB,CACtB,iBAAkD,EAClD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,yBAAyB,GAC7B,iBAAiB,EAAE,yBAAyB;AAE9C,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;AAEzC,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB,IAAI,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,EAAE,CAAC;AACxE,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;;AAGrE,QAAA,MAAM,QAAQ,GAAa;YACzB,kBAAkB;YAClB,WAAW;YACX,oBAAoB;SACrB;QACD,MAAM,uBAAuB,GAC3B,IAAI,CAAC,aAAa,CAAC,uBAAuB,CAAC,QAAQ,CAAC;AACtD,QAAA,IAAI,uBAAuB,KAAK,SAAS,EAAE;YACzC,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,cAAc,EACd,uBAAuB,CACxB;QACH;QAEA,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,wBAAA,CAA0B;QAC7C,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAM,MAAM,EAAE,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAAE;AACxE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,IAAI,EAAE,yBAAyB;AAC/B,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CAAC;IACJ;IAsCO,iBAAiB,CACtB,iBAAkD,EAClD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,mBAAmB,GAAG,iBAAiB,EAAE,mBAAmB;AAElE,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;AAEzC,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB;AACzB,YAAA,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC;gBACpC,YAAY;gBACZ,kBAAkB;gBAClB,WAAW;AACZ,aAAA,CAAC;AACJ,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;;AAGrE,QAAA,MAAM,QAAQ,GAAa;YACzB,kBAAkB;YAClB,WAAW;YACX,oBAAoB;SACrB;QACD,MAAM,uBAAuB,GAC3B,IAAI,CAAC,aAAa,CAAC,uBAAuB,CAAC,QAAQ,CAAC;AACtD,QAAA,IAAI,uBAAuB,KAAK,SAAS,EAAE;YACzC,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,cAAc,EACd,uBAAuB,CACxB;QACH;QAEA,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,UAAA,CAAY;QAC/B,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAC5B,MAAM,EACN,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAC5B;AACE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,IAAI,EAAE,mBAAmB;AACzB,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CACF;IACH;IAsCO,wBAAwB,CAC7B,iBAAyD,EACzD,OAAA,GAAe,MAAM,EACrB,cAAA,GAA0B,KAAK,EAC/B,OAIC,EAAA;AAED,QAAA,MAAM,YAAY,GAAG,iBAAiB,EAAE,YAAY;AAEpD,QAAA,IAAI,eAAe,GAAG,IAAI,CAAC,cAAc;AAEzC,QAAA,MAAM,gCAAgC,GACpC,OAAO,EAAE,gBAAgB,IAAI,IAAI,CAAC,aAAa,CAAC,kBAAkB,CAAC,EAAE,CAAC;AACxE,QAAA,IAAI,gCAAgC,KAAK,SAAS,EAAE;YAClD,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,QAAQ,EACR,gCAAgC,CACjC;QACH;QAEA,MAAM,mBAAmB,GACvB,OAAO,EAAE,OAAO,IAAI,IAAI,WAAW,EAAE;AAEvC,QAAA,MAAM,qBAAqB,GAAY,OAAO,EAAE,aAAa,IAAI,IAAI;;AAGrE,QAAA,MAAM,QAAQ,GAAa;YACzB,kBAAkB;YAClB,WAAW;YACX,oBAAoB;SACrB;QACD,MAAM,uBAAuB,GAC3B,IAAI,CAAC,aAAa,CAAC,uBAAuB,CAAC,QAAQ,CAAC;AACtD,QAAA,IAAI,uBAAuB,KAAK,SAAS,EAAE;YACzC,eAAe,GAAG,eAAe,CAAC,GAAG,CACnC,cAAc,EACd,uBAAuB,CACxB;QACH;QAEA,IAAI,aAAa,GAA6B,MAAM;QACpD,IAAI,gCAAgC,EAAE;AACpC,YAAA,IAAI,gCAAgC,CAAC,UAAU,CAAC,MAAM,CAAC,EAAE;gBACvD,aAAa,GAAG,MAAM;YACxB;iBAAO,IACL,IAAI,CAAC,aAAa,CAAC,UAAU,CAAC,gCAAgC,CAAC,EAC/D;gBACA,aAAa,GAAG,MAAM;YACxB;iBAAO;gBACL,aAAa,GAAG,MAAM;YACxB;QACF;QAEA,IAAI,YAAY,GAAG,CAAA,wBAAA,CAA0B;QAC7C,MAAM,EAAE,QAAQ,EAAE,eAAe,EAAE,GAAG,IAAI,CAAC,aAAa;AACxD,QAAA,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,CAAM,KAAK,EAAE,CAAA,EAAG,QAAQ,CAAA,EAAG,YAAY,EAAE,EAAE;AACvE,YAAA,OAAO,EAAE,mBAAmB;AAC5B,YAAA,IAAI,EAAE,YAAY;AAClB,YAAA,YAAY,EAAO,aAAa;AAChC,YAAA,IAAI,eAAe,GAAG,EAAE,eAAe,EAAE,GAAG,EAAE,CAAC;AAC/C,YAAA,OAAO,EAAE,eAAe;AACxB,YAAA,OAAO,EAAE,OAAO;AAChB,YAAA,aAAa,EAAE,qBAAqB;AACpC,YAAA,cAAc,EAAE,cAAc;AAC/B,SAAA,CAAC;IACJ;AAlVW,IAAA,OAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,4CAMJ,SAAS,EAAA,QAAA,EAAA,IAAA,EAAA,EAAA,EAAA,KAAA,EAAAA,aAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,UAAA,EAAA,CAAA;AANpB,IAAA,OAAA,KAAA,GAAA,EAAA,CAAA,qBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,cAFd,MAAM,EAAA,CAAA;;2FAEP,eAAe,EAAA,UAAA,EAAA,CAAA;kBAH3B,UAAU;AAAC,YAAA,IAAA,EAAA,CAAA;AACV,oBAAA,UAAU,EAAE,MAAM;AACnB,iBAAA;;0BAOI;;0BAAY,MAAM;2BAAC,SAAS;;0BAC5B;;;AC7CE,MAAM,IAAI,GAAG,CAAC,cAAc,EAAE,iBAAiB,EAAE,eAAe;;ACTvE;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;AAEH;;AAEG;IACS;AAAZ,CAAA,UAAY,WAAW,EAAA;AACrB,IAAA,WAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AAEnB,IAAA,WAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AAEf,IAAA,WAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACnB,CAAC,EANW,WAAW,KAAX,WAAW,GAAA,EAAA,CAAA,CAAA;;ACbvB;;;;;;;;AAQG;IAeS;AAAZ,CAAA,UAAY,wBAAwB,EAAA;AAClC,IAAA,wBAAA,CAAA,SAAA,CAAA,GAAA,SAAmB;AACnB,IAAA,wBAAA,CAAA,OAAA,CAAA,GAAA,OAAe;AACf,IAAA,wBAAA,CAAA,QAAA,CAAA,GAAA,QAAiB;AACnB,CAAC,EAJW,wBAAwB,KAAxB,wBAAwB,GAAA,EAAA,CAAA,CAAA;;ACvBpC;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;ACRH;;;;;;;;AAQG;;MCOU,SAAS,CAAA;IACb,OAAO,OAAO,CACnB,oBAAyC,EAAA;QAEzC,OAAO;AACL,YAAA,QAAQ,EAAE,SAAS;YACnB,SAAS,EAAE,CAAC,EAAE,OAAO,EAAE,aAAa,EAAE,UAAU,EAAE,oBAAoB,EAAE,CAAC;SAC1E;IACH;IAEA,WAAA,CAC0B,YAAuB,EACnC,IAAgB,EAAA;QAE5B,IAAI,YAAY,EAAE;AAChB,YAAA,MAAM,IAAI,KAAK,CACb,kEAAkE,CACnE;QACH;QACA,IAAI,CAAC,IAAI,EAAE;YACT,MAAM,IAAI,KAAK,CACb,+DAA+D;AAC7D,gBAAA,0DAA0D,CAC7D;QACH;IACF;uGAzBW,SAAS,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,SAAA,EAAA,QAAA,EAAA,IAAA,EAAA,QAAA,EAAA,IAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,IAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA;wGAAT,SAAS,EAAA,CAAA;wGAAT,SAAS,EAAA,CAAA;;2FAAT,SAAS,EAAA,UAAA,EAAA,CAAA;kBANrB,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,YAAY,EAAE,EAAE;AAChB,oBAAA,OAAO,EAAE,EAAE;AACX,oBAAA,SAAS,EAAE,EAAE;AACd,iBAAA;;0BAYI;;0BAAY;;0BACZ;;;ACvBL;AACM,SAAU,UAAU,CACxB,gBAAkD,EAAA;AAElD,IAAA,OAAO,wBAAwB,CAAC;QAC9B,OAAO,gBAAgB,KAAK;cACxB,EAAE,OAAO,EAAE,SAAS,EAAE,QAAQ,EAAE,gBAAgB;AAClD,cAAE;AACE,gBAAA,OAAO,EAAE,aAAa;gBACtB,QAAQ,EAAE,IAAI,aAAa,CAAC,EAAE,GAAG,gBAAgB,EAAE,CAAC;AACrD,aAAA;AACN,KAAA,CAAC;AACJ;;AChBA;;AAEG;;;;"}
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/regions-api.ts","../../api/users-api.ts","../../api/api.ts","../../model/address-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/physical-address-dto.ts","../../model/refresh-token-command.ts","../../model/region-level.ts","../../model/search-region-dto.ts","../../model/token-model.ts","../../model/total-count-list-metadata.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 { 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 { 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 \"./regions-api\";\nimport { RegionsApiService } from \"./regions-api\";\nexport * from \"./regions-apiInterface\";\nexport * from \"./users-api\";\nimport { UsersApiService } from \"./users-api\";\nexport * from \"./users-apiInterface\";\nexport const APIS = [AuthApiService, RegionsApiService, UsersApiService];\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 address1: string;\n address2: string;\n city: string;\n county: string;\n state: string;\n postalCode: string;\n apartmentNumber: 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 * 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 * Remember user\\'s cookie for longer period.\n */\n rememberMe: 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\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 * 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 * 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 * 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
@@ -190,6 +190,87 @@ declare class BaseService {
190
190
  protected addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string, isDeep?: boolean): HttpParams;
191
191
  }
192
192
 
193
+ /**
194
+ * RenewAire CORES API
195
+ *
196
+ * Contact: renewaire@saritasa.com
197
+ *
198
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
199
+ * https://openapi-generator.tech
200
+ * Do not edit the class manually.
201
+ */
202
+ /**
203
+ * DTO for RenewAire.Cores.Domain.Address.
204
+ */
205
+ interface AddressDto {
206
+ address1: string;
207
+ address2: string;
208
+ city: string;
209
+ county: string;
210
+ state: string;
211
+ postalCode: string;
212
+ apartmentNumber: string;
213
+ }
214
+
215
+ /**
216
+ * RenewAire CORES API
217
+ *
218
+ * Contact: renewaire@saritasa.com
219
+ *
220
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
221
+ * https://openapi-generator.tech
222
+ * Do not edit the class manually.
223
+ */
224
+
225
+ /**
226
+ * Company information DTO.
227
+ */
228
+ interface CompanyInformationDto {
229
+ name: string;
230
+ /**
231
+ * DTO for RenewAire.Cores.Domain.Address.
232
+ */
233
+ address: AddressDto;
234
+ phone: string;
235
+ website: string;
236
+ }
237
+
238
+ /**
239
+ * RenewAire CORES API
240
+ *
241
+ * Contact: renewaire@saritasa.com
242
+ *
243
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
244
+ * https://openapi-generator.tech
245
+ * Do not edit the class manually.
246
+ */
247
+
248
+ /**
249
+ * Contact DTO.
250
+ */
251
+ interface ContactDto {
252
+ /**
253
+ * Address.
254
+ */
255
+ address: AddressDto;
256
+ /**
257
+ * First name.
258
+ */
259
+ firstName: string;
260
+ /**
261
+ * Last name.
262
+ */
263
+ lastName: string;
264
+ /**
265
+ * Phone.
266
+ */
267
+ phone: string;
268
+ /**
269
+ * Email.
270
+ */
271
+ email: string;
272
+ }
273
+
193
274
  /**
194
275
  * RenewAire CORES API
195
276
  *
@@ -359,6 +440,34 @@ declare enum RegionLevel {
359
440
  County = "County"
360
441
  }
361
442
 
443
+ /**
444
+ * RenewAire CORES API
445
+ *
446
+ * Contact: renewaire@saritasa.com
447
+ *
448
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
449
+ * https://openapi-generator.tech
450
+ * Do not edit the class manually.
451
+ */
452
+
453
+ /**
454
+ * Rep territory contacts DTO.
455
+ */
456
+ interface RepTerritoryContactsDto {
457
+ /**
458
+ * Regional director.
459
+ */
460
+ regionalDirector: ContactDto;
461
+ /**
462
+ * Company information.
463
+ */
464
+ companyInformation: CompanyInformationDto;
465
+ /**
466
+ * Contacts.
467
+ */
468
+ contacts: Array<ContactDto>;
469
+ }
470
+
362
471
  /**
363
472
  * RenewAire CORES API
364
473
  *
@@ -669,6 +778,9 @@ declare class RegionsApiService extends BaseService implements RegionsApiService
669
778
  interface UsersConfirmEmailRequestParams {
670
779
  emailConfirmationTokenDto?: EmailConfirmationTokenDto;
671
780
  }
781
+ interface UsersGetRepContacts0RequestParams {
782
+ userId: number;
783
+ }
672
784
  interface UsersRegisterUserRequestParams {
673
785
  userRegistrationDto?: UserRegistrationDto;
674
786
  }
@@ -684,6 +796,17 @@ interface UsersApiServiceInterface {
684
796
  * @param requestParameters
685
797
  */
686
798
  usersConfirmEmail(requestParameters: UsersConfirmEmailRequestParams, extraHttpRequestParams?: any): Observable<{}>;
799
+ /**
800
+ * Get current user REP contacts.
801
+ *
802
+ */
803
+ usersGetRepContacts(extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
804
+ /**
805
+ * Get user REP contacts.
806
+ *
807
+ * @param requestParameters
808
+ */
809
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, extraHttpRequestParams?: any): Observable<RepTerritoryContactsDto>;
687
810
  /**
688
811
  * Register user.
689
812
  *
@@ -722,6 +845,47 @@ declare class UsersApiService extends BaseService implements UsersApiServiceInte
722
845
  context?: HttpContext;
723
846
  transferCache?: boolean;
724
847
  }): Observable<HttpEvent<any>>;
848
+ /**
849
+ * Get current user REP contacts.
850
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
851
+ * @param reportProgress flag to report request and response progress.
852
+ */
853
+ usersGetRepContacts(observe?: "body", reportProgress?: boolean, options?: {
854
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
855
+ context?: HttpContext;
856
+ transferCache?: boolean;
857
+ }): Observable<RepTerritoryContactsDto>;
858
+ usersGetRepContacts(observe?: "response", reportProgress?: boolean, options?: {
859
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
860
+ context?: HttpContext;
861
+ transferCache?: boolean;
862
+ }): Observable<HttpResponse<RepTerritoryContactsDto>>;
863
+ usersGetRepContacts(observe?: "events", reportProgress?: boolean, options?: {
864
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
865
+ context?: HttpContext;
866
+ transferCache?: boolean;
867
+ }): Observable<HttpEvent<RepTerritoryContactsDto>>;
868
+ /**
869
+ * Get user REP contacts.
870
+ * @param requestParameters
871
+ * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
872
+ * @param reportProgress flag to report request and response progress.
873
+ */
874
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "body", reportProgress?: boolean, options?: {
875
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
876
+ context?: HttpContext;
877
+ transferCache?: boolean;
878
+ }): Observable<RepTerritoryContactsDto>;
879
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "response", reportProgress?: boolean, options?: {
880
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
881
+ context?: HttpContext;
882
+ transferCache?: boolean;
883
+ }): Observable<HttpResponse<RepTerritoryContactsDto>>;
884
+ usersGetRepContacts_1(requestParameters: UsersGetRepContacts0RequestParams, observe?: "events", reportProgress?: boolean, options?: {
885
+ httpHeaderAccept?: "text/plain" | "application/json" | "text/json";
886
+ context?: HttpContext;
887
+ transferCache?: boolean;
888
+ }): Observable<HttpEvent<RepTerritoryContactsDto>>;
725
889
  /**
726
890
  * Register user.
727
891
  * @param requestParameters
@@ -789,4 +953,4 @@ declare class ApiModule {
789
953
  declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
790
954
 
791
955
  export { APIS, ApiModule, AuthApiService, BASE_PATH, COLLECTION_FORMATS, Configuration, RegionLevel, RegionsApiService, SearchRegionDtoLevelEnum, UsersApiService, provideApi };
792
- export type { AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, ConfigurationParameters, DataFormat, DataType, EmailConfirmationTokenDto, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams };
956
+ export type { AddressDto, AuthApiServiceInterface, AuthAuthenticateRequestParams, AuthRefreshTokenRequestParams, CompanyInformationDto, ConfigurationParameters, ContactDto, DataFormat, DataType, EmailConfirmationTokenDto, Int32IdDto, LoginUserCommand, OffsetLimitListMetadata, PagedListMetadata, Param, ParamLocation, ParamStyle, PhysicalAddressDto, RefreshTokenCommand, RegionsApiServiceInterface, RegionsSearchRegionsRequestParams, RepTerritoryContactsDto, SearchRegionDto, SearchRegionDtoPagedListMetadataDto, StandardDataFormat, StandardDataType, StandardParamStyle, TokenModel, TotalCountListMetadata, UserEmailDto, UserPreferencesDto, UserProfileDto, UserRegistrationDto, UsersApiServiceInterface, UsersConfirmEmailRequestParams, UsersGetRepContacts0RequestParams, UsersRegisterUserRequestParams, UsersRequestConfirmEmailRequestParams };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@saritasa/renewaire-frontend-sdk",
3
- "version": "0.1.6",
4
- "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.126+Branch.develop.Sha.94a2d9285777c72c7f11990936f1f3b8804466ad.94a2d9285777c72c7f11990936f1f3b8804466ad)",
3
+ "version": "0.1.7",
4
+ "description": "OpenAPI client for @saritasa/renewaire-frontend-sdk(for version 0.1.0-dev.152+Branch.develop.Sha.324c6f087a5c01c8951e38217108738b9a1a0281.324c6f087a5c01c8951e38217108738b9a1a0281)",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
7
7
  "type": "git",