@dakkitor/api-contracts 1.1.79 → 1.1.80

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (33) hide show
  1. package/dist/abilities/first-agent.abilities.json +2 -0
  2. package/dist/actives/actives.contract.d.ts +2517 -2227
  3. package/dist/actives/actives.contract.d.ts.map +1 -1
  4. package/dist/agent-client-links/agent-client-links.contract.d.ts +34 -34
  5. package/dist/bookings/bookings.contract.d.ts +2216 -1951
  6. package/dist/bookings/bookings.contract.d.ts.map +1 -1
  7. package/dist/call-history/call-history.contract.d.ts +74 -74
  8. package/dist/client-contacts/client-contacts.contract.d.ts +32 -32
  9. package/dist/clients/clients.contract.d.ts +18 -18
  10. package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +600 -600
  11. package/dist/collaborations/collaborations.contract.d.ts +766 -491
  12. package/dist/collaborations/collaborations.contract.d.ts.map +1 -1
  13. package/dist/collaborations/collaborations.contract.js +10 -5
  14. package/dist/common/common-schemas.d.ts +69 -2
  15. package/dist/common/common-schemas.d.ts.map +1 -1
  16. package/dist/common/common-schemas.js +72 -1
  17. package/dist/companies/companies.contract.d.ts +2 -2
  18. package/dist/cron-executions/cron-executions.contract.d.ts +26 -26
  19. package/dist/curated-workers/curated-workers.contract.d.ts +312 -285
  20. package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
  21. package/dist/curated-workers/curated-workers.contract.js +7 -20
  22. package/dist/jobs/jobs.contract.d.ts +687 -687
  23. package/dist/lead-assignments/lead-assignments.contract.d.ts +74 -74
  24. package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +16 -16
  25. package/dist/leads/leads.contract.d.ts +48 -48
  26. package/dist/locations/locations.contract.d.ts +12 -12
  27. package/dist/users/users.contract.d.ts +12 -18
  28. package/dist/users/users.contract.d.ts.map +1 -1
  29. package/dist/users/users.contract.js +3 -12
  30. package/dist/workers/workers.contract.d.ts +351 -181
  31. package/dist/workers/workers.contract.d.ts.map +1 -1
  32. package/dist/workers/workers.contract.js +27 -42
  33. package/package.json +1 -1
@@ -2,17 +2,18 @@ import { z } from 'zod';
2
2
  /**
3
3
  * Collaboration Status Enum
4
4
  */
5
- export declare const CollaborationStatusSchema: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
5
+ export declare const CollaborationStatusSchema: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
6
6
  /**
7
7
  * Collaboration Sortable Fields Enum
8
8
  */
9
9
  export declare const CollaborationSortableFieldsSchema: z.ZodEnum<["createdAt", "updatedAt", "status"]>;
10
10
  export type CollaborationStatus = z.infer<typeof CollaborationStatusSchema>;
11
11
  export type CollaborationSortableFields = z.infer<typeof CollaborationSortableFieldsSchema>;
12
+ export type BaseCollaboration = z.infer<typeof BaseCollaborationSchema>;
12
13
  /**
13
- * Main Collaboration Schema
14
+ * Base Collaboration Schema (without self-reference, used for nested collaboration)
14
15
  */
