udp-schema 2.26.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.
- package/dist/helpers.d.ts.map +1 -1
- package/dist/helpers.js +11 -1
- package/dist/helpers.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/onboarding-config.d.ts.map +1 -1
- package/dist/onboarding-config.js +106 -0
- package/dist/onboarding-config.js.map +1 -1
- package/dist/onboarding-form.d.ts +378 -0
- package/dist/onboarding-form.d.ts.map +1 -1
- package/dist/profile-fields/07-employment.d.ts.map +1 -1
- package/dist/profile-fields/07-employment.js +175 -35
- package/dist/profile-fields/07-employment.js.map +1 -1
- package/dist/profile-fields/12-household.d.ts +15 -2
- package/dist/profile-fields/12-household.d.ts.map +1 -1
- package/dist/profile-fields/12-household.js +166 -17
- package/dist/profile-fields/12-household.js.map +1 -1
- package/dist/profile-fields/types.d.ts +12 -3
- package/dist/profile-fields/types.d.ts.map +1 -1
- package/dist/profile-fields/types.js.map +1 -1
- package/dist/progress-fields.d.ts.map +1 -1
- package/dist/progress-fields.js +17 -0
- package/dist/progress-fields.js.map +1 -1
- package/dist/step-12.schema.d.ts +434 -3
- package/dist/step-12.schema.d.ts.map +1 -1
- package/dist/step-12.schema.js +72 -3
- package/dist/step-12.schema.js.map +1 -1
- 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";
|
|
@@ -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
|
|
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":"07-employment.d.ts","sourceRoot":"","sources":["../../src/profile-fields/07-employment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC;AAEX;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"07-employment.d.ts","sourceRoot":"","sources":["../../src/profile-fields/07-employment.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAE7C,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;EAS1B,CAAC;AAEX;;;;;;GAMG;AACH,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoMpB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;EAOf,CAAC;AAEX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUrB,CAAC;AAEX,eAAO,MAAM,2BAA2B;;;;;;;;;EAI9B,CAAC;AAEX,eAAO,MAAM,UAAU,EAAE,UAkFxB,CAAC"}
|
|
@@ -17,58 +17,198 @@ export const employmentStatusOptions = [
|
|
|
17
17
|
*/
|
|
18
18
|
export const occupationOptions = [
|
|
19
19
|
// Technology
|
|
20
|
-
{
|
|
21
|
-
|
|
20
|
+
{
|
|
21
|
+
value: 'it_software',
|
|
22
|
+
label: 'IT & Software',
|
|
23
|
+
description: 'Developer, data scientist, IT support, DevOps, etc.',
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
value: 'engineering',
|
|
27
|
+
label: 'Engineering',
|
|
28
|
+
description: 'Civil, mechanical, electrical, chemical, etc.',
|
|
29
|
+
},
|
|
22
30
|
// Healthcare & Medicine
|
|
23
|
-
{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
31
|
+
{
|
|
32
|
+
value: 'healthcare_doctor',
|
|
33
|
+
label: 'Doctor / Physician',
|
|
34
|
+
description: 'MBBS, MD, surgeon, dentist, etc.',
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
value: 'healthcare_nursing',
|
|
38
|
+
label: 'Nursing & Allied Health',
|
|
39
|
+
description: 'Nurse, physiotherapist, lab tech, etc.',
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
value: 'healthcare_pharma',
|
|
43
|
+
label: 'Pharma & Biotech',
|
|
44
|
+
description: 'Pharmaceutical, biotech, clinical research',
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
value: 'psychology_therapy',
|
|
48
|
+
label: 'Psychology & Therapy',
|
|
49
|
+
description: 'Psychologist, counsellor, therapist',
|
|
50
|
+
},
|
|
27
51
|
// Education & Research
|
|
28
|
-
{
|
|
29
|
-
|
|
52
|
+
{
|
|
53
|
+
value: 'education_teaching',
|
|
54
|
+
label: 'Teaching & Training',
|
|
55
|
+
description: 'School teacher, professor, corporate trainer',
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
value: 'science_research',
|
|
59
|
+
label: 'Science & Research',
|
|
60
|
+
description: 'Scientist, lab researcher, academic scholar',
|
|
61
|
+
},
|
|
30
62
|
// Finance & Business
|
|
31
|
-
{
|
|
32
|
-
|
|
33
|
-
|
|
63
|
+
{
|
|
64
|
+
value: 'finance_banking',
|
|
65
|
+
label: 'Finance & Banking',
|
|
66
|
+
description: 'Banking, investment, stock market, insurance',
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
value: 'chartered_accountant',
|
|
70
|
+
label: 'Chartered Accountant (CA)',
|
|
71
|
+
description: 'CA, CS, CMA, auditor',
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
value: 'business_management',
|
|
75
|
+
label: 'Business & Management',
|
|
76
|
+
description: 'Operations, consulting, HR, MBA roles',
|
|
77
|
+
},
|
|
34
78
|
// Creative & Media
|
|
35
|
-
{
|
|
36
|
-
|
|
37
|
-
|
|
79
|
+
{
|
|
80
|
+
value: 'arts_entertainment',
|
|
81
|
+
label: 'Arts & Entertainment',
|
|
82
|
+
description: 'Music, film, dance, fine arts, theatre',
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
value: 'media_communication',
|
|
86
|
+
label: 'Media & Communication',
|
|
87
|
+
description: 'Journalism, PR, advertising, content',
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
value: 'design_creative',
|
|
91
|
+
label: 'Design & Creative',
|
|
92
|
+
description: 'Graphic design, UI/UX, fashion design, architecture',
|
|
93
|
+
},
|
|
38
94
|
// Government & Public Service
|
|
39
|
-
{
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
95
|
+
{
|
|
96
|
+
value: 'civil_services',
|
|
97
|
+
label: 'Civil Services (IAS/IPS/IFS)',
|
|
98
|
+
description: 'Government officer cadre — IAS, IPS, IRS, IFS',
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
value: 'government_public',
|
|
102
|
+
label: 'Government / Public Sector',
|
|
103
|
+
description: 'PSU, state govt, municipal, railway, postal',
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
value: 'defence_military',
|
|
107
|
+
label: 'Defence / Military',
|
|
108
|
+
description: 'Army, Navy, Air Force, paramilitary, coast guard',
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
value: 'police_law_enforcement',
|
|
112
|
+
label: 'Police & Law Enforcement',
|
|
113
|
+
description: 'Police, CBI, NIA, customs, excise',
|
|
114
|
+
},
|
|
43
115
|
// Legal
|
|
44
|
-
{
|
|
116
|
+
{
|
|
117
|
+
value: 'legal',
|
|
118
|
+
label: 'Legal & Law',
|
|
119
|
+
description: 'Lawyer, advocate, judge, legal advisor, notary',
|
|
120
|
+
},
|
|
45
121
|
// Trades & Services
|
|
46
|
-
{
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
122
|
+
{
|
|
123
|
+
value: 'skilled_trades',
|
|
124
|
+
label: 'Skilled Trades',
|
|
125
|
+
description: 'Electrician, plumber, carpenter, welder, mechanic',
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
value: 'transport_logistics',
|
|
129
|
+
label: 'Transport & Logistics',
|
|
130
|
+
description: 'Driver, delivery, warehouse, supply chain',
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
value: 'hospitality_travel',
|
|
134
|
+
label: 'Hospitality & Tourism',
|
|
135
|
+
description: 'Hotels, restaurants, airlines, travel agency',
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
value: 'beauty_wellness',
|
|
139
|
+
label: 'Beauty & Wellness',
|
|
140
|
+
description: 'Salon, spa, fitness trainer, yoga instructor',
|
|
141
|
+
},
|
|
50
142
|
// Agriculture & Rural
|
|
51
|
-
{
|
|
143
|
+
{
|
|
144
|
+
value: 'agriculture_farming',
|
|
145
|
+
label: 'Agriculture & Farming',
|
|
146
|
+
description: 'Farming, agri-business, dairy, fisheries',
|
|
147
|
+
},
|
|
52
148
|
// Real Estate & Construction
|
|
53
|
-
{
|
|
149
|
+
{
|
|
150
|
+
value: 'real_estate',
|
|
151
|
+
label: 'Real Estate & Construction',
|
|
152
|
+
description: 'Property, builder, interior design, architecture',
|
|
153
|
+
},
|
|
54
154
|
// Retail & Commerce
|
|
55
|
-
{
|
|
56
|
-
|
|
155
|
+
{
|
|
156
|
+
value: 'retail_ecommerce',
|
|
157
|
+
label: 'Retail & E-commerce',
|
|
158
|
+
description: 'Shops, online stores, wholesale, distribution',
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
value: 'manufacturing',
|
|
162
|
+
label: 'Manufacturing & Production',
|
|
163
|
+
description: 'Factory, production, quality control, industrial',
|
|
164
|
+
},
|
|
57
165
|
// Maritime
|
|
58
|
-
{
|
|
166
|
+
{
|
|
167
|
+
value: 'merchant_navy',
|
|
168
|
+
label: 'Merchant Navy',
|
|
169
|
+
description: 'Commercial shipping, maritime, offshore',
|
|
170
|
+
},
|
|
59
171
|
// Social & NGO
|
|
60
|
-
{
|
|
61
|
-
|
|
172
|
+
{
|
|
173
|
+
value: 'ngo_social_work',
|
|
174
|
+
label: 'NGO & Social Work',
|
|
175
|
+
description: 'Non-profit, social worker, community development',
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
value: 'religious_spiritual',
|
|
179
|
+
label: 'Religious / Spiritual Work',
|
|
180
|
+
description: 'Priest, pujari, maulvi, pastor, monk, spiritual guide',
|
|
181
|
+
},
|
|
62
182
|
// Independent
|
|
63
|
-
{
|
|
64
|
-
|
|
65
|
-
|
|
183
|
+
{
|
|
184
|
+
value: 'freelancer_gig',
|
|
185
|
+
label: 'Freelancer / Gig Worker',
|
|
186
|
+
description: 'Independent contractor, gig economy, Uber/Ola driver',
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
value: 'content_creator',
|
|
190
|
+
label: 'Content Creator / Influencer',
|
|
191
|
+
description: 'YouTuber, blogger, podcaster, Instagram creator',
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
value: 'self_employed',
|
|
195
|
+
label: 'Self-employed / Entrepreneur',
|
|
196
|
+
description: 'Own business, startup founder, shop owner',
|
|
197
|
+
},
|
|
66
198
|
// Non-working
|
|
67
199
|
{ value: 'student', label: 'Student', description: 'Currently pursuing education' },
|
|
68
200
|
{ value: 'homemaker', label: 'Homemaker', description: 'Managing the household full-time' },
|
|
69
201
|
{ value: 'retired', label: 'Retired', description: 'No longer working professionally' },
|
|
70
|
-
{
|
|
71
|
-
|
|
202
|
+
{
|
|
203
|
+
value: 'not_working',
|
|
204
|
+
label: 'Not Currently Working',
|
|
205
|
+
description: 'Between jobs, career break, or job seeking',
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
value: 'differently_abled_pension',
|
|
209
|
+
label: 'On Disability / Pension',
|
|
210
|
+
description: 'Receiving disability benefits or pension',
|
|
211
|
+
},
|
|
72
212
|
{ value: 'other', label: 'Other', description: 'Something not listed above' },
|
|
73
213
|
{ value: 'prefer_not_to_say', label: 'Prefer not to say', description: 'Keep this private' },
|
|
74
214
|
];
|