@thejob/schema 1.0.32 → 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.
Files changed (28) hide show
  1. package/dist/cjs/ai/ai.types.d.ts +138 -142
  2. package/dist/cjs/ai/ai.types.d.ts.map +1 -1
  3. package/dist/cjs/interfaces.index.d.ts +911 -281
  4. package/dist/cjs/interfaces.index.d.ts.map +1 -1
  5. package/dist/cjs/job/utils.d.ts +3 -4
  6. package/dist/cjs/job/utils.d.ts.map +1 -1
  7. package/dist/cjs/job-application/job-application.schema.d.ts +4 -5
  8. package/dist/cjs/job-application/job-application.schema.d.ts.map +1 -1
  9. package/dist/cjs/question/choice-question.schema.js +1 -1
  10. package/dist/cjs/question/input-question.schema.d.ts +2 -2
  11. package/dist/cjs/question/input-question.schema.d.ts.map +1 -1
  12. package/dist/cjs/question/input-question.schema.js +1 -1
  13. package/dist/cjs/resume/resume.schema.d.ts.map +1 -1
  14. package/dist/esm/ai/ai.types.d.ts +138 -142
  15. package/dist/esm/ai/ai.types.d.ts.map +1 -1
  16. package/dist/esm/interfaces.index.d.ts +911 -281
  17. package/dist/esm/interfaces.index.d.ts.map +1 -1
  18. package/dist/esm/job/utils.d.ts +3 -4
  19. package/dist/esm/job/utils.d.ts.map +1 -1
  20. package/dist/esm/job-application/job-application.schema.d.ts +4 -5
  21. package/dist/esm/job-application/job-application.schema.d.ts.map +1 -1
  22. package/dist/esm/job-application/job-application.schema.js +1 -1
  23. package/dist/esm/question/choice-question.schema.js +1 -1
  24. package/dist/esm/question/input-question.schema.d.ts +2 -2
  25. package/dist/esm/question/input-question.schema.d.ts.map +1 -1
  26. package/dist/esm/question/input-question.schema.js +1 -1
  27. package/dist/esm/resume/resume.schema.d.ts.map +1 -1
  28. 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,40 +736,34 @@ 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
