{ "version": 3, "sources": ["libs/cloud/shared/guards/app-environment-guard/src/app-environment-guard.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/api-configuration.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/base-service.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/request-builder.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/fn/users-verification/verification.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/fn/users-verification/verification-code.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/services/api-users-verification.service.ts", "libs/cloud/shared/verification-code/data-access/src/lib/_AUTOGENERATED_/verification-code-api.module.ts"], "sourcesContent": ["/* eslint-disable indent */\nimport { Inject, Injectable, inject } from '@angular/core';\nimport { ActivatedRouteSnapshot, CanActivateFn, Router, RouterStateSnapshot } from '@angular/router';\n\nimport { APP_ENVIRONMENT, AppEnvironment } from '@shure/cloud/shared/utils/config';\n\n// enforce that the key must be boolean or undefined, which will coerce to false\ntype AppEnvironmentKey = keyof {\n\t[P in keyof AppEnvironment as AppEnvironment[P] extends boolean | undefined ? P : never]: never;\n};\n\n@Injectable({\n\tprovidedIn: 'root'\n})\nexport class AppEnvironmentGuard {\n\tconstructor(\n\t\t@Inject(APP_ENVIRONMENT) private appEnv: AppEnvironment,\n\t\tprivate router: Router\n\t) {}\n\n\tpublic canActivate(envProps: AppEnvironmentKey[]): boolean {\n\t\tconst isTrue = envProps.every((prop) => this.appEnv[prop]);\n\t\tif (isTrue) {\n\t\t\treturn true;\n\t\t}\n\t\tthis.router.navigate(['/']);\n\t\treturn false;\n\t}\n}\n\n/**\n * This is a partially applied function that allows us to provide arguments to our canActivate tokens\n * @param envProps - any boolean property in AppEnvironment\n */\nexport const appEnvironmentGuard =\n\t(envProps: AppEnvironmentKey[]): CanActivateFn =>\n\t(_route: ActivatedRouteSnapshot, _state: RouterStateSnapshot) => {\n\t\treturn inject(AppEnvironmentGuard).canActivate(envProps);\n\t};\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { Injectable } from '@angular/core';\n\n/**\n * Global configuration\n */\n@Injectable({\n providedIn: 'root',\n})\nexport class ApiConfiguration {\n rootUrl: string = '';\n}\n\n/**\n * Parameters for `VerificationCodeApiModule.forRoot()`\n */\nexport interface ApiConfigurationParams {\n rootUrl?: string;\n}\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { Injectable } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { ApiConfiguration } from './api-configuration';\n\n/**\n * Base class for services\n */\n@Injectable()\nexport class BaseService {\n constructor(\n protected config: ApiConfiguration,\n protected http: HttpClient\n ) {\n }\n\n private _rootUrl?: string;\n\n /**\n * Returns the root url for all operations in this service. If not set directly in this\n * service, will fallback to `ApiConfiguration.rootUrl`.\n */\n get rootUrl(): string {\n return this._rootUrl || this.config.rootUrl;\n }\n\n /**\n * Sets the root URL for API operations in this service.\n */\n set rootUrl(rootUrl: string) {\n this._rootUrl = rootUrl;\n }\n}\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { HttpRequest, HttpParameterCodec, HttpParams, HttpHeaders, HttpContext } from '@angular/common/http';\n\n/**\n * Custom parameter codec to correctly handle the plus sign in parameter\n * values. See https://github.com/angular/angular/issues/18261\n */\nclass ParameterCodec implements HttpParameterCodec {\n encodeKey(key: string): string {\n return encodeURIComponent(key);\n }\n\n encodeValue(value: string): string {\n return encodeURIComponent(value);\n }\n\n decodeKey(key: string): string {\n return decodeURIComponent(key);\n }\n\n decodeValue(value: string): string {\n return decodeURIComponent(value);\n }\n}\nconst ParameterCodecInstance = new ParameterCodec();\n\n/**\n * Defines the options for appending a parameter\n */\ninterface ParameterOptions {\n style?: string;\n explode?: boolean;\n}\n\n/**\n * Base class for a parameter\n */\nabstract class Parameter {\n constructor(public name: string, public value: any, public options: ParameterOptions, defaultStyle: string, defaultExplode: boolean) {\n this.options = options || {};\n if (this.options.style === null || this.options.style === undefined) {\n this.options.style = defaultStyle;\n }\n if (this.options.explode === null || this.options.explode === undefined) {\n this.options.explode = defaultExplode;\n }\n }\n\n serializeValue(value: any, separator = ','): string {\n if (value === null || value === undefined) {\n return '';\n } else if (value instanceof Array) {\n return value.map(v => this.serializeValue(v).split(separator).join(encodeURIComponent(separator))).join(separator);\n } else if (typeof value === 'object') {\n const array: string[] = [];\n for (const key of Object.keys(value)) {\n let propVal = value[key];\n if (propVal !== null && propVal !== undefined) {\n propVal = this.serializeValue(propVal).split(separator).join(encodeURIComponent(separator));\n if (this.options.explode) {\n array.push(`${key}=${propVal}`);\n } else {\n array.push(key);\n array.push(propVal);\n }\n }\n }\n return array.join(separator);\n } else {\n return String(value);\n }\n }\n}\n\n/**\n * A parameter in the operation path\n */\nclass PathParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'simple', false);\n }\n\n append(path: string): string {\n let value = this.value;\n if (value === null || value === undefined) {\n value = '';\n }\n let prefix = this.options.style === 'label' ? '.' : '';\n let separator = this.options.explode ? prefix === '' ? ',' : prefix : ',';\n let alreadySerialized = false;\n if (this.options.style === 'matrix') {\n // The parameter name is just used as prefix, except in some cases...\n prefix = `;${this.name}=`;\n if (this.options.explode && typeof value === 'object') {\n prefix = ';';\n if (value instanceof Array) {\n // For arrays we have to repeat the name for each element\n value = value.map(v => `${this.name}=${this.serializeValue(v, ';')}`);\n value = value.join(';');\n alreadySerialized = true;\n } else {\n // For objects we have to put each the key / value pairs\n value = this.serializeValue(value, ';');\n alreadySerialized = true\n }\n }\n }\n value = prefix + (alreadySerialized ? value : this.serializeValue(value, separator));\n // Replace both the plain variable and the corresponding variant taking in the prefix and explode into account\n path = path.replace(`{${this.name}}`, value);\n path = path.replace(`{${prefix}${this.name}${this.options.explode ? '*' : ''}}`, value);\n return path;\n }\n\n // @ts-ignore\n serializeValue(value: any, separator = ','): string {\n var result = typeof value === 'string' ? encodeURIComponent(value) : super.serializeValue(value, separator);\n result = result.replace(/%3D/g, '=');\n result = result.replace(/%3B/g, ';');\n result = result.replace(/%2C/g, ',');\n return result;\n }\n}\n\n/**\n * A parameter in the query\n */\nclass QueryParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'form', true);\n }\n\n append(params: HttpParams): HttpParams {\n if (this.value instanceof Array) {\n // Array serialization\n if (this.options.explode) {\n for (const v of this.value) {\n params = params.append(this.name, this.serializeValue(v));\n }\n } else {\n const separator = this.options.style === 'spaceDelimited'\n ? ' ' : this.options.style === 'pipeDelimited'\n ? '|' : ',';\n return params.append(this.name, this.serializeValue(this.value, separator));\n }\n } else if (this.value !== null && typeof this.value === 'object') {\n // Object serialization\n if (this.options.style === 'deepObject') {\n // Append a parameter for each key, in the form `name[key]`\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n params = params.append(`${this.name}[${key}]`, this.serializeValue(propVal));\n }\n }\n } else if (this.options.explode) {\n // Append a parameter for each key without using the parameter name\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n params = params.append(key, this.serializeValue(propVal));\n }\n }\n } else {\n // Append a single parameter whose values are a comma-separated list of key,value,key,value...\n const array: any[] = [];\n for (const key of Object.keys(this.value)) {\n const propVal = this.value[key];\n if (propVal !== null && propVal !== undefined) {\n array.push(key);\n array.push(propVal);\n }\n }\n params = params.append(this.name, this.serializeValue(array));\n }\n } else if (this.value !== null && this.value !== undefined) {\n // Plain value\n params = params.append(this.name, this.serializeValue(this.value));\n }\n return params;\n }\n}\n\n/**\n * A parameter in the HTTP request header\n */\nclass HeaderParameter extends Parameter {\n constructor(name: string, value: any, options: ParameterOptions) {\n super(name, value, options, 'simple', false);\n }\n\n append(headers: HttpHeaders): HttpHeaders {\n if (this.value !== null && this.value !== undefined) {\n if (this.value instanceof Array) {\n for (const v of this.value) {\n headers = headers.append(this.name, this.serializeValue(v));\n }\n } else {\n headers = headers.append(this.name, this.serializeValue(this.value));\n }\n }\n return headers;\n }\n}\n\n/**\n * Helper to build http requests from parameters\n */\nexport class RequestBuilder {\n\n private _path = new Map();\n private _query = new Map();\n private _header = new Map();\n _bodyContent: any | null;\n _bodyContentType?: string;\n\n constructor(\n public rootUrl: string,\n public operationPath: string,\n public method: string) {\n }\n\n /**\n * Sets a path parameter\n */\n path(name: string, value: any, options?: ParameterOptions): void {\n this._path.set(name, new PathParameter(name, value, options || {}));\n }\n\n /**\n * Sets a query parameter\n */\n query(name: string, value: any, options?: ParameterOptions): void {\n this._query.set(name, new QueryParameter(name, value, options || {}));\n }\n\n /**\n * Sets a header parameter\n */\n header(name: string, value: any, options?: ParameterOptions): void {\n this._header.set(name, new HeaderParameter(name, value, options || {}));\n }\n\n /**\n * Sets the body content, along with the content type\n */\n body(value: any, contentType = 'application/json'): void {\n if (value instanceof Blob) {\n this._bodyContentType = value.type;\n } else {\n this._bodyContentType = contentType;\n }\n if (this._bodyContentType === 'application/x-www-form-urlencoded' && value !== null && typeof value === 'object') {\n // Handle URL-encoded data\n const pairs: Array<[string, string]> = [];\n for (const key of Object.keys(value)) {\n let val = value[key];\n if (!(val instanceof Array)) {\n val = [val];\n }\n for (const v of val) {\n const formValue = this.formDataValue(v);\n if (formValue !== null) {\n pairs.push([key, formValue]);\n }\n }\n }\n this._bodyContent = pairs.map(p => `${encodeURIComponent(p[0])}=${encodeURIComponent(p[1])}`).join('&');\n } else if (this._bodyContentType === 'multipart/form-data') {\n // Handle multipart form data\n const formData = new FormData();\n if (value !== null && value !== undefined) {\n for (const key of Object.keys(value)) {\n const val = value[key];\n if (val instanceof Array) {\n for (const v of val) {\n const toAppend = this.formDataValue(v);\n if (toAppend !== null) {\n formData.append(key, toAppend);\n }\n }\n } else {\n const toAppend = this.formDataValue(val);\n if (toAppend !== null) {\n formData.set(key, toAppend);\n }\n }\n }\n }\n this._bodyContent = formData;\n } else {\n // The body is the plain content\n this._bodyContent = value;\n }\n }\n\n private formDataValue(value: any): any {\n if (value === null || value === undefined) {\n return null;\n }\n if (value instanceof Blob) {\n return value;\n }\n if (typeof value === 'object') {\n return new Blob([JSON.stringify(value)], {type: 'application/json'})\n }\n return String(value);\n }\n\n /**\n * Builds the request with the current set parameters\n */\n build(options?: {\n /** Which content types to accept */\n accept?: string;\n\n /** The expected response type */\n responseType?: 'json' | 'text' | 'blob' | 'arraybuffer';\n\n /** Whether to report progress on uploads / downloads */\n reportProgress?: boolean;\n\n /** Allow passing HttpContext for HttpClient */\n context?: HttpContext;\n }): HttpRequest {\n\n options = options || {};\n\n // Path parameters\n let path = this.operationPath;\n for (const pathParam of this._path.values()) {\n path = pathParam.append(path);\n }\n const url = this.rootUrl + path;\n\n // Query parameters\n let httpParams = new HttpParams({\n encoder: ParameterCodecInstance\n });\n for (const queryParam of this._query.values()) {\n httpParams = queryParam.append(httpParams);\n }\n\n // Header parameters\n let httpHeaders = new HttpHeaders();\n if (options.accept) {\n httpHeaders = httpHeaders.append('Accept', options.accept);\n }\n for (const headerParam of this._header.values()) {\n httpHeaders = headerParam.append(httpHeaders);\n }\n\n // Request content headers\n if (this._bodyContentType && !(this._bodyContent instanceof FormData)) {\n httpHeaders = httpHeaders.set('Content-Type', this._bodyContentType);\n }\n\n // Perform the request\n return new HttpRequest(this.method.toUpperCase(), url, this._bodyContent, {\n params: httpParams,\n headers: httpHeaders,\n responseType: options.responseType,\n reportProgress: options.reportProgress,\n context: options.context\n });\n }\n}\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { MobileVerificationCodeDto } from '../../models/mobile-verification-code-dto';\nimport { VerificationSuccessResponseDto } from '../../models/verification-success-response-dto';\n\nexport interface Verification$Params {\n body: MobileVerificationCodeDto\n}\n\nexport function verification(http: HttpClient, rootUrl: string, params: Verification$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, verification.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nverification.PATH = '/api/v1/verification';\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { HttpClient, HttpContext, HttpResponse } from '@angular/common/http';\nimport { Observable } from 'rxjs';\nimport { filter, map } from 'rxjs/operators';\nimport { StrictHttpResponse } from '../../strict-http-response';\nimport { RequestBuilder } from '../../request-builder';\n\nimport { VerificationCodeDto } from '../../models/verification-code-dto';\nimport { VerificationResponseDto } from '../../models/verification-response-dto';\n\nexport interface VerificationCode$Params {\n body: VerificationCodeDto\n}\n\nexport function verificationCode(http: HttpClient, rootUrl: string, params: VerificationCode$Params, context?: HttpContext): Observable> {\n const rb = new RequestBuilder(rootUrl, verificationCode.PATH, 'post');\n if (params) {\n rb.body(params.body, 'application/json');\n }\n\n return http.request(\n rb.build({ responseType: 'json', accept: 'application/json', context })\n ).pipe(\n filter((r: any): r is HttpResponse => r instanceof HttpResponse),\n map((r: HttpResponse) => {\n return r as StrictHttpResponse;\n })\n );\n}\n\nverificationCode.PATH = '/api/v1/code';\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { HttpClient, HttpContext } from '@angular/common/http';\nimport { Injectable } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { map } from 'rxjs/operators';\n\nimport { BaseService } from '../base-service';\nimport { ApiConfiguration } from '../api-configuration';\nimport { StrictHttpResponse } from '../strict-http-response';\n\nimport { verification } from '../fn/users-verification/verification';\nimport { Verification$Params } from '../fn/users-verification/verification';\nimport { verificationCode } from '../fn/users-verification/verification-code';\nimport { VerificationCode$Params } from '../fn/users-verification/verification-code';\nimport { VerificationResponseDto } from '../models/verification-response-dto';\nimport { VerificationSuccessResponseDto } from '../models/verification-success-response-dto';\n\n@Injectable({ providedIn: 'root' })\nexport class ApiUsersVerificationService extends BaseService {\n constructor(config: ApiConfiguration, http: HttpClient) {\n super(config, http);\n }\n\n /** Path part for operation `verificationCode()` */\n static readonly VerificationCodePath = '/api/v1/code';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `verificationCode()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n verificationCode$Response(params: VerificationCode$Params, context?: HttpContext): Observable> {\n return verificationCode(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `verificationCode$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n verificationCode(params: VerificationCode$Params, context?: HttpContext): Observable {\n return this.verificationCode$Response(params, context).pipe(\n map((r: StrictHttpResponse): VerificationResponseDto => r.body)\n );\n }\n\n /** Path part for operation `verification()` */\n static readonly VerificationPath = '/api/v1/verification';\n\n /**\n * This method provides access to the full `HttpResponse`, allowing access to response headers.\n * To access only the response body, use `verification()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n verification$Response(params: Verification$Params, context?: HttpContext): Observable> {\n return verification(this.http, this.rootUrl, params, context);\n }\n\n /**\n * This method provides access only to the response body.\n * To access the full response (for headers, for example), `verification$Response()` instead.\n *\n * This method sends `application/json` and handles request body of type `application/json`.\n */\n verification(params: Verification$Params, context?: HttpContext): Observable {\n return this.verification$Response(params, context).pipe(\n map((r: StrictHttpResponse): VerificationSuccessResponseDto => r.body)\n );\n }\n\n}\n", "/* tslint:disable */\n/* eslint-disable */\n/* Code generated by ng-openapi-gen DO NOT EDIT. */\n\nimport { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\nimport { HttpClient } from '@angular/common/http';\nimport { ApiConfiguration, ApiConfigurationParams } from './api-configuration';\n\nimport { ApiUsersVerificationService } from './services/api-users-verification.service';\n\n/**\n * Module that provides all services and configuration.\n */\n@NgModule({\n imports: [],\n exports: [],\n declarations: [],\n providers: [\n ApiUsersVerificationService,\n ApiConfiguration\n ],\n})\nexport class VerificationCodeApiModule {\n static forRoot(params: ApiConfigurationParams): ModuleWithProviders {\n return {\n ngModule: VerificationCodeApiModule,\n providers: [\n {\n provide: ApiConfiguration,\n useValue: params\n }\n ]\n }\n }\n\n constructor( \n @Optional() @SkipSelf() parentModule: VerificationCodeApiModule,\n @Optional() http: HttpClient\n ) {\n if (parentModule) {\n throw new Error('VerificationCodeApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575');\n }\n }\n}\n"], "mappings": "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", "names": ["AppEnvironmentGuard", "constructor", "appEnv", "router", "canActivate", "envProps", "every", "prop", "navigate", "\u0275\u0275inject", "APP_ENVIRONMENT", "Router", "factory", "\u0275fac", "providedIn", "appEnvironmentGuard", "_route", "_state", "inject", "ApiConfiguration", "constructor", "rootUrl", "factory", "\u0275fac", "providedIn", "BaseService", "constructor", "config", "http", "rootUrl", "_rootUrl", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "ParameterCodec", "encodeKey", "key", "encodeURIComponent", "encodeValue", "value", "decodeKey", "decodeURIComponent", "decodeValue", "ParameterCodecInstance", "Parameter", "constructor", "name", "options", "defaultStyle", "defaultExplode", "style", "undefined", "explode", "serializeValue", "separator", "Array", "map", "v", "split", "join", "array", "Object", "keys", "propVal", "push", "String", "PathParameter", "append", "path", "prefix", "alreadySerialized", "replace", "result", "QueryParameter", "params", "HeaderParameter", "headers", "RequestBuilder", "rootUrl", "operationPath", "method", "_path", "Map", "_query", "_header", "set", "query", "header", "body", "contentType", "Blob", "_bodyContentType", "type", "pairs", "val", "formValue", "formDataValue", "_bodyContent", "p", "formData", "FormData", "toAppend", "JSON", "stringify", "build", "pathParam", "values", "url", "httpParams", "HttpParams", "encoder", "queryParam", "httpHeaders", "HttpHeaders", "accept", "headerParam", "HttpRequest", "toUpperCase", "responseType", "reportProgress", "context", "verification", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "verificationCode", "http", "rootUrl", "params", "context", "rb", "RequestBuilder", "PATH", "body", "request", "build", "responseType", "accept", "pipe", "filter", "r", "HttpResponse", "map", "ApiUsersVerificationService", "BaseService", "constructor", "config", "http", "VerificationCodePath", "verificationCode$Response", "params", "context", "verificationCode", "rootUrl", "pipe", "map", "r", "body", "VerificationPath", "verification$Response", "verification", "\u0275\u0275inject", "ApiConfiguration", "HttpClient", "factory", "\u0275fac", "providedIn", "VerificationCodeApiModule", "forRoot", "params", "ngModule", "providers", "provide", "ApiConfiguration", "useValue", "constructor", "parentModule", "http", "Error", "\u0275\u0275inject", "HttpClient", "ApiUsersVerificationService"] }