udp-schema 2.23.0 → 2.28.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/dist/helpers.d.ts.map +1 -1
  2. package/dist/helpers.js +11 -1
  3. package/dist/helpers.js.map +1 -1
  4. package/dist/index.d.ts +2 -2
  5. package/dist/index.d.ts.map +1 -1
  6. package/dist/index.js +1 -1
  7. package/dist/index.js.map +1 -1
  8. package/dist/onboarding-config.d.ts.map +1 -1
  9. package/dist/onboarding-config.js +110 -21
  10. package/dist/onboarding-config.js.map +1 -1
  11. package/dist/onboarding-form.d.ts +522 -17
  12. package/dist/onboarding-form.d.ts.map +1 -1
  13. package/dist/profile-fields/06-education.d.ts.map +1 -1
  14. package/dist/profile-fields/06-education.js +0 -9
  15. package/dist/profile-fields/06-education.js.map +1 -1
  16. package/dist/profile-fields/07-employment.d.ts +168 -0
  17. package/dist/profile-fields/07-employment.d.ts.map +1 -1
  18. package/dist/profile-fields/07-employment.js +212 -3
  19. package/dist/profile-fields/07-employment.js.map +1 -1
  20. package/dist/profile-fields/10-worldview.d.ts.map +1 -1
  21. package/dist/profile-fields/10-worldview.js +3 -23
  22. package/dist/profile-fields/10-worldview.js.map +1 -1
  23. package/dist/profile-fields/12-household.d.ts +15 -2
  24. package/dist/profile-fields/12-household.d.ts.map +1 -1
  25. package/dist/profile-fields/12-household.js +166 -17
  26. package/dist/profile-fields/12-household.js.map +1 -1
  27. package/dist/profile-fields/index.d.ts +1 -1
  28. package/dist/profile-fields/index.d.ts.map +1 -1
  29. package/dist/profile-fields/index.js +1 -1
  30. package/dist/profile-fields/index.js.map +1 -1
  31. package/dist/profile-fields/types.d.ts +12 -3
  32. package/dist/profile-fields/types.d.ts.map +1 -1
  33. package/dist/profile-fields/types.js.map +1 -1
  34. package/dist/progress-fields.d.ts.map +1 -1
  35. package/dist/progress-fields.js +17 -3
  36. package/dist/progress-fields.js.map +1 -1
  37. package/dist/step-06.schema.d.ts +0 -1
  38. package/dist/step-06.schema.d.ts.map +1 -1
  39. package/dist/step-06.schema.js +0 -2
  40. package/dist/step-06.schema.js.map +1 -1
  41. package/dist/step-07.schema.d.ts +84 -2
  42. package/dist/step-07.schema.d.ts.map +1 -1
  43. package/dist/step-07.schema.js +114 -4
  44. package/dist/step-07.schema.js.map +1 -1
  45. package/dist/step-10.schema.d.ts +3 -5
  46. package/dist/step-10.schema.d.ts.map +1 -1
  47. package/dist/step-10.schema.js +3 -7
  48. package/dist/step-10.schema.js.map +1 -1
  49. package/dist/step-11.schema.d.ts +75 -15
  50. package/dist/step-11.schema.d.ts.map +1 -1
  51. package/dist/step-11.schema.js +30 -2
  52. package/dist/step-11.schema.js.map +1 -1
  53. package/dist/step-12.schema.d.ts +434 -3
  54. package/dist/step-12.schema.d.ts.map +1 -1
  55. package/dist/step-12.schema.js +72 -3
  56. package/dist/step-12.schema.js.map +1 -1
  57. package/package.json +1 -1
@@ -33,6 +33,384 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
33
33
  separated: "separated";
34
34
  }>>>;
35
35
  familyMembers: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