- name: string;
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
- jobs?: string | undefined;
124
- courses?: string | undefined;
125
- discussions?: string | undefined;
126
- };
127
- }
128
- 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;
753
+ jobs?: string | undefined;
754
+ courses?: string | undefined;
755
+ discussions?: string | undefined;
756
+ };
757
+ }
758
+ export interface IJobSchema {
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[];
@@ -179,8 +803,8 @@ export interface IJobSchema {
179
803
  title: string;
180
804
  options: (string | {
181
805
  logo?: string | undefined;
182
- name: string;
183
806
  id: string;
807
+ name: string;
184
808
  } | {
185
809
  value: "others" | (string | undefined)[];
186
810
  otherValue: string | string[];
@@ -197,6 +821,12 @@ export interface IJobSchema {
197
821
  title: string;
198
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>;
199
823
  })[] | undefined;
824
+ seoTags?: {
825
+ meta: {
826
+ description?: string | undefined;
827
+ keywords?: (string | undefined)[] | undefined;
828
+ };
829
+ } | undefined;
200
830
  jdSummary?: string | undefined;
201
831
  canCreateAlert?: boolean | undefined;
202
832
  canDirectApply?: boolean | undefined;
@@ -216,15 +846,11 @@ export interface IJobSchema {
216
846
  createdAt: string;
217
847
  userId: string;
218
848
  }[] | undefined;
219
- id: string;
220
- termsAccepted: NonNullable<boolean | undefined>;
221
- shortId: string;
222
- createdBy: string;
223
- createdAt: number;
224
- description: string;
225
- slug: string;
226
849
  headline: string;
850
+ slug: string;
227
851
  applicationReceivePreference: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ApplicationReceivePreference | undefined>;
852
+ id: string;
853
+ shortId: string;
228
854
  locations: {
229
855
  state?: string | undefined;
230
856
  stateCode?: string | undefined;
@@ -239,12 +865,13 @@ export interface IJobSchema {
239
865
  };
240
866
  }[];
241
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;
242
871
  company: NonNullable<{
243
872
  value: "others" | (string | undefined)[];
244
873
  otherValue: string | string[];
245
874
  } | Pick<{
246
- updatedBy?: string | undefined;
247
- updatedAt?: number | undefined;
248
875
  headline?: string | undefined;
249
876
  employeeCount?: string | undefined;
250
877
  yearFounded?: string | undefined;
@@ -260,8 +887,8 @@ export interface IJobSchema {
260
887
  }[] | undefined;
261
888
  contacts?: {
262
889
  label?: string | undefined;
263
- value: string;
264
890
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
891
+ value: string;
265
892
  isPrimary: boolean;
266
893
  isVerified: boolean;
267
894
  }[] | undefined;
@@ -276,8 +903,8 @@ export interface IJobSchema {
276
903
  perksAndBenefits?: {
277
904
  category?: {
278
905
  logo?: string | undefined;
279
- name: string;
280
906
  id: string;
907
+ name: string;
281
908
  } | {
282
909
  value: "others" | (string | undefined)[];
283
910
  otherValue: string | string[];
@@ -285,30 +912,32 @@ export interface IJobSchema {
285
912
  name: string;
286
913
  description: string;
287
914
  }[] | undefined;
288
- name: string;
915
+ updatedBy?: string | undefined;
916
+ updatedAt?: number | undefined;
917
+ slug: string;
289
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>;
290
924
  logo: {
291
925
  dark?: string | undefined;
292
926
  light: string;
293
927
  } | null;
294
- shortId: string;
295
- createdBy: string;
296
- createdAt: number;
297
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
298
- slug: string;
299
- about: string;
300
- website: string;
301
928
  categories: {
302
929
  logo?: string | undefined;
303
- name: string;
304
930
  id: string;
931
+ name: string;
305
932
  }[];
306
933
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
307
- }, "name" | "logo" | "type" | "slug"> | undefined>;
934
+ createdBy: string;
935
+ createdAt: number;
936
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
308
937
  designation: NonNullable<{
309
938
  logo?: string | undefined;
310
- name: string;
311
939
  id: string;
940
+ name: string;
312
941
  } | {
313
942
  value: "others" | (string | undefined)[];
314
943
  otherValue: string | string[];
@@ -318,6 +947,7 @@ export interface IJobSchema {
318
947
  descriptionMarkdown: string;
319
948
  descriptionHTML: string;
320
949
  educationLevel: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").EducationLevel | undefined)[];
950
+ termsAccepted: NonNullable<boolean | undefined>;
321
951
  validity: {
322
952
  startDate: string;
323
953
  endDate: string;
@@ -359,8 +989,8 @@ export interface IobRoleTemplate {
359
989
  title: string;
360
990
  options: (string | {
361
991
  logo?: string | undefined;
362
- name: string;
363
992
  id: string;
993
+ name: string;
364
994
  } | {
365
995
  value: "others" | (string | undefined)[];
366
996
  otherValue: string | string[];
@@ -372,7 +1002,6 @@ export interface IobRoleTemplate {
372
1002
  export interface IJobApplicationSchema {
373
1003
  updatedBy?: string | undefined;
374
1004
  updatedAt?: number | undefined;
375
- score?: number | undefined;
376
1005
  questionnaire?: ({
377
1006
  label?: string | undefined;
378
1007
  isNew?: boolean | undefined;
@@ -396,8 +1025,8 @@ export interface IJobApplicationSchema {
396
1025
  title: string;
397
1026
  options: (string | {
398
1027
  logo?: string | undefined;
399
- name: string;
400
1028
  id: string;
1029
+ name: string;
401
1030
  } | {
402
1031
  value: "others" | (string | undefined)[];
403
1032
  otherValue: string | string[];
@@ -416,17 +1045,18 @@ export interface IJobApplicationSchema {
416
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>;
417
1046
  })[] | undefined;
418
1047
  applicationSummary?: string | undefined;
1048
+ score?: number | undefined;
1049
+ id: string;
1050
+ shortId: string;
419
1051
  name: {
420
1052
  first: string;
421
1053
  last: string;
422
1054
  };
423
- id: string;
424
- shortId: string;
1055
+ email: string;
1056
+ status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus;
425
1057
  createdBy: string;
426
1058
  createdAt: number;
427
1059
  userId: string;
428
- email: string;
429
- status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus;
430
1060
  experienceLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ExperienceLevel | undefined>;
431
1061
  emailVerified: NonNullable<boolean | undefined>;
432
1062
  mobile: {
@@ -458,9 +1088,9 @@ export interface IJobApplicationSchema {
458
1088
  };
459
1089
  history: {
460
1090
  message?: string | undefined;
1091
+ status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus | undefined>;
461
1092
  updatedBy: string;
462
1093
  updatedAt: Date;
463
- status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/job-application/job-application.constant").JobApplicationStatus | undefined>;
464
1094
  }[];
465
1095
  recentWork: {
466
1096
  description?: string | undefined;
@@ -468,8 +1098,6 @@ export interface IJobApplicationSchema {
468
1098
  value: "others" | (string | undefined)[];
469
1099
  otherValue: string | string[];
470
1100
  } | Pick<{
471
- updatedBy?: string | undefined;
472
- updatedAt?: number | undefined;
473
1101
  headline?: string | undefined;
474
1102
  employeeCount?: string | undefined;
475
1103
  yearFounded?: string | undefined;
@@ -485,8 +1113,8 @@ export interface IJobApplicationSchema {
485
1113
  }[] | undefined;
486
1114
  contacts?: {
487
1115
  label?: string | undefined;
488
- value: string;
489
1116
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
1117
+ value: string;
490
1118
  isPrimary: boolean;
491
1119
  isVerified: boolean;
492
1120
  }[] | undefined;
@@ -501,8 +1129,8 @@ export interface IJobApplicationSchema {
501
1129
  perksAndBenefits?: {
502
1130
  category?: {
503
1131
  logo?: string | undefined;
504
- name: string;
505
1132
  id: string;
1133
+ name: string;
506
1134
  } | {
507
1135
  value: "others" | (string | undefined)[];
508
1136
  otherValue: string | string[];
@@ -510,30 +1138,32 @@ export interface IJobApplicationSchema {
510
1138
  name: string;
511
1139
  description: string;
512
1140
  }[] | undefined;
513
- name: string;
1141
+ updatedBy?: string | undefined;
1142
+ updatedAt?: number | undefined;
1143
+ slug: string;
514
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>;
515
1150
  logo: {
516
1151
  dark?: string | undefined;
517
1152
  light: string;
518
1153
  } | null;
519
- shortId: string;
520
- createdBy: string;
521
- createdAt: number;
522
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
523
- slug: string;
524
- about: string;
525
- website: string;
526
1154
  categories: {
527
1155
  logo?: string | undefined;
528
- name: string;
529
1156
  id: string;
1157
+ name: string;
530
1158
  }[];
531
1159
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
532
- }, "name" | "logo" | "type" | "slug"> | undefined>;
1160
+ createdBy: string;
1161
+ createdAt: number;
1162
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
533
1163
  designation: NonNullable<{
534
1164
  logo?: string | undefined;
535
- name: string;
536
1165
  id: string;
1166
+ name: string;
537
1167
  } | {
538
1168
  value: "others" | (string | undefined)[];
539
1169
  otherValue: string | string[];
@@ -582,8 +1212,6 @@ export interface IJobApplicationSchema {
582
1212
  value: "others" | (string | undefined)[];
583
1213
  otherValue: string | string[];
584
1214
  } | Pick<{
585
- updatedBy?: string | undefined;
586
- updatedAt?: number | undefined;
587
1215
  headline?: string | undefined;
588
1216
  employeeCount?: string | undefined;
589
1217
  yearFounded?: string | undefined;
@@ -599,8 +1227,8 @@ export interface IJobApplicationSchema {
599
1227
  }[] | undefined;
600
1228
  contacts?: {
601
1229
  label?: string | undefined;
602
- value: string;
603
1230
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
1231
+ value: string;
604
1232
  isPrimary: boolean;
605
1233
  isVerified: boolean;
606
1234
  }[] | undefined;
@@ -615,8 +1243,8 @@ export interface IJobApplicationSchema {
615
1243
  perksAndBenefits?: {
616
1244
  category?: {
617
1245
  logo?: string | undefined;
618
- name: string;
619
1246
  id: string;
1247
+ name: string;
620
1248
  } | {
621
1249
  value: "others" | (string | undefined)[];
622
1250
  otherValue: string | string[];
@@ -624,38 +1252,40 @@ export interface IJobApplicationSchema {
624
1252
  name: string;
625
1253
  description: string;
626
1254
  }[] | undefined;
627
- name: string;
1255
+ updatedBy?: string | undefined;
1256
+ updatedAt?: number | undefined;
1257
+ slug: string;
628
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>;
629
1264
  logo: {
630
1265
  dark?: string | undefined;
631
1266
  light: string;
632
1267
  } | null;
633
- shortId: string;
634
- createdBy: string;
635
- createdAt: number;
636
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
637
- slug: string;
638
- about: string;
639
- website: string;
640
1268
  categories: {
641
1269
  logo?: string | undefined;
642
- name: string;
643
1270
  id: string;
1271
+ name: string;
644
1272
  }[];
645
1273
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
646
- }, "name" | "logo" | "type" | "slug"> | undefined>;
1274
+ createdBy: string;
1275
+ createdAt: number;
1276
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
647
1277
  course: NonNullable<{
648
1278
  logo?: string | undefined;
649
- name: string;
650
1279
  id: string;
1280
+ name: string;
651
1281
  } | {
652
1282
  value: "others" | (string | undefined)[];
653
1283
  otherValue: string | string[];
654
1284
  } | undefined>;
655
1285
  fieldOfStudy: NonNullable<NonNullable<{
656
1286
  logo?: string | undefined;
657
- name: string;
658
1287
  id: string;
1288
+ name: string;
659
1289
  } | {
660
1290
  value: "others" | (string | undefined)[];
661
1291
  otherValue: string | string[];
@@ -667,8 +1297,8 @@ export interface IJobApplicationSchema {
667
1297
  export interface IJobRoleTemplateSchema {
668
1298
  skills?: ({
669
1299
  logo?: string | undefined;
670
- name: string;
671
1300
  id: string;
1301
+ name: string;
672
1302
  } | {
673
1303
  value: "others" | (string | undefined)[];
674
1304
  otherValue: string | string[];
@@ -695,8 +1325,8 @@ export interface IJobRoleTemplateSchema {
695
1325
  title: string;
696
1326
  options: (string | {
697
1327
  logo?: string | undefined;
698
- name: string;
699
1328
  id: string;
1329
+ name: string;
700
1330
  } | {
701
1331
  value: "others" | (string | undefined)[];
702
1332
  otherValue: string | string[];
@@ -713,12 +1343,12 @@ export interface IJobRoleTemplateSchema {
713
1343
  title: string;
714
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>;
715
1345
  })[] | undefined;
716
- description: string;
717
1346
  headline: string;
1347
+ description: string;
718
1348
  designation: NonNullable<{
719
1349
  logo?: string | undefined;
720
- name: string;
721
1350
  id: string;
1351
+ name: string;
722
1352
  } | {
723
1353
  value: "others" | (string | undefined)[];
724
1354
  otherValue: string | string[];
@@ -742,8 +1372,6 @@ export interface ILocationSchema {
742
1372
  };
743
1373
  }
744
1374
  export interface IPageSchema {
745
- updatedBy?: string | undefined;
746
- updatedAt?: number | undefined;
747
1375
  headline?: string | undefined;
748
1376
  employeeCount?: string | undefined;
749
1377
  yearFounded?: string | undefined;
@@ -759,8 +1387,8 @@ export interface IPageSchema {
759
1387
  }[] | undefined;
760
1388
  contacts?: {
761
1389
  label?: string | undefined;
762
- value: string;
763
1390
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
1391
+ value: string;
764
1392
  isPrimary: boolean;
765
1393
  isVerified: boolean;
766
1394
  }[] | undefined;
@@ -775,8 +1403,8 @@ export interface IPageSchema {
775
1403
  perksAndBenefits?: {
776
1404
  category?: {
777
1405
  logo?: string | undefined;
778
- name: string;
779
1406
  id: string;
1407
+ name: string;
780
1408
  } | {
781
1409
  value: "others" | (string | undefined)[];
782
1410
  otherValue: string | string[];
@@ -784,25 +1412,27 @@ export interface IPageSchema {
784
1412
  name: string;
785
1413
  description: string;
786
1414
  }[] | undefined;
787
- name: string;
1415
+ updatedBy?: string | undefined;
1416
+ updatedAt?: number | undefined;
1417
+ slug: string;
788
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>;
789
1424
  logo: {
790
1425
  dark?: string | undefined;
791
1426
  light: string;
792
1427
  } | null;
793
- shortId: string;
794
- createdBy: string;
795
- createdAt: number;
796
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
797
- slug: string;
798
- about: string;
799
- website: string;
800
1428
  categories: {
801
1429
  logo?: string | undefined;
802
- name: string;
803
1430
  id: string;
1431
+ name: string;
804
1432
  }[];
805
1433
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1434
+ createdBy: string;
1435
+ createdAt: number;
806
1436
  }
807
1437
  export interface IPaginationSchema {
808
1438
  sortBy?: string | undefined;
@@ -834,8 +1464,8 @@ export interface IChoiceQuestionSchema {
834
1464
  title: string;
835
1465
  options: (string | {
836
1466
  logo?: string | undefined;
837
- name: string;
838
1467
  id: string;
1468
+ name: string;
839
1469
  } | {
840
1470
  value: "others" | (string | undefined)[];
841
1471
  otherValue: string | string[];
@@ -1105,9 +1735,9 @@ export interface IResumeSectionSchema {
1105
1735
  })[];
1106
1736
  }
1107
1737
  export interface IResumeSchema {
1738
+ isOwner?: boolean | undefined;
1108
1739
  updatedBy?: string | undefined;
1109
1740
  updatedAt?: number | undefined;
1110
- isOwner?: boolean | undefined;
1111
1741
  user?: {
1112
1742
  name: {
1113
1743
  last?: string | undefined;
@@ -1115,13 +1745,13 @@ export interface IResumeSchema {
1115
1745
  };
1116
1746
  email: string;
1117
1747
  } | undefined;
1748
+ slug: string;
1118
1749
  id: string;
1119
1750
  shortId: string;
1751
+ status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeStatus;
1120
1752
  createdBy: string;
1121
1753
  createdAt: number;
1122
1754
  userId: string;
1123
- slug: string;
1124
- status: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeStatus;
1125
1755
  title: string;
1126
1756
  markdown: string;
1127
1757
  markdownStyling: import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/resume/resume.constant").ResumeMarkdownStyle;
@@ -1129,8 +1759,8 @@ export interface IResumeSchema {
1129
1759
  export interface INewResumePromptSchema {
1130
1760
  title: string;
1131
1761
  profile: Omit<{
1132
- id?: string | undefined;
1133
1762
  headline?: string | undefined;
1763
+ id?: string | undefined;
1134
1764
  emailVerified?: string | null | undefined;
1135
1765
  image?: string | undefined;
1136
1766
  aboutMe?: string | undefined;
@@ -1148,8 +1778,8 @@ export interface INewResumePromptSchema {
1148
1778
  skills: {
1149
1779
  skill: NonNullable<{
1150
1780
  logo?: string | undefined;
1151
- name: string;
1152
1781
  id: string;
1782
+ name: string;
1153
1783
  } | {
1154
1784
  value: "others" | (string | undefined)[];
1155
1785
  otherValue: string | string[];
@@ -1186,8 +1816,6 @@ export interface INewResumePromptSchema {
1186
1816
  value: "others" | (string | undefined)[];
1187
1817
  otherValue: string | string[];
1188
1818
  } | Pick<{
1189
- updatedBy?: string | undefined;
1190
- updatedAt?: number | undefined;
1191
1819
  headline?: string | undefined;
1192
1820
  employeeCount?: string | undefined;
1193
1821
  yearFounded?: string | undefined;
@@ -1203,8 +1831,8 @@ export interface INewResumePromptSchema {
1203
1831
  }[] | undefined;
1204
1832
  contacts?: {
1205
1833
  label?: string | undefined;
1206
- value: string;
1207
1834
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
1835
+ value: string;
1208
1836
  isPrimary: boolean;
1209
1837
  isVerified: boolean;
1210
1838
  }[] | undefined;
@@ -1219,8 +1847,8 @@ export interface INewResumePromptSchema {
1219
1847
  perksAndBenefits?: {
1220
1848
  category?: {
1221
1849
  logo?: string | undefined;
1222
- name: string;
1223
1850
  id: string;
1851
+ name: string;
1224
1852
  } | {
1225
1853
  value: "others" | (string | undefined)[];
1226
1854
  otherValue: string | string[];
@@ -1228,30 +1856,32 @@ export interface INewResumePromptSchema {
1228
1856
  name: string;
1229
1857
  description: string;
1230
1858
  }[] | undefined;
1231
- name: string;
1859
+ updatedBy?: string | undefined;
1860
+ updatedAt?: number | undefined;
1861
+ slug: string;
1232
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>;
1233
1868
  logo: {
1234
1869
  dark?: string | undefined;
1235
1870
  light: string;
1236
1871
  } | null;
1237
- shortId: string;
1238
- createdBy: string;
1239
- createdAt: number;
1240
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
1241
- slug: string;
1242
- about: string;
1243
- website: string;
1244
1872
  categories: {
1245
1873
  logo?: string | undefined;
1246
- name: string;
1247
1874
  id: string;
1875
+ name: string;
1248
1876
  }[];
1249
1877
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1250
- }, "name" | "logo" | "type" | "slug"> | undefined>;
1878
+ createdBy: string;
1879
+ createdAt: number;
1880
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
1251
1881
  designation: NonNullable<{
1252
1882
  logo?: string | undefined;
1253
- name: string;
1254
1883
  id: string;
1884
+ name: string;
1255
1885
  } | {
1256
1886
  value: "others" | (string | undefined)[];
1257
1887
  otherValue: string | string[];
@@ -1300,8 +1930,6 @@ export interface INewResumePromptSchema {
1300
1930
  value: "others" | (string | undefined)[];
1301
1931
  otherValue: string | string[];
1302
1932
  } | Pick<{
1303
- updatedBy?: string | undefined;
1304
- updatedAt?: number | undefined;
1305
1933
  headline?: string | undefined;
1306
1934
  employeeCount?: string | undefined;
1307
1935
  yearFounded?: string | undefined;
@@ -1317,8 +1945,8 @@ export interface INewResumePromptSchema {
1317
1945
  }[] | undefined;
1318
1946
  contacts?: {
1319
1947
  label?: string | undefined;
1320
- value: string;
1321
1948
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
1949
+ value: string;
1322
1950
  isPrimary: boolean;
1323
1951
  isVerified: boolean;
1324
1952
  }[] | undefined;
@@ -1333,8 +1961,8 @@ export interface INewResumePromptSchema {
1333
1961
  perksAndBenefits?: {
1334
1962
  category?: {
1335
1963
  logo?: string | undefined;
1336
- name: string;
1337
1964
  id: string;
1965
+ name: string;
1338
1966
  } | {
1339
1967
  value: "others" | (string | undefined)[];
1340
1968
  otherValue: string | string[];
@@ -1342,38 +1970,40 @@ export interface INewResumePromptSchema {
1342
1970
  name: string;
1343
1971
  description: string;
1344
1972
  }[] | undefined;
1345
- name: string;
1973
+ updatedBy?: string | undefined;
1974
+ updatedAt?: number | undefined;
1975
+ slug: string;
1346
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>;
1347
1982
  logo: {
1348
1983
  dark?: string | undefined;
1349
1984
  light: string;
1350
1985
  } | null;
1351
- shortId: string;
1352
- createdBy: string;
1353
- createdAt: number;
1354
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
1355
- slug: string;
1356
- about: string;
1357
- website: string;
1358
1986
  categories: {
1359
1987
  logo?: string | undefined;
1360
- name: string;
1361
1988
  id: string;
1989
+ name: string;
1362
1990
  }[];
1363
1991
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1364
- }, "name" | "logo" | "type" | "slug"> | undefined>;
1992
+ createdBy: string;
1993
+ createdAt: number;
1994
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
1365
1995
  course: NonNullable<{
1366
1996
  logo?: string | undefined;
1367
- name: string;
1368
1997
  id: string;
1998
+ name: string;
1369
1999
  } | {
1370
2000
  value: "others" | (string | undefined)[];
1371
2001
  otherValue: string | string[];
1372
2002
  } | undefined>;
1373
2003
  fieldOfStudy: NonNullable<NonNullable<{
1374
2004
  logo?: string | undefined;
1375
- name: string;
1376
2005
  id: string;
2006
+ name: string;
1377
2007
  } | {
1378
2008
  value: "others" | (string | undefined)[];
1379
2009
  otherValue: string | string[];
@@ -1404,24 +2034,24 @@ export interface INewResumePromptSchema {
1404
2034
  }[];
1405
2035
  interests: {
1406
2036
  logo?: string | undefined;
1407
- name: string;
1408
2037
  id: string;
2038
+ name: string;
1409
2039
  }[];
1410
2040
  languages: {
1411
2041
  isNew: boolean;
1412
2042
  proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
1413
2043
  language: NonNullable<{
1414
2044
  logo?: string | undefined;
1415
- name: string;
1416
2045
  id: string;
2046
+ name: string;
1417
2047
  } | {
1418
2048
  value: "others" | (string | undefined)[];
1419
2049
  otherValue: string | string[];
1420
2050
  } | undefined>;
1421
2051
  }[];
1422
2052
  additionalInfo: {
1423
- description: string;
1424
2053
  isNew: boolean;
2054
+ description: string;
1425
2055
  title: string;
1426
2056
  }[];
1427
2057
  roles: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").UserRole | undefined)[];
@@ -1434,9 +2064,9 @@ export interface ISkillSchema {
1434
2064
  updatedBy?: string | undefined;
1435
2065
  updatedAt?: number | undefined;
1436
2066
  tags?: (string | undefined)[] | undefined;
1437
- name: string;
1438
2067
  id: string;
1439
2068
  shortId: string;
2069
+ name: string;
1440
2070
  createdBy: string;
1441
2071
  createdAt: number;
1442
2072
  }
@@ -1461,8 +2091,8 @@ export interface ICreateUserSchema {
1461
2091
  }
1462
2092
  export interface IUpdateUserAdditionalInfoSchema {
1463
2093
  additionalInfo: {
1464
- description: string;
1465
2094
  isNew: boolean;
2095
+ description: string;
1466
2096
  title: string;
1467
2097
  }[];
1468
2098
  }
@@ -1504,8 +2134,6 @@ export interface IUpdateEducationsSchema {
1504
2134
  value: "others" | (string | undefined)[];
1505
2135
  otherValue: string | string[];
1506
2136
  } | Pick<{
1507
- updatedBy?: string | undefined;
1508
- updatedAt?: number | undefined;
1509
2137
  headline?: string | undefined;
1510
2138
  employeeCount?: string | undefined;
1511
2139
  yearFounded?: string | undefined;
@@ -1521,8 +2149,8 @@ export interface IUpdateEducationsSchema {
1521
2149
  }[] | undefined;
1522
2150
  contacts?: {
1523
2151
  label?: string | undefined;
1524
- value: string;
1525
2152
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2153
+ value: string;
1526
2154
  isPrimary: boolean;
1527
2155
  isVerified: boolean;
1528
2156
  }[] | undefined;
@@ -1537,8 +2165,8 @@ export interface IUpdateEducationsSchema {
1537
2165
  perksAndBenefits?: {
1538
2166
  category?: {
1539
2167
  logo?: string | undefined;
1540
- name: string;
1541
2168
  id: string;
2169
+ name: string;
1542
2170
  } | {
1543
2171
  value: "others" | (string | undefined)[];
1544
2172
  otherValue: string | string[];
@@ -1546,38 +2174,40 @@ export interface IUpdateEducationsSchema {
1546
2174
  name: string;
1547
2175
  description: string;
1548
2176
  }[] | undefined;
1549
- name: string;
2177
+ updatedBy?: string | undefined;
2178
+ updatedAt?: number | undefined;
2179
+ slug: string;
1550
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>;
1551
2186
  logo: {
1552
2187
  dark?: string | undefined;
1553
2188
  light: string;
1554
2189
  } | null;
1555
- shortId: string;
1556
- createdBy: string;
1557
- createdAt: number;
1558
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
1559
- slug: string;
1560
- about: string;
1561
- website: string;
1562
2190
  categories: {
1563
2191
  logo?: string | undefined;
1564
- name: string;
1565
2192
  id: string;
2193
+ name: string;
1566
2194
  }[];
1567
2195
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1568
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2196
+ createdBy: string;
2197
+ createdAt: number;
2198
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
1569
2199
  course: NonNullable<{
1570
2200
  logo?: string | undefined;
1571
- name: string;
1572
2201
  id: string;
2202
+ name: string;
1573
2203
  } | {
1574
2204
  value: "others" | (string | undefined)[];
1575
2205
  otherValue: string | string[];
1576
2206
  } | undefined>;
1577
2207
  fieldOfStudy: NonNullable<NonNullable<{
1578
2208
  logo?: string | undefined;
1579
- name: string;
1580
2209
  id: string;
2210
+ name: string;
1581
2211
  } | {
1582
2212
  value: "others" | (string | undefined)[];
1583
2213
  otherValue: string | string[];
@@ -1589,8 +2219,8 @@ export interface IUpdateEducationsSchema {
1589
2219
  export interface IUpdateInterestsSchema {
1590
2220
  interests: {
1591
2221
  logo?: string | undefined;
1592
- name: string;
1593
2222
  id: string;
2223
+ name: string;
1594
2224
  }[];
1595
2225
  }
1596
2226
  export interface IUpdateLanguagesSchema {
@@ -1599,8 +2229,8 @@ export interface IUpdateLanguagesSchema {
1599
2229
  proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
1600
2230
  language: NonNullable<{
1601
2231
  logo?: string | undefined;
1602
- name: string;
1603
2232
  id: string;
2233
+ name: string;
1604
2234
  } | {
1605
2235
  value: "others" | (string | undefined)[];
1606
2236
  otherValue: string | string[];
@@ -1623,8 +2253,8 @@ export interface IUpdateUserSkillsSchema {
1623
2253
  skills: {
1624
2254
  skill: NonNullable<{
1625
2255
  logo?: string | undefined;
1626
- name: string;
1627
2256
  id: string;
2257
+ name: string;
1628
2258
  } | {
1629
2259
  value: "others" | (string | undefined)[];
1630
2260
  otherValue: string | string[];
@@ -1641,8 +2271,8 @@ export interface IUpdateSocialAccountsSchema {
1641
2271
  }[];
1642
2272
  }
1643
2273
  export interface IUpdateUserSchema {
1644
- description?: string | undefined;
1645
2274
  headline?: string | undefined;
2275
+ description?: string | undefined;
1646
2276
  emailVerified?: string | null | undefined;
1647
2277
  name: {
1648
2278
  last?: string | undefined;
@@ -1657,8 +2287,6 @@ export interface IUpdateWorkExperiencesSchema {
1657
2287
  value: "others" | (string | undefined)[];
1658
2288
  otherValue: string | string[];
1659
2289
  } | Pick<{
1660
- updatedBy?: string | undefined;
1661
- updatedAt?: number | undefined;
1662
2290
  headline?: string | undefined;
1663
2291
  employeeCount?: string | undefined;
1664
2292
  yearFounded?: string | undefined;
@@ -1674,8 +2302,8 @@ export interface IUpdateWorkExperiencesSchema {
1674
2302
  }[] | undefined;
1675
2303
  contacts?: {
1676
2304
  label?: string | undefined;
1677
- value: string;
1678
2305
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2306
+ value: string;
1679
2307
  isPrimary: boolean;
1680
2308
  isVerified: boolean;
1681
2309
  }[] | undefined;
@@ -1690,8 +2318,8 @@ export interface IUpdateWorkExperiencesSchema {
1690
2318
  perksAndBenefits?: {
1691
2319
  category?: {
1692
2320
  logo?: string | undefined;
1693
- name: string;
1694
2321
  id: string;
2322
+ name: string;
1695
2323
  } | {
1696
2324
  value: "others" | (string | undefined)[];
1697
2325
  otherValue: string | string[];
@@ -1699,30 +2327,32 @@ export interface IUpdateWorkExperiencesSchema {
1699
2327
  name: string;
1700
2328
  description: string;
1701
2329
  }[] | undefined;
1702
- name: string;
2330
+ updatedBy?: string | undefined;
2331
+ updatedAt?: number | undefined;
2332
+ slug: string;
1703
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>;
1704
2339
  logo: {
1705
2340
  dark?: string | undefined;
1706
2341
  light: string;
1707
2342
  } | null;
1708
- shortId: string;
1709
- createdBy: string;
1710
- createdAt: number;
1711
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
1712
- slug: string;
1713
- about: string;
1714
- website: string;
1715
2343
  categories: {
1716
2344
  logo?: string | undefined;
1717
- name: string;
1718
2345
  id: string;
2346
+ name: string;
1719
2347
  }[];
1720
2348
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1721
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2349
+ createdBy: string;
2350
+ createdAt: number;
2351
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
1722
2352
  designation: NonNullable<{
1723
2353
  logo?: string | undefined;
1724
- name: string;
1725
2354
  id: string;
2355
+ name: string;
1726
2356
  } | {
1727
2357
  value: "others" | (string | undefined)[];
1728
2358
  otherValue: string | string[];
@@ -1806,8 +2436,8 @@ export interface IUserCompletenessSchema {
1806
2436
  };
1807
2437
  }
1808
2438
  export interface IUserSchema {
1809
- id?: string | undefined;
1810
2439
  headline?: string | undefined;
2440
+ id?: string | undefined;
1811
2441
  emailVerified?: string | null | undefined;
1812
2442
  image?: string | undefined;
1813
2443
  aboutMe?: string | undefined;
@@ -1825,8 +2455,8 @@ export interface IUserSchema {
1825
2455
  skills: {
1826
2456
  skill: NonNullable<{
1827
2457
  logo?: string | undefined;
1828
- name: string;
1829
2458
  id: string;
2459
+ name: string;
1830
2460
  } | {
1831
2461
  value: "others" | (string | undefined)[];
1832
2462
  otherValue: string | string[];
@@ -1863,8 +2493,6 @@ export interface IUserSchema {
1863
2493
  value: "others" | (string | undefined)[];
1864
2494
  otherValue: string | string[];
1865
2495
  } | Pick<{
1866
- updatedBy?: string | undefined;
1867
- updatedAt?: number | undefined;
1868
2496
  headline?: string | undefined;
1869
2497
  employeeCount?: string | undefined;
1870
2498
  yearFounded?: string | undefined;
@@ -1880,8 +2508,8 @@ export interface IUserSchema {
1880
2508
  }[] | undefined;
1881
2509
  contacts?: {
1882
2510
  label?: string | undefined;
1883
- value: string;
1884
2511
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2512
+ value: string;
1885
2513
  isPrimary: boolean;
1886
2514
  isVerified: boolean;
1887
2515
  }[] | undefined;
@@ -1896,8 +2524,8 @@ export interface IUserSchema {
1896
2524
  perksAndBenefits?: {
1897
2525
  category?: {
1898
2526
  logo?: string | undefined;
1899
- name: string;
1900
2527
  id: string;
2528
+ name: string;
1901
2529
  } | {
1902
2530
  value: "others" | (string | undefined)[];
1903
2531
  otherValue: string | string[];
@@ -1905,30 +2533,32 @@ export interface IUserSchema {
1905
2533
  name: string;
1906
2534
  description: string;
1907
2535
  }[] | undefined;
1908
- name: string;
2536
+ updatedBy?: string | undefined;
2537
+ updatedAt?: number | undefined;
2538
+ slug: string;
1909
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>;
1910
2545
  logo: {
1911
2546
  dark?: string | undefined;
1912
2547
  light: string;
1913
2548
  } | null;
1914
- shortId: string;
1915
- createdBy: string;
1916
- createdAt: number;
1917
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
1918
- slug: string;
1919
- about: string;
1920
- website: string;
1921
2549
  categories: {
1922
2550
  logo?: string | undefined;
1923
- name: string;
1924
2551
  id: string;
2552
+ name: string;
1925
2553
  }[];
1926
2554
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
1927
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2555
+ createdBy: string;
2556
+ createdAt: number;
2557
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
1928
2558
  designation: NonNullable<{
1929
2559
  logo?: string | undefined;
1930
- name: string;
1931
2560
  id: string;
2561
+ name: string;
1932
2562
  } | {
1933
2563
  value: "others" | (string | undefined)[];
1934
2564
  otherValue: string | string[];
@@ -1977,8 +2607,6 @@ export interface IUserSchema {
1977
2607
  value: "others" | (string | undefined)[];
1978
2608
  otherValue: string | string[];
1979
2609
  } | Pick<{
1980
- updatedBy?: string | undefined;
1981
- updatedAt?: number | undefined;
1982
2610
  headline?: string | undefined;
1983
2611
  employeeCount?: string | undefined;
1984
2612
  yearFounded?: string | undefined;
@@ -1994,8 +2622,8 @@ export interface IUserSchema {
1994
2622
  }[] | undefined;
1995
2623
  contacts?: {
1996
2624
  label?: string | undefined;
1997
- value: string;
1998
2625
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2626
+ value: string;
1999
2627
  isPrimary: boolean;
2000
2628
  isVerified: boolean;
2001
2629
  }[] | undefined;
@@ -2010,8 +2638,8 @@ export interface IUserSchema {
2010
2638
  perksAndBenefits?: {
2011
2639
  category?: {
2012
2640
  logo?: string | undefined;
2013
- name: string;
2014
2641
  id: string;
2642
+ name: string;
2015
2643
  } | {
2016
2644
  value: "others" | (string | undefined)[];
2017
2645
  otherValue: string | string[];
@@ -2019,38 +2647,40 @@ export interface IUserSchema {
2019
2647
  name: string;
2020
2648
  description: string;
2021
2649
  }[] | undefined;
2022
- name: string;
2650
+ updatedBy?: string | undefined;
2651
+ updatedAt?: number | undefined;
2652
+ slug: string;
2023
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>;
2024
2659
  logo: {
2025
2660
  dark?: string | undefined;
2026
2661
  light: string;
2027
2662
  } | null;
2028
- shortId: string;
2029
- createdBy: string;
2030
- createdAt: number;
2031
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
2032
- slug: string;
2033
- about: string;
2034
- website: string;
2035
2663
  categories: {
2036
2664
  logo?: string | undefined;
2037
- name: string;
2038
2665
  id: string;
2666
+ name: string;
2039
2667
  }[];
2040
2668
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
2041
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2669
+ createdBy: string;
2670
+ createdAt: number;
2671
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
2042
2672
  course: NonNullable<{
2043
2673
  logo?: string | undefined;
2044
- name: string;
2045
2674
  id: string;
2675
+ name: string;
2046
2676
  } | {
2047
2677
  value: "others" | (string | undefined)[];
2048
2678
  otherValue: string | string[];
2049
2679
  } | undefined>;
2050
2680
  fieldOfStudy: NonNullable<NonNullable<{
2051
2681
  logo?: string | undefined;
2052
- name: string;
2053
2682
  id: string;
2683
+ name: string;
2054
2684
  } | {
2055
2685
  value: "others" | (string | undefined)[];
2056
2686
  otherValue: string | string[];
@@ -2081,24 +2711,24 @@ export interface IUserSchema {
2081
2711
  }[];
2082
2712
  interests: {
2083
2713
  logo?: string | undefined;
2084
- name: string;
2085
2714
  id: string;
2715
+ name: string;
2086
2716
  }[];
2087
2717
  languages: {
2088
2718
  isNew: boolean;
2089
2719
  proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
2090
2720
  language: NonNullable<{
2091
2721
  logo?: string | undefined;
2092
- name: string;
2093
2722
  id: string;
2723
+ name: string;
2094
2724
  } | {
2095
2725
  value: "others" | (string | undefined)[];
2096
2726
  otherValue: string | string[];
2097
2727
  } | undefined>;
2098
2728
  }[];
2099
2729
  additionalInfo: {
2100
- description: string;
2101
2730
  isNew: boolean;
2731
+ description: string;
2102
2732
  title: string;
2103
2733
  }[];
2104
2734
  roles: (import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").UserRole | undefined)[];
@@ -2139,8 +2769,6 @@ export interface IserProfileOverview {
2139
2769
  value: "others" | (string | undefined)[];
2140
2770
  otherValue: string | string[];
2141
2771
  } | Pick<{
2142
- updatedBy?: string | undefined;
2143
- updatedAt?: number | undefined;
2144
2772
  headline?: string | undefined;
2145
2773
  employeeCount?: string | undefined;
2146
2774
  yearFounded?: string | undefined;
@@ -2156,8 +2784,8 @@ export interface IserProfileOverview {
2156
2784
  }[] | undefined;
2157
2785
  contacts?: {
2158
2786
  label?: string | undefined;
2159
- value: string;
2160
2787
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2788
+ value: string;
2161
2789
  isPrimary: boolean;
2162
2790
  isVerified: boolean;
2163
2791
  }[] | undefined;
@@ -2172,8 +2800,8 @@ export interface IserProfileOverview {
2172
2800
  perksAndBenefits?: {
2173
2801
  category?: {
2174
2802
  logo?: string | undefined;
2175
- name: string;
2176
2803
  id: string;
2804
+ name: string;
2177
2805
  } | {
2178
2806
  value: "others" | (string | undefined)[];
2179
2807
  otherValue: string | string[];
@@ -2181,30 +2809,32 @@ export interface IserProfileOverview {
2181
2809
  name: string;
2182
2810
  description: string;
2183
2811
  }[] | undefined;
2184
- name: string;
2812
+ updatedBy?: string | undefined;
2813
+ updatedAt?: number | undefined;
2814
+ slug: string;
2185
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>;
2186
2821
  logo: {
2187
2822
  dark?: string | undefined;
2188
2823
  light: string;
2189
2824
  } | null;
2190
- shortId: string;
2191
- createdBy: string;
2192
- createdAt: number;
2193
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
2194
- slug: string;
2195
- about: string;
2196
- website: string;
2197
2825
  categories: {
2198
2826
  logo?: string | undefined;
2199
- name: string;
2200
2827
  id: string;
2828
+ name: string;
2201
2829
  }[];
2202
2830
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
2203
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2831
+ createdBy: string;
2832
+ createdAt: number;
2833
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
2204
2834
  designation: NonNullable<{
2205
2835
  logo?: string | undefined;
2206
- name: string;
2207
2836
  id: string;
2837
+ name: string;
2208
2838
  } | {
2209
2839
  value: "others" | (string | undefined)[];
2210
2840
  otherValue: string | string[];
@@ -2253,8 +2883,6 @@ export interface IserProfileOverview {
2253
2883
  value: "others" | (string | undefined)[];
2254
2884
  otherValue: string | string[];
2255
2885
  } | Pick<{
2256
- updatedBy?: string | undefined;
2257
- updatedAt?: number | undefined;
2258
2886
  headline?: string | undefined;
2259
2887
  employeeCount?: string | undefined;
2260
2888
  yearFounded?: string | undefined;
@@ -2270,8 +2898,8 @@ export interface IserProfileOverview {
2270
2898
  }[] | undefined;
2271
2899
  contacts?: {
2272
2900
  label?: string | undefined;
2273
- value: string;
2274
2901
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
2902
+ value: string;
2275
2903
  isPrimary: boolean;
2276
2904
  isVerified: boolean;
2277
2905
  }[] | undefined;
@@ -2286,8 +2914,8 @@ export interface IserProfileOverview {
2286
2914
  perksAndBenefits?: {
2287
2915
  category?: {
2288
2916
  logo?: string | undefined;
2289
- name: string;
2290
2917
  id: string;
2918
+ name: string;
2291
2919
  } | {
2292
2920
  value: "others" | (string | undefined)[];
2293
2921
  otherValue: string | string[];
@@ -2295,38 +2923,40 @@ export interface IserProfileOverview {
2295
2923
  name: string;
2296
2924
  description: string;
2297
2925
  }[] | undefined;
2298
- name: string;
2926
+ updatedBy?: string | undefined;
2927
+ updatedAt?: number | undefined;
2928
+ slug: string;
2299
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>;
2300
2935
  logo: {
2301
2936
  dark?: string | undefined;
2302
2937
  light: string;
2303
2938
  } | null;
2304
- shortId: string;
2305
- createdBy: string;
2306
- createdAt: number;
2307
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
2308
- slug: string;
2309
- about: string;
2310
- website: string;
2311
2939
  categories: {
2312
2940
  logo?: string | undefined;
2313
- name: string;
2314
2941
  id: string;
2942
+ name: string;
2315
2943
  }[];
2316
2944
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
2317
- }, "name" | "logo" | "type" | "slug"> | undefined>;
2945
+ createdBy: string;
2946
+ createdAt: number;
2947
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
2318
2948
  course: NonNullable<{
2319
2949
  logo?: string | undefined;
2320
- name: string;
2321
2950
  id: string;
2951
+ name: string;
2322
2952
  } | {
2323
2953
  value: "others" | (string | undefined)[];
2324
2954
  otherValue: string | string[];
2325
2955
  } | undefined>;
2326
2956
  fieldOfStudy: NonNullable<NonNullable<{
2327
2957
  logo?: string | undefined;
2328
- name: string;
2329
2958
  id: string;
2959
+ name: string;
2330
2960
  } | {
2331
2961
  value: "others" | (string | undefined)[];
2332
2962
  otherValue: string | string[];
@@ -2340,8 +2970,8 @@ export interface ICompanySchema {
2340
2970
  perksAndBenefits?: {
2341
2971
  category?: {
2342
2972
  logo?: string | undefined;
2343
- name: string;
2344
2973
  id: string;
2974
+ name: string;
2345
2975
  } | {
2346
2976
  value: "others" | (string | undefined)[];
2347
2977
  otherValue: string | string[];
@@ -2384,8 +3014,6 @@ export interface IEducationSchema {
2384
3014
  value: "others" | (string | undefined)[];
2385
3015
  otherValue: string | string[];
2386
3016
  } | Pick<{
2387
- updatedBy?: string | undefined;
2388
- updatedAt?: number | undefined;
2389
3017
  headline?: string | undefined;
2390
3018
  employeeCount?: string | undefined;
2391
3019
  yearFounded?: string | undefined;
@@ -2401,8 +3029,8 @@ export interface IEducationSchema {
2401
3029
  }[] | undefined;
2402
3030
  contacts?: {
2403
3031
  label?: string | undefined;
2404
- value: string;
2405
3032
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
3033
+ value: string;
2406
3034
  isPrimary: boolean;
2407
3035
  isVerified: boolean;
2408
3036
  }[] | undefined;
@@ -2417,8 +3045,8 @@ export interface IEducationSchema {
2417
3045
  perksAndBenefits?: {
2418
3046
  category?: {
2419
3047
  logo?: string | undefined;
2420
- name: string;
2421
3048
  id: string;
3049
+ name: string;
2422
3050
  } | {
2423
3051
  value: "others" | (string | undefined)[];
2424
3052
  otherValue: string | string[];
@@ -2426,38 +3054,40 @@ export interface IEducationSchema {
2426
3054
  name: string;
2427
3055
  description: string;
2428
3056
  }[] | undefined;
2429
- name: string;
3057
+ updatedBy?: string | undefined;
3058
+ updatedAt?: number | undefined;
3059
+ slug: string;
2430
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>;
2431
3066
  logo: {
2432
3067
  dark?: string | undefined;
2433
3068
  light: string;
2434
3069
  } | null;
2435
- shortId: string;
2436
- createdBy: string;
2437
- createdAt: number;
2438
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
2439
- slug: string;
2440
- about: string;
2441
- website: string;
2442
3070
  categories: {
2443
3071
  logo?: string | undefined;
2444
- name: string;
2445
3072
  id: string;
3073
+ name: string;
2446
3074
  }[];
2447
3075
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
2448
- }, "name" | "logo" | "type" | "slug"> | undefined>;
3076
+ createdBy: string;
3077
+ createdAt: number;
3078
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
2449
3079
  course: NonNullable<{
2450
3080
  logo?: string | undefined;
2451
- name: string;
2452
3081
  id: string;
3082
+ name: string;
2453
3083
  } | {
2454
3084
  value: "others" | (string | undefined)[];
2455
3085
  otherValue: string | string[];
2456
3086
  } | undefined>;
2457
3087
  fieldOfStudy: NonNullable<NonNullable<{
2458
3088
  logo?: string | undefined;
2459
- name: string;
2460
3089
  id: string;
3090
+ name: string;
2461
3091
  } | {
2462
3092
  value: "others" | (string | undefined)[];
2463
3093
  otherValue: string | string[];
@@ -2466,8 +3096,8 @@ export interface IEducationSchema {
2466
3096
  studyType: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").StudyType | undefined>;
2467
3097
  }
2468
3098
  export interface IUserGeneralDetailSchema {
2469
- id?: string | undefined;
2470
3099
  headline?: string | undefined;
3100
+ id?: string | undefined;
2471
3101
  emailVerified?: string | null | undefined;
2472
3102
  image?: string | undefined;
2473
3103
  aboutMe?: string | undefined;
@@ -2511,8 +3141,8 @@ export interface IUserProjectSchema {
2511
3141
  };
2512
3142
  }
2513
3143
  export interface IUserAdditionalInfoSchema {
2514
- description: string;
2515
3144
  isNew: boolean;
3145
+ description: string;
2516
3146
  title: string;
2517
3147
  }
2518
3148
  export interface IUserCertificationSchema {
@@ -2528,16 +3158,16 @@ export interface IUserCertificationSchema {
2528
3158
  }
2529
3159
  export interface IUserInterestSchema {
2530
3160
  logo?: string | undefined;
2531
- name: string;
2532
3161
  id: string;
3162
+ name: string;
2533
3163
  }
2534
3164
  export interface IUserLanguageSchema {
2535
3165
  isNew: boolean;
2536
3166
  proficiencyLevel: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/common/constants").ProficiencyLevel | undefined>;
2537
3167
  language: NonNullable<{
2538
3168
  logo?: string | undefined;
2539
- name: string;
2540
3169
  id: string;
3170
+ name: string;
2541
3171
  } | {
2542
3172
  value: "others" | (string | undefined)[];
2543
3173
  otherValue: string | string[];
@@ -2546,8 +3176,8 @@ export interface IUserLanguageSchema {
2546
3176
  export interface IUserSkillSchema {
2547
3177
  skill: NonNullable<{
2548
3178
  logo?: string | undefined;
2549
- name: string;
2550
3179
  id: string;
3180
+ name: string;
2551
3181
  } | {
2552
3182
  value: "others" | (string | undefined)[];
2553
3183
  otherValue: string | string[];
@@ -2561,8 +3191,6 @@ export interface IWorkExperienceSchema {
2561
3191
  value: "others" | (string | undefined)[];
2562
3192
  otherValue: string | string[];
2563
3193
  } | Pick<{
2564
- updatedBy?: string | undefined;
2565
- updatedAt?: number | undefined;
2566
3194
  headline?: string | undefined;
2567
3195
  employeeCount?: string | undefined;
2568
3196
  yearFounded?: string | undefined;
@@ -2578,8 +3206,8 @@ export interface IWorkExperienceSchema {
2578
3206
  }[] | undefined;
2579
3207
  contacts?: {
2580
3208
  label?: string | undefined;
2581
- value: string;
2582
3209
  type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").ContactTypes | undefined>;
3210
+ value: string;
2583
3211
  isPrimary: boolean;
2584
3212
  isVerified: boolean;
2585
3213
  }[] | undefined;
@@ -2594,8 +3222,8 @@ export interface IWorkExperienceSchema {
2594
3222
  perksAndBenefits?: {
2595
3223
  category?: {
2596
3224
  logo?: string | undefined;
2597
- name: string;
2598
3225
  id: string;
3226
+ name: string;
2599
3227
  } | {
2600
3228
  value: "others" | (string | undefined)[];
2601
3229
  otherValue: string | string[];
@@ -2603,30 +3231,32 @@ export interface IWorkExperienceSchema {
2603
3231
  name: string;
2604
3232
  description: string;
2605
3233
  }[] | undefined;
2606
- name: string;
3234
+ updatedBy?: string | undefined;
3235
+ updatedAt?: number | undefined;
3236
+ slug: string;
2607
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>;
2608
3243
  logo: {
2609
3244
  dark?: string | undefined;
2610
3245
  light: string;
2611
3246
  } | null;
2612
- shortId: string;
2613
- createdBy: string;
2614
- createdAt: number;
2615
- type: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageType | undefined>;
2616
- slug: string;
2617
- about: string;
2618
- website: string;
2619
3247
  categories: {
2620
3248
  logo?: string | undefined;
2621
- name: string;
2622
3249
  id: string;
3250
+ name: string;
2623
3251
  }[];
2624
3252
  status: NonNullable<import("/Users/nadeem.ahmad/Documents/GitHub/thejob-yup-schema/src/page/page.constant").PageStatus | undefined>;
2625
- }, "name" | "logo" | "type" | "slug"> | undefined>;
3253
+ createdBy: string;
3254
+ createdAt: number;
3255
+ }, "slug" | "name" | "type" | "logo"> | undefined>;
2626
3256
  designation: NonNullable<{
2627
3257
  logo?: string | undefined;
2628
- name: string;
2629
3258
  id: string;
3259
+ name: string;
2630
3260
  } | {
2631
3261
  value: "others" | (string | undefined)[];
2632
3262
  otherValue: string | string[];
@@ -2654,8 +3284,8 @@ export interface IWorkExperienceSchema {
2654
3284
  export interface IPerksAndBenefitSchema {
2655
3285
  category?: {
2656
3286
  logo?: string | undefined;
2657
- name: string;
2658
3287
  id: string;
3288
+ name: string;
2659
3289
  } | {
2660
3290
  value: "others" | (string | undefined)[];
2661
3291
  otherValue: string | string[];