@brivioio/api-server-types 4.0.0 → 5.0.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.
@@ -0,0 +1,294 @@
1
+ import type { AIQueryRole } from '../applications.types';
2
+ import type { ListViewConfig } from './listViewConfig.types';
3
+ import type { IOrganization } from '../organizations.types';
4
+ import type { IResponse, ProcessStatus } from '../utils.types';
5
+ import type { LocationMode, EmploymentType, PositionQuestionType, TextQuestionType, McqQuestionType, PositionListType } from './enums.types';
6
+ export interface IPosition {
7
+ _id: string;
8
+ organizationId: string;
9
+ title: string;
10
+ description: string;
11
+ slugs: {
12
+ short: string;
13
+ long: string;
14
+ };
15
+ isOpen: boolean;
16
+ isPublished: boolean;
17
+ jobDescription: {
18
+ requiredExperience: string;
19
+ locationMode: LocationMode;
20
+ location: string;
21
+ datePosted: string;
22
+ skills: string[];
23
+ tags: string[];
24
+ jdMarkdown: string;
25
+ employmentType: EmploymentType;
26
+ employmentTypeOther?: string;
27
+ salary: string;
28
+ };
29
+ questions: {
30
+ id: string;
31
+ type: PositionQuestionType;
32
+ order: number;
33
+ title: string;
34
+ description?: string;
35
+ isRequired: boolean;
36
+ textConfig?: {
37
+ type: TextQuestionType;
38
+ minCharacters?: number;
39
+ maxCharacters?: number;
40
+ validationFailErrorMessage?: string;
41
+ };
42
+ mcqConfig?: {
43
+ options: string[];
44
+ type: McqQuestionType;
45
+ };
46
+ numberConfig?: {
47
+ minValue?: number;
48
+ maxValue?: number;
49
+ validationFailErrorMessage?: string;
50
+ };
51
+ isDeleted: boolean;
52
+ createdAt: string;
53
+ updatedAt: string;
54
+ }[];
55
+ lists: {
56
+ id: string;
57
+ order: number;
58
+ title: string;
59
+ description: string;
60
+ isDeleted: boolean;
61
+ type: PositionListType;
62
+ viewConfig: ListViewConfig;
63
+ createdAt: string;
64
+ updatedAt: string;
65
+ }[];
66
+ internalTags: {
67
+ key: string;
68
+ value: string;
69
+ }[];
70
+ isDeleted: boolean;
71
+ createdAt: string;
72
+ updatedAt: string;
73
+ }
74
+ export type TPositionWithOrganization = Omit<IPosition, 'organizationId'> & {
75
+ organization: IOrganization & {
76
+ logoUrl: string | null;
77
+ };
78
+ totalApplications: number;
79
+ };
80
+ export declare namespace AdminPositionsAPITypes {
81
+ type TGetAllPositionsResponse = IResponse<TPositionWithOrganization[] | null>;
82
+ type TGetPositionByIdResponse = IResponse<TPositionWithOrganization | null>;
83
+ type TCreatePositionRequestBody = {
84
+ organizationId: string;
85
+ title: string;
86
+ description: string;
87
+ slugs: {
88
+ short: string;
89
+ long: string;
90
+ };
91
+ isOpen: boolean;
92
+ isPublished: boolean;
93
+ jobDescription: {
94
+ requiredExperience: string;
95
+ locationMode: string;
96
+ location: string;
97
+ datePosted: string;
98
+ skills: string[];
99
+ tags: string[];
100
+ jdMarkdown: string;
101
+ employmentType: string;
102
+ employmentTypeOther?: string;
103
+ salary: string;
104
+ };
105
+ questions: {
106
+ type: PositionQuestionType;
107
+ order: number;
108
+ title: string;
109
+ description?: string;
110
+ isRequired: boolean;
111
+ textConfig?: {
112
+ type: TextQuestionType;
113
+ minCharacters?: number;
114
+ maxCharacters?: number;
115
+ validationFailErrorMessage?: string;
116
+ };
117
+ mcqConfig?: {
118
+ options: string[];
119
+ type: McqQuestionType;
120
+ };
121
+ numberConfig?: {
122
+ minValue?: number;
123
+ maxValue?: number;
124
+ validationFailErrorMessage?: string;
125
+ };
126
+ }[];
127
+ };
128
+ type TCreatePositionResponse = IResponse<{
129
+ positionId: string;
130
+ } | null>;
131
+ type TEditPositionRequestBody = {
132
+ organizationId: string;
133
+ title: string;
134
+ description: string;
135
+ slugs: {
136
+ short: string;
137
+ long: string;
138
+ };
139
+ isOpen: boolean;
140
+ isPublished: boolean;
141
+ jobDescription: {
142
+ requiredExperience: string;
143
+ locationMode: string;
144
+ location: string;
145
+ datePosted: string;
146
+ skills: string[];
147
+ tags: string[];
148
+ jdMarkdown: string;
149
+ employmentType: string;
150
+ employmentTypeOther?: string;
151
+ salary: string;
152
+ };
153
+ questions: {
154
+ id: string;
155
+ type: PositionQuestionType;
156
+ order: number;
157
+ title: string;
158
+ description?: string;
159
+ isRequired: boolean;
160
+ textConfig?: {
161
+ type: TextQuestionType;
162
+ minCharacters?: number;
163
+ maxCharacters?: number;
164
+ validationFailErrorMessage?: string;
165
+ };
166
+ mcqConfig?: {
167
+ options: string[];
168
+ type: McqQuestionType;
169
+ };
170
+ numberConfig?: {
171
+ minValue?: number;
172
+ maxValue?: number;
173
+ validationFailErrorMessage?: string;
174
+ };
175
+ isDeleted: boolean;
176
+ }[];
177
+ };
178
+ type TEditPositionResponse = IResponse<{
179
+ positionId: string;
180
+ } | null>;
181
+ type TDeletePositionResponse = IResponse<{
182
+ positionId: string;
183
+ } | null>;
184
+ type TDuplicatePositionResponse = IResponse<{
185
+ positionId: string;
186
+ } | null>;
187
+ type TCreateListRequestBody = {
188
+ title: string;
189
+ description: string;
190
+ };
191
+ type TCreateListResponse = IResponse<{
192
+ listId: string;
193
+ } | null>;
194
+ type TDeleteListResponse = IResponse<{
195
+ listId: string;
196
+ } | null>;
197
+ type TEditListRequestBody = {
198
+ title: string;
199
+ description: string;
200
+ };
201
+ type TEditListResponse = IResponse<{
202
+ listId: string;
203
+ } | null>;
204
+ type TReorderListsRequestBody = {
205
+ listIds: string[];
206
+ };
207
+ type TReorderListsResponse = IResponse<null>;
208
+ type TGetPositionListsResponseData = {
209
+ id: string;
210
+ order: number;
211
+ title: string;
212
+ description: string;
213
+ type: PositionListType;
214
+ viewConfig: ListViewConfig;
215
+ createdAt: string;
216
+ updatedAt: string;
217
+ positionId: string;
218
+ applicationCount: number;
219
+ }[];
220
+ type TGetPositionListsResponse = IResponse<TGetPositionListsResponseData | null>;
221
+ type TDeepProfileApplicationsRequestBody = {
222
+ listId: string;
223
+ applicationIds?: string[];
224
+ lastApplicationSubmittedAt?: string;
225
+ };
226
+ type TDeepProfileApplicationsResponse = IResponse<{
227
+ deepProfilesCount: number;
228
+ scrapedProfilesCount: number;
229
+ } | null>;
230
+ type TCreateAIQueryMessageRequestBody = {
231
+ sourceListId?: string;
232
+ aiQueryId?: string;
233
+ message: string;
234
+ };
235
+ type TCreateAIQueryMessageResponse = IResponse<{
236
+ aiQueryId: string;
237
+ chatHistory: {
238
+ content: string;
239
+ role: AIQueryRole;
240
+ createdAt: string;
241
+ }[];
242
+ status?: ProcessStatus;
243
+ } | null>;
244
+ }
245
+ export interface IPositionDetailsForCandidate {
246
+ _id: string;
247
+ title: string;
248
+ description: string;
249
+ slugs: {
250
+ short: string;
251
+ long: string;
252
+ };
253
+ isOpen: boolean;
254
+ isPublished: boolean;
255
+ organization: {
256
+ name: string;
257
+ logoUrl: string | null;
258
+ about: string;
259
+ urls: {
260
+ website: string;
261
+ others: string[];
262
+ };
263
+ };
264
+ jobDescription: {
265
+ requiredExperience: string;
266
+ locationMode: LocationMode;
267
+ location: string;
268
+ datePosted: string;
269
+ skills: string[];
270
+ tags: string[];
271
+ jdMarkdown: string;
272
+ employmentType: EmploymentType;
273
+ employmentTypeOther?: string;
274
+ salary: string;
275
+ };
276
+ }
277
+ export declare namespace CandidatePositionsAPITypes {
278
+ type TGetPositionBySlugResponse = IResponse<IPositionDetailsForCandidate | null>;
279
+ type TGetPositionApplicationStatusResponse = IResponse<null>;
280
+ type TGetPositionApplicationQuestionsResponse = IResponse<Omit<IPosition['questions'][number], 'isDeleted'>[] | null>;
281
+ type TSubmitPositionApplicationRequestBody = {
282
+ questionsAndAnswers: {
283
+ questionId: string;
284
+ answer: {
285
+ text?: string;
286
+ mcq?: string[];
287
+ number?: number;
288
+ };
289
+ questionUpdatedAtEpochMS: number;
290
+ }[];
291
+ };
292
+ type TSubmitPositionApplicationResponse = IResponse<null>;
293
+ }
294
+ //# sourceMappingURL=positions.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"positions.types.d.ts","sourceRoot":"","sources":["../../src/positions/positions.types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brivioio/api-server-types",
3
- "version": "4.0.0",
3
+ "version": "5.0.0",
4
4
  "description": "TypeScript type definitions for Brivio API Server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",