36
+ linkedMother: z.ZodOptional<z.ZodOptional<z.ZodObject<{
37
+ _id: z.ZodOptional<z.ZodString>;
38
+ relation: z.ZodEnum<{
39
+ other: "other";
40
+ father: "father";
41
+ mother: "mother";
42
+ step_father: "step_father";
43
+ step_mother: "step_mother";
44
+ wife_husband: "wife_husband";
45
+ blood_brother: "blood_brother";
46
+ blood_sister: "blood_sister";
47
+ half_brother: "half_brother";
48
+ half_sister: "half_sister";
49
+ step_brother: "step_brother";
50
+ step_sister: "step_sister";
51
+ son: "son";
52
+ daughter: "daughter";
53
+ }>;
54
+ linkedUserId: z.ZodString;
55
+ cachedName: z.ZodString;
56
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
57
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
58
+ verified: z.ZodDefault<z.ZodBoolean>;
59
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
60
+ verifiedBy: z.ZodOptional<z.ZodString>;
61
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
62
+ }, z.core.$strip>>>;
63
+ linkedStepMother: z.ZodOptional<z.ZodOptional<z.ZodObject<{
64
+ _id: z.ZodOptional<z.ZodString>;
65
+ relation: z.ZodEnum<{
66
+ other: "other";
67
+ father: "father";
68
+ mother: "mother";
69
+ step_father: "step_father";
70
+ step_mother: "step_mother";
71
+ wife_husband: "wife_husband";
72
+ blood_brother: "blood_brother";
73
+ blood_sister: "blood_sister";
74
+ half_brother: "half_brother";
75
+ half_sister: "half_sister";
76
+ step_brother: "step_brother";
77
+ step_sister: "step_sister";
78
+ son: "son";
79
+ daughter: "daughter";
80
+ }>;
81
+ linkedUserId: z.ZodString;
82
+ cachedName: z.ZodString;
83
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
84
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
85
+ verified: z.ZodDefault<z.ZodBoolean>;
86
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
87
+ verifiedBy: z.ZodOptional<z.ZodString>;
88
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
89
+ }, z.core.$strip>>>;
90
+ linkedFather: z.ZodOptional<z.ZodOptional<z.ZodObject<{
91
+ _id: z.ZodOptional<z.ZodString>;
92
+ relation: z.ZodEnum<{
93
+ other: "other";
94
+ father: "father";
95
+ mother: "mother";
96
+ step_father: "step_father";
97
+ step_mother: "step_mother";
98
+ wife_husband: "wife_husband";
99
+ blood_brother: "blood_brother";
100
+ blood_sister: "blood_sister";
101
+ half_brother: "half_brother";
102
+ half_sister: "half_sister";
103
+ step_brother: "step_brother";
104
+ step_sister: "step_sister";
105
+ son: "son";
106
+ daughter: "daughter";
107
+ }>;
108
+ linkedUserId: z.ZodString;
109
+ cachedName: z.ZodString;
110
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
111
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
112
+ verified: z.ZodDefault<z.ZodBoolean>;
113
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
114
+ verifiedBy: z.ZodOptional<z.ZodString>;
115
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
116
+ }, z.core.$strip>>>;
117
+ linkedStepFather: z.ZodOptional<z.ZodOptional<z.ZodObject<{
118
+ _id: z.ZodOptional<z.ZodString>;
119
+ relation: z.ZodEnum<{
120
+ other: "other";
121
+ father: "father";
122
+ mother: "mother";
123
+ step_father: "step_father";
124
+ step_mother: "step_mother";
125
+ wife_husband: "wife_husband";
126
+ blood_brother: "blood_brother";
127
+ blood_sister: "blood_sister";
128
+ half_brother: "half_brother";
129
+ half_sister: "half_sister";
130
+ step_brother: "step_brother";
131
+ step_sister: "step_sister";
132
+ son: "son";
133
+ daughter: "daughter";
134
+ }>;
135
+ linkedUserId: z.ZodString;
136
+ cachedName: z.ZodString;
137
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
138
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
139
+ verified: z.ZodDefault<z.ZodBoolean>;
140
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
141
+ verifiedBy: z.ZodOptional<z.ZodString>;
142
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
143
+ }, z.core.$strip>>>;
144
+ linkedSpouses: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
145
+ _id: z.ZodOptional<z.ZodString>;
146
+ relation: z.ZodEnum<{
147
+ other: "other";
148
+ father: "father";
149
+ mother: "mother";
150
+ step_father: "step_father";
151
+ step_mother: "step_mother";
152
+ wife_husband: "wife_husband";
153
+ blood_brother: "blood_brother";
154
+ blood_sister: "blood_sister";
155
+ half_brother: "half_brother";
156
+ half_sister: "half_sister";
157
+ step_brother: "step_brother";
158
+ step_sister: "step_sister";
159
+ son: "son";
160
+ daughter: "daughter";
161
+ }>;
162
+ linkedUserId: z.ZodString;
163
+ cachedName: z.ZodString;
164
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
165
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
166
+ verified: z.ZodDefault<z.ZodBoolean>;
167
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
168
+ verifiedBy: z.ZodOptional<z.ZodString>;
169
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
170
+ }, z.core.$strip>>>>;
171
+ linkedBloodSisters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
172
+ _id: z.ZodOptional<z.ZodString>;
173
+ relation: z.ZodEnum<{
174
+ other: "other";
175
+ father: "father";
176
+ mother: "mother";
177
+ step_father: "step_father";
178
+ step_mother: "step_mother";
179
+ wife_husband: "wife_husband";
180
+ blood_brother: "blood_brother";
181
+ blood_sister: "blood_sister";
182
+ half_brother: "half_brother";
183
+ half_sister: "half_sister";
184
+ step_brother: "step_brother";
185
+ step_sister: "step_sister";
186
+ son: "son";
187
+ daughter: "daughter";
188
+ }>;
189
+ linkedUserId: z.ZodString;
190
+ cachedName: z.ZodString;
191
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
192
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
193
+ verified: z.ZodDefault<z.ZodBoolean>;
194
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
195
+ verifiedBy: z.ZodOptional<z.ZodString>;
196
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
197
+ }, z.core.$strip>>>>;
198
+ linkedHalfSisters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
199
+ _id: z.ZodOptional<z.ZodString>;
200
+ relation: z.ZodEnum<{
201
+ other: "other";
202
+ father: "father";
203
+ mother: "mother";
204
+ step_father: "step_father";
205
+ step_mother: "step_mother";
206
+ wife_husband: "wife_husband";
207
+ blood_brother: "blood_brother";
208
+ blood_sister: "blood_sister";
209
+ half_brother: "half_brother";
210
+ half_sister: "half_sister";
211
+ step_brother: "step_brother";
212
+ step_sister: "step_sister";
213
+ son: "son";
214
+ daughter: "daughter";
215
+ }>;
216
+ linkedUserId: z.ZodString;
217
+ cachedName: z.ZodString;
218
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
219
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
220
+ verified: z.ZodDefault<z.ZodBoolean>;
221
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
222
+ verifiedBy: z.ZodOptional<z.ZodString>;
223
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
224
+ }, z.core.$strip>>>>;
225
+ linkedStepSisters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
226
+ _id: z.ZodOptional<z.ZodString>;
227
+ relation: z.ZodEnum<{
228
+ other: "other";
229
+ father: "father";
230
+ mother: "mother";
231
+ step_father: "step_father";
232
+ step_mother: "step_mother";
233
+ wife_husband: "wife_husband";
234
+ blood_brother: "blood_brother";
235
+ blood_sister: "blood_sister";
236
+ half_brother: "half_brother";
237
+ half_sister: "half_sister";
238
+ step_brother: "step_brother";
239
+ step_sister: "step_sister";
240
+ son: "son";
241
+ daughter: "daughter";
242
+ }>;
243
+ linkedUserId: z.ZodString;
244
+ cachedName: z.ZodString;
245
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
246
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
247
+ verified: z.ZodDefault<z.ZodBoolean>;
248
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
249
+ verifiedBy: z.ZodOptional<z.ZodString>;
250
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
251
+ }, z.core.$strip>>>>;
252
+ linkedBloodBrothers: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
253
+ _id: z.ZodOptional<z.ZodString>;
254
+ relation: z.ZodEnum<{
255
+ other: "other";
256
+ father: "father";
257
+ mother: "mother";
258
+ step_father: "step_father";
259
+ step_mother: "step_mother";
260
+ wife_husband: "wife_husband";
261
+ blood_brother: "blood_brother";
262
+ blood_sister: "blood_sister";
263
+ half_brother: "half_brother";
264
+ half_sister: "half_sister";
265
+ step_brother: "step_brother";
266
+ step_sister: "step_sister";
267
+ son: "son";
268
+ daughter: "daughter";
269
+ }>;
270
+ linkedUserId: z.ZodString;
271
+ cachedName: z.ZodString;
272
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
273
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
274
+ verified: z.ZodDefault<z.ZodBoolean>;
275
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
276
+ verifiedBy: z.ZodOptional<z.ZodString>;
277
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
278
+ }, z.core.$strip>>>>;
279
+ linkedHalfBrothers: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
280
+ _id: z.ZodOptional<z.ZodString>;
281
+ relation: z.ZodEnum<{
282
+ other: "other";
283
+ father: "father";
284
+ mother: "mother";
285
+ step_father: "step_father";
286
+ step_mother: "step_mother";
287
+ wife_husband: "wife_husband";
288
+ blood_brother: "blood_brother";
289
+ blood_sister: "blood_sister";
290
+ half_brother: "half_brother";
291
+ half_sister: "half_sister";
292
+ step_brother: "step_brother";
293
+ step_sister: "step_sister";
294
+ son: "son";
295
+ daughter: "daughter";
296
+ }>;
297
+ linkedUserId: z.ZodString;
298
+ cachedName: z.ZodString;
299
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
300
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
301
+ verified: z.ZodDefault<z.ZodBoolean>;
302
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
303
+ verifiedBy: z.ZodOptional<z.ZodString>;
304
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
305
+ }, z.core.$strip>>>>;
306
+ linkedStepBrothers: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
307
+ _id: z.ZodOptional<z.ZodString>;
308
+ relation: z.ZodEnum<{
309
+ other: "other";
310
+ father: "father";
311
+ mother: "mother";
312
+ step_father: "step_father";
313
+ step_mother: "step_mother";
314
+ wife_husband: "wife_husband";
315
+ blood_brother: "blood_brother";
316
+ blood_sister: "blood_sister";
317
+ half_brother: "half_brother";
318
+ half_sister: "half_sister";
319
+ step_brother: "step_brother";
320
+ step_sister: "step_sister";
321
+ son: "son";
322
+ daughter: "daughter";
323
+ }>;
324
+ linkedUserId: z.ZodString;
325
+ cachedName: z.ZodString;
326
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
327
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
328
+ verified: z.ZodDefault<z.ZodBoolean>;
329
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
330
+ verifiedBy: z.ZodOptional<z.ZodString>;
331
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
332
+ }, z.core.$strip>>>>;
333
+ linkedDaughters: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
334
+ _id: z.ZodOptional<z.ZodString>;
335
+ relation: z.ZodEnum<{
336
+ other: "other";
337
+ father: "father";
338
+ mother: "mother";
339
+ step_father: "step_father";
340
+ step_mother: "step_mother";
341
+ wife_husband: "wife_husband";
342
+ blood_brother: "blood_brother";
343
+ blood_sister: "blood_sister";
344
+ half_brother: "half_brother";
345
+ half_sister: "half_sister";
346
+ step_brother: "step_brother";
347
+ step_sister: "step_sister";
348
+ son: "son";
349
+ daughter: "daughter";
350
+ }>;
351
+ linkedUserId: z.ZodString;
352
+ cachedName: z.ZodString;
353
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
354
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
355
+ verified: z.ZodDefault<z.ZodBoolean>;
356
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
357
+ verifiedBy: z.ZodOptional<z.ZodString>;
358
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
359
+ }, z.core.$strip>>>>;
360
+ linkedSons: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
361
+ _id: z.ZodOptional<z.ZodString>;
362
+ relation: z.ZodEnum<{
363
+ other: "other";
364
+ father: "father";
365
+ mother: "mother";
366
+ step_father: "step_father";
367
+ step_mother: "step_mother";
368
+ wife_husband: "wife_husband";
369
+ blood_brother: "blood_brother";
370
+ blood_sister: "blood_sister";
371
+ half_brother: "half_brother";
372
+ half_sister: "half_sister";
373
+ step_brother: "step_brother";
374
+ step_sister: "step_sister";
375
+ son: "son";
376
+ daughter: "daughter";
377
+ }>;
378
+ linkedUserId: z.ZodString;
379
+ cachedName: z.ZodString;
380
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
381
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
382
+ verified: z.ZodDefault<z.ZodBoolean>;
383
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
384
+ verifiedBy: z.ZodOptional<z.ZodString>;
385
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
386
+ }, z.core.$strip>>>>;
387
+ linkedOthers: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
388
+ _id: z.ZodOptional<z.ZodString>;
389
+ relation: z.ZodEnum<{
390
+ other: "other";
391
+ father: "father";
392
+ mother: "mother";
393
+ step_father: "step_father";
394
+ step_mother: "step_mother";
395
+ wife_husband: "wife_husband";
396
+ blood_brother: "blood_brother";
397
+ blood_sister: "blood_sister";
398
+ half_brother: "half_brother";
399
+ half_sister: "half_sister";
400
+ step_brother: "step_brother";
401
+ step_sister: "step_sister";
402
+ son: "son";
403
+ daughter: "daughter";
404
+ }>;
405
+ linkedUserId: z.ZodString;
406
+ cachedName: z.ZodString;
407
+ cachedAvatarUrl: z.ZodOptional<z.ZodString>;
408
+ mutuallyConfirmed: z.ZodDefault<z.ZodBoolean>;
409
+ verified: z.ZodDefault<z.ZodBoolean>;
410
+ verifiedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
411
+ verifiedBy: z.ZodOptional<z.ZodString>;
412
+ createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
413
+ }, z.core.$strip>>>>;
36
414
  numberOfDependents: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
