@dakkitor/api-contracts 1.1.107 → 1.1.109
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/actives/actives.contract.d.ts +2577 -2577
- package/dist/agent-client-links/agent-client-links.contract.d.ts +486 -486
- package/dist/auth/auth.contract.d.ts +16 -16
- package/dist/bookings/bookings.contract.d.ts +9898 -9898
- package/dist/call-history/call-history.contract.d.ts +483 -453
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.js +3 -1
- package/dist/client-contacts/client-contacts.contract.d.ts +26 -26
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +994 -994
- package/dist/collaborations/collaborations.contract.d.ts +868 -868
- package/dist/common/common-schemas.d.ts +11 -0
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +8 -1
- package/dist/dashboards/dashboard-widgets.contract.d.ts +54 -48
- package/dist/dashboards/dashboard-widgets.contract.d.ts.map +1 -1
- package/dist/dashboards/dashboard-widgets.contract.js +18 -9
- package/dist/dashboards/dashboard.contract.d.ts +14 -14
- package/dist/jobs/jobs.contract.d.ts +1756 -1756
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +163 -163
- package/dist/leads/leads.contract.d.ts +65 -65
- package/dist/users/users.contract.d.ts +128 -128
- package/dist/workers/workers.contract.d.ts +172 -172
- package/package.json +1 -1
|
@@ -94,27 +94,27 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
94
94
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
95
95
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
96
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
|
|
97
|
+
id: string;
|
|
98
|
+
createdAt: string;
|
|
99
|
+
updatedAt: string;
|
|
98
100
|
firstName: string;
|
|
101
|
+
lastName: string;
|
|
99
102
|
email: string;
|
|
100
|
-
createdAt: string;
|
|
101
|
-
id: string;
|
|
102
103
|
phoneNumbers: {
|
|
103
104
|
id: string;
|
|
104
105
|
phoneNumber: string;
|
|
105
106
|
isPrimary: boolean;
|
|
106
107
|
description?: string | null | undefined;
|
|
107
108
|
}[];
|
|
108
|
-
updatedAt: string;
|
|
109
109
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
110
110
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
111
111
|
}, {
|
|
112
|
-
lastName: string;
|
|
113
|
-
firstName: string;
|
|
114
|
-
email: string;
|
|
115
|
-
createdAt: string | Date;
|
|
116
112
|
id: string;
|
|
113
|
+
createdAt: string | Date;
|
|
117
114
|
updatedAt: string | Date;
|
|
115
|
+
firstName: string;
|
|
116
|
+
lastName: string;
|
|
117
|
+
email: string;
|
|
118
118
|
phoneNumbers?: {
|
|
119
119
|
id: string;
|
|
120
120
|
phoneNumber: string;
|
|
@@ -153,8 +153,8 @@ export declare const CreateUserSchema: z.ZodObject<{
|
|
|
153
153
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
154
154
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
155
155
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
-
lastName: string;
|
|
157
156
|
firstName: string;
|
|
157
|
+
lastName: string;
|
|
158
158
|
email: string;
|
|
159
159
|
phoneNumbers: {
|
|
160
160
|
phoneNumber: string;
|
|
@@ -165,8 +165,8 @@ export declare const CreateUserSchema: z.ZodObject<{
|
|
|
165
165
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
166
166
|
password?: string | undefined;
|
|
167
167
|
}, {
|
|
168
|
-
lastName: string;
|
|
169
168
|
firstName: string;
|
|
169
|
+
lastName: string;
|
|
170
170
|
email: string;
|
|
171
171
|
phoneNumbers: {
|
|
172
172
|
phoneNumber: string;
|
|
@@ -221,8 +221,8 @@ export declare const UpdateUserSchema: z.ZodObject<{
|
|
|
221
221
|
roles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>>;
|
|
222
222
|
office: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>>;
|
|
223
223
|
}, "strip", z.ZodTypeAny, {
|
|
224
|
-
lastName?: string | undefined;
|
|
225
224
|
firstName?: string | undefined;
|
|
225
|
+
lastName?: string | undefined;
|
|
226
226
|
email?: string | undefined;
|
|
227
227
|
phoneNumbers?: {
|
|
228
228
|
id?: string | undefined;
|
|
@@ -234,8 +234,8 @@ export declare const UpdateUserSchema: z.ZodObject<{
|
|
|
234
234
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
235
235
|
password?: string | undefined;
|
|
236
236
|
}, {
|
|
237
|
-
lastName?: string | undefined;
|
|
238
237
|
firstName?: string | undefined;
|
|
238
|
+
lastName?: string | undefined;
|
|
239
239
|
email?: string | undefined;
|
|
240
240
|
phoneNumbers?: {
|
|
241
241
|
id?: string | undefined;
|
|
@@ -270,29 +270,29 @@ export declare const FilterUserSchema: z.ZodObject<{
|
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
271
|
limit: number;
|
|
272
272
|
page: number;
|
|
273
|
+
name?: string | undefined;
|
|
274
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | undefined;
|
|
275
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
273
276
|
email?: string | undefined;
|
|
274
277
|
roles?: {
|
|
275
278
|
values?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
276
279
|
requireAll?: boolean | undefined;
|
|
277
280
|
} | undefined;
|
|
278
281
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | undefined;
|
|
279
|
-
name?: string | undefined;
|
|
280
282
|
phone?: string | undefined;
|
|
281
|
-
sortBy?: "lastName" | "firstName" | "email" | "createdAt" | undefined;
|
|
282
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
283
283
|
}, {
|
|
284
|
+
limit?: number | undefined;
|
|
285
|
+
page?: number | undefined;
|
|
286
|
+
name?: string | undefined;
|
|
287
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | undefined;
|
|
288
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
284
289
|
email?: string | undefined;
|
|
285
290
|
roles?: {
|
|
286
291
|
values?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
287
292
|
requireAll?: unknown;
|
|
288
293
|
} | undefined;
|
|
289
294
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | undefined;
|
|
290
|
-
limit?: number | undefined;
|
|
291
|
-
page?: number | undefined;
|
|
292
|
-
name?: string | undefined;
|
|
293
295
|
phone?: string | undefined;
|
|
294
|
-
sortBy?: "lastName" | "firstName" | "email" | "createdAt" | undefined;
|
|
295
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
296
296
|
}>;
|
|
297
297
|
export declare const ProfileSchema: z.ZodObject<{
|
|
298
298
|
id: z.ZodString;
|
|
@@ -318,23 +318,23 @@ export declare const ProfileSchema: z.ZodObject<{
|
|
|
318
318
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
319
319
|
impersonatedBy: z.ZodOptional<z.ZodString>;
|
|
320
320
|
}, "strip", z.ZodTypeAny, {
|
|
321
|
-
email: string;
|
|
322
321
|
id: string;
|
|
322
|
+
email: string;
|
|
323
323
|
phoneNumbers: {
|
|
324
324
|
id: string;
|
|
325
325
|
phoneNumber: string;
|
|
326
326
|
isPrimary: boolean;
|
|
327
327
|
description?: string | null | undefined;
|
|
328
328
|
}[];
|
|
329
|
-
lastName?: string | undefined;
|
|
330
329
|
firstName?: string | undefined;
|
|
330
|
+
lastName?: string | undefined;
|
|
331
331
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
332
332
|
impersonatedBy?: string | undefined;
|
|
333
333
|
}, {
|
|
334
|
-
email: string;
|
|
335
334
|
id: string;
|
|
336
|
-
|
|
335
|
+
email: string;
|
|
337
336
|
firstName?: string | undefined;
|
|
337
|
+
lastName?: string | undefined;
|
|
338
338
|
phoneNumbers?: {
|
|
339
339
|
id: string;
|
|
340
340
|
phoneNumber: string;
|
|
@@ -349,26 +349,26 @@ export declare const UserAutocompleteResponseSchema: z.ZodObject<{
|
|
|
349
349
|
firstName: z.ZodString;
|
|
350
350
|
lastName: z.ZodString;
|
|
351
351
|
}, "strip", z.ZodTypeAny, {
|
|
352
|
-
lastName: string;
|
|
353
|
-
firstName: string;
|
|
354
352
|
id: string;
|
|
355
|
-
}, {
|
|
356
|
-
lastName: string;
|
|
357
353
|
firstName: string;
|
|
354
|
+
lastName: string;
|
|
355
|
+
}, {
|
|
358
356
|
id: string;
|
|
357
|
+
firstName: string;
|
|
358
|
+
lastName: string;
|
|
359
359
|
}>;
|
|
360
360
|
export declare const UserAutocompleteArraySchema: z.ZodArray<z.ZodObject<{
|
|
361
361
|
id: z.ZodString;
|
|
362
362
|
firstName: z.ZodString;
|
|
363
363
|
lastName: z.ZodString;
|
|
364
364
|
}, "strip", z.ZodTypeAny, {
|
|
365
|
-
lastName: string;
|
|
366
|
-
firstName: string;
|
|
367
365
|
id: string;
|
|
368
|
-
}, {
|
|
369
|
-
lastName: string;
|
|
370
366
|
firstName: string;
|
|
367
|
+
lastName: string;
|
|
368
|
+
}, {
|
|
371
369
|
id: string;
|
|
370
|
+
firstName: string;
|
|
371
|
+
lastName: string;
|
|
372
372
|
}>, "many">;
|
|
373
373
|
export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
374
374
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -397,27 +397,27 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
397
397
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
398
398
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
399
399
|
}, "strip", z.ZodTypeAny, {
|
|
400
|
-
|
|
400
|
+
id: string;
|
|
401
|
+
createdAt: string;
|
|
402
|
+
updatedAt: string;
|
|
401
403
|
firstName: string;
|
|
404
|
+
lastName: string;
|
|
402
405
|
email: string;
|
|
403
|
-
createdAt: string;
|
|
404
|
-
id: string;
|
|
405
406
|
phoneNumbers: {
|
|
406
407
|
id: string;
|
|
407
408
|
phoneNumber: string;
|
|
408
409
|
isPrimary: boolean;
|
|
409
410
|
description?: string | null | undefined;
|
|
410
411
|
}[];
|
|
411
|
-
updatedAt: string;
|
|
412
412
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
413
413
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
414
414
|
}, {
|
|
415
|
-
lastName: string;
|
|
416
|
-
firstName: string;
|
|
417
|
-
email: string;
|
|
418
|
-
createdAt: string | Date;
|
|
419
415
|
id: string;
|
|
416
|
+
createdAt: string | Date;
|
|
420
417
|
updatedAt: string | Date;
|
|
418
|
+
firstName: string;
|
|
419
|
+
lastName: string;
|
|
420
|
+
email: string;
|
|
421
421
|
phoneNumbers?: {
|
|
422
422
|
id: string;
|
|
423
423
|
phoneNumber: string;
|
|
@@ -435,18 +435,18 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
435
435
|
}, "strip", z.ZodTypeAny, {
|
|
436
436
|
limit: number;
|
|
437
437
|
items: {
|
|
438
|
-
|
|
438
|
+
id: string;
|
|
439
|
+
createdAt: string;
|
|
440
|
+
updatedAt: string;
|
|
439
441
|
firstName: string;
|
|
442
|
+
lastName: string;
|
|
440
443
|
email: string;
|
|
441
|
-
createdAt: string;
|
|
442
|
-
id: string;
|
|
443
444
|
phoneNumbers: {
|
|
444
445
|
id: string;
|
|
445
446
|
phoneNumber: string;
|
|
446
447
|
isPrimary: boolean;
|
|
447
448
|
description?: string | null | undefined;
|
|
448
449
|
}[];
|
|
449
|
-
updatedAt: string;
|
|
450
450
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
451
451
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
452
452
|
}[];
|
|
@@ -457,12 +457,12 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
457
457
|
}, {
|
|
458
458
|
limit: number;
|
|
459
459
|
items: {
|
|
460
|
-
lastName: string;
|
|
461
|
-
firstName: string;
|
|
462
|
-
email: string;
|
|
463
|
-
createdAt: string | Date;
|
|
464
460
|
id: string;
|
|
461
|
+
createdAt: string | Date;
|
|
465
462
|
updatedAt: string | Date;
|
|
463
|
+
firstName: string;
|
|
464
|
+
lastName: string;
|
|
465
|
+
email: string;
|
|
466
466
|
phoneNumbers?: {
|
|
467
467
|
id: string;
|
|
468
468
|
phoneNumber: string;
|
|
@@ -529,8 +529,8 @@ export declare const usersContract: {
|
|
|
529
529
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
530
530
|
office: z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>;
|
|
531
531
|
}, "strip", z.ZodTypeAny, {
|
|
532
|
-
lastName: string;
|
|
533
532
|
firstName: string;
|
|
533
|
+
lastName: string;
|
|
534
534
|
email: string;
|
|
535
535
|
phoneNumbers: {
|
|
536
536
|
phoneNumber: string;
|
|
@@ -541,8 +541,8 @@ export declare const usersContract: {
|
|
|
541
541
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
542
542
|
password?: string | undefined;
|
|
543
543
|
}, {
|
|
544
|
-
lastName: string;
|
|
545
544
|
firstName: string;
|
|
545
|
+
lastName: string;
|
|
546
546
|
email: string;
|
|
547
547
|
phoneNumbers: {
|
|
548
548
|
phoneNumber: string;
|
|
@@ -681,27 +681,27 @@ export declare const usersContract: {
|
|
|
681
681
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
682
682
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
683
683
|
}, "strip", z.ZodTypeAny, {
|
|
684
|
-
|
|
684
|
+
id: string;
|
|
685
|
+
createdAt: string;
|
|
686
|
+
updatedAt: string;
|
|
685
687
|
firstName: string;
|
|
688
|
+
lastName: string;
|
|
686
689
|
email: string;
|
|
687
|
-
createdAt: string;
|
|
688
|
-
id: string;
|
|
689
690
|
phoneNumbers: {
|
|
690
691
|
id: string;
|
|
691
692
|
phoneNumber: string;
|
|
692
693
|
isPrimary: boolean;
|
|
693
694
|
description?: string | null | undefined;
|
|
694
695
|
}[];
|
|
695
|
-
updatedAt: string;
|
|
696
696
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
697
697
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
698
698
|
}, {
|
|
699
|
-
lastName: string;
|
|
700
|
-
firstName: string;
|
|
701
|
-
email: string;
|
|
702
|
-
createdAt: string | Date;
|
|
703
699
|
id: string;
|
|
700
|
+
createdAt: string | Date;
|
|
704
701
|
updatedAt: string | Date;
|
|
702
|
+
firstName: string;
|
|
703
|
+
lastName: string;
|
|
704
|
+
email: string;
|
|
705
705
|
phoneNumbers?: {
|
|
706
706
|
id: string;
|
|
707
707
|
phoneNumber: string;
|
|
@@ -739,9 +739,6 @@ export declare const usersContract: {
|
|
|
739
739
|
};
|
|
740
740
|
};
|
|
741
741
|
findAll: {
|
|
742
|
-
metadata: {
|
|
743
|
-
tags: string[];
|
|
744
|
-
};
|
|
745
742
|
query: z.ZodObject<{
|
|
746
743
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
747
744
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -765,30 +762,33 @@ export declare const usersContract: {
|
|
|
765
762
|
}, "strip", z.ZodTypeAny, {
|
|
766
763
|
limit: number;
|
|
767
764
|
page: number;
|
|
765
|
+
name?: string | undefined;
|
|
766
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | undefined;
|
|
767
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
768
768
|
email?: string | undefined;
|
|
769
769
|
roles?: {
|
|
770
770
|
values?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
771
771
|
requireAll?: boolean | undefined;
|
|
772
772
|
} | undefined;
|
|
773
773
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | undefined;
|
|
774
|
-
name?: string | undefined;
|
|
775
774
|
phone?: string | undefined;
|
|
776
|
-
sortBy?: "lastName" | "firstName" | "email" | "createdAt" | undefined;
|
|
777
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
778
775
|
}, {
|
|
776
|
+
limit?: number | undefined;
|
|
777
|
+
page?: number | undefined;
|
|
778
|
+
name?: string | undefined;
|
|
779
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | undefined;
|
|
780
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
779
781
|
email?: string | undefined;
|
|
780
782
|
roles?: {
|
|
781
783
|
values?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
782
784
|
requireAll?: unknown;
|
|
783
785
|
} | undefined;
|
|
784
786
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | undefined;
|
|
785
|
-
limit?: number | undefined;
|
|
786
|
-
page?: number | undefined;
|
|
787
|
-
name?: string | undefined;
|
|
788
787
|
phone?: string | undefined;
|
|
789
|
-
sortBy?: "lastName" | "firstName" | "email" | "createdAt" | undefined;
|
|
790
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
791
788
|
}>;
|
|
789
|
+
metadata: {
|
|
790
|
+
tags: string[];
|
|
791
|
+
};
|
|
792
792
|
summary: "Get all users";
|
|
793
793
|
method: "GET";
|
|
794
794
|
path: "/v2/users";
|
|
@@ -920,27 +920,27 @@ export declare const usersContract: {
|
|
|
920
920
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
921
921
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
922
922
|
}, "strip", z.ZodTypeAny, {
|
|
923
|
-
|
|
923
|
+
id: string;
|
|
924
|
+
createdAt: string;
|
|
925
|
+
updatedAt: string;
|
|
924
926
|
firstName: string;
|
|
927
|
+
lastName: string;
|
|
925
928
|
email: string;
|
|
926
|
-
createdAt: string;
|
|
927
|
-
id: string;
|
|
928
929
|
phoneNumbers: {
|
|
929
930
|
id: string;
|
|
930
931
|
phoneNumber: string;
|
|
931
932
|
isPrimary: boolean;
|
|
932
933
|
description?: string | null | undefined;
|
|
933
934
|
}[];
|
|
934
|
-
updatedAt: string;
|
|
935
935
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
936
936
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
937
937
|
}, {
|
|
938
|
-
lastName: string;
|
|
939
|
-
firstName: string;
|
|
940
|
-
email: string;
|
|
941
|
-
createdAt: string | Date;
|
|
942
938
|
id: string;
|
|
939
|
+
createdAt: string | Date;
|
|
943
940
|
updatedAt: string | Date;
|
|
941
|
+
firstName: string;
|
|
942
|
+
lastName: string;
|
|
943
|
+
email: string;
|
|
944
944
|
phoneNumbers?: {
|
|
945
945
|
id: string;
|
|
946
946
|
phoneNumber: string;
|
|
@@ -958,18 +958,18 @@ export declare const usersContract: {
|
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
959
959
|
limit: number;
|
|
960
960
|
items: {
|
|
961
|
-
|
|
961
|
+
id: string;
|
|
962
|
+
createdAt: string;
|
|
963
|
+
updatedAt: string;
|
|
962
964
|
firstName: string;
|
|
965
|
+
lastName: string;
|
|
963
966
|
email: string;
|
|
964
|
-
createdAt: string;
|
|
965
|
-
id: string;
|
|
966
967
|
phoneNumbers: {
|
|
967
968
|
id: string;
|
|
968
969
|
phoneNumber: string;
|
|
969
970
|
isPrimary: boolean;
|
|
970
971
|
description?: string | null | undefined;
|
|
971
972
|
}[];
|
|
972
|
-
updatedAt: string;
|
|
973
973
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
974
974
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
975
975
|
}[];
|
|
@@ -980,12 +980,12 @@ export declare const usersContract: {
|
|
|
980
980
|
}, {
|
|
981
981
|
limit: number;
|
|
982
982
|
items: {
|
|
983
|
-
lastName: string;
|
|
984
|
-
firstName: string;
|
|
985
|
-
email: string;
|
|
986
|
-
createdAt: string | Date;
|
|
987
983
|
id: string;
|
|
984
|
+
createdAt: string | Date;
|
|
988
985
|
updatedAt: string | Date;
|
|
986
|
+
firstName: string;
|
|
987
|
+
lastName: string;
|
|
988
|
+
email: string;
|
|
989
989
|
phoneNumbers?: {
|
|
990
990
|
id: string;
|
|
991
991
|
phoneNumber: string;
|
|
@@ -1003,9 +1003,6 @@ export declare const usersContract: {
|
|
|
1003
1003
|
};
|
|
1004
1004
|
};
|
|
1005
1005
|
autocomplete: {
|
|
1006
|
-
metadata: {
|
|
1007
|
-
tags: string[];
|
|
1008
|
-
};
|
|
1009
1006
|
query: z.ZodObject<{
|
|
1010
1007
|
query: z.ZodOptional<z.ZodString>;
|
|
1011
1008
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1016,6 +1013,9 @@ export declare const usersContract: {
|
|
|
1016
1013
|
id?: string | undefined;
|
|
1017
1014
|
query?: string | undefined;
|
|
1018
1015
|
}>;
|
|
1016
|
+
metadata: {
|
|
1017
|
+
tags: string[];
|
|
1018
|
+
};
|
|
1019
1019
|
summary: "Get users for autocomplete";
|
|
1020
1020
|
method: "GET";
|
|
1021
1021
|
path: "/v2/users/autocomplete";
|
|
@@ -1125,20 +1125,17 @@ export declare const usersContract: {
|
|
|
1125
1125
|
firstName: z.ZodString;
|
|
1126
1126
|
lastName: z.ZodString;
|
|
1127
1127
|
}, "strip", z.ZodTypeAny, {
|
|
1128
|
-
lastName: string;
|
|
1129
|
-
firstName: string;
|
|
1130
1128
|
id: string;
|
|
1131
|
-
}, {
|
|
1132
|
-
lastName: string;
|
|
1133
1129
|
firstName: string;
|
|
1130
|
+
lastName: string;
|
|
1131
|
+
}, {
|
|
1134
1132
|
id: string;
|
|
1133
|
+
firstName: string;
|
|
1134
|
+
lastName: string;
|
|
1135
1135
|
}>, "many">;
|
|
1136
1136
|
};
|
|
1137
1137
|
};
|
|
1138
1138
|
autocompleteFirstAgent: {
|
|
1139
|
-
metadata: {
|
|
1140
|
-
tags: string[];
|
|
1141
|
-
};
|
|
1142
1139
|
query: z.ZodObject<{
|
|
1143
1140
|
query: z.ZodOptional<z.ZodString>;
|
|
1144
1141
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1149,6 +1146,9 @@ export declare const usersContract: {
|
|
|
1149
1146
|
id?: string | undefined;
|
|
1150
1147
|
query?: string | undefined;
|
|
1151
1148
|
}>;
|
|
1149
|
+
metadata: {
|
|
1150
|
+
tags: string[];
|
|
1151
|
+
};
|
|
1152
1152
|
summary: "Get users with FIRST_AGENT role for autocomplete";
|
|
1153
1153
|
method: "GET";
|
|
1154
1154
|
path: "/v2/users/autocomplete/first-agent";
|
|
@@ -1258,20 +1258,17 @@ export declare const usersContract: {
|
|
|
1258
1258
|
firstName: z.ZodString;
|
|
1259
1259
|
lastName: z.ZodString;
|
|
1260
1260
|
}, "strip", z.ZodTypeAny, {
|
|
1261
|
-
lastName: string;
|
|
1262
|
-
firstName: string;
|
|
1263
1261
|
id: string;
|
|
1264
|
-
}, {
|
|
1265
|
-
lastName: string;
|
|
1266
1262
|
firstName: string;
|
|
1263
|
+
lastName: string;
|
|
1264
|
+
}, {
|
|
1267
1265
|
id: string;
|
|
1266
|
+
firstName: string;
|
|
1267
|
+
lastName: string;
|
|
1268
1268
|
}>, "many">;
|
|
1269
1269
|
};
|
|
1270
1270
|
};
|
|
1271
1271
|
autocompleteSecondAgent: {
|
|
1272
|
-
metadata: {
|
|
1273
|
-
tags: string[];
|
|
1274
|
-
};
|
|
1275
1272
|
query: z.ZodObject<{
|
|
1276
1273
|
query: z.ZodOptional<z.ZodString>;
|
|
1277
1274
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1282,6 +1279,9 @@ export declare const usersContract: {
|
|
|
1282
1279
|
id?: string | undefined;
|
|
1283
1280
|
query?: string | undefined;
|
|
1284
1281
|
}>;
|
|
1282
|
+
metadata: {
|
|
1283
|
+
tags: string[];
|
|
1284
|
+
};
|
|
1285
1285
|
summary: "Get users with SECOND_AGENT role for autocomplete";
|
|
1286
1286
|
method: "GET";
|
|
1287
1287
|
path: "/v2/users/autocomplete/second-agent";
|
|
@@ -1391,13 +1391,13 @@ export declare const usersContract: {
|
|
|
1391
1391
|
firstName: z.ZodString;
|
|
1392
1392
|
lastName: z.ZodString;
|
|
1393
1393
|
}, "strip", z.ZodTypeAny, {
|
|
1394
|
-
lastName: string;
|
|
1395
|
-
firstName: string;
|
|
1396
1394
|
id: string;
|
|
1397
|
-
}, {
|
|
1398
|
-
lastName: string;
|
|
1399
1395
|
firstName: string;
|
|
1396
|
+
lastName: string;
|
|
1397
|
+
}, {
|
|
1400
1398
|
id: string;
|
|
1399
|
+
firstName: string;
|
|
1400
|
+
lastName: string;
|
|
1401
1401
|
}>, "many">;
|
|
1402
1402
|
};
|
|
1403
1403
|
};
|
|
@@ -1533,23 +1533,23 @@ export declare const usersContract: {
|
|
|
1533
1533
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>;
|
|
1534
1534
|
impersonatedBy: z.ZodOptional<z.ZodString>;
|
|
1535
1535
|
}, "strip", z.ZodTypeAny, {
|
|
1536
|
-
email: string;
|
|
1537
1536
|
id: string;
|
|
1537
|
+
email: string;
|
|
1538
1538
|
phoneNumbers: {
|
|
1539
1539
|
id: string;
|
|
1540
1540
|
phoneNumber: string;
|
|
1541
1541
|
isPrimary: boolean;
|
|
1542
1542
|
description?: string | null | undefined;
|
|
1543
1543
|
}[];
|
|
1544
|
-
lastName?: string | undefined;
|
|
1545
1544
|
firstName?: string | undefined;
|
|
1545
|
+
lastName?: string | undefined;
|
|
1546
1546
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1547
1547
|
impersonatedBy?: string | undefined;
|
|
1548
1548
|
}, {
|
|
1549
|
-
email: string;
|
|
1550
1549
|
id: string;
|
|
1551
|
-
|
|
1550
|
+
email: string;
|
|
1552
1551
|
firstName?: string | undefined;
|
|
1552
|
+
lastName?: string | undefined;
|
|
1553
1553
|
phoneNumbers?: {
|
|
1554
1554
|
id: string;
|
|
1555
1555
|
phoneNumber: string;
|
|
@@ -1702,27 +1702,27 @@ export declare const usersContract: {
|
|
|
1702
1702
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1703
1703
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1704
1704
|
}, "strip", z.ZodTypeAny, {
|
|
1705
|
-
|
|
1705
|
+
id: string;
|
|
1706
|
+
createdAt: string;
|
|
1707
|
+
updatedAt: string;
|
|
1706
1708
|
firstName: string;
|
|
1709
|
+
lastName: string;
|
|
1707
1710
|
email: string;
|
|
1708
|
-
createdAt: string;
|
|
1709
|
-
id: string;
|
|
1710
1711
|
phoneNumbers: {
|
|
1711
1712
|
id: string;
|
|
1712
1713
|
phoneNumber: string;
|
|
1713
1714
|
isPrimary: boolean;
|
|
1714
1715
|
description?: string | null | undefined;
|
|
1715
1716
|
}[];
|
|
1716
|
-
updatedAt: string;
|
|
1717
1717
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1718
1718
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1719
1719
|
}, {
|
|
1720
|
-
lastName: string;
|
|
1721
|
-
firstName: string;
|
|
1722
|
-
email: string;
|
|
1723
|
-
createdAt: string | Date;
|
|
1724
1720
|
id: string;
|
|
1721
|
+
createdAt: string | Date;
|
|
1725
1722
|
updatedAt: string | Date;
|
|
1723
|
+
firstName: string;
|
|
1724
|
+
lastName: string;
|
|
1725
|
+
email: string;
|
|
1726
1726
|
phoneNumbers?: {
|
|
1727
1727
|
id: string;
|
|
1728
1728
|
phoneNumber: string;
|
|
@@ -1816,8 +1816,8 @@ export declare const usersContract: {
|
|
|
1816
1816
|
roles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI", "TEAM_LEADS"]>, "many">>>;
|
|
1817
1817
|
office: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodEnum<["ALBANIA", "CRAIOVA", "DANI", "GABI_RECRUTARE", "GEORGIA", "INDIA", "IONITA", "MARIUS_DRAGAN", "MAX_MANGU", "MAXIM_VADIM", "MD_BOGDAN", "MD_DANIEL_CHISINAU", "NEACSU", "ROBERT_DENIS", "ROBERT_RADU", "VICTORIEI_MIRIAM", "VIZIRU", "Y_INDIVIDUALS_RECRUITMENT"]>>>>;
|
|
1818
1818
|
}, "strip", z.ZodTypeAny, {
|
|
1819
|
-
lastName?: string | undefined;
|
|
1820
1819
|
firstName?: string | undefined;
|
|
1820
|
+
lastName?: string | undefined;
|
|
1821
1821
|
email?: string | undefined;
|
|
1822
1822
|
phoneNumbers?: {
|
|
1823
1823
|
id?: string | undefined;
|
|
@@ -1829,8 +1829,8 @@ export declare const usersContract: {
|
|
|
1829
1829
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1830
1830
|
password?: string | undefined;
|
|
1831
1831
|
}, {
|
|
1832
|
-
lastName?: string | undefined;
|
|
1833
1832
|
firstName?: string | undefined;
|
|
1833
|
+
lastName?: string | undefined;
|
|
1834
1834
|
email?: string | undefined;
|
|
1835
1835
|
phoneNumbers?: {
|
|
1836
1836
|
id?: string | undefined;
|
|
@@ -1970,27 +1970,27 @@ export declare const usersContract: {
|
|
|
1970
1970
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1971
1971
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1972
1972
|
}, "strip", z.ZodTypeAny, {
|
|
1973
|
-
|
|
1973
|
+
id: string;
|
|
1974
|
+
createdAt: string;
|
|
1975
|
+
updatedAt: string;
|
|
1974
1976
|
firstName: string;
|
|
1977
|
+
lastName: string;
|
|
1975
1978
|
email: string;
|
|
1976
|
-
createdAt: string;
|
|
1977
|
-
id: string;
|
|
1978
1979
|
phoneNumbers: {
|
|
1979
1980
|
id: string;
|
|
1980
1981
|
phoneNumber: string;
|
|
1981
1982
|
isPrimary: boolean;
|
|
1982
1983
|
description?: string | null | undefined;
|
|
1983
1984
|
}[];
|
|
1984
|
-
updatedAt: string;
|
|
1985
1985
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI" | "TEAM_LEADS")[] | undefined;
|
|
1986
1986
|
office?: "ALBANIA" | "CRAIOVA" | "DANI" | "GABI_RECRUTARE" | "GEORGIA" | "INDIA" | "IONITA" | "MARIUS_DRAGAN" | "MAX_MANGU" | "MAXIM_VADIM" | "MD_BOGDAN" | "MD_DANIEL_CHISINAU" | "NEACSU" | "ROBERT_DENIS" | "ROBERT_RADU" | "VICTORIEI_MIRIAM" | "VIZIRU" | "Y_INDIVIDUALS_RECRUITMENT" | null | undefined;
|
|
1987
1987
|
}, {
|
|
1988
|
-
lastName: string;
|
|
1989
|
-
firstName: string;
|
|
1990
|
-
email: string;
|
|
1991
|
-
createdAt: string | Date;
|
|
1992
1988
|
id: string;
|
|
1989
|
+
createdAt: string | Date;
|
|
1993
1990
|
updatedAt: string | Date;
|
|
1991
|
+
firstName: string;
|
|
1992
|
+
lastName: string;
|
|
1993
|
+
email: string;
|
|
1994
1994
|
phoneNumbers?: {
|
|
1995
1995
|
id: string;
|
|
1996
1996
|
phoneNumber: string;
|