{ "version": 3, "sources": ["src/app/services/candidate/candidate.service.ts", "src/app/services/candidate/candidate.module.ts", "src/app/services/candidate/index.ts"], "sourcesContent": ["/**\r\n * FSHP Job Portal APIs\r\n * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)\r\n *\r\n * OpenAPI spec version: v1\r\n * \r\n *\r\n * NOTE: This class is auto generated by the swagger code generator program.\r\n * https://github.com/swagger-api/swagger-codegen.git\r\n * Do not edit the class manually.\r\n *//* tslint:disable:no-unused-variable member-ordering */\r\n\r\nimport { Inject, Injectable, Optional } from '@angular/core';\r\nimport {\r\n HttpClient, HttpHeaders, HttpParams,\r\n HttpResponse, HttpEvent\r\n} from '@angular/common/http';\r\nimport { CustomHttpUrlEncodingCodec } from '@portal/utils';\r\n\r\nimport { Observable } from 'rxjs';\r\n\r\nimport { CandidateDto } from '@portal/model';\r\n\r\nimport { BASE_PATH, COLLECTION_FORMATS } from '@portal/common';\r\nimport { Configuration } from '@portal/configs';\r\n\r\n\r\n@Injectable({\r\n providedIn: 'root'\r\n})\r\nexport class CandidateService {\r\n\r\n protected basePath = '/';\r\n public defaultHeaders = new HttpHeaders();\r\n public configuration = new Configuration();\r\n\r\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string, @Optional() configuration: Configuration) {\r\n if (basePath) {\r\n this.basePath = basePath;\r\n }\r\n if (configuration) {\r\n this.configuration = configuration;\r\n this.basePath = basePath || configuration.basePath || this.basePath;\r\n }\r\n }\r\n\r\n /**\r\n * @param consumes string[] mime-types\r\n * @return true: consumes contains 'multipart/form-data', false: otherwise\r\n */\r\n private canConsumeForm(consumes: string[]): boolean {\r\n const form = 'multipart/form-data';\r\n for (const consume of consumes) {\r\n if (form === consume) {\r\n return true;\r\n }\r\n }\r\n return false;\r\n }\r\n\r\n\r\n /**\r\n * \r\n * \r\n * @param id \r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public apiCandidateIdGet(id: string, observe?: 'body', reportProgress?: boolean): Observable;\r\n public apiCandidateIdGet(id: string, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public apiCandidateIdGet(id: string, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public apiCandidateIdGet(id: string, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n\r\n if (id === null || id === undefined) {\r\n throw new Error('Required parameter id was null or undefined when calling apiCandidateIdGet.');\r\n }\r\n\r\n let headers = this.defaultHeaders;\r\n\r\n // authentication (oauth2) required\r\n if (this.configuration.accessToken) {\r\n const accessToken = typeof this.configuration.accessToken === 'function'\r\n ? this.configuration.accessToken()\r\n : this.configuration.accessToken;\r\n headers = headers.set('Authorization', 'Bearer ' + accessToken);\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'text/plain',\r\n 'application/json',\r\n 'text/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n ];\r\n\r\n return this.httpClient.request('get', `https://localhost:5000/api/candidate/${encodeURIComponent(String(id))}`,\r\n {\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n /**\r\n * \r\n * \r\n * @param body \r\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\r\n * @param reportProgress flag to report request and response progress.\r\n */\r\n public apiCandidatePost(body?: CandidateDto, observe?: 'body', reportProgress?: boolean): Observable;\r\n public apiCandidatePost(body?: CandidateDto, observe?: 'response', reportProgress?: boolean): Observable>;\r\n public apiCandidatePost(body?: CandidateDto, observe?: 'events', reportProgress?: boolean): Observable>;\r\n public apiCandidatePost(body?: CandidateDto, observe: any = 'body', reportProgress: boolean = false): Observable {\r\n\r\n\r\n let headers = this.defaultHeaders;\r\n\r\n // authentication (oauth2) required\r\n if (this.configuration.accessToken) {\r\n const accessToken = typeof this.configuration.accessToken === 'function'\r\n ? this.configuration.accessToken()\r\n : this.configuration.accessToken;\r\n headers = headers.set('Authorization', 'Bearer ' + accessToken);\r\n }\r\n\r\n // to determine the Accept header\r\n let httpHeaderAccepts: string[] = [\r\n 'text/plain',\r\n 'application/json',\r\n 'text/json'\r\n ];\r\n const httpHeaderAcceptSelected: string | undefined = this.configuration.selectHeaderAccept(httpHeaderAccepts);\r\n if (httpHeaderAcceptSelected != undefined) {\r\n headers = headers.set('Accept', httpHeaderAcceptSelected);\r\n }\r\n\r\n // to determine the Content-Type header\r\n const consumes: string[] = [\r\n 'application/json',\r\n 'text/json',\r\n 'application/_*+json'\r\n ];\r\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\r\n if (httpContentTypeSelected != undefined) {\r\n headers = headers.set('Content-Type', httpContentTypeSelected);\r\n }\r\n\r\n return this.httpClient.request('post', `https://localhost:5000/api/candidate`,\r\n {\r\n body: body,\r\n withCredentials: this.configuration.withCredentials,\r\n headers: headers,\r\n observe: observe,\r\n reportProgress: reportProgress\r\n }\r\n );\r\n }\r\n\r\n}\r\n", "import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\r\nimport { Configuration } from '@portal/configs';\r\nimport { HttpClient } from '@angular/common/http';\r\nimport { CandidateServices } from '.';\r\n\r\n@NgModule({\r\n imports: [],\r\n declarations: [],\r\n exports: [],\r\n providers: CandidateServices\r\n})\r\nexport class CandidateServiceModule {\r\n constructor(@Optional() @SkipSelf() parentModule: CandidateServiceModule,\r\n @Optional() http: HttpClient) {\r\n if (parentModule) {\r\n throw new Error('ApiModule is already loaded. Import in your base AppModule only.');\r\n }\r\n if (!http) {\r\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\r\n 'See also https://github.com/angular/angular/issues/20575');\r\n }\r\n }\r\n}\r\n", "export * from './candidate.service';\r\nexport * from './candidate.module';\r\n\r\nimport { CandidateService } from './candidate.service';\r\n\r\nexport const CandidateServices = [CandidateService];\r\n"], "mappings": ";;;;;;;;;;;;;;;;AA8BM,IAAO,oBAAP,MAAO,kBAAgB;EAM3B,YAAsB,YAAuD,UAA8B,eAA4B;AAAjH,SAAA,aAAA;AAJZ,SAAA,WAAW;AACd,SAAA,iBAAiB,IAAI,YAAW;AAChC,SAAA,gBAAgB,IAAI,cAAa;AAGtC,QAAI,UAAU;AACZ,WAAK,WAAW;IAClB;AACA,QAAI,eAAe;AACjB,WAAK,gBAAgB;AACrB,WAAK,WAAW,YAAY,cAAc,YAAY,KAAK;IAC7D;EACF;;;;;EAMQ,eAAe,UAAkB;AACvC,UAAM,OAAO;AACb,eAAW,WAAW,UAAU;AAC9B,UAAI,SAAS,SAAS;AACpB,eAAO;MACT;IACF;AACA,WAAO;EACT;EAaO,kBAAkB,IAAY,UAAe,QAAQ,iBAA0B,OAAK;AAEzF,QAAI,OAAO,QAAQ,OAAO,QAAW;AACnC,YAAM,IAAI,MAAM,6EAA6E;IAC/F;AAEA,QAAI,UAAU,KAAK;AAGnB,QAAI,KAAK,cAAc,aAAa;AAClC,YAAM,cAAc,OAAO,KAAK,cAAc,gBAAgB,aAC1D,KAAK,cAAc,YAAW,IAC9B,KAAK,cAAc;AACvB,gBAAU,QAAQ,IAAI,iBAAiB,YAAY,WAAW;IAChE;AAGA,QAAI,oBAA8B;MAChC;MACA;MACA;;AAEF,UAAM,2BAA+C,KAAK,cAAc,mBAAmB,iBAAiB;AAC5G,QAAI,4BAA4B,QAAW;AACzC,gBAAU,QAAQ,IAAI,UAAU,wBAAwB;IAC1D;AAGA,UAAM,WAAqB,CAAA;AAG3B,WAAO,KAAK,WAAW,QAAsB,OAAO,wCAAwC,mBAAmB,OAAO,EAAE,CAAC,CAAC,IACxH;MACE,iBAAiB,KAAK,cAAc;MACpC;MACA;MACA;KACD;EAEL;EAYO,iBAAiB,MAAqB,UAAe,QAAQ,iBAA0B,OAAK;AAGjG,QAAI,UAAU,KAAK;AAGnB,QAAI,KAAK,cAAc,aAAa;AAClC,YAAM,cAAc,OAAO,KAAK,cAAc,gBAAgB,aAC1D,KAAK,cAAc,YAAW,IAC9B,KAAK,cAAc;AACvB,gBAAU,QAAQ,IAAI,iBAAiB,YAAY,WAAW;IAChE;AAGA,QAAI,oBAA8B;MAChC;MACA;MACA;;AAEF,UAAM,2BAA+C,KAAK,cAAc,mBAAmB,iBAAiB;AAC5G,QAAI,4BAA4B,QAAW;AACzC,gBAAU,QAAQ,IAAI,UAAU,wBAAwB;IAC1D;AAGA,UAAM,WAAqB;MACzB;MACA;MACA;;AAEF,UAAM,0BAA8C,KAAK,cAAc,wBAAwB,QAAQ;AACvG,QAAI,2BAA2B,QAAW;AACxC,gBAAU,QAAQ,IAAI,gBAAgB,uBAAuB;IAC/D;AAEA,WAAO,KAAK,WAAW,QAAgB,QAAQ,wCAC7C;MACE;MACA,iBAAiB,KAAK,cAAc;MACpC;MACA;MACA;KACD;EAEL;;;mBAxIW,mBAAgB,mBAAA,UAAA,GAAA,mBAMuC,WAAS,CAAA,GAAA,mBAAA,eAAA,CAAA,CAAA;AAAA;qFANhE,mBAAgB,SAAhB,kBAAgB,WAAA,YAFf,OAAM,CAAA;AAEd,IAAO,mBAAP;;;ACnBA,IAAO,0BAAP,MAAO,wBAAsB;EACjC,YAAoC,cACtB,MAAgB;AAC5B,QAAI,cAAc;AAChB,YAAM,IAAI,MAAM,kEAAkE;IACpF;AACA,QAAI,CAAC,MAAM;AACT,YAAM,IAAI,MAAM,uHAC4C;IAC9D;EACF;;;mBAVW,yBAAsB,mBAAA,yBAAA,EAAA,GAAA,mBAAA,YAAA,CAAA,CAAA;AAAA;uFAAtB,wBAAsB,CAAA;4FAFtB,kBAAiB,CAAA;AAExB,IAAO,yBAAP;;;ACNC,IAAM,oBAAoB,CAAC,gBAAgB;", "names": [] }