37
415
  housingType: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
38
416
  other: "other";
@@ -77,25 +455,73 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
77
455
  no_fixed_income: "no_fixed_income";
78
456
  }>>>;
79
457
  currentAddress: z.ZodOptional<z.ZodOptional<z.ZodObject<{
80
- state: z.ZodOptional<z.ZodString>;
81
- district: z.ZodOptional<z.ZodString>;
82
- village: z.ZodOptional<z.ZodString>;
458
+ state: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
459
+ _id: z.ZodOptional<z.ZodString>;
460
+ name: z.ZodString;
461
+ type: z.ZodOptional<z.ZodString>;
462
+ }, z.core.$strip>]>>>;
463
+ district: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
464
+ _id: z.ZodOptional<z.ZodString>;
465
+ name: z.ZodString;
466
+ type: z.ZodOptional<z.ZodString>;
467
+ }, z.core.$strip>]>>>;
468
+ village: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
469
+ _id: z.ZodOptional<z.ZodString>;
470
+ name: z.ZodString;
471
+ type: z.ZodOptional<z.ZodString>;
472
+ }, z.core.$strip>]>>>;
83
473
  }, z.core.$strip>>>;
84
474
  permanentAddress: z.ZodOptional<z.ZodOptional<z.ZodObject<{
85
- state: z.ZodOptional<z.ZodString>;
86
- district: z.ZodOptional<z.ZodString>;
87
- village: z.ZodOptional<z.ZodString>;
475
+ state: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
476
+ _id: z.ZodOptional<z.ZodString>;
477
+ name: z.ZodString;
478
+ type: z.ZodOptional<z.ZodString>;
479
+ }, z.core.$strip>]>>>;
480
+ district: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
481
+ _id: z.ZodOptional<z.ZodString>;
482
+ name: z.ZodString;
483
+ type: z.ZodOptional<z.ZodString>;
484
+ }, z.core.$strip>]>>>;
485
+ village: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
486
+ _id: z.ZodOptional<z.ZodString>;
487
+ name: z.ZodString;
488
+ type: z.ZodOptional<z.ZodString>;
489
+ }, z.core.$strip>]>>>;
88
490
  sameAsCurrent: z.ZodOptional<z.ZodBoolean>;
