@thejob/schema 1.0.31 → 1.0.33
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/cjs/ai/ai.types.d.ts +138 -142
- package/dist/cjs/ai/ai.types.d.ts.map +1 -1
- package/dist/cjs/interfaces.index.d.ts +905 -281
- package/dist/cjs/interfaces.index.d.ts.map +1 -1
- package/dist/cjs/job/job.schema.d.ts +4 -6
- package/dist/cjs/job/job.schema.d.ts.map +1 -1
- package/dist/cjs/job/job.schema.js +18 -1
- package/dist/cjs/job/utils.d.ts +83 -3
- package/dist/cjs/job/utils.d.ts.map +1 -1
- package/dist/cjs/job-application/job-application.schema.d.ts +4 -5
- package/dist/cjs/job-application/job-application.schema.d.ts.map +1 -1
- package/dist/cjs/job-role-template/job-role-template.schema.d.ts +0 -3
- package/dist/cjs/job-role-template/job-role-template.schema.d.ts.map +1 -1
- package/dist/cjs/question/choice-question.schema.js +1 -1
- package/dist/cjs/question/input-question.schema.d.ts +2 -2
- package/dist/cjs/question/input-question.schema.d.ts.map +1 -1
- package/dist/cjs/question/input-question.schema.js +1 -1
- package/dist/cjs/resume/resume.schema.d.ts.map +1 -1
- package/dist/esm/ai/ai.types.d.ts +138 -142
- package/dist/esm/ai/ai.types.d.ts.map +1 -1
- package/dist/esm/interfaces.index.d.ts +905 -281
- package/dist/esm/interfaces.index.d.ts.map +1 -1
- package/dist/esm/job/job.schema.d.ts +4 -6
- package/dist/esm/job/job.schema.d.ts.map +1 -1
- package/dist/esm/job/job.schema.js +18 -1
- package/dist/esm/job/utils.d.ts +83 -3
- package/dist/esm/job/utils.d.ts.map +1 -1
- package/dist/esm/job-application/job-application.schema.d.ts +4 -5
- package/dist/esm/job-application/job-application.schema.d.ts.map +1 -1
- package/dist/esm/job-application/job-application.schema.js +1 -1
- package/dist/esm/job-role-template/job-role-template.schema.d.ts +0 -3
- package/dist/esm/job-role-template/job-role-template.schema.d.ts.map +1 -1
- package/dist/esm/question/choice-question.schema.js +1 -1
- package/dist/esm/question/input-question.schema.d.ts +2 -2
- package/dist/esm/question/input-question.schema.d.ts.map +1 -1
- package/dist/esm/question/input-question.schema.js +1 -1
- package/dist/esm/resume/resume.schema.d.ts.map +1 -1
- package/package.json +10 -3
|
@@ -1,10 +1,640 @@
|
|
|
1
|
+
export interface IiJobInfo {
|
|
2
|
+
hoursPerWeek?: string | undefined;
|
|
3
|
+
headline?: string | undefined;
|
|
4
|
+
locations?: string[] | undefined;
|
|
5
|
+
educationLevel?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").EducationLevel[] | undefined;
|
|
6
|
+
description: string;
|
|
7
|
+
employmentType?: string | undefined;
|
|
8
|
+
workMode?: string | undefined;
|
|
9
|
+
skills?: string[] | undefined;
|
|
10
|
+
}
|
|
11
|
+
export interface IiCompanyInfo {
|
|
12
|
+
name: string;
|
|
13
|
+
about?: string | undefined;
|
|
14
|
+
founded?: string | undefined;
|
|
15
|
+
categories?: string | undefined;
|
|
16
|
+
employeeCount?: string | undefined;
|
|
17
|
+
equalOpportunityEmployer?: boolean | undefined;
|
|
18
|
+
perksAndBenefits?: string[] | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface IiGeneralInfo {
|
|
21
|
+
name: {
|
|
22
|
+
first: string;
|
|
23
|
+
last: string;
|
|
24
|
+
};
|
|
25
|
+
email: string;
|
|
26
|
+
mobile?: string | undefined;
|
|
27
|
+
headline?: string | undefined;
|
|
28
|
+
location?: string | undefined;
|
|
29
|
+
}
|
|
30
|
+
export interface IiTSocialAccount {
|
|
31
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").SocialAccount;
|
|
32
|
+
url: string;
|
|
33
|
+
}
|
|
34
|
+
export interface IiWorkExperience {
|
|
35
|
+
designation: string;
|
|
36
|
+
company: string;
|
|
37
|
+
startDate: string;
|
|
38
|
+
endDate?: string | undefined;
|
|
39
|
+
isCurrentJob: boolean;
|
|
40
|
+
location: string;
|
|
41
|
+
isRemote: boolean;
|
|
42
|
+
description?: string | undefined;
|
|
43
|
+
}
|
|
44
|
+
export interface IiEducation {
|
|
45
|
+
institute: string;
|
|
46
|
+
course: string;
|
|
47
|
+
fieldOfStudy?: string | undefined;
|
|
48
|
+
startDate: string;
|
|
49
|
+
endDate?: string | undefined;
|
|
50
|
+
location: string;
|
|
51
|
+
isPursuing?: boolean | undefined;
|
|
52
|
+
isDistanceLearning?: boolean | undefined;
|
|
53
|
+
description?: string | undefined;
|
|
54
|
+
}
|
|
55
|
+
export interface IiSkill {
|
|
56
|
+
name: string;
|
|
57
|
+
proficiency?: string | undefined;
|
|
58
|
+
lastUsed?: string | undefined;
|
|
59
|
+
}
|
|
60
|
+
export interface IiProject {
|
|
61
|
+
name: string;
|
|
62
|
+
description: string;
|
|
63
|
+
startDate: string;
|
|
64
|
+
endDate?: string | undefined;
|
|
65
|
+
isOngoing?: boolean | undefined;
|
|
66
|
+
link?: string | undefined;
|
|
67
|
+
}
|
|
68
|
+
export interface IiCertification {
|
|
69
|
+
name: string;
|
|
70
|
+
description?: string | undefined;
|
|
71
|
+
authority: string;
|
|
72
|
+
startDate: string;
|
|
73
|
+
endDate?: string | undefined;
|
|
74
|
+
isOngoing?: boolean | undefined;
|
|
75
|
+
}
|
|
76
|
+
export interface IiInterest {
|
|
77
|
+
name: string;
|
|
78
|
+
category?: string | undefined;
|
|
79
|
+
description?: string | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface IiLanguage {
|
|
82
|
+
name: string;
|
|
83
|
+
proficiency: string;
|
|
84
|
+
description?: string | undefined;
|
|
85
|
+
}
|
|
86
|
+
export interface IiAdditionalInfo {
|
|
87
|
+
title: string;
|
|
88
|
+
description: string;
|
|
89
|
+
}
|
|
90
|
+
export interface IiReference {
|
|
91
|
+
name: string;
|
|
92
|
+
designation: string;
|
|
93
|
+
company: string;
|
|
94
|
+
email: string;
|
|
95
|
+
mobile: string;
|
|
96
|
+
profileUrl?: string | undefined;
|
|
97
|
+
workedDirectly: boolean;
|
|
98
|
+
}
|
|
99
|
+
export interface IiUserInfo {
|
|
100
|
+
name: string;
|
|
101
|
+
email: string;
|
|
102
|
+
experienceLevel: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel;
|
|
103
|
+
mobile?: string | undefined;
|
|
104
|
+
headline?: string | undefined;
|
|
105
|
+
location?: string | undefined;
|
|
106
|
+
socialAccounts?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiTSocialAccount[] | undefined;
|
|
107
|
+
workExperience?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiWorkExperience[] | undefined;
|
|
108
|
+
education?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiEducation[] | undefined;
|
|
109
|
+
skills?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiSkill[] | undefined;
|
|
110
|
+
projects?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiProject[] | undefined;
|
|
111
|
+
certifications?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiCertification[] | undefined;
|
|
112
|
+
interests?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiInterest[] | undefined;
|
|
113
|
+
languages?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiLanguage[] | undefined;
|
|
114
|
+
additionalInfo?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiAdditionalInfo[] | undefined;
|
|
115
|
+
references?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiReference[] | undefined;
|
|
116
|
+
}
|
|
117
|
+
export interface IiPromptResume {
|
|
118
|
+
userInfo: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiUserInfo;
|
|
119
|
+
jobInfo?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiJobInfo | undefined;
|
|
120
|
+
companyInfo?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiCompanyInfo | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface IiPromptJobDescription {
|
|
123
|
+
companyInfo: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiCompanyInfo;
|
|
124
|
+
jobInfo: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiJobInfo;
|
|
125
|
+
}
|
|
126
|
+
export interface IiPromptCoverLetter {
|
|
127
|
+
userInfo: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiUserInfo;
|
|
128
|
+
jobInfo?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiJobInfo | undefined;
|
|
129
|
+
companyInfo?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/ai/ai.types").AiCompanyInfo | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface IiPromptOutput {
|
|
132
|
+
instruction?: string | undefined;
|
|
133
|
+
prompt: string;
|
|
134
|
+
}
|
|
135
|
+
export interface IiPromptJobApplicationSummary {
|
|
136
|
+
job: Partial<{
|
|
137
|
+
externalApplyLink?: string | undefined;
|
|
138
|
+
isOwner?: boolean | undefined;
|
|
139
|
+
updatedBy?: string | undefined;
|
|
140
|
+
updatedAt?: number | undefined;
|
|
141
|
+
skills?: ({
|
|
142
|
+
logo?: string | undefined;
|
|
143
|
+
id: string;
|
|
144
|
+
name: string;
|
|
145
|
+
} | {
|
|
146
|
+
value: "others" | (string | undefined)[];
|
|
147
|
+
otherValue: string | string[];
|
|
148
|
+
} | undefined)[] | undefined;
|
|
149
|
+
bookmarks?: {
|
|
150
|
+
createdAt: string;
|
|
151
|
+
userId: string;
|
|
152
|
+
}[] | undefined;
|
|
153
|
+
applicants?: {
|
|
154
|
+
createdAt: string;
|
|
155
|
+
userId: string;
|
|
156
|
+
}[] | undefined;
|
|
157
|
+
applicantCount?: number | undefined;
|
|
158
|
+
externalApplicationLinkClickCount?: number | undefined;
|
|
159
|
+
experienceLevel?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined;
|
|
160
|
+
contactEmail?: string | undefined;
|
|
161
|
+
workingHoursPerWeek?: number | undefined;
|
|
162
|
+
tags?: any[] | undefined;
|
|
163
|
+
questionnaire?: ({
|
|
164
|
+
label?: string | undefined;
|
|
165
|
+
isNew?: boolean | undefined;
|
|
166
|
+
isOptional?: boolean | undefined;
|
|
167
|
+
readonly?: boolean | undefined;
|
|
168
|
+
preferredAnswer?: string | undefined;
|
|
169
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Input;
|
|
170
|
+
default: boolean;
|
|
171
|
+
title: string;
|
|
172
|
+
} | {
|
|
173
|
+
label?: string | undefined;
|
|
174
|
+
isNew?: boolean | undefined;
|
|
175
|
+
isOptional?: boolean | undefined;
|
|
176
|
+
readonly?: boolean | undefined;
|
|
177
|
+
preferredAnswer?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
178
|
+
optionsFrom?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.EducationLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.ExperienceLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Skill | undefined;
|
|
179
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Choice;
|
|
180
|
+
default: boolean;
|
|
181
|
+
title: string;
|
|
182
|
+
options: (string | {
|
|
183
|
+
logo?: string | undefined;
|
|
184
|
+
id: string;
|
|
185
|
+
name: string;
|
|
186
|
+
} | {
|
|
187
|
+
value: "others" | (string | undefined)[];
|
|
188
|
+
otherValue: string | string[];
|
|
189
|
+
} | undefined)[];
|
|
190
|
+
answerChoiceType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").AnswerChoiceType | undefined>;
|
|
191
|
+
} | {
|
|
192
|
+
label?: string | undefined;
|
|
193
|
+
isNew?: boolean | undefined;
|
|
194
|
+
isOptional?: boolean | undefined;
|
|
195
|
+
readonly?: boolean | undefined;
|
|
196
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.ReadAndAcknowledge;
|
|
197
|
+
description: string;
|
|
198
|
+
default: boolean;
|
|
199
|
+
title: string;
|
|
200
|
+
preferredAnswer: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
201
|
+
})[] | undefined;
|
|
202
|
+
seoTags?: {
|
|
203
|
+
meta: {
|
|
204
|
+
description?: string | undefined;
|
|
205
|
+
keywords?: (string | undefined)[] | undefined;
|
|
206
|
+
};
|
|
207
|
+
} | undefined;
|
|
208
|
+
jdSummary?: string | undefined;
|
|
209
|
+
canCreateAlert?: boolean | undefined;
|
|
210
|
+
canDirectApply?: boolean | undefined;
|
|
211
|
+
hasApplied?: boolean | undefined;
|
|
212
|
+
hasBookmarked?: boolean | undefined;
|
|
213
|
+
hasReported?: boolean | undefined;
|
|
214
|
+
ratePerHour?: number | undefined;
|
|
215
|
+
isPromoted?: boolean | undefined;
|
|
216
|
+
salaryRange?: {
|
|
217
|
+
min?: number | undefined;
|
|
218
|
+
max?: number | undefined;
|
|
219
|
+
currency: string;
|
|
220
|
+
compensationType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").CompensationType | undefined>;
|
|
221
|
+
isNegotiable: boolean;
|
|
222
|
+
} | undefined;
|
|
223
|
+
reports?: {
|
|
224
|
+
createdAt: string;
|
|
225
|
+
userId: string;
|
|
226
|
+
}[] | undefined;
|
|
227
|
+
headline: string;
|
|
228
|
+
slug: string;
|
|
229
|
+
applicationReceivePreference: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ApplicationReceivePreference | undefined>;
|
|
230
|
+
id: string;
|
|
231
|
+
shortId: string;
|
|
232
|
+
locations: {
|
|
233
|
+
state?: string | undefined;
|
|
234
|
+
stateCode?: string | undefined;
|
|
235
|
+
address: string;
|
|
236
|
+
country: string;
|
|
237
|
+
countryCode: string;
|
|
238
|
+
city: string;
|
|
239
|
+
latLong: {
|
|
240
|
+
country?: (number | undefined)[] | undefined;
|
|
241
|
+
state?: number[] | undefined;
|
|
242
|
+
city?: number[] | undefined;
|
|
243
|
+
};
|
|
244
|
+
}[];
|
|
245
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job/job.constant").JobStatus | undefined>;
|
|
246
|
+
description: string;
|
|
247
|
+
createdBy: string;
|
|
248
|
+
createdAt: number;
|
|
249
|
+
company: NonNullable<{
|
|
250
|
+
value: "others" | (string | undefined)[];
|
|
251
|
+
otherValue: string | string[];
|
|
252
|
+
} | Pick<{
|
|
253
|
+
headline?: string | undefined;
|
|
254
|
+
employeeCount?: string | undefined;
|
|
255
|
+
yearFounded?: string | undefined;
|
|
256
|
+
locations?: {
|
|
257
|
+
coverImage?: string | undefined;
|
|
258
|
+
name: string;
|
|
259
|
+
isHeadquarters: boolean;
|
|
260
|
+
contact: {
|
|
261
|
+
email?: string | undefined;
|
|
262
|
+
phone?: string | undefined;
|
|
263
|
+
address: string;
|
|
264
|
+
};
|
|
265
|
+
}[] | undefined;
|
|
266
|
+
contacts?: {
|
|
267
|
+
label?: string | undefined;
|
|
268
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
269
|
+
value: string;
|
|
270
|
+
isPrimary: boolean;
|
|
271
|
+
isVerified: boolean;
|
|
272
|
+
}[] | undefined;
|
|
273
|
+
verified?: Date | undefined;
|
|
274
|
+
socialAccounts?: {
|
|
275
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").SocialAccount | undefined>;
|
|
276
|
+
isNew: boolean;
|
|
277
|
+
url: string;
|
|
278
|
+
}[] | undefined;
|
|
279
|
+
isOwner?: boolean | undefined;
|
|
280
|
+
equalOpportunityEmployer?: boolean | undefined;
|
|
281
|
+
perksAndBenefits?: {
|
|
282
|
+
category?: {
|
|
283
|
+
logo?: string | undefined;
|
|
284
|
+
id: string;
|
|
285
|
+
name: string;
|
|
286
|
+
} | {
|
|
287
|
+
value: "others" | (string | undefined)[];
|
|
288
|
+
otherValue: string | string[];
|
|
289
|
+
} | undefined;
|
|
290
|
+
name: string;
|
|
291
|
+
description: string;
|
|
292
|
+
}[] | undefined;
|
|
293
|
+
updatedBy?: string | undefined;
|
|
294
|
+
updatedAt?: number | undefined;
|
|
295
|
+
slug: string;
|
|
296
|
+
id: string;
|
|
297
|
+
shortId: string;
|
|
298
|
+
name: string;
|
|
299
|
+
about: string;
|
|
300
|
+
website: string;
|
|
301
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
302
|
+
logo: {
|
|
303
|
+
dark?: string | undefined;
|
|
304
|
+
light: string;
|
|
305
|
+
} | null;
|
|
306
|
+
categories: {
|
|
307
|
+
logo?: string | undefined;
|
|
308
|
+
id: string;
|
|
309
|
+
name: string;
|
|
310
|
+
}[];
|
|
311
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
312
|
+
createdBy: string;
|
|
313
|
+
createdAt: number;
|
|
314
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
315
|
+
designation: NonNullable<{
|
|
316
|
+
logo?: string | undefined;
|
|
317
|
+
id: string;
|
|
318
|
+
name: string;
|
|
319
|
+
} | {
|
|
320
|
+
value: "others" | (string | undefined)[];
|
|
321
|
+
otherValue: string | string[];
|
|
322
|
+
} | undefined>;
|
|
323
|
+
employmentType: string;
|
|
324
|
+
workMode: string;
|
|
325
|
+
descriptionMarkdown: string;
|
|
326
|
+
descriptionHTML: string;
|
|
327
|
+
educationLevel: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").EducationLevel | undefined)[];
|
|
328
|
+
termsAccepted: NonNullable<boolean | undefined>;
|
|
329
|
+
validity: {
|
|
330
|
+
startDate: string;
|
|
331
|
+
endDate: string;
|
|
332
|
+
isActive: boolean;
|
|
333
|
+
};
|
|
334
|
+
}>;
|
|
335
|
+
application: {
|
|
336
|
+
updatedBy?: string | undefined;
|
|
337
|
+
updatedAt?: number | undefined;
|
|
338
|
+
questionnaire?: ({
|
|
339
|
+
label?: string | undefined;
|
|
340
|
+
isNew?: boolean | undefined;
|
|
341
|
+
isOptional?: boolean | undefined;
|
|
342
|
+
readonly?: boolean | undefined;
|
|
343
|
+
preferredAnswer?: string | undefined;
|
|
344
|
+
answers?: string | undefined;
|
|
345
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Input;
|
|
346
|
+
default: boolean;
|
|
347
|
+
title: string;
|
|
348
|
+
} | {
|
|
349
|
+
label?: string | undefined;
|
|
350
|
+
isNew?: boolean | undefined;
|
|
351
|
+
isOptional?: boolean | undefined;
|
|
352
|
+
readonly?: boolean | undefined;
|
|
353
|
+
preferredAnswer?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
354
|
+
answers?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
355
|
+
optionsFrom?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.EducationLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.ExperienceLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Skill | undefined;
|
|
356
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Choice;
|
|
357
|
+
default: boolean;
|
|
358
|
+
title: string;
|
|
359
|
+
options: (string | {
|
|
360
|
+
logo?: string | undefined;
|
|
361
|
+
id: string;
|
|
362
|
+
name: string;
|
|
363
|
+
} | {
|
|
364
|
+
value: "others" | (string | undefined)[];
|
|
365
|
+
otherValue: string | string[];
|
|
366
|
+
} | undefined)[];
|
|
367
|
+
answerChoiceType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").AnswerChoiceType | undefined>;
|
|
368
|
+
} | {
|
|
369
|
+
label?: string | undefined;
|
|
370
|
+
isNew?: boolean | undefined;
|
|
371
|
+
isOptional?: boolean | undefined;
|
|
372
|
+
readonly?: boolean | undefined;
|
|
373
|
+
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.ReadAndAcknowledge;
|
|
374
|
+
description: string;
|
|
375
|
+
default: boolean;
|
|
376
|
+
title: string;
|
|
377
|
+
preferredAnswer: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
378
|
+
answers: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
379
|
+
})[] | undefined;
|
|
380
|
+
applicationSummary?: string | undefined;
|
|
381
|
+
score?: number | undefined;
|
|
382
|
+
id: string;
|
|
383
|
+
shortId: string;
|
|
384
|
+
name: {
|
|
385
|
+
first: string;
|
|
386
|
+
last: string;
|
|
387
|
+
};
|
|
388
|
+
email: string;
|
|
389
|
+
status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus;
|
|
390
|
+
createdBy: string;
|
|
391
|
+
createdAt: number;
|
|
392
|
+
userId: string;
|
|
393
|
+
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
394
|
+
emailVerified: NonNullable<boolean | undefined>;
|
|
395
|
+
mobile: {
|
|
396
|
+
number: string;
|
|
397
|
+
country: {
|
|
398
|
+
locale?: string | undefined;
|
|
399
|
+
name: string;
|
|
400
|
+
dial_code: string;
|
|
401
|
+
code: string;
|
|
402
|
+
};
|
|
403
|
+
};
|
|
404
|
+
jobId: string;
|
|
405
|
+
location: {
|
|
406
|
+
state?: string | undefined;
|
|
407
|
+
stateCode?: string | undefined;
|
|
408
|
+
address: string;
|
|
409
|
+
country: string;
|
|
410
|
+
countryCode: string;
|
|
411
|
+
city: string;
|
|
412
|
+
latLong: {
|
|
413
|
+
country?: (number | undefined)[] | undefined;
|
|
414
|
+
state?: number[] | undefined;
|
|
415
|
+
city?: number[] | undefined;
|
|
416
|
+
};
|
|
417
|
+
};
|
|
418
|
+
resume: {
|
|
419
|
+
markdown: string;
|
|
420
|
+
markdownStyling: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeMarkdownStyle;
|
|
421
|
+
};
|
|
422
|
+
history: {
|
|
423
|
+
message?: string | undefined;
|
|
424
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus | undefined>;
|
|
425
|
+
updatedBy: string;
|
|
426
|
+
updatedAt: Date;
|
|
427
|
+
}[];
|
|
428
|
+
recentWork: {
|
|
429
|
+
description?: string | undefined;
|
|
430
|
+
company: NonNullable<{
|
|
431
|
+
value: "others" | (string | undefined)[];
|
|
432
|
+
otherValue: string | string[];
|
|
433
|
+
} | Pick<{
|
|
434
|
+
headline?: string | undefined;
|
|
435
|
+
employeeCount?: string | undefined;
|
|
436
|
+
yearFounded?: string | undefined;
|
|
437
|
+
locations?: {
|
|
438
|
+
coverImage?: string | undefined;
|
|
439
|
+
name: string;
|
|
440
|
+
isHeadquarters: boolean;
|
|
441
|
+
contact: {
|
|
442
|
+
email?: string | undefined;
|
|
443
|
+
phone?: string | undefined;
|
|
444
|
+
address: string;
|
|
445
|
+
};
|
|
446
|
+
}[] | undefined;
|
|
447
|
+
contacts?: {
|
|
448
|
+
label?: string | undefined;
|
|
449
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
450
|
+
value: string;
|
|
451
|
+
isPrimary: boolean;
|
|
452
|
+
isVerified: boolean;
|
|
453
|
+
}[] | undefined;
|
|
454
|
+
verified?: Date | undefined;
|
|
455
|
+
socialAccounts?: {
|
|
456
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").SocialAccount | undefined>;
|
|
457
|
+
isNew: boolean;
|
|
458
|
+
url: string;
|
|
459
|
+
}[] | undefined;
|
|
460
|
+
isOwner?: boolean | undefined;
|
|
461
|
+
equalOpportunityEmployer?: boolean | undefined;
|
|
462
|
+
perksAndBenefits?: {
|
|
463
|
+
category?: {
|
|
464
|
+
logo?: string | undefined;
|
|
465
|
+
id: string;
|
|
466
|
+
name: string;
|
|
467
|
+
} | {
|
|
468
|
+
value: "others" | (string | undefined)[];
|
|
469
|
+
otherValue: string | string[];
|
|
470
|
+
} | undefined;
|
|
471
|
+
name: string;
|
|
472
|
+
description: string;
|
|
473
|
+
}[] | undefined;
|
|
474
|
+
updatedBy?: string | undefined;
|
|
475
|
+
updatedAt?: number | undefined;
|
|
476
|
+
slug: string;
|
|
477
|
+
id: string;
|
|
478
|
+
shortId: string;
|
|
479
|
+
name: string;
|
|
480
|
+
about: string;
|
|
481
|
+
website: string;
|
|
482
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
483
|
+
logo: {
|
|
484
|
+
dark?: string | undefined;
|
|
485
|
+
light: string;
|
|
486
|
+
} | null;
|
|
487
|
+
categories: {
|
|
488
|
+
logo?: string | undefined;
|
|
489
|
+
id: string;
|
|
490
|
+
name: string;
|
|
491
|
+
}[];
|
|
492
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
493
|
+
createdBy: string;
|
|
494
|
+
createdAt: number;
|
|
495
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
496
|
+
designation: NonNullable<{
|
|
497
|
+
logo?: string | undefined;
|
|
498
|
+
id: string;
|
|
499
|
+
name: string;
|
|
500
|
+
} | {
|
|
501
|
+
value: "others" | (string | undefined)[];
|
|
502
|
+
otherValue: string | string[];
|
|
503
|
+
} | undefined>;
|
|
504
|
+
isRemote: boolean;
|
|
505
|
+
duration: {
|
|
506
|
+
startDate: string;
|
|
507
|
+
endDate: string;
|
|
508
|
+
isActive: boolean;
|
|
509
|
+
};
|
|
510
|
+
location: {
|
|
511
|
+
state?: string | undefined;
|
|
512
|
+
stateCode?: string | undefined;
|
|
513
|
+
address: string;
|
|
514
|
+
country: string;
|
|
515
|
+
countryCode: string;
|
|
516
|
+
city: string;
|
|
517
|
+
latLong: {
|
|
518
|
+
country?: (number | undefined)[] | undefined;
|
|
519
|
+
state?: number[] | undefined;
|
|
520
|
+
city?: number[] | undefined;
|
|
521
|
+
};
|
|
522
|
+
};
|
|
523
|
+
};
|
|
524
|
+
recentEducation: {
|
|
525
|
+
description?: string | undefined;
|
|
526
|
+
duration: {
|
|
527
|
+
startDate: string;
|
|
528
|
+
endDate: string;
|
|
529
|
+
isActive: boolean;
|
|
530
|
+
};
|
|
531
|
+
location: {
|
|
532
|
+
state?: string | undefined;
|
|
533
|
+
stateCode?: string | undefined;
|
|
534
|
+
address: string;
|
|
535
|
+
country: string;
|
|
536
|
+
countryCode: string;
|
|
537
|
+
city: string;
|
|
538
|
+
latLong: {
|
|
539
|
+
country?: (number | undefined)[] | undefined;
|
|
540
|
+
state?: number[] | undefined;
|
|
541
|
+
city?: number[] | undefined;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
institute: NonNullable<{
|
|
545
|
+
value: "others" | (string | undefined)[];
|
|
546
|
+
otherValue: string | string[];
|
|
547
|
+
} | Pick<{
|
|
548
|
+
headline?: string | undefined;
|
|
549
|
+
employeeCount?: string | undefined;
|
|
550
|
+
yearFounded?: string | undefined;
|
|
551
|
+
locations?: {
|
|
552
|
+
coverImage?: string | undefined;
|
|
553
|
+
name: string;
|
|
554
|
+
isHeadquarters: boolean;
|
|
555
|
+
contact: {
|
|
556
|
+
email?: string | undefined;
|
|
557
|
+
phone?: string | undefined;
|
|
558
|
+
address: string;
|
|
559
|
+
};
|
|
560
|
+
}[] | undefined;
|
|
561
|
+
contacts?: {
|
|
562
|
+
label?: string | undefined;
|
|
563
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
564
|
+
value: string;
|
|
565
|
+
isPrimary: boolean;
|
|
566
|
+
isVerified: boolean;
|
|
567
|
+
}[] | undefined;
|
|
568
|
+
verified?: Date | undefined;
|
|
569
|
+
socialAccounts?: {
|
|
570
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").SocialAccount | undefined>;
|
|
571
|
+
isNew: boolean;
|
|
572
|
+
url: string;
|
|
573
|
+
}[] | undefined;
|
|
574
|
+
isOwner?: boolean | undefined;
|
|
575
|
+
equalOpportunityEmployer?: boolean | undefined;
|
|
576
|
+
perksAndBenefits?: {
|
|
577
|
+
category?: {
|
|
578
|
+
logo?: string | undefined;
|
|
579
|
+
id: string;
|
|
580
|
+
name: string;
|
|
581
|
+
} | {
|
|
582
|
+
value: "others" | (string | undefined)[];
|
|
583
|
+
otherValue: string | string[];
|
|
584
|
+
} | undefined;
|
|
585
|
+
name: string;
|
|
586
|
+
description: string;
|
|
587
|
+
}[] | undefined;
|
|
588
|
+
updatedBy?: string | undefined;
|
|
589
|
+
updatedAt?: number | undefined;
|
|
590
|
+
slug: string;
|
|
591
|
+
id: string;
|
|
592
|
+
shortId: string;
|
|
593
|
+
name: string;
|
|
594
|
+
about: string;
|
|
595
|
+
website: string;
|
|
596
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
597
|
+
logo: {
|
|
598
|
+
dark?: string | undefined;
|
|
599
|
+
light: string;
|
|
600
|
+
} | null;
|
|
601
|
+
categories: {
|
|
602
|
+
logo?: string | undefined;
|
|
603
|
+
id: string;
|
|
604
|
+
name: string;
|
|
605
|
+
}[];
|
|
606
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
607
|
+
createdBy: string;
|
|
608
|
+
createdAt: number;
|
|
609
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
610
|
+
course: NonNullable<{
|
|
611
|
+
logo?: string | undefined;
|
|
612
|
+
id: string;
|
|
613
|
+
name: string;
|
|
614
|
+
} | {
|
|
615
|
+
value: "others" | (string | undefined)[];
|
|
616
|
+
otherValue: string | string[];
|
|
617
|
+
} | undefined>;
|
|
618
|
+
fieldOfStudy: NonNullable<NonNullable<{
|
|
619
|
+
logo?: string | undefined;
|
|
620
|
+
id: string;
|
|
621
|
+
name: string;
|
|
622
|
+
} | {
|
|
623
|
+
value: "others" | (string | undefined)[];
|
|
624
|
+
otherValue: string | string[];
|
|
625
|
+
} | undefined>>;
|
|
626
|
+
isDistanceLearning: boolean;
|
|
627
|
+
studyType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").StudyType | undefined>;
|
|
628
|
+
};
|
|
629
|
+
};
|
|
630
|
+
}
|
|
1
631
|
export interface ICategorySchema {
|
|
2
632
|
name: string;
|
|
3
633
|
}
|
|
4
634
|
export interface INameIdLogoSchema {
|
|
5
635
|
logo?: string | undefined;
|
|
6
|
-
name: string;
|
|
7
636
|
id: string;
|
|
637
|
+
name: string;
|
|
8
638
|
}
|
|
9
639
|
export interface IOtherValueSchema {
|
|
10
640
|
value: "others" | (string | undefined)[];
|
|
@@ -106,19 +736,19 @@ export interface IFieldOfStudySchema {
|
|
|
106
736
|
}
|
|
107
737
|
export interface IGroupSchema {
|
|
108
738
|
logo?: string | undefined;
|
|
109
|
-
banner?: string | undefined;
|
|
110
|
-
followersCount?: number | undefined;
|
|
111
739
|
seoTags?: {
|
|
112
740
|
meta: {
|
|
113
741
|
description?: string | undefined;
|
|
114
742
|
keywords?: (string | undefined)[] | undefined;
|
|
115
743
|
};
|
|
116
744
|
} | undefined;
|
|
117
|
-
|
|
745
|
+
banner?: string | undefined;
|
|
746
|
+
followersCount?: number | undefined;
|
|
747
|
+
slug: string;
|
|
118
748
|
id: string;
|
|
119
749
|
shortId: string;
|
|
750
|
+
name: string;
|
|
120
751
|
description: string;
|
|
121
|
-
slug: string;
|
|
122
752
|
filterQuery: {
|
|
123
753
|
jobs?: string | undefined;
|
|
124
754
|
courses?: string | undefined;
|
|
@@ -126,20 +756,14 @@ export interface IGroupSchema {
|
|
|
126
756
|
};
|
|
127
757
|
}
|
|
128
758
|
export interface IJobSchema {
|
|
129
|
-
updatedBy?: string | undefined;
|
|
130
|
-
updatedAt?: number | undefined;
|
|
131
|
-
seoTags?: {
|
|
132
|
-
meta: {
|
|
133
|
-
description?: string | undefined;
|
|
134
|
-
keywords?: (string | undefined)[] | undefined;
|
|
135
|
-
};
|
|
136
|
-
} | undefined;
|
|
137
759
|
externalApplyLink?: string | undefined;
|
|
138
760
|
isOwner?: boolean | undefined;
|
|
761
|
+
updatedBy?: string | undefined;
|
|
762
|
+
updatedAt?: number | undefined;
|
|
139
763
|
skills?: ({
|
|
140
764
|
logo?: string | undefined;
|
|
141
|
-
name: string;
|
|
142
765
|
id: string;
|
|
766
|
+
name: string;
|
|
143
767
|
} | {
|
|
144
768
|
value: "others" | (string | undefined)[];
|
|
145
769
|
otherValue: string | string[];
|
|
@@ -164,7 +788,6 @@ export interface IJobSchema {
|
|
|
164
788
|
isOptional?: boolean | undefined;
|
|
165
789
|
readonly?: boolean | undefined;
|
|
166
790
|
preferredAnswer?: string | undefined;
|
|
167
|
-
answers?: string | undefined;
|
|
168
791
|
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Input;
|
|
169
792
|
default: boolean;
|
|
170
793
|
title: string;
|
|
@@ -174,15 +797,14 @@ export interface IJobSchema {
|
|
|
174
797
|
isOptional?: boolean | undefined;
|
|
175
798
|
readonly?: boolean | undefined;
|
|
176
799
|
preferredAnswer?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
177
|
-
answers?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
178
800
|
optionsFrom?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.EducationLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.ExperienceLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Skill | undefined;
|
|
179
801
|
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Choice;
|
|
180
802
|
default: boolean;
|
|
181
803
|
title: string;
|
|
182
804
|
options: (string | {
|
|
183
805
|
logo?: string | undefined;
|
|
184
|
-
name: string;
|
|
185
806
|
id: string;
|
|
807
|
+
name: string;
|
|
186
808
|
} | {
|
|
187
809
|
value: "others" | (string | undefined)[];
|
|
188
810
|
otherValue: string | string[];
|
|
@@ -198,8 +820,13 @@ export interface IJobSchema {
|
|
|
198
820
|
default: boolean;
|
|
199
821
|
title: string;
|
|
200
822
|
preferredAnswer: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
201
|
-
answers: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
202
823
|
})[] | undefined;
|
|
824
|
+
seoTags?: {
|
|
825
|
+
meta: {
|
|
826
|
+
description?: string | undefined;
|
|
827
|
+
keywords?: (string | undefined)[] | undefined;
|
|
828
|
+
};
|
|
829
|
+
} | undefined;
|
|
203
830
|
jdSummary?: string | undefined;
|
|
204
831
|
canCreateAlert?: boolean | undefined;
|
|
205
832
|
canDirectApply?: boolean | undefined;
|
|
@@ -219,15 +846,11 @@ export interface IJobSchema {
|
|
|
219
846
|
createdAt: string;
|
|
220
847
|
userId: string;
|
|
221
848
|
}[] | undefined;
|
|
222
|
-
id: string;
|
|
223
|
-
termsAccepted: NonNullable<boolean | undefined>;
|
|
224
|
-
shortId: string;
|
|
225
|
-
createdBy: string;
|
|
226
|
-
createdAt: number;
|
|
227
|
-
description: string;
|
|
228
|
-
slug: string;
|
|
229
849
|
headline: string;
|
|
850
|
+
slug: string;
|
|
230
851
|
applicationReceivePreference: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ApplicationReceivePreference | undefined>;
|
|
852
|
+
id: string;
|
|
853
|
+
shortId: string;
|
|
231
854
|
locations: {
|
|
232
855
|
state?: string | undefined;
|
|
233
856
|
stateCode?: string | undefined;
|
|
@@ -242,12 +865,13 @@ export interface IJobSchema {
|
|
|
242
865
|
};
|
|
243
866
|
}[];
|
|
244
867
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job/job.constant").JobStatus | undefined>;
|
|
868
|
+
description: string;
|
|
869
|
+
createdBy: string;
|
|
870
|
+
createdAt: number;
|
|
245
871
|
company: NonNullable<{
|
|
246
872
|
value: "others" | (string | undefined)[];
|
|
247
873
|
otherValue: string | string[];
|
|
248
874
|
} | Pick<{
|
|
249
|
-
updatedBy?: string | undefined;
|
|
250
|
-
updatedAt?: number | undefined;
|
|
251
875
|
headline?: string | undefined;
|
|
252
876
|
employeeCount?: string | undefined;
|
|
253
877
|
yearFounded?: string | undefined;
|
|
@@ -263,8 +887,8 @@ export interface IJobSchema {
|
|
|
263
887
|
}[] | undefined;
|
|
264
888
|
contacts?: {
|
|
265
889
|
label?: string | undefined;
|
|
266
|
-
value: string;
|
|
267
890
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
891
|
+
value: string;
|
|
268
892
|
isPrimary: boolean;
|
|
269
893
|
isVerified: boolean;
|
|
270
894
|
}[] | undefined;
|
|
@@ -279,8 +903,8 @@ export interface IJobSchema {
|
|
|
279
903
|
perksAndBenefits?: {
|
|
280
904
|
category?: {
|
|
281
905
|
logo?: string | undefined;
|
|
282
|
-
name: string;
|
|
283
906
|
id: string;
|
|
907
|
+
name: string;
|
|
284
908
|
} | {
|
|
285
909
|
value: "others" | (string | undefined)[];
|
|
286
910
|
otherValue: string | string[];
|
|
@@ -288,30 +912,32 @@ export interface IJobSchema {
|
|
|
288
912
|
name: string;
|
|
289
913
|
description: string;
|
|
290
914
|
}[] | undefined;
|
|
291
|
-
|
|
915
|
+
updatedBy?: string | undefined;
|
|
916
|
+
updatedAt?: number | undefined;
|
|
917
|
+
slug: string;
|
|
292
918
|
id: string;
|
|
919
|
+
shortId: string;
|
|
920
|
+
name: string;
|
|
921
|
+
about: string;
|
|
922
|
+
website: string;
|
|
923
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
293
924
|
logo: {
|
|
294
925
|
dark?: string | undefined;
|
|
295
926
|
light: string;
|
|
296
927
|
} | null;
|
|
297
|
-
shortId: string;
|
|
298
|
-
createdBy: string;
|
|
299
|
-
createdAt: number;
|
|
300
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
301
|
-
slug: string;
|
|
302
|
-
about: string;
|
|
303
|
-
website: string;
|
|
304
928
|
categories: {
|
|
305
929
|
logo?: string | undefined;
|
|
306
|
-
name: string;
|
|
307
930
|
id: string;
|
|
931
|
+
name: string;
|
|
308
932
|
}[];
|
|
309
933
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
310
|
-
|
|
934
|
+
createdBy: string;
|
|
935
|
+
createdAt: number;
|
|
936
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
311
937
|
designation: NonNullable<{
|
|
312
938
|
logo?: string | undefined;
|
|
313
|
-
name: string;
|
|
314
939
|
id: string;
|
|
940
|
+
name: string;
|
|
315
941
|
} | {
|
|
316
942
|
value: "others" | (string | undefined)[];
|
|
317
943
|
otherValue: string | string[];
|
|
@@ -321,6 +947,7 @@ export interface IJobSchema {
|
|
|
321
947
|
descriptionMarkdown: string;
|
|
322
948
|
descriptionHTML: string;
|
|
323
949
|
educationLevel: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").EducationLevel | undefined)[];
|
|
950
|
+
termsAccepted: NonNullable<boolean | undefined>;
|
|
324
951
|
validity: {
|
|
325
952
|
startDate: string;
|
|
326
953
|
endDate: string;
|
|
@@ -362,8 +989,8 @@ export interface IobRoleTemplate {
|
|
|
362
989
|
title: string;
|
|
363
990
|
options: (string | {
|
|
364
991
|
logo?: string | undefined;
|
|
365
|
-
name: string;
|
|
366
992
|
id: string;
|
|
993
|
+
name: string;
|
|
367
994
|
} | {
|
|
368
995
|
value: "others" | (string | undefined)[];
|
|
369
996
|
otherValue: string | string[];
|
|
@@ -375,7 +1002,6 @@ export interface IobRoleTemplate {
|
|
|
375
1002
|
export interface IJobApplicationSchema {
|
|
376
1003
|
updatedBy?: string | undefined;
|
|
377
1004
|
updatedAt?: number | undefined;
|
|
378
|
-
score?: number | undefined;
|
|
379
1005
|
questionnaire?: ({
|
|
380
1006
|
label?: string | undefined;
|
|
381
1007
|
isNew?: boolean | undefined;
|
|
@@ -399,8 +1025,8 @@ export interface IJobApplicationSchema {
|
|
|
399
1025
|
title: string;
|
|
400
1026
|
options: (string | {
|
|
401
1027
|
logo?: string | undefined;
|
|
402
|
-
name: string;
|
|
403
1028
|
id: string;
|
|
1029
|
+
name: string;
|
|
404
1030
|
} | {
|
|
405
1031
|
value: "others" | (string | undefined)[];
|
|
406
1032
|
otherValue: string | string[];
|
|
@@ -419,17 +1045,18 @@ export interface IJobApplicationSchema {
|
|
|
419
1045
|
answers: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
420
1046
|
})[] | undefined;
|
|
421
1047
|
applicationSummary?: string | undefined;
|
|
1048
|
+
score?: number | undefined;
|
|
1049
|
+
id: string;
|
|
1050
|
+
shortId: string;
|
|
422
1051
|
name: {
|
|
423
1052
|
first: string;
|
|
424
1053
|
last: string;
|
|
425
1054
|
};
|
|
426
|
-
|
|
427
|
-
|
|
1055
|
+
email: string;
|
|
1056
|
+
status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus;
|
|
428
1057
|
createdBy: string;
|
|
429
1058
|
createdAt: number;
|
|
430
1059
|
userId: string;
|
|
431
|
-
email: string;
|
|
432
|
-
status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus;
|
|
433
1060
|
experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
|
|
434
1061
|
emailVerified: NonNullable<boolean | undefined>;
|
|
435
1062
|
mobile: {
|
|
@@ -461,9 +1088,9 @@ export interface IJobApplicationSchema {
|
|
|
461
1088
|
};
|
|
462
1089
|
history: {
|
|
463
1090
|
message?: string | undefined;
|
|
1091
|
+
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus | undefined>;
|
|
464
1092
|
updatedBy: string;
|
|
465
1093
|
updatedAt: Date;
|
|
466
|
-
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus | undefined>;
|
|
467
1094
|
}[];
|
|
468
1095
|
recentWork: {
|
|
469
1096
|
description?: string | undefined;
|
|
@@ -471,8 +1098,6 @@ export interface IJobApplicationSchema {
|
|
|
471
1098
|
value: "others" | (string | undefined)[];
|
|
472
1099
|
otherValue: string | string[];
|
|
473
1100
|
} | Pick<{
|
|
474
|
-
updatedBy?: string | undefined;
|
|
475
|
-
updatedAt?: number | undefined;
|
|
476
1101
|
headline?: string | undefined;
|
|
477
1102
|
employeeCount?: string | undefined;
|
|
478
1103
|
yearFounded?: string | undefined;
|
|
@@ -488,8 +1113,8 @@ export interface IJobApplicationSchema {
|
|
|
488
1113
|
}[] | undefined;
|
|
489
1114
|
contacts?: {
|
|
490
1115
|
label?: string | undefined;
|
|
491
|
-
value: string;
|
|
492
1116
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
1117
|
+
value: string;
|
|
493
1118
|
isPrimary: boolean;
|
|
494
1119
|
isVerified: boolean;
|
|
495
1120
|
}[] | undefined;
|
|
@@ -504,8 +1129,8 @@ export interface IJobApplicationSchema {
|
|
|
504
1129
|
perksAndBenefits?: {
|
|
505
1130
|
category?: {
|
|
506
1131
|
logo?: string | undefined;
|
|
507
|
-
name: string;
|
|
508
1132
|
id: string;
|
|
1133
|
+
name: string;
|
|
509
1134
|
} | {
|
|
510
1135
|
value: "others" | (string | undefined)[];
|
|
511
1136
|
otherValue: string | string[];
|
|
@@ -513,30 +1138,32 @@ export interface IJobApplicationSchema {
|
|
|
513
1138
|
name: string;
|
|
514
1139
|
description: string;
|
|
515
1140
|
}[] | undefined;
|
|
516
|
-
|
|
1141
|
+
updatedBy?: string | undefined;
|
|
1142
|
+
updatedAt?: number | undefined;
|
|
1143
|
+
slug: string;
|
|
517
1144
|
id: string;
|
|
1145
|
+
shortId: string;
|
|
1146
|
+
name: string;
|
|
1147
|
+
about: string;
|
|
1148
|
+
website: string;
|
|
1149
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
518
1150
|
logo: {
|
|
519
1151
|
dark?: string | undefined;
|
|
520
1152
|
light: string;
|
|
521
1153
|
} | null;
|
|
522
|
-
shortId: string;
|
|
523
|
-
createdBy: string;
|
|
524
|
-
createdAt: number;
|
|
525
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
526
|
-
slug: string;
|
|
527
|
-
about: string;
|
|
528
|
-
website: string;
|
|
529
1154
|
categories: {
|
|
530
1155
|
logo?: string | undefined;
|
|
531
|
-
name: string;
|
|
532
1156
|
id: string;
|
|
1157
|
+
name: string;
|
|
533
1158
|
}[];
|
|
534
1159
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
535
|
-
|
|
1160
|
+
createdBy: string;
|
|
1161
|
+
createdAt: number;
|
|
1162
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
536
1163
|
designation: NonNullable<{
|
|
537
1164
|
logo?: string | undefined;
|
|
538
|
-
name: string;
|
|
539
1165
|
id: string;
|
|
1166
|
+
name: string;
|
|
540
1167
|
} | {
|
|
541
1168
|
value: "others" | (string | undefined)[];
|
|
542
1169
|
otherValue: string | string[];
|
|
@@ -585,8 +1212,6 @@ export interface IJobApplicationSchema {
|
|
|
585
1212
|
value: "others" | (string | undefined)[];
|
|
586
1213
|
otherValue: string | string[];
|
|
587
1214
|
} | Pick<{
|
|
588
|
-
updatedBy?: string | undefined;
|
|
589
|
-
updatedAt?: number | undefined;
|
|
590
1215
|
headline?: string | undefined;
|
|
591
1216
|
employeeCount?: string | undefined;
|
|
592
1217
|
yearFounded?: string | undefined;
|
|
@@ -602,8 +1227,8 @@ export interface IJobApplicationSchema {
|
|
|
602
1227
|
}[] | undefined;
|
|
603
1228
|
contacts?: {
|
|
604
1229
|
label?: string | undefined;
|
|
605
|
-
value: string;
|
|
606
1230
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
1231
|
+
value: string;
|
|
607
1232
|
isPrimary: boolean;
|
|
608
1233
|
isVerified: boolean;
|
|
609
1234
|
}[] | undefined;
|
|
@@ -618,8 +1243,8 @@ export interface IJobApplicationSchema {
|
|
|
618
1243
|
perksAndBenefits?: {
|
|
619
1244
|
category?: {
|
|
620
1245
|
logo?: string | undefined;
|
|
621
|
-
name: string;
|
|
622
1246
|
id: string;
|
|
1247
|
+
name: string;
|
|
623
1248
|
} | {
|
|
624
1249
|
value: "others" | (string | undefined)[];
|
|
625
1250
|
otherValue: string | string[];
|
|
@@ -627,38 +1252,40 @@ export interface IJobApplicationSchema {
|
|
|
627
1252
|
name: string;
|
|
628
1253
|
description: string;
|
|
629
1254
|
}[] | undefined;
|
|
630
|
-
|
|
1255
|
+
updatedBy?: string | undefined;
|
|
1256
|
+
updatedAt?: number | undefined;
|
|
1257
|
+
slug: string;
|
|
631
1258
|
id: string;
|
|
1259
|
+
shortId: string;
|
|
1260
|
+
name: string;
|
|
1261
|
+
about: string;
|
|
1262
|
+
website: string;
|
|
1263
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
632
1264
|
logo: {
|
|
633
1265
|
dark?: string | undefined;
|
|
634
1266
|
light: string;
|
|
635
1267
|
} | null;
|
|
636
|
-
shortId: string;
|
|
637
|
-
createdBy: string;
|
|
638
|
-
createdAt: number;
|
|
639
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
640
|
-
slug: string;
|
|
641
|
-
about: string;
|
|
642
|
-
website: string;
|
|
643
1268
|
categories: {
|
|
644
1269
|
logo?: string | undefined;
|
|
645
|
-
name: string;
|
|
646
1270
|
id: string;
|
|
1271
|
+
name: string;
|
|
647
1272
|
}[];
|
|
648
1273
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
649
|
-
|
|
1274
|
+
createdBy: string;
|
|
1275
|
+
createdAt: number;
|
|
1276
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
650
1277
|
course: NonNullable<{
|
|
651
1278
|
logo?: string | undefined;
|
|
652
|
-
name: string;
|
|
653
1279
|
id: string;
|
|
1280
|
+
name: string;
|
|
654
1281
|
} | {
|
|
655
1282
|
value: "others" | (string | undefined)[];
|
|
656
1283
|
otherValue: string | string[];
|
|
657
1284
|
} | undefined>;
|
|
658
1285
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
659
1286
|
logo?: string | undefined;
|
|
660
|
-
name: string;
|
|
661
1287
|
id: string;
|
|
1288
|
+
name: string;
|
|
662
1289
|
} | {
|
|
663
1290
|
value: "others" | (string | undefined)[];
|
|
664
1291
|
otherValue: string | string[];
|
|
@@ -670,8 +1297,8 @@ export interface IJobApplicationSchema {
|
|
|
670
1297
|
export interface IJobRoleTemplateSchema {
|
|
671
1298
|
skills?: ({
|
|
672
1299
|
logo?: string | undefined;
|
|
673
|
-
name: string;
|
|
674
1300
|
id: string;
|
|
1301
|
+
name: string;
|
|
675
1302
|
} | {
|
|
676
1303
|
value: "others" | (string | undefined)[];
|
|
677
1304
|
otherValue: string | string[];
|
|
@@ -683,7 +1310,6 @@ export interface IJobRoleTemplateSchema {
|
|
|
683
1310
|
isOptional?: boolean | undefined;
|
|
684
1311
|
readonly?: boolean | undefined;
|
|
685
1312
|
preferredAnswer?: string | undefined;
|
|
686
|
-
answers?: string | undefined;
|
|
687
1313
|
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Input;
|
|
688
1314
|
default: boolean;
|
|
689
1315
|
title: string;
|
|
@@ -693,15 +1319,14 @@ export interface IJobRoleTemplateSchema {
|
|
|
693
1319
|
isOptional?: boolean | undefined;
|
|
694
1320
|
readonly?: boolean | undefined;
|
|
695
1321
|
preferredAnswer?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
696
|
-
answers?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.schema").TMixedValue[] | undefined;
|
|
697
1322
|
optionsFrom?: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.EducationLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.ExperienceLevel | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Skill | undefined;
|
|
698
1323
|
type: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/question/question.constant").QuestionType.Choice;
|
|
699
1324
|
default: boolean;
|
|
700
1325
|
title: string;
|
|
701
1326
|
options: (string | {
|
|
702
1327
|
logo?: string | undefined;
|
|
703
|
-
name: string;
|
|
704
1328
|
id: string;
|
|
1329
|
+
name: string;
|
|
705
1330
|
} | {
|
|
706
1331
|
value: "others" | (string | undefined)[];
|
|
707
1332
|
otherValue: string | string[];
|
|
@@ -717,14 +1342,13 @@ export interface IJobRoleTemplateSchema {
|
|
|
717
1342
|
default: boolean;
|
|
718
1343
|
title: string;
|
|
719
1344
|
preferredAnswer: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
720
|
-
answers: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.Yes | import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").Common.No | undefined>;
|
|
721
1345
|
})[] | undefined;
|
|
722
|
-
description: string;
|
|
723
1346
|
headline: string;
|
|
1347
|
+
description: string;
|
|
724
1348
|
designation: NonNullable<{
|
|
725
1349
|
logo?: string | undefined;
|
|
726
|
-
name: string;
|
|
727
1350
|
id: string;
|
|
1351
|
+
name: string;
|
|
728
1352
|
} | {
|
|
729
1353
|
value: "others" | (string | undefined)[];
|
|
730
1354
|
otherValue: string | string[];
|
|
@@ -748,8 +1372,6 @@ export interface ILocationSchema {
|
|
|
748
1372
|
};
|
|
749
1373
|
}
|
|
750
1374
|
export interface IPageSchema {
|
|
751
|
-
updatedBy?: string | undefined;
|
|
752
|
-
updatedAt?: number | undefined;
|
|
753
1375
|
headline?: string | undefined;
|
|
754
1376
|
employeeCount?: string | undefined;
|
|
755
1377
|
yearFounded?: string | undefined;
|
|
@@ -765,8 +1387,8 @@ export interface IPageSchema {
|
|
|
765
1387
|
}[] | undefined;
|
|
766
1388
|
contacts?: {
|
|
767
1389
|
label?: string | undefined;
|
|
768
|
-
value: string;
|
|
769
1390
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
1391
|
+
value: string;
|
|
770
1392
|
isPrimary: boolean;
|
|
771
1393
|
isVerified: boolean;
|
|
772
1394
|
}[] | undefined;
|
|
@@ -781,8 +1403,8 @@ export interface IPageSchema {
|
|
|
781
1403
|
perksAndBenefits?: {
|
|
782
1404
|
category?: {
|
|
783
1405
|
logo?: string | undefined;
|
|
784
|
-
name: string;
|
|
785
1406
|
id: string;
|
|
1407
|
+
name: string;
|
|
786
1408
|
} | {
|
|
787
1409
|
value: "others" | (string | undefined)[];
|
|
788
1410
|
otherValue: string | string[];
|
|
@@ -790,25 +1412,27 @@ export interface IPageSchema {
|
|
|
790
1412
|
name: string;
|
|
791
1413
|
description: string;
|
|
792
1414
|
}[] | undefined;
|
|
793
|
-
|
|
1415
|
+
updatedBy?: string | undefined;
|
|
1416
|
+
updatedAt?: number | undefined;
|
|
1417
|
+
slug: string;
|
|
794
1418
|
id: string;
|
|
1419
|
+
shortId: string;
|
|
1420
|
+
name: string;
|
|
1421
|
+
about: string;
|
|
1422
|
+
website: string;
|
|
1423
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
795
1424
|
logo: {
|
|
796
1425
|
dark?: string | undefined;
|
|
797
1426
|
light: string;
|
|
798
1427
|
} | null;
|
|
799
|
-
shortId: string;
|
|
800
|
-
createdBy: string;
|
|
801
|
-
createdAt: number;
|
|
802
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
803
|
-
slug: string;
|
|
804
|
-
about: string;
|
|
805
|
-
website: string;
|
|
806
1428
|
categories: {
|
|
807
1429
|
logo?: string | undefined;
|
|
808
|
-
name: string;
|
|
809
1430
|
id: string;
|
|
1431
|
+
name: string;
|
|
810
1432
|
}[];
|
|
811
1433
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1434
|
+
createdBy: string;
|
|
1435
|
+
createdAt: number;
|
|
812
1436
|
}
|
|
813
1437
|
export interface IPaginationSchema {
|
|
814
1438
|
sortBy?: string | undefined;
|
|
@@ -840,8 +1464,8 @@ export interface IChoiceQuestionSchema {
|
|
|
840
1464
|
title: string;
|
|
841
1465
|
options: (string | {
|
|
842
1466
|
logo?: string | undefined;
|
|
843
|
-
name: string;
|
|
844
1467
|
id: string;
|
|
1468
|
+
name: string;
|
|
845
1469
|
} | {
|
|
846
1470
|
value: "others" | (string | undefined)[];
|
|
847
1471
|
otherValue: string | string[];
|
|
@@ -1111,9 +1735,9 @@ export interface IResumeSectionSchema {
|
|
|
1111
1735
|
})[];
|
|
1112
1736
|
}
|
|
1113
1737
|
export interface IResumeSchema {
|
|
1738
|
+
isOwner?: boolean | undefined;
|
|
1114
1739
|
updatedBy?: string | undefined;
|
|
1115
1740
|
updatedAt?: number | undefined;
|
|
1116
|
-
isOwner?: boolean | undefined;
|
|
1117
1741
|
user?: {
|
|
1118
1742
|
name: {
|
|
1119
1743
|
last?: string | undefined;
|
|
@@ -1121,13 +1745,13 @@ export interface IResumeSchema {
|
|
|
1121
1745
|
};
|
|
1122
1746
|
email: string;
|
|
1123
1747
|
} | undefined;
|
|
1748
|
+
slug: string;
|
|
1124
1749
|
id: string;
|
|
1125
1750
|
shortId: string;
|
|
1751
|
+
status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeStatus;
|
|
1126
1752
|
createdBy: string;
|
|
1127
1753
|
createdAt: number;
|
|
1128
1754
|
userId: string;
|
|
1129
|
-
slug: string;
|
|
1130
|
-
status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeStatus;
|
|
1131
1755
|
title: string;
|
|
1132
1756
|
markdown: string;
|
|
1133
1757
|
markdownStyling: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeMarkdownStyle;
|
|
@@ -1135,8 +1759,8 @@ export interface IResumeSchema {
|
|
|
1135
1759
|
export interface INewResumePromptSchema {
|
|
1136
1760
|
title: string;
|
|
1137
1761
|
profile: Omit<{
|
|
1138
|
-
id?: string | undefined;
|
|
1139
1762
|
headline?: string | undefined;
|
|
1763
|
+
id?: string | undefined;
|
|
1140
1764
|
emailVerified?: string | null | undefined;
|
|
1141
1765
|
image?: string | undefined;
|
|
1142
1766
|
aboutMe?: string | undefined;
|
|
@@ -1154,8 +1778,8 @@ export interface INewResumePromptSchema {
|
|
|
1154
1778
|
skills: {
|
|
1155
1779
|
skill: NonNullable<{
|
|
1156
1780
|
logo?: string | undefined;
|
|
1157
|
-
name: string;
|
|
1158
1781
|
id: string;
|
|
1782
|
+
name: string;
|
|
1159
1783
|
} | {
|
|
1160
1784
|
value: "others" | (string | undefined)[];
|
|
1161
1785
|
otherValue: string | string[];
|
|
@@ -1192,8 +1816,6 @@ export interface INewResumePromptSchema {
|
|
|
1192
1816
|
value: "others" | (string | undefined)[];
|
|
1193
1817
|
otherValue: string | string[];
|
|
1194
1818
|
} | Pick<{
|
|
1195
|
-
updatedBy?: string | undefined;
|
|
1196
|
-
updatedAt?: number | undefined;
|
|
1197
1819
|
headline?: string | undefined;
|
|
1198
1820
|
employeeCount?: string | undefined;
|
|
1199
1821
|
yearFounded?: string | undefined;
|
|
@@ -1209,8 +1831,8 @@ export interface INewResumePromptSchema {
|
|
|
1209
1831
|
}[] | undefined;
|
|
1210
1832
|
contacts?: {
|
|
1211
1833
|
label?: string | undefined;
|
|
1212
|
-
value: string;
|
|
1213
1834
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
1835
|
+
value: string;
|
|
1214
1836
|
isPrimary: boolean;
|
|
1215
1837
|
isVerified: boolean;
|
|
1216
1838
|
}[] | undefined;
|
|
@@ -1225,8 +1847,8 @@ export interface INewResumePromptSchema {
|
|
|
1225
1847
|
perksAndBenefits?: {
|
|
1226
1848
|
category?: {
|
|
1227
1849
|
logo?: string | undefined;
|
|
1228
|
-
name: string;
|
|
1229
1850
|
id: string;
|
|
1851
|
+
name: string;
|
|
1230
1852
|
} | {
|
|
1231
1853
|
value: "others" | (string | undefined)[];
|
|
1232
1854
|
otherValue: string | string[];
|
|
@@ -1234,30 +1856,32 @@ export interface INewResumePromptSchema {
|
|
|
1234
1856
|
name: string;
|
|
1235
1857
|
description: string;
|
|
1236
1858
|
}[] | undefined;
|
|
1237
|
-
|
|
1859
|
+
updatedBy?: string | undefined;
|
|
1860
|
+
updatedAt?: number | undefined;
|
|
1861
|
+
slug: string;
|
|
1238
1862
|
id: string;
|
|
1863
|
+
shortId: string;
|
|
1864
|
+
name: string;
|
|
1865
|
+
about: string;
|
|
1866
|
+
website: string;
|
|
1867
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1239
1868
|
logo: {
|
|
1240
1869
|
dark?: string | undefined;
|
|
1241
1870
|
light: string;
|
|
1242
1871
|
} | null;
|
|
1243
|
-
shortId: string;
|
|
1244
|
-
createdBy: string;
|
|
1245
|
-
createdAt: number;
|
|
1246
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1247
|
-
slug: string;
|
|
1248
|
-
about: string;
|
|
1249
|
-
website: string;
|
|
1250
1872
|
categories: {
|
|
1251
1873
|
logo?: string | undefined;
|
|
1252
|
-
name: string;
|
|
1253
1874
|
id: string;
|
|
1875
|
+
name: string;
|
|
1254
1876
|
}[];
|
|
1255
1877
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1256
|
-
|
|
1878
|
+
createdBy: string;
|
|
1879
|
+
createdAt: number;
|
|
1880
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
1257
1881
|
designation: NonNullable<{
|
|
1258
1882
|
logo?: string | undefined;
|
|
1259
|
-
name: string;
|
|
1260
1883
|
id: string;
|
|
1884
|
+
name: string;
|
|
1261
1885
|
} | {
|
|
1262
1886
|
value: "others" | (string | undefined)[];
|
|
1263
1887
|
otherValue: string | string[];
|
|
@@ -1306,8 +1930,6 @@ export interface INewResumePromptSchema {
|
|
|
1306
1930
|
value: "others" | (string | undefined)[];
|
|
1307
1931
|
otherValue: string | string[];
|
|
1308
1932
|
} | Pick<{
|
|
1309
|
-
updatedBy?: string | undefined;
|
|
1310
|
-
updatedAt?: number | undefined;
|
|
1311
1933
|
headline?: string | undefined;
|
|
1312
1934
|
employeeCount?: string | undefined;
|
|
1313
1935
|
yearFounded?: string | undefined;
|
|
@@ -1323,8 +1945,8 @@ export interface INewResumePromptSchema {
|
|
|
1323
1945
|
}[] | undefined;
|
|
1324
1946
|
contacts?: {
|
|
1325
1947
|
label?: string | undefined;
|
|
1326
|
-
value: string;
|
|
1327
1948
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
1949
|
+
value: string;
|
|
1328
1950
|
isPrimary: boolean;
|
|
1329
1951
|
isVerified: boolean;
|
|
1330
1952
|
}[] | undefined;
|
|
@@ -1339,8 +1961,8 @@ export interface INewResumePromptSchema {
|
|
|
1339
1961
|
perksAndBenefits?: {
|
|
1340
1962
|
category?: {
|
|
1341
1963
|
logo?: string | undefined;
|
|
1342
|
-
name: string;
|
|
1343
1964
|
id: string;
|
|
1965
|
+
name: string;
|
|
1344
1966
|
} | {
|
|
1345
1967
|
value: "others" | (string | undefined)[];
|
|
1346
1968
|
otherValue: string | string[];
|
|
@@ -1348,38 +1970,40 @@ export interface INewResumePromptSchema {
|
|
|
1348
1970
|
name: string;
|
|
1349
1971
|
description: string;
|
|
1350
1972
|
}[] | undefined;
|
|
1351
|
-
|
|
1973
|
+
updatedBy?: string | undefined;
|
|
1974
|
+
updatedAt?: number | undefined;
|
|
1975
|
+
slug: string;
|
|
1352
1976
|
id: string;
|
|
1977
|
+
shortId: string;
|
|
1978
|
+
name: string;
|
|
1979
|
+
about: string;
|
|
1980
|
+
website: string;
|
|
1981
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1353
1982
|
logo: {
|
|
1354
1983
|
dark?: string | undefined;
|
|
1355
1984
|
light: string;
|
|
1356
1985
|
} | null;
|
|
1357
|
-
shortId: string;
|
|
1358
|
-
createdBy: string;
|
|
1359
|
-
createdAt: number;
|
|
1360
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1361
|
-
slug: string;
|
|
1362
|
-
about: string;
|
|
1363
|
-
website: string;
|
|
1364
1986
|
categories: {
|
|
1365
1987
|
logo?: string | undefined;
|
|
1366
|
-
name: string;
|
|
1367
1988
|
id: string;
|
|
1989
|
+
name: string;
|
|
1368
1990
|
}[];
|
|
1369
1991
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1370
|
-
|
|
1992
|
+
createdBy: string;
|
|
1993
|
+
createdAt: number;
|
|
1994
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
1371
1995
|
course: NonNullable<{
|
|
1372
1996
|
logo?: string | undefined;
|
|
1373
|
-
name: string;
|
|
1374
1997
|
id: string;
|
|
1998
|
+
name: string;
|
|
1375
1999
|
} | {
|
|
1376
2000
|
value: "others" | (string | undefined)[];
|
|
1377
2001
|
otherValue: string | string[];
|
|
1378
2002
|
} | undefined>;
|
|
1379
2003
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
1380
2004
|
logo?: string | undefined;
|
|
1381
|
-
name: string;
|
|
1382
2005
|
id: string;
|
|
2006
|
+
name: string;
|
|
1383
2007
|
} | {
|
|
1384
2008
|
value: "others" | (string | undefined)[];
|
|
1385
2009
|
otherValue: string | string[];
|
|
@@ -1410,24 +2034,24 @@ export interface INewResumePromptSchema {
|
|
|
1410
2034
|
}[];
|
|
1411
2035
|
interests: {
|
|
1412
2036
|
logo?: string | undefined;
|
|
1413
|
-
name: string;
|
|
1414
2037
|
id: string;
|
|
2038
|
+
name: string;
|
|
1415
2039
|
}[];
|
|
1416
2040
|
languages: {
|
|
1417
2041
|
isNew: boolean;
|
|
1418
2042
|
proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
|
|
1419
2043
|
language: NonNullable<{
|
|
1420
2044
|
logo?: string | undefined;
|
|
1421
|
-
name: string;
|
|
1422
2045
|
id: string;
|
|
2046
|
+
name: string;
|
|
1423
2047
|
} | {
|
|
1424
2048
|
value: "others" | (string | undefined)[];
|
|
1425
2049
|
otherValue: string | string[];
|
|
1426
2050
|
} | undefined>;
|
|
1427
2051
|
}[];
|
|
1428
2052
|
additionalInfo: {
|
|
1429
|
-
description: string;
|
|
1430
2053
|
isNew: boolean;
|
|
2054
|
+
description: string;
|
|
1431
2055
|
title: string;
|
|
1432
2056
|
}[];
|
|
1433
2057
|
roles: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").UserRole | undefined)[];
|
|
@@ -1440,9 +2064,9 @@ export interface ISkillSchema {
|
|
|
1440
2064
|
updatedBy?: string | undefined;
|
|
1441
2065
|
updatedAt?: number | undefined;
|
|
1442
2066
|
tags?: (string | undefined)[] | undefined;
|
|
1443
|
-
name: string;
|
|
1444
2067
|
id: string;
|
|
1445
2068
|
shortId: string;
|
|
2069
|
+
name: string;
|
|
1446
2070
|
createdBy: string;
|
|
1447
2071
|
createdAt: number;
|
|
1448
2072
|
}
|
|
@@ -1467,8 +2091,8 @@ export interface ICreateUserSchema {
|
|
|
1467
2091
|
}
|
|
1468
2092
|
export interface IUpdateUserAdditionalInfoSchema {
|
|
1469
2093
|
additionalInfo: {
|
|
1470
|
-
description: string;
|
|
1471
2094
|
isNew: boolean;
|
|
2095
|
+
description: string;
|
|
1472
2096
|
title: string;
|
|
1473
2097
|
}[];
|
|
1474
2098
|
}
|
|
@@ -1510,8 +2134,6 @@ export interface IUpdateEducationsSchema {
|
|
|
1510
2134
|
value: "others" | (string | undefined)[];
|
|
1511
2135
|
otherValue: string | string[];
|
|
1512
2136
|
} | Pick<{
|
|
1513
|
-
updatedBy?: string | undefined;
|
|
1514
|
-
updatedAt?: number | undefined;
|
|
1515
2137
|
headline?: string | undefined;
|
|
1516
2138
|
employeeCount?: string | undefined;
|
|
1517
2139
|
yearFounded?: string | undefined;
|
|
@@ -1527,8 +2149,8 @@ export interface IUpdateEducationsSchema {
|
|
|
1527
2149
|
}[] | undefined;
|
|
1528
2150
|
contacts?: {
|
|
1529
2151
|
label?: string | undefined;
|
|
1530
|
-
value: string;
|
|
1531
2152
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2153
|
+
value: string;
|
|
1532
2154
|
isPrimary: boolean;
|
|
1533
2155
|
isVerified: boolean;
|
|
1534
2156
|
}[] | undefined;
|
|
@@ -1543,8 +2165,8 @@ export interface IUpdateEducationsSchema {
|
|
|
1543
2165
|
perksAndBenefits?: {
|
|
1544
2166
|
category?: {
|
|
1545
2167
|
logo?: string | undefined;
|
|
1546
|
-
name: string;
|
|
1547
2168
|
id: string;
|
|
2169
|
+
name: string;
|
|
1548
2170
|
} | {
|
|
1549
2171
|
value: "others" | (string | undefined)[];
|
|
1550
2172
|
otherValue: string | string[];
|
|
@@ -1552,38 +2174,40 @@ export interface IUpdateEducationsSchema {
|
|
|
1552
2174
|
name: string;
|
|
1553
2175
|
description: string;
|
|
1554
2176
|
}[] | undefined;
|
|
1555
|
-
|
|
2177
|
+
updatedBy?: string | undefined;
|
|
2178
|
+
updatedAt?: number | undefined;
|
|
2179
|
+
slug: string;
|
|
1556
2180
|
id: string;
|
|
2181
|
+
shortId: string;
|
|
2182
|
+
name: string;
|
|
2183
|
+
about: string;
|
|
2184
|
+
website: string;
|
|
2185
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1557
2186
|
logo: {
|
|
1558
2187
|
dark?: string | undefined;
|
|
1559
2188
|
light: string;
|
|
1560
2189
|
} | null;
|
|
1561
|
-
shortId: string;
|
|
1562
|
-
createdBy: string;
|
|
1563
|
-
createdAt: number;
|
|
1564
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1565
|
-
slug: string;
|
|
1566
|
-
about: string;
|
|
1567
|
-
website: string;
|
|
1568
2190
|
categories: {
|
|
1569
2191
|
logo?: string | undefined;
|
|
1570
|
-
name: string;
|
|
1571
2192
|
id: string;
|
|
2193
|
+
name: string;
|
|
1572
2194
|
}[];
|
|
1573
2195
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1574
|
-
|
|
2196
|
+
createdBy: string;
|
|
2197
|
+
createdAt: number;
|
|
2198
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
1575
2199
|
course: NonNullable<{
|
|
1576
2200
|
logo?: string | undefined;
|
|
1577
|
-
name: string;
|
|
1578
2201
|
id: string;
|
|
2202
|
+
name: string;
|
|
1579
2203
|
} | {
|
|
1580
2204
|
value: "others" | (string | undefined)[];
|
|
1581
2205
|
otherValue: string | string[];
|
|
1582
2206
|
} | undefined>;
|
|
1583
2207
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
1584
2208
|
logo?: string | undefined;
|
|
1585
|
-
name: string;
|
|
1586
2209
|
id: string;
|
|
2210
|
+
name: string;
|
|
1587
2211
|
} | {
|
|
1588
2212
|
value: "others" | (string | undefined)[];
|
|
1589
2213
|
otherValue: string | string[];
|
|
@@ -1595,8 +2219,8 @@ export interface IUpdateEducationsSchema {
|
|
|
1595
2219
|
export interface IUpdateInterestsSchema {
|
|
1596
2220
|
interests: {
|
|
1597
2221
|
logo?: string | undefined;
|
|
1598
|
-
name: string;
|
|
1599
2222
|
id: string;
|
|
2223
|
+
name: string;
|
|
1600
2224
|
}[];
|
|
1601
2225
|
}
|
|
1602
2226
|
export interface IUpdateLanguagesSchema {
|
|
@@ -1605,8 +2229,8 @@ export interface IUpdateLanguagesSchema {
|
|
|
1605
2229
|
proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
|
|
1606
2230
|
language: NonNullable<{
|
|
1607
2231
|
logo?: string | undefined;
|
|
1608
|
-
name: string;
|
|
1609
2232
|
id: string;
|
|
2233
|
+
name: string;
|
|
1610
2234
|
} | {
|
|
1611
2235
|
value: "others" | (string | undefined)[];
|
|
1612
2236
|
otherValue: string | string[];
|
|
@@ -1629,8 +2253,8 @@ export interface IUpdateUserSkillsSchema {
|
|
|
1629
2253
|
skills: {
|
|
1630
2254
|
skill: NonNullable<{
|
|
1631
2255
|
logo?: string | undefined;
|
|
1632
|
-
name: string;
|
|
1633
2256
|
id: string;
|
|
2257
|
+
name: string;
|
|
1634
2258
|
} | {
|
|
1635
2259
|
value: "others" | (string | undefined)[];
|
|
1636
2260
|
otherValue: string | string[];
|
|
@@ -1647,8 +2271,8 @@ export interface IUpdateSocialAccountsSchema {
|
|
|
1647
2271
|
}[];
|
|
1648
2272
|
}
|
|
1649
2273
|
export interface IUpdateUserSchema {
|
|
1650
|
-
description?: string | undefined;
|
|
1651
2274
|
headline?: string | undefined;
|
|
2275
|
+
description?: string | undefined;
|
|
1652
2276
|
emailVerified?: string | null | undefined;
|
|
1653
2277
|
name: {
|
|
1654
2278
|
last?: string | undefined;
|
|
@@ -1663,8 +2287,6 @@ export interface IUpdateWorkExperiencesSchema {
|
|
|
1663
2287
|
value: "others" | (string | undefined)[];
|
|
1664
2288
|
otherValue: string | string[];
|
|
1665
2289
|
} | Pick<{
|
|
1666
|
-
updatedBy?: string | undefined;
|
|
1667
|
-
updatedAt?: number | undefined;
|
|
1668
2290
|
headline?: string | undefined;
|
|
1669
2291
|
employeeCount?: string | undefined;
|
|
1670
2292
|
yearFounded?: string | undefined;
|
|
@@ -1680,8 +2302,8 @@ export interface IUpdateWorkExperiencesSchema {
|
|
|
1680
2302
|
}[] | undefined;
|
|
1681
2303
|
contacts?: {
|
|
1682
2304
|
label?: string | undefined;
|
|
1683
|
-
value: string;
|
|
1684
2305
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2306
|
+
value: string;
|
|
1685
2307
|
isPrimary: boolean;
|
|
1686
2308
|
isVerified: boolean;
|
|
1687
2309
|
}[] | undefined;
|
|
@@ -1696,8 +2318,8 @@ export interface IUpdateWorkExperiencesSchema {
|
|
|
1696
2318
|
perksAndBenefits?: {
|
|
1697
2319
|
category?: {
|
|
1698
2320
|
logo?: string | undefined;
|
|
1699
|
-
name: string;
|
|
1700
2321
|
id: string;
|
|
2322
|
+
name: string;
|
|
1701
2323
|
} | {
|
|
1702
2324
|
value: "others" | (string | undefined)[];
|
|
1703
2325
|
otherValue: string | string[];
|
|
@@ -1705,30 +2327,32 @@ export interface IUpdateWorkExperiencesSchema {
|
|
|
1705
2327
|
name: string;
|
|
1706
2328
|
description: string;
|
|
1707
2329
|
}[] | undefined;
|
|
1708
|
-
|
|
2330
|
+
updatedBy?: string | undefined;
|
|
2331
|
+
updatedAt?: number | undefined;
|
|
2332
|
+
slug: string;
|
|
1709
2333
|
id: string;
|
|
2334
|
+
shortId: string;
|
|
2335
|
+
name: string;
|
|
2336
|
+
about: string;
|
|
2337
|
+
website: string;
|
|
2338
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1710
2339
|
logo: {
|
|
1711
2340
|
dark?: string | undefined;
|
|
1712
2341
|
light: string;
|
|
1713
2342
|
} | null;
|
|
1714
|
-
shortId: string;
|
|
1715
|
-
createdBy: string;
|
|
1716
|
-
createdAt: number;
|
|
1717
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1718
|
-
slug: string;
|
|
1719
|
-
about: string;
|
|
1720
|
-
website: string;
|
|
1721
2343
|
categories: {
|
|
1722
2344
|
logo?: string | undefined;
|
|
1723
|
-
name: string;
|
|
1724
2345
|
id: string;
|
|
2346
|
+
name: string;
|
|
1725
2347
|
}[];
|
|
1726
2348
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1727
|
-
|
|
2349
|
+
createdBy: string;
|
|
2350
|
+
createdAt: number;
|
|
2351
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
1728
2352
|
designation: NonNullable<{
|
|
1729
2353
|
logo?: string | undefined;
|
|
1730
|
-
name: string;
|
|
1731
2354
|
id: string;
|
|
2355
|
+
name: string;
|
|
1732
2356
|
} | {
|
|
1733
2357
|
value: "others" | (string | undefined)[];
|
|
1734
2358
|
otherValue: string | string[];
|
|
@@ -1812,8 +2436,8 @@ export interface IUserCompletenessSchema {
|
|
|
1812
2436
|
};
|
|
1813
2437
|
}
|
|
1814
2438
|
export interface IUserSchema {
|
|
1815
|
-
id?: string | undefined;
|
|
1816
2439
|
headline?: string | undefined;
|
|
2440
|
+
id?: string | undefined;
|
|
1817
2441
|
emailVerified?: string | null | undefined;
|
|
1818
2442
|
image?: string | undefined;
|
|
1819
2443
|
aboutMe?: string | undefined;
|
|
@@ -1831,8 +2455,8 @@ export interface IUserSchema {
|
|
|
1831
2455
|
skills: {
|
|
1832
2456
|
skill: NonNullable<{
|
|
1833
2457
|
logo?: string | undefined;
|
|
1834
|
-
name: string;
|
|
1835
2458
|
id: string;
|
|
2459
|
+
name: string;
|
|
1836
2460
|
} | {
|
|
1837
2461
|
value: "others" | (string | undefined)[];
|
|
1838
2462
|
otherValue: string | string[];
|
|
@@ -1869,8 +2493,6 @@ export interface IUserSchema {
|
|
|
1869
2493
|
value: "others" | (string | undefined)[];
|
|
1870
2494
|
otherValue: string | string[];
|
|
1871
2495
|
} | Pick<{
|
|
1872
|
-
updatedBy?: string | undefined;
|
|
1873
|
-
updatedAt?: number | undefined;
|
|
1874
2496
|
headline?: string | undefined;
|
|
1875
2497
|
employeeCount?: string | undefined;
|
|
1876
2498
|
yearFounded?: string | undefined;
|
|
@@ -1886,8 +2508,8 @@ export interface IUserSchema {
|
|
|
1886
2508
|
}[] | undefined;
|
|
1887
2509
|
contacts?: {
|
|
1888
2510
|
label?: string | undefined;
|
|
1889
|
-
value: string;
|
|
1890
2511
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2512
|
+
value: string;
|
|
1891
2513
|
isPrimary: boolean;
|
|
1892
2514
|
isVerified: boolean;
|
|
1893
2515
|
}[] | undefined;
|
|
@@ -1902,8 +2524,8 @@ export interface IUserSchema {
|
|
|
1902
2524
|
perksAndBenefits?: {
|
|
1903
2525
|
category?: {
|
|
1904
2526
|
logo?: string | undefined;
|
|
1905
|
-
name: string;
|
|
1906
2527
|
id: string;
|
|
2528
|
+
name: string;
|
|
1907
2529
|
} | {
|
|
1908
2530
|
value: "others" | (string | undefined)[];
|
|
1909
2531
|
otherValue: string | string[];
|
|
@@ -1911,30 +2533,32 @@ export interface IUserSchema {
|
|
|
1911
2533
|
name: string;
|
|
1912
2534
|
description: string;
|
|
1913
2535
|
}[] | undefined;
|
|
1914
|
-
|
|
2536
|
+
updatedBy?: string | undefined;
|
|
2537
|
+
updatedAt?: number | undefined;
|
|
2538
|
+
slug: string;
|
|
1915
2539
|
id: string;
|
|
2540
|
+
shortId: string;
|
|
2541
|
+
name: string;
|
|
2542
|
+
about: string;
|
|
2543
|
+
website: string;
|
|
2544
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1916
2545
|
logo: {
|
|
1917
2546
|
dark?: string | undefined;
|
|
1918
2547
|
light: string;
|
|
1919
2548
|
} | null;
|
|
1920
|
-
shortId: string;
|
|
1921
|
-
createdBy: string;
|
|
1922
|
-
createdAt: number;
|
|
1923
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
1924
|
-
slug: string;
|
|
1925
|
-
about: string;
|
|
1926
|
-
website: string;
|
|
1927
2549
|
categories: {
|
|
1928
2550
|
logo?: string | undefined;
|
|
1929
|
-
name: string;
|
|
1930
2551
|
id: string;
|
|
2552
|
+
name: string;
|
|
1931
2553
|
}[];
|
|
1932
2554
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
1933
|
-
|
|
2555
|
+
createdBy: string;
|
|
2556
|
+
createdAt: number;
|
|
2557
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
1934
2558
|
designation: NonNullable<{
|
|
1935
2559
|
logo?: string | undefined;
|
|
1936
|
-
name: string;
|
|
1937
2560
|
id: string;
|
|
2561
|
+
name: string;
|
|
1938
2562
|
} | {
|
|
1939
2563
|
value: "others" | (string | undefined)[];
|
|
1940
2564
|
otherValue: string | string[];
|
|
@@ -1983,8 +2607,6 @@ export interface IUserSchema {
|
|
|
1983
2607
|
value: "others" | (string | undefined)[];
|
|
1984
2608
|
otherValue: string | string[];
|
|
1985
2609
|
} | Pick<{
|
|
1986
|
-
updatedBy?: string | undefined;
|
|
1987
|
-
updatedAt?: number | undefined;
|
|
1988
2610
|
headline?: string | undefined;
|
|
1989
2611
|
employeeCount?: string | undefined;
|
|
1990
2612
|
yearFounded?: string | undefined;
|
|
@@ -2000,8 +2622,8 @@ export interface IUserSchema {
|
|
|
2000
2622
|
}[] | undefined;
|
|
2001
2623
|
contacts?: {
|
|
2002
2624
|
label?: string | undefined;
|
|
2003
|
-
value: string;
|
|
2004
2625
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2626
|
+
value: string;
|
|
2005
2627
|
isPrimary: boolean;
|
|
2006
2628
|
isVerified: boolean;
|
|
2007
2629
|
}[] | undefined;
|
|
@@ -2016,8 +2638,8 @@ export interface IUserSchema {
|
|
|
2016
2638
|
perksAndBenefits?: {
|
|
2017
2639
|
category?: {
|
|
2018
2640
|
logo?: string | undefined;
|
|
2019
|
-
name: string;
|
|
2020
2641
|
id: string;
|
|
2642
|
+
name: string;
|
|
2021
2643
|
} | {
|
|
2022
2644
|
value: "others" | (string | undefined)[];
|
|
2023
2645
|
otherValue: string | string[];
|
|
@@ -2025,38 +2647,40 @@ export interface IUserSchema {
|
|
|
2025
2647
|
name: string;
|
|
2026
2648
|
description: string;
|
|
2027
2649
|
}[] | undefined;
|
|
2028
|
-
|
|
2650
|
+
updatedBy?: string | undefined;
|
|
2651
|
+
updatedAt?: number | undefined;
|
|
2652
|
+
slug: string;
|
|
2029
2653
|
id: string;
|
|
2654
|
+
shortId: string;
|
|
2655
|
+
name: string;
|
|
2656
|
+
about: string;
|
|
2657
|
+
website: string;
|
|
2658
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2030
2659
|
logo: {
|
|
2031
2660
|
dark?: string | undefined;
|
|
2032
2661
|
light: string;
|
|
2033
2662
|
} | null;
|
|
2034
|
-
shortId: string;
|
|
2035
|
-
createdBy: string;
|
|
2036
|
-
createdAt: number;
|
|
2037
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2038
|
-
slug: string;
|
|
2039
|
-
about: string;
|
|
2040
|
-
website: string;
|
|
2041
2663
|
categories: {
|
|
2042
2664
|
logo?: string | undefined;
|
|
2043
|
-
name: string;
|
|
2044
2665
|
id: string;
|
|
2666
|
+
name: string;
|
|
2045
2667
|
}[];
|
|
2046
2668
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
2047
|
-
|
|
2669
|
+
createdBy: string;
|
|
2670
|
+
createdAt: number;
|
|
2671
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
2048
2672
|
course: NonNullable<{
|
|
2049
2673
|
logo?: string | undefined;
|
|
2050
|
-
name: string;
|
|
2051
2674
|
id: string;
|
|
2675
|
+
name: string;
|
|
2052
2676
|
} | {
|
|
2053
2677
|
value: "others" | (string | undefined)[];
|
|
2054
2678
|
otherValue: string | string[];
|
|
2055
2679
|
} | undefined>;
|
|
2056
2680
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
2057
2681
|
logo?: string | undefined;
|
|
2058
|
-
name: string;
|
|
2059
2682
|
id: string;
|
|
2683
|
+
name: string;
|
|
2060
2684
|
} | {
|
|
2061
2685
|
value: "others" | (string | undefined)[];
|
|
2062
2686
|
otherValue: string | string[];
|
|
@@ -2087,24 +2711,24 @@ export interface IUserSchema {
|
|
|
2087
2711
|
}[];
|
|
2088
2712
|
interests: {
|
|
2089
2713
|
logo?: string | undefined;
|
|
2090
|
-
name: string;
|
|
2091
2714
|
id: string;
|
|
2715
|
+
name: string;
|
|
2092
2716
|
}[];
|
|
2093
2717
|
languages: {
|
|
2094
2718
|
isNew: boolean;
|
|
2095
2719
|
proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
|
|
2096
2720
|
language: NonNullable<{
|
|
2097
2721
|
logo?: string | undefined;
|
|
2098
|
-
name: string;
|
|
2099
2722
|
id: string;
|
|
2723
|
+
name: string;
|
|
2100
2724
|
} | {
|
|
2101
2725
|
value: "others" | (string | undefined)[];
|
|
2102
2726
|
otherValue: string | string[];
|
|
2103
2727
|
} | undefined>;
|
|
2104
2728
|
}[];
|
|
2105
2729
|
additionalInfo: {
|
|
2106
|
-
description: string;
|
|
2107
2730
|
isNew: boolean;
|
|
2731
|
+
description: string;
|
|
2108
2732
|
title: string;
|
|
2109
2733
|
}[];
|
|
2110
2734
|
roles: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").UserRole | undefined)[];
|
|
@@ -2145,8 +2769,6 @@ export interface IserProfileOverview {
|
|
|
2145
2769
|
value: "others" | (string | undefined)[];
|
|
2146
2770
|
otherValue: string | string[];
|
|
2147
2771
|
} | Pick<{
|
|
2148
|
-
updatedBy?: string | undefined;
|
|
2149
|
-
updatedAt?: number | undefined;
|
|
2150
2772
|
headline?: string | undefined;
|
|
2151
2773
|
employeeCount?: string | undefined;
|
|
2152
2774
|
yearFounded?: string | undefined;
|
|
@@ -2162,8 +2784,8 @@ export interface IserProfileOverview {
|
|
|
2162
2784
|
}[] | undefined;
|
|
2163
2785
|
contacts?: {
|
|
2164
2786
|
label?: string | undefined;
|
|
2165
|
-
value: string;
|
|
2166
2787
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2788
|
+
value: string;
|
|
2167
2789
|
isPrimary: boolean;
|
|
2168
2790
|
isVerified: boolean;
|
|
2169
2791
|
}[] | undefined;
|
|
@@ -2178,8 +2800,8 @@ export interface IserProfileOverview {
|
|
|
2178
2800
|
perksAndBenefits?: {
|
|
2179
2801
|
category?: {
|
|
2180
2802
|
logo?: string | undefined;
|
|
2181
|
-
name: string;
|
|
2182
2803
|
id: string;
|
|
2804
|
+
name: string;
|
|
2183
2805
|
} | {
|
|
2184
2806
|
value: "others" | (string | undefined)[];
|
|
2185
2807
|
otherValue: string | string[];
|
|
@@ -2187,30 +2809,32 @@ export interface IserProfileOverview {
|
|
|
2187
2809
|
name: string;
|
|
2188
2810
|
description: string;
|
|
2189
2811
|
}[] | undefined;
|
|
2190
|
-
|
|
2812
|
+
updatedBy?: string | undefined;
|
|
2813
|
+
updatedAt?: number | undefined;
|
|
2814
|
+
slug: string;
|
|
2191
2815
|
id: string;
|
|
2816
|
+
shortId: string;
|
|
2817
|
+
name: string;
|
|
2818
|
+
about: string;
|
|
2819
|
+
website: string;
|
|
2820
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2192
2821
|
logo: {
|
|
2193
2822
|
dark?: string | undefined;
|
|
2194
2823
|
light: string;
|
|
2195
2824
|
} | null;
|
|
2196
|
-
shortId: string;
|
|
2197
|
-
createdBy: string;
|
|
2198
|
-
createdAt: number;
|
|
2199
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2200
|
-
slug: string;
|
|
2201
|
-
about: string;
|
|
2202
|
-
website: string;
|
|
2203
2825
|
categories: {
|
|
2204
2826
|
logo?: string | undefined;
|
|
2205
|
-
name: string;
|
|
2206
2827
|
id: string;
|
|
2828
|
+
name: string;
|
|
2207
2829
|
}[];
|
|
2208
2830
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
2209
|
-
|
|
2831
|
+
createdBy: string;
|
|
2832
|
+
createdAt: number;
|
|
2833
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
2210
2834
|
designation: NonNullable<{
|
|
2211
2835
|
logo?: string | undefined;
|
|
2212
|
-
name: string;
|
|
2213
2836
|
id: string;
|
|
2837
|
+
name: string;
|
|
2214
2838
|
} | {
|
|
2215
2839
|
value: "others" | (string | undefined)[];
|
|
2216
2840
|
otherValue: string | string[];
|
|
@@ -2259,8 +2883,6 @@ export interface IserProfileOverview {
|
|
|
2259
2883
|
value: "others" | (string | undefined)[];
|
|
2260
2884
|
otherValue: string | string[];
|
|
2261
2885
|
} | Pick<{
|
|
2262
|
-
updatedBy?: string | undefined;
|
|
2263
|
-
updatedAt?: number | undefined;
|
|
2264
2886
|
headline?: string | undefined;
|
|
2265
2887
|
employeeCount?: string | undefined;
|
|
2266
2888
|
yearFounded?: string | undefined;
|
|
@@ -2276,8 +2898,8 @@ export interface IserProfileOverview {
|
|
|
2276
2898
|
}[] | undefined;
|
|
2277
2899
|
contacts?: {
|
|
2278
2900
|
label?: string | undefined;
|
|
2279
|
-
value: string;
|
|
2280
2901
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
2902
|
+
value: string;
|
|
2281
2903
|
isPrimary: boolean;
|
|
2282
2904
|
isVerified: boolean;
|
|
2283
2905
|
}[] | undefined;
|
|
@@ -2292,8 +2914,8 @@ export interface IserProfileOverview {
|
|
|
2292
2914
|
perksAndBenefits?: {
|
|
2293
2915
|
category?: {
|
|
2294
2916
|
logo?: string | undefined;
|
|
2295
|
-
name: string;
|
|
2296
2917
|
id: string;
|
|
2918
|
+
name: string;
|
|
2297
2919
|
} | {
|
|
2298
2920
|
value: "others" | (string | undefined)[];
|
|
2299
2921
|
otherValue: string | string[];
|
|
@@ -2301,38 +2923,40 @@ export interface IserProfileOverview {
|
|
|
2301
2923
|
name: string;
|
|
2302
2924
|
description: string;
|
|
2303
2925
|
}[] | undefined;
|
|
2304
|
-
|
|
2926
|
+
updatedBy?: string | undefined;
|
|
2927
|
+
updatedAt?: number | undefined;
|
|
2928
|
+
slug: string;
|
|
2305
2929
|
id: string;
|
|
2930
|
+
shortId: string;
|
|
2931
|
+
name: string;
|
|
2932
|
+
about: string;
|
|
2933
|
+
website: string;
|
|
2934
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2306
2935
|
logo: {
|
|
2307
2936
|
dark?: string | undefined;
|
|
2308
2937
|
light: string;
|
|
2309
2938
|
} | null;
|
|
2310
|
-
shortId: string;
|
|
2311
|
-
createdBy: string;
|
|
2312
|
-
createdAt: number;
|
|
2313
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2314
|
-
slug: string;
|
|
2315
|
-
about: string;
|
|
2316
|
-
website: string;
|
|
2317
2939
|
categories: {
|
|
2318
2940
|
logo?: string | undefined;
|
|
2319
|
-
name: string;
|
|
2320
2941
|
id: string;
|
|
2942
|
+
name: string;
|
|
2321
2943
|
}[];
|
|
2322
2944
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
2323
|
-
|
|
2945
|
+
createdBy: string;
|
|
2946
|
+
createdAt: number;
|
|
2947
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
2324
2948
|
course: NonNullable<{
|
|
2325
2949
|
logo?: string | undefined;
|
|
2326
|
-
name: string;
|
|
2327
2950
|
id: string;
|
|
2951
|
+
name: string;
|
|
2328
2952
|
} | {
|
|
2329
2953
|
value: "others" | (string | undefined)[];
|
|
2330
2954
|
otherValue: string | string[];
|
|
2331
2955
|
} | undefined>;
|
|
2332
2956
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
2333
2957
|
logo?: string | undefined;
|
|
2334
|
-
name: string;
|
|
2335
2958
|
id: string;
|
|
2959
|
+
name: string;
|
|
2336
2960
|
} | {
|
|
2337
2961
|
value: "others" | (string | undefined)[];
|
|
2338
2962
|
otherValue: string | string[];
|
|
@@ -2346,8 +2970,8 @@ export interface ICompanySchema {
|
|
|
2346
2970
|
perksAndBenefits?: {
|
|
2347
2971
|
category?: {
|
|
2348
2972
|
logo?: string | undefined;
|
|
2349
|
-
name: string;
|
|
2350
2973
|
id: string;
|
|
2974
|
+
name: string;
|
|
2351
2975
|
} | {
|
|
2352
2976
|
value: "others" | (string | undefined)[];
|
|
2353
2977
|
otherValue: string | string[];
|
|
@@ -2390,8 +3014,6 @@ export interface IEducationSchema {
|
|
|
2390
3014
|
value: "others" | (string | undefined)[];
|
|
2391
3015
|
otherValue: string | string[];
|
|
2392
3016
|
} | Pick<{
|
|
2393
|
-
updatedBy?: string | undefined;
|
|
2394
|
-
updatedAt?: number | undefined;
|
|
2395
3017
|
headline?: string | undefined;
|
|
2396
3018
|
employeeCount?: string | undefined;
|
|
2397
3019
|
yearFounded?: string | undefined;
|
|
@@ -2407,8 +3029,8 @@ export interface IEducationSchema {
|
|
|
2407
3029
|
}[] | undefined;
|
|
2408
3030
|
contacts?: {
|
|
2409
3031
|
label?: string | undefined;
|
|
2410
|
-
value: string;
|
|
2411
3032
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
3033
|
+
value: string;
|
|
2412
3034
|
isPrimary: boolean;
|
|
2413
3035
|
isVerified: boolean;
|
|
2414
3036
|
}[] | undefined;
|
|
@@ -2423,8 +3045,8 @@ export interface IEducationSchema {
|
|
|
2423
3045
|
perksAndBenefits?: {
|
|
2424
3046
|
category?: {
|
|
2425
3047
|
logo?: string | undefined;
|
|
2426
|
-
name: string;
|
|
2427
3048
|
id: string;
|
|
3049
|
+
name: string;
|
|
2428
3050
|
} | {
|
|
2429
3051
|
value: "others" | (string | undefined)[];
|
|
2430
3052
|
otherValue: string | string[];
|
|
@@ -2432,38 +3054,40 @@ export interface IEducationSchema {
|
|
|
2432
3054
|
name: string;
|
|
2433
3055
|
description: string;
|
|
2434
3056
|
}[] | undefined;
|
|
2435
|
-
|
|
3057
|
+
updatedBy?: string | undefined;
|
|
3058
|
+
updatedAt?: number | undefined;
|
|
3059
|
+
slug: string;
|
|
2436
3060
|
id: string;
|
|
3061
|
+
shortId: string;
|
|
3062
|
+
name: string;
|
|
3063
|
+
about: string;
|
|
3064
|
+
website: string;
|
|
3065
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2437
3066
|
logo: {
|
|
2438
3067
|
dark?: string | undefined;
|
|
2439
3068
|
light: string;
|
|
2440
3069
|
} | null;
|
|
2441
|
-
shortId: string;
|
|
2442
|
-
createdBy: string;
|
|
2443
|
-
createdAt: number;
|
|
2444
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2445
|
-
slug: string;
|
|
2446
|
-
about: string;
|
|
2447
|
-
website: string;
|
|
2448
3070
|
categories: {
|
|
2449
3071
|
logo?: string | undefined;
|
|
2450
|
-
name: string;
|
|
2451
3072
|
id: string;
|
|
3073
|
+
name: string;
|
|
2452
3074
|
}[];
|
|
2453
3075
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
2454
|
-
|
|
3076
|
+
createdBy: string;
|
|
3077
|
+
createdAt: number;
|
|
3078
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
2455
3079
|
course: NonNullable<{
|
|
2456
3080
|
logo?: string | undefined;
|
|
2457
|
-
name: string;
|
|
2458
3081
|
id: string;
|
|
3082
|
+
name: string;
|
|
2459
3083
|
} | {
|
|
2460
3084
|
value: "others" | (string | undefined)[];
|
|
2461
3085
|
otherValue: string | string[];
|
|
2462
3086
|
} | undefined>;
|
|
2463
3087
|
fieldOfStudy: NonNullable<NonNullable<{
|
|
2464
3088
|
logo?: string | undefined;
|
|
2465
|
-
name: string;
|
|
2466
3089
|
id: string;
|
|
3090
|
+
name: string;
|
|
2467
3091
|
} | {
|
|
2468
3092
|
value: "others" | (string | undefined)[];
|
|
2469
3093
|
otherValue: string | string[];
|
|
@@ -2472,8 +3096,8 @@ export interface IEducationSchema {
|
|
|
2472
3096
|
studyType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").StudyType | undefined>;
|
|
2473
3097
|
}
|
|
2474
3098
|
export interface IUserGeneralDetailSchema {
|
|
2475
|
-
id?: string | undefined;
|
|
2476
3099
|
headline?: string | undefined;
|
|
3100
|
+
id?: string | undefined;
|
|
2477
3101
|
emailVerified?: string | null | undefined;
|
|
2478
3102
|
image?: string | undefined;
|
|
2479
3103
|
aboutMe?: string | undefined;
|
|
@@ -2517,8 +3141,8 @@ export interface IUserProjectSchema {
|
|
|
2517
3141
|
};
|
|
2518
3142
|
}
|
|
2519
3143
|
export interface IUserAdditionalInfoSchema {
|
|
2520
|
-
description: string;
|
|
2521
3144
|
isNew: boolean;
|
|
3145
|
+
description: string;
|
|
2522
3146
|
title: string;
|
|
2523
3147
|
}
|
|
2524
3148
|
export interface IUserCertificationSchema {
|
|
@@ -2534,16 +3158,16 @@ export interface IUserCertificationSchema {
|
|
|
2534
3158
|
}
|
|
2535
3159
|
export interface IUserInterestSchema {
|
|
2536
3160
|
logo?: string | undefined;
|
|
2537
|
-
name: string;
|
|
2538
3161
|
id: string;
|
|
3162
|
+
name: string;
|
|
2539
3163
|
}
|
|
2540
3164
|
export interface IUserLanguageSchema {
|
|
2541
3165
|
isNew: boolean;
|
|
2542
3166
|
proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
|
|
2543
3167
|
language: NonNullable<{
|
|
2544
3168
|
logo?: string | undefined;
|
|
2545
|
-
name: string;
|
|
2546
3169
|
id: string;
|
|
3170
|
+
name: string;
|
|
2547
3171
|
} | {
|
|
2548
3172
|
value: "others" | (string | undefined)[];
|
|
2549
3173
|
otherValue: string | string[];
|
|
@@ -2552,8 +3176,8 @@ export interface IUserLanguageSchema {
|
|
|
2552
3176
|
export interface IUserSkillSchema {
|
|
2553
3177
|
skill: NonNullable<{
|
|
2554
3178
|
logo?: string | undefined;
|
|
2555
|
-
name: string;
|
|
2556
3179
|
id: string;
|
|
3180
|
+
name: string;
|
|
2557
3181
|
} | {
|
|
2558
3182
|
value: "others" | (string | undefined)[];
|
|
2559
3183
|
otherValue: string | string[];
|
|
@@ -2567,8 +3191,6 @@ export interface IWorkExperienceSchema {
|
|
|
2567
3191
|
value: "others" | (string | undefined)[];
|
|
2568
3192
|
otherValue: string | string[];
|
|
2569
3193
|
} | Pick<{
|
|
2570
|
-
updatedBy?: string | undefined;
|
|
2571
|
-
updatedAt?: number | undefined;
|
|
2572
3194
|
headline?: string | undefined;
|
|
2573
3195
|
employeeCount?: string | undefined;
|
|
2574
3196
|
yearFounded?: string | undefined;
|
|
@@ -2584,8 +3206,8 @@ export interface IWorkExperienceSchema {
|
|
|
2584
3206
|
}[] | undefined;
|
|
2585
3207
|
contacts?: {
|
|
2586
3208
|
label?: string | undefined;
|
|
2587
|
-
value: string;
|
|
2588
3209
|
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
|
|
3210
|
+
value: string;
|
|
2589
3211
|
isPrimary: boolean;
|
|
2590
3212
|
isVerified: boolean;
|
|
2591
3213
|
}[] | undefined;
|
|
@@ -2600,8 +3222,8 @@ export interface IWorkExperienceSchema {
|
|
|
2600
3222
|
perksAndBenefits?: {
|
|
2601
3223
|
category?: {
|
|
2602
3224
|
logo?: string | undefined;
|
|
2603
|
-
name: string;
|
|
2604
3225
|
id: string;
|
|
3226
|
+
name: string;
|
|
2605
3227
|
} | {
|
|
2606
3228
|
value: "others" | (string | undefined)[];
|
|
2607
3229
|
otherValue: string | string[];
|
|
@@ -2609,30 +3231,32 @@ export interface IWorkExperienceSchema {
|
|
|
2609
3231
|
name: string;
|
|
2610
3232
|
description: string;
|
|
2611
3233
|
}[] | undefined;
|
|
2612
|
-
|
|
3234
|
+
updatedBy?: string | undefined;
|
|
3235
|
+
updatedAt?: number | undefined;
|
|
3236
|
+
slug: string;
|
|
2613
3237
|
id: string;
|
|
3238
|
+
shortId: string;
|
|
3239
|
+
name: string;
|
|
3240
|
+
about: string;
|
|
3241
|
+
website: string;
|
|
3242
|
+
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2614
3243
|
logo: {
|
|
2615
3244
|
dark?: string | undefined;
|
|
2616
3245
|
light: string;
|
|
2617
3246
|
} | null;
|
|
2618
|
-
shortId: string;
|
|
2619
|
-
createdBy: string;
|
|
2620
|
-
createdAt: number;
|
|
2621
|
-
type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
|
|
2622
|
-
slug: string;
|
|
2623
|
-
about: string;
|
|
2624
|
-
website: string;
|
|
2625
3247
|
categories: {
|
|
2626
3248
|
logo?: string | undefined;
|
|
2627
|
-
name: string;
|
|
2628
3249
|
id: string;
|
|
3250
|
+
name: string;
|
|
2629
3251
|
}[];
|
|
2630
3252
|
status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
|
|
2631
|
-
|
|
3253
|
+
createdBy: string;
|
|
3254
|
+
createdAt: number;
|
|
3255
|
+
}, "slug" | "name" | "type" | "logo"> | undefined>;
|
|
2632
3256
|
designation: NonNullable<{
|
|
2633
3257
|
logo?: string | undefined;
|
|
2634
|
-
name: string;
|
|
2635
3258
|
id: string;
|
|
3259
|
+
name: string;
|
|
2636
3260
|
} | {
|
|
2637
3261
|
value: "others" | (string | undefined)[];
|
|
2638
3262
|
otherValue: string | string[];
|
|
@@ -2660,8 +3284,8 @@ export interface IWorkExperienceSchema {
|
|
|
2660
3284
|
export interface IPerksAndBenefitSchema {
|
|
2661
3285
|
category?: {
|
|
2662
3286
|
logo?: string | undefined;
|
|
2663
|
-
name: string;
|
|
2664
3287
|
id: string;
|
|
3288
|
+
name: string;
|
|
2665
3289
|
} | {
|
|
2666
3290
|
value: "others" | (string | undefined)[];
|
|
2667
3291
|
otherValue: string | string[];
|