{"version":3,"file":"163.922d1012e9bc5009.js","mappings":"yHA4BO,IAAKA,EAWX,aAXWA,QAAW,KACrBA,gCACAA,gDACAA,0CACAA,0CACAA,wCACAA,0CACAA,sDACAA,qCACAA,+CACAA,+CAVUA,EAAZ,IAAYA,GAWX,GAGWC,EAeX,aAfWA,QAAa,KACvBA,iCACAA,iDACAA,uCACAA,mCACAA,2BACAA,yCACAA,qCACAA,uCACAA,+CACAA,+CACAA,2CACAA,2BACAA,2BACAA,uBAdUA,EAAZ,IAAYA,GAeX,uGCjDM,IAAMC,EAAe,MAAtB,MAAOA,EANbC,cAOEC,qBAAiB,GADNF,SAAe,oCAAfA,EAAe,EAAfA,EAAe,sBAAfA,EAAeG,+GCR5BC,iBACEA,6CACFA,6BADmBA,8VDONJ,CAAe,iGEH5B,MAAMK,EAAiB,CAAE,CACrBC,KAAM,GACNC,UAAW,OACXC,UAAWR,EACXS,MAAO,cAET,CACEH,KAAM,cACNC,UAAW,OACXC,UCAmC,MAAjC,MAAOE,EAIXT,YACUU,EACAC,EACAC,GAFAX,cACAA,aACAA,aAER,MAAMY,EAAW,CACf,6BACA,4BACA,SAEFZ,KAAKa,aAAYC,KAAS,MAAMC,QAC9BC,KAAK,IAAC,EACNC,KAAIC,GAAKN,EAASM,KAAE,EACpBC,KAAU,gCAA6B,EACvCC,KAAS,KACPpB,KAAKW,MACFU,OAAOC,KACPP,QACCQ,KAAOC,GAAYA,EAAW,IAAC,EAC/BR,KAAK,IACLS,UAAUD,IAEVxB,KAAKS,OAAOiB,cACV,oCAAoCF,YAFHxB,KAAKU,MAAMiB,SAASC,aAAaC,OAAS7B,KAAKU,MAAMiB,SAASC,YAAYC,YAASC,IAErD,EAElE,GAGT,EAhCWtB,SAA0B,oCAA1BA,GAA0BuB,sCAA1BvB,EAA0B,sBAA1BA,EAA0BP,4NCdvCC,iBACEA,iCACEA,oDACAA,iCAAyBA,0BAAqBA,QAChDA,wBACFA,8BAF6BA,ipBDWhBM,CAA0B,KDCnCD,MAAO,qBAQJ,IAAMyB,EAAyB,MAAhC,MAAOA,YAAyB,oCAAzBA,EAAyB,EAAzBA,EAAyB,sBAAzBA,MAAyB,0BAH1BC,cAAsB9B,GACtB8B,QAECD,CAAyB,mBGH/B,IAAME,EAAkB,MAAzB,MAAOA,YAAkB,oCAAlBA,EAAkB,EAAlBA,EAAkB,sBAAlBA,MAAkB,0BAN3BC,KACAH,EACAI,kBACAC,QAGSH,CAAkB","names":["QuestionIds","QuestionIdsSL","SearchComponent","constructor","this","selectors","i0","routes","path","pathMatch","component","title","FitResultsLoadingComponent","router","route","store","messages","messages$","interval","pipe","take","map","x","startWith","finalize","select","selectSearchId","filter","searchId","subscribe","navigateByUrl","snapshot","queryParams","corrId","undefined","core","PublicSearchRoutingModule","RouterModule","PublicSearchModule","CommonModule","FitWizardModule","MatProgressSpinnerModule"],"sourceRoot":"webpack:///","sources":["./src/app/fit-wizard/models/question.model.ts","./src/app/public-search/components/search/search.component.ts","./src/app/public-search/components/search/search.component.html","./src/app/public-search/public-search-routing.module.ts","./src/app/public-search/components/fit-results-loading/fit-results-loading.component.ts","./src/app/public-search/components/fit-results-loading/fit-results-loading.component.html","./src/app/public-search/public-search.module.ts"],"sourcesContent":["import { IResponseOption, ISelectedAnswerOption, ResponseTypes } from '../services/fit-questions/fit-questions.service';\r\n\r\nexport interface IBaseQuestionConfig {\r\n order: number;\r\n question: string;\r\n questionId: number;\r\n display: boolean;\r\n choiceId?: number;\r\n selectedAnswer?: ISelectedAnswerOption[];\r\n responseOptions: IResponseOption[];\r\n}\r\n\r\nexport interface IRadioQuestion extends IBaseQuestionConfig {\r\n responseType: ResponseTypes.single;\r\n}\r\n\r\nexport interface ITextQuestion extends IBaseQuestionConfig {\r\n responseType: ResponseTypes.text;\r\n}\r\nexport interface IRankedQuestion extends IBaseQuestionConfig {\r\n responseType: ResponseTypes.ranked;\r\n}\r\nexport interface IMultipleQuestion extends IBaseQuestionConfig {\r\n responseType: ResponseTypes.multiple;\r\n}\r\n\r\nexport type QuestionTypes = IRadioQuestion | ITextQuestion | IRankedQuestion | IMultipleQuestion;\r\n\r\nexport enum QuestionIds {\r\n serviceType = 68,\r\n technologySolution=69,\r\n numberEmployees = 70,\r\n serviceLocation=71,\r\n primaryService = 79,\r\n hasIntegrations = 88,\r\n importantIntegrations = 98,\r\n makePayments = 101,\r\n paymentPreference = 102,\r\n whichIntegrations = 174,\r\n}\r\n\r\n\r\nexport enum QuestionIdsSL {\r\n serviceType = 106,\r\n technologyServices = 107,\r\n handleService = 110,\r\n handlesCash = 116,\r\n dataGov = 130,\r\n respManagement = 132,\r\n disasterPlan = 133,\r\n mobileAppTeam = 144,\r\n mobileAppEmployee = 145,\r\n whichIntegrations = 152,\r\n techProprietary = 175,\r\n useTech = 178,\r\n appName = 192,\r\n email = 194,\r\n}\r\n","import { ChangeDetectionStrategy, Component, Output } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'maas-search',\r\n templateUrl: './search.component.html',\r\n styleUrls: ['./search.component.scss'],\r\n changeDetection: ChangeDetectionStrategy.OnPush\r\n})\r\nexport class SearchComponent {\r\n isPublicSearch = true;\r\n}\r\n","
{{messages$ | async}}
\r\n