@thejob/schema 1.0.35 → 1.0.38

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.
@@ -65,288 +65,315 @@ declare const ResumeInterestSectionSchema: ArraySchema<TUserSchema["interests"],
65
65
  export type TResumeInterestSectionSchema = InferType<typeof ResumeInterestSectionSchema>;
66
66
  declare const ResumeLanguageSectionSchema: ArraySchema<TUserSchema["languages"], object>;
67
67
  export type TResumeLanguageSectionSchema = InferType<typeof ResumeLanguageSectionSchema>;
68
- export declare const ResumeSchemaV2: ArraySchema<{
69
- id: NonNullable<ResumeSectionType | undefined>;
70
- data: {
71
- id?: string | undefined;
72
- headline?: string | undefined;
73
- image?: string | undefined;
74
- aboutMe?: string | undefined;
75
- emailVerified?: string | null | undefined;
76
- email: string;
77
- name: {
78
- last?: string | undefined;
79
- first: string;
80
- };
81
- experienceLevel: NonNullable<import("../common").ExperienceLevel | undefined>;
82
- location: {
83
- state?: string | undefined;
84
- stateCode?: string | undefined;
85
- country: string;
86
- countryCode: string;
87
- city: string;
88
- address: string;
89
- latLong: {
90
- country?: (number | undefined)[] | undefined;
91
- state?: number[] | undefined;
92
- city?: number[] | undefined;
68
+ export declare const ResumeSocialAccountSectionSchema: ArraySchema<TUserSchema["socialAccounts"], object>;
69
+ export type TResumeSocialAccountSectionSchema = InferType<typeof ResumeSocialAccountSectionSchema>;
70
+ export declare const ResumeSchemaV2: import("yup").ObjectSchema<{
71
+ userId: string;
72
+ slug: string;
73
+ sections: {
74
+ id: NonNullable<ResumeSectionType | undefined>;
75
+ data: {
76
+ type: NonNullable<import("../common").SocialAccount | undefined>;
77
+ url: string;
78
+ isNew: boolean;
79
+ }[] | {
80
+ id?: string | undefined;
81
+ headline?: string | undefined;
82
+ image?: string | undefined;
83
+ aboutMe?: string | undefined;
84
+ emailVerified?: string | null | undefined;
85
+ email: string;
86
+ name: {
87
+ last?: string | undefined;
88
+ first: string;
93
89
  };
94
- };
95
- mobile: {
96
- number: string;
97
- country: {
98
- locale?: string | undefined;
99
- name: string;
100
- dial_code: string;
101
- code: string;
90
+ experienceLevel: NonNullable<import("../common").ExperienceLevel | undefined>;
91
+ location: {
92
+ state?: string | undefined;
93
+ stateCode?: string | undefined;
94
+ country: string;
95
+ countryCode: string;
96
+ city: string;
97
+ address: string;
98
+ latLong: {
99
+ country?: (number | undefined)[] | undefined;
100
+ state?: number[] | undefined;
101
+ city?: number[] | undefined;
102
+ };
102
103
  };
103
- };
104
- } | {
105
- description?: string | undefined;
106
- company: NonNullable<{
107
- value: "others" | (string | undefined)[];
108
- otherValue: string | string[];
109
- } | Pick<{
110
- updatedBy?: string | undefined;
111
- updatedAt?: number | undefined;
112
- socialAccounts?: {
113
- type: NonNullable<import("../common").SocialAccount | undefined>;
114
- url: string;
115
- isNew: boolean;
116
- }[] | undefined;
117
- perksAndBenefits?: {
118
- category?: {
104
+ mobile: {
105
+ number: string;
106
+ country: {
107
+ locale?: string | undefined;
108
+ name: string;
109
+ dial_code: string;
110
+ code: string;
111
+ };
112
+ };
113
+ } | {
114
+ description?: string | undefined;
115
+ company: NonNullable<{
116
+ value: "others" | (string | undefined)[];
117
+ otherValue: string | string[];
118
+ } | Pick<{
119
+ updatedBy?: string | undefined;
120
+ updatedAt?: number | undefined;
121
+ socialAccounts?: {
122
+ type: NonNullable<import("../common").SocialAccount | undefined>;
123
+ url: string;
124
+ isNew: boolean;
125
+ }[] | undefined;
126
+ perksAndBenefits?: {
127
+ category?: {
128
+ logo?: string | undefined;
129
+ name: string;
130
+ id: string;
131
+ } | {
132
+ value: "others" | (string | undefined)[];
133
+ otherValue: string | string[];
134
+ } | undefined;
135
+ name: string;
136
+ description: string;
137
+ }[] | undefined;
138
+ locations?: {
139
+ coverImage?: string | undefined;
140
+ name: string;
141
+ isHeadquarters: boolean;
142
+ contact: {
143
+ email?: string | undefined;
144
+ phone?: string | undefined;
145
+ address: string;
146
+ };
147
+ }[] | undefined;
148
+ equalOpportunityEmployer?: boolean | undefined;
149
+ headline?: string | undefined;
150
+ employeeCount?: string | undefined;
151
+ yearFounded?: string | undefined;
152
+ contacts?: {
153
+ label?: string | undefined;
154
+ type: NonNullable<import("..").ContactTypes | undefined>;
155
+ value: string;
156
+ isPrimary: boolean;
157
+ isVerified: boolean;
158
+ }[] | undefined;
159
+ verified?: Date | undefined;
160
+ isOwner?: boolean | undefined;
161
+ type: NonNullable<import("..").PageType | undefined>;
162
+ name: string;
163
+ id: string;
164
+ logo: {
165
+ dark?: string | undefined;
166
+ light: string;
167
+ } | null;
168
+ shortId: string;
169
+ createdBy: string;
170
+ createdAt: number;
171
+ about: string;
172
+ website: string;
173
+ slug: string;
174
+ categories: {
119
175
  logo?: string | undefined;
120
176
  name: string;
121
177
  id: string;
122
- } | {
123
- value: "others" | (string | undefined)[];
124
- otherValue: string | string[];
125
- } | undefined;
126
- name: string;
127
- description: string;
128
- }[] | undefined;
129
- locations?: {
130
- coverImage?: string | undefined;
131
- name: string;
132
- isHeadquarters: boolean;
133
- contact: {
134
- email?: string | undefined;
135
- phone?: string | undefined;
136
- address: string;
178
+ }[];
179
+ status: NonNullable<import("..").PageStatus | undefined>;
180
+ }, "type" | "name" | "logo" | "slug"> | undefined>;
181
+ duration: {
182
+ startDate: string;
183
+ endDate: string;
184
+ isActive: boolean;
185
+ };
186
+ location: {
187
+ state?: string | undefined;
188
+ stateCode?: string | undefined;
189
+ country: string;
190
+ countryCode: string;
191
+ city: string;
192
+ address: string;
193
+ latLong: {
194
+ country?: (number | undefined)[] | undefined;
195
+ state?: number[] | undefined;
196
+ city?: number[] | undefined;
137
197
  };
138
- }[] | undefined;
139
- equalOpportunityEmployer?: boolean | undefined;
140
- headline?: string | undefined;
141
- employeeCount?: string | undefined;
142
- yearFounded?: string | undefined;
143
- contacts?: {
144
- label?: string | undefined;
145
- type: NonNullable<import("..").ContactTypes | undefined>;
146
- value: string;
147
- isPrimary: boolean;
148
- isVerified: boolean;
149
- }[] | undefined;
150
- verified?: Date | undefined;
151
- isOwner?: boolean | undefined;
152
- type: NonNullable<import("..").PageType | undefined>;
153
- name: string;
154
- id: string;
155
- logo: {
156
- dark?: string | undefined;
157
- light: string;
158
- } | null;
159
- shortId: string;
160
- createdBy: string;
161
- createdAt: number;
162
- about: string;
163
- website: string;
164
- slug: string;
165
- categories: {
198
+ };
199
+ designation: NonNullable<{
166
200
  logo?: string | undefined;
167
201
  name: string;
168
202
  id: string;
169
- }[];
170
- status: NonNullable<import("..").PageStatus | undefined>;
171
- }, "type" | "name" | "logo" | "slug"> | undefined>;
172
- duration: {
173
- startDate: string;
174
- endDate: string;
175
- isActive: boolean;
176
- };
177
- location: {
178
- state?: string | undefined;
179
- stateCode?: string | undefined;
180
- country: string;
181
- countryCode: string;
182
- city: string;
183
- address: string;
184
- latLong: {
185
- country?: (number | undefined)[] | undefined;
186
- state?: number[] | undefined;
187
- city?: number[] | undefined;
188
- };
189
- };
190
- designation: NonNullable<{
191
- logo?: string | undefined;
192
- name: string;
193
- id: string;
194
- } | {
195
- value: "others" | (string | undefined)[];
196
- otherValue: string | string[];
197
- } | undefined>;
198
- isRemote: boolean;
199
- }[] | {
200
- description?: string | undefined;
201
- institute: NonNullable<{
202
- value: "others" | (string | undefined)[];
203
- otherValue: string | string[];
204
- } | Pick<{
205
- updatedBy?: string | undefined;
206
- updatedAt?: number | undefined;
207
- socialAccounts?: {
208
- type: NonNullable<import("../common").SocialAccount | undefined>;
209
- url: string;
210
- isNew: boolean;
211
- }[] | undefined;
212
- perksAndBenefits?: {
213
- category?: {
203
+ } | {
204
+ value: "others" | (string | undefined)[];
205
+ otherValue: string | string[];
206
+ } | undefined>;
207
+ isRemote: boolean;
208
+ }[] | {
209
+ description?: string | undefined;
210
+ institute: NonNullable<{
211
+ value: "others" | (string | undefined)[];
212
+ otherValue: string | string[];
213
+ } | Pick<{
214
+ updatedBy?: string | undefined;
215
+ updatedAt?: number | undefined;
216
+ socialAccounts?: {
217
+ type: NonNullable<import("../common").SocialAccount | undefined>;
218
+ url: string;
219
+ isNew: boolean;
220
+ }[] | undefined;
221
+ perksAndBenefits?: {
222
+ category?: {
223
+ logo?: string | undefined;
224
+ name: string;
225
+ id: string;
226
+ } | {
227
+ value: "others" | (string | undefined)[];
228
+ otherValue: string | string[];
229
+ } | undefined;
230
+ name: string;
231
+ description: string;
232
+ }[] | undefined;
233
+ locations?: {
234
+ coverImage?: string | undefined;
235
+ name: string;
236
+ isHeadquarters: boolean;
237
+ contact: {
238
+ email?: string | undefined;
239
+ phone?: string | undefined;
240
+ address: string;
241
+ };
242
+ }[] | undefined;
243
+ equalOpportunityEmployer?: boolean | undefined;
244
+ headline?: string | undefined;
245
+ employeeCount?: string | undefined;
246
+ yearFounded?: string | undefined;
247
+ contacts?: {
248
+ label?: string | undefined;
249
+ type: NonNullable<import("..").ContactTypes | undefined>;
250
+ value: string;
251
+ isPrimary: boolean;
252
+ isVerified: boolean;
253
+ }[] | undefined;
254
+ verified?: Date | undefined;
255
+ isOwner?: boolean | undefined;
256
+ type: NonNullable<import("..").PageType | undefined>;
257
+ name: string;
258
+ id: string;
259
+ logo: {
260
+ dark?: string | undefined;
261
+ light: string;
262
+ } | null;
263
+ shortId: string;
264
+ createdBy: string;
265
+ createdAt: number;
266
+ about: string;
267
+ website: string;
268
+ slug: string;
269
+ categories: {
214
270
  logo?: string | undefined;
215
271
  name: string;
216
272
  id: string;
217
- } | {
218
- value: "others" | (string | undefined)[];
219
- otherValue: string | string[];
220
- } | undefined;
273
+ }[];
274
+ status: NonNullable<import("..").PageStatus | undefined>;
275
+ }, "type" | "name" | "logo" | "slug"> | undefined>;
276
+ course: NonNullable<{
277
+ logo?: string | undefined;
221
278
  name: string;
222
- description: string;
223
- }[] | undefined;
224
- locations?: {
225
- coverImage?: string | undefined;
279
+ id: string;
280
+ } | {
281
+ value: "others" | (string | undefined)[];
282
+ otherValue: string | string[];
283
+ } | undefined>;
284
+ fieldOfStudy: NonNullable<NonNullable<{
285
+ logo?: string | undefined;
226
286
  name: string;
227
- isHeadquarters: boolean;
228
- contact: {
229
- email?: string | undefined;
230
- phone?: string | undefined;
231
- address: string;
287
+ id: string;
288
+ } | {
289
+ value: "others" | (string | undefined)[];
290
+ otherValue: string | string[];
291
+ } | undefined>>;
292
+ isDistanceLearning: boolean;
293
+ studyType: NonNullable<import("../common").StudyType | undefined>;
294
+ duration: {
295
+ startDate: string;
296
+ endDate: string;
297
+ isActive: boolean;
298
+ };
299
+ location: {
300
+ state?: string | undefined;
301
+ stateCode?: string | undefined;
302
+ country: string;
303
+ countryCode: string;
304
+ city: string;
305
+ address: string;
306
+ latLong: {
307
+ country?: (number | undefined)[] | undefined;
308
+ state?: number[] | undefined;
309
+ city?: number[] | undefined;
232
310
  };
233
- }[] | undefined;
234
- equalOpportunityEmployer?: boolean | undefined;
235
- headline?: string | undefined;
236
- employeeCount?: string | undefined;
237
- yearFounded?: string | undefined;
238
- contacts?: {
239
- label?: string | undefined;
240
- type: NonNullable<import("..").ContactTypes | undefined>;
241
- value: string;
242
- isPrimary: boolean;
243
- isVerified: boolean;
244
- }[] | undefined;
245
- verified?: Date | undefined;
246
- isOwner?: boolean | undefined;
247
- type: NonNullable<import("..").PageType | undefined>;
248
- name: string;
249
- id: string;
250
- logo: {
251
- dark?: string | undefined;
252
- light: string;
253
- } | null;
254
- shortId: string;
255
- createdBy: string;
256
- createdAt: number;
257
- about: string;
258
- website: string;
259
- slug: string;
260
- categories: {
311
+ };
312
+ }[] | {
313
+ skill: NonNullable<{
261
314
  logo?: string | undefined;
262
315
  name: string;
263
316
  id: string;
264
- }[];
265
- status: NonNullable<import("..").PageStatus | undefined>;
266
- }, "type" | "name" | "logo" | "slug"> | undefined>;
267
- course: NonNullable<{
268
- logo?: string | undefined;
269
- name: string;
270
- id: string;
271
- } | {
272
- value: "others" | (string | undefined)[];
273
- otherValue: string | string[];
274
- } | undefined>;
275
- fieldOfStudy: NonNullable<NonNullable<{
276
- logo?: string | undefined;
317
+ } | {
318
+ value: "others" | (string | undefined)[];
319
+ otherValue: string | string[];
320
+ } | undefined>;
321
+ proficiencyLevel: NonNullable<import("../common").ProficiencyLevel | undefined>;
322
+ lastUsed: string;
323
+ }[] | {
324
+ url?: string | undefined;
277
325
  name: string;
278
- id: string;
279
- } | {
280
- value: "others" | (string | undefined)[];
281
- otherValue: string | string[];
282
- } | undefined>>;
283
- isDistanceLearning: boolean;
284
- studyType: NonNullable<import("../common").StudyType | undefined>;
285
- duration: {
286
- startDate: string;
287
- endDate: string;
288
- isActive: boolean;
289
- };
290
- location: {
291
- state?: string | undefined;
292
- stateCode?: string | undefined;
293
- country: string;
294
- countryCode: string;
295
- city: string;
296
- address: string;
297
- latLong: {
298
- country?: (number | undefined)[] | undefined;
299
- state?: number[] | undefined;
300
- city?: number[] | undefined;
326
+ description: string;
327
+ duration: {
328
+ startDate: string;
329
+ endDate: string;
330
+ isActive: boolean;
301
331
  };
302
- };
303
- }[] | {
304
- skill: NonNullable<{
305
- logo?: string | undefined;
332
+ }[] | {
333
+ url?: string | undefined;
334
+ licenseNumber?: string | undefined;
306
335
  name: string;
307
- id: string;
308
- } | {
309
- value: "others" | (string | undefined)[];
310
- otherValue: string | string[];
311
- } | undefined>;
312
- proficiencyLevel: NonNullable<import("../common").ProficiencyLevel | undefined>;
313
- lastUsed: string;
314
- }[] | {
315
- url?: string | undefined;
316
- name: string;
317
- description: string;
318
- duration: {
319
- startDate: string;
320
- endDate: string;
321
- isActive: boolean;
322
- };
323
- }[] | {
324
- url?: string | undefined;
325
- licenseNumber?: string | undefined;
326
- name: string;
327
- duration: {
328
- startDate: string;
329
- endDate: string;
330
- isActive: boolean;
331
- };
332
- authority: string;
333
- }[] | {
334
- logo?: string | undefined;
335
- name: string;
336
- id: string;
337
- }[] | {
338
- language: NonNullable<{
336
+ duration: {
337
+ startDate: string;
338
+ endDate: string;
339
+ isActive: boolean;
340
+ };
341
+ authority: string;
342
+ }[] | {
339
343
  logo?: string | undefined;
340
344
  name: string;
341
345
  id: string;
342
- } | {
343
- value: "others" | (string | undefined)[];
344
- otherValue: string | string[];
345
- } | undefined>;
346
- isNew: boolean;
347
- proficiencyLevel: NonNullable<import("../common").ProficiencyLevel | undefined>;
348
- }[] | null;
349
- }[], import("yup").AnyObject, never[], "d">;
346
+ }[] | {
347
+ language: NonNullable<{
348
+ logo?: string | undefined;
349
+ name: string;
350
+ id: string;
351
+ } | {
352
+ value: "others" | (string | undefined)[];
353
+ otherValue: string | string[];
354
+ } | undefined>;
355
+ isNew: boolean;
356
+ proficiencyLevel: NonNullable<import("../common").ProficiencyLevel | undefined>;
357
+ }[] | null;
358
+ }[];
359
+ } & {
360
+ id: string;
361
+ shortId: string;
362
+ createdBy: string;
363
+ createdAt: number;
364
+ updatedBy: string | undefined;
365
+ updatedAt: number | undefined;
366
+ }, import("yup").AnyObject, {
367
+ userId: undefined;
368
+ slug: undefined;
369
+ sections: never[];
370
+ id: undefined;
371
+ shortId: undefined;
372
+ createdBy: undefined;
373
+ createdAt: undefined;
374
+ updatedBy: undefined;
375
+ updatedAt: undefined;
376
+ }, "">;
350
377
  export type TResumeSchemaV2 = InferType<typeof ResumeSchemaV2>;
351
378
  export declare const ResumeSchema: import("yup").ObjectSchema<{
352
379
  title: string;
@@ -1 +1 @@
1
- {"version":3,"file":"resume.schema.d.ts","sourceRoot":"","sources":["../../../src/resume/resume.schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"resume.schema.d.ts","sourceRoot":"","sources":["../../../src/resume/resume.schema.ts"],"names":[],"mappings":"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"}