@dakkitor/api-contracts 1.1.73 → 1.1.75
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 +2959 -2199
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +416 -416
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +2634 -1894
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +0 -2
- package/dist/call-history/call-history.contract.d.ts +409 -409
- package/dist/client-contacts/client-contacts.contract.d.ts +231 -231
- package/dist/clients/clients.contract.d.ts +98 -98
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +1269 -749
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.d.ts +1069 -609
- package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
- package/dist/collaborations/collaborations.contract.js +2 -11
- package/dist/common/common-schemas.d.ts +0 -17
- package/dist/common/common-schemas.d.ts.map +1 -1
- package/dist/common/common-schemas.js +1 -9
- package/dist/companies/companies.contract.d.ts +36 -36
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/jobs/jobs.contract.d.ts +1053 -533
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +344 -344
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +111 -111
- package/dist/leads/leads.contract.d.ts +101 -101
- package/dist/users/users.contract.d.ts +132 -132
- package/dist/workers/workers.contract.d.ts +200 -200
- package/package.json +1 -1
|
@@ -30,23 +30,23 @@ export declare const UserSchema: z.ZodObject<{
|
|
|
30
30
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
31
31
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
|
|
33
|
+
id: string;
|
|
34
|
+
createdAt: string;
|
|
35
|
+
updatedAt: string;
|
|
34
36
|
firstName: string;
|
|
37
|
+
lastName: string;
|
|
35
38
|
email: string;
|
|
36
39
|
phone: string;
|
|
37
|
-
createdAt: string;
|
|
38
|
-
id: string;
|
|
39
|
-
updatedAt: string;
|
|
40
40
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
41
41
|
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;
|
|
42
42
|
}, {
|
|
43
|
-
|
|
43
|
+
id: string;
|
|
44
|
+
createdAt: string | Date;
|
|
45
|
+
updatedAt: string | Date;
|
|
44
46
|
firstName: string;
|
|
47
|
+
lastName: string;
|
|
45
48
|
email: string;
|
|
46
49
|
phone: string;
|
|
47
|
-
createdAt: string | Date;
|
|
48
|
-
id: string;
|
|
49
|
-
updatedAt: string | Date;
|
|
50
50
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
51
51
|
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;
|
|
52
52
|
}>;
|
|
@@ -59,16 +59,16 @@ export declare const CreateUserSchema: z.ZodObject<{
|
|
|
59
59
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
60
60
|
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"]>>>;
|
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
|
62
|
-
lastName: string;
|
|
63
62
|
firstName: string;
|
|
63
|
+
lastName: string;
|
|
64
64
|
email: string;
|
|
65
65
|
phone: string;
|
|
66
66
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
67
67
|
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;
|
|
68
68
|
password?: string | undefined;
|
|
69
69
|
}, {
|
|
70
|
-
lastName: string;
|
|
71
70
|
firstName: string;
|
|
71
|
+
lastName: string;
|
|
72
72
|
email: string;
|
|
73
73
|
phone: string;
|
|
74
74
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
@@ -84,16 +84,16 @@ export declare const UpdateUserSchema: z.ZodObject<{
|
|
|
84
84
|
roles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>>;
|
|
85
85
|
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"]>>>>;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
|
-
lastName?: string | undefined;
|
|
88
87
|
firstName?: string | undefined;
|
|
88
|
+
lastName?: string | undefined;
|
|
89
89
|
email?: string | undefined;
|
|
90
90
|
phone?: string | undefined;
|
|
91
91
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
92
92
|
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;
|
|
93
93
|
password?: string | undefined;
|
|
94
94
|
}, {
|
|
95
|
-
lastName?: string | undefined;
|
|
96
95
|
firstName?: string | undefined;
|
|
96
|
+
lastName?: string | undefined;
|
|
97
97
|
email?: string | undefined;
|
|
98
98
|
phone?: string | undefined;
|
|
99
99
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
@@ -123,6 +123,9 @@ export declare const FilterUserSchema: z.ZodObject<{
|
|
|
123
123
|
}, "strip", z.ZodTypeAny, {
|
|
124
124
|
limit: number;
|
|
125
125
|
page: number;
|
|
126
|
+
name?: string | undefined;
|
|
127
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | "phone" | undefined;
|
|
128
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
126
129
|
email?: string | undefined;
|
|
127
130
|
phone?: string | undefined;
|
|
128
131
|
roles?: {
|
|
@@ -130,10 +133,12 @@ export declare const FilterUserSchema: z.ZodObject<{
|
|
|
130
133
|
requireAll?: boolean | undefined;
|
|
131
134
|
} | undefined;
|
|
132
135
|
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;
|
|
136
|
+
}, {
|
|
137
|
+
limit?: number | undefined;
|
|
138
|
+
page?: number | undefined;
|
|
133
139
|
name?: string | undefined;
|
|
134
|
-
sortBy?: "
|
|
140
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | "phone" | undefined;
|
|
135
141
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
136
|
-
}, {
|
|
137
142
|
email?: string | undefined;
|
|
138
143
|
phone?: string | undefined;
|
|
139
144
|
roles?: {
|
|
@@ -141,11 +146,6 @@ export declare const FilterUserSchema: z.ZodObject<{
|
|
|
141
146
|
requireAll?: unknown;
|
|
142
147
|
} | undefined;
|
|
143
148
|
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;
|
|
144
|
-
limit?: number | undefined;
|
|
145
|
-
page?: number | undefined;
|
|
146
|
-
name?: string | undefined;
|
|
147
|
-
sortBy?: "lastName" | "firstName" | "email" | "phone" | "createdAt" | undefined;
|
|
148
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
149
149
|
}>;
|
|
150
150
|
export declare const ProfileSchema: z.ZodObject<{
|
|
151
151
|
id: z.ZodString;
|
|
@@ -155,17 +155,17 @@ export declare const ProfileSchema: z.ZodObject<{
|
|
|
155
155
|
phone: z.ZodOptional<z.ZodString>;
|
|
156
156
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
email: string;
|
|
159
158
|
id: string;
|
|
160
|
-
|
|
159
|
+
email: string;
|
|
161
160
|
firstName?: string | undefined;
|
|
161
|
+
lastName?: string | undefined;
|
|
162
162
|
phone?: string | undefined;
|
|
163
163
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
164
164
|
}, {
|
|
165
|
-
email: string;
|
|
166
165
|
id: string;
|
|
167
|
-
|
|
166
|
+
email: string;
|
|
168
167
|
firstName?: string | undefined;
|
|
168
|
+
lastName?: string | undefined;
|
|
169
169
|
phone?: string | undefined;
|
|
170
170
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
171
171
|
}>;
|
|
@@ -174,26 +174,26 @@ export declare const UserAutocompleteResponseSchema: z.ZodObject<{
|
|
|
174
174
|
firstName: z.ZodString;
|
|
175
175
|
lastName: z.ZodString;
|
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
|
177
|
-
lastName: string;
|
|
178
|
-
firstName: string;
|
|
179
177
|
id: string;
|
|
180
|
-
}, {
|
|
181
|
-
lastName: string;
|
|
182
178
|
firstName: string;
|
|
179
|
+
lastName: string;
|
|
180
|
+
}, {
|
|
183
181
|
id: string;
|
|
182
|
+
firstName: string;
|
|
183
|
+
lastName: string;
|
|
184
184
|
}>;
|
|
185
185
|
export declare const UserAutocompleteArraySchema: z.ZodArray<z.ZodObject<{
|
|
186
186
|
id: z.ZodString;
|
|
187
187
|
firstName: z.ZodString;
|
|
188
188
|
lastName: z.ZodString;
|
|
189
189
|
}, "strip", z.ZodTypeAny, {
|
|
190
|
-
lastName: string;
|
|
191
|
-
firstName: string;
|
|
192
190
|
id: string;
|
|
193
|
-
}, {
|
|
194
|
-
lastName: string;
|
|
195
191
|
firstName: string;
|
|
192
|
+
lastName: string;
|
|
193
|
+
}, {
|
|
196
194
|
id: string;
|
|
195
|
+
firstName: string;
|
|
196
|
+
lastName: string;
|
|
197
197
|
}>, "many">;
|
|
198
198
|
export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
199
199
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -207,23 +207,23 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
207
207
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
208
208
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
209
209
|
}, "strip", z.ZodTypeAny, {
|
|
210
|
-
|
|
210
|
+
id: string;
|
|
211
|
+
createdAt: string;
|
|
212
|
+
updatedAt: string;
|
|
211
213
|
firstName: string;
|
|
214
|
+
lastName: string;
|
|
212
215
|
email: string;
|
|
213
216
|
phone: string;
|
|
214
|
-
createdAt: string;
|
|
215
|
-
id: string;
|
|
216
|
-
updatedAt: string;
|
|
217
217
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
218
218
|
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;
|
|
219
219
|
}, {
|
|
220
|
-
|
|
220
|
+
id: string;
|
|
221
|
+
createdAt: string | Date;
|
|
222
|
+
updatedAt: string | Date;
|
|
221
223
|
firstName: string;
|
|
224
|
+
lastName: string;
|
|
222
225
|
email: string;
|
|
223
226
|
phone: string;
|
|
224
|
-
createdAt: string | Date;
|
|
225
|
-
id: string;
|
|
226
|
-
updatedAt: string | Date;
|
|
227
227
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
228
228
|
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;
|
|
229
229
|
}>, "many">;
|
|
@@ -235,13 +235,13 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
236
|
limit: number;
|
|
237
237
|
items: {
|
|
238
|
-
|
|
238
|
+
id: string;
|
|
239
|
+
createdAt: string;
|
|
240
|
+
updatedAt: string;
|
|
239
241
|
firstName: string;
|
|
242
|
+
lastName: string;
|
|
240
243
|
email: string;
|
|
241
244
|
phone: string;
|
|
242
|
-
createdAt: string;
|
|
243
|
-
id: string;
|
|
244
|
-
updatedAt: string;
|
|
245
245
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
246
246
|
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;
|
|
247
247
|
}[];
|
|
@@ -252,13 +252,13 @@ export declare const PaginatedUserResponseSchema: z.ZodObject<{
|
|
|
252
252
|
}, {
|
|
253
253
|
limit: number;
|
|
254
254
|
items: {
|
|
255
|
-
|
|
255
|
+
id: string;
|
|
256
|
+
createdAt: string | Date;
|
|
257
|
+
updatedAt: string | Date;
|
|
256
258
|
firstName: string;
|
|
259
|
+
lastName: string;
|
|
257
260
|
email: string;
|
|
258
261
|
phone: string;
|
|
259
|
-
createdAt: string | Date;
|
|
260
|
-
id: string;
|
|
261
|
-
updatedAt: string | Date;
|
|
262
262
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
263
263
|
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;
|
|
264
264
|
}[];
|
|
@@ -296,16 +296,16 @@ export declare const usersContract: {
|
|
|
296
296
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
297
297
|
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"]>>>;
|
|
298
298
|
}, "strip", z.ZodTypeAny, {
|
|
299
|
-
lastName: string;
|
|
300
299
|
firstName: string;
|
|
300
|
+
lastName: string;
|
|
301
301
|
email: string;
|
|
302
302
|
phone: string;
|
|
303
303
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
304
304
|
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;
|
|
305
305
|
password?: string | undefined;
|
|
306
306
|
}, {
|
|
307
|
-
lastName: string;
|
|
308
307
|
firstName: string;
|
|
308
|
+
lastName: string;
|
|
309
309
|
email: string;
|
|
310
310
|
phone: string;
|
|
311
311
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
@@ -425,23 +425,23 @@ export declare const usersContract: {
|
|
|
425
425
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
426
426
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
427
427
|
}, "strip", z.ZodTypeAny, {
|
|
428
|
-
|
|
428
|
+
id: string;
|
|
429
|
+
createdAt: string;
|
|
430
|
+
updatedAt: string;
|
|
429
431
|
firstName: string;
|
|
432
|
+
lastName: string;
|
|
430
433
|
email: string;
|
|
431
434
|
phone: string;
|
|
432
|
-
createdAt: string;
|
|
433
|
-
id: string;
|
|
434
|
-
updatedAt: string;
|
|
435
435
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
436
436
|
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;
|
|
437
437
|
}, {
|
|
438
|
-
|
|
438
|
+
id: string;
|
|
439
|
+
createdAt: string | Date;
|
|
440
|
+
updatedAt: string | Date;
|
|
439
441
|
firstName: string;
|
|
442
|
+
lastName: string;
|
|
440
443
|
email: string;
|
|
441
444
|
phone: string;
|
|
442
|
-
createdAt: string | Date;
|
|
443
|
-
id: string;
|
|
444
|
-
updatedAt: string | Date;
|
|
445
445
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
446
446
|
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;
|
|
447
447
|
}>;
|
|
@@ -473,9 +473,6 @@ export declare const usersContract: {
|
|
|
473
473
|
};
|
|
474
474
|
};
|
|
475
475
|
findAll: {
|
|
476
|
-
metadata: {
|
|
477
|
-
tags: string[];
|
|
478
|
-
};
|
|
479
476
|
query: z.ZodObject<{
|
|
480
477
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
481
478
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -499,6 +496,9 @@ export declare const usersContract: {
|
|
|
499
496
|
}, "strip", z.ZodTypeAny, {
|
|
500
497
|
limit: number;
|
|
501
498
|
page: number;
|
|
499
|
+
name?: string | undefined;
|
|
500
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | "phone" | undefined;
|
|
501
|
+
sortOrder?: "ASC" | "DESC" | undefined;
|
|
502
502
|
email?: string | undefined;
|
|
503
503
|
phone?: string | undefined;
|
|
504
504
|
roles?: {
|
|
@@ -506,10 +506,12 @@ export declare const usersContract: {
|
|
|
506
506
|
requireAll?: boolean | undefined;
|
|
507
507
|
} | undefined;
|
|
508
508
|
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;
|
|
509
|
+
}, {
|
|
510
|
+
limit?: number | undefined;
|
|
511
|
+
page?: number | undefined;
|
|
509
512
|
name?: string | undefined;
|
|
510
|
-
sortBy?: "
|
|
513
|
+
sortBy?: "createdAt" | "firstName" | "lastName" | "email" | "phone" | undefined;
|
|
511
514
|
sortOrder?: "ASC" | "DESC" | undefined;
|
|
512
|
-
}, {
|
|
513
515
|
email?: string | undefined;
|
|
514
516
|
phone?: string | undefined;
|
|
515
517
|
roles?: {
|
|
@@ -517,12 +519,10 @@ export declare const usersContract: {
|
|
|
517
519
|
requireAll?: unknown;
|
|
518
520
|
} | undefined;
|
|
519
521
|
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;
|
|
520
|
-
limit?: number | undefined;
|
|
521
|
-
page?: number | undefined;
|
|
522
|
-
name?: string | undefined;
|
|
523
|
-
sortBy?: "lastName" | "firstName" | "email" | "phone" | "createdAt" | undefined;
|
|
524
|
-
sortOrder?: "ASC" | "DESC" | undefined;
|
|
525
522
|
}>;
|
|
523
|
+
metadata: {
|
|
524
|
+
tags: string[];
|
|
525
|
+
};
|
|
526
526
|
summary: "Get all users";
|
|
527
527
|
method: "GET";
|
|
528
528
|
path: "/v2/users";
|
|
@@ -639,23 +639,23 @@ export declare const usersContract: {
|
|
|
639
639
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
640
640
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
641
641
|
}, "strip", z.ZodTypeAny, {
|
|
642
|
-
|
|
642
|
+
id: string;
|
|
643
|
+
createdAt: string;
|
|
644
|
+
updatedAt: string;
|
|
643
645
|
firstName: string;
|
|
646
|
+
lastName: string;
|
|
644
647
|
email: string;
|
|
645
648
|
phone: string;
|
|
646
|
-
createdAt: string;
|
|
647
|
-
id: string;
|
|
648
|
-
updatedAt: string;
|
|
649
649
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
650
650
|
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;
|
|
651
651
|
}, {
|
|
652
|
-
|
|
652
|
+
id: string;
|
|
653
|
+
createdAt: string | Date;
|
|
654
|
+
updatedAt: string | Date;
|
|
653
655
|
firstName: string;
|
|
656
|
+
lastName: string;
|
|
654
657
|
email: string;
|
|
655
658
|
phone: string;
|
|
656
|
-
createdAt: string | Date;
|
|
657
|
-
id: string;
|
|
658
|
-
updatedAt: string | Date;
|
|
659
659
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
660
660
|
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;
|
|
661
661
|
}>, "many">;
|
|
@@ -667,13 +667,13 @@ export declare const usersContract: {
|
|
|
667
667
|
}, "strip", z.ZodTypeAny, {
|
|
668
668
|
limit: number;
|
|
669
669
|
items: {
|
|
670
|
-
|
|
670
|
+
id: string;
|
|
671
|
+
createdAt: string;
|
|
672
|
+
updatedAt: string;
|
|
671
673
|
firstName: string;
|
|
674
|
+
lastName: string;
|
|
672
675
|
email: string;
|
|
673
676
|
phone: string;
|
|
674
|
-
createdAt: string;
|
|
675
|
-
id: string;
|
|
676
|
-
updatedAt: string;
|
|
677
677
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
678
678
|
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;
|
|
679
679
|
}[];
|
|
@@ -684,13 +684,13 @@ export declare const usersContract: {
|
|
|
684
684
|
}, {
|
|
685
685
|
limit: number;
|
|
686
686
|
items: {
|
|
687
|
-
|
|
687
|
+
id: string;
|
|
688
|
+
createdAt: string | Date;
|
|
689
|
+
updatedAt: string | Date;
|
|
688
690
|
firstName: string;
|
|
691
|
+
lastName: string;
|
|
689
692
|
email: string;
|
|
690
693
|
phone: string;
|
|
691
|
-
createdAt: string | Date;
|
|
692
|
-
id: string;
|
|
693
|
-
updatedAt: string | Date;
|
|
694
694
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
695
695
|
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;
|
|
696
696
|
}[];
|
|
@@ -702,19 +702,19 @@ export declare const usersContract: {
|
|
|
702
702
|
};
|
|
703
703
|
};
|
|
704
704
|
autocomplete: {
|
|
705
|
-
metadata: {
|
|
706
|
-
tags: string[];
|
|
707
|
-
};
|
|
708
705
|
query: z.ZodObject<{
|
|
709
706
|
query: z.ZodOptional<z.ZodString>;
|
|
710
707
|
id: z.ZodOptional<z.ZodString>;
|
|
711
708
|
}, "strip", z.ZodTypeAny, {
|
|
712
|
-
id?: string | undefined;
|
|
713
709
|
query?: string | undefined;
|
|
714
|
-
}, {
|
|
715
710
|
id?: string | undefined;
|
|
711
|
+
}, {
|
|
716
712
|
query?: string | undefined;
|
|
713
|
+
id?: string | undefined;
|
|
717
714
|
}>;
|
|
715
|
+
metadata: {
|
|
716
|
+
tags: string[];
|
|
717
|
+
};
|
|
718
718
|
summary: "Get users for autocomplete";
|
|
719
719
|
method: "GET";
|
|
720
720
|
path: "/v2/users/autocomplete";
|
|
@@ -824,30 +824,30 @@ export declare const usersContract: {
|
|
|
824
824
|
firstName: z.ZodString;
|
|
825
825
|
lastName: z.ZodString;
|
|
826
826
|
}, "strip", z.ZodTypeAny, {
|
|
827
|
-
lastName: string;
|
|
828
|
-
firstName: string;
|
|
829
827
|
id: string;
|
|
830
|
-
}, {
|
|
831
|
-
lastName: string;
|
|
832
828
|
firstName: string;
|
|
829
|
+
lastName: string;
|
|
830
|
+
}, {
|
|
833
831
|
id: string;
|
|
832
|
+
firstName: string;
|
|
833
|
+
lastName: string;
|
|
834
834
|
}>, "many">;
|
|
835
835
|
};
|
|
836
836
|
};
|
|
837
837
|
autocompleteFirstAgent: {
|
|
838
|
-
metadata: {
|
|
839
|
-
tags: string[];
|
|
840
|
-
};
|
|
841
838
|
query: z.ZodObject<{
|
|
842
839
|
query: z.ZodOptional<z.ZodString>;
|
|
843
840
|
id: z.ZodOptional<z.ZodString>;
|
|
844
841
|
}, "strip", z.ZodTypeAny, {
|
|
845
|
-
id?: string | undefined;
|
|
846
842
|
query?: string | undefined;
|
|
847
|
-
}, {
|
|
848
843
|
id?: string | undefined;
|
|
844
|
+
}, {
|
|
849
845
|
query?: string | undefined;
|
|
846
|
+
id?: string | undefined;
|
|
850
847
|
}>;
|
|
848
|
+
metadata: {
|
|
849
|
+
tags: string[];
|
|
850
|
+
};
|
|
851
851
|
summary: "Get users with FIRST_AGENT role for autocomplete";
|
|
852
852
|
method: "GET";
|
|
853
853
|
path: "/v2/users/autocomplete/first-agent";
|
|
@@ -957,30 +957,30 @@ export declare const usersContract: {
|
|
|
957
957
|
firstName: z.ZodString;
|
|
958
958
|
lastName: z.ZodString;
|
|
959
959
|
}, "strip", z.ZodTypeAny, {
|
|
960
|
-
lastName: string;
|
|
961
|
-
firstName: string;
|
|
962
960
|
id: string;
|
|
963
|
-
}, {
|
|
964
|
-
lastName: string;
|
|
965
961
|
firstName: string;
|
|
962
|
+
lastName: string;
|
|
963
|
+
}, {
|
|
966
964
|
id: string;
|
|
965
|
+
firstName: string;
|
|
966
|
+
lastName: string;
|
|
967
967
|
}>, "many">;
|
|
968
968
|
};
|
|
969
969
|
};
|
|
970
970
|
autocompleteSecondAgent: {
|
|
971
|
-
metadata: {
|
|
972
|
-
tags: string[];
|
|
973
|
-
};
|
|
974
971
|
query: z.ZodObject<{
|
|
975
972
|
query: z.ZodOptional<z.ZodString>;
|
|
976
973
|
id: z.ZodOptional<z.ZodString>;
|
|
977
974
|
}, "strip", z.ZodTypeAny, {
|
|
978
|
-
id?: string | undefined;
|
|
979
975
|
query?: string | undefined;
|
|
980
|
-
}, {
|
|
981
976
|
id?: string | undefined;
|
|
977
|
+
}, {
|
|
982
978
|
query?: string | undefined;
|
|
979
|
+
id?: string | undefined;
|
|
983
980
|
}>;
|
|
981
|
+
metadata: {
|
|
982
|
+
tags: string[];
|
|
983
|
+
};
|
|
984
984
|
summary: "Get users with SECOND_AGENT role for autocomplete";
|
|
985
985
|
method: "GET";
|
|
986
986
|
path: "/v2/users/autocomplete/second-agent";
|
|
@@ -1090,13 +1090,13 @@ export declare const usersContract: {
|
|
|
1090
1090
|
firstName: z.ZodString;
|
|
1091
1091
|
lastName: z.ZodString;
|
|
1092
1092
|
}, "strip", z.ZodTypeAny, {
|
|
1093
|
-
lastName: string;
|
|
1094
|
-
firstName: string;
|
|
1095
1093
|
id: string;
|
|
1096
|
-
}, {
|
|
1097
|
-
lastName: string;
|
|
1098
1094
|
firstName: string;
|
|
1095
|
+
lastName: string;
|
|
1096
|
+
}, {
|
|
1099
1097
|
id: string;
|
|
1098
|
+
firstName: string;
|
|
1099
|
+
lastName: string;
|
|
1100
1100
|
}>, "many">;
|
|
1101
1101
|
};
|
|
1102
1102
|
};
|
|
@@ -1216,17 +1216,17 @@ export declare const usersContract: {
|
|
|
1216
1216
|
phone: z.ZodOptional<z.ZodString>;
|
|
1217
1217
|
roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
|
|
1218
1218
|
}, "strip", z.ZodTypeAny, {
|
|
1219
|
-
email: string;
|
|
1220
1219
|
id: string;
|
|
1221
|
-
|
|
1220
|
+
email: string;
|
|
1222
1221
|
firstName?: string | undefined;
|
|
1222
|
+
lastName?: string | undefined;
|
|
1223
1223
|
phone?: string | undefined;
|
|
1224
1224
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1225
1225
|
}, {
|
|
1226
|
-
email: string;
|
|
1227
1226
|
id: string;
|
|
1228
|
-
|
|
1227
|
+
email: string;
|
|
1229
1228
|
firstName?: string | undefined;
|
|
1229
|
+
lastName?: string | undefined;
|
|
1230
1230
|
phone?: string | undefined;
|
|
1231
1231
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1232
1232
|
}>;
|
|
@@ -1358,23 +1358,23 @@ export declare const usersContract: {
|
|
|
1358
1358
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1359
1359
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1360
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1361
|
-
|
|
1361
|
+
id: string;
|
|
1362
|
+
createdAt: string;
|
|
1363
|
+
updatedAt: string;
|
|
1362
1364
|
firstName: string;
|
|
1365
|
+
lastName: string;
|
|
1363
1366
|
email: string;
|
|
1364
1367
|
phone: string;
|
|
1365
|
-
createdAt: string;
|
|
1366
|
-
id: string;
|
|
1367
|
-
updatedAt: string;
|
|
1368
1368
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1369
1369
|
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;
|
|
1370
1370
|
}, {
|
|
1371
|
-
|
|
1371
|
+
id: string;
|
|
1372
|
+
createdAt: string | Date;
|
|
1373
|
+
updatedAt: string | Date;
|
|
1372
1374
|
firstName: string;
|
|
1375
|
+
lastName: string;
|
|
1373
1376
|
email: string;
|
|
1374
1377
|
phone: string;
|
|
1375
|
-
createdAt: string | Date;
|
|
1376
|
-
id: string;
|
|
1377
|
-
updatedAt: string | Date;
|
|
1378
1378
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1379
1379
|
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;
|
|
1380
1380
|
}>;
|
|
@@ -1427,16 +1427,16 @@ export declare const usersContract: {
|
|
|
1427
1427
|
roles: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>>;
|
|
1428
1428
|
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"]>>>>;
|
|
1429
1429
|
}, "strip", z.ZodTypeAny, {
|
|
1430
|
-
lastName?: string | undefined;
|
|
1431
1430
|
firstName?: string | undefined;
|
|
1431
|
+
lastName?: string | undefined;
|
|
1432
1432
|
email?: string | undefined;
|
|
1433
1433
|
phone?: string | undefined;
|
|
1434
1434
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1435
1435
|
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;
|
|
1436
1436
|
password?: string | undefined;
|
|
1437
1437
|
}, {
|
|
1438
|
-
lastName?: string | undefined;
|
|
1439
1438
|
firstName?: string | undefined;
|
|
1439
|
+
lastName?: string | undefined;
|
|
1440
1440
|
email?: string | undefined;
|
|
1441
1441
|
phone?: string | undefined;
|
|
1442
1442
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
@@ -1556,23 +1556,23 @@ export declare const usersContract: {
|
|
|
1556
1556
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1557
1557
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1558
1558
|
}, "strip", z.ZodTypeAny, {
|
|
1559
|
-
|
|
1559
|
+
id: string;
|
|
1560
|
+
createdAt: string;
|
|
1561
|
+
updatedAt: string;
|
|
1560
1562
|
firstName: string;
|
|
1563
|
+
lastName: string;
|
|
1561
1564
|
email: string;
|
|
1562
1565
|
phone: string;
|
|
1563
|
-
createdAt: string;
|
|
1564
|
-
id: string;
|
|
1565
|
-
updatedAt: string;
|
|
1566
1566
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1567
1567
|
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;
|
|
1568
1568
|
}, {
|
|
1569
|
-
|
|
1569
|
+
id: string;
|
|
1570
|
+
createdAt: string | Date;
|
|
1571
|
+
updatedAt: string | Date;
|
|
1570
1572
|
firstName: string;
|
|
1573
|
+
lastName: string;
|
|
1571
1574
|
email: string;
|
|
1572
1575
|
phone: string;
|
|
1573
|
-
createdAt: string | Date;
|
|
1574
|
-
id: string;
|
|
1575
|
-
updatedAt: string | Date;
|
|
1576
1576
|
roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
|
|
1577
1577
|
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;
|
|
1578
1578
|
}>;
|