89
491
  }, z.core.$strip>>>;
90
492
  homeNativePlace: z.ZodOptional<z.ZodOptional<z.ZodObject<{
91
- state: z.ZodOptional<z.ZodString>;
92
- district: z.ZodOptional<z.ZodString>;
93
- village: z.ZodOptional<z.ZodString>;
493
+ state: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
494
+ _id: z.ZodOptional<z.ZodString>;
495
+ name: z.ZodString;
496
+ type: z.ZodOptional<z.ZodString>;
497
+ }, z.core.$strip>]>>>;
498
+ district: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
499
+ _id: z.ZodOptional<z.ZodString>;
500
+ name: z.ZodString;
501
+ type: z.ZodOptional<z.ZodString>;
502
+ }, z.core.$strip>]>>>;
503
+ village: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
504
+ _id: z.ZodOptional<z.ZodString>;
505
+ name: z.ZodString;
506
+ type: z.ZodOptional<z.ZodString>;
507
+ }, z.core.$strip>]>>>;
94
508
  }, z.core.$strip>>>;
95
509
  ancestralPlace: z.ZodOptional<z.ZodOptional<z.ZodObject<{
96
- state: z.ZodOptional<z.ZodString>;
97
- district: z.ZodOptional<z.ZodString>;
98
- village: z.ZodOptional<z.ZodString>;
510
+ state: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
511
+ _id: z.ZodOptional<z.ZodString>;
512
+ name: z.ZodString;
513
+ type: z.ZodOptional<z.ZodString>;
514
+ }, z.core.$strip>]>>>;
515
+ district: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
516
+ _id: z.ZodOptional<z.ZodString>;
517
+ name: z.ZodString;
518
+ type: z.ZodOptional<z.ZodString>;
519
+ }, z.core.$strip>]>>>;
520
+ village: z.ZodOptional<z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
521
+ _id: z.ZodOptional<z.ZodString>;
522
+ name: z.ZodString;
523
+ type: z.ZodOptional<z.ZodString>;
524
+ }, z.core.$strip>]>>>;
99
525
  }, z.core.$strip>>>;
