{ "version": 3, "sources": ["libs/pipe/safe-url.pipe.ts", "apps/scholar/src/app/shared/services/api/okta.service.ts"], "sourcesContent": ["import { Pipe, PipeTransform, inject } from '@angular/core';\nimport { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';\n\n@Pipe({ name: 'safeUrl', standalone: true })\nexport class SafeUrlPipe implements PipeTransform {\n\tprivate sanitizer: DomSanitizer = inject(DomSanitizer);\n\n\ttransform(url: string): SafeResourceUrl {\n\t\treturn this.sanitizer.bypassSecurityTrustResourceUrl(url);\n\t}\n}\n", "import { Injectable } from '@angular/core';\nimport { HttpService } from '@nha/api/http-service.class';\nimport { Observable } from 'rxjs';\nimport { IPasswordSettings } from '../../types/ipassword-settings.interface';\nimport { ScholarApiConfiguration } from './scholar-api.configuration';\n\n@Injectable({\n\tprovidedIn: 'root'\n})\nexport class OktaService extends HttpService {\n\tconstructor(config: ScholarApiConfiguration) {\n\t\tsuper(config, 'okta');\n\t}\n\n\tgetPasswordSettings(): Observable<IPasswordSettings> {\n\t\treturn this.get<IPasswordSettings>(`${this.serviceUrl}/password-settings`);\n\t}\n\n\tchangeUsername(newUsername: string): Observable<void> {\n\t\treturn this.post<void>(`${this.serviceUrl}/change-username`, { newUsername: newUsername });\n\t}\n\n\tchangePasswordService(currentPassword: string, newPassword: string): Observable<void> {\n\t\treturn this.post<void>(`${this.serviceUrl}/change-password`, { currentPassword, newPassword });\n\t}\n\n\tchangeMFASettings(studentInSchoolID: number, isMFAEnabled: boolean): Observable<void> {\n\t\treturn this.post<void>(`${this.serviceUrl}/change-mfa`, { studentInSchoolID, isMFAEnabled });\n\t}\n\n\tgetMFASettings(): Observable<{ mfaEnabled: boolean; studentID: number }[]> {\n\t\treturn this.get<{ mfaEnabled: boolean; studentID: number }[]>(`${this.serviceUrl}/get-mfa`);\n\t}\n\n\tgetActivationStatus(guardianGuid: string): Observable<{ status: string; emailHint: string }> {\n\t\treturn this.post<{ status: string; emailHint: string }>(`${this.serviceUrl}/activation-status/${guardianGuid}`, {});\n\t}\n\n\tresendActivation(guardianGuid: string): Observable<{ status: string; emailHint: string }> {\n\t\treturn this.post<{ status: string; emailHint: string }>(`${this.serviceUrl}/resend-activation/${guardianGuid}`, {});\n\t}\n}\n"], "mappings": "yHAIA,IAAaA,GAAW,IAAA,CAAlB,MAAOA,CAAW,CADxBC,aAAA,CAES,KAAAC,UAA0BC,EAAOC,CAAY,EAErDC,UAAUC,EAAW,CACpB,OAAO,KAAKJ,UAAUK,+BAA+BD,CAAG,CACzD,iDALYN,EAAW,CAAA,+CAAXA,EAAWQ,KAAA,GAAAC,WAAA,EAAA,CAAA,CAAA,SAAXT,CAAW,GAAA,ECKxB,IAAaU,GAAY,IAAA,CAAnB,MAAOA,UAAoBC,CAAW,CAC3CC,YAAYC,EAA+B,CAC1C,MAAMA,EAAQ,MAAM,CACrB,CAEAC,qBAAmB,CAClB,OAAO,KAAKC,IAAuB,GAAG,KAAKC,UAAU,oBAAoB,CAC1E,CAEAC,eAAeC,EAAmB,CACjC,OAAO,KAAKC,KAAW,GAAG,KAAKH,UAAU,mBAAoB,CAAEE,YAAaA,CAAW,CAAE,CAC1F,CAEAE,sBAAsBC,EAAyBC,EAAmB,CACjE,OAAO,KAAKH,KAAW,GAAG,KAAKH,UAAU,mBAAoB,CAAEK,gBAAAA,EAAiBC,YAAAA,CAAW,CAAE,CAC9F,CAEAC,kBAAkBC,EAA2BC,EAAqB,CACjE,OAAO,KAAKN,KAAW,GAAG,KAAKH,UAAU,cAAe,CAAEQ,kBAAAA,EAAmBC,aAAAA,CAAY,CAAE,CAC5F,CAEAC,gBAAc,CACb,OAAO,KAAKX,IAAkD,GAAG,KAAKC,UAAU,UAAU,CAC3F,CAEAW,oBAAoBC,EAAoB,CACvC,OAAO,KAAKT,KAA4C,GAAG,KAAKH,UAAU,sBAAsBY,CAAY,GAAI,CAAA,CAAE,CACnH,CAEAC,iBAAiBD,EAAoB,CACpC,OAAO,KAAKT,KAA4C,GAAG,KAAKH,UAAU,sBAAsBY,CAAY,GAAI,CAAA,CAAE,CACnH,iDA/BYlB,GAAWoB,EAAAC,CAAA,CAAA,CAAA,CAAA,iCAAXrB,EAAWsB,QAAXtB,EAAWuB,UAAAC,WAFX,MAAM,CAAA,CAAA,SAENxB,CAAY,GAAA", "names": ["SafeUrlPipe", "constructor", "sanitizer", "inject", "DomSanitizer", "transform", "url", "bypassSecurityTrustResourceUrl", "pure", "standalone", "OktaService", "HttpService", "constructor", "config", "getPasswordSettings", "get", "serviceUrl", "changeUsername", "newUsername", "post", "changePasswordService", "currentPassword", "newPassword", "changeMFASettings", "studentInSchoolID", "isMFAEnabled", "getMFASettings", "getActivationStatus", "guardianGuid", "resendActivation", "\u0275\u0275inject", "ScholarApiConfiguration", "factory", "\u0275fac", "providedIn"] }