@viewcandidate/client 0.0.24 → 0.0.25
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 +27 -50
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -464,20 +464,6 @@ interface APICandidateWorkHistory {
|
|
|
464
464
|
descriptionBulletPoints: Array<string>;
|
|
465
465
|
}
|
|
466
466
|
|
|
467
|
-
/**
|
|
468
|
-
* ViewCandidate API
|
|
469
|
-
*
|
|
470
|
-
*
|
|
471
|
-
*
|
|
472
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
473
|
-
* https://openapi-generator.tech
|
|
474
|
-
* Do not edit the class manually.
|
|
475
|
-
*/
|
|
476
|
-
interface APIClient {
|
|
477
|
-
id: string;
|
|
478
|
-
name: string;
|
|
479
|
-
}
|
|
480
|
-
|
|
481
467
|
/**
|
|
482
468
|
* ViewCandidate API
|
|
483
469
|
*
|
|
@@ -488,29 +474,7 @@ interface APIClient {
|
|
|
488
474
|
* Do not edit the class manually.
|
|
489
475
|
*/
|
|
490
476
|
|
|
491
|
-
interface
|
|
492
|
-
id: string;
|
|
493
|
-
linkToken: string;
|
|
494
|
-
clientId: string;
|
|
495
|
-
client: APIClient;
|
|
496
|
-
maskName: boolean;
|
|
497
|
-
maskCompanies: boolean;
|
|
498
|
-
jobTitle?: string;
|
|
499
|
-
viewCount: number;
|
|
500
|
-
createdAt: string;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
/**
|
|
504
|
-
* ViewCandidate API
|
|
505
|
-
*
|
|
506
|
-
*
|
|
507
|
-
*
|
|
508
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
509
|
-
* https://openapi-generator.tech
|
|
510
|
-
* Do not edit the class manually.
|
|
511
|
-
*/
|
|
512
|
-
|
|
513
|
-
interface APICandidateWithPresentations {
|
|
477
|
+
interface APICandidate {
|
|
514
478
|
id: string;
|
|
515
479
|
fullName: string;
|
|
516
480
|
role: string;
|
|
@@ -529,7 +493,6 @@ interface APICandidateWithPresentations {
|
|
|
529
493
|
createdAt: string;
|
|
530
494
|
workHistory: Array<APICandidateWorkHistory>;
|
|
531
495
|
educationHistory: Array<APICandidateEducationHistory>;
|
|
532
|
-
presentations: Array<APIPresentation>;
|
|
533
496
|
}
|
|
534
497
|
|
|
535
498
|
declare class CVExtractionService extends BaseService {
|
|
@@ -546,17 +509,17 @@ declare class CVExtractionService extends BaseService {
|
|
|
546
509
|
httpHeaderAccept?: 'application/json';
|
|
547
510
|
context?: HttpContext;
|
|
548
511
|
transferCache?: boolean;
|
|
549
|
-
}): Observable<
|
|
512
|
+
}): Observable<APICandidate>;
|
|
550
513
|
cvExtractionControllerSummarizeCandidate(file: Blob, observe?: 'response', reportProgress?: boolean, options?: {
|
|
551
514
|
httpHeaderAccept?: 'application/json';
|
|
552
515
|
context?: HttpContext;
|
|
553
516
|
transferCache?: boolean;
|
|
554
|
-
}): Observable<HttpResponse<
|
|
517
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
555
518
|
cvExtractionControllerSummarizeCandidate(file: Blob, observe?: 'events', reportProgress?: boolean, options?: {
|
|
556
519
|
httpHeaderAccept?: 'application/json';
|
|
557
520
|
context?: HttpContext;
|
|
558
521
|
transferCache?: boolean;
|
|
559
|
-
}): Observable<HttpEvent<
|
|
522
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
560
523
|
static ɵfac: i0.ɵɵFactoryDeclaration<CVExtractionService, [null, { optional: true; }, { optional: true; }]>;
|
|
561
524
|
static ɵprov: i0.ɵɵInjectableDeclaration<CVExtractionService>;
|
|
562
525
|
}
|
|
@@ -572,7 +535,7 @@ declare class CVExtractionService extends BaseService {
|
|
|
572
535
|
*/
|
|
573
536
|
|
|
574
537
|
interface APIPaginatedCandidateResponse {
|
|
575
|
-
data: Array<
|
|
538
|
+
data: Array<APICandidate>;
|
|
576
539
|
page: number;
|
|
577
540
|
pageSize: number;
|
|
578
541
|
total: number;
|
|
@@ -732,19 +695,19 @@ declare class CandidateService extends BaseService {
|
|
|
732
695
|
httpHeaderAccept?: 'application/json';
|
|
733
696
|
context?: HttpContext;
|
|
734
697
|
transferCache?: boolean;
|
|
735
|
-
}): Observable<
|
|
698
|
+
}): Observable<APICandidate>;
|
|
736
699
|
candidateControllerGetCandidate(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
737
700
|
httpHeaderAccept?: 'application/json';
|
|
738
701
|
context?: HttpContext;
|
|
739
702
|
transferCache?: boolean;
|
|
740
|
-
}): Observable<HttpResponse<
|
|
703
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
741
704
|
candidateControllerGetCandidate(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
742
705
|
httpHeaderAccept?: 'application/json';
|
|
743
706
|
context?: HttpContext;
|
|
744
707
|
transferCache?: boolean;
|
|
745
|
-
}): Observable<HttpEvent<
|
|
708
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
746
709
|
/**
|
|
747
|
-
* List candidates
|
|
710
|
+
* List candidates
|
|
748
711
|
* @endpoint get /candidates
|
|
749
712
|
* @param page Page number
|
|
750
713
|
* @param q Search query for typeahead filtering by name, role, email or location
|
|
@@ -778,21 +741,35 @@ declare class CandidateService extends BaseService {
|
|
|
778
741
|
httpHeaderAccept?: 'application/json';
|
|
779
742
|
context?: HttpContext;
|
|
780
743
|
transferCache?: boolean;
|
|
781
|
-
}): Observable<
|
|
744
|
+
}): Observable<APICandidate>;
|
|
782
745
|
candidateControllerUpdateCandidate(id: string, updateCandidateDto: UpdateCandidateDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
783
746
|
httpHeaderAccept?: 'application/json';
|
|
784
747
|
context?: HttpContext;
|
|
785
748
|
transferCache?: boolean;
|
|
786
|
-
}): Observable<HttpResponse<
|
|
749
|
+
}): Observable<HttpResponse<APICandidate>>;
|
|
787
750
|
candidateControllerUpdateCandidate(id: string, updateCandidateDto: UpdateCandidateDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
788
751
|
httpHeaderAccept?: 'application/json';
|
|
789
752
|
context?: HttpContext;
|
|
790
753
|
transferCache?: boolean;
|
|
791
|
-
}): Observable<HttpEvent<
|
|
754
|
+
}): Observable<HttpEvent<APICandidate>>;
|
|
792
755
|
static ɵfac: i0.ɵɵFactoryDeclaration<CandidateService, [null, { optional: true; }, { optional: true; }]>;
|
|
793
756
|
static ɵprov: i0.ɵɵInjectableDeclaration<CandidateService>;
|
|
794
757
|
}
|
|
795
758
|
|
|
759
|
+
/**
|
|
760
|
+
* ViewCandidate API
|
|
761
|
+
*
|
|
762
|
+
*
|
|
763
|
+
*
|
|
764
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
765
|
+
* https://openapi-generator.tech
|
|
766
|
+
* Do not edit the class manually.
|
|
767
|
+
*/
|
|
768
|
+
interface APIClient {
|
|
769
|
+
id: string;
|
|
770
|
+
name: string;
|
|
771
|
+
}
|
|
772
|
+
|
|
796
773
|
/**
|
|
797
774
|
* ViewCandidate API
|
|
798
775
|
*
|
|
@@ -1806,4 +1783,4 @@ declare class ViewCandidateApiModule {
|
|
|
1806
1783
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
1807
1784
|
|
|
1808
1785
|
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, APICandidateMeta,
|
|
1786
|
+
export type { APIAuthResponse, APICandidate, APICandidateEducationHistory, 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 };
|