@brivioio/api-server-types 7.3.0 → 7.4.0
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/dist/index.d.ts +1 -5
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -5
- package/dist/{admin.types.d.ts → organizationUsers.types.d.ts} +11 -5
- package/dist/organizationUsers.types.d.ts.map +1 -0
- package/dist/organizations.types.d.ts +2 -95
- package/dist/organizations.types.d.ts.map +1 -1
- package/dist/organizations.types.js +1 -8
- package/dist/utils.types.d.ts +2 -9
- package/dist/utils.types.d.ts.map +1 -1
- package/dist/utils.types.js +1 -9
- package/package.json +1 -1
- package/dist/admin.types.d.ts.map +0 -1
- package/dist/applications.types.d.ts +0 -468
- package/dist/applications.types.d.ts.map +0 -1
- package/dist/applications.types.js +0 -16
- package/dist/candidates/candidateNotes.types.d.ts +0 -25
- package/dist/candidates/candidateNotes.types.d.ts.map +0 -1
- package/dist/candidates/candidateNotes.types.js +0 -1
- package/dist/candidates/candidates.types.d.ts +0 -223
- package/dist/candidates/candidates.types.d.ts.map +0 -1
- package/dist/candidates/candidates.types.js +0 -1
- package/dist/candidates/enums.types.d.ts +0 -76
- package/dist/candidates/enums.types.d.ts.map +0 -1
- package/dist/candidates/enums.types.js +0 -86
- package/dist/candidates/index.d.ts +0 -5
- package/dist/candidates/index.d.ts.map +0 -1
- package/dist/candidates/index.js +0 -4
- package/dist/candidates/others.types.d.ts +0 -132
- package/dist/candidates/others.types.d.ts.map +0 -1
- package/dist/candidates/others.types.js +0 -1
- package/dist/globalCandidates/globalCandidates.types.d.ts +0 -176
- package/dist/globalCandidates/globalCandidates.types.d.ts.map +0 -1
- package/dist/globalCandidates/globalCandidates.types.js +0 -9
- package/dist/globalCandidates/index.d.ts +0 -2
- package/dist/globalCandidates/index.d.ts.map +0 -1
- package/dist/globalCandidates/index.js +0 -1
- package/dist/positions/enums.types.d.ts +0 -31
- package/dist/positions/enums.types.d.ts.map +0 -1
- package/dist/positions/enums.types.js +0 -36
- package/dist/positions/index.d.ts +0 -5
- package/dist/positions/index.d.ts.map +0 -1
- package/dist/positions/index.js +0 -4
- package/dist/positions/listApplications.types.d.ts +0 -25
- package/dist/positions/listApplications.types.d.ts.map +0 -1
- package/dist/positions/listApplications.types.js +0 -1
- package/dist/positions/listViewConfig.types.d.ts +0 -549
- package/dist/positions/listViewConfig.types.d.ts.map +0 -1
- package/dist/positions/listViewConfig.types.js +0 -275
- package/dist/positions/positions.types.d.ts +0 -363
- package/dist/positions/positions.types.d.ts.map +0 -1
- package/dist/positions/positions.types.js +0 -1
- /package/dist/{admin.types.js → organizationUsers.types.js} +0 -0
|
@@ -1,275 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Filter and View Configuration Types for Position Lists
|
|
3
|
-
*
|
|
4
|
-
* This type system supports comprehensive filtering, sorting, searching, and column visibility
|
|
5
|
-
* management for candidate lists within positions.
|
|
6
|
-
*
|
|
7
|
-
* Key Features:
|
|
8
|
-
* 1. Type-safe filters for different data types (string, number, boolean, array, date)
|
|
9
|
-
* 2. Single-field sorting (one column at a time)
|
|
10
|
-
* 3. Column visibility management
|
|
11
|
-
* 4. Support for dynamic position question fields
|
|
12
|
-
*
|
|
13
|
-
* Design Decisions:
|
|
14
|
-
* - Each filter type has a 'none' operation to represent "no filter applied"
|
|
15
|
-
* - Each filter type has a 'blank' operation to filter for empty/null values
|
|
16
|
-
* - deepProfileStatus is treated as a string filter (for enum values like 'queued', 'processing', etc.)
|
|
17
|
-
* - Array sorting uses array length (useful for skills - more skills = higher in desc order)
|
|
18
|
-
* - Position questions use discriminated unions to ensure type safety based on question type
|
|
19
|
-
* - FieldFilterConfig uses discriminated unions to ensure correct filter type for each field
|
|
20
|
-
* - Only one column can be sorted at a time (single-field sorting)
|
|
21
|
-
*/
|
|
22
|
-
/**
|
|
23
|
-
* SINGLE SOURCE OF TRUTH for all candidate field definitions.
|
|
24
|
-
* When adding a new filterable field, add it here and everything else will derive from it.
|
|
25
|
-
*/
|
|
26
|
-
export const CANDIDATE_FIELD_DEFINITIONS = {
|
|
27
|
-
// Application fields (exist on the application document directly)
|
|
28
|
-
applicationId: { filterType: 'string', dbPath: '_id', source: 'application', isObjectId: true },
|
|
29
|
-
applicationSubmittedAt: { filterType: 'date', dbPath: 'createdAt', source: 'application' },
|
|
30
|
-
positionTitle: {
|
|
31
|
-
filterType: 'string',
|
|
32
|
-
dbPath: 'positionId',
|
|
33
|
-
source: 'application',
|
|
34
|
-
isObjectId: true,
|
|
35
|
-
},
|
|
36
|
-
// Candidate fields (exist on the joined candidate document)
|
|
37
|
-
candidateId: {
|
|
38
|
-
filterType: 'string',
|
|
39
|
-
dbPath: 'candidate._id',
|
|
40
|
-
source: 'candidate',
|
|
41
|
-
isObjectId: true,
|
|
42
|
-
},
|
|
43
|
-
baseProfileUpdatedAt: {
|
|
44
|
-
filterType: 'date',
|
|
45
|
-
dbPath: 'candidate.baseProfile.updatedAt',
|
|
46
|
-
source: 'candidate',
|
|
47
|
-
},
|
|
48
|
-
cvUpdatedAt: { filterType: 'date', dbPath: 'candidate.cv.updatedAt', source: 'candidate' },
|
|
49
|
-
lastDeepProfileRequestedAt: {
|
|
50
|
-
filterType: 'date',
|
|
51
|
-
dbPath: 'candidate.deepProfile.lastRequestedAt',
|
|
52
|
-
source: 'candidate',
|
|
53
|
-
},
|
|
54
|
-
lastSuccessfulDeepProfileAt: {
|
|
55
|
-
filterType: 'date',
|
|
56
|
-
dbPath: 'candidate.deepProfile.lastSuccessfulRunAt',
|
|
57
|
-
source: 'candidate',
|
|
58
|
-
},
|
|
59
|
-
deepProfileStatus: {
|
|
60
|
-
filterType: 'string',
|
|
61
|
-
dbPath: 'candidate.deepProfile.status',
|
|
62
|
-
source: 'candidate',
|
|
63
|
-
},
|
|
64
|
-
scrapedProfilesLastRequestedAt: {
|
|
65
|
-
filterType: 'date',
|
|
66
|
-
dbPath: 'candidate.scrapedProfiles.lastRequestedAt',
|
|
67
|
-
source: 'candidate',
|
|
68
|
-
},
|
|
69
|
-
scrapedProfilesLastSuccessfulRunAt: {
|
|
70
|
-
filterType: 'date',
|
|
71
|
-
dbPath: 'candidate.scrapedProfiles.lastSuccessfulRunAt',
|
|
72
|
-
source: 'candidate',
|
|
73
|
-
},
|
|
74
|
-
scrapedProfilesStatus: {
|
|
75
|
-
filterType: 'string',
|
|
76
|
-
dbPath: 'candidate.scrapedProfiles.status',
|
|
77
|
-
source: 'candidate',
|
|
78
|
-
},
|
|
79
|
-
candidateEmail: { filterType: 'string', dbPath: 'candidate.email', source: 'candidate' },
|
|
80
|
-
countryCode: {
|
|
81
|
-
filterType: 'number',
|
|
82
|
-
dbPath: 'candidate.baseProfile.phone.countryCode',
|
|
83
|
-
source: 'candidate',
|
|
84
|
-
},
|
|
85
|
-
phoneNumber: {
|
|
86
|
-
filterType: 'number',
|
|
87
|
-
dbPath: 'candidate.baseProfile.phone.phoneNumber',
|
|
88
|
-
source: 'candidate',
|
|
89
|
-
},
|
|
90
|
-
linkedinUrl: {
|
|
91
|
-
filterType: 'string',
|
|
92
|
-
dbPath: 'candidate.baseProfile.urls.linkedin',
|
|
93
|
-
source: 'candidate',
|
|
94
|
-
},
|
|
95
|
-
githubUrl: {
|
|
96
|
-
filterType: 'string',
|
|
97
|
-
dbPath: 'candidate.baseProfile.urls.github',
|
|
98
|
-
source: 'candidate',
|
|
99
|
-
},
|
|
100
|
-
codeforcesUrl: {
|
|
101
|
-
filterType: 'string',
|
|
102
|
-
dbPath: 'candidate.baseProfile.urls.codeforces',
|
|
103
|
-
source: 'candidate',
|
|
104
|
-
},
|
|
105
|
-
codechefUrl: {
|
|
106
|
-
filterType: 'string',
|
|
107
|
-
dbPath: 'candidate.baseProfile.urls.codechef',
|
|
108
|
-
source: 'candidate',
|
|
109
|
-
},
|
|
110
|
-
leetcodeUrl: {
|
|
111
|
-
filterType: 'string',
|
|
112
|
-
dbPath: 'candidate.baseProfile.urls.leetcode',
|
|
113
|
-
source: 'candidate',
|
|
114
|
-
},
|
|
115
|
-
fullTimeExperienceInYears: {
|
|
116
|
-
filterType: 'number',
|
|
117
|
-
dbPath: 'candidate.baseProfile.fullTimeExperienceInYears',
|
|
118
|
-
source: 'candidate',
|
|
119
|
-
},
|
|
120
|
-
coreSkills: {
|
|
121
|
-
filterType: 'array',
|
|
122
|
-
dbPath: 'candidate.baseProfile.skills',
|
|
123
|
-
source: 'candidate',
|
|
124
|
-
isArrayField: true,
|
|
125
|
-
},
|
|
126
|
-
noticePeriod: {
|
|
127
|
-
filterType: 'number',
|
|
128
|
-
dbPath: 'candidate.baseProfile.noticePeriodInDays',
|
|
129
|
-
source: 'candidate',
|
|
130
|
-
},
|
|
131
|
-
currentSalary: {
|
|
132
|
-
filterType: 'number',
|
|
133
|
-
dbPath: 'candidate.baseProfile.currentCashCompInLPA',
|
|
134
|
-
source: 'candidate',
|
|
135
|
-
},
|
|
136
|
-
expectedSalary: {
|
|
137
|
-
filterType: 'number',
|
|
138
|
-
dbPath: 'candidate.baseProfile.expectedCashCompInLPA',
|
|
139
|
-
source: 'candidate',
|
|
140
|
-
},
|
|
141
|
-
currentCity: {
|
|
142
|
-
filterType: 'string',
|
|
143
|
-
dbPath: 'candidate.baseProfile.currentLocation.city',
|
|
144
|
-
source: 'candidate',
|
|
145
|
-
},
|
|
146
|
-
currentState: {
|
|
147
|
-
filterType: 'string',
|
|
148
|
-
dbPath: 'candidate.baseProfile.currentLocation.state',
|
|
149
|
-
source: 'candidate',
|
|
150
|
-
},
|
|
151
|
-
preferredCity: {
|
|
152
|
-
filterType: 'string',
|
|
153
|
-
dbPath: 'candidate.baseProfile.preferredLocation.city',
|
|
154
|
-
source: 'candidate',
|
|
155
|
-
},
|
|
156
|
-
preferredState: {
|
|
157
|
-
filterType: 'string',
|
|
158
|
-
dbPath: 'candidate.baseProfile.preferredLocation.state',
|
|
159
|
-
source: 'candidate',
|
|
160
|
-
},
|
|
161
|
-
// Pre-computed fields from candidate.computedFields
|
|
162
|
-
computedFullName: {
|
|
163
|
-
filterType: 'string',
|
|
164
|
-
dbPath: 'candidate.computedFields.fullName',
|
|
165
|
-
source: 'candidate',
|
|
166
|
-
},
|
|
167
|
-
computedWhatsAppUrl: {
|
|
168
|
-
filterType: 'string',
|
|
169
|
-
dbPath: 'candidate.computedFields.whatsAppUrl',
|
|
170
|
-
source: 'candidate',
|
|
171
|
-
},
|
|
172
|
-
computedAllSkills: {
|
|
173
|
-
filterType: 'array',
|
|
174
|
-
dbPath: 'candidate.computedFields.allSkills',
|
|
175
|
-
source: 'candidate',
|
|
176
|
-
isArrayField: true,
|
|
177
|
-
},
|
|
178
|
-
computedFullTimeExperienceInYears: {
|
|
179
|
-
filterType: 'number',
|
|
180
|
-
dbPath: 'candidate.computedFields.fullTimeExperienceInYears',
|
|
181
|
-
source: 'candidate',
|
|
182
|
-
},
|
|
183
|
-
computedIsCurrentlyEmployedFullTime: {
|
|
184
|
-
filterType: 'boolean',
|
|
185
|
-
dbPath: 'candidate.computedFields.isCurrentlyEmployedFullTime',
|
|
186
|
-
source: 'candidate',
|
|
187
|
-
},
|
|
188
|
-
computedNumberOfFullTimeJobSwitches: {
|
|
189
|
-
filterType: 'number',
|
|
190
|
-
dbPath: 'candidate.computedFields.numberOfFullTimeJobSwitches',
|
|
191
|
-
source: 'candidate',
|
|
192
|
-
},
|
|
193
|
-
computedLatestFullTimeEmployer: {
|
|
194
|
-
filterType: 'string',
|
|
195
|
-
dbPath: 'candidate.computedFields.latestFullTimeEmployer',
|
|
196
|
-
source: 'candidate',
|
|
197
|
-
},
|
|
198
|
-
computedMonthsSpentInLatestFullTimeRole: {
|
|
199
|
-
filterType: 'number',
|
|
200
|
-
dbPath: 'candidate.computedFields.monthsSpentInLatestFullTimeRole',
|
|
201
|
-
source: 'candidate',
|
|
202
|
-
},
|
|
203
|
-
computedMonthsSinceUnemployedFromLastFullTimeRole: {
|
|
204
|
-
filterType: 'number',
|
|
205
|
-
dbPath: 'candidate.computedFields.monthsSinceUnemployedFromLastFullTimeRole',
|
|
206
|
-
source: 'candidate',
|
|
207
|
-
},
|
|
208
|
-
computedLatestFullTimeRoleTitle: {
|
|
209
|
-
filterType: 'string',
|
|
210
|
-
dbPath: 'candidate.computedFields.latestFullTimeRoleTitle',
|
|
211
|
-
source: 'candidate',
|
|
212
|
-
},
|
|
213
|
-
// Global candidate view fields (computed via $lookup in global pipeline)
|
|
214
|
-
organizationName: {
|
|
215
|
-
filterType: 'string',
|
|
216
|
-
dbPath: 'organizationNames',
|
|
217
|
-
source: 'candidate',
|
|
218
|
-
},
|
|
219
|
-
appliedPositions: {
|
|
220
|
-
filterType: 'string',
|
|
221
|
-
dbPath: 'appliedPositionIds',
|
|
222
|
-
source: 'candidate',
|
|
223
|
-
isObjectId: true,
|
|
224
|
-
},
|
|
225
|
-
candidateCreatedAt: {
|
|
226
|
-
filterType: 'date',
|
|
227
|
-
dbPath: 'createdAt',
|
|
228
|
-
source: 'candidate',
|
|
229
|
-
},
|
|
230
|
-
};
|
|
231
|
-
/**
|
|
232
|
-
* Example Usage:
|
|
233
|
-
*
|
|
234
|
-
* 1. Filter candidates with 3+ years experience, currently employed, and know BOTH React and TypeScript:
|
|
235
|
-
* {
|
|
236
|
-
* filters: [
|
|
237
|
-
* { fieldId: 'fullTimeExperienceInYears', filter: { operation: { type: 'greaterThanOrEqual', value: 3 } } },
|
|
238
|
-
* { fieldId: 'isCurrentlyEmployed', filter: { operation: { type: 'true' } } },
|
|
239
|
-
* { fieldId: 'coreSkills', filter: { operation: { type: 'containsAll', values: ['React', 'TypeScript'] } } }
|
|
240
|
-
* ],
|
|
241
|
-
* sort: { fieldId: 'fullTimeExperienceInYears', direction: 'desc' },
|
|
242
|
-
* hiddenColumns: ['phoneNumber', 'linkedinUrl']
|
|
243
|
-
* }
|
|
244
|
-
*
|
|
245
|
-
* 2. Filter candidates who know EITHER React OR Vue OR Angular:
|
|
246
|
-
* {
|
|
247
|
-
* filters: [
|
|
248
|
-
* { fieldId: 'coreSkills', filter: { operation: { type: 'containsAny', values: ['React', 'Vue', 'Angular'] } } }
|
|
249
|
-
* ],
|
|
250
|
-
* sort: { fieldId: 'fullTimeExperienceInYears', direction: 'desc' },
|
|
251
|
-
* hiddenColumns: []
|
|
252
|
-
* }
|
|
253
|
-
*
|
|
254
|
-
* 3. Filter by position question (custom field with containsAll):
|
|
255
|
-
* {
|
|
256
|
-
* filters: [
|
|
257
|
-
* {
|
|
258
|
-
* fieldId: 'question-id-123',
|
|
259
|
-
* filter: { questionType: 'mcq', filter: { operation: { type: 'containsAll', values: ['Option A', 'Option B'] } } }
|
|
260
|
-
* }
|
|
261
|
-
* ],
|
|
262
|
-
* sort: null,
|
|
263
|
-
* hiddenColumns: []
|
|
264
|
-
* }
|
|
265
|
-
*
|
|
266
|
-
* 4. Filter for candidates with blank/missing fields:
|
|
267
|
-
* {
|
|
268
|
-
* filters: [
|
|
269
|
-
* { fieldId: 'linkedinUrl', filter: { operation: { type: 'blank' } } },
|
|
270
|
-
* { fieldId: 'currentSalary', filter: { operation: { type: 'blank' } } }
|
|
271
|
-
* ],
|
|
272
|
-
* sort: null,
|
|
273
|
-
* hiddenColumns: []
|
|
274
|
-
* }
|
|
275
|
-
*/
|
|
@@ -1,363 +0,0 @@
|
|
|
1
|
-
import type { AIQueryRole, IAIQuery } from '../applications.types';
|
|
2
|
-
import type { IOrganization } from '../organizations.types';
|
|
3
|
-
import type { IResponse, ProcessStatus } from '../utils.types';
|
|
4
|
-
import type { LocationMode, EmploymentType, PositionQuestionType, TextQuestionType, McqQuestionType, PositionListType } from './enums.types';
|
|
5
|
-
import type { TGetListApplicationsRequestQuery as ListAppRequestQuery, TGetListApplicationsResponse as ListAppResponse, TDownloadListApplicationsResponse as DownloadListAppResponse } from './listApplications.types';
|
|
6
|
-
import type { ListViewConfig } from './listViewConfig.types';
|
|
7
|
-
export interface IPosition {
|
|
8
|
-
_id: string;
|
|
9
|
-
organizationId: string;
|
|
10
|
-
title: string;
|
|
11
|
-
description: string;
|
|
12
|
-
slugs: {
|
|
13
|
-
short: string;
|
|
14
|
-
long: string;
|
|
15
|
-
};
|
|
16
|
-
isOpen: boolean;
|
|
17
|
-
isPublished: boolean;
|
|
18
|
-
jobDescription: {
|
|
19
|
-
requiredExperience: string;
|
|
20
|
-
locationMode: LocationMode;
|
|
21
|
-
location: string;
|
|
22
|
-
datePosted: string;
|
|
23
|
-
skills: string[];
|
|
24
|
-
tags: string[];
|
|
25
|
-
jdMarkdown: string;
|
|
26
|
-
employmentType: EmploymentType;
|
|
27
|
-
employmentTypeOther?: string;
|
|
28
|
-
salary: string;
|
|
29
|
-
};
|
|
30
|
-
questions: {
|
|
31
|
-
id: string;
|
|
32
|
-
type: PositionQuestionType;
|
|
33
|
-
order: number;
|
|
34
|
-
title: string;
|
|
35
|
-
description?: string;
|
|
36
|
-
isRequired: boolean;
|
|
37
|
-
textConfig?: {
|
|
38
|
-
type: TextQuestionType;
|
|
39
|
-
minCharacters?: number;
|
|
40
|
-
maxCharacters?: number;
|
|
41
|
-
validationFailErrorMessage?: string;
|
|
42
|
-
};
|
|
43
|
-
mcqConfig?: {
|
|
44
|
-
options: string[];
|
|
45
|
-
type: McqQuestionType;
|
|
46
|
-
};
|
|
47
|
-
numberConfig?: {
|
|
48
|
-
minValue?: number;
|
|
49
|
-
maxValue?: number;
|
|
50
|
-
validationFailErrorMessage?: string;
|
|
51
|
-
};
|
|
52
|
-
isDeleted: boolean;
|
|
53
|
-
createdAt: string;
|
|
54
|
-
updatedAt: string;
|
|
55
|
-
}[];
|
|
56
|
-
lists: {
|
|
57
|
-
id: string;
|
|
58
|
-
order: number;
|
|
59
|
-
title: string;
|
|
60
|
-
description: string;
|
|
61
|
-
isDeleted: boolean;
|
|
62
|
-
type: PositionListType;
|
|
63
|
-
viewConfig: ListViewConfig;
|
|
64
|
-
createdAt: string;
|
|
65
|
-
updatedAt: string;
|
|
66
|
-
}[];
|
|
67
|
-
internalTags: {
|
|
68
|
-
key: string;
|
|
69
|
-
value: string;
|
|
70
|
-
}[];
|
|
71
|
-
isDeleted: boolean;
|
|
72
|
-
createdAt: string;
|
|
73
|
-
updatedAt: string;
|
|
74
|
-
}
|
|
75
|
-
export type TPositionWithOrganization = Omit<IPosition, 'organizationId'> & {
|
|
76
|
-
organization: IOrganization & {
|
|
77
|
-
logoUrl: string | null;
|
|
78
|
-
};
|
|
79
|
-
totalApplications: number;
|
|
80
|
-
};
|
|
81
|
-
export declare namespace AdminPositionsAPITypes {
|
|
82
|
-
type TGetAllPositionsResponse = IResponse<TPositionWithOrganization[] | null>;
|
|
83
|
-
type TGetPositionByIdResponse = IResponse<TPositionWithOrganization | null>;
|
|
84
|
-
type TCreatePositionRequestBody = {
|
|
85
|
-
organizationId: string;
|
|
86
|
-
title: string;
|
|
87
|
-
description: string;
|
|
88
|
-
slugs: {
|
|
89
|
-
short: string;
|
|
90
|
-
long: string;
|
|
91
|
-
};
|
|
92
|
-
isOpen: boolean;
|
|
93
|
-
isPublished: boolean;
|
|
94
|
-
jobDescription: {
|
|
95
|
-
requiredExperience: string;
|
|
96
|
-
locationMode: string;
|
|
97
|
-
location: string;
|
|
98
|
-
datePosted: string;
|
|
99
|
-
skills: string[];
|
|
100
|
-
tags: string[];
|
|
101
|
-
jdMarkdown: string;
|
|
102
|
-
employmentType: string;
|
|
103
|
-
employmentTypeOther?: string;
|
|
104
|
-
salary: string;
|
|
105
|
-
};
|
|
106
|
-
questions: {
|
|
107
|
-
type: PositionQuestionType;
|
|
108
|
-
order: number;
|
|
109
|
-
title: string;
|
|
110
|
-
description?: string;
|
|
111
|
-
isRequired: boolean;
|
|
112
|
-
textConfig?: {
|
|
113
|
-
type: TextQuestionType;
|
|
114
|
-
minCharacters?: number;
|
|
115
|
-
maxCharacters?: number;
|
|
116
|
-
validationFailErrorMessage?: string;
|
|
117
|
-
};
|
|
118
|
-
mcqConfig?: {
|
|
119
|
-
options: string[];
|
|
120
|
-
type: McqQuestionType;
|
|
121
|
-
};
|
|
122
|
-
numberConfig?: {
|
|
123
|
-
minValue?: number;
|
|
124
|
-
maxValue?: number;
|
|
125
|
-
validationFailErrorMessage?: string;
|
|
126
|
-
};
|
|
127
|
-
}[];
|
|
128
|
-
};
|
|
129
|
-
type TCreatePositionResponse = IResponse<{
|
|
130
|
-
positionId: string;
|
|
131
|
-
} | null>;
|
|
132
|
-
type TEditPositionRequestBody = {
|
|
133
|
-
organizationId: string;
|
|
134
|
-
title: string;
|
|
135
|
-
description: string;
|
|
136
|
-
slugs: {
|
|
137
|
-
short: string;
|
|
138
|
-
long: string;
|
|
139
|
-
};
|
|
140
|
-
isOpen: boolean;
|
|
141
|
-
isPublished: boolean;
|
|
142
|
-
jobDescription: {
|
|
143
|
-
requiredExperience: string;
|
|
144
|
-
locationMode: string;
|
|
145
|
-
location: string;
|
|
146
|
-
datePosted: string;
|
|
147
|
-
skills: string[];
|
|
148
|
-
tags: string[];
|
|
149
|
-
jdMarkdown: string;
|
|
150
|
-
employmentType: string;
|
|
151
|
-
employmentTypeOther?: string;
|
|
152
|
-
salary: string;
|
|
153
|
-
};
|
|
154
|
-
questions: {
|
|
155
|
-
id: string;
|
|
156
|
-
type: PositionQuestionType;
|
|
157
|
-
order: number;
|
|
158
|
-
title: string;
|
|
159
|
-
description?: string;
|
|
160
|
-
isRequired: boolean;
|
|
161
|
-
textConfig?: {
|
|
162
|
-
type: TextQuestionType;
|
|
163
|
-
minCharacters?: number;
|
|
164
|
-
maxCharacters?: number;
|
|
165
|
-
validationFailErrorMessage?: string;
|
|
166
|
-
};
|
|
167
|
-
mcqConfig?: {
|
|
168
|
-
options: string[];
|
|
169
|
-
type: McqQuestionType;
|
|
170
|
-
};
|
|
171
|
-
numberConfig?: {
|
|
172
|
-
minValue?: number;
|
|
173
|
-
maxValue?: number;
|
|
174
|
-
validationFailErrorMessage?: string;
|
|
175
|
-
};
|
|
176
|
-
isDeleted: boolean;
|
|
177
|
-
}[];
|
|
178
|
-
};
|
|
179
|
-
type TEditPositionResponse = IResponse<{
|
|
180
|
-
positionId: string;
|
|
181
|
-
} | null>;
|
|
182
|
-
type TDeletePositionResponse = IResponse<{
|
|
183
|
-
positionId: string;
|
|
184
|
-
} | null>;
|
|
185
|
-
type TCreateListRequestBody = {
|
|
186
|
-
title: string;
|
|
187
|
-
description: string;
|
|
188
|
-
};
|
|
189
|
-
type TCreateListResponse = IResponse<{
|
|
190
|
-
listId: string;
|
|
191
|
-
} | null>;
|
|
192
|
-
type TDeleteListResponse = IResponse<{
|
|
193
|
-
listId: string;
|
|
194
|
-
} | null>;
|
|
195
|
-
type TEditListRequestBody = {
|
|
196
|
-
title: string;
|
|
197
|
-
description: string;
|
|
198
|
-
};
|
|
199
|
-
type TEditListResponse = IResponse<{
|
|
200
|
-
listId: string;
|
|
201
|
-
} | null>;
|
|
202
|
-
type TReorderListsRequestBody = {
|
|
203
|
-
listIds: string[];
|
|
204
|
-
};
|
|
205
|
-
type TReorderListsResponse = IResponse<null>;
|
|
206
|
-
type TGetPositionListsResponseData = {
|
|
207
|
-
id: string;
|
|
208
|
-
order: number;
|
|
209
|
-
title: string;
|
|
210
|
-
description: string;
|
|
211
|
-
type: PositionListType;
|
|
212
|
-
viewConfig: ListViewConfig;
|
|
213
|
-
createdAt: string;
|
|
214
|
-
updatedAt: string;
|
|
215
|
-
positionId: string;
|
|
216
|
-
applicationCount: number;
|
|
217
|
-
}[];
|
|
218
|
-
type TGetPositionListsResponse = IResponse<TGetPositionListsResponseData | null>;
|
|
219
|
-
type TDeepProfileApplicationsRequestBody = {
|
|
220
|
-
applicationIds?: string[];
|
|
221
|
-
lastApplicationSubmittedAt?: string;
|
|
222
|
-
};
|
|
223
|
-
type TDeepProfileApplicationsResponse = IResponse<{
|
|
224
|
-
deepProfilesCount: number;
|
|
225
|
-
scrapedProfilesCount: number;
|
|
226
|
-
} | null>;
|
|
227
|
-
type TCreateAIQueryMessageRequestBody = {
|
|
228
|
-
aiQueryId?: string;
|
|
229
|
-
message: string;
|
|
230
|
-
};
|
|
231
|
-
type TCreateAIQueryMessageResponse = IResponse<{
|
|
232
|
-
aiQueryId: string;
|
|
233
|
-
chatHistory: {
|
|
234
|
-
content: string;
|
|
235
|
-
role: AIQueryRole;
|
|
236
|
-
createdAt: string;
|
|
237
|
-
}[];
|
|
238
|
-
status?: ProcessStatus;
|
|
239
|
-
} | null>;
|
|
240
|
-
type TDeleteApplicationsRequestBody = {
|
|
241
|
-
applicationIds?: string[];
|
|
242
|
-
lastApplicationSubmittedAt?: string;
|
|
243
|
-
};
|
|
244
|
-
type TDeleteApplicationsResponse = IResponse<{
|
|
245
|
-
deletedApplicationsCount: number;
|
|
246
|
-
} | null>;
|
|
247
|
-
type TMoveApplicationsRequestBody = {
|
|
248
|
-
destinationListId: string;
|
|
249
|
-
applicationIds?: string[];
|
|
250
|
-
lastApplicationSubmittedAt?: string;
|
|
251
|
-
};
|
|
252
|
-
type TMoveApplicationsResponse = IResponse<{
|
|
253
|
-
movedApplicationsCount: number;
|
|
254
|
-
} | null>;
|
|
255
|
-
type TGetListApplicationsRequestQuery = ListAppRequestQuery;
|
|
256
|
-
type TGetListApplicationsResponse = ListAppResponse;
|
|
257
|
-
type TDownloadListApplicationsResponse = DownloadListAppResponse;
|
|
258
|
-
type TUpdateListViewConfigRequestBody = {
|
|
259
|
-
viewConfig: ListViewConfig;
|
|
260
|
-
};
|
|
261
|
-
type TUpdateListViewConfigResponse = IResponse<{
|
|
262
|
-
listId: string;
|
|
263
|
-
} | null>;
|
|
264
|
-
type TGetFilterValuesRequestQuery = {
|
|
265
|
-
fieldId: string;
|
|
266
|
-
};
|
|
267
|
-
type TFilterValues = {
|
|
268
|
-
type: 'string';
|
|
269
|
-
values: string[];
|
|
270
|
-
labels?: Record<string, string>;
|
|
271
|
-
} | {
|
|
272
|
-
type: 'number';
|
|
273
|
-
values: number[];
|
|
274
|
-
} | {
|
|
275
|
-
type: 'boolean';
|
|
276
|
-
values: [true, false];
|
|
277
|
-
} | {
|
|
278
|
-
type: 'date';
|
|
279
|
-
values: number[];
|
|
280
|
-
} | {
|
|
281
|
-
type: 'array';
|
|
282
|
-
values: string[];
|
|
283
|
-
};
|
|
284
|
-
type TGetFilterValuesResponse = IResponse<TFilterValues | null>;
|
|
285
|
-
type TGetListProcessStatusResponseData = {
|
|
286
|
-
isDeepProfiling: boolean;
|
|
287
|
-
isScrapingProgrammingProfiles: boolean;
|
|
288
|
-
isAIQueryProcessing: boolean;
|
|
289
|
-
};
|
|
290
|
-
type TGetListProcessStatusResponse = IResponse<TGetListProcessStatusResponseData | null>;
|
|
291
|
-
type TGetListAIQueriesResponse = IResponse<IAIQuery[] | null>;
|
|
292
|
-
type TGetAIQueryByIdResponse = IResponse<IAIQuery | null>;
|
|
293
|
-
type TConvertJDPDFToMarkdownRequestBody = {
|
|
294
|
-
jdPdfBase64: string;
|
|
295
|
-
};
|
|
296
|
-
type TConvertJDPDFToMarkdownResponse = IResponse<{
|
|
297
|
-
jdMarkdown: string;
|
|
298
|
-
} | null>;
|
|
299
|
-
}
|
|
300
|
-
export interface IPositionDetailsForCandidate {
|
|
301
|
-
_id: string;
|
|
302
|
-
title: string;
|
|
303
|
-
description: string;
|
|
304
|
-
slugs: {
|
|
305
|
-
short: string;
|
|
306
|
-
long: string;
|
|
307
|
-
};
|
|
308
|
-
isOpen: boolean;
|
|
309
|
-
isPublished: boolean;
|
|
310
|
-
organization: {
|
|
311
|
-
name: string;
|
|
312
|
-
logoUrl: string | null;
|
|
313
|
-
about: string;
|
|
314
|
-
urls: {
|
|
315
|
-
website: string;
|
|
316
|
-
others: string[];
|
|
317
|
-
};
|
|
318
|
-
};
|
|
319
|
-
jobDescription: {
|
|
320
|
-
requiredExperience: string;
|
|
321
|
-
locationMode: LocationMode;
|
|
322
|
-
location: string;
|
|
323
|
-
datePosted: string;
|
|
324
|
-
skills: string[];
|
|
325
|
-
tags: string[];
|
|
326
|
-
jdMarkdown: string;
|
|
327
|
-
employmentType: EmploymentType;
|
|
328
|
-
employmentTypeOther?: string;
|
|
329
|
-
salary: string;
|
|
330
|
-
};
|
|
331
|
-
}
|
|
332
|
-
export interface IPositionDetailsForCandidateList extends IPositionDetailsForCandidate {
|
|
333
|
-
hasApplied: boolean;
|
|
334
|
-
}
|
|
335
|
-
export interface ICandidatePositionsListResponse {
|
|
336
|
-
positions: IPositionDetailsForCandidateList[];
|
|
337
|
-
page: number;
|
|
338
|
-
limit: number;
|
|
339
|
-
totalPages: number;
|
|
340
|
-
totalItems: number;
|
|
341
|
-
}
|
|
342
|
-
export declare namespace CandidatePositionsAPITypes {
|
|
343
|
-
type TGetAllPositionsRequestQuery = {
|
|
344
|
-
page: string;
|
|
345
|
-
};
|
|
346
|
-
type TGetAllPositionsResponse = IResponse<ICandidatePositionsListResponse | null>;
|
|
347
|
-
type TGetPositionBySlugResponse = IResponse<IPositionDetailsForCandidate | null>;
|
|
348
|
-
type TGetPositionApplicationStatusResponse = IResponse<null>;
|
|
349
|
-
type TGetPositionApplicationQuestionsResponse = IResponse<Omit<IPosition['questions'][number], 'isDeleted'>[] | null>;
|
|
350
|
-
type TSubmitPositionApplicationRequestBody = {
|
|
351
|
-
questionsAndAnswers: {
|
|
352
|
-
questionId: string;
|
|
353
|
-
answer: {
|
|
354
|
-
text?: string;
|
|
355
|
-
mcq?: string[];
|
|
356
|
-
number?: number;
|
|
357
|
-
};
|
|
358
|
-
questionUpdatedAtEpochMS: number;
|
|
359
|
-
}[];
|
|
360
|
-
};
|
|
361
|
-
type TSubmitPositionApplicationResponse = IResponse<null>;
|
|
362
|
-
}
|
|
363
|
-
//# sourceMappingURL=positions.types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"positions.types.d.ts","sourceRoot":"","sources":["../../src/positions/positions.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
File without changes
|