@viewcandidate/client 0.0.18 → 0.0.20
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 +562 -3
- package/fesm2022/viewcandidate-client.mjs.map +1 -1
- package/index.d.ts +458 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -747,20 +747,21 @@ declare class CandidateService extends BaseService {
|
|
|
747
747
|
* List candidates with presentations
|
|
748
748
|
* @endpoint get /candidates
|
|
749
749
|
* @param page Page number
|
|
750
|
+
* @param q Search query for typeahead filtering by name, role, email or location
|
|
750
751
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
751
752
|
* @param reportProgress flag to report request and response progress.
|
|
752
753
|
*/
|
|
753
|
-
candidateControllerGetCandidates(page?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
754
|
+
candidateControllerGetCandidates(page?: number, q?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
754
755
|
httpHeaderAccept?: 'application/json';
|
|
755
756
|
context?: HttpContext;
|
|
756
757
|
transferCache?: boolean;
|
|
757
758
|
}): Observable<APIPaginatedCandidateResponse>;
|
|
758
|
-
candidateControllerGetCandidates(page?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
759
|
+
candidateControllerGetCandidates(page?: number, q?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
759
760
|
httpHeaderAccept?: 'application/json';
|
|
760
761
|
context?: HttpContext;
|
|
761
762
|
transferCache?: boolean;
|
|
762
763
|
}): Observable<HttpResponse<APIPaginatedCandidateResponse>>;
|
|
763
|
-
candidateControllerGetCandidates(page?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
764
|
+
candidateControllerGetCandidates(page?: number, q?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
764
765
|
httpHeaderAccept?: 'application/json';
|
|
765
766
|
context?: HttpContext;
|
|
766
767
|
transferCache?: boolean;
|
|
@@ -943,35 +944,226 @@ declare class HealthService extends BaseService {
|
|
|
943
944
|
static ɵprov: i0.ɵɵInjectableDeclaration<HealthService>;
|
|
944
945
|
}
|
|
945
946
|
|
|
946
|
-
|
|
947
|
+
/**
|
|
948
|
+
* ViewCandidate API
|
|
949
|
+
*
|
|
950
|
+
*
|
|
951
|
+
*
|
|
952
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
953
|
+
* https://openapi-generator.tech
|
|
954
|
+
* Do not edit the class manually.
|
|
955
|
+
*/
|
|
956
|
+
|
|
957
|
+
interface APIJob {
|
|
958
|
+
id: string;
|
|
959
|
+
title: string;
|
|
960
|
+
description: string;
|
|
961
|
+
clientId: string;
|
|
962
|
+
client: APIClient;
|
|
963
|
+
createdAt: string;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
/**
|
|
967
|
+
* ViewCandidate API
|
|
968
|
+
*
|
|
969
|
+
*
|
|
970
|
+
*
|
|
971
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
972
|
+
* https://openapi-generator.tech
|
|
973
|
+
* Do not edit the class manually.
|
|
974
|
+
*/
|
|
975
|
+
|
|
976
|
+
interface APIPaginatedJobResponse {
|
|
977
|
+
data: Array<APIJob>;
|
|
978
|
+
page: number;
|
|
979
|
+
pageSize: number;
|
|
980
|
+
total: number;
|
|
981
|
+
totalPages: number;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
/**
|
|
985
|
+
* ViewCandidate API
|
|
986
|
+
*
|
|
987
|
+
*
|
|
988
|
+
*
|
|
989
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
990
|
+
* https://openapi-generator.tech
|
|
991
|
+
* Do not edit the class manually.
|
|
992
|
+
*/
|
|
993
|
+
interface CreateJobDto {
|
|
994
|
+
/**
|
|
995
|
+
* Job title
|
|
996
|
+
*/
|
|
997
|
+
title: string;
|
|
998
|
+
/**
|
|
999
|
+
* Job description
|
|
1000
|
+
*/
|
|
1001
|
+
description: string;
|
|
1002
|
+
/**
|
|
1003
|
+
* Client ID this job belongs to
|
|
1004
|
+
*/
|
|
1005
|
+
clientId: string;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
/**
|
|
1009
|
+
* ViewCandidate API
|
|
1010
|
+
*
|
|
1011
|
+
*
|
|
1012
|
+
*
|
|
1013
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1014
|
+
* https://openapi-generator.tech
|
|
1015
|
+
* Do not edit the class manually.
|
|
1016
|
+
*/
|
|
1017
|
+
interface UpdateJobDto {
|
|
1018
|
+
/**
|
|
1019
|
+
* Job title
|
|
1020
|
+
*/
|
|
1021
|
+
title?: string;
|
|
1022
|
+
/**
|
|
1023
|
+
* Job description
|
|
1024
|
+
*/
|
|
1025
|
+
description?: string;
|
|
1026
|
+
/**
|
|
1027
|
+
* Client ID this job belongs to
|
|
1028
|
+
*/
|
|
1029
|
+
clientId?: string;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
declare class JobService extends BaseService {
|
|
947
1033
|
protected httpClient: HttpClient;
|
|
948
1034
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
949
1035
|
/**
|
|
950
|
-
*
|
|
951
|
-
* @endpoint
|
|
952
|
-
* @param
|
|
953
|
-
* @param brandColour Brand colour in hex format. Send \\\"DELETE\\\" to remove the brand colour.
|
|
954
|
-
* @param logo Logo image (PNG, JPEG, or WebP). Max 5MB. Will be resized to 400x400 max.
|
|
1036
|
+
* Create a new job
|
|
1037
|
+
* @endpoint post /jobs
|
|
1038
|
+
* @param createJobDto
|
|
955
1039
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
956
1040
|
* @param reportProgress flag to report request and response progress.
|
|
957
1041
|
*/
|
|
958
|
-
|
|
1042
|
+
jobControllerCreateJob(createJobDto: CreateJobDto, observe?: 'body', reportProgress?: boolean, options?: {
|
|
959
1043
|
httpHeaderAccept?: 'application/json';
|
|
960
1044
|
context?: HttpContext;
|
|
961
1045
|
transferCache?: boolean;
|
|
962
|
-
}): Observable<
|
|
963
|
-
|
|
1046
|
+
}): Observable<APIJob>;
|
|
1047
|
+
jobControllerCreateJob(createJobDto: CreateJobDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
964
1048
|
httpHeaderAccept?: 'application/json';
|
|
965
1049
|
context?: HttpContext;
|
|
966
1050
|
transferCache?: boolean;
|
|
967
|
-
}): Observable<HttpResponse<
|
|
968
|
-
|
|
1051
|
+
}): Observable<HttpResponse<APIJob>>;
|
|
1052
|
+
jobControllerCreateJob(createJobDto: CreateJobDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
969
1053
|
httpHeaderAccept?: 'application/json';
|
|
970
1054
|
context?: HttpContext;
|
|
971
1055
|
transferCache?: boolean;
|
|
972
|
-
}): Observable<HttpEvent<
|
|
973
|
-
|
|
974
|
-
|
|
1056
|
+
}): Observable<HttpEvent<APIJob>>;
|
|
1057
|
+
/**
|
|
1058
|
+
* Delete a job
|
|
1059
|
+
* @endpoint delete /jobs/{id}
|
|
1060
|
+
* @param id
|
|
1061
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1062
|
+
* @param reportProgress flag to report request and response progress.
|
|
1063
|
+
*/
|
|
1064
|
+
jobControllerDeleteJob(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1065
|
+
httpHeaderAccept?: 'application/json';
|
|
1066
|
+
context?: HttpContext;
|
|
1067
|
+
transferCache?: boolean;
|
|
1068
|
+
}): Observable<APIMessageResponse>;
|
|
1069
|
+
jobControllerDeleteJob(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1070
|
+
httpHeaderAccept?: 'application/json';
|
|
1071
|
+
context?: HttpContext;
|
|
1072
|
+
transferCache?: boolean;
|
|
1073
|
+
}): Observable<HttpResponse<APIMessageResponse>>;
|
|
1074
|
+
jobControllerDeleteJob(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1075
|
+
httpHeaderAccept?: 'application/json';
|
|
1076
|
+
context?: HttpContext;
|
|
1077
|
+
transferCache?: boolean;
|
|
1078
|
+
}): Observable<HttpEvent<APIMessageResponse>>;
|
|
1079
|
+
/**
|
|
1080
|
+
* Get a job by ID
|
|
1081
|
+
* @endpoint get /jobs/{id}
|
|
1082
|
+
* @param id
|
|
1083
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1084
|
+
* @param reportProgress flag to report request and response progress.
|
|
1085
|
+
*/
|
|
1086
|
+
jobControllerGetJob(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1087
|
+
httpHeaderAccept?: 'application/json';
|
|
1088
|
+
context?: HttpContext;
|
|
1089
|
+
transferCache?: boolean;
|
|
1090
|
+
}): Observable<APIJob>;
|
|
1091
|
+
jobControllerGetJob(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1092
|
+
httpHeaderAccept?: 'application/json';
|
|
1093
|
+
context?: HttpContext;
|
|
1094
|
+
transferCache?: boolean;
|
|
1095
|
+
}): Observable<HttpResponse<APIJob>>;
|
|
1096
|
+
jobControllerGetJob(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1097
|
+
httpHeaderAccept?: 'application/json';
|
|
1098
|
+
context?: HttpContext;
|
|
1099
|
+
transferCache?: boolean;
|
|
1100
|
+
}): Observable<HttpEvent<APIJob>>;
|
|
1101
|
+
/**
|
|
1102
|
+
* List jobs
|
|
1103
|
+
* @endpoint get /jobs
|
|
1104
|
+
* @param page Page number
|
|
1105
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1106
|
+
* @param reportProgress flag to report request and response progress.
|
|
1107
|
+
*/
|
|
1108
|
+
jobControllerGetJobs(page?: number, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1109
|
+
httpHeaderAccept?: 'application/json';
|
|
1110
|
+
context?: HttpContext;
|
|
1111
|
+
transferCache?: boolean;
|
|
1112
|
+
}): Observable<APIPaginatedJobResponse>;
|
|
1113
|
+
jobControllerGetJobs(page?: number, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1114
|
+
httpHeaderAccept?: 'application/json';
|
|
1115
|
+
context?: HttpContext;
|
|
1116
|
+
transferCache?: boolean;
|
|
1117
|
+
}): Observable<HttpResponse<APIPaginatedJobResponse>>;
|
|
1118
|
+
jobControllerGetJobs(page?: number, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1119
|
+
httpHeaderAccept?: 'application/json';
|
|
1120
|
+
context?: HttpContext;
|
|
1121
|
+
transferCache?: boolean;
|
|
1122
|
+
}): Observable<HttpEvent<APIPaginatedJobResponse>>;
|
|
1123
|
+
/**
|
|
1124
|
+
* Update a job
|
|
1125
|
+
* @endpoint patch /jobs/{id}
|
|
1126
|
+
* @param id
|
|
1127
|
+
* @param updateJobDto
|
|
1128
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1129
|
+
* @param reportProgress flag to report request and response progress.
|
|
1130
|
+
*/
|
|
1131
|
+
jobControllerUpdateJob(id: string, updateJobDto: UpdateJobDto, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1132
|
+
httpHeaderAccept?: 'application/json';
|
|
1133
|
+
context?: HttpContext;
|
|
1134
|
+
transferCache?: boolean;
|
|
1135
|
+
}): Observable<APIJob>;
|
|
1136
|
+
jobControllerUpdateJob(id: string, updateJobDto: UpdateJobDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1137
|
+
httpHeaderAccept?: 'application/json';
|
|
1138
|
+
context?: HttpContext;
|
|
1139
|
+
transferCache?: boolean;
|
|
1140
|
+
}): Observable<HttpResponse<APIJob>>;
|
|
1141
|
+
jobControllerUpdateJob(id: string, updateJobDto: UpdateJobDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1142
|
+
httpHeaderAccept?: 'application/json';
|
|
1143
|
+
context?: HttpContext;
|
|
1144
|
+
transferCache?: boolean;
|
|
1145
|
+
}): Observable<HttpEvent<APIJob>>;
|
|
1146
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobService, [null, { optional: true; }, { optional: true; }]>;
|
|
1147
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JobService>;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
/**
|
|
1151
|
+
* ViewCandidate API
|
|
1152
|
+
*
|
|
1153
|
+
*
|
|
1154
|
+
*
|
|
1155
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1156
|
+
* https://openapi-generator.tech
|
|
1157
|
+
* Do not edit the class manually.
|
|
1158
|
+
*/
|
|
1159
|
+
interface APIJobCandidateStageHistory {
|
|
1160
|
+
id: string;
|
|
1161
|
+
fromStage: string | null;
|
|
1162
|
+
toStage: string | null;
|
|
1163
|
+
fromStatus: string | null;
|
|
1164
|
+
toStatus: string | null;
|
|
1165
|
+
movedById: string | null;
|
|
1166
|
+
createdAt: string;
|
|
975
1167
|
}
|
|
976
1168
|
|
|
977
1169
|
/**
|
|
@@ -989,6 +1181,252 @@ interface APICandidateMeta {
|
|
|
989
1181
|
createdAt: string;
|
|
990
1182
|
}
|
|
991
1183
|
|
|
1184
|
+
/**
|
|
1185
|
+
* ViewCandidate API
|
|
1186
|
+
*
|
|
1187
|
+
*
|
|
1188
|
+
*
|
|
1189
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1190
|
+
* https://openapi-generator.tech
|
|
1191
|
+
* Do not edit the class manually.
|
|
1192
|
+
*/
|
|
1193
|
+
|
|
1194
|
+
interface APIJobCandidate {
|
|
1195
|
+
id: string;
|
|
1196
|
+
jobId: string;
|
|
1197
|
+
candidateId: string;
|
|
1198
|
+
candidate: APICandidateMeta;
|
|
1199
|
+
stage: string;
|
|
1200
|
+
status: string;
|
|
1201
|
+
createdAt: string;
|
|
1202
|
+
updatedAt: string;
|
|
1203
|
+
stageHistory?: Array<APIJobCandidateStageHistory>;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
/**
|
|
1207
|
+
* ViewCandidate API
|
|
1208
|
+
*
|
|
1209
|
+
*
|
|
1210
|
+
*
|
|
1211
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1212
|
+
* https://openapi-generator.tech
|
|
1213
|
+
* Do not edit the class manually.
|
|
1214
|
+
*/
|
|
1215
|
+
|
|
1216
|
+
interface APIPaginatedJobCandidateResponse {
|
|
1217
|
+
data: Array<APIJobCandidate>;
|
|
1218
|
+
page: number;
|
|
1219
|
+
pageSize: number;
|
|
1220
|
+
total: number;
|
|
1221
|
+
totalPages: number;
|
|
1222
|
+
}
|
|
1223
|
+
|
|
1224
|
+
/**
|
|
1225
|
+
* ViewCandidate API
|
|
1226
|
+
*
|
|
1227
|
+
*
|
|
1228
|
+
*
|
|
1229
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1230
|
+
* https://openapi-generator.tech
|
|
1231
|
+
* Do not edit the class manually.
|
|
1232
|
+
*/
|
|
1233
|
+
interface CreateJobCandidateDto {
|
|
1234
|
+
/**
|
|
1235
|
+
* Candidate ID to add to the job pipeline
|
|
1236
|
+
*/
|
|
1237
|
+
candidateId: string;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
/**
|
|
1241
|
+
* ViewCandidate API
|
|
1242
|
+
*
|
|
1243
|
+
*
|
|
1244
|
+
*
|
|
1245
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1246
|
+
* https://openapi-generator.tech
|
|
1247
|
+
* Do not edit the class manually.
|
|
1248
|
+
*/
|
|
1249
|
+
interface UpdateJobCandidateDto {
|
|
1250
|
+
/**
|
|
1251
|
+
* Pipeline stage
|
|
1252
|
+
*/
|
|
1253
|
+
stage?: UpdateJobCandidateDto.StageEnum;
|
|
1254
|
+
/**
|
|
1255
|
+
* Candidate status
|
|
1256
|
+
*/
|
|
1257
|
+
status?: UpdateJobCandidateDto.StatusEnum;
|
|
1258
|
+
}
|
|
1259
|
+
declare namespace UpdateJobCandidateDto {
|
|
1260
|
+
const StageEnum: {
|
|
1261
|
+
readonly Screening: "screening";
|
|
1262
|
+
readonly Presented: "presented";
|
|
1263
|
+
readonly Interviewing: "interviewing";
|
|
1264
|
+
readonly Placed: "placed";
|
|
1265
|
+
};
|
|
1266
|
+
type StageEnum = typeof StageEnum[keyof typeof StageEnum];
|
|
1267
|
+
const StatusEnum: {
|
|
1268
|
+
readonly Active: "active";
|
|
1269
|
+
readonly Rejected: "rejected";
|
|
1270
|
+
};
|
|
1271
|
+
type StatusEnum = typeof StatusEnum[keyof typeof StatusEnum];
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
declare class JobCandidateService extends BaseService {
|
|
1275
|
+
protected httpClient: HttpClient;
|
|
1276
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1277
|
+
/**
|
|
1278
|
+
* Add a candidate to the job pipeline
|
|
1279
|
+
* @endpoint post /jobs/{jobId}/candidates
|
|
1280
|
+
* @param jobId
|
|
1281
|
+
* @param createJobCandidateDto
|
|
1282
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1283
|
+
* @param reportProgress flag to report request and response progress.
|
|
1284
|
+
*/
|
|
1285
|
+
jobCandidateControllerCreateJobCandidate(jobId: string, createJobCandidateDto: CreateJobCandidateDto, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1286
|
+
httpHeaderAccept?: 'application/json';
|
|
1287
|
+
context?: HttpContext;
|
|
1288
|
+
transferCache?: boolean;
|
|
1289
|
+
}): Observable<APIJobCandidate>;
|
|
1290
|
+
jobCandidateControllerCreateJobCandidate(jobId: string, createJobCandidateDto: CreateJobCandidateDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1291
|
+
httpHeaderAccept?: 'application/json';
|
|
1292
|
+
context?: HttpContext;
|
|
1293
|
+
transferCache?: boolean;
|
|
1294
|
+
}): Observable<HttpResponse<APIJobCandidate>>;
|
|
1295
|
+
jobCandidateControllerCreateJobCandidate(jobId: string, createJobCandidateDto: CreateJobCandidateDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1296
|
+
httpHeaderAccept?: 'application/json';
|
|
1297
|
+
context?: HttpContext;
|
|
1298
|
+
transferCache?: boolean;
|
|
1299
|
+
}): Observable<HttpEvent<APIJobCandidate>>;
|
|
1300
|
+
/**
|
|
1301
|
+
* Remove a candidate from the job pipeline
|
|
1302
|
+
* @endpoint delete /jobs/{jobId}/candidates/{id}
|
|
1303
|
+
* @param jobId
|
|
1304
|
+
* @param id
|
|
1305
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1306
|
+
* @param reportProgress flag to report request and response progress.
|
|
1307
|
+
*/
|
|
1308
|
+
jobCandidateControllerDeleteJobCandidate(jobId: string, id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1309
|
+
httpHeaderAccept?: 'application/json';
|
|
1310
|
+
context?: HttpContext;
|
|
1311
|
+
transferCache?: boolean;
|
|
1312
|
+
}): Observable<APIMessageResponse>;
|
|
1313
|
+
jobCandidateControllerDeleteJobCandidate(jobId: string, id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1314
|
+
httpHeaderAccept?: 'application/json';
|
|
1315
|
+
context?: HttpContext;
|
|
1316
|
+
transferCache?: boolean;
|
|
1317
|
+
}): Observable<HttpResponse<APIMessageResponse>>;
|
|
1318
|
+
jobCandidateControllerDeleteJobCandidate(jobId: string, id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1319
|
+
httpHeaderAccept?: 'application/json';
|
|
1320
|
+
context?: HttpContext;
|
|
1321
|
+
transferCache?: boolean;
|
|
1322
|
+
}): Observable<HttpEvent<APIMessageResponse>>;
|
|
1323
|
+
/**
|
|
1324
|
+
* Get a job candidate pipeline entry
|
|
1325
|
+
* @endpoint get /jobs/{jobId}/candidates/{id}
|
|
1326
|
+
* @param jobId
|
|
1327
|
+
* @param id
|
|
1328
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1329
|
+
* @param reportProgress flag to report request and response progress.
|
|
1330
|
+
*/
|
|
1331
|
+
jobCandidateControllerGetJobCandidate(jobId: string, id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1332
|
+
httpHeaderAccept?: 'application/json';
|
|
1333
|
+
context?: HttpContext;
|
|
1334
|
+
transferCache?: boolean;
|
|
1335
|
+
}): Observable<APIJobCandidate>;
|
|
1336
|
+
jobCandidateControllerGetJobCandidate(jobId: string, id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1337
|
+
httpHeaderAccept?: 'application/json';
|
|
1338
|
+
context?: HttpContext;
|
|
1339
|
+
transferCache?: boolean;
|
|
1340
|
+
}): Observable<HttpResponse<APIJobCandidate>>;
|
|
1341
|
+
jobCandidateControllerGetJobCandidate(jobId: string, id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1342
|
+
httpHeaderAccept?: 'application/json';
|
|
1343
|
+
context?: HttpContext;
|
|
1344
|
+
transferCache?: boolean;
|
|
1345
|
+
}): Observable<HttpEvent<APIJobCandidate>>;
|
|
1346
|
+
/**
|
|
1347
|
+
* List candidates in job pipeline
|
|
1348
|
+
* @endpoint get /jobs/{jobId}/candidates
|
|
1349
|
+
* @param jobId
|
|
1350
|
+
* @param page Page number
|
|
1351
|
+
* @param stage Filter by pipeline stage
|
|
1352
|
+
* @param status Filter by status
|
|
1353
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1354
|
+
* @param reportProgress flag to report request and response progress.
|
|
1355
|
+
*/
|
|
1356
|
+
jobCandidateControllerGetJobCandidates(jobId: string, page?: number, stage?: 'screening' | 'presented' | 'interviewing' | 'placed', status?: 'active' | 'rejected', observe?: 'body', reportProgress?: boolean, options?: {
|
|
1357
|
+
httpHeaderAccept?: 'application/json';
|
|
1358
|
+
context?: HttpContext;
|
|
1359
|
+
transferCache?: boolean;
|
|
1360
|
+
}): Observable<APIPaginatedJobCandidateResponse>;
|
|
1361
|
+
jobCandidateControllerGetJobCandidates(jobId: string, page?: number, stage?: 'screening' | 'presented' | 'interviewing' | 'placed', status?: 'active' | 'rejected', observe?: 'response', reportProgress?: boolean, options?: {
|
|
1362
|
+
httpHeaderAccept?: 'application/json';
|
|
1363
|
+
context?: HttpContext;
|
|
1364
|
+
transferCache?: boolean;
|
|
1365
|
+
}): Observable<HttpResponse<APIPaginatedJobCandidateResponse>>;
|
|
1366
|
+
jobCandidateControllerGetJobCandidates(jobId: string, page?: number, stage?: 'screening' | 'presented' | 'interviewing' | 'placed', status?: 'active' | 'rejected', observe?: 'events', reportProgress?: boolean, options?: {
|
|
1367
|
+
httpHeaderAccept?: 'application/json';
|
|
1368
|
+
context?: HttpContext;
|
|
1369
|
+
transferCache?: boolean;
|
|
1370
|
+
}): Observable<HttpEvent<APIPaginatedJobCandidateResponse>>;
|
|
1371
|
+
/**
|
|
1372
|
+
* Update stage or status of a pipeline entry
|
|
1373
|
+
* @endpoint patch /jobs/{jobId}/candidates/{id}
|
|
1374
|
+
* @param jobId
|
|
1375
|
+
* @param id
|
|
1376
|
+
* @param updateJobCandidateDto
|
|
1377
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1378
|
+
* @param reportProgress flag to report request and response progress.
|
|
1379
|
+
*/
|
|
1380
|
+
jobCandidateControllerUpdateJobCandidate(jobId: string, id: string, updateJobCandidateDto: UpdateJobCandidateDto, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1381
|
+
httpHeaderAccept?: 'application/json';
|
|
1382
|
+
context?: HttpContext;
|
|
1383
|
+
transferCache?: boolean;
|
|
1384
|
+
}): Observable<APIJobCandidate>;
|
|
1385
|
+
jobCandidateControllerUpdateJobCandidate(jobId: string, id: string, updateJobCandidateDto: UpdateJobCandidateDto, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1386
|
+
httpHeaderAccept?: 'application/json';
|
|
1387
|
+
context?: HttpContext;
|
|
1388
|
+
transferCache?: boolean;
|
|
1389
|
+
}): Observable<HttpResponse<APIJobCandidate>>;
|
|
1390
|
+
jobCandidateControllerUpdateJobCandidate(jobId: string, id: string, updateJobCandidateDto: UpdateJobCandidateDto, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1391
|
+
httpHeaderAccept?: 'application/json';
|
|
1392
|
+
context?: HttpContext;
|
|
1393
|
+
transferCache?: boolean;
|
|
1394
|
+
}): Observable<HttpEvent<APIJobCandidate>>;
|
|
1395
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JobCandidateService, [null, { optional: true; }, { optional: true; }]>;
|
|
1396
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<JobCandidateService>;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
declare class OrganisationService extends BaseService {
|
|
1400
|
+
protected httpClient: HttpClient;
|
|
1401
|
+
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
1402
|
+
/**
|
|
1403
|
+
* Update organisation branding (admin only)
|
|
1404
|
+
* @endpoint patch /organisation
|
|
1405
|
+
* @param name Organisation name
|
|
1406
|
+
* @param brandColour Brand colour in hex format. Send \\\"DELETE\\\" to remove the brand colour.
|
|
1407
|
+
* @param logo Logo image (PNG, JPEG, or WebP). Max 5MB. Will be resized to 400x400 max.
|
|
1408
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1409
|
+
* @param reportProgress flag to report request and response progress.
|
|
1410
|
+
*/
|
|
1411
|
+
organisationControllerUpdateBranding(name?: string, brandColour?: string, logo?: Blob, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1412
|
+
httpHeaderAccept?: 'application/json';
|
|
1413
|
+
context?: HttpContext;
|
|
1414
|
+
transferCache?: boolean;
|
|
1415
|
+
}): Observable<APIOrganisation>;
|
|
1416
|
+
organisationControllerUpdateBranding(name?: string, brandColour?: string, logo?: Blob, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1417
|
+
httpHeaderAccept?: 'application/json';
|
|
1418
|
+
context?: HttpContext;
|
|
1419
|
+
transferCache?: boolean;
|
|
1420
|
+
}): Observable<HttpResponse<APIOrganisation>>;
|
|
1421
|
+
organisationControllerUpdateBranding(name?: string, brandColour?: string, logo?: Blob, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1422
|
+
httpHeaderAccept?: 'application/json';
|
|
1423
|
+
context?: HttpContext;
|
|
1424
|
+
transferCache?: boolean;
|
|
1425
|
+
}): Observable<HttpEvent<APIOrganisation>>;
|
|
1426
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<OrganisationService, [null, { optional: true; }, { optional: true; }]>;
|
|
1427
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<OrganisationService>;
|
|
1428
|
+
}
|
|
1429
|
+
|
|
992
1430
|
/**
|
|
993
1431
|
* ViewCandidate API
|
|
994
1432
|
*
|
|
@@ -1454,7 +1892,7 @@ declare class WaitlistService extends BaseService {
|
|
|
1454
1892
|
static ɵprov: i0.ɵɵInjectableDeclaration<WaitlistService>;
|
|
1455
1893
|
}
|
|
1456
1894
|
|
|
1457
|
-
declare const APIS: (typeof AuthService | typeof CVExtractionService | typeof CandidateService | typeof ClientService | typeof HealthService | typeof OrganisationService | typeof PresentationService | typeof WaitlistService)[];
|
|
1895
|
+
declare const APIS: (typeof AuthService | typeof CVExtractionService | typeof CandidateService | typeof ClientService | typeof HealthService | typeof JobService | typeof JobCandidateService | typeof OrganisationService | typeof PresentationService | typeof WaitlistService)[];
|
|
1458
1896
|
|
|
1459
1897
|
/**
|
|
1460
1898
|
* ViewCandidate API
|
|
@@ -1497,5 +1935,5 @@ declare class ViewCandidateApiModule {
|
|
|
1497
1935
|
|
|
1498
1936
|
declare function provideApi(configOrBasePath: string | ConfigurationParameters): EnvironmentProviders;
|
|
1499
1937
|
|
|
1500
|
-
export { APIS, AuthService, BASE_PATH, COLLECTION_FORMATS, CVExtractionService, CandidateService, ClientService, Configuration, HealthService, OrganisationService, PresentationService, UpdateCandidateDto, UpdateCandidateLanguageDto, ViewCandidateApiModule, WaitlistService, provideApi };
|
|
1501
|
-
export type { APIAuthResponse, APICandidateEducationHistory, APICandidateMeta, APICandidateWithPresentations, APICandidateWorkHistory, APIClient, APIInterviewRequest, APIMessageResponse, APIOrganisation, APIPaginatedCandidateResponse, APIPaginatedClientResponse, APIPaginatedInterviewRequestResponse, APIPresentation, APIPresentationWithCandidateMeta, APIPublicPresentationCandidate, APIPublicPresentationCandidateEducationHistory, APIPublicPresentationCandidateWorkHistory, APIPublicPresentationOrganisation, APIPublicPresentationWithCandidate, APIUser, APIWaitlistEntry, ConfigurationParameters, CreateClientDto, CreatePresentationDto, CreateWaitlistEntryDto, DataFormat, DataType, HealthControllerCheck200Response, HealthControllerCheck200ResponseInfoValue, HealthControllerCheck503Response, LoginDto, Param, ParamLocation, ParamStyle, RequestInterviewDto, ResendVerificationDto, SignupDto, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateCandidateEducationHistoryDto, UpdateCandidateWorkHistoryDto, UpdatePresentationDto, VerifyEmailDto };
|
|
1938
|
+
export { APIS, AuthService, BASE_PATH, COLLECTION_FORMATS, CVExtractionService, CandidateService, ClientService, Configuration, HealthService, JobCandidateService, JobService, OrganisationService, PresentationService, UpdateCandidateDto, UpdateCandidateLanguageDto, UpdateJobCandidateDto, ViewCandidateApiModule, WaitlistService, provideApi };
|
|
1939
|
+
export type { APIAuthResponse, APICandidateEducationHistory, APICandidateMeta, APICandidateWithPresentations, APICandidateWorkHistory, APIClient, APIInterviewRequest, APIJob, APIJobCandidate, APIJobCandidateStageHistory, APIMessageResponse, APIOrganisation, APIPaginatedCandidateResponse, APIPaginatedClientResponse, APIPaginatedInterviewRequestResponse, APIPaginatedJobCandidateResponse, APIPaginatedJobResponse, APIPresentation, APIPresentationWithCandidateMeta, APIPublicPresentationCandidate, APIPublicPresentationCandidateEducationHistory, APIPublicPresentationCandidateWorkHistory, APIPublicPresentationOrganisation, APIPublicPresentationWithCandidate, APIUser, APIWaitlistEntry, ConfigurationParameters, CreateClientDto, CreateJobCandidateDto, CreateJobDto, CreatePresentationDto, CreateWaitlistEntryDto, DataFormat, DataType, HealthControllerCheck200Response, HealthControllerCheck200ResponseInfoValue, HealthControllerCheck503Response, LoginDto, Param, ParamLocation, ParamStyle, RequestInterviewDto, ResendVerificationDto, SignupDto, StandardDataFormat, StandardDataType, StandardParamStyle, UpdateCandidateEducationHistoryDto, UpdateCandidateWorkHistoryDto, UpdateJobDto, UpdatePresentationDto, VerifyEmailDto };
|