100
526
  viewOnAnimalCruelty: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
101
527
  prefer_not_to_say: "prefer_not_to_say";
@@ -105,9 +531,7 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
105
531
  acceptable_in_tradition: "acceptable_in_tradition";
106
532
  }>>>;
107
533
  viewOnLgbtqStatements: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
108
- viewOnLgbtqOpinion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
109
534
  viewOnTransgenderInclusion: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodString>>>;
110
- viewOnTransgenderOpinion: z.ZodOptional<z.ZodOptional<z.ZodString>>;
111
535
  facingCasteDiscrimination: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
112
536
  NO: "NO";
113
537
  YES_OFTEN: "YES_OFTEN";
@@ -232,7 +656,48 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
232
656
  retired: "retired";
233
657
  daily_wage: "daily_wage";
234
658
  }>>>;
235
- occupation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
659
+ occupation: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
660
+ other: "other";
661
+ prefer_not_to_say: "prefer_not_to_say";
662
+ self_employed: "self_employed";
663
+ student: "student";
664
+ homemaker: "homemaker";
665
+ retired: "retired";
666
+ it_software: "it_software";
667
+ engineering: "engineering";
668
+ healthcare_doctor: "healthcare_doctor";
669
+ healthcare_nursing: "healthcare_nursing";
670
+ healthcare_pharma: "healthcare_pharma";
671
+ psychology_therapy: "psychology_therapy";
672
+ education_teaching: "education_teaching";
673
+ science_research: "science_research";
674
+ finance_banking: "finance_banking";
675
+ chartered_accountant: "chartered_accountant";
676
+ business_management: "business_management";
677
+ arts_entertainment: "arts_entertainment";
678
+ media_communication: "media_communication";
679
+ design_creative: "design_creative";
680
+ civil_services: "civil_services";
681
+ government_public: "government_public";
682
+ defence_military: "defence_military";
683
+ police_law_enforcement: "police_law_enforcement";
684
+ legal: "legal";
685
+ skilled_trades: "skilled_trades";
686
+ transport_logistics: "transport_logistics";
687
+ hospitality_travel: "hospitality_travel";
688
+ beauty_wellness: "beauty_wellness";
689
+ agriculture_farming: "agriculture_farming";
690
+ real_estate: "real_estate";
691
+ retail_ecommerce: "retail_ecommerce";
692
+ manufacturing: "manufacturing";
693
+ merchant_navy: "merchant_navy";
694
+ ngo_social_work: "ngo_social_work";
695
+ religious_spiritual: "religious_spiritual";
696
+ freelancer_gig: "freelancer_gig";
697
+ content_creator: "content_creator";
698
+ not_working: "not_working";
699
+ differently_abled_pension: "differently_abled_pension";
700
+ }>>>;
236
701
  workShift: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
