@viewcandidate/client 0.0.24 → 0.0.26
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 +3 -3
- package/fesm2022/viewcandidate-client.mjs.map +1 -1
- package/index.d.ts +33 -21
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -488,15 +488,27 @@ interface APIClient {
|
|
|
488
488
|
* Do not edit the class manually.
|
|
489
489
|
*/
|
|
490
490
|
|
|
491
|
-
interface
|
|
491
|
+
interface APICandidateJobCandidateJob {
|
|
492
492
|
id: string;
|
|
493
|
-
|
|
494
|
-
clientId: string;
|
|
493
|
+
title: string;
|
|
495
494
|
client: APIClient;
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* ViewCandidate API
|
|
499
|
+
*
|
|
500
|
+
*
|
|
501
|
+
*
|
|
502
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
503
|
+
* https://openapi-generator.tech
|
|
504
|
+
* Do not edit the class manually.
|
|
505
|
+
*/
|
|
506
|
+
|
|
507
|
+
interface APICandidateJobCandidate {
|
|
508
|
+
id: string;
|
|
509
|
+
job: APICandidateJobCandidateJob;
|
|
510
|
+
stage: string;
|
|
511
|
+
status: string;
|
|
500
512
|
createdAt: string;
|
|
501
513
|
}
|
|
502
514
|
|
|
@@ -510,7 +522,7 @@ interface APIPresentation {
|
|
|
510
522
|
* Do not edit the class manually.
|
|
511
523
|
*/
|
|
512
524
|
|
|
513
|
-
interface
|
|
525
|
+
interface APICandidate {
|
|
514
526
|
id: string;
|
|
515
527
|
fullName: string;
|
|
516
528
|
role: string;
|
|
@@ -529,7 +541,7 @@ interface APICandidateWithPresentations {
|
|
|
529
541
|
createdAt: string;
|
|
530
542
|
workHistory: Array<APICandidateWorkHistory>;
|
|
531
543
|
educationHistory: Array<APICandidateEducationHistory>;
|
|
532
|
-
|
|
544
|
+
jobCandidates: Array<APICandidateJobCandidate>;
|
|
533
545
|
}
|
|
534
546
|
|
|
535
547
|
declare class CVExtractionService extends BaseService {
|
|
@@ -546,17 +558,17 @@ declare class CVExtractionService extends BaseService {
|
|
|
546
558
|
httpHeaderAccept?: 'application/json';
|
|
547
559
|
context?: HttpContext;
|
|
548
560
|
transferCache?: boolean;
|
|
549
|
-
}): Observable<
|
|
561
|
+
}): Observable<APICandidate>;
|
|
550
562
|
cvExtractionControllerSummarizeCandidate(file: Blob, observe?: 'response', reportProgress?: boolean, options?: {
|
|
551
563
|
httpHeaderAccept?: 'application/json';
|
|
552
564
|
context?: HttpContext;
|
|
553
565
|
transferCache?: boolean;
|
|
554
|
-
}): Observable<HttpResponse<
|
|
566
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
555
567
|
cvExtractionControllerSummarizeCandidate(file: Blob, observe?: 'events', reportProgress?: boolean, options?: {
|
|
556
568
|
httpHeaderAccept?: 'application/json';
|
|
557
569
|
context?: HttpContext;
|
|
558
570
|
transferCache?: boolean;
|
|
559
|
-
}): Observable<HttpEvent<
|
|
571
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
560
572
|
static ɵfac: i0.ɵɵFactoryDeclaration<CVExtractionService, [null, { optional: true; }, { optional: true; }]>;
|
|
561
573
|
static ɵprov: i0.ɵɵInjectableDeclaration<CVExtractionService>;
|
|
562
574
|
}
|
|
@@ -572,7 +584,7 @@ declare class CVExtractionService extends BaseService {
|
|
|
572
584
|
*/
|
|
573
585
|
|
|
574
586
|
interface APIPaginatedCandidateResponse {
|
|
575
|
-
data: Array<
|
|
587
|
+
data: Array<APICandidate>;
|
|
576
588
|
page: number;
|
|
577
589
|
pageSize: number;
|
|
578
590
|
total: number;
|
|
@@ -732,19 +744,19 @@ declare class CandidateService extends BaseService {
|
|
|
732
744
|
httpHeaderAccept?: 'application/json';
|
|
733
745
|
context?: HttpContext;
|
|
734
746
|
transferCache?: boolean;
|
|
735
|
-
}): Observable<
|
|
747
|
+
}): Observable<APICandidate>;
|
|
736
748
|
candidateControllerGetCandidate(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
737
749
|
httpHeaderAccept?: 'application/json';
|
|
738
750
|
context?: HttpContext;
|
|
739
751
|
transferCache?: boolean;
|
|
740
|
-
}): Observable<HttpResponse<
|
|
752
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
741
753
|
candidateControllerGetCandidate(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
742
754
|
httpHeaderAccept?: 'application/json';
|
|
743
755
|
context?: HttpContext;
|
|
744
756
|
transferCache?: boolean;
|
|
745
|
-
}): Observable<HttpEvent<
|
|
757
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
746
758
|
/**
|
|
747
|
-
* List candidates
|
|
759
|
+
* List candidates
|
|
748
760
|
* @endpoint get /candidates
|
|
749
761
|
* @param page Page number
|
|
750
762
|
* @param q Search query for typeahead filtering by name, role, email or location
|
|
@@ -778,17 +790,17 @@ declare class CandidateService extends BaseService {
|
|
|
778
790
|
httpHeaderAccept?: 'application/json';
|
|
779
791
|
context?: HttpContext;
|
|
780
792
|
transferCache?: boolean;
|
|
781
|
-
}): Observable<
|
|
793
|
+
}): Observable<APICandidate>;
|
|
782
794
|
candidateControllerUpdateCandidate(id: string, updateCandidateDto: UpdateCandidateDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
783
795
|
httpHeaderAccept?: 'application/json';
|
|
784
796
|
context?: HttpContext;
|
|
785
797
|
transferCache?: boolean;
|
|
786
|
-
}): Observable<HttpResponse<
|
|
798
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
787
799
|
candidateControllerUpdateCandidate(id: string, updateCandidateDto: UpdateCandidateDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
788
800
|
httpHeaderAccept?: 'application/json';
|
|
789
801
|
context?: HttpContext;
|
|
790
802
|
transferCache?: boolean;
|
|
791
|
-
}): Observable<HttpEvent<
|
|
803
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
792
804
|
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateService, [null, { optional: true; }, { optional: true; }]>;
|
|
793
805
|
static ɵprov: i0.ɵɵInjectableDeclaration<CandidateService>;
|
|
794
806
|
}
|
|
@@ -1806,4 +1818,4 @@ declare class ViewCandidateApiModule {
|
|
|
1806
1818
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
1807
1819
|
|
|
1808
1820
|
export { APIS, AuthService, BASE_PATH, COLLECTION_FORMATS, CVExtractionService, CandidateService, ClientService, Configuration, HealthService, JobCandidatePublicService, JobCandidateService, JobService, OrganisationService, ReorderJobCandidateDto, UpdateCandidateDto, UpdateCandidateLanguageDto, UpdateJobCandidateDto, ViewCandidateApiModule, WaitlistService, provideApi };
|
|
1809
|
-
export type { APIAuthResponse, APICandidateEducationHistory,
|
|
1821
|
+
export type { APIAuthResponse, APICandidate, APICandidateEducationHistory, APICandidateJobCandidate, APICandidateJobCandidateJob, APICandidateMeta, APICandidateWorkHistory, APIClient, APIJob, APIJobCandidate, APIJobCandidateStageHistory, APIMessageResponse, APIOrganisation, APIPaginatedCandidateResponse, APIPaginatedClientResponse, APIPaginatedJobCandidateResponse, APIPaginatedJobResponse, APIPublicJobCandidateCandidate, APIPublicJobCandidateCandidateEducationHistory, APIPublicJobCandidateCandidateWorkHistory, APIPublicJobCandidateOrganisation, APIPublicJobCandidateView, APIUser, APIWaitlistEntry, ConfigurationParameters, CreateClientDto, CreateJobCandidateDto, CreateJobDto, CreateWaitlistEntryDto, DataFormat, DataType, HealthControllerCheck200Response, HealthControllerCheck200ResponseInfoValue, HealthControllerCheck503Response, LoginDto, Param, ParamLocation, ParamStyle, RequestInterviewJobCandidateDto, ResendVerificationDto, SignupDto, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateCandidateEducationHistoryDto, UpdateCandidateWorkHistoryDto, UpdateJobDto, VerifyEmailDto };
|