15
- export declare const CollaborationSchema: z.ZodObject<{
16
+ export declare const BaseCollaborationSchema: z.ZodObject<{
16
17
  id: z.ZodString;
17
18
  company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
18
19
  id: z.ZodString;
@@ -20,14 +21,14 @@ export declare const CollaborationSchema: z.ZodObject<{
20
21
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
21
22
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
22
23
  }, "strip", z.ZodTypeAny, {
23
- id: string;
24
24
  createdAt: string;
25
25
  updatedAt: string;
26
+ id: string;
26
27
  name: string;
27
28
  }, {
28
- id: string;
29
29
  createdAt: string | Date;
30
30
  updatedAt: string | Date;
31
+ id: string;
31
32
  name: string;
32
33
  }>>>;
33
34
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -65,10 +66,10 @@ export declare const CollaborationSchema: z.ZodObject<{
65
66
  agentId: string;
66
67
  }>>>;
67
68
  }, "strip", z.ZodTypeAny, {
68
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
69
- id: string;
70
69
  createdAt: string;
71
70
  updatedAt: string;
71
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
72
+ id: string;
72
73
  name: string;
73
74
  crn: string | null;
74
75
  govLink: string;
@@ -85,10 +86,10 @@ export declare const CollaborationSchema: z.ZodObject<{
85
86
  agentId: string;
86
87
  } | null | undefined;
87
88
  }, {
88
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
89
- id: string;
90
89
  createdAt: string | Date;
91
90
  updatedAt: string | Date;
91
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
92
+ id: string;
92
93
  name: string;
93
94
  crn: string | null;
94
95
  govLink: string;
@@ -110,25 +111,245 @@ export declare const CollaborationSchema: z.ZodObject<{
110
111
  firstName: z.ZodString;
111
112
  lastName: z.ZodString;
112
113
  email: z.ZodString;
113
- phone: z.ZodEffects<z.ZodString, string, string>;
114
+ phone: z.ZodString;
114
115
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
115
116
  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"]>>>;
116
117
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
117
118
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
118
119
  }, "strip", z.ZodTypeAny, {
120
+ createdAt: string;
121
+ updatedAt: string;
122
+ id: string;
123
+ firstName: string;
124
+ lastName: string;
125
+ email: string;
126
+ phone: string;
127
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
128
+ 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;
129
+ }, {
130
+ createdAt: string | Date;
131
+ updatedAt: string | Date;
132
+ id: string;
133
+ firstName: string;
134
+ lastName: string;
135
+ email: string;
136
+ phone: string;
137
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
138
+ 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;
139
+ }>>>;
140
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
141
+ userId: z.ZodString;
142
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
143
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
144
+ }, "strip", z.ZodTypeAny, {
145
+ createdAt: string;
146
+ updatedAt: string;
147
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
148
+ id: string;
149
+ userId: string;
150
+ company?: {
151
+ createdAt: string;
152
+ updatedAt: string;
153
+ id: string;
154
+ name: string;
155
+ } | null | undefined;
156
+ client?: {
157
+ createdAt: string;
158
+ updatedAt: string;
159
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
119
160
  id: string;
161
+ name: string;
162
+ crn: string | null;
163
+ govLink: string;
164
+ soleTrader: boolean;
165
+ director: string;
166
+ blacklistReason?: string | null | undefined;
167
+ lastUpdatedBy?: {
168
+ id: string;
169
+ firstName: string;
170
+ lastName: string;
171
+ email: string;
172
+ } | null | undefined;
173
+ agentClientLinks?: {
174
+ agentId: string;
175
+ } | null | undefined;
176
+ } | null | undefined;
177
+ user?: {
120
178
  createdAt: string;
121
179
  updatedAt: string;
180
+ id: string;
181
+ firstName: string;
182
+ lastName: string;
183
+ email: string;
184
+ phone: string;
185
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
186
+ 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;
187
+ } | null | undefined;
188
+ }, {
189
+ createdAt: string | Date;
190
+ updatedAt: string | Date;
191
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
192
+ id: string;
193
+ userId: string;
194
+ company?: {
195
+ createdAt: string | Date;
196
+ updatedAt: string | Date;
197
+ id: string;
198
+ name: string;
199
+ } | null | undefined;
200
+ client?: {
201
+ createdAt: string | Date;
202
+ updatedAt: string | Date;
203
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
204
+ id: string;
205
+ name: string;
206
+ crn: string | null;
207
+ govLink: string;
208
+ soleTrader: boolean;
209
+ director: string;
210
+ blacklistReason?: string | null | undefined;
211
+ lastUpdatedBy?: {
212
+ id: string;
213
+ firstName: string;
214
+ lastName: string;
215
+ email: string;
216
+ } | null | undefined;
217
+ agentClientLinks?: {
218
+ agentId: string;
219
+ } | null | undefined;
220
+ } | null | undefined;
221
+ user?: {
222
+ createdAt: string | Date;
223
+ updatedAt: string | Date;
224
+ id: string;
122
225
  firstName: string;
123
226
  lastName: string;
124
227
  email: string;
125
228
  phone: string;
126
229
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
127
230
  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;
231
+ } | null | undefined;
232
+ }>;
233
+ /**
234
+ * Main Collaboration Schema
235
+ */
236
+ export declare const CollaborationSchema: z.ZodObject<{
237
+ id: z.ZodString;
238
+ company: z.ZodOptional<z.ZodNullable<z.ZodObject<{
239
+ id: z.ZodString;
240
+ name: z.ZodString;
241
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
242
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
243
+ }, "strip", z.ZodTypeAny, {
244
+ createdAt: string;
245
+ updatedAt: string;
246
+ id: string;
247
+ name: string;
248
+ }, {
249
+ createdAt: string | Date;
250
+ updatedAt: string | Date;
251
+ id: string;
252
+ name: string;
253
+ }>>>;
254
+ client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
255
+ id: z.ZodString;
256
+ name: z.ZodString;
257
+ crn: z.ZodNullable<z.ZodString>;
258
+ govLink: z.ZodString;
259
+ soleTrader: z.ZodBoolean;
260
+ status: z.ZodEnum<["APPROVED", "PENDING_VERIFICATION", "BLACKLISTED"]>;
261
+ director: z.ZodString;
262
+ blacklistReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
263
+ lastUpdatedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
264
+ id: z.ZodString;
265
+ firstName: z.ZodString;
266
+ lastName: z.ZodString;
267
+ email: z.ZodString;
268
+ }, "strip", z.ZodTypeAny, {
269
+ id: string;
270
+ firstName: string;
271
+ lastName: string;
272
+ email: string;
273
+ }, {
274
+ id: string;
275
+ firstName: string;
276
+ lastName: string;
277
+ email: string;
278
+ }>>>;
279
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
280
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
281
+ agentClientLinks: z.ZodOptional<z.ZodNullable<z.ZodObject<{
282
+ agentId: z.ZodString;
283
+ }, "strip", z.ZodTypeAny, {
284
+ agentId: string;
285
+ }, {
286
+ agentId: string;
287
+ }>>>;
288
+ }, "strip", z.ZodTypeAny, {
289
+ createdAt: string;
290
+ updatedAt: string;
291
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
292
+ id: string;
293
+ name: string;
294
+ crn: string | null;
295
+ govLink: string;
296
+ soleTrader: boolean;
297
+ director: string;
298
+ blacklistReason?: string | null | undefined;
299
+ lastUpdatedBy?: {
300
+ id: string;
301
+ firstName: string;
302
+ lastName: string;
303
+ email: string;
304
+ } | null | undefined;
305
+ agentClientLinks?: {
306
+ agentId: string;
307
+ } | null | undefined;
128
308
  }, {
309
+ createdAt: string | Date;
310
+ updatedAt: string | Date;
311
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
129
312
  id: string;
313
+ name: string;
314
+ crn: string | null;
315
+ govLink: string;
316
+ soleTrader: boolean;
317
+ director: string;
318
+ blacklistReason?: string | null | undefined;
319
+ lastUpdatedBy?: {
320
+ id: string;
321
+ firstName: string;
322
+ lastName: string;
323
+ email: string;
324
+ } | null | undefined;
325
+ agentClientLinks?: {
326
+ agentId: string;
327
+ } | null | undefined;
328
+ }>>>;
329
+ user: z.ZodOptional<z.ZodNullable<z.ZodObject<{
330
+ id: z.ZodString;
331
+ firstName: z.ZodString;
332
+ lastName: z.ZodString;
333
+ email: z.ZodString;
334
+ phone: z.ZodString;
335
+ roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
336
+ 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"]>>>;
337
+ createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
338
+ updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
339
+ }, "strip", z.ZodTypeAny, {
340
+ createdAt: string;
341
+ updatedAt: string;
342
+ id: string;
343
+ firstName: string;
344
+ lastName: string;
345
+ email: string;
346
+ phone: string;
347
+ roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
348
+ 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;
349
+ }, {
130
350
  createdAt: string | Date;
131
351
  updatedAt: string | Date;
352
+ id: string;
132
353
  firstName: string;
133
354
  lastName: string;
134
355
  email: string;
@@ -136,7 +357,7 @@ export declare const CollaborationSchema: z.ZodObject<{
136
357
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
137
358
  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;
138
359
  }>>>;
139
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
360
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
140
361
  userId: z.ZodString;
141
362
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
142
363
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -149,14 +370,14 @@ export declare const CollaborationSchema: z.ZodObject<{
149
370
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
150
371
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
151
372
  }, "strip", z.ZodTypeAny, {
152
- id: string;
153
373
  createdAt: string;
154
374
  updatedAt: string;
375
+ id: string;
155
376
  name: string;
156
377
  }, {
157
- id: string;
158
378
  createdAt: string | Date;
159
379
  updatedAt: string | Date;
380
+ id: string;
160
381
  name: string;
161
382
  }>>>;
162
383
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -194,10 +415,10 @@ export declare const CollaborationSchema: z.ZodObject<{
194
415
  agentId: string;
195
416
  }>>>;
196
417
  }, "strip", z.ZodTypeAny, {
197
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
198
- id: string;
199
418
  createdAt: string;
200
419
  updatedAt: string;
420
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
421
+ id: string;
201
422
  name: string;
202
423
  crn: string | null;
203
424
  govLink: string;
@@ -214,10 +435,10 @@ export declare const CollaborationSchema: z.ZodObject<{
214
435
  agentId: string;
215
436
  } | null | undefined;
216
437
  }, {
217
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
218
- id: string;
219
438
  createdAt: string | Date;
220
439
  updatedAt: string | Date;
440
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
441
+ id: string;
221
442
  name: string;
222
443
  crn: string | null;
223
444
  govLink: string;
@@ -239,15 +460,15 @@ export declare const CollaborationSchema: z.ZodObject<{
239
460
  firstName: z.ZodString;
240
461
  lastName: z.ZodString;
241
462
  email: z.ZodString;
242
- phone: z.ZodEffects<z.ZodString, string, string>;
463
+ phone: z.ZodString;
243
464
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
244
465
  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"]>>>;
245
466
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
246
467
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
247
468
  }, "strip", z.ZodTypeAny, {
248
- id: string;
249
469
  createdAt: string;
250
470
  updatedAt: string;
471
+ id: string;
251
472
  firstName: string;
252
473
  lastName: string;
253
474
  email: string;
@@ -255,9 +476,9 @@ export declare const CollaborationSchema: z.ZodObject<{
255
476
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
256
477
  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;
257
478
  }, {
258
- id: string;
259
479
  createdAt: string | Date;
260
480
  updatedAt: string | Date;
481
+ id: string;
261
482
  firstName: string;
262
483
  lastName: string;
263
484
  email: string;
@@ -265,27 +486,27 @@ export declare const CollaborationSchema: z.ZodObject<{
265
486
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
266
487
  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;
267
488
  }>>>;
268
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
489
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
269
490
  userId: z.ZodString;
270
491
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
271
492
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
272
493
  }, "strip", z.ZodTypeAny, {
273
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
274
- id: string;
275
494
  createdAt: string;
276
495
  updatedAt: string;
496
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
497
+ id: string;
277
498
  userId: string;
278
499
  company?: {
279
- id: string;
280
500
  createdAt: string;
281
501
  updatedAt: string;
502
+ id: string;
282
503
  name: string;
283
504
  } | null | undefined;
284
505
  client?: {
285
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
286
- id: string;
287
506
  createdAt: string;
288
507
  updatedAt: string;
508
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
509
+ id: string;
289
510
  name: string;
290
511
  crn: string | null;
291
512
  govLink: string;
@@ -303,9 +524,9 @@ export declare const CollaborationSchema: z.ZodObject<{
303
524
  } | null | undefined;
304
525
  } | null | undefined;
305
526
  user?: {
306
- id: string;
307
527
  createdAt: string;
308
528
  updatedAt: string;
529
+ id: string;
309
530
  firstName: string;
310
531
  lastName: string;
311
532
  email: string;
@@ -314,22 +535,22 @@ export declare const CollaborationSchema: z.ZodObject<{
314
535
  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;
315
536
  } | null | undefined;
316
537
  }, {
317
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
318
- id: string;
319
538
  createdAt: string | Date;
320
539
  updatedAt: string | Date;
540
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
541
+ id: string;
321
542
  userId: string;
322
543
  company?: {
323
- id: string;
324
544
  createdAt: string | Date;
325
545
  updatedAt: string | Date;
546
+ id: string;
326
547
  name: string;
327
548
  } | null | undefined;
328
549
  client?: {
329
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
330
- id: string;
331
550
  createdAt: string | Date;
332
551
  updatedAt: string | Date;
552
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
553
+ id: string;
333
554
  name: string;
334
555
  crn: string | null;
335
556
  govLink: string;
@@ -347,9 +568,9 @@ export declare const CollaborationSchema: z.ZodObject<{
347
568
  } | null | undefined;
348
569
  } | null | undefined;
349
570
  user?: {
350
- id: string;
351
571
  createdAt: string | Date;
352
572
  updatedAt: string | Date;
573
+ id: string;
353
574
  firstName: string;
354
575
  lastName: string;
355
576
  email: string;
@@ -359,22 +580,22 @@ export declare const CollaborationSchema: z.ZodObject<{
359
580
  } | null | undefined;
360
581
  }>>>;
361
582
  }, "strip", z.ZodTypeAny, {
362
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
363
- id: string;
364
583
  createdAt: string;
365
584
  updatedAt: string;
585
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
586
+ id: string;
366
587
  userId: string;
367
588
  company?: {
368
- id: string;
369
589
  createdAt: string;
370
590
  updatedAt: string;
591
+ id: string;
371
592
  name: string;
372
593
  } | null | undefined;
373
594
  client?: {
374
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
375
- id: string;
376
595
  createdAt: string;
377
596
  updatedAt: string;
597
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
598
+ id: string;
378
599
  name: string;
379
600
  crn: string | null;
380
601
  govLink: string;
@@ -392,9 +613,9 @@ export declare const CollaborationSchema: z.ZodObject<{
392
613
  } | null | undefined;
393
614
  } | null | undefined;
394
615
  user?: {
395
- id: string;
396
616
  createdAt: string;
397
617
  updatedAt: string;
618
+ id: string;
398
619
  firstName: string;
399
620
  lastName: string;
400
621
  email: string;
@@ -403,22 +624,22 @@ export declare const CollaborationSchema: z.ZodObject<{
403
624
  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;
404
625
  } | null | undefined;
405
626
  newCollaboration?: {
406
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
407
- id: string;
408
627
  createdAt: string;
409
628
  updatedAt: string;
629
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
630
+ id: string;
410
631
  userId: string;
411
632
  company?: {
412
- id: string;
413
633
  createdAt: string;
414
634
  updatedAt: string;
635
+ id: string;
415
636
  name: string;
416
637
  } | null | undefined;
417
638
  client?: {
418
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
419
- id: string;
420
639
  createdAt: string;
421
640
  updatedAt: string;
641
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
642
+ id: string;
422
643
  name: string;
423
644
  crn: string | null;
424
645
  govLink: string;
@@ -436,9 +657,9 @@ export declare const CollaborationSchema: z.ZodObject<{
436
657
  } | null | undefined;
437
658
  } | null | undefined;
438
659
  user?: {
439
- id: string;
440
660
  createdAt: string;
441
661
  updatedAt: string;
662
+ id: string;
442
663
  firstName: string;
443
664
  lastName: string;
444
665
  email: string;
@@ -448,22 +669,22 @@ export declare const CollaborationSchema: z.ZodObject<{
448
669
  } | null | undefined;
449
670
  } | null | undefined;
450
671
  }, {
451
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
452
- id: string;
453
672
  createdAt: string | Date;
454
673
  updatedAt: string | Date;
674
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
675
+ id: string;
455
676
  userId: string;
456
677
  company?: {
457
- id: string;
458
678
  createdAt: string | Date;
459
679
  updatedAt: string | Date;
680
+ id: string;
460
681
  name: string;
461
682
  } | null | undefined;
462
683
  client?: {
463
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
464
- id: string;
465
684
  createdAt: string | Date;
466
685
  updatedAt: string | Date;
686
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
687
+ id: string;
467
688
  name: string;
468
689
  crn: string | null;
469
690
  govLink: string;
@@ -481,9 +702,9 @@ export declare const CollaborationSchema: z.ZodObject<{
481
702
  } | null | undefined;
482
703
  } | null | undefined;
483
704
  user?: {
484
- id: string;
485
705
  createdAt: string | Date;
486
706
  updatedAt: string | Date;
707
+ id: string;
487
708
  firstName: string;
488
709
  lastName: string;
489
710
  email: string;
@@ -492,22 +713,22 @@ export declare const CollaborationSchema: z.ZodObject<{
492
713
  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;
493
714
  } | null | undefined;
494
715
  newCollaboration?: {
495
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
496
- id: string;
497
716
  createdAt: string | Date;
498
717
  updatedAt: string | Date;
718
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
719
+ id: string;
499
720
  userId: string;
500
721
  company?: {
501
- id: string;
502
722
  createdAt: string | Date;
503
723
  updatedAt: string | Date;
724
+ id: string;
504
725
  name: string;
505
726
  } | null | undefined;
506
727
  client?: {
507
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
508
- id: string;
509
728
  createdAt: string | Date;
510
729
  updatedAt: string | Date;
730
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
731
+ id: string;
511
732
  name: string;
512
733
  crn: string | null;
513
734
  govLink: string;
@@ -525,9 +746,9 @@ export declare const CollaborationSchema: z.ZodObject<{
525
746
  } | null | undefined;
526
747
  } | null | undefined;
527
748
  user?: {
528
- id: string;
529
749
  createdAt: string | Date;
530
750
  updatedAt: string | Date;
751
+ id: string;
531
752
  firstName: string;
532
753
  lastName: string;
533
754
  email: string;
@@ -562,7 +783,7 @@ export declare const CreateCollaborationSchema: z.ZodObject<{
562
783
  }, {
563
784
  id: string;
564
785
  }>>;
565
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
786
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
566
787
  }, "strip", z.ZodTypeAny, {
567
788
  company: {
568
789
  id: string;
@@ -570,7 +791,7 @@ export declare const CreateCollaborationSchema: z.ZodObject<{
570
791
  client: {
571
792
  id: string;
572
793
  };
573
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
794
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
574
795
  user?: {
575
796
  id: string;
576
797
  } | undefined;
@@ -581,20 +802,48 @@ export declare const CreateCollaborationSchema: z.ZodObject<{
581
802
  client: {
582
803
  id: string;
583
804
  };
584
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
805
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
585
806
  user?: {
586
807
  id: string;
587
808
  } | undefined;
588
809
  }>;
589
810
  /**
590
811
  * Update Collaboration Schema
812
+ * When user or company is changed, the old collaboration is marked as CHANGED_AGENT or CHANGED_COMPANY
813
+ * and a new collaboration is created with the updated values.
591
814
  */
592
815
  export declare const UpdateCollaborationSchema: z.ZodObject<{
593
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
816
+ user: z.ZodOptional<z.ZodObject<{
817
+ id: z.ZodString;
818
+ }, "strip", z.ZodTypeAny, {
819
+ id: string;
820
+ }, {
821
+ id: string;
822
+ }>>;
823
+ company: z.ZodOptional<z.ZodObject<{
824
+ id: z.ZodString;
825
+ }, "strip", z.ZodTypeAny, {
826
+ id: string;
827
+ }, {
828
+ id: string;
829
+ }>>;
830
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
594
831
  }, "strip", z.ZodTypeAny, {
595
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
832
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
833
+ company?: {
834
+ id: string;
835
+ } | undefined;
836
+ user?: {
837
+ id: string;
838
+ } | undefined;
596
839
  }, {
597
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
840
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
841
+ company?: {
842
+ id: string;
843
+ } | undefined;
844
+ user?: {
845
+ id: string;
846
+ } | undefined;
598
847
  }>;
599
848
  /**
600
849
  * Upsert Collaboration Schema
@@ -621,7 +870,7 @@ export declare const UpsertCollaborationSchema: z.ZodObject<{
621
870
  }, {
622
871
  id: string;
623
872
  }>>;
624
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
873
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
625
874
  }, "strip", z.ZodTypeAny, {
626
875
  company: {
627
876
  id: string;
@@ -629,7 +878,7 @@ export declare const UpsertCollaborationSchema: z.ZodObject<{
629
878
  client: {
630
879
  id: string;
631
880
  };
632
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
881
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
633
882
  user?: {
634
883
  id: string;
635
884
  } | undefined;
@@ -640,7 +889,7 @@ export declare const UpsertCollaborationSchema: z.ZodObject<{
640
889
  client: {
641
890
  id: string;
642
891
  };
643
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
892
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
644
893
  user?: {
645
894
  id: string;
646
895
  } | undefined;
@@ -655,27 +904,27 @@ export declare const FilterCollaborationSchema: z.ZodObject<{
655
904
  companyId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
656
905
  clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
657
906
  userId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
658
- status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>>;
907
+ status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>>;
659
908
  sortBy: z.ZodNullable<z.ZodOptional<z.ZodEnum<["createdAt", "updatedAt", "status"]>>>;
660
909
  sortOrder: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ASC", "DESC"]>>>;
661
910
  }, "strip", z.ZodTypeAny, {
662
911
  limit: number;
663
912
  page: number;
664
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
665
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
666
- sortOrder?: "ASC" | "DESC" | null | undefined;
913
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
667
914
  userId?: string | null | undefined;
668
915
  companyId?: string | null | undefined;
669
916
  clientId?: string | null | undefined;
917
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
918
+ sortOrder?: "ASC" | "DESC" | null | undefined;
670
919
  }, {
671
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
920
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
921
+ userId?: string | null | undefined;
672
922
  limit?: number | undefined;
673
923
  page?: number | undefined;
674
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
675
- sortOrder?: "ASC" | "DESC" | null | undefined;
676
- userId?: string | null | undefined;
677
924
  companyId?: string | null | undefined;
678
925
  clientId?: string | null | undefined;
926
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
927
+ sortOrder?: "ASC" | "DESC" | null | undefined;
679
928
  }>;
680
929
  /**
681
930
  * Collaboration Autocomplete Response Schema
@@ -791,14 +1040,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
791
1040
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
792
1041
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
793
1042
  }, "strip", z.ZodTypeAny, {
794
- id: string;
795
1043
  createdAt: string;
796
1044
  updatedAt: string;
1045
+ id: string;
797
1046
  name: string;
798
1047
  }, {
799
- id: string;
800
1048
  createdAt: string | Date;
801
1049
  updatedAt: string | Date;
1050
+ id: string;
802
1051
  name: string;
803
1052
  }>>>;
804
1053
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -836,10 +1085,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
836
1085
  agentId: string;
837
1086
  }>>>;
838
1087
  }, "strip", z.ZodTypeAny, {
839
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
840
- id: string;
841
1088
  createdAt: string;
842
1089
  updatedAt: string;
1090
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1091
+ id: string;
843
1092
  name: string;
844
1093
  crn: string | null;
845
1094
  govLink: string;
@@ -856,10 +1105,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
856
1105
  agentId: string;
857
1106
  } | null | undefined;
858
1107
  }, {
859
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
860
- id: string;
861
1108
  createdAt: string | Date;
862
1109
  updatedAt: string | Date;
1110
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1111
+ id: string;
863
1112
  name: string;
864
1113
  crn: string | null;
865
1114
  govLink: string;
@@ -881,15 +1130,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
881
1130
  firstName: z.ZodString;
882
1131
  lastName: z.ZodString;
883
1132
  email: z.ZodString;
884
- phone: z.ZodEffects<z.ZodString, string, string>;
1133
+ phone: z.ZodString;
885
1134
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
886
1135
  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"]>>>;
887
1136
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
888
1137
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
889
1138
  }, "strip", z.ZodTypeAny, {
890
- id: string;
891
1139
  createdAt: string;
892
1140
  updatedAt: string;
1141
+ id: string;
893
1142
  firstName: string;
894
1143
  lastName: string;
895
1144
  email: string;
@@ -897,9 +1146,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
897
1146
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
898
1147
  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;
899
1148
  }, {
900
- id: string;
901
1149
  createdAt: string | Date;
902
1150
  updatedAt: string | Date;
1151
+ id: string;
903
1152
  firstName: string;
904
1153
  lastName: string;
905
1154
  email: string;
@@ -907,7 +1156,7 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
907
1156
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
908
1157
  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;
909
1158
  }>>>;
910
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
1159
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
911
1160
  userId: z.ZodString;
912
1161
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
913
1162
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -920,14 +1169,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
920
1169
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
921
1170
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
922
1171
  }, "strip", z.ZodTypeAny, {
923
- id: string;
924
1172
  createdAt: string;
925
1173
  updatedAt: string;
1174
+ id: string;
926
1175
  name: string;
927
1176
  }, {
928
- id: string;
929
1177
  createdAt: string | Date;
930
1178
  updatedAt: string | Date;
1179
+ id: string;
931
1180
  name: string;
932
1181
  }>>>;
933
1182
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -965,10 +1214,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
965
1214
  agentId: string;
966
1215
  }>>>;
967
1216
  }, "strip", z.ZodTypeAny, {
968
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
969
- id: string;
970
1217
  createdAt: string;
971
1218
  updatedAt: string;
1219
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1220
+ id: string;
972
1221
  name: string;
973
1222
  crn: string | null;
974
1223
  govLink: string;
@@ -985,10 +1234,10 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
985
1234
  agentId: string;
986
1235
  } | null | undefined;
987
1236
  }, {
988
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
989
- id: string;
990
1237
  createdAt: string | Date;
991
1238
  updatedAt: string | Date;
1239
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1240
+ id: string;
992
1241
  name: string;
993
1242
  crn: string | null;
994
1243
  govLink: string;
@@ -1010,15 +1259,15 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1010
1259
  firstName: z.ZodString;
1011
1260
  lastName: z.ZodString;
1012
1261
  email: z.ZodString;
1013
- phone: z.ZodEffects<z.ZodString, string, string>;
1262
+ phone: z.ZodString;
1014
1263
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
1015
1264
  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"]>>>;
1016
1265
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1017
1266
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1018
1267
  }, "strip", z.ZodTypeAny, {
1019
- id: string;
1020
1268
  createdAt: string;
1021
1269
  updatedAt: string;
1270
+ id: string;
1022
1271
  firstName: string;
1023
1272
  lastName: string;
1024
1273
  email: string;
@@ -1026,9 +1275,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1026
1275
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1027
1276
  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;
1028
1277
  }, {
1029
- id: string;
1030
1278
  createdAt: string | Date;
1031
1279
  updatedAt: string | Date;
1280
+ id: string;
1032
1281
  firstName: string;
1033
1282
  lastName: string;
1034
1283
  email: string;
@@ -1036,27 +1285,27 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1036
1285
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1037
1286
  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;
1038
1287
  }>>>;
1039
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
1288
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
1040
1289
  userId: z.ZodString;
1041
1290
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1042
1291
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1043
1292
  }, "strip", z.ZodTypeAny, {
1044
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1045
- id: string;
1046
1293
  createdAt: string;
1047
1294
  updatedAt: string;
1295
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1296
+ id: string;
1048
1297
  userId: string;
1049
1298
  company?: {
1050
- id: string;
1051
1299
  createdAt: string;
1052
1300
  updatedAt: string;
1301
+ id: string;
1053
1302
  name: string;
1054
1303
  } | null | undefined;
1055
1304
  client?: {
1056
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1057
- id: string;
1058
1305
  createdAt: string;
1059
1306
  updatedAt: string;
1307
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1308
+ id: string;
1060
1309
  name: string;
1061
1310
  crn: string | null;
1062
1311
  govLink: string;
@@ -1074,9 +1323,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1074
1323
  } | null | undefined;
1075
1324
  } | null | undefined;
1076
1325
  user?: {
1077
- id: string;
1078
1326
  createdAt: string;
1079
1327
  updatedAt: string;
1328
+ id: string;
1080
1329
  firstName: string;
1081
1330
  lastName: string;
1082
1331
  email: string;
@@ -1085,22 +1334,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1085
1334
  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;
1086
1335
  } | null | undefined;
1087
1336
  }, {
1088
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1089
- id: string;
1090
1337
  createdAt: string | Date;
1091
1338
  updatedAt: string | Date;
1339
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1340
+ id: string;
1092
1341
  userId: string;
1093
1342
  company?: {
1094
- id: string;
1095
1343
  createdAt: string | Date;
1096
1344
  updatedAt: string | Date;
1345
+ id: string;
1097
1346
  name: string;
1098
1347
  } | null | undefined;
1099
1348
  client?: {
1100
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1101
- id: string;
1102
1349
  createdAt: string | Date;
1103
1350
  updatedAt: string | Date;
1351
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1352
+ id: string;
1104
1353
  name: string;
1105
1354
  crn: string | null;
1106
1355
  govLink: string;
@@ -1118,9 +1367,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1118
1367
  } | null | undefined;
1119
1368
  } | null | undefined;
1120
1369
  user?: {
1121
- id: string;
1122
1370
  createdAt: string | Date;
1123
1371
  updatedAt: string | Date;
1372
+ id: string;
1124
1373
  firstName: string;
1125
1374
  lastName: string;
1126
1375
  email: string;
@@ -1130,22 +1379,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1130
1379
  } | null | undefined;
1131
1380
  }>>>;
1132
1381
  }, "strip", z.ZodTypeAny, {
1133
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1134
- id: string;
1135
1382
  createdAt: string;
1136
1383
  updatedAt: string;
1384
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1385
+ id: string;
1137
1386
  userId: string;
1138
1387
  company?: {
1139
- id: string;
1140
1388
  createdAt: string;
1141
1389
  updatedAt: string;
1390
+ id: string;
1142
1391
  name: string;
1143
1392
  } | null | undefined;
1144
1393
  client?: {
1145
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1146
- id: string;
1147
1394
  createdAt: string;
1148
1395
  updatedAt: string;
1396
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1397
+ id: string;
1149
1398
  name: string;
1150
1399
  crn: string | null;
1151
1400
  govLink: string;
@@ -1163,9 +1412,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1163
1412
  } | null | undefined;
1164
1413
  } | null | undefined;
1165
1414
  user?: {
1166
- id: string;
1167
1415
  createdAt: string;
1168
1416
  updatedAt: string;
1417
+ id: string;
1169
1418
  firstName: string;
1170
1419
  lastName: string;
1171
1420
  email: string;
@@ -1174,22 +1423,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1174
1423
  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;
1175
1424
  } | null | undefined;
1176
1425
  newCollaboration?: {
1177
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1178
- id: string;
1179
1426
  createdAt: string;
1180
1427
  updatedAt: string;
1428
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1429
+ id: string;
1181
1430
  userId: string;
1182
1431
  company?: {
1183
- id: string;
1184
1432
  createdAt: string;
1185
1433
  updatedAt: string;
1434
+ id: string;
1186
1435
  name: string;
1187
1436
  } | null | undefined;
1188
1437
  client?: {
1189
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1190
- id: string;
1191
1438
  createdAt: string;
1192
1439
  updatedAt: string;
1440
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1441
+ id: string;
1193
1442
  name: string;
1194
1443
  crn: string | null;
1195
1444
  govLink: string;
@@ -1207,9 +1456,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1207
1456
  } | null | undefined;
1208
1457
  } | null | undefined;
1209
1458
  user?: {
1210
- id: string;
1211
1459
  createdAt: string;
1212
1460
  updatedAt: string;
1461
+ id: string;
1213
1462
  firstName: string;
1214
1463
  lastName: string;
1215
1464
  email: string;
@@ -1219,22 +1468,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1219
1468
  } | null | undefined;
1220
1469
  } | null | undefined;
1221
1470
  }, {
1222
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1223
- id: string;
1224
1471
  createdAt: string | Date;
1225
1472
  updatedAt: string | Date;
1473
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1474
+ id: string;
1226
1475
  userId: string;
1227
1476
  company?: {
1228
- id: string;
1229
1477
  createdAt: string | Date;
1230
1478
  updatedAt: string | Date;
1479
+ id: string;
1231
1480
  name: string;
1232
1481
  } | null | undefined;
1233
1482
  client?: {
1234
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1235
- id: string;
1236
1483
  createdAt: string | Date;
1237
1484
  updatedAt: string | Date;
1485
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1486
+ id: string;
1238
1487
  name: string;
1239
1488
  crn: string | null;
1240
1489
  govLink: string;
@@ -1252,9 +1501,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1252
1501
  } | null | undefined;
1253
1502
  } | null | undefined;
1254
1503
  user?: {
1255
- id: string;
1256
1504
  createdAt: string | Date;
1257
1505
  updatedAt: string | Date;
1506
+ id: string;
1258
1507
  firstName: string;
1259
1508
  lastName: string;
1260
1509
  email: string;
@@ -1263,22 +1512,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1263
1512
  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;
1264
1513
  } | null | undefined;
1265
1514
  newCollaboration?: {
1266
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1267
- id: string;
1268
1515
  createdAt: string | Date;
1269
1516
  updatedAt: string | Date;
1517
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1518
+ id: string;
1270
1519
  userId: string;
1271
1520
  company?: {
1272
- id: string;
1273
1521
  createdAt: string | Date;
1274
1522
  updatedAt: string | Date;
1523
+ id: string;
1275
1524
  name: string;
1276
1525
  } | null | undefined;
1277
1526
  client?: {
1278
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1279
- id: string;
1280
1527
  createdAt: string | Date;
1281
1528
  updatedAt: string | Date;
1529
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1530
+ id: string;
1282
1531
  name: string;
1283
1532
  crn: string | null;
1284
1533
  govLink: string;
@@ -1296,9 +1545,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1296
1545
  } | null | undefined;
1297
1546
  } | null | undefined;
1298
1547
  user?: {
1299
- id: string;
1300
1548
  createdAt: string | Date;
1301
1549
  updatedAt: string | Date;
1550
+ id: string;
1302
1551
  firstName: string;
1303
1552
  lastName: string;
1304
1553
  email: string;
@@ -1316,22 +1565,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1316
1565
  }, "strip", z.ZodTypeAny, {
1317
1566
  limit: number;
1318
1567
  items: {
1319
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1320
- id: string;
1321
1568
  createdAt: string;
1322
1569
  updatedAt: string;
1570
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1571
+ id: string;
1323
1572
  userId: string;
1324
1573
  company?: {
1325
- id: string;
1326
1574
  createdAt: string;
1327
1575
  updatedAt: string;
1576
+ id: string;
1328
1577
  name: string;
1329
1578
  } | null | undefined;
1330
1579
  client?: {
1331
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1332
- id: string;
1333
1580
  createdAt: string;
1334
1581
  updatedAt: string;
1582
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1583
+ id: string;
1335
1584
  name: string;
1336
1585
  crn: string | null;
1337
1586
  govLink: string;
@@ -1349,9 +1598,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1349
1598
  } | null | undefined;
1350
1599
  } | null | undefined;
1351
1600
  user?: {
1352
- id: string;
1353
1601
  createdAt: string;
1354
1602
  updatedAt: string;
1603
+ id: string;
1355
1604
  firstName: string;
1356
1605
  lastName: string;
1357
1606
  email: string;
@@ -1360,22 +1609,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1360
1609
  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;
1361
1610
  } | null | undefined;
1362
1611
  newCollaboration?: {
1363
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1364
- id: string;
1365
1612
  createdAt: string;
1366
1613
  updatedAt: string;
1614
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1615
+ id: string;
1367
1616
  userId: string;
1368
1617
  company?: {
1369
- id: string;
1370
1618
  createdAt: string;
1371
1619
  updatedAt: string;
1620
+ id: string;
1372
1621
  name: string;
1373
1622
  } | null | undefined;
1374
1623
  client?: {
1375
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1376
- id: string;
1377
1624
  createdAt: string;
1378
1625
  updatedAt: string;
1626
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1627
+ id: string;
1379
1628
  name: string;
1380
1629
  crn: string | null;
1381
1630
  govLink: string;
@@ -1393,9 +1642,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1393
1642
  } | null | undefined;
1394
1643
  } | null | undefined;
1395
1644
  user?: {
1396
- id: string;
1397
1645
  createdAt: string;
1398
1646
  updatedAt: string;
1647
+ id: string;
1399
1648
  firstName: string;
1400
1649
  lastName: string;
1401
1650
  email: string;
@@ -1412,22 +1661,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1412
1661
  }, {
1413
1662
  limit: number;
1414
1663
  items: {
1415
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1416
- id: string;
1417
1664
  createdAt: string | Date;
1418
1665
  updatedAt: string | Date;
1666
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1667
+ id: string;
1419
1668
  userId: string;
1420
1669
  company?: {
1421
- id: string;
1422
1670
  createdAt: string | Date;
1423
1671
  updatedAt: string | Date;
1672
+ id: string;
1424
1673
  name: string;
1425
1674
  } | null | undefined;
1426
1675
  client?: {
1427
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1428
- id: string;
1429
1676
  createdAt: string | Date;
1430
1677
  updatedAt: string | Date;
1678
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1679
+ id: string;
1431
1680
  name: string;
1432
1681
  crn: string | null;
1433
1682
  govLink: string;
@@ -1445,9 +1694,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1445
1694
  } | null | undefined;
1446
1695
  } | null | undefined;
1447
1696
  user?: {
1448
- id: string;
1449
1697
  createdAt: string | Date;
1450
1698
  updatedAt: string | Date;
1699
+ id: string;
1451
1700
  firstName: string;
1452
1701
  lastName: string;
1453
1702
  email: string;
@@ -1456,22 +1705,22 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1456
1705
  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;
1457
1706
  } | null | undefined;
1458
1707
  newCollaboration?: {
1459
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1460
- id: string;
1461
1708
  createdAt: string | Date;
1462
1709
  updatedAt: string | Date;
1710
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
1711
+ id: string;
1463
1712
  userId: string;
1464
1713
  company?: {
1465
- id: string;
1466
1714
  createdAt: string | Date;
1467
1715
  updatedAt: string | Date;
1716
+ id: string;
1468
1717
  name: string;
1469
1718
  } | null | undefined;
1470
1719
  client?: {
1471
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1472
- id: string;
1473
1720
  createdAt: string | Date;
1474
1721
  updatedAt: string | Date;
1722
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1723
+ id: string;
1475
1724
  name: string;
1476
1725
  crn: string | null;
1477
1726
  govLink: string;
@@ -1489,9 +1738,9 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
1489
1738
  } | null | undefined;
1490
1739
  } | null | undefined;
1491
1740
  user?: {
1492
- id: string;
1493
1741
  createdAt: string | Date;
1494
1742
  updatedAt: string | Date;
1743
+ id: string;
1495
1744
  firstName: string;
1496
1745
  lastName: string;
1497
1746
  email: string;
@@ -1546,7 +1795,7 @@ export declare const collaborationsContractRouter: {
1546
1795
  }, {
1547
1796
  id: string;
1548
1797
  }>>;
1549
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
1798
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
1550
1799
  }, "strip", z.ZodTypeAny, {
1551
1800
  company: {
1552
1801
  id: string;
@@ -1554,7 +1803,7 @@ export declare const collaborationsContractRouter: {
1554
1803
  client: {
1555
1804
  id: string;
1556
1805
  };
1557
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
1806
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1558
1807
  user?: {
1559
1808
  id: string;
1560
1809
  } | undefined;
@@ -1565,7 +1814,7 @@ export declare const collaborationsContractRouter: {
1565
1814
  client: {
1566
1815
  id: string;
1567
1816
  };
1568
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
1817
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
1569
1818
  user?: {
1570
1819
  id: string;
1571
1820
  } | undefined;
@@ -1680,14 +1929,14 @@ export declare const collaborationsContractRouter: {
1680
1929
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1681
1930
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1682
1931
  }, "strip", z.ZodTypeAny, {
1683
- id: string;
1684
1932
  createdAt: string;
1685
1933
  updatedAt: string;
1934
+ id: string;
1686
1935
  name: string;
1687
1936
  }, {
1688
- id: string;
1689
1937
  createdAt: string | Date;
1690
1938
  updatedAt: string | Date;
1939
+ id: string;
1691
1940
  name: string;
1692
1941
  }>>>;
1693
1942
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1725,10 +1974,10 @@ export declare const collaborationsContractRouter: {
1725
1974
  agentId: string;
1726
1975
  }>>>;
1727
1976
  }, "strip", z.ZodTypeAny, {
1728
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1729
- id: string;
1730
1977
  createdAt: string;
1731
1978
  updatedAt: string;
1979
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
1980
+ id: string;
1732
1981
  name: string;
1733
1982
  crn: string | null;
1734
1983
  govLink: string;
@@ -1745,10 +1994,10 @@ export declare const collaborationsContractRouter: {
1745
1994
  agentId: string;
1746
1995
  } | null | undefined;
1747
1996
  }, {
1748
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1749
- id: string;
1750
1997
  createdAt: string | Date;
1751
1998
  updatedAt: string | Date;
1999
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2000
+ id: string;
1752
2001
  name: string;
1753
2002
  crn: string | null;
1754
2003
  govLink: string;
@@ -1770,15 +2019,15 @@ export declare const collaborationsContractRouter: {
1770
2019
  firstName: z.ZodString;
1771
2020
  lastName: z.ZodString;
1772
2021
  email: z.ZodString;
1773
- phone: z.ZodEffects<z.ZodString, string, string>;
2022
+ phone: z.ZodString;
1774
2023
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
1775
2024
  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"]>>>;
1776
2025
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1777
2026
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1778
2027
  }, "strip", z.ZodTypeAny, {
1779
- id: string;
1780
2028
  createdAt: string;
1781
2029
  updatedAt: string;
2030
+ id: string;
1782
2031
  firstName: string;
1783
2032
  lastName: string;
1784
2033
  email: string;
@@ -1786,9 +2035,9 @@ export declare const collaborationsContractRouter: {
1786
2035
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1787
2036
  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;
1788
2037
  }, {
1789
- id: string;
1790
2038
  createdAt: string | Date;
1791
2039
  updatedAt: string | Date;
2040
+ id: string;
1792
2041
  firstName: string;
1793
2042
  lastName: string;
1794
2043
  email: string;
@@ -1796,7 +2045,7 @@ export declare const collaborationsContractRouter: {
1796
2045
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1797
2046
  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;
1798
2047
  }>>>;
1799
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
2048
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
1800
2049
  userId: z.ZodString;
1801
2050
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1802
2051
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -1809,14 +2058,14 @@ export declare const collaborationsContractRouter: {
1809
2058
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1810
2059
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1811
2060
  }, "strip", z.ZodTypeAny, {
1812
- id: string;
1813
2061
  createdAt: string;
1814
2062
  updatedAt: string;
2063
+ id: string;
1815
2064
  name: string;
1816
2065
  }, {
1817
- id: string;
1818
2066
  createdAt: string | Date;
1819
2067
  updatedAt: string | Date;
2068
+ id: string;
1820
2069
  name: string;
1821
2070
  }>>>;
1822
2071
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -1854,10 +2103,10 @@ export declare const collaborationsContractRouter: {
1854
2103
  agentId: string;
1855
2104
  }>>>;
1856
2105
  }, "strip", z.ZodTypeAny, {
1857
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1858
- id: string;
1859
2106
  createdAt: string;
1860
2107
  updatedAt: string;
2108
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2109
+ id: string;
1861
2110
  name: string;
1862
2111
  crn: string | null;
1863
2112
  govLink: string;
@@ -1874,10 +2123,10 @@ export declare const collaborationsContractRouter: {
1874
2123
  agentId: string;
1875
2124
  } | null | undefined;
1876
2125
  }, {
1877
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1878
- id: string;
1879
2126
  createdAt: string | Date;
1880
2127
  updatedAt: string | Date;
2128
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2129
+ id: string;
1881
2130
  name: string;
1882
2131
  crn: string | null;
1883
2132
  govLink: string;
@@ -1899,15 +2148,15 @@ export declare const collaborationsContractRouter: {
1899
2148
  firstName: z.ZodString;
1900
2149
  lastName: z.ZodString;
1901
2150
  email: z.ZodString;
1902
- phone: z.ZodEffects<z.ZodString, string, string>;
2151
+ phone: z.ZodString;
1903
2152
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
1904
2153
  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"]>>>;
1905
2154
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1906
2155
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1907
2156
  }, "strip", z.ZodTypeAny, {
1908
- id: string;
1909
2157
  createdAt: string;
1910
2158
  updatedAt: string;
2159
+ id: string;
1911
2160
  firstName: string;
1912
2161
  lastName: string;
1913
2162
  email: string;
@@ -1915,9 +2164,9 @@ export declare const collaborationsContractRouter: {
1915
2164
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1916
2165
  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;
1917
2166
  }, {
1918
- id: string;
1919
2167
  createdAt: string | Date;
1920
2168
  updatedAt: string | Date;
2169
+ id: string;
1921
2170
  firstName: string;
1922
2171
  lastName: string;
1923
2172
  email: string;
@@ -1925,27 +2174,27 @@ export declare const collaborationsContractRouter: {
1925
2174
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
1926
2175
  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;
1927
2176
  }>>>;
1928
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
2177
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
1929
2178
  userId: z.ZodString;
1930
2179
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1931
2180
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
1932
2181
  }, "strip", z.ZodTypeAny, {
1933
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1934
- id: string;
1935
2182
  createdAt: string;
1936
2183
  updatedAt: string;
2184
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2185
+ id: string;
1937
2186
  userId: string;
1938
2187
  company?: {
1939
- id: string;
1940
2188
  createdAt: string;
1941
2189
  updatedAt: string;
2190
+ id: string;
1942
2191
  name: string;
1943
2192
  } | null | undefined;
1944
2193
  client?: {
1945
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1946
- id: string;
1947
2194
  createdAt: string;
1948
2195
  updatedAt: string;
2196
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2197
+ id: string;
1949
2198
  name: string;
1950
2199
  crn: string | null;
1951
2200
  govLink: string;
@@ -1963,9 +2212,9 @@ export declare const collaborationsContractRouter: {
1963
2212
  } | null | undefined;
1964
2213
  } | null | undefined;
1965
2214
  user?: {
1966
- id: string;
1967
2215
  createdAt: string;
1968
2216
  updatedAt: string;
2217
+ id: string;
1969
2218
  firstName: string;
1970
2219
  lastName: string;
1971
2220
  email: string;
@@ -1974,22 +2223,22 @@ export declare const collaborationsContractRouter: {
1974
2223
  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;
1975
2224
  } | null | undefined;
1976
2225
  }, {
1977
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
1978
- id: string;
1979
2226
  createdAt: string | Date;
1980
2227
  updatedAt: string | Date;
2228
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2229
+ id: string;
1981
2230
  userId: string;
1982
2231
  company?: {
1983
- id: string;
1984
2232
  createdAt: string | Date;
1985
2233
  updatedAt: string | Date;
2234
+ id: string;
1986
2235
  name: string;
1987
2236
  } | null | undefined;
1988
2237
  client?: {
1989
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
1990
- id: string;
1991
2238
  createdAt: string | Date;
1992
2239
  updatedAt: string | Date;
2240
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2241
+ id: string;
1993
2242
  name: string;
1994
2243
  crn: string | null;
1995
2244
  govLink: string;
@@ -2007,9 +2256,9 @@ export declare const collaborationsContractRouter: {
2007
2256
  } | null | undefined;
2008
2257
  } | null | undefined;
2009
2258
  user?: {
2010
- id: string;
2011
2259
  createdAt: string | Date;
2012
2260
  updatedAt: string | Date;
2261
+ id: string;
2013
2262
  firstName: string;
2014
2263
  lastName: string;
2015
2264
  email: string;
@@ -2019,22 +2268,22 @@ export declare const collaborationsContractRouter: {
2019
2268
  } | null | undefined;
2020
2269
  }>>>;
2021
2270
  }, "strip", z.ZodTypeAny, {
2022
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2023
- id: string;
2024
2271
  createdAt: string;
2025
2272
  updatedAt: string;
2273
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2274
+ id: string;
2026
2275
  userId: string;
2027
2276
  company?: {
2028
- id: string;
2029
2277
  createdAt: string;
2030
2278
  updatedAt: string;
2279
+ id: string;
2031
2280
  name: string;
2032
2281
  } | null | undefined;
2033
2282
  client?: {
2034
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2035
- id: string;
2036
2283
  createdAt: string;
2037
2284
  updatedAt: string;
2285
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2286
+ id: string;
2038
2287
  name: string;
2039
2288
  crn: string | null;
2040
2289
  govLink: string;
@@ -2052,9 +2301,9 @@ export declare const collaborationsContractRouter: {
2052
2301
  } | null | undefined;
2053
2302
  } | null | undefined;
2054
2303
  user?: {
2055
- id: string;
2056
2304
  createdAt: string;
2057
2305
  updatedAt: string;
2306
+ id: string;
2058
2307
  firstName: string;
2059
2308
  lastName: string;
2060
2309
  email: string;
@@ -2063,22 +2312,22 @@ export declare const collaborationsContractRouter: {
2063
2312
  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;
2064
2313
  } | null | undefined;
2065
2314
  newCollaboration?: {
2066
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2067
- id: string;
2068
2315
  createdAt: string;
2069
2316
  updatedAt: string;
2317
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2318
+ id: string;
2070
2319
  userId: string;
2071
2320
  company?: {
2072
- id: string;
2073
2321
  createdAt: string;
2074
2322
  updatedAt: string;
2323
+ id: string;
2075
2324
  name: string;
2076
2325
  } | null | undefined;
2077
2326
  client?: {
2078
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2079
- id: string;
2080
2327
  createdAt: string;
2081
2328
  updatedAt: string;
2329
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2330
+ id: string;
2082
2331
  name: string;
2083
2332
  crn: string | null;
2084
2333
  govLink: string;
@@ -2096,9 +2345,9 @@ export declare const collaborationsContractRouter: {
2096
2345
  } | null | undefined;
2097
2346
  } | null | undefined;
2098
2347
  user?: {
2099
- id: string;
2100
2348
  createdAt: string;
2101
2349
  updatedAt: string;
2350
+ id: string;
2102
2351
  firstName: string;
2103
2352
  lastName: string;
2104
2353
  email: string;
@@ -2108,22 +2357,22 @@ export declare const collaborationsContractRouter: {
2108
2357
  } | null | undefined;
2109
2358
  } | null | undefined;
2110
2359
  }, {
2111
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2112
- id: string;
2113
2360
  createdAt: string | Date;
2114
2361
  updatedAt: string | Date;
2362
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2363
+ id: string;
2115
2364
  userId: string;
2116
2365
  company?: {
2117
- id: string;
2118
2366
  createdAt: string | Date;
2119
2367
  updatedAt: string | Date;
2368
+ id: string;
2120
2369
  name: string;
2121
2370
  } | null | undefined;
2122
2371
  client?: {
2123
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2124
- id: string;
2125
2372
  createdAt: string | Date;
2126
2373
  updatedAt: string | Date;
2374
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2375
+ id: string;
2127
2376
  name: string;
2128
2377
  crn: string | null;
2129
2378
  govLink: string;
@@ -2141,9 +2390,9 @@ export declare const collaborationsContractRouter: {
2141
2390
  } | null | undefined;
2142
2391
  } | null | undefined;
2143
2392
  user?: {
2144
- id: string;
2145
2393
  createdAt: string | Date;
2146
2394
  updatedAt: string | Date;
2395
+ id: string;
2147
2396
  firstName: string;
2148
2397
  lastName: string;
2149
2398
  email: string;
@@ -2152,22 +2401,22 @@ export declare const collaborationsContractRouter: {
2152
2401
  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;
2153
2402
  } | null | undefined;
2154
2403
  newCollaboration?: {
2155
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2156
- id: string;
2157
2404
  createdAt: string | Date;
2158
2405
  updatedAt: string | Date;
2406
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2407
+ id: string;
2159
2408
  userId: string;
2160
2409
  company?: {
2161
- id: string;
2162
2410
  createdAt: string | Date;
2163
2411
  updatedAt: string | Date;
2412
+ id: string;
2164
2413
  name: string;
2165
2414
  } | null | undefined;
2166
2415
  client?: {
2167
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2168
- id: string;
2169
2416
  createdAt: string | Date;
2170
2417
  updatedAt: string | Date;
2418
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2419
+ id: string;
2171
2420
  name: string;
2172
2421
  crn: string | null;
2173
2422
  govLink: string;
@@ -2185,9 +2434,9 @@ export declare const collaborationsContractRouter: {
2185
2434
  } | null | undefined;
2186
2435
  } | null | undefined;
2187
2436
  user?: {
2188
- id: string;
2189
2437
  createdAt: string | Date;
2190
2438
  updatedAt: string | Date;
2439
+ id: string;
2191
2440
  firstName: string;
2192
2441
  lastName: string;
2193
2442
  email: string;
@@ -2225,6 +2474,12 @@ export declare const collaborationsContractRouter: {
2225
2474
  };
2226
2475
  };
2227
2476
  findAll: {
2477
+ metadata: {
2478
+ tags: string[];
2479
+ openApi: {
2480
+ operationId: string;
2481
+ };
2482
+ };
2228
2483
  query: z.ZodObject<{
2229
2484
  limit: z.ZodDefault<z.ZodNumber>;
2230
2485
  page: z.ZodDefault<z.ZodNumber>;
@@ -2232,34 +2487,28 @@ export declare const collaborationsContractRouter: {
2232
2487
  companyId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2233
2488
  clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2234
2489
  userId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2235
- status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>>;
2490
+ status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>>;
2236
2491
  sortBy: z.ZodNullable<z.ZodOptional<z.ZodEnum<["createdAt", "updatedAt", "status"]>>>;
2237
2492
  sortOrder: z.ZodNullable<z.ZodOptional<z.ZodEnum<["ASC", "DESC"]>>>;
2238
2493
  }, "strip", z.ZodTypeAny, {
2239
2494
  limit: number;
2240
2495
  page: number;
2241
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
2242
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2243
- sortOrder?: "ASC" | "DESC" | null | undefined;
2496
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2244
2497
  userId?: string | null | undefined;
2245
2498
  companyId?: string | null | undefined;
2246
2499
  clientId?: string | null | undefined;
2500
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2501
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2247
2502
  }, {
2248
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | null | undefined;
2503
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | null | undefined;
2504
+ userId?: string | null | undefined;
2249
2505
  limit?: number | undefined;
2250
2506
  page?: number | undefined;
2251
- sortBy?: "status" | "createdAt" | "updatedAt" | null | undefined;
2252
- sortOrder?: "ASC" | "DESC" | null | undefined;
2253
- userId?: string | null | undefined;
2254
2507
  companyId?: string | null | undefined;
2255
2508
  clientId?: string | null | undefined;
2509
+ sortBy?: "createdAt" | "updatedAt" | "status" | null | undefined;
2510
+ sortOrder?: "ASC" | "DESC" | null | undefined;
2256
2511
  }>;
2257
- metadata: {
2258
- tags: string[];
2259
- openApi: {
2260
- operationId: string;
2261
- };
2262
- };
2263
2512
  summary: "Get all collaborations";
2264
2513
  method: "GET";
2265
2514
  path: "/v2/collaborations";
@@ -2373,14 +2622,14 @@ export declare const collaborationsContractRouter: {
2373
2622
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2374
2623
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2375
2624
  }, "strip", z.ZodTypeAny, {
2376
- id: string;
2377
2625
  createdAt: string;
2378
2626
  updatedAt: string;
2627
+ id: string;
2379
2628
  name: string;
2380
2629
  }, {
2381
- id: string;
2382
2630
  createdAt: string | Date;
2383
2631
  updatedAt: string | Date;
2632
+ id: string;
2384
2633
  name: string;
2385
2634
  }>>>;
2386
2635
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2418,10 +2667,10 @@ export declare const collaborationsContractRouter: {
2418
2667
  agentId: string;
2419
2668
  }>>>;
2420
2669
  }, "strip", z.ZodTypeAny, {
2421
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2422
- id: string;
2423
2670
  createdAt: string;
2424
2671
  updatedAt: string;
2672
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2673
+ id: string;
2425
2674
  name: string;
2426
2675
  crn: string | null;
2427
2676
  govLink: string;
@@ -2438,10 +2687,10 @@ export declare const collaborationsContractRouter: {
2438
2687
  agentId: string;
2439
2688
  } | null | undefined;
2440
2689
  }, {
2441
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2442
- id: string;
2443
2690
  createdAt: string | Date;
2444
2691
  updatedAt: string | Date;
2692
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2693
+ id: string;
2445
2694
  name: string;
2446
2695
  crn: string | null;
2447
2696
  govLink: string;
@@ -2463,15 +2712,15 @@ export declare const collaborationsContractRouter: {
2463
2712
  firstName: z.ZodString;
2464
2713
  lastName: z.ZodString;
2465
2714
  email: z.ZodString;
2466
- phone: z.ZodEffects<z.ZodString, string, string>;
2715
+ phone: z.ZodString;
2467
2716
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
2468
2717
  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"]>>>;
2469
2718
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2470
2719
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2471
2720
  }, "strip", z.ZodTypeAny, {
2472
- id: string;
2473
2721
  createdAt: string;
2474
2722
  updatedAt: string;
2723
+ id: string;
2475
2724
  firstName: string;
2476
2725
  lastName: string;
2477
2726
  email: string;
@@ -2479,9 +2728,9 @@ export declare const collaborationsContractRouter: {
2479
2728
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2480
2729
  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;
2481
2730
  }, {
2482
- id: string;
2483
2731
  createdAt: string | Date;
2484
2732
  updatedAt: string | Date;
2733
+ id: string;
2485
2734
  firstName: string;
2486
2735
  lastName: string;
2487
2736
  email: string;
@@ -2489,7 +2738,7 @@ export declare const collaborationsContractRouter: {
2489
2738
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2490
2739
  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;
2491
2740
  }>>>;
2492
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
2741
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
2493
2742
  userId: z.ZodString;
2494
2743
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2495
2744
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -2502,14 +2751,14 @@ export declare const collaborationsContractRouter: {
2502
2751
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2503
2752
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2504
2753
  }, "strip", z.ZodTypeAny, {
2505
- id: string;
2506
2754
  createdAt: string;
2507
2755
  updatedAt: string;
2756
+ id: string;
2508
2757
  name: string;
2509
2758
  }, {
2510
- id: string;
2511
2759
  createdAt: string | Date;
2512
2760
  updatedAt: string | Date;
2761
+ id: string;
2513
2762
  name: string;
2514
2763
  }>>>;
2515
2764
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -2547,10 +2796,10 @@ export declare const collaborationsContractRouter: {
2547
2796
  agentId: string;
2548
2797
  }>>>;
2549
2798
  }, "strip", z.ZodTypeAny, {
2550
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2551
- id: string;
2552
2799
  createdAt: string;
2553
2800
  updatedAt: string;
2801
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2802
+ id: string;
2554
2803
  name: string;
2555
2804
  crn: string | null;
2556
2805
  govLink: string;
@@ -2567,10 +2816,10 @@ export declare const collaborationsContractRouter: {
2567
2816
  agentId: string;
2568
2817
  } | null | undefined;
2569
2818
  }, {
2570
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2571
- id: string;
2572
2819
  createdAt: string | Date;
2573
2820
  updatedAt: string | Date;
2821
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2822
+ id: string;
2574
2823
  name: string;
2575
2824
  crn: string | null;
2576
2825
  govLink: string;
@@ -2592,15 +2841,15 @@ export declare const collaborationsContractRouter: {
2592
2841
  firstName: z.ZodString;
2593
2842
  lastName: z.ZodString;
2594
2843
  email: z.ZodString;
2595
- phone: z.ZodEffects<z.ZodString, string, string>;
2844
+ phone: z.ZodString;
2596
2845
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
2597
2846
  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"]>>>;
2598
2847
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2599
2848
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2600
2849
  }, "strip", z.ZodTypeAny, {
2601
- id: string;
2602
2850
  createdAt: string;
2603
2851
  updatedAt: string;
2852
+ id: string;
2604
2853
  firstName: string;
2605
2854
  lastName: string;
2606
2855
  email: string;
@@ -2608,9 +2857,9 @@ export declare const collaborationsContractRouter: {
2608
2857
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2609
2858
  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;
2610
2859
  }, {
2611
- id: string;
2612
2860
  createdAt: string | Date;
2613
2861
  updatedAt: string | Date;
2862
+ id: string;
2614
2863
  firstName: string;
2615
2864
  lastName: string;
2616
2865
  email: string;
@@ -2618,27 +2867,27 @@ export declare const collaborationsContractRouter: {
2618
2867
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
2619
2868
  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;
2620
2869
  }>>>;
2621
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
2870
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
2622
2871
  userId: z.ZodString;
2623
2872
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2624
2873
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
2625
2874
  }, "strip", z.ZodTypeAny, {
2626
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2627
- id: string;
2628
2875
  createdAt: string;
2629
2876
  updatedAt: string;
2877
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2878
+ id: string;
2630
2879
  userId: string;
2631
2880
  company?: {
2632
- id: string;
2633
2881
  createdAt: string;
2634
2882
  updatedAt: string;
2883
+ id: string;
2635
2884
  name: string;
2636
2885
  } | null | undefined;
2637
2886
  client?: {
2638
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2639
- id: string;
2640
2887
  createdAt: string;
2641
2888
  updatedAt: string;
2889
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2890
+ id: string;
2642
2891
  name: string;
2643
2892
  crn: string | null;
2644
2893
  govLink: string;
@@ -2656,9 +2905,9 @@ export declare const collaborationsContractRouter: {
2656
2905
  } | null | undefined;
2657
2906
  } | null | undefined;
2658
2907
  user?: {
2659
- id: string;
2660
2908
  createdAt: string;
2661
2909
  updatedAt: string;
2910
+ id: string;
2662
2911
  firstName: string;
2663
2912
  lastName: string;
2664
2913
  email: string;
@@ -2667,22 +2916,22 @@ export declare const collaborationsContractRouter: {
2667
2916
  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;
2668
2917
  } | null | undefined;
2669
2918
  }, {
2670
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2671
- id: string;
2672
2919
  createdAt: string | Date;
2673
2920
  updatedAt: string | Date;
2921
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2922
+ id: string;
2674
2923
  userId: string;
2675
2924
  company?: {
2676
- id: string;
2677
2925
  createdAt: string | Date;
2678
2926
  updatedAt: string | Date;
2927
+ id: string;
2679
2928
  name: string;
2680
2929
  } | null | undefined;
2681
2930
  client?: {
2682
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2683
- id: string;
2684
2931
  createdAt: string | Date;
2685
2932
  updatedAt: string | Date;
2933
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2934
+ id: string;
2686
2935
  name: string;
2687
2936
  crn: string | null;
2688
2937
  govLink: string;
@@ -2700,9 +2949,9 @@ export declare const collaborationsContractRouter: {
2700
2949
  } | null | undefined;
2701
2950
  } | null | undefined;
2702
2951
  user?: {
2703
- id: string;
2704
2952
  createdAt: string | Date;
2705
2953
  updatedAt: string | Date;
2954
+ id: string;
2706
2955
  firstName: string;
2707
2956
  lastName: string;
2708
2957
  email: string;
@@ -2712,22 +2961,22 @@ export declare const collaborationsContractRouter: {
2712
2961
  } | null | undefined;
2713
2962
  }>>>;
2714
2963
  }, "strip", z.ZodTypeAny, {
2715
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2716
- id: string;
2717
2964
  createdAt: string;
2718
2965
  updatedAt: string;
2966
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
2967
+ id: string;
2719
2968
  userId: string;
2720
2969
  company?: {
2721
- id: string;
2722
2970
  createdAt: string;
2723
2971
  updatedAt: string;
2972
+ id: string;
2724
2973
  name: string;
2725
2974
  } | null | undefined;
2726
2975
  client?: {
2727
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2728
- id: string;
2729
2976
  createdAt: string;
2730
2977
  updatedAt: string;
2978
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
2979
+ id: string;
2731
2980
  name: string;
2732
2981
  crn: string | null;
2733
2982
  govLink: string;
@@ -2745,9 +2994,9 @@ export declare const collaborationsContractRouter: {
2745
2994
  } | null | undefined;
2746
2995
  } | null | undefined;
2747
2996
  user?: {
2748
- id: string;
2749
2997
  createdAt: string;
2750
2998
  updatedAt: string;
2999
+ id: string;
2751
3000
  firstName: string;
2752
3001
  lastName: string;
2753
3002
  email: string;
@@ -2756,22 +3005,22 @@ export declare const collaborationsContractRouter: {
2756
3005
  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;
2757
3006
  } | null | undefined;
2758
3007
  newCollaboration?: {
2759
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2760
- id: string;
2761
3008
  createdAt: string;
2762
3009
  updatedAt: string;
3010
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3011
+ id: string;
2763
3012
  userId: string;
2764
3013
  company?: {
2765
- id: string;
2766
3014
  createdAt: string;
2767
3015
  updatedAt: string;
3016
+ id: string;
2768
3017
  name: string;
2769
3018
  } | null | undefined;
2770
3019
  client?: {
2771
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2772
- id: string;
2773
3020
  createdAt: string;
2774
3021
  updatedAt: string;
3022
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3023
+ id: string;
2775
3024
  name: string;
2776
3025
  crn: string | null;
2777
3026
  govLink: string;
@@ -2789,9 +3038,9 @@ export declare const collaborationsContractRouter: {
2789
3038
  } | null | undefined;
2790
3039
  } | null | undefined;
2791
3040
  user?: {
2792
- id: string;
2793
3041
  createdAt: string;
2794
3042
  updatedAt: string;
3043
+ id: string;
2795
3044
  firstName: string;
2796
3045
  lastName: string;
2797
3046
  email: string;
@@ -2801,22 +3050,22 @@ export declare const collaborationsContractRouter: {
2801
3050
  } | null | undefined;
2802
3051
  } | null | undefined;
2803
3052
  }, {
2804
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2805
- id: string;
2806
3053
  createdAt: string | Date;
2807
3054
  updatedAt: string | Date;
3055
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3056
+ id: string;
2808
3057
  userId: string;
2809
3058
  company?: {
2810
- id: string;
2811
3059
  createdAt: string | Date;
2812
3060
  updatedAt: string | Date;
3061
+ id: string;
2813
3062
  name: string;
2814
3063
  } | null | undefined;
2815
3064
  client?: {
2816
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2817
- id: string;
2818
3065
  createdAt: string | Date;
2819
3066
  updatedAt: string | Date;
3067
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3068
+ id: string;
2820
3069
  name: string;
2821
3070
  crn: string | null;
2822
3071
  govLink: string;
@@ -2834,9 +3083,9 @@ export declare const collaborationsContractRouter: {
2834
3083
  } | null | undefined;
2835
3084
  } | null | undefined;
2836
3085
  user?: {
2837
- id: string;
2838
3086
  createdAt: string | Date;
2839
3087
  updatedAt: string | Date;
3088
+ id: string;
2840
3089
  firstName: string;
2841
3090
  lastName: string;
2842
3091
  email: string;
@@ -2845,22 +3094,22 @@ export declare const collaborationsContractRouter: {
2845
3094
  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;
2846
3095
  } | null | undefined;
2847
3096
  newCollaboration?: {
2848
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2849
- id: string;
2850
3097
  createdAt: string | Date;
2851
3098
  updatedAt: string | Date;
3099
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3100
+ id: string;
2852
3101
  userId: string;
2853
3102
  company?: {
2854
- id: string;
2855
3103
  createdAt: string | Date;
2856
3104
  updatedAt: string | Date;
3105
+ id: string;
2857
3106
  name: string;
2858
3107
  } | null | undefined;
2859
3108
  client?: {
2860
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2861
- id: string;
2862
3109
  createdAt: string | Date;
2863
3110
  updatedAt: string | Date;
3111
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3112
+ id: string;
2864
3113
  name: string;
2865
3114
  crn: string | null;
2866
3115
  govLink: string;
@@ -2878,9 +3127,9 @@ export declare const collaborationsContractRouter: {
2878
3127
  } | null | undefined;
2879
3128
  } | null | undefined;
2880
3129
  user?: {
2881
- id: string;
2882
3130
  createdAt: string | Date;
2883
3131
  updatedAt: string | Date;
3132
+ id: string;
2884
3133
  firstName: string;
2885
3134
  lastName: string;
2886
3135
  email: string;
@@ -2898,22 +3147,22 @@ export declare const collaborationsContractRouter: {
2898
3147
  }, "strip", z.ZodTypeAny, {
2899
3148
  limit: number;
2900
3149
  items: {
2901
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2902
- id: string;
2903
3150
  createdAt: string;
2904
3151
  updatedAt: string;
3152
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3153
+ id: string;
2905
3154
  userId: string;
2906
3155
  company?: {
2907
- id: string;
2908
3156
  createdAt: string;
2909
3157
  updatedAt: string;
3158
+ id: string;
2910
3159
  name: string;
2911
3160
  } | null | undefined;
2912
3161
  client?: {
2913
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2914
- id: string;
2915
3162
  createdAt: string;
2916
3163
  updatedAt: string;
3164
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3165
+ id: string;
2917
3166
  name: string;
2918
3167
  crn: string | null;
2919
3168
  govLink: string;
@@ -2931,9 +3180,9 @@ export declare const collaborationsContractRouter: {
2931
3180
  } | null | undefined;
2932
3181
  } | null | undefined;
2933
3182
  user?: {
2934
- id: string;
2935
3183
  createdAt: string;
2936
3184
  updatedAt: string;
3185
+ id: string;
2937
3186
  firstName: string;
2938
3187
  lastName: string;
2939
3188
  email: string;
@@ -2942,22 +3191,22 @@ export declare const collaborationsContractRouter: {
2942
3191
  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;
2943
3192
  } | null | undefined;
2944
3193
  newCollaboration?: {
2945
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2946
- id: string;
2947
3194
  createdAt: string;
2948
3195
  updatedAt: string;
3196
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3197
+ id: string;
2949
3198
  userId: string;
2950
3199
  company?: {
2951
- id: string;
2952
3200
  createdAt: string;
2953
3201
  updatedAt: string;
3202
+ id: string;
2954
3203
  name: string;
2955
3204
  } | null | undefined;
2956
3205
  client?: {
2957
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
2958
- id: string;
2959
3206
  createdAt: string;
2960
3207
  updatedAt: string;
3208
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3209
+ id: string;
2961
3210
  name: string;
2962
3211
  crn: string | null;
2963
3212
  govLink: string;
@@ -2975,9 +3224,9 @@ export declare const collaborationsContractRouter: {
2975
3224
  } | null | undefined;
2976
3225
  } | null | undefined;
2977
3226
  user?: {
2978
- id: string;
2979
3227
  createdAt: string;
2980
3228
  updatedAt: string;
3229
+ id: string;
2981
3230
  firstName: string;
2982
3231
  lastName: string;
2983
3232
  email: string;
@@ -2994,22 +3243,22 @@ export declare const collaborationsContractRouter: {
2994
3243
  }, {
2995
3244
  limit: number;
2996
3245
  items: {
2997
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
2998
- id: string;
2999
3246
  createdAt: string | Date;
3000
3247
  updatedAt: string | Date;
3248
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3249
+ id: string;
3001
3250
  userId: string;
3002
3251
  company?: {
3003
- id: string;
3004
3252
  createdAt: string | Date;
3005
3253
  updatedAt: string | Date;
3254
+ id: string;
3006
3255
  name: string;
3007
3256
  } | null | undefined;
3008
3257
  client?: {
3009
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3010
- id: string;
3011
3258
  createdAt: string | Date;
3012
3259
  updatedAt: string | Date;
3260
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3261
+ id: string;
3013
3262
  name: string;
3014
3263
  crn: string | null;
3015
3264
  govLink: string;
@@ -3027,9 +3276,9 @@ export declare const collaborationsContractRouter: {
3027
3276
  } | null | undefined;
3028
3277
  } | null | undefined;
3029
3278
  user?: {
3030
- id: string;
3031
3279
  createdAt: string | Date;
3032
3280
  updatedAt: string | Date;
3281
+ id: string;
3033
3282
  firstName: string;
3034
3283
  lastName: string;
3035
3284
  email: string;
@@ -3038,22 +3287,22 @@ export declare const collaborationsContractRouter: {
3038
3287
  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;
3039
3288
  } | null | undefined;
3040
3289
  newCollaboration?: {
3041
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3042
- id: string;
3043
3290
  createdAt: string | Date;
3044
3291
  updatedAt: string | Date;
3292
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3293
+ id: string;
3045
3294
  userId: string;
3046
3295
  company?: {
3047
- id: string;
3048
3296
  createdAt: string | Date;
3049
3297
  updatedAt: string | Date;
3298
+ id: string;
3050
3299
  name: string;
3051
3300
  } | null | undefined;
3052
3301
  client?: {
3053
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3054
- id: string;
3055
3302
  createdAt: string | Date;
3056
3303
  updatedAt: string | Date;
3304
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3305
+ id: string;
3057
3306
  name: string;
3058
3307
  crn: string | null;
3059
3308
  govLink: string;
@@ -3071,9 +3320,9 @@ export declare const collaborationsContractRouter: {
3071
3320
  } | null | undefined;
3072
3321
  } | null | undefined;
3073
3322
  user?: {
3074
- id: string;
3075
3323
  createdAt: string | Date;
3076
3324
  updatedAt: string | Date;
3325
+ id: string;
3077
3326
  firstName: string;
3078
3327
  lastName: string;
3079
3328
  email: string;
@@ -3089,24 +3338,24 @@ export declare const collaborationsContractRouter: {
3089
3338
  totalPages: number;
3090
3339
  }>;
3091
3340
  };
3092
- };
3093
- autocomplete: {
3341
+ };
3342
+ autocomplete: {
3343
+ metadata: {
3344
+ tags: string[];
3345
+ openApi: {
3346
+ operationId: string;
3347
+ };
3348
+ };
3094
3349
  query: z.ZodObject<{
3095
3350
  query: z.ZodOptional<z.ZodString>;
3096
3351
  id: z.ZodOptional<z.ZodString>;
3097
3352
  }, "strip", z.ZodTypeAny, {
3098
- query?: string | undefined;
3099
3353
  id?: string | undefined;
3100
- }, {
3101
3354
  query?: string | undefined;
3355
+ }, {
3102
3356
  id?: string | undefined;
3357
+ query?: string | undefined;
3103
3358
  }>;
3104
- metadata: {
3105
- tags: string[];
3106
- openApi: {
3107
- operationId: string;
3108
- };
3109
- };
3110
3359
  summary: "Get collaborations for autocomplete";
3111
3360
  method: "GET";
3112
3361
  path: "/v2/collaborations/autocomplete";
@@ -3390,14 +3639,14 @@ export declare const collaborationsContractRouter: {
3390
3639
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3391
3640
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3392
3641
  }, "strip", z.ZodTypeAny, {
3393
- id: string;
3394
3642
  createdAt: string;
3395
3643
  updatedAt: string;
3644
+ id: string;
3396
3645
  name: string;
3397
3646
  }, {
3398
- id: string;
3399
3647
  createdAt: string | Date;
3400
3648
  updatedAt: string | Date;
3649
+ id: string;
3401
3650
  name: string;
3402
3651
  }>>>;
3403
3652
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3435,10 +3684,10 @@ export declare const collaborationsContractRouter: {
3435
3684
  agentId: string;
3436
3685
  }>>>;
3437
3686
  }, "strip", z.ZodTypeAny, {
3438
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3439
- id: string;
3440
3687
  createdAt: string;
3441
3688
  updatedAt: string;
3689
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3690
+ id: string;
3442
3691
  name: string;
3443
3692
  crn: string | null;
3444
3693
  govLink: string;
@@ -3455,10 +3704,10 @@ export declare const collaborationsContractRouter: {
3455
3704
  agentId: string;
3456
3705
  } | null | undefined;
3457
3706
  }, {
3458
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3459
- id: string;
3460
3707
  createdAt: string | Date;
3461
3708
  updatedAt: string | Date;
3709
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3710
+ id: string;
3462
3711
  name: string;
3463
3712
  crn: string | null;
3464
3713
  govLink: string;
@@ -3480,15 +3729,15 @@ export declare const collaborationsContractRouter: {
3480
3729
  firstName: z.ZodString;
3481
3730
  lastName: z.ZodString;
3482
3731
  email: z.ZodString;
3483
- phone: z.ZodEffects<z.ZodString, string, string>;
3732
+ phone: z.ZodString;
3484
3733
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
3485
3734
  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"]>>>;
3486
3735
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3487
3736
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3488
3737
  }, "strip", z.ZodTypeAny, {
3489
- id: string;
3490
3738
  createdAt: string;
3491
3739
  updatedAt: string;
3740
+ id: string;
3492
3741
  firstName: string;
3493
3742
  lastName: string;
3494
3743
  email: string;
@@ -3496,9 +3745,9 @@ export declare const collaborationsContractRouter: {
3496
3745
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3497
3746
  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;
3498
3747
  }, {
3499
- id: string;
3500
3748
  createdAt: string | Date;
3501
3749
  updatedAt: string | Date;
3750
+ id: string;
3502
3751
  firstName: string;
3503
3752
  lastName: string;
3504
3753
  email: string;
@@ -3506,7 +3755,7 @@ export declare const collaborationsContractRouter: {
3506
3755
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3507
3756
  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;
3508
3757
  }>>>;
3509
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
3758
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
3510
3759
  userId: z.ZodString;
3511
3760
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3512
3761
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -3519,14 +3768,14 @@ export declare const collaborationsContractRouter: {
3519
3768
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3520
3769
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3521
3770
  }, "strip", z.ZodTypeAny, {
3522
- id: string;
3523
3771
  createdAt: string;
3524
3772
  updatedAt: string;
3773
+ id: string;
3525
3774
  name: string;
3526
3775
  }, {
3527
- id: string;
3528
3776
  createdAt: string | Date;
3529
3777
  updatedAt: string | Date;
3778
+ id: string;
3530
3779
  name: string;
3531
3780
  }>>>;
3532
3781
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -3564,10 +3813,10 @@ export declare const collaborationsContractRouter: {
3564
3813
  agentId: string;
3565
3814
  }>>>;
3566
3815
  }, "strip", z.ZodTypeAny, {
3567
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3568
- id: string;
3569
3816
  createdAt: string;
3570
3817
  updatedAt: string;
3818
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3819
+ id: string;
3571
3820
  name: string;
3572
3821
  crn: string | null;
3573
3822
  govLink: string;
@@ -3584,10 +3833,10 @@ export declare const collaborationsContractRouter: {
3584
3833
  agentId: string;
3585
3834
  } | null | undefined;
3586
3835
  }, {
3587
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3588
- id: string;
3589
3836
  createdAt: string | Date;
3590
3837
  updatedAt: string | Date;
3838
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3839
+ id: string;
3591
3840
  name: string;
3592
3841
  crn: string | null;
3593
3842
  govLink: string;
@@ -3609,15 +3858,15 @@ export declare const collaborationsContractRouter: {
3609
3858
  firstName: z.ZodString;
3610
3859
  lastName: z.ZodString;
3611
3860
  email: z.ZodString;
3612
- phone: z.ZodEffects<z.ZodString, string, string>;
3861
+ phone: z.ZodString;
3613
3862
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
3614
3863
  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"]>>>;
3615
3864
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3616
3865
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3617
3866
  }, "strip", z.ZodTypeAny, {
3618
- id: string;
3619
3867
  createdAt: string;
3620
3868
  updatedAt: string;
3869
+ id: string;
3621
3870
  firstName: string;
3622
3871
  lastName: string;
3623
3872
  email: string;
@@ -3625,9 +3874,9 @@ export declare const collaborationsContractRouter: {
3625
3874
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3626
3875
  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;
3627
3876
  }, {
3628
- id: string;
3629
3877
  createdAt: string | Date;
3630
3878
  updatedAt: string | Date;
3879
+ id: string;
3631
3880
  firstName: string;
3632
3881
  lastName: string;
3633
3882
  email: string;
@@ -3635,27 +3884,27 @@ export declare const collaborationsContractRouter: {
3635
3884
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
3636
3885
  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;
3637
3886
  }>>>;
3638
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
3887
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
3639
3888
  userId: z.ZodString;
3640
3889
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3641
3890
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
3642
3891
  }, "strip", z.ZodTypeAny, {
3643
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3644
- id: string;
3645
3892
  createdAt: string;
3646
3893
  updatedAt: string;
3894
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3895
+ id: string;
3647
3896
  userId: string;
3648
3897
  company?: {
3649
- id: string;
3650
3898
  createdAt: string;
3651
3899
  updatedAt: string;
3900
+ id: string;
3652
3901
  name: string;
3653
3902
  } | null | undefined;
3654
3903
  client?: {
3655
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3656
- id: string;
3657
3904
  createdAt: string;
3658
3905
  updatedAt: string;
3906
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3907
+ id: string;
3659
3908
  name: string;
3660
3909
  crn: string | null;
3661
3910
  govLink: string;
@@ -3673,9 +3922,9 @@ export declare const collaborationsContractRouter: {
3673
3922
  } | null | undefined;
3674
3923
  } | null | undefined;
3675
3924
  user?: {
3676
- id: string;
3677
3925
  createdAt: string;
3678
3926
  updatedAt: string;
3927
+ id: string;
3679
3928
  firstName: string;
3680
3929
  lastName: string;
3681
3930
  email: string;
@@ -3684,22 +3933,22 @@ export declare const collaborationsContractRouter: {
3684
3933
  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;
3685
3934
  } | null | undefined;
3686
3935
  }, {
3687
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3688
- id: string;
3689
3936
  createdAt: string | Date;
3690
3937
  updatedAt: string | Date;
3938
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3939
+ id: string;
3691
3940
  userId: string;
3692
3941
  company?: {
3693
- id: string;
3694
3942
  createdAt: string | Date;
3695
3943
  updatedAt: string | Date;
3944
+ id: string;
3696
3945
  name: string;
3697
3946
  } | null | undefined;
3698
3947
  client?: {
3699
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3700
- id: string;
3701
3948
  createdAt: string | Date;
3702
3949
  updatedAt: string | Date;
3950
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3951
+ id: string;
3703
3952
  name: string;
3704
3953
  crn: string | null;
3705
3954
  govLink: string;
@@ -3717,9 +3966,9 @@ export declare const collaborationsContractRouter: {
3717
3966
  } | null | undefined;
3718
3967
  } | null | undefined;
3719
3968
  user?: {
3720
- id: string;
3721
3969
  createdAt: string | Date;
3722
3970
  updatedAt: string | Date;
3971
+ id: string;
3723
3972
  firstName: string;
3724
3973
  lastName: string;
3725
3974
  email: string;
@@ -3729,22 +3978,22 @@ export declare const collaborationsContractRouter: {
3729
3978
  } | null | undefined;
3730
3979
  }>>>;
3731
3980
  }, "strip", z.ZodTypeAny, {
3732
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3733
- id: string;
3734
3981
  createdAt: string;
3735
3982
  updatedAt: string;
3983
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
3984
+ id: string;
3736
3985
  userId: string;
3737
3986
  company?: {
3738
- id: string;
3739
3987
  createdAt: string;
3740
3988
  updatedAt: string;
3989
+ id: string;
3741
3990
  name: string;
3742
3991
  } | null | undefined;
3743
3992
  client?: {
3744
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3745
- id: string;
3746
3993
  createdAt: string;
3747
3994
  updatedAt: string;
3995
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
3996
+ id: string;
3748
3997
  name: string;
3749
3998
  crn: string | null;
3750
3999
  govLink: string;
@@ -3762,9 +4011,9 @@ export declare const collaborationsContractRouter: {
3762
4011
  } | null | undefined;
3763
4012
  } | null | undefined;
3764
4013
  user?: {
3765
- id: string;
3766
4014
  createdAt: string;
3767
4015
  updatedAt: string;
4016
+ id: string;
3768
4017
  firstName: string;
3769
4018
  lastName: string;
3770
4019
  email: string;
@@ -3773,22 +4022,22 @@ export declare const collaborationsContractRouter: {
3773
4022
  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;
3774
4023
  } | null | undefined;
3775
4024
  newCollaboration?: {
3776
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3777
- id: string;
3778
4025
  createdAt: string;
3779
4026
  updatedAt: string;
4027
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4028
+ id: string;
3780
4029
  userId: string;
3781
4030
  company?: {
3782
- id: string;
3783
4031
  createdAt: string;
3784
4032
  updatedAt: string;
4033
+ id: string;
3785
4034
  name: string;
3786
4035
  } | null | undefined;
3787
4036
  client?: {
3788
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3789
- id: string;
3790
4037
  createdAt: string;
3791
4038
  updatedAt: string;
4039
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4040
+ id: string;
3792
4041
  name: string;
3793
4042
  crn: string | null;
3794
4043
  govLink: string;
@@ -3806,9 +4055,9 @@ export declare const collaborationsContractRouter: {
3806
4055
  } | null | undefined;
3807
4056
  } | null | undefined;
3808
4057
  user?: {
3809
- id: string;
3810
4058
  createdAt: string;
3811
4059
  updatedAt: string;
4060
+ id: string;
3812
4061
  firstName: string;
3813
4062
  lastName: string;
3814
4063
  email: string;
@@ -3818,22 +4067,22 @@ export declare const collaborationsContractRouter: {
3818
4067
  } | null | undefined;
3819
4068
  } | null | undefined;
3820
4069
  }, {
3821
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3822
- id: string;
3823
4070
  createdAt: string | Date;
3824
4071
  updatedAt: string | Date;
4072
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4073
+ id: string;
3825
4074
  userId: string;
3826
4075
  company?: {
3827
- id: string;
3828
4076
  createdAt: string | Date;
3829
4077
  updatedAt: string | Date;
4078
+ id: string;
3830
4079
  name: string;
3831
4080
  } | null | undefined;
3832
4081
  client?: {
3833
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3834
- id: string;
3835
4082
  createdAt: string | Date;
3836
4083
  updatedAt: string | Date;
4084
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4085
+ id: string;
3837
4086
  name: string;
3838
4087
  crn: string | null;
3839
4088
  govLink: string;
@@ -3851,9 +4100,9 @@ export declare const collaborationsContractRouter: {
3851
4100
  } | null | undefined;
3852
4101
  } | null | undefined;
3853
4102
  user?: {
3854
- id: string;
3855
4103
  createdAt: string | Date;
3856
4104
  updatedAt: string | Date;
4105
+ id: string;
3857
4106
  firstName: string;
3858
4107
  lastName: string;
3859
4108
  email: string;
@@ -3862,22 +4111,22 @@ export declare const collaborationsContractRouter: {
3862
4111
  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;
3863
4112
  } | null | undefined;
3864
4113
  newCollaboration?: {
3865
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
3866
- id: string;
3867
4114
  createdAt: string | Date;
3868
4115
  updatedAt: string | Date;
4116
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4117
+ id: string;
3869
4118
  userId: string;
3870
4119
  company?: {
3871
- id: string;
3872
4120
  createdAt: string | Date;
3873
4121
  updatedAt: string | Date;
4122
+ id: string;
3874
4123
  name: string;
3875
4124
  } | null | undefined;
3876
4125
  client?: {
3877
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
3878
- id: string;
3879
4126
  createdAt: string | Date;
3880
4127
  updatedAt: string | Date;
4128
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4129
+ id: string;
3881
4130
  name: string;
3882
4131
  crn: string | null;
3883
4132
  govLink: string;
@@ -3895,9 +4144,9 @@ export declare const collaborationsContractRouter: {
3895
4144
  } | null | undefined;
3896
4145
  } | null | undefined;
3897
4146
  user?: {
3898
- id: string;
3899
4147
  createdAt: string | Date;
3900
4148
  updatedAt: string | Date;
4149
+ id: string;
3901
4150
  firstName: string;
3902
4151
  lastName: string;
3903
4152
  email: string;
@@ -3951,11 +4200,37 @@ export declare const collaborationsContractRouter: {
3951
4200
  summary: "Update a collaboration";
3952
4201
  method: "PATCH";
3953
4202
  body: z.ZodObject<{
3954
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
4203
+ user: z.ZodOptional<z.ZodObject<{
4204
+ id: z.ZodString;
4205
+ }, "strip", z.ZodTypeAny, {
4206
+ id: string;
4207
+ }, {
4208
+ id: string;
4209
+ }>>;
4210
+ company: z.ZodOptional<z.ZodObject<{
4211
+ id: z.ZodString;
4212
+ }, "strip", z.ZodTypeAny, {
4213
+ id: string;
4214
+ }, {
4215
+ id: string;
4216
+ }>>;
4217
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
3955
4218
  }, "strip", z.ZodTypeAny, {
3956
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
4219
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4220
+ company?: {
4221
+ id: string;
4222
+ } | undefined;
4223
+ user?: {
4224
+ id: string;
4225
+ } | undefined;
3957
4226
  }, {
3958
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
4227
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4228
+ company?: {
4229
+ id: string;
4230
+ } | undefined;
4231
+ user?: {
4232
+ id: string;
4233
+ } | undefined;
3959
4234
  }>;
3960
4235
  path: "/v2/collaborations/:id";
3961
4236
  responses: {
@@ -4067,14 +4342,14 @@ export declare const collaborationsContractRouter: {
4067
4342
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4068
4343
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4069
4344
  }, "strip", z.ZodTypeAny, {
4070
- id: string;
4071
4345
  createdAt: string;
4072
4346
  updatedAt: string;
4347
+ id: string;
4073
4348
  name: string;
4074
4349
  }, {
4075
- id: string;
4076
4350
  createdAt: string | Date;
4077
4351
  updatedAt: string | Date;
4352
+ id: string;
4078
4353
  name: string;
4079
4354
  }>>>;
4080
4355
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4112,10 +4387,10 @@ export declare const collaborationsContractRouter: {
4112
4387
  agentId: string;
4113
4388
  }>>>;
4114
4389
  }, "strip", z.ZodTypeAny, {
4115
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4116
- id: string;
4117
4390
  createdAt: string;
4118
4391
  updatedAt: string;
4392
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4393
+ id: string;
4119
4394
  name: string;
4120
4395
  crn: string | null;
4121
4396
  govLink: string;
@@ -4132,10 +4407,10 @@ export declare const collaborationsContractRouter: {
4132
4407
  agentId: string;
4133
4408
  } | null | undefined;
4134
4409
  }, {
4135
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4136
- id: string;
4137
4410
  createdAt: string | Date;
4138
4411
  updatedAt: string | Date;
4412
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4413
+ id: string;
4139
4414
  name: string;
4140
4415
  crn: string | null;
4141
4416
  govLink: string;
@@ -4157,15 +4432,15 @@ export declare const collaborationsContractRouter: {
4157
4432
  firstName: z.ZodString;
4158
4433
  lastName: z.ZodString;
4159
4434
  email: z.ZodString;
4160
- phone: z.ZodEffects<z.ZodString, string, string>;
4435
+ phone: z.ZodString;
4161
4436
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
4162
4437
  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"]>>>;
4163
4438
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4164
4439
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4165
4440
  }, "strip", z.ZodTypeAny, {
4166
- id: string;
4167
4441
  createdAt: string;
4168
4442
  updatedAt: string;
4443
+ id: string;
4169
4444
  firstName: string;
4170
4445
  lastName: string;
4171
4446
  email: string;
@@ -4173,9 +4448,9 @@ export declare const collaborationsContractRouter: {
4173
4448
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4174
4449
  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;
4175
4450
  }, {
4176
- id: string;
4177
4451
  createdAt: string | Date;
4178
4452
  updatedAt: string | Date;
4453
+ id: string;
4179
4454
  firstName: string;
4180
4455
  lastName: string;
4181
4456
  email: string;
@@ -4183,7 +4458,7 @@ export declare const collaborationsContractRouter: {
4183
4458
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4184
4459
  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;
4185
4460
  }>>>;
4186
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
4461
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
4187
4462
  userId: z.ZodString;
4188
4463
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4189
4464
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -4196,14 +4471,14 @@ export declare const collaborationsContractRouter: {
4196
4471
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4197
4472
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4198
4473
  }, "strip", z.ZodTypeAny, {
4199
- id: string;
4200
4474
  createdAt: string;
4201
4475
  updatedAt: string;
4476
+ id: string;
4202
4477
  name: string;
4203
4478
  }, {
4204
- id: string;
4205
4479
  createdAt: string | Date;
4206
4480
  updatedAt: string | Date;
4481
+ id: string;
4207
4482
  name: string;
4208
4483
  }>>>;
4209
4484
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4241,10 +4516,10 @@ export declare const collaborationsContractRouter: {
4241
4516
  agentId: string;
4242
4517
  }>>>;
4243
4518
  }, "strip", z.ZodTypeAny, {
4244
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4245
- id: string;
4246
4519
  createdAt: string;
4247
4520
  updatedAt: string;
4521
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4522
+ id: string;
4248
4523
  name: string;
4249
4524
  crn: string | null;
4250
4525
  govLink: string;
@@ -4261,10 +4536,10 @@ export declare const collaborationsContractRouter: {
4261
4536
  agentId: string;
4262
4537
  } | null | undefined;
4263
4538
  }, {
4264
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4265
- id: string;
4266
4539
  createdAt: string | Date;
4267
4540
  updatedAt: string | Date;
4541
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4542
+ id: string;
4268
4543
  name: string;
4269
4544
  crn: string | null;
4270
4545
  govLink: string;
@@ -4286,15 +4561,15 @@ export declare const collaborationsContractRouter: {
4286
4561
  firstName: z.ZodString;
4287
4562
  lastName: z.ZodString;
4288
4563
  email: z.ZodString;
4289
- phone: z.ZodEffects<z.ZodString, string, string>;
4564
+ phone: z.ZodString;
4290
4565
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
4291
4566
  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"]>>>;
4292
4567
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4293
4568
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4294
4569
  }, "strip", z.ZodTypeAny, {
4295
- id: string;
4296
4570
  createdAt: string;
4297
4571
  updatedAt: string;
4572
+ id: string;
4298
4573
  firstName: string;
4299
4574
  lastName: string;
4300
4575
  email: string;
@@ -4302,9 +4577,9 @@ export declare const collaborationsContractRouter: {
4302
4577
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4303
4578
  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;
4304
4579
  }, {
4305
- id: string;
4306
4580
  createdAt: string | Date;
4307
4581
  updatedAt: string | Date;
4582
+ id: string;
4308
4583
  firstName: string;
4309
4584
  lastName: string;
4310
4585
  email: string;
@@ -4312,27 +4587,27 @@ export declare const collaborationsContractRouter: {
4312
4587
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
4313
4588
  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;
4314
4589
  }>>>;
4315
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
4590
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
4316
4591
  userId: z.ZodString;
4317
4592
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4318
4593
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4319
4594
  }, "strip", z.ZodTypeAny, {
4320
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4321
- id: string;
4322
4595
  createdAt: string;
4323
4596
  updatedAt: string;
4597
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4598
+ id: string;
4324
4599
  userId: string;
4325
4600
  company?: {
4326
- id: string;
4327
4601
  createdAt: string;
4328
4602
  updatedAt: string;
4603
+ id: string;
4329
4604
  name: string;
4330
4605
  } | null | undefined;
4331
4606
  client?: {
4332
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4333
- id: string;
4334
4607
  createdAt: string;
4335
4608
  updatedAt: string;
4609
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4610
+ id: string;
4336
4611
  name: string;
4337
4612
  crn: string | null;
4338
4613
  govLink: string;
@@ -4350,9 +4625,9 @@ export declare const collaborationsContractRouter: {
4350
4625
  } | null | undefined;
4351
4626
  } | null | undefined;
4352
4627
  user?: {
4353
- id: string;
4354
4628
  createdAt: string;
4355
4629
  updatedAt: string;
4630
+ id: string;
4356
4631
  firstName: string;
4357
4632
  lastName: string;
4358
4633
  email: string;
@@ -4361,22 +4636,22 @@ export declare const collaborationsContractRouter: {
4361
4636
  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;
4362
4637
  } | null | undefined;
4363
4638
  }, {
4364
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4365
- id: string;
4366
4639
  createdAt: string | Date;
4367
4640
  updatedAt: string | Date;
4641
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4642
+ id: string;
4368
4643
  userId: string;
4369
4644
  company?: {
4370
- id: string;
4371
4645
  createdAt: string | Date;
4372
4646
  updatedAt: string | Date;
4647
+ id: string;
4373
4648
  name: string;
4374
4649
  } | null | undefined;
4375
4650
  client?: {
4376
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4377
- id: string;
4378
4651
  createdAt: string | Date;
4379
4652
  updatedAt: string | Date;
4653
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4654
+ id: string;
4380
4655
  name: string;
4381
4656
  crn: string | null;
4382
4657
  govLink: string;
@@ -4394,9 +4669,9 @@ export declare const collaborationsContractRouter: {
4394
4669
  } | null | undefined;
4395
4670
  } | null | undefined;
4396
4671
  user?: {
4397
- id: string;
4398
4672
  createdAt: string | Date;
4399
4673
  updatedAt: string | Date;
4674
+ id: string;
4400
4675
  firstName: string;
4401
4676
  lastName: string;
4402
4677
  email: string;
@@ -4406,22 +4681,22 @@ export declare const collaborationsContractRouter: {
4406
4681
  } | null | undefined;
4407
4682
  }>>>;
4408
4683
  }, "strip", z.ZodTypeAny, {
4409
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4410
- id: string;
4411
4684
  createdAt: string;
4412
4685
  updatedAt: string;
4686
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4687
+ id: string;
4413
4688
  userId: string;
4414
4689
  company?: {
4415
- id: string;
4416
4690
  createdAt: string;
4417
4691
  updatedAt: string;
4692
+ id: string;
4418
4693
  name: string;
4419
4694
  } | null | undefined;
4420
4695
  client?: {
4421
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4422
- id: string;
4423
4696
  createdAt: string;
4424
4697
  updatedAt: string;
4698
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4699
+ id: string;
4425
4700
  name: string;
4426
4701
  crn: string | null;
4427
4702
  govLink: string;
@@ -4439,9 +4714,9 @@ export declare const collaborationsContractRouter: {
4439
4714
  } | null | undefined;
4440
4715
  } | null | undefined;
4441
4716
  user?: {
4442
- id: string;
4443
4717
  createdAt: string;
4444
4718
  updatedAt: string;
4719
+ id: string;
4445
4720
  firstName: string;
4446
4721
  lastName: string;
4447
4722
  email: string;
@@ -4450,22 +4725,22 @@ export declare const collaborationsContractRouter: {
4450
4725
  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;
4451
4726
  } | null | undefined;
4452
4727
  newCollaboration?: {
4453
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4454
- id: string;
4455
4728
  createdAt: string;
4456
4729
  updatedAt: string;
4730
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4731
+ id: string;
4457
4732
  userId: string;
4458
4733
  company?: {
4459
- id: string;
4460
4734
  createdAt: string;
4461
4735
  updatedAt: string;
4736
+ id: string;
4462
4737
  name: string;
4463
4738
  } | null | undefined;
4464
4739
  client?: {
4465
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4466
- id: string;
4467
4740
  createdAt: string;
4468
4741
  updatedAt: string;
4742
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4743
+ id: string;
4469
4744
  name: string;
4470
4745
  crn: string | null;
4471
4746
  govLink: string;
@@ -4483,9 +4758,9 @@ export declare const collaborationsContractRouter: {
4483
4758
  } | null | undefined;
4484
4759
  } | null | undefined;
4485
4760
  user?: {
4486
- id: string;
4487
4761
  createdAt: string;
4488
4762
  updatedAt: string;
4763
+ id: string;
4489
4764
  firstName: string;
4490
4765
  lastName: string;
4491
4766
  email: string;
@@ -4495,22 +4770,22 @@ export declare const collaborationsContractRouter: {
4495
4770
  } | null | undefined;
4496
4771
  } | null | undefined;
4497
4772
  }, {
4498
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4499
- id: string;
4500
4773
  createdAt: string | Date;
4501
4774
  updatedAt: string | Date;
4775
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4776
+ id: string;
4502
4777
  userId: string;
4503
4778
  company?: {
4504
- id: string;
4505
4779
  createdAt: string | Date;
4506
4780
  updatedAt: string | Date;
4781
+ id: string;
4507
4782
  name: string;
4508
4783
  } | null | undefined;
4509
4784
  client?: {
4510
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4511
- id: string;
4512
4785
  createdAt: string | Date;
4513
4786
  updatedAt: string | Date;
4787
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4788
+ id: string;
4514
4789
  name: string;
4515
4790
  crn: string | null;
4516
4791
  govLink: string;
@@ -4528,9 +4803,9 @@ export declare const collaborationsContractRouter: {
4528
4803
  } | null | undefined;
4529
4804
  } | null | undefined;
4530
4805
  user?: {
4531
- id: string;
4532
4806
  createdAt: string | Date;
4533
4807
  updatedAt: string | Date;
4808
+ id: string;
4534
4809
  firstName: string;
4535
4810
  lastName: string;
4536
4811
  email: string;
@@ -4539,22 +4814,22 @@ export declare const collaborationsContractRouter: {
4539
4814
  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;
4540
4815
  } | null | undefined;
4541
4816
  newCollaboration?: {
4542
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
4543
- id: string;
4544
4817
  createdAt: string | Date;
4545
4818
  updatedAt: string | Date;
4819
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
4820
+ id: string;
4546
4821
  userId: string;
4547
4822
  company?: {
4548
- id: string;
4549
4823
  createdAt: string | Date;
4550
4824
  updatedAt: string | Date;
4825
+ id: string;
4551
4826
  name: string;
4552
4827
  } | null | undefined;
4553
4828
  client?: {
4554
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4555
- id: string;
4556
4829
  createdAt: string | Date;
4557
4830
  updatedAt: string | Date;
4831
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
4832
+ id: string;
4558
4833
  name: string;
4559
4834
  crn: string | null;
4560
4835
  govLink: string;
@@ -4572,9 +4847,9 @@ export declare const collaborationsContractRouter: {
4572
4847
  } | null | undefined;
4573
4848
  } | null | undefined;
4574
4849
  user?: {
4575
- id: string;
4576
4850
  createdAt: string | Date;
4577
4851
  updatedAt: string | Date;
4852
+ id: string;
4578
4853
  firstName: string;
4579
4854
  lastName: string;
4580
4855
  email: string;
@@ -4814,7 +5089,7 @@ export declare const collaborationsContractRouter: {
4814
5089
  }, {
4815
5090
  id: string;
4816
5091
  }>>;
4817
- status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>>;
5092
+ status: z.ZodOptional<z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>>;
4818
5093
  }, "strip", z.ZodTypeAny, {
4819
5094
  company: {
4820
5095
  id: string;
@@ -4822,7 +5097,7 @@ export declare const collaborationsContractRouter: {
4822
5097
  client: {
4823
5098
  id: string;
4824
5099
  };
4825
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
5100
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4826
5101
  user?: {
4827
5102
  id: string;
4828
5103
  } | undefined;
@@ -4833,7 +5108,7 @@ export declare const collaborationsContractRouter: {
4833
5108
  client: {
4834
5109
  id: string;
4835
5110
  };
4836
- status?: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | undefined;
5111
+ status?: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT" | undefined;
4837
5112
  user?: {
4838
5113
  id: string;
4839
5114
  } | undefined;
@@ -4948,14 +5223,14 @@ export declare const collaborationsContractRouter: {
4948
5223
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4949
5224
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
4950
5225
  }, "strip", z.ZodTypeAny, {
4951
- id: string;
4952
5226
  createdAt: string;
4953
5227
  updatedAt: string;
5228
+ id: string;
4954
5229
  name: string;
4955
5230
  }, {
4956
- id: string;
4957
5231
  createdAt: string | Date;
4958
5232
  updatedAt: string | Date;
5233
+ id: string;
4959
5234
  name: string;
4960
5235
  }>>>;
4961
5236
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -4993,10 +5268,10 @@ export declare const collaborationsContractRouter: {
4993
5268
  agentId: string;
4994
5269
  }>>>;
4995
5270
  }, "strip", z.ZodTypeAny, {
4996
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
4997
- id: string;
4998
5271
  createdAt: string;
4999
5272
  updatedAt: string;
5273
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5274
+ id: string;
5000
5275
  name: string;
5001
5276
  crn: string | null;
5002
5277
  govLink: string;
@@ -5013,10 +5288,10 @@ export declare const collaborationsContractRouter: {
5013
5288
  agentId: string;
5014
5289
  } | null | undefined;
5015
5290
  }, {
5016
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5017
- id: string;
5018
5291
  createdAt: string | Date;
5019
5292
  updatedAt: string | Date;
5293
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5294
+ id: string;
5020
5295
  name: string;
5021
5296
  crn: string | null;
5022
5297
  govLink: string;
@@ -5038,15 +5313,15 @@ export declare const collaborationsContractRouter: {
5038
5313
  firstName: z.ZodString;
5039
5314
  lastName: z.ZodString;
5040
5315
  email: z.ZodString;
5041
- phone: z.ZodEffects<z.ZodString, string, string>;
5316
+ phone: z.ZodString;
5042
5317
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
5043
5318
  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"]>>>;
5044
5319
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5045
5320
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5046
5321
  }, "strip", z.ZodTypeAny, {
5047
- id: string;
5048
5322
  createdAt: string;
5049
5323
  updatedAt: string;
5324
+ id: string;
5050
5325
  firstName: string;
5051
5326
  lastName: string;
5052
5327
  email: string;
@@ -5054,9 +5329,9 @@ export declare const collaborationsContractRouter: {
5054
5329
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5055
5330
  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;
5056
5331
  }, {
5057
- id: string;
5058
5332
  createdAt: string | Date;
5059
5333
  updatedAt: string | Date;
5334
+ id: string;
5060
5335
  firstName: string;
5061
5336
  lastName: string;
5062
5337
  email: string;
@@ -5064,7 +5339,7 @@ export declare const collaborationsContractRouter: {
5064
5339
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5065
5340
  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;
5066
5341
  }>>>;
5067
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
5342
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
5068
5343
  userId: z.ZodString;
5069
5344
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5070
5345
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
@@ -5077,14 +5352,14 @@ export declare const collaborationsContractRouter: {
5077
5352
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5078
5353
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5079
5354
  }, "strip", z.ZodTypeAny, {
5080
- id: string;
5081
5355
  createdAt: string;
5082
5356
  updatedAt: string;
5357
+ id: string;
5083
5358
  name: string;
5084
5359
  }, {
5085
- id: string;
5086
5360
  createdAt: string | Date;
5087
5361
  updatedAt: string | Date;
5362
+ id: string;
5088
5363
  name: string;
5089
5364
  }>>>;
5090
5365
  client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
@@ -5122,10 +5397,10 @@ export declare const collaborationsContractRouter: {
5122
5397
  agentId: string;
5123
5398
  }>>>;
5124
5399
  }, "strip", z.ZodTypeAny, {
5125
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5126
- id: string;
5127
5400
  createdAt: string;
5128
5401
  updatedAt: string;
5402
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5403
+ id: string;
5129
5404
  name: string;
5130
5405
  crn: string | null;
5131
5406
  govLink: string;
@@ -5142,10 +5417,10 @@ export declare const collaborationsContractRouter: {
5142
5417
  agentId: string;
5143
5418
  } | null | undefined;
5144
5419
  }, {
5145
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5146
- id: string;
5147
5420
  createdAt: string | Date;
5148
5421
  updatedAt: string | Date;
5422
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5423
+ id: string;
5149
5424
  name: string;
5150
5425
  crn: string | null;
5151
5426
  govLink: string;
@@ -5167,15 +5442,15 @@ export declare const collaborationsContractRouter: {
5167
5442
  firstName: z.ZodString;
5168
5443
  lastName: z.ZodString;
5169
5444
  email: z.ZodString;
5170
- phone: z.ZodEffects<z.ZodString, string, string>;
5445
+ phone: z.ZodString;
5171
5446
  roles: z.ZodOptional<z.ZodArray<z.ZodEnum<["ADMIN", "SECOND_AGENT", "FIRST_AGENT", "COMPANY_CHECKING", "KPI"]>, "many">>;
5172
5447
  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"]>>>;
5173
5448
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5174
5449
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5175
5450
  }, "strip", z.ZodTypeAny, {
5176
- id: string;
5177
5451
  createdAt: string;
5178
5452
  updatedAt: string;
5453
+ id: string;
5179
5454
  firstName: string;
5180
5455
  lastName: string;
5181
5456
  email: string;
@@ -5183,9 +5458,9 @@ export declare const collaborationsContractRouter: {
5183
5458
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5184
5459
  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;
5185
5460
  }, {
5186
- id: string;
5187
5461
  createdAt: string | Date;
5188
5462
  updatedAt: string | Date;
5463
+ id: string;
5189
5464
  firstName: string;
5190
5465
  lastName: string;
5191
5466
  email: string;
@@ -5193,27 +5468,27 @@ export declare const collaborationsContractRouter: {
5193
5468
  roles?: ("ADMIN" | "SECOND_AGENT" | "FIRST_AGENT" | "COMPANY_CHECKING" | "KPI")[] | undefined;
5194
5469
  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;
5195
5470
  }>>>;
5196
- status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT"]>;
5471
+ status: z.ZodEnum<["ACTIVE", "INACTIVE", "PENDING_APPROVAL", "REJECTED", "APPROVED", "CHANGED_COMPANY", "CHANGED_AGENT", "CHANGED_COMPANY_AND_AGENT"]>;
5197
5472
  userId: z.ZodString;
5198
5473
  createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5199
5474
  updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
5200
5475
  }, "strip", z.ZodTypeAny, {
5201
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5202
- id: string;
5203
5476
  createdAt: string;
5204
5477
  updatedAt: string;
5478
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5479
+ id: string;
5205
5480
  userId: string;
5206
5481
  company?: {
5207
- id: string;
5208
5482
  createdAt: string;
5209
5483
  updatedAt: string;
5484
+ id: string;
5210
5485
  name: string;
5211
5486
  } | null | undefined;
5212
5487
  client?: {
5213
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5214
- id: string;
5215
5488
  createdAt: string;
5216
5489
  updatedAt: string;
5490
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5491
+ id: string;
5217
5492
  name: string;
5218
5493
  crn: string | null;
5219
5494
  govLink: string;
@@ -5231,9 +5506,9 @@ export declare const collaborationsContractRouter: {
5231
5506
  } | null | undefined;
5232
5507
  } | null | undefined;
5233
5508
  user?: {
5234
- id: string;
5235
5509
  createdAt: string;
5236
5510
  updatedAt: string;
5511
+ id: string;
5237
5512
  firstName: string;
5238
5513
  lastName: string;
5239
5514
  email: string;
@@ -5242,22 +5517,22 @@ export declare const collaborationsContractRouter: {
5242
5517
  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;
5243
5518
  } | null | undefined;
5244
5519
  }, {
5245
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5246
- id: string;
5247
5520
  createdAt: string | Date;
5248
5521
  updatedAt: string | Date;
5522
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5523
+ id: string;
5249
5524
  userId: string;
5250
5525
  company?: {
5251
- id: string;
5252
5526
  createdAt: string | Date;
5253
5527
  updatedAt: string | Date;
5528
+ id: string;
5254
5529
  name: string;
5255
5530
  } | null | undefined;
5256
5531
  client?: {
5257
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5258
- id: string;
5259
5532
  createdAt: string | Date;
5260
5533
  updatedAt: string | Date;
5534
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5535
+ id: string;
5261
5536
  name: string;
5262
5537
  crn: string | null;
5263
5538
  govLink: string;
@@ -5275,9 +5550,9 @@ export declare const collaborationsContractRouter: {
5275
5550
  } | null | undefined;
5276
5551
  } | null | undefined;
5277
5552
  user?: {
5278
- id: string;
5279
5553
  createdAt: string | Date;
5280
5554
  updatedAt: string | Date;
5555
+ id: string;
5281
5556
  firstName: string;
5282
5557
  lastName: string;
5283
5558
  email: string;
@@ -5287,22 +5562,22 @@ export declare const collaborationsContractRouter: {
5287
5562
  } | null | undefined;
5288
5563
  }>>>;
5289
5564
  }, "strip", z.ZodTypeAny, {
5290
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5291
- id: string;
5292
5565
  createdAt: string;
5293
5566
  updatedAt: string;
5567
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5568
+ id: string;
5294
5569
  userId: string;
5295
5570
  company?: {
5296
- id: string;
5297
5571
  createdAt: string;
5298
5572
  updatedAt: string;
5573
+ id: string;
5299
5574
  name: string;
5300
5575
  } | null | undefined;
5301
5576
  client?: {
5302
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5303
- id: string;
5304
5577
  createdAt: string;
5305
5578
  updatedAt: string;
5579
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5580
+ id: string;
5306
5581
  name: string;
5307
5582
  crn: string | null;
5308
5583
  govLink: string;
@@ -5320,9 +5595,9 @@ export declare const collaborationsContractRouter: {
5320
5595
  } | null | undefined;
5321
5596
  } | null | undefined;
5322
5597
  user?: {
5323
- id: string;
5324
5598
  createdAt: string;
5325
5599
  updatedAt: string;
5600
+ id: string;
5326
5601
  firstName: string;
5327
5602
  lastName: string;
5328
5603
  email: string;
@@ -5331,22 +5606,22 @@ export declare const collaborationsContractRouter: {
5331
5606
  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;
5332
5607
  } | null | undefined;
5333
5608
  newCollaboration?: {
5334
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5335
- id: string;
5336
5609
  createdAt: string;
5337
5610
  updatedAt: string;
5611
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5612
+ id: string;
5338
5613
  userId: string;
5339
5614
  company?: {
5340
- id: string;
5341
5615
  createdAt: string;
5342
5616
  updatedAt: string;
5617
+ id: string;
5343
5618
  name: string;
5344
5619
  } | null | undefined;
5345
5620
  client?: {
5346
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5347
- id: string;
5348
5621
  createdAt: string;
5349
5622
  updatedAt: string;
5623
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5624
+ id: string;
5350
5625
  name: string;
5351
5626
  crn: string | null;
5352
5627
  govLink: string;
@@ -5364,9 +5639,9 @@ export declare const collaborationsContractRouter: {
5364
5639
  } | null | undefined;
5365
5640
  } | null | undefined;
5366
5641
  user?: {
5367
- id: string;
5368
5642
  createdAt: string;
5369
5643
  updatedAt: string;
5644
+ id: string;
5370
5645
  firstName: string;
5371
5646
  lastName: string;
5372
5647
  email: string;
@@ -5376,22 +5651,22 @@ export declare const collaborationsContractRouter: {
5376
5651
  } | null | undefined;
5377
5652
  } | null | undefined;
5378
5653
  }, {
5379
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5380
- id: string;
5381
5654
  createdAt: string | Date;
5382
5655
  updatedAt: string | Date;
5656
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5657
+ id: string;
5383
5658
  userId: string;
5384
5659
  company?: {
5385
- id: string;
5386
5660
  createdAt: string | Date;
5387
5661
  updatedAt: string | Date;
5662
+ id: string;
5388
5663
  name: string;
5389
5664
  } | null | undefined;
5390
5665
  client?: {
5391
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5392
- id: string;
5393
5666
  createdAt: string | Date;
5394
5667
  updatedAt: string | Date;
5668
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5669
+ id: string;
5395
5670
  name: string;
5396
5671
  crn: string | null;
5397
5672
  govLink: string;
@@ -5409,9 +5684,9 @@ export declare const collaborationsContractRouter: {
5409
5684
  } | null | undefined;
5410
5685
  } | null | undefined;
5411
5686
  user?: {
5412
- id: string;
5413
5687
  createdAt: string | Date;
5414
5688
  updatedAt: string | Date;
5689
+ id: string;
5415
5690
  firstName: string;
5416
5691
  lastName: string;
5417
5692
  email: string;
@@ -5420,22 +5695,22 @@ export declare const collaborationsContractRouter: {
5420
5695
  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;
5421
5696
  } | null | undefined;
5422
5697
  newCollaboration?: {
5423
- status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
5424
- id: string;
5425
5698
  createdAt: string | Date;
5426
5699
  updatedAt: string | Date;
5700
+ status: "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "APPROVED" | "CHANGED_COMPANY" | "CHANGED_AGENT" | "CHANGED_COMPANY_AND_AGENT";
5701
+ id: string;
5427
5702
  userId: string;
5428
5703
  company?: {
5429
- id: string;
5430
5704
  createdAt: string | Date;
5431
5705
  updatedAt: string | Date;
5706
+ id: string;
5432
5707
  name: string;
5433
5708
  } | null | undefined;
5434
5709
  client?: {
5435
- status: "BLACKLISTED" | "APPROVED" | "PENDING_VERIFICATION";
5436
- id: string;
5437
5710
  createdAt: string | Date;
5438
5711
  updatedAt: string | Date;
5712
+ status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
5713
+ id: string;
5439
5714
  name: string;
5440
5715
  crn: string | null;
5441
5716
  govLink: string;
@@ -5453,9 +5728,9 @@ export declare const collaborationsContractRouter: {
5453
5728
  } | null | undefined;
5454
5729
  } | null | undefined;
5455
5730
  user?: {
5456
- id: string;
5457
5731
  createdAt: string | Date;
5458
5732
  updatedAt: string | Date;
5733
+ id: string;
5459
5734
  firstName: string;
5460
5735
  lastName: string;
5461
5736
  email: string;