237
702
  day_shift: "day_shift";
238
703
  night_shift: "night_shift";
@@ -255,7 +720,48 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
255
720
  not_applicable: "not_applicable";
256
721
  }>>>;
257
722
  incomeRange: z.ZodOptional<z.ZodOptional<z.ZodString>>;
258
- dreamOccupation: z.ZodOptional<z.ZodOptional<z.ZodString>>;
723
+ dreamOccupation: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
724
+ other: "other";
725
+ prefer_not_to_say: "prefer_not_to_say";
726
+ self_employed: "self_employed";
727
+ student: "student";
728
+ homemaker: "homemaker";
729
+ retired: "retired";
730
+ it_software: "it_software";
731
+ engineering: "engineering";
732
+ healthcare_doctor: "healthcare_doctor";
733
+ healthcare_nursing: "healthcare_nursing";
734
+ healthcare_pharma: "healthcare_pharma";
735
+ psychology_therapy: "psychology_therapy";
736
+ education_teaching: "education_teaching";
737
+ science_research: "science_research";
738
+ finance_banking: "finance_banking";
739
+ chartered_accountant: "chartered_accountant";
740
+ business_management: "business_management";
741
+ arts_entertainment: "arts_entertainment";
742
+ media_communication: "media_communication";
743
+ design_creative: "design_creative";
744
+ civil_services: "civil_services";
745
+ government_public: "government_public";
746
+ defence_military: "defence_military";
747
+ police_law_enforcement: "police_law_enforcement";
748
+ legal: "legal";
749
+ skilled_trades: "skilled_trades";
750
+ transport_logistics: "transport_logistics";
751
+ hospitality_travel: "hospitality_travel";
752
+ beauty_wellness: "beauty_wellness";
753
+ agriculture_farming: "agriculture_farming";
754
+ real_estate: "real_estate";
755
+ retail_ecommerce: "retail_ecommerce";
756
+ manufacturing: "manufacturing";
757
+ merchant_navy: "merchant_navy";
758
+ ngo_social_work: "ngo_social_work";
759
+ religious_spiritual: "religious_spiritual";
760
+ freelancer_gig: "freelancer_gig";
761
+ content_creator: "content_creator";
762
+ not_working: "not_working";
763
+ differently_abled_pension: "differently_abled_pension";
764
+ }>>>;
259
765
  highestQualification: z.ZodOptional<z.ZodOptional<z.ZodEnum<{
260
766
  CLASS_10: "CLASS_10";
261
767
  CLASS_12: "CLASS_12";
@@ -332,7 +838,6 @@ export declare const udpOnboardingFormSchema: z.ZodObject<{
332
838
  yearOfCompletion: z.ZodOptional<z.ZodString>;
333
839
  fieldOrSubject: z.ZodOptional<z.ZodString>;
334
840
  }, z.core.$strip>>>>;
335
- educationNotes: z.ZodOptional<z.ZodOptional<z.ZodString>>;
336
841
  mbtiType: z.ZodOptional<z.ZodOptional<z.ZodString>>;
337
842
  oceanScores: z.ZodOptional<z.ZodOptional<z.ZodObject<{
338
843
  openness: z.ZodOptional<z.ZodNumber>;
@@ -1 +1 @@
1
- {"version":3,"file":"onboarding-form.d.ts","sourceRoot":"","sources":["../src/onboarding-form.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB;;;;;;;;GAQG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAoCxB,CAAC;AAEb,uEAAuE;AACvE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
1
+ {"version":3,"file":"onboarding-form.d.ts","sourceRoot":"","sources":["../src/onboarding-form.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAcxB;;;;;;;;GAQG;AACH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAoCxB,CAAC;AAEb,uEAAuE;AACvE,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"06-education.d.ts","sourceRoot":"","sources":["../../src/profile-fields/06-education.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;EASvB,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUf,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqCjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;EAShB,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CpB,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CA0C3D,CAAC;AAEX,eAAO,MAAM,SAAS,EAAE,UA4HvB,CAAC"}
1
+ {"version":3,"file":"06-education.d.ts","sourceRoot":"","sources":["../../src/profile-fields/06-education.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;EASvB,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUf,CAAC;AAEX;;;GAGG;AACH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqCjB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;EAShB,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+CpB,CAAC;AAEX;;;;GAIG;AACH,eAAO,MAAM,sBAAsB,EAAE,MAAM,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CA0C3D,CAAC;AAEX,eAAO,MAAM,SAAS,EAAE,UAmHvB,CAAC"}
@@ -295,15 +295,6 @@ export const education = {
295
295
  isOnboarding: true,
296
296
  optional: true,
297
297
  },
298
- {
299
- order: 10,
300
- key: 'educationNotes',
301
- label: 'Education Notes',
302
- type: 'textarea',
303
- step: 6,
304
- isOnboarding: true,
305
- optional: true,
306
- },
307
298
  ],
308
299
  };
309
300
  //# sourceMappingURL=06-education.js.map