@dakkitor/api-contracts 1.1.11 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actives/actives.contract.d.ts +75 -76
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/actives/actives.contract.js +15 -15
- package/dist/agent-client-links/agent-client-links.contract.d.ts +320 -316
- package/dist/agent-client-links/agent-client-links.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.js +6 -6
- package/dist/auth/auth.contract.d.ts +2 -2
- package/dist/bookings/bookings.contract.d.ts +328 -328
- package/dist/call-history/call-history.contract.d.ts +205 -205
- package/dist/client-contacts/client-contacts.contract.d.ts +334 -332
- package/dist/client-contacts/client-contacts.contract.d.ts.map +1 -1
- package/dist/client-contacts/client-contacts.contract.js +3 -3
- package/dist/clients/clients.contract.d.ts +196 -196
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +404 -404
- package/dist/collaborations/collaborations.contract.d.ts +379 -379
- package/dist/common/error-schemas.d.ts +7 -7
- package/dist/common/error-schemas.d.ts.map +1 -1
- package/dist/companies/companies.contract.d.ts +214 -214
- package/dist/cron-executions/cron-executions.contract.d.ts +206 -206
- package/dist/curated-workers/curated-workers.contract.d.ts +213 -213
- package/dist/dashboards/agent-daily-metrics.contract.d.ts +124 -124
- package/dist/files/files.contract.d.ts +216 -216
- package/dist/health/health.contract.d.ts +22 -22
- package/dist/index.d.ts +971 -971
- package/dist/jobs/jobs.contract.d.ts +210 -210
- package/dist/lead-assignments/lead-assignments.contract.d.ts +248 -248
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +40 -40
- package/dist/lead-distribution/lead-distribution-config.contract.d.ts +153 -153
- package/dist/leads/leads.contract.d.ts +246 -246
- package/dist/locations/locations.contract.d.ts +143 -143
- package/dist/postcodes/postcodes.contract.d.ts +56 -56
- package/dist/qualifications/qualifications.contract.d.ts +248 -248
- package/dist/trades/trades.contract.d.ts +156 -156
- package/dist/users/users.contract.d.ts +68 -64
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +8 -8
- package/dist/workers/workers.contract.d.ts +226 -226
- package/package.json +1 -1
|
@@ -20,15 +20,15 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
20
20
|
lastName: z.ZodString;
|
|
21
21
|
email: z.ZodString;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
-
id: string;
|
|
24
|
-
firstName: string;
|
|
25
23
|
lastName: string;
|
|
24
|
+
firstName: string;
|
|
26
25
|
email: string;
|
|
27
|
-
}, {
|
|
28
26
|
id: string;
|
|
29
|
-
|
|
27
|
+
}, {
|
|
30
28
|
lastName: string;
|
|
29
|
+
firstName: string;
|
|
31
30
|
email: string;
|
|
31
|
+
id: string;
|
|
32
32
|
}>;
|
|
33
33
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
34
34
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -40,39 +40,39 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
40
40
|
agentId: string;
|
|
41
41
|
}>;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
|
-
|
|
43
|
+
createdAt: string;
|
|
44
44
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
45
|
+
id: string;
|
|
46
|
+
updatedAt: string;
|
|
45
47
|
name: string;
|
|
46
48
|
crn: string;
|
|
47
49
|
govLink: string;
|
|
48
50
|
director: string;
|
|
49
51
|
lastUpdatedBy: {
|
|
50
|
-
id: string;
|
|
51
|
-
firstName: string;
|
|
52
52
|
lastName: string;
|
|
53
|
+
firstName: string;
|
|
53
54
|
email: string;
|
|
55
|
+
id: string;
|
|
54
56
|
};
|
|
55
|
-
createdAt: string;
|
|
56
|
-
updatedAt: string;
|
|
57
57
|
agentClientLinks: {
|
|
58
58
|
agentId: string;
|
|
59
59
|
};
|
|
60
60
|
blacklistReason?: string | null | undefined;
|
|
61
61
|
}, {
|
|
62
|
-
|
|
62
|
+
createdAt: string | Date;
|
|
63
63
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
64
|
+
id: string;
|
|
65
|
+
updatedAt: string | Date;
|
|
64
66
|
name: string;
|
|
65
67
|
crn: string;
|
|
66
68
|
govLink: string;
|
|
67
69
|
director: string;
|
|
68
70
|
lastUpdatedBy: {
|
|
69
|
-
id: string;
|
|
70
|
-
firstName: string;
|
|
71
71
|
lastName: string;
|
|
72
|
+
firstName: string;
|
|
72
73
|
email: string;
|
|
74
|
+
id: string;
|
|
73
75
|
};
|
|
74
|
-
createdAt: string | Date;
|
|
75
|
-
updatedAt: string | Date;
|
|
76
76
|
agentClientLinks: {
|
|
77
77
|
agentId: string;
|
|
78
78
|
};
|
|
@@ -89,87 +89,87 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
89
89
|
lastName: z.ZodString;
|
|
90
90
|
email: z.ZodString;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
id: string;
|
|
93
|
-
firstName: string;
|
|
94
92
|
lastName: string;
|
|
93
|
+
firstName: string;
|
|
95
94
|
email: string;
|
|
96
|
-
}, {
|
|
97
95
|
id: string;
|
|
98
|
-
|
|
96
|
+
}, {
|
|
99
97
|
lastName: string;
|
|
98
|
+
firstName: string;
|
|
100
99
|
email: string;
|
|
100
|
+
id: string;
|
|
101
101
|
}>;
|
|
102
102
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
103
103
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
|
105
|
-
id: string;
|
|
106
105
|
email: string;
|
|
107
|
-
|
|
106
|
+
phone: string;
|
|
108
107
|
createdAt: string;
|
|
108
|
+
id: string;
|
|
109
109
|
updatedAt: string;
|
|
110
|
+
name: string;
|
|
110
111
|
clientId: string;
|
|
111
112
|
client: {
|
|
112
|
-
|
|
113
|
+
createdAt: string;
|
|
113
114
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
115
|
+
id: string;
|
|
116
|
+
updatedAt: string;
|
|
114
117
|
name: string;
|
|
115
118
|
crn: string;
|
|
116
119
|
govLink: string;
|
|
117
120
|
director: string;
|
|
118
121
|
lastUpdatedBy: {
|
|
119
|
-
id: string;
|
|
120
|
-
firstName: string;
|
|
121
122
|
lastName: string;
|
|
123
|
+
firstName: string;
|
|
122
124
|
email: string;
|
|
125
|
+
id: string;
|
|
123
126
|
};
|
|
124
|
-
createdAt: string;
|
|
125
|
-
updatedAt: string;
|
|
126
127
|
agentClientLinks: {
|
|
127
128
|
agentId: string;
|
|
128
129
|
};
|
|
129
130
|
blacklistReason?: string | null | undefined;
|
|
130
131
|
};
|
|
131
|
-
phone: string;
|
|
132
132
|
createdBy: {
|
|
133
|
-
id: string;
|
|
134
|
-
firstName: string;
|
|
135
133
|
lastName: string;
|
|
134
|
+
firstName: string;
|
|
136
135
|
email: string;
|
|
136
|
+
id: string;
|
|
137
137
|
};
|
|
138
138
|
position?: string | undefined;
|
|
139
139
|
source?: string | undefined;
|
|
140
140
|
}, {
|
|
141
|
-
id: string;
|
|
142
141
|
email: string;
|
|
143
|
-
|
|
142
|
+
phone: string;
|
|
144
143
|
createdAt: string | Date;
|
|
144
|
+
id: string;
|
|
145
145
|
updatedAt: string | Date;
|
|
146
|
+
name: string;
|
|
146
147
|
clientId: string;
|
|
147
148
|
client: {
|
|
148
|
-
|
|
149
|
+
createdAt: string | Date;
|
|
149
150
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
151
|
+
id: string;
|
|
152
|
+
updatedAt: string | Date;
|
|
150
153
|
name: string;
|
|
151
154
|
crn: string;
|
|
152
155
|
govLink: string;
|
|
153
156
|
director: string;
|
|
154
157
|
lastUpdatedBy: {
|
|
155
|
-
id: string;
|
|
156
|
-
firstName: string;
|
|
157
158
|
lastName: string;
|
|
159
|
+
firstName: string;
|
|
158
160
|
email: string;
|
|
161
|
+
id: string;
|
|
159
162
|
};
|
|
160
|
-
createdAt: string | Date;
|
|
161
|
-
updatedAt: string | Date;
|
|
162
163
|
agentClientLinks: {
|
|
163
164
|
agentId: string;
|
|
164
165
|
};
|
|
165
166
|
blacklistReason?: string | null | undefined;
|
|
166
167
|
};
|
|
167
|
-
phone: string;
|
|
168
168
|
createdBy: {
|
|
169
|
-
id: string;
|
|
170
|
-
firstName: string;
|
|
171
169
|
lastName: string;
|
|
170
|
+
firstName: string;
|
|
172
171
|
email: string;
|
|
172
|
+
id: string;
|
|
173
173
|
};
|
|
174
174
|
position?: string | undefined;
|
|
175
175
|
source?: string | undefined;
|
|
@@ -191,9 +191,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
191
191
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
192
192
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
193
193
|
}, "strip", z.ZodTypeAny, {
|
|
194
|
-
id: string;
|
|
195
194
|
email: string;
|
|
196
195
|
createdAt: string;
|
|
196
|
+
id: string;
|
|
197
197
|
updatedAt: string;
|
|
198
198
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
199
199
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -203,38 +203,38 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
203
203
|
introductionEmailSent: boolean;
|
|
204
204
|
collaborationEmailSent: boolean;
|
|
205
205
|
clientContact?: {
|
|
206
|
-
id: string;
|
|
207
206
|
email: string;
|
|
208
|
-
|
|
207
|
+
phone: string;
|
|
209
208
|
createdAt: string;
|
|
209
|
+
id: string;
|
|
210
210
|
updatedAt: string;
|
|
211
|
+
name: string;
|
|
211
212
|
clientId: string;
|
|
212
213
|
client: {
|
|
213
|
-
|
|
214
|
+
createdAt: string;
|
|
214
215
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
216
|
+
id: string;
|
|
217
|
+
updatedAt: string;
|
|
215
218
|
name: string;
|
|
216
219
|
crn: string;
|
|
217
220
|
govLink: string;
|
|
218
221
|
director: string;
|
|
219
222
|
lastUpdatedBy: {
|
|
220
|
-
id: string;
|
|
221
|
-
firstName: string;
|
|
222
223
|
lastName: string;
|
|
224
|
+
firstName: string;
|
|
223
225
|
email: string;
|
|
226
|
+
id: string;
|
|
224
227
|
};
|
|
225
|
-
createdAt: string;
|
|
226
|
-
updatedAt: string;
|
|
227
228
|
agentClientLinks: {
|
|
228
229
|
agentId: string;
|
|
229
230
|
};
|
|
230
231
|
blacklistReason?: string | null | undefined;
|
|
231
232
|
};
|
|
232
|
-
phone: string;
|
|
233
233
|
createdBy: {
|
|
234
|
-
id: string;
|
|
235
|
-
firstName: string;
|
|
236
234
|
lastName: string;
|
|
235
|
+
firstName: string;
|
|
237
236
|
email: string;
|
|
237
|
+
id: string;
|
|
238
238
|
};
|
|
239
239
|
position?: string | undefined;
|
|
240
240
|
source?: string | undefined;
|
|
@@ -248,9 +248,9 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
248
248
|
checkingComment?: string | null | undefined;
|
|
249
249
|
deletedAt?: string | null | undefined;
|
|
250
250
|
}, {
|
|
251
|
-
id: string;
|
|
252
251
|
email: string;
|
|
253
252
|
createdAt: string | Date;
|
|
253
|
+
id: string;
|
|
254
254
|
updatedAt: string | Date;
|
|
255
255
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
256
256
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -260,38 +260,38 @@ export declare const CollaborationCheckingSchema: z.ZodObject<{
|
|
|
260
260
|
introductionEmailSent: boolean;
|
|
261
261
|
collaborationEmailSent: boolean;
|
|
262
262
|
clientContact?: {
|
|
263
|
-
id: string;
|
|
264
263
|
email: string;
|
|
265
|
-
|
|
264
|
+
phone: string;
|
|
266
265
|
createdAt: string | Date;
|
|
266
|
+
id: string;
|
|
267
267
|
updatedAt: string | Date;
|
|
268
|
+
name: string;
|
|
268
269
|
clientId: string;
|
|
269
270
|
client: {
|
|
270
|
-
|
|
271
|
+
createdAt: string | Date;
|
|
271
272
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
273
|
+
id: string;
|
|
274
|
+
updatedAt: string | Date;
|
|
272
275
|
name: string;
|
|
273
276
|
crn: string;
|
|
274
277
|
govLink: string;
|
|
275
278
|
director: string;
|
|
276
279
|
lastUpdatedBy: {
|
|
277
|
-
id: string;
|
|
278
|
-
firstName: string;
|
|
279
280
|
lastName: string;
|
|
281
|
+
firstName: string;
|
|
280
282
|
email: string;
|
|
283
|
+
id: string;
|
|
281
284
|
};
|
|
282
|
-
createdAt: string | Date;
|
|
283
|
-
updatedAt: string | Date;
|
|
284
285
|
agentClientLinks: {
|
|
285
286
|
agentId: string;
|
|
286
287
|
};
|
|
287
288
|
blacklistReason?: string | null | undefined;
|
|
288
289
|
};
|
|
289
|
-
phone: string;
|
|
290
290
|
createdBy: {
|
|
291
|
-
id: string;
|
|
292
|
-
firstName: string;
|
|
293
291
|
lastName: string;
|
|
292
|
+
firstName: string;
|
|
294
293
|
email: string;
|
|
294
|
+
id: string;
|
|
295
295
|
};
|
|
296
296
|
position?: string | undefined;
|
|
297
297
|
source?: string | undefined;
|
|
@@ -432,15 +432,15 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
432
432
|
lastName: z.ZodString;
|
|
433
433
|
email: z.ZodString;
|
|
434
434
|
}, "strip", z.ZodTypeAny, {
|
|
435
|
-
id: string;
|
|
436
|
-
firstName: string;
|
|
437
435
|
lastName: string;
|
|
436
|
+
firstName: string;
|
|
438
437
|
email: string;
|
|
439
|
-
}, {
|
|
440
438
|
id: string;
|
|
441
|
-
|
|
439
|
+
}, {
|
|
442
440
|
lastName: string;
|
|
441
|
+
firstName: string;
|
|
443
442
|
email: string;
|
|
443
|
+
id: string;
|
|
444
444
|
}>;
|
|
445
445
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
446
446
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -452,39 +452,39 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
452
452
|
agentId: string;
|
|
453
453
|
}>;
|
|
454
454
|
}, "strip", z.ZodTypeAny, {
|
|
455
|
-
|
|
455
|
+
createdAt: string;
|
|
456
456
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
457
|
+
id: string;
|
|
458
|
+
updatedAt: string;
|
|
457
459
|
name: string;
|
|
458
460
|
crn: string;
|
|
459
461
|
govLink: string;
|
|
460
462
|
director: string;
|
|
461
463
|
lastUpdatedBy: {
|
|
462
|
-
id: string;
|
|
463
|
-
firstName: string;
|
|
464
464
|
lastName: string;
|
|
465
|
+
firstName: string;
|
|
465
466
|
email: string;
|
|
467
|
+
id: string;
|
|
466
468
|
};
|
|
467
|
-
createdAt: string;
|
|
468
|
-
updatedAt: string;
|
|
469
469
|
agentClientLinks: {
|
|
470
470
|
agentId: string;
|
|
471
471
|
};
|
|
472
472
|
blacklistReason?: string | null | undefined;
|
|
473
473
|
}, {
|
|
474
|
-
|
|
474
|
+
createdAt: string | Date;
|
|
475
475
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
476
|
+
id: string;
|
|
477
|
+
updatedAt: string | Date;
|
|
476
478
|
name: string;
|
|
477
479
|
crn: string;
|
|
478
480
|
govLink: string;
|
|
479
481
|
director: string;
|
|
480
482
|
lastUpdatedBy: {
|
|
481
|
-
id: string;
|
|
482
|
-
firstName: string;
|
|
483
483
|
lastName: string;
|
|
484
|
+
firstName: string;
|
|
484
485
|
email: string;
|
|
486
|
+
id: string;
|
|
485
487
|
};
|
|
486
|
-
createdAt: string | Date;
|
|
487
|
-
updatedAt: string | Date;
|
|
488
488
|
agentClientLinks: {
|
|
489
489
|
agentId: string;
|
|
490
490
|
};
|
|
@@ -501,87 +501,87 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
501
501
|
lastName: z.ZodString;
|
|
502
502
|
email: z.ZodString;
|
|
503
503
|
}, "strip", z.ZodTypeAny, {
|
|
504
|
-
id: string;
|
|
505
|
-
firstName: string;
|
|
506
504
|
lastName: string;
|
|
505
|
+
firstName: string;
|
|
507
506
|
email: string;
|
|
508
|
-
}, {
|
|
509
507
|
id: string;
|
|
510
|
-
|
|
508
|
+
}, {
|
|
511
509
|
lastName: string;
|
|
510
|
+
firstName: string;
|
|
512
511
|
email: string;
|
|
512
|
+
id: string;
|
|
513
513
|
}>;
|
|
514
514
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
515
515
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
516
516
|
}, "strip", z.ZodTypeAny, {
|
|
517
|
-
id: string;
|
|
518
517
|
email: string;
|
|
519
|
-
|
|
518
|
+
phone: string;
|
|
520
519
|
createdAt: string;
|
|
520
|
+
id: string;
|
|
521
521
|
updatedAt: string;
|
|
522
|
+
name: string;
|
|
522
523
|
clientId: string;
|
|
523
524
|
client: {
|
|
524
|
-
|
|
525
|
+
createdAt: string;
|
|
525
526
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
527
|
+
id: string;
|
|
528
|
+
updatedAt: string;
|
|
526
529
|
name: string;
|
|
527
530
|
crn: string;
|
|
528
531
|
govLink: string;
|
|
529
532
|
director: string;
|
|
530
533
|
lastUpdatedBy: {
|
|
531
|
-
id: string;
|
|
532
|
-
firstName: string;
|
|
533
534
|
lastName: string;
|
|
535
|
+
firstName: string;
|
|
534
536
|
email: string;
|
|
537
|
+
id: string;
|
|
535
538
|
};
|
|
536
|
-
createdAt: string;
|
|
537
|
-
updatedAt: string;
|
|
538
539
|
agentClientLinks: {
|
|
539
540
|
agentId: string;
|
|
540
541
|
};
|
|
541
542
|
blacklistReason?: string | null | undefined;
|
|
542
543
|
};
|
|
543
|
-
phone: string;
|
|
544
544
|
createdBy: {
|
|
545
|
-
id: string;
|
|
546
|
-
firstName: string;
|
|
547
545
|
lastName: string;
|
|
546
|
+
firstName: string;
|
|
548
547
|
email: string;
|
|
548
|
+
id: string;
|
|
549
549
|
};
|
|
550
550
|
position?: string | undefined;
|
|
551
551
|
source?: string | undefined;
|
|
552
552
|
}, {
|
|
553
|
-
id: string;
|
|
554
553
|
email: string;
|
|
555
|
-
|
|
554
|
+
phone: string;
|
|
556
555
|
createdAt: string | Date;
|
|
556
|
+
id: string;
|
|
557
557
|
updatedAt: string | Date;
|
|
558
|
+
name: string;
|
|
558
559
|
clientId: string;
|
|
559
560
|
client: {
|
|
560
|
-
|
|
561
|
+
createdAt: string | Date;
|
|
561
562
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
563
|
+
id: string;
|
|
564
|
+
updatedAt: string | Date;
|
|
562
565
|
name: string;
|
|
563
566
|
crn: string;
|
|
564
567
|
govLink: string;
|
|
565
568
|
director: string;
|
|
566
569
|
lastUpdatedBy: {
|
|
567
|
-
id: string;
|
|
568
|
-
firstName: string;
|
|
569
570
|
lastName: string;
|
|
571
|
+
firstName: string;
|
|
570
572
|
email: string;
|
|
573
|
+
id: string;
|
|
571
574
|
};
|
|
572
|
-
createdAt: string | Date;
|
|
573
|
-
updatedAt: string | Date;
|
|
574
575
|
agentClientLinks: {
|
|
575
576
|
agentId: string;
|
|
576
577
|
};
|
|
577
578
|
blacklistReason?: string | null | undefined;
|
|
578
579
|
};
|
|
579
|
-
phone: string;
|
|
580
580
|
createdBy: {
|
|
581
|
-
id: string;
|
|
582
|
-
firstName: string;
|
|
583
581
|
lastName: string;
|
|
582
|
+
firstName: string;
|
|
584
583
|
email: string;
|
|
584
|
+
id: string;
|
|
585
585
|
};
|
|
586
586
|
position?: string | undefined;
|
|
587
587
|
source?: string | undefined;
|
|
@@ -603,9 +603,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
603
603
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
604
604
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
605
605
|
}, "strip", z.ZodTypeAny, {
|
|
606
|
-
id: string;
|
|
607
606
|
email: string;
|
|
608
607
|
createdAt: string;
|
|
608
|
+
id: string;
|
|
609
609
|
updatedAt: string;
|
|
610
610
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
611
611
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -615,38 +615,38 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
615
615
|
introductionEmailSent: boolean;
|
|
616
616
|
collaborationEmailSent: boolean;
|
|
617
617
|
clientContact?: {
|
|
618
|
-
id: string;
|
|
619
618
|
email: string;
|
|
620
|
-
|
|
619
|
+
phone: string;
|
|
621
620
|
createdAt: string;
|
|
621
|
+
id: string;
|
|
622
622
|
updatedAt: string;
|
|
623
|
+
name: string;
|
|
623
624
|
clientId: string;
|
|
624
625
|
client: {
|
|
625
|
-
|
|
626
|
+
createdAt: string;
|
|
626
627
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
628
|
+
id: string;
|
|
629
|
+
updatedAt: string;
|
|
627
630
|
name: string;
|
|
628
631
|
crn: string;
|
|
629
632
|
govLink: string;
|
|
630
633
|
director: string;
|
|
631
634
|
lastUpdatedBy: {
|
|
632
|
-
id: string;
|
|
633
|
-
firstName: string;
|
|
634
635
|
lastName: string;
|
|
636
|
+
firstName: string;
|
|
635
637
|
email: string;
|
|
638
|
+
id: string;
|
|
636
639
|
};
|
|
637
|
-
createdAt: string;
|
|
638
|
-
updatedAt: string;
|
|
639
640
|
agentClientLinks: {
|
|
640
641
|
agentId: string;
|
|
641
642
|
};
|
|
642
643
|
blacklistReason?: string | null | undefined;
|
|
643
644
|
};
|
|
644
|
-
phone: string;
|
|
645
645
|
createdBy: {
|
|
646
|
-
id: string;
|
|
647
|
-
firstName: string;
|
|
648
646
|
lastName: string;
|
|
647
|
+
firstName: string;
|
|
649
648
|
email: string;
|
|
649
|
+
id: string;
|
|
650
650
|
};
|
|
651
651
|
position?: string | undefined;
|
|
652
652
|
source?: string | undefined;
|
|
@@ -660,9 +660,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
660
660
|
checkingComment?: string | null | undefined;
|
|
661
661
|
deletedAt?: string | null | undefined;
|
|
662
662
|
}, {
|
|
663
|
-
id: string;
|
|
664
663
|
email: string;
|
|
665
664
|
createdAt: string | Date;
|
|
665
|
+
id: string;
|
|
666
666
|
updatedAt: string | Date;
|
|
667
667
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
668
668
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -672,38 +672,38 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
672
672
|
introductionEmailSent: boolean;
|
|
673
673
|
collaborationEmailSent: boolean;
|
|
674
674
|
clientContact?: {
|
|
675
|
-
id: string;
|
|
676
675
|
email: string;
|
|
677
|
-
|
|
676
|
+
phone: string;
|
|
678
677
|
createdAt: string | Date;
|
|
678
|
+
id: string;
|
|
679
679
|
updatedAt: string | Date;
|
|
680
|
+
name: string;
|
|
680
681
|
clientId: string;
|
|
681
682
|
client: {
|
|
682
|
-
|
|
683
|
+
createdAt: string | Date;
|
|
683
684
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
685
|
+
id: string;
|
|
686
|
+
updatedAt: string | Date;
|
|
684
687
|
name: string;
|
|
685
688
|
crn: string;
|
|
686
689
|
govLink: string;
|
|
687
690
|
director: string;
|
|
688
691
|
lastUpdatedBy: {
|
|
689
|
-
id: string;
|
|
690
|
-
firstName: string;
|
|
691
692
|
lastName: string;
|
|
693
|
+
firstName: string;
|
|
692
694
|
email: string;
|
|
695
|
+
id: string;
|
|
693
696
|
};
|
|
694
|
-
createdAt: string | Date;
|
|
695
|
-
updatedAt: string | Date;
|
|
696
697
|
agentClientLinks: {
|
|
697
698
|
agentId: string;
|
|
698
699
|
};
|
|
699
700
|
blacklistReason?: string | null | undefined;
|
|
700
701
|
};
|
|
701
|
-
phone: string;
|
|
702
702
|
createdBy: {
|
|
703
|
-
id: string;
|
|
704
|
-
firstName: string;
|
|
705
703
|
lastName: string;
|
|
704
|
+
firstName: string;
|
|
706
705
|
email: string;
|
|
706
|
+
id: string;
|
|
707
707
|
};
|
|
708
708
|
position?: string | undefined;
|
|
709
709
|
source?: string | undefined;
|
|
@@ -725,9 +725,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
725
725
|
}, "strip", z.ZodTypeAny, {
|
|
726
726
|
limit: number;
|
|
727
727
|
items: {
|
|
728
|
-
id: string;
|
|
729
728
|
email: string;
|
|
730
729
|
createdAt: string;
|
|
730
|
+
id: string;
|
|
731
731
|
updatedAt: string;
|
|
732
732
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
733
733
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -737,38 +737,38 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
737
737
|
introductionEmailSent: boolean;
|
|
738
738
|
collaborationEmailSent: boolean;
|
|
739
739
|
clientContact?: {
|
|
740
|
-
id: string;
|
|
741
740
|
email: string;
|
|
742
|
-
|
|
741
|
+
phone: string;
|
|
743
742
|
createdAt: string;
|
|
743
|
+
id: string;
|
|
744
744
|
updatedAt: string;
|
|
745
|
+
name: string;
|
|
745
746
|
clientId: string;
|
|
746
747
|
client: {
|
|
747
|
-
|
|
748
|
+
createdAt: string;
|
|
748
749
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
750
|
+
id: string;
|
|
751
|
+
updatedAt: string;
|
|
749
752
|
name: string;
|
|
750
753
|
crn: string;
|
|
751
754
|
govLink: string;
|
|
752
755
|
director: string;
|
|
753
756
|
lastUpdatedBy: {
|
|
754
|
-
id: string;
|
|
755
|
-
firstName: string;
|
|
756
757
|
lastName: string;
|
|
758
|
+
firstName: string;
|
|
757
759
|
email: string;
|
|
760
|
+
id: string;
|
|
758
761
|
};
|
|
759
|
-
createdAt: string;
|
|
760
|
-
updatedAt: string;
|
|
761
762
|
agentClientLinks: {
|
|
762
763
|
agentId: string;
|
|
763
764
|
};
|
|
764
765
|
blacklistReason?: string | null | undefined;
|
|
765
766
|
};
|
|
766
|
-
phone: string;
|
|
767
767
|
createdBy: {
|
|
768
|
-
id: string;
|
|
769
|
-
firstName: string;
|
|
770
768
|
lastName: string;
|
|
769
|
+
firstName: string;
|
|
771
770
|
email: string;
|
|
771
|
+
id: string;
|
|
772
772
|
};
|
|
773
773
|
position?: string | undefined;
|
|
774
774
|
source?: string | undefined;
|
|
@@ -789,9 +789,9 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
789
789
|
}, {
|
|
790
790
|
limit: number;
|
|
791
791
|
items: {
|
|
792
|
-
id: string;
|
|
793
792
|
email: string;
|
|
794
793
|
createdAt: string | Date;
|
|
794
|
+
id: string;
|
|
795
795
|
updatedAt: string | Date;
|
|
796
796
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
797
797
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -801,38 +801,38 @@ export declare const PaginatedCollaborationCheckingResponseSchema: z.ZodObject<{
|
|
|
801
801
|
introductionEmailSent: boolean;
|
|
802
802
|
collaborationEmailSent: boolean;
|
|
803
803
|
clientContact?: {
|
|
804
|
-
id: string;
|
|
805
804
|
email: string;
|
|
806
|
-
|
|
805
|
+
phone: string;
|
|
807
806
|
createdAt: string | Date;
|
|
807
|
+
id: string;
|
|
808
808
|
updatedAt: string | Date;
|
|
809
|
+
name: string;
|
|
809
810
|
clientId: string;
|
|
810
811
|
client: {
|
|
811
|
-
|
|
812
|
+
createdAt: string | Date;
|
|
812
813
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
814
|
+
id: string;
|
|
815
|
+
updatedAt: string | Date;
|
|
813
816
|
name: string;
|
|
814
817
|
crn: string;
|
|
815
818
|
govLink: string;
|
|
816
819
|
director: string;
|
|
817
820
|
lastUpdatedBy: {
|
|
818
|
-
id: string;
|
|
819
|
-
firstName: string;
|
|
820
821
|
lastName: string;
|
|
822
|
+
firstName: string;
|
|
821
823
|
email: string;
|
|
824
|
+
id: string;
|
|
822
825
|
};
|
|
823
|
-
createdAt: string | Date;
|
|
824
|
-
updatedAt: string | Date;
|
|
825
826
|
agentClientLinks: {
|
|
826
827
|
agentId: string;
|
|
827
828
|
};
|
|
828
829
|
blacklistReason?: string | null | undefined;
|
|
829
830
|
};
|
|
830
|
-
phone: string;
|
|
831
831
|
createdBy: {
|
|
832
|
-
id: string;
|
|
833
|
-
firstName: string;
|
|
834
832
|
lastName: string;
|
|
833
|
+
firstName: string;
|
|
835
834
|
email: string;
|
|
835
|
+
id: string;
|
|
836
836
|
};
|
|
837
837
|
position?: string | undefined;
|
|
838
838
|
source?: string | undefined;
|
|
@@ -1028,15 +1028,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
1028
1028
|
lastName: z.ZodString;
|
|
1029
1029
|
email: z.ZodString;
|
|
1030
1030
|
}, "strip", z.ZodTypeAny, {
|
|
1031
|
-
id: string;
|
|
1032
|
-
firstName: string;
|
|
1033
1031
|
lastName: string;
|
|
1032
|
+
firstName: string;
|
|
1034
1033
|
email: string;
|
|
1035
|
-
}, {
|
|
1036
1034
|
id: string;
|
|
1037
|
-
|
|
1035
|
+
}, {
|
|
1038
1036
|
lastName: string;
|
|
1037
|
+
firstName: string;
|
|
1039
1038
|
email: string;
|
|
1039
|
+
id: string;
|
|
1040
1040
|
}>;
|
|
1041
1041
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1042
1042
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1048,39 +1048,39 @@ export declare const collaborationCheckingsContract: {
|
|
|
1048
1048
|
agentId: string;
|
|
1049
1049
|
}>;
|
|
1050
1050
|
}, "strip", z.ZodTypeAny, {
|
|
1051
|
-
|
|
1051
|
+
createdAt: string;
|
|
1052
1052
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1053
|
+
id: string;
|
|
1054
|
+
updatedAt: string;
|
|
1053
1055
|
name: string;
|
|
1054
1056
|
crn: string;
|
|
1055
1057
|
govLink: string;
|
|
1056
1058
|
director: string;
|
|
1057
1059
|
lastUpdatedBy: {
|
|
1058
|
-
id: string;
|
|
1059
|
-
firstName: string;
|
|
1060
1060
|
lastName: string;
|
|
1061
|
+
firstName: string;
|
|
1061
1062
|
email: string;
|
|
1063
|
+
id: string;
|
|
1062
1064
|
};
|
|
1063
|
-
createdAt: string;
|
|
1064
|
-
updatedAt: string;
|
|
1065
1065
|
agentClientLinks: {
|
|
1066
1066
|
agentId: string;
|
|
1067
1067
|
};
|
|
1068
1068
|
blacklistReason?: string | null | undefined;
|
|
1069
1069
|
}, {
|
|
1070
|
-
|
|
1070
|
+
createdAt: string | Date;
|
|
1071
1071
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1072
|
+
id: string;
|
|
1073
|
+
updatedAt: string | Date;
|
|
1072
1074
|
name: string;
|
|
1073
1075
|
crn: string;
|
|
1074
1076
|
govLink: string;
|
|
1075
1077
|
director: string;
|
|
1076
1078
|
lastUpdatedBy: {
|
|
1077
|
-
id: string;
|
|
1078
|
-
firstName: string;
|
|
1079
1079
|
lastName: string;
|
|
1080
|
+
firstName: string;
|
|
1080
1081
|
email: string;
|
|
1082
|
+
id: string;
|
|
1081
1083
|
};
|
|
1082
|
-
createdAt: string | Date;
|
|
1083
|
-
updatedAt: string | Date;
|
|
1084
1084
|
agentClientLinks: {
|
|
1085
1085
|
agentId: string;
|
|
1086
1086
|
};
|
|
@@ -1097,87 +1097,87 @@ export declare const collaborationCheckingsContract: {
|
|
|
1097
1097
|
lastName: z.ZodString;
|
|
1098
1098
|
email: z.ZodString;
|
|
1099
1099
|
}, "strip", z.ZodTypeAny, {
|
|
1100
|
-
id: string;
|
|
1101
|
-
firstName: string;
|
|
1102
1100
|
lastName: string;
|
|
1101
|
+
firstName: string;
|
|
1103
1102
|
email: string;
|
|
1104
|
-
}, {
|
|
1105
1103
|
id: string;
|
|
1106
|
-
|
|
1104
|
+
}, {
|
|
1107
1105
|
lastName: string;
|
|
1106
|
+
firstName: string;
|
|
1108
1107
|
email: string;
|
|
1108
|
+
id: string;
|
|
1109
1109
|
}>;
|
|
1110
1110
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1111
1111
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1112
1112
|
}, "strip", z.ZodTypeAny, {
|
|
1113
|
-
id: string;
|
|
1114
1113
|
email: string;
|
|
1115
|
-
|
|
1114
|
+
phone: string;
|
|
1116
1115
|
createdAt: string;
|
|
1116
|
+
id: string;
|
|
1117
1117
|
updatedAt: string;
|
|
1118
|
+
name: string;
|
|
1118
1119
|
clientId: string;
|
|
1119
1120
|
client: {
|
|
1120
|
-
|
|
1121
|
+
createdAt: string;
|
|
1121
1122
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1123
|
+
id: string;
|
|
1124
|
+
updatedAt: string;
|
|
1122
1125
|
name: string;
|
|
1123
1126
|
crn: string;
|
|
1124
1127
|
govLink: string;
|
|
1125
1128
|
director: string;
|
|
1126
1129
|
lastUpdatedBy: {
|
|
1127
|
-
id: string;
|
|
1128
|
-
firstName: string;
|
|
1129
1130
|
lastName: string;
|
|
1131
|
+
firstName: string;
|
|
1130
1132
|
email: string;
|
|
1133
|
+
id: string;
|
|
1131
1134
|
};
|
|
1132
|
-
createdAt: string;
|
|
1133
|
-
updatedAt: string;
|
|
1134
1135
|
agentClientLinks: {
|
|
1135
1136
|
agentId: string;
|
|
1136
1137
|
};
|
|
1137
1138
|
blacklistReason?: string | null | undefined;
|
|
1138
1139
|
};
|
|
1139
|
-
phone: string;
|
|
1140
1140
|
createdBy: {
|
|
1141
|
-
id: string;
|
|
1142
|
-
firstName: string;
|
|
1143
1141
|
lastName: string;
|
|
1142
|
+
firstName: string;
|
|
1144
1143
|
email: string;
|
|
1144
|
+
id: string;
|
|
1145
1145
|
};
|
|
1146
1146
|
position?: string | undefined;
|
|
1147
1147
|
source?: string | undefined;
|
|
1148
1148
|
}, {
|
|
1149
|
-
id: string;
|
|
1150
1149
|
email: string;
|
|
1151
|
-
|
|
1150
|
+
phone: string;
|
|
1152
1151
|
createdAt: string | Date;
|
|
1152
|
+
id: string;
|
|
1153
1153
|
updatedAt: string | Date;
|
|
1154
|
+
name: string;
|
|
1154
1155
|
clientId: string;
|
|
1155
1156
|
client: {
|
|
1156
|
-
|
|
1157
|
+
createdAt: string | Date;
|
|
1157
1158
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1159
|
+
id: string;
|
|
1160
|
+
updatedAt: string | Date;
|
|
1158
1161
|
name: string;
|
|
1159
1162
|
crn: string;
|
|
1160
1163
|
govLink: string;
|
|
1161
1164
|
director: string;
|
|
1162
1165
|
lastUpdatedBy: {
|
|
1163
|
-
id: string;
|
|
1164
|
-
firstName: string;
|
|
1165
1166
|
lastName: string;
|
|
1167
|
+
firstName: string;
|
|
1166
1168
|
email: string;
|
|
1169
|
+
id: string;
|
|
1167
1170
|
};
|
|
1168
|
-
createdAt: string | Date;
|
|
1169
|
-
updatedAt: string | Date;
|
|
1170
1171
|
agentClientLinks: {
|
|
1171
1172
|
agentId: string;
|
|
1172
1173
|
};
|
|
1173
1174
|
blacklistReason?: string | null | undefined;
|
|
1174
1175
|
};
|
|
1175
|
-
phone: string;
|
|
1176
1176
|
createdBy: {
|
|
1177
|
-
id: string;
|
|
1178
|
-
firstName: string;
|
|
1179
1177
|
lastName: string;
|
|
1178
|
+
firstName: string;
|
|
1180
1179
|
email: string;
|
|
1180
|
+
id: string;
|
|
1181
1181
|
};
|
|
1182
1182
|
position?: string | undefined;
|
|
1183
1183
|
source?: string | undefined;
|
|
@@ -1199,9 +1199,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1199
1199
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1200
1200
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
1201
1201
|
}, "strip", z.ZodTypeAny, {
|
|
1202
|
-
id: string;
|
|
1203
1202
|
email: string;
|
|
1204
1203
|
createdAt: string;
|
|
1204
|
+
id: string;
|
|
1205
1205
|
updatedAt: string;
|
|
1206
1206
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1207
1207
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1211,38 +1211,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1211
1211
|
introductionEmailSent: boolean;
|
|
1212
1212
|
collaborationEmailSent: boolean;
|
|
1213
1213
|
clientContact?: {
|
|
1214
|
-
id: string;
|
|
1215
1214
|
email: string;
|
|
1216
|
-
|
|
1215
|
+
phone: string;
|
|
1217
1216
|
createdAt: string;
|
|
1217
|
+
id: string;
|
|
1218
1218
|
updatedAt: string;
|
|
1219
|
+
name: string;
|
|
1219
1220
|
clientId: string;
|
|
1220
1221
|
client: {
|
|
1221
|
-
|
|
1222
|
+
createdAt: string;
|
|
1222
1223
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1224
|
+
id: string;
|
|
1225
|
+
updatedAt: string;
|
|
1223
1226
|
name: string;
|
|
1224
1227
|
crn: string;
|
|
1225
1228
|
govLink: string;
|
|
1226
1229
|
director: string;
|
|
1227
1230
|
lastUpdatedBy: {
|
|
1228
|
-
id: string;
|
|
1229
|
-
firstName: string;
|
|
1230
1231
|
lastName: string;
|
|
1232
|
+
firstName: string;
|
|
1231
1233
|
email: string;
|
|
1234
|
+
id: string;
|
|
1232
1235
|
};
|
|
1233
|
-
createdAt: string;
|
|
1234
|
-
updatedAt: string;
|
|
1235
1236
|
agentClientLinks: {
|
|
1236
1237
|
agentId: string;
|
|
1237
1238
|
};
|
|
1238
1239
|
blacklistReason?: string | null | undefined;
|
|
1239
1240
|
};
|
|
1240
|
-
phone: string;
|
|
1241
1241
|
createdBy: {
|
|
1242
|
-
id: string;
|
|
1243
|
-
firstName: string;
|
|
1244
1242
|
lastName: string;
|
|
1243
|
+
firstName: string;
|
|
1245
1244
|
email: string;
|
|
1245
|
+
id: string;
|
|
1246
1246
|
};
|
|
1247
1247
|
position?: string | undefined;
|
|
1248
1248
|
source?: string | undefined;
|
|
@@ -1256,9 +1256,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1256
1256
|
checkingComment?: string | null | undefined;
|
|
1257
1257
|
deletedAt?: string | null | undefined;
|
|
1258
1258
|
}, {
|
|
1259
|
-
id: string;
|
|
1260
1259
|
email: string;
|
|
1261
1260
|
createdAt: string | Date;
|
|
1261
|
+
id: string;
|
|
1262
1262
|
updatedAt: string | Date;
|
|
1263
1263
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1264
1264
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1268,38 +1268,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1268
1268
|
introductionEmailSent: boolean;
|
|
1269
1269
|
collaborationEmailSent: boolean;
|
|
1270
1270
|
clientContact?: {
|
|
1271
|
-
id: string;
|
|
1272
1271
|
email: string;
|
|
1273
|
-
|
|
1272
|
+
phone: string;
|
|
1274
1273
|
createdAt: string | Date;
|
|
1274
|
+
id: string;
|
|
1275
1275
|
updatedAt: string | Date;
|
|
1276
|
+
name: string;
|
|
1276
1277
|
clientId: string;
|
|
1277
1278
|
client: {
|
|
1278
|
-
|
|
1279
|
+
createdAt: string | Date;
|
|
1279
1280
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1281
|
+
id: string;
|
|
1282
|
+
updatedAt: string | Date;
|
|
1280
1283
|
name: string;
|
|
1281
1284
|
crn: string;
|
|
1282
1285
|
govLink: string;
|
|
1283
1286
|
director: string;
|
|
1284
1287
|
lastUpdatedBy: {
|
|
1285
|
-
id: string;
|
|
1286
|
-
firstName: string;
|
|
1287
1288
|
lastName: string;
|
|
1289
|
+
firstName: string;
|
|
1288
1290
|
email: string;
|
|
1291
|
+
id: string;
|
|
1289
1292
|
};
|
|
1290
|
-
createdAt: string | Date;
|
|
1291
|
-
updatedAt: string | Date;
|
|
1292
1293
|
agentClientLinks: {
|
|
1293
1294
|
agentId: string;
|
|
1294
1295
|
};
|
|
1295
1296
|
blacklistReason?: string | null | undefined;
|
|
1296
1297
|
};
|
|
1297
|
-
phone: string;
|
|
1298
1298
|
createdBy: {
|
|
1299
|
-
id: string;
|
|
1300
|
-
firstName: string;
|
|
1301
1299
|
lastName: string;
|
|
1300
|
+
firstName: string;
|
|
1302
1301
|
email: string;
|
|
1302
|
+
id: string;
|
|
1303
1303
|
};
|
|
1304
1304
|
position?: string | undefined;
|
|
1305
1305
|
source?: string | undefined;
|
|
@@ -1505,15 +1505,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
1505
1505
|
lastName: z.ZodString;
|
|
1506
1506
|
email: z.ZodString;
|
|
1507
1507
|
}, "strip", z.ZodTypeAny, {
|
|
1508
|
-
id: string;
|
|
1509
|
-
firstName: string;
|
|
1510
1508
|
lastName: string;
|
|
1509
|
+
firstName: string;
|
|
1511
1510
|
email: string;
|
|
1512
|
-
}, {
|
|
1513
1511
|
id: string;
|
|
1514
|
-
|
|
1512
|
+
}, {
|
|
1515
1513
|
lastName: string;
|
|
1514
|
+
firstName: string;
|
|
1516
1515
|
email: string;
|
|
1516
|
+
id: string;
|
|
1517
1517
|
}>;
|
|
1518
1518
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1519
1519
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1525,39 +1525,39 @@ export declare const collaborationCheckingsContract: {
|
|
|
1525
1525
|
agentId: string;
|
|
1526
1526
|
}>;
|
|
1527
1527
|
}, "strip", z.ZodTypeAny, {
|
|
1528
|
-
|
|
1528
|
+
createdAt: string;
|
|
1529
1529
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1530
|
+
id: string;
|
|
1531
|
+
updatedAt: string;
|
|
1530
1532
|
name: string;
|
|
1531
1533
|
crn: string;
|
|
1532
1534
|
govLink: string;
|
|
1533
1535
|
director: string;
|
|
1534
1536
|
lastUpdatedBy: {
|
|
1535
|
-
id: string;
|
|
1536
|
-
firstName: string;
|
|
1537
1537
|
lastName: string;
|
|
1538
|
+
firstName: string;
|
|
1538
1539
|
email: string;
|
|
1540
|
+
id: string;
|
|
1539
1541
|
};
|
|
1540
|
-
createdAt: string;
|
|
1541
|
-
updatedAt: string;
|
|
1542
1542
|
agentClientLinks: {
|
|
1543
1543
|
agentId: string;
|
|
1544
1544
|
};
|
|
1545
1545
|
blacklistReason?: string | null | undefined;
|
|
1546
1546
|
}, {
|
|
1547
|
-
|
|
1547
|
+
createdAt: string | Date;
|
|
1548
1548
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1549
|
+
id: string;
|
|
1550
|
+
updatedAt: string | Date;
|
|
1549
1551
|
name: string;
|
|
1550
1552
|
crn: string;
|
|
1551
1553
|
govLink: string;
|
|
1552
1554
|
director: string;
|
|
1553
1555
|
lastUpdatedBy: {
|
|
1554
|
-
id: string;
|
|
1555
|
-
firstName: string;
|
|
1556
1556
|
lastName: string;
|
|
1557
|
+
firstName: string;
|
|
1557
1558
|
email: string;
|
|
1559
|
+
id: string;
|
|
1558
1560
|
};
|
|
1559
|
-
createdAt: string | Date;
|
|
1560
|
-
updatedAt: string | Date;
|
|
1561
1561
|
agentClientLinks: {
|
|
1562
1562
|
agentId: string;
|
|
1563
1563
|
};
|
|
@@ -1574,87 +1574,87 @@ export declare const collaborationCheckingsContract: {
|
|
|
1574
1574
|
lastName: z.ZodString;
|
|
1575
1575
|
email: z.ZodString;
|
|
1576
1576
|
}, "strip", z.ZodTypeAny, {
|
|
1577
|
-
id: string;
|
|
1578
|
-
firstName: string;
|
|
1579
1577
|
lastName: string;
|
|
1578
|
+
firstName: string;
|
|
1580
1579
|
email: string;
|
|
1581
|
-
}, {
|
|
1582
1580
|
id: string;
|
|
1583
|
-
|
|
1581
|
+
}, {
|
|
1584
1582
|
lastName: string;
|
|
1583
|
+
firstName: string;
|
|
1585
1584
|
email: string;
|
|
1585
|
+
id: string;
|
|
1586
1586
|
}>;
|
|
1587
1587
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1588
1588
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1589
1589
|
}, "strip", z.ZodTypeAny, {
|
|
1590
|
-
id: string;
|
|
1591
1590
|
email: string;
|
|
1592
|
-
|
|
1591
|
+
phone: string;
|
|
1593
1592
|
createdAt: string;
|
|
1593
|
+
id: string;
|
|
1594
1594
|
updatedAt: string;
|
|
1595
|
+
name: string;
|
|
1595
1596
|
clientId: string;
|
|
1596
1597
|
client: {
|
|
1597
|
-
|
|
1598
|
+
createdAt: string;
|
|
1598
1599
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1600
|
+
id: string;
|
|
1601
|
+
updatedAt: string;
|
|
1599
1602
|
name: string;
|
|
1600
1603
|
crn: string;
|
|
1601
1604
|
govLink: string;
|
|
1602
1605
|
director: string;
|
|
1603
1606
|
lastUpdatedBy: {
|
|
1604
|
-
id: string;
|
|
1605
|
-
firstName: string;
|
|
1606
1607
|
lastName: string;
|
|
1608
|
+
firstName: string;
|
|
1607
1609
|
email: string;
|
|
1610
|
+
id: string;
|
|
1608
1611
|
};
|
|
1609
|
-
createdAt: string;
|
|
1610
|
-
updatedAt: string;
|
|
1611
1612
|
agentClientLinks: {
|
|
1612
1613
|
agentId: string;
|
|
1613
1614
|
};
|
|
1614
1615
|
blacklistReason?: string | null | undefined;
|
|
1615
1616
|
};
|
|
1616
|
-
phone: string;
|
|
1617
1617
|
createdBy: {
|
|
1618
|
-
id: string;
|
|
1619
|
-
firstName: string;
|
|
1620
1618
|
lastName: string;
|
|
1619
|
+
firstName: string;
|
|
1621
1620
|
email: string;
|
|
1621
|
+
id: string;
|
|
1622
1622
|
};
|
|
1623
1623
|
position?: string | undefined;
|
|
1624
1624
|
source?: string | undefined;
|
|
1625
1625
|
}, {
|
|
1626
|
-
id: string;
|
|
1627
1626
|
email: string;
|
|
1628
|
-
|
|
1627
|
+
phone: string;
|
|
1629
1628
|
createdAt: string | Date;
|
|
1629
|
+
id: string;
|
|
1630
1630
|
updatedAt: string | Date;
|
|
1631
|
+
name: string;
|
|
1631
1632
|
clientId: string;
|
|
1632
1633
|
client: {
|
|
1633
|
-
|
|
1634
|
+
createdAt: string | Date;
|
|
1634
1635
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1636
|
+
id: string;
|
|
1637
|
+
updatedAt: string | Date;
|
|
1635
1638
|
name: string;
|
|
1636
1639
|
crn: string;
|
|
1637
1640
|
govLink: string;
|
|
1638
1641
|
director: string;
|
|
1639
1642
|
lastUpdatedBy: {
|
|
1640
|
-
id: string;
|
|
1641
|
-
firstName: string;
|
|
1642
1643
|
lastName: string;
|
|
1644
|
+
firstName: string;
|
|
1643
1645
|
email: string;
|
|
1646
|
+
id: string;
|
|
1644
1647
|
};
|
|
1645
|
-
createdAt: string | Date;
|
|
1646
|
-
updatedAt: string | Date;
|
|
1647
1648
|
agentClientLinks: {
|
|
1648
1649
|
agentId: string;
|
|
1649
1650
|
};
|
|
1650
1651
|
blacklistReason?: string | null | undefined;
|
|
1651
1652
|
};
|
|
1652
|
-
phone: string;
|
|
1653
1653
|
createdBy: {
|
|
1654
|
-
id: string;
|
|
1655
|
-
firstName: string;
|
|
1656
1654
|
lastName: string;
|
|
1655
|
+
firstName: string;
|
|
1657
1656
|
email: string;
|
|
1657
|
+
id: string;
|
|
1658
1658
|
};
|
|
1659
1659
|
position?: string | undefined;
|
|
1660
1660
|
source?: string | undefined;
|
|
@@ -1676,9 +1676,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1676
1676
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1677
1677
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
1678
1678
|
}, "strip", z.ZodTypeAny, {
|
|
1679
|
-
id: string;
|
|
1680
1679
|
email: string;
|
|
1681
1680
|
createdAt: string;
|
|
1681
|
+
id: string;
|
|
1682
1682
|
updatedAt: string;
|
|
1683
1683
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1684
1684
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1688,38 +1688,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1688
1688
|
introductionEmailSent: boolean;
|
|
1689
1689
|
collaborationEmailSent: boolean;
|
|
1690
1690
|
clientContact?: {
|
|
1691
|
-
id: string;
|
|
1692
1691
|
email: string;
|
|
1693
|
-
|
|
1692
|
+
phone: string;
|
|
1694
1693
|
createdAt: string;
|
|
1694
|
+
id: string;
|
|
1695
1695
|
updatedAt: string;
|
|
1696
|
+
name: string;
|
|
1696
1697
|
clientId: string;
|
|
1697
1698
|
client: {
|
|
1698
|
-
|
|
1699
|
+
createdAt: string;
|
|
1699
1700
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1701
|
+
id: string;
|
|
1702
|
+
updatedAt: string;
|
|
1700
1703
|
name: string;
|
|
1701
1704
|
crn: string;
|
|
1702
1705
|
govLink: string;
|
|
1703
1706
|
director: string;
|
|
1704
1707
|
lastUpdatedBy: {
|
|
1705
|
-
id: string;
|
|
1706
|
-
firstName: string;
|
|
1707
1708
|
lastName: string;
|
|
1709
|
+
firstName: string;
|
|
1708
1710
|
email: string;
|
|
1711
|
+
id: string;
|
|
1709
1712
|
};
|
|
1710
|
-
createdAt: string;
|
|
1711
|
-
updatedAt: string;
|
|
1712
1713
|
agentClientLinks: {
|
|
1713
1714
|
agentId: string;
|
|
1714
1715
|
};
|
|
1715
1716
|
blacklistReason?: string | null | undefined;
|
|
1716
1717
|
};
|
|
1717
|
-
phone: string;
|
|
1718
1718
|
createdBy: {
|
|
1719
|
-
id: string;
|
|
1720
|
-
firstName: string;
|
|
1721
1719
|
lastName: string;
|
|
1720
|
+
firstName: string;
|
|
1722
1721
|
email: string;
|
|
1722
|
+
id: string;
|
|
1723
1723
|
};
|
|
1724
1724
|
position?: string | undefined;
|
|
1725
1725
|
source?: string | undefined;
|
|
@@ -1733,9 +1733,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1733
1733
|
checkingComment?: string | null | undefined;
|
|
1734
1734
|
deletedAt?: string | null | undefined;
|
|
1735
1735
|
}, {
|
|
1736
|
-
id: string;
|
|
1737
1736
|
email: string;
|
|
1738
1737
|
createdAt: string | Date;
|
|
1738
|
+
id: string;
|
|
1739
1739
|
updatedAt: string | Date;
|
|
1740
1740
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1741
1741
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1745,38 +1745,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1745
1745
|
introductionEmailSent: boolean;
|
|
1746
1746
|
collaborationEmailSent: boolean;
|
|
1747
1747
|
clientContact?: {
|
|
1748
|
-
id: string;
|
|
1749
1748
|
email: string;
|
|
1750
|
-
|
|
1749
|
+
phone: string;
|
|
1751
1750
|
createdAt: string | Date;
|
|
1751
|
+
id: string;
|
|
1752
1752
|
updatedAt: string | Date;
|
|
1753
|
+
name: string;
|
|
1753
1754
|
clientId: string;
|
|
1754
1755
|
client: {
|
|
1755
|
-
|
|
1756
|
+
createdAt: string | Date;
|
|
1756
1757
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1758
|
+
id: string;
|
|
1759
|
+
updatedAt: string | Date;
|
|
1757
1760
|
name: string;
|
|
1758
1761
|
crn: string;
|
|
1759
1762
|
govLink: string;
|
|
1760
1763
|
director: string;
|
|
1761
1764
|
lastUpdatedBy: {
|
|
1762
|
-
id: string;
|
|
1763
|
-
firstName: string;
|
|
1764
1765
|
lastName: string;
|
|
1766
|
+
firstName: string;
|
|
1765
1767
|
email: string;
|
|
1768
|
+
id: string;
|
|
1766
1769
|
};
|
|
1767
|
-
createdAt: string | Date;
|
|
1768
|
-
updatedAt: string | Date;
|
|
1769
1770
|
agentClientLinks: {
|
|
1770
1771
|
agentId: string;
|
|
1771
1772
|
};
|
|
1772
1773
|
blacklistReason?: string | null | undefined;
|
|
1773
1774
|
};
|
|
1774
|
-
phone: string;
|
|
1775
1775
|
createdBy: {
|
|
1776
|
-
id: string;
|
|
1777
|
-
firstName: string;
|
|
1778
1776
|
lastName: string;
|
|
1777
|
+
firstName: string;
|
|
1779
1778
|
email: string;
|
|
1779
|
+
id: string;
|
|
1780
1780
|
};
|
|
1781
1781
|
position?: string | undefined;
|
|
1782
1782
|
source?: string | undefined;
|
|
@@ -1798,9 +1798,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1798
1798
|
}, "strip", z.ZodTypeAny, {
|
|
1799
1799
|
limit: number;
|
|
1800
1800
|
items: {
|
|
1801
|
-
id: string;
|
|
1802
1801
|
email: string;
|
|
1803
1802
|
createdAt: string;
|
|
1803
|
+
id: string;
|
|
1804
1804
|
updatedAt: string;
|
|
1805
1805
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1806
1806
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1810,38 +1810,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1810
1810
|
introductionEmailSent: boolean;
|
|
1811
1811
|
collaborationEmailSent: boolean;
|
|
1812
1812
|
clientContact?: {
|
|
1813
|
-
id: string;
|
|
1814
1813
|
email: string;
|
|
1815
|
-
|
|
1814
|
+
phone: string;
|
|
1816
1815
|
createdAt: string;
|
|
1816
|
+
id: string;
|
|
1817
1817
|
updatedAt: string;
|
|
1818
|
+
name: string;
|
|
1818
1819
|
clientId: string;
|
|
1819
1820
|
client: {
|
|
1820
|
-
|
|
1821
|
+
createdAt: string;
|
|
1821
1822
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1823
|
+
id: string;
|
|
1824
|
+
updatedAt: string;
|
|
1822
1825
|
name: string;
|
|
1823
1826
|
crn: string;
|
|
1824
1827
|
govLink: string;
|
|
1825
1828
|
director: string;
|
|
1826
1829
|
lastUpdatedBy: {
|
|
1827
|
-
id: string;
|
|
1828
|
-
firstName: string;
|
|
1829
1830
|
lastName: string;
|
|
1831
|
+
firstName: string;
|
|
1830
1832
|
email: string;
|
|
1833
|
+
id: string;
|
|
1831
1834
|
};
|
|
1832
|
-
createdAt: string;
|
|
1833
|
-
updatedAt: string;
|
|
1834
1835
|
agentClientLinks: {
|
|
1835
1836
|
agentId: string;
|
|
1836
1837
|
};
|
|
1837
1838
|
blacklistReason?: string | null | undefined;
|
|
1838
1839
|
};
|
|
1839
|
-
phone: string;
|
|
1840
1840
|
createdBy: {
|
|
1841
|
-
id: string;
|
|
1842
|
-
firstName: string;
|
|
1843
1841
|
lastName: string;
|
|
1842
|
+
firstName: string;
|
|
1844
1843
|
email: string;
|
|
1844
|
+
id: string;
|
|
1845
1845
|
};
|
|
1846
1846
|
position?: string | undefined;
|
|
1847
1847
|
source?: string | undefined;
|
|
@@ -1862,9 +1862,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
1862
1862
|
}, {
|
|
1863
1863
|
limit: number;
|
|
1864
1864
|
items: {
|
|
1865
|
-
id: string;
|
|
1866
1865
|
email: string;
|
|
1867
1866
|
createdAt: string | Date;
|
|
1867
|
+
id: string;
|
|
1868
1868
|
updatedAt: string | Date;
|
|
1869
1869
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
1870
1870
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -1874,38 +1874,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
1874
1874
|
introductionEmailSent: boolean;
|
|
1875
1875
|
collaborationEmailSent: boolean;
|
|
1876
1876
|
clientContact?: {
|
|
1877
|
-
id: string;
|
|
1878
1877
|
email: string;
|
|
1879
|
-
|
|
1878
|
+
phone: string;
|
|
1880
1879
|
createdAt: string | Date;
|
|
1880
|
+
id: string;
|
|
1881
1881
|
updatedAt: string | Date;
|
|
1882
|
+
name: string;
|
|
1882
1883
|
clientId: string;
|
|
1883
1884
|
client: {
|
|
1884
|
-
|
|
1885
|
+
createdAt: string | Date;
|
|
1885
1886
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1887
|
+
id: string;
|
|
1888
|
+
updatedAt: string | Date;
|
|
1886
1889
|
name: string;
|
|
1887
1890
|
crn: string;
|
|
1888
1891
|
govLink: string;
|
|
1889
1892
|
director: string;
|
|
1890
1893
|
lastUpdatedBy: {
|
|
1891
|
-
id: string;
|
|
1892
|
-
firstName: string;
|
|
1893
1894
|
lastName: string;
|
|
1895
|
+
firstName: string;
|
|
1894
1896
|
email: string;
|
|
1897
|
+
id: string;
|
|
1895
1898
|
};
|
|
1896
|
-
createdAt: string | Date;
|
|
1897
|
-
updatedAt: string | Date;
|
|
1898
1899
|
agentClientLinks: {
|
|
1899
1900
|
agentId: string;
|
|
1900
1901
|
};
|
|
1901
1902
|
blacklistReason?: string | null | undefined;
|
|
1902
1903
|
};
|
|
1903
|
-
phone: string;
|
|
1904
1904
|
createdBy: {
|
|
1905
|
-
id: string;
|
|
1906
|
-
firstName: string;
|
|
1907
1905
|
lastName: string;
|
|
1906
|
+
firstName: string;
|
|
1908
1907
|
email: string;
|
|
1908
|
+
id: string;
|
|
1909
1909
|
};
|
|
1910
1910
|
position?: string | undefined;
|
|
1911
1911
|
source?: string | undefined;
|
|
@@ -2065,15 +2065,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
2065
2065
|
lastName: z.ZodString;
|
|
2066
2066
|
email: z.ZodString;
|
|
2067
2067
|
}, "strip", z.ZodTypeAny, {
|
|
2068
|
-
id: string;
|
|
2069
|
-
firstName: string;
|
|
2070
2068
|
lastName: string;
|
|
2069
|
+
firstName: string;
|
|
2071
2070
|
email: string;
|
|
2072
|
-
}, {
|
|
2073
2071
|
id: string;
|
|
2074
|
-
|
|
2072
|
+
}, {
|
|
2075
2073
|
lastName: string;
|
|
2074
|
+
firstName: string;
|
|
2076
2075
|
email: string;
|
|
2076
|
+
id: string;
|
|
2077
2077
|
}>;
|
|
2078
2078
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2079
2079
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2085,39 +2085,39 @@ export declare const collaborationCheckingsContract: {
|
|
|
2085
2085
|
agentId: string;
|
|
2086
2086
|
}>;
|
|
2087
2087
|
}, "strip", z.ZodTypeAny, {
|
|
2088
|
-
|
|
2088
|
+
createdAt: string;
|
|
2089
2089
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2090
|
+
id: string;
|
|
2091
|
+
updatedAt: string;
|
|
2090
2092
|
name: string;
|
|
2091
2093
|
crn: string;
|
|
2092
2094
|
govLink: string;
|
|
2093
2095
|
director: string;
|
|
2094
2096
|
lastUpdatedBy: {
|
|
2095
|
-
id: string;
|
|
2096
|
-
firstName: string;
|
|
2097
2097
|
lastName: string;
|
|
2098
|
+
firstName: string;
|
|
2098
2099
|
email: string;
|
|
2100
|
+
id: string;
|
|
2099
2101
|
};
|
|
2100
|
-
createdAt: string;
|
|
2101
|
-
updatedAt: string;
|
|
2102
2102
|
agentClientLinks: {
|
|
2103
2103
|
agentId: string;
|
|
2104
2104
|
};
|
|
2105
2105
|
blacklistReason?: string | null | undefined;
|
|
2106
2106
|
}, {
|
|
2107
|
-
|
|
2107
|
+
createdAt: string | Date;
|
|
2108
2108
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2109
|
+
id: string;
|
|
2110
|
+
updatedAt: string | Date;
|
|
2109
2111
|
name: string;
|
|
2110
2112
|
crn: string;
|
|
2111
2113
|
govLink: string;
|
|
2112
2114
|
director: string;
|
|
2113
2115
|
lastUpdatedBy: {
|
|
2114
|
-
id: string;
|
|
2115
|
-
firstName: string;
|
|
2116
2116
|
lastName: string;
|
|
2117
|
+
firstName: string;
|
|
2117
2118
|
email: string;
|
|
2119
|
+
id: string;
|
|
2118
2120
|
};
|
|
2119
|
-
createdAt: string | Date;
|
|
2120
|
-
updatedAt: string | Date;
|
|
2121
2121
|
agentClientLinks: {
|
|
2122
2122
|
agentId: string;
|
|
2123
2123
|
};
|
|
@@ -2134,87 +2134,87 @@ export declare const collaborationCheckingsContract: {
|
|
|
2134
2134
|
lastName: z.ZodString;
|
|
2135
2135
|
email: z.ZodString;
|
|
2136
2136
|
}, "strip", z.ZodTypeAny, {
|
|
2137
|
-
id: string;
|
|
2138
|
-
firstName: string;
|
|
2139
2137
|
lastName: string;
|
|
2138
|
+
firstName: string;
|
|
2140
2139
|
email: string;
|
|
2141
|
-
}, {
|
|
2142
2140
|
id: string;
|
|
2143
|
-
|
|
2141
|
+
}, {
|
|
2144
2142
|
lastName: string;
|
|
2143
|
+
firstName: string;
|
|
2145
2144
|
email: string;
|
|
2145
|
+
id: string;
|
|
2146
2146
|
}>;
|
|
2147
2147
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2148
2148
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2149
2149
|
}, "strip", z.ZodTypeAny, {
|
|
2150
|
-
id: string;
|
|
2151
2150
|
email: string;
|
|
2152
|
-
|
|
2151
|
+
phone: string;
|
|
2153
2152
|
createdAt: string;
|
|
2153
|
+
id: string;
|
|
2154
2154
|
updatedAt: string;
|
|
2155
|
+
name: string;
|
|
2155
2156
|
clientId: string;
|
|
2156
2157
|
client: {
|
|
2157
|
-
|
|
2158
|
+
createdAt: string;
|
|
2158
2159
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2160
|
+
id: string;
|
|
2161
|
+
updatedAt: string;
|
|
2159
2162
|
name: string;
|
|
2160
2163
|
crn: string;
|
|
2161
2164
|
govLink: string;
|
|
2162
2165
|
director: string;
|
|
2163
2166
|
lastUpdatedBy: {
|
|
2164
|
-
id: string;
|
|
2165
|
-
firstName: string;
|
|
2166
2167
|
lastName: string;
|
|
2168
|
+
firstName: string;
|
|
2167
2169
|
email: string;
|
|
2170
|
+
id: string;
|
|
2168
2171
|
};
|
|
2169
|
-
createdAt: string;
|
|
2170
|
-
updatedAt: string;
|
|
2171
2172
|
agentClientLinks: {
|
|
2172
2173
|
agentId: string;
|
|
2173
2174
|
};
|
|
2174
2175
|
blacklistReason?: string | null | undefined;
|
|
2175
2176
|
};
|
|
2176
|
-
phone: string;
|
|
2177
2177
|
createdBy: {
|
|
2178
|
-
id: string;
|
|
2179
|
-
firstName: string;
|
|
2180
2178
|
lastName: string;
|
|
2179
|
+
firstName: string;
|
|
2181
2180
|
email: string;
|
|
2181
|
+
id: string;
|
|
2182
2182
|
};
|
|
2183
2183
|
position?: string | undefined;
|
|
2184
2184
|
source?: string | undefined;
|
|
2185
2185
|
}, {
|
|
2186
|
-
id: string;
|
|
2187
2186
|
email: string;
|
|
2188
|
-
|
|
2187
|
+
phone: string;
|
|
2189
2188
|
createdAt: string | Date;
|
|
2189
|
+
id: string;
|
|
2190
2190
|
updatedAt: string | Date;
|
|
2191
|
+
name: string;
|
|
2191
2192
|
clientId: string;
|
|
2192
2193
|
client: {
|
|
2193
|
-
|
|
2194
|
+
createdAt: string | Date;
|
|
2194
2195
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2196
|
+
id: string;
|
|
2197
|
+
updatedAt: string | Date;
|
|
2195
2198
|
name: string;
|
|
2196
2199
|
crn: string;
|
|
2197
2200
|
govLink: string;
|
|
2198
2201
|
director: string;
|
|
2199
2202
|
lastUpdatedBy: {
|
|
2200
|
-
id: string;
|
|
2201
|
-
firstName: string;
|
|
2202
2203
|
lastName: string;
|
|
2204
|
+
firstName: string;
|
|
2203
2205
|
email: string;
|
|
2206
|
+
id: string;
|
|
2204
2207
|
};
|
|
2205
|
-
createdAt: string | Date;
|
|
2206
|
-
updatedAt: string | Date;
|
|
2207
2208
|
agentClientLinks: {
|
|
2208
2209
|
agentId: string;
|
|
2209
2210
|
};
|
|
2210
2211
|
blacklistReason?: string | null | undefined;
|
|
2211
2212
|
};
|
|
2212
|
-
phone: string;
|
|
2213
2213
|
createdBy: {
|
|
2214
|
-
id: string;
|
|
2215
|
-
firstName: string;
|
|
2216
2214
|
lastName: string;
|
|
2215
|
+
firstName: string;
|
|
2217
2216
|
email: string;
|
|
2217
|
+
id: string;
|
|
2218
2218
|
};
|
|
2219
2219
|
position?: string | undefined;
|
|
2220
2220
|
source?: string | undefined;
|
|
@@ -2236,9 +2236,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2236
2236
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2237
2237
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
2238
2238
|
}, "strip", z.ZodTypeAny, {
|
|
2239
|
-
id: string;
|
|
2240
2239
|
email: string;
|
|
2241
2240
|
createdAt: string;
|
|
2241
|
+
id: string;
|
|
2242
2242
|
updatedAt: string;
|
|
2243
2243
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2244
2244
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -2248,38 +2248,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
2248
2248
|
introductionEmailSent: boolean;
|
|
2249
2249
|
collaborationEmailSent: boolean;
|
|
2250
2250
|
clientContact?: {
|
|
2251
|
-
id: string;
|
|
2252
2251
|
email: string;
|
|
2253
|
-
|
|
2252
|
+
phone: string;
|
|
2254
2253
|
createdAt: string;
|
|
2254
|
+
id: string;
|
|
2255
2255
|
updatedAt: string;
|
|
2256
|
+
name: string;
|
|
2256
2257
|
clientId: string;
|
|
2257
2258
|
client: {
|
|
2258
|
-
|
|
2259
|
+
createdAt: string;
|
|
2259
2260
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2261
|
+
id: string;
|
|
2262
|
+
updatedAt: string;
|
|
2260
2263
|
name: string;
|
|
2261
2264
|
crn: string;
|
|
2262
2265
|
govLink: string;
|
|
2263
2266
|
director: string;
|
|
2264
2267
|
lastUpdatedBy: {
|
|
2265
|
-
id: string;
|
|
2266
|
-
firstName: string;
|
|
2267
2268
|
lastName: string;
|
|
2269
|
+
firstName: string;
|
|
2268
2270
|
email: string;
|
|
2271
|
+
id: string;
|
|
2269
2272
|
};
|
|
2270
|
-
createdAt: string;
|
|
2271
|
-
updatedAt: string;
|
|
2272
2273
|
agentClientLinks: {
|
|
2273
2274
|
agentId: string;
|
|
2274
2275
|
};
|
|
2275
2276
|
blacklistReason?: string | null | undefined;
|
|
2276
2277
|
};
|
|
2277
|
-
phone: string;
|
|
2278
2278
|
createdBy: {
|
|
2279
|
-
id: string;
|
|
2280
|
-
firstName: string;
|
|
2281
2279
|
lastName: string;
|
|
2280
|
+
firstName: string;
|
|
2282
2281
|
email: string;
|
|
2282
|
+
id: string;
|
|
2283
2283
|
};
|
|
2284
2284
|
position?: string | undefined;
|
|
2285
2285
|
source?: string | undefined;
|
|
@@ -2293,9 +2293,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2293
2293
|
checkingComment?: string | null | undefined;
|
|
2294
2294
|
deletedAt?: string | null | undefined;
|
|
2295
2295
|
}, {
|
|
2296
|
-
id: string;
|
|
2297
2296
|
email: string;
|
|
2298
2297
|
createdAt: string | Date;
|
|
2298
|
+
id: string;
|
|
2299
2299
|
updatedAt: string | Date;
|
|
2300
2300
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2301
2301
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -2305,38 +2305,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
2305
2305
|
introductionEmailSent: boolean;
|
|
2306
2306
|
collaborationEmailSent: boolean;
|
|
2307
2307
|
clientContact?: {
|
|
2308
|
-
id: string;
|
|
2309
2308
|
email: string;
|
|
2310
|
-
|
|
2309
|
+
phone: string;
|
|
2311
2310
|
createdAt: string | Date;
|
|
2311
|
+
id: string;
|
|
2312
2312
|
updatedAt: string | Date;
|
|
2313
|
+
name: string;
|
|
2313
2314
|
clientId: string;
|
|
2314
2315
|
client: {
|
|
2315
|
-
|
|
2316
|
+
createdAt: string | Date;
|
|
2316
2317
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2318
|
+
id: string;
|
|
2319
|
+
updatedAt: string | Date;
|
|
2317
2320
|
name: string;
|
|
2318
2321
|
crn: string;
|
|
2319
2322
|
govLink: string;
|
|
2320
2323
|
director: string;
|
|
2321
2324
|
lastUpdatedBy: {
|
|
2322
|
-
id: string;
|
|
2323
|
-
firstName: string;
|
|
2324
2325
|
lastName: string;
|
|
2326
|
+
firstName: string;
|
|
2325
2327
|
email: string;
|
|
2328
|
+
id: string;
|
|
2326
2329
|
};
|
|
2327
|
-
createdAt: string | Date;
|
|
2328
|
-
updatedAt: string | Date;
|
|
2329
2330
|
agentClientLinks: {
|
|
2330
2331
|
agentId: string;
|
|
2331
2332
|
};
|
|
2332
2333
|
blacklistReason?: string | null | undefined;
|
|
2333
2334
|
};
|
|
2334
|
-
phone: string;
|
|
2335
2335
|
createdBy: {
|
|
2336
|
-
id: string;
|
|
2337
|
-
firstName: string;
|
|
2338
2336
|
lastName: string;
|
|
2337
|
+
firstName: string;
|
|
2339
2338
|
email: string;
|
|
2339
|
+
id: string;
|
|
2340
2340
|
};
|
|
2341
2341
|
position?: string | undefined;
|
|
2342
2342
|
source?: string | undefined;
|
|
@@ -2550,15 +2550,15 @@ export declare const collaborationCheckingsContract: {
|
|
|
2550
2550
|
lastName: z.ZodString;
|
|
2551
2551
|
email: z.ZodString;
|
|
2552
2552
|
}, "strip", z.ZodTypeAny, {
|
|
2553
|
-
id: string;
|
|
2554
|
-
firstName: string;
|
|
2555
2553
|
lastName: string;
|
|
2554
|
+
firstName: string;
|
|
2556
2555
|
email: string;
|
|
2557
|
-
}, {
|
|
2558
2556
|
id: string;
|
|
2559
|
-
|
|
2557
|
+
}, {
|
|
2560
2558
|
lastName: string;
|
|
2559
|
+
firstName: string;
|
|
2561
2560
|
email: string;
|
|
2561
|
+
id: string;
|
|
2562
2562
|
}>;
|
|
2563
2563
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2564
2564
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2570,39 +2570,39 @@ export declare const collaborationCheckingsContract: {
|
|
|
2570
2570
|
agentId: string;
|
|
2571
2571
|
}>;
|
|
2572
2572
|
}, "strip", z.ZodTypeAny, {
|
|
2573
|
-
|
|
2573
|
+
createdAt: string;
|
|
2574
2574
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2575
|
+
id: string;
|
|
2576
|
+
updatedAt: string;
|
|
2575
2577
|
name: string;
|
|
2576
2578
|
crn: string;
|
|
2577
2579
|
govLink: string;
|
|
2578
2580
|
director: string;
|
|
2579
2581
|
lastUpdatedBy: {
|
|
2580
|
-
id: string;
|
|
2581
|
-
firstName: string;
|
|
2582
2582
|
lastName: string;
|
|
2583
|
+
firstName: string;
|
|
2583
2584
|
email: string;
|
|
2585
|
+
id: string;
|
|
2584
2586
|
};
|
|
2585
|
-
createdAt: string;
|
|
2586
|
-
updatedAt: string;
|
|
2587
2587
|
agentClientLinks: {
|
|
2588
2588
|
agentId: string;
|
|
2589
2589
|
};
|
|
2590
2590
|
blacklistReason?: string | null | undefined;
|
|
2591
2591
|
}, {
|
|
2592
|
-
|
|
2592
|
+
createdAt: string | Date;
|
|
2593
2593
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2594
|
+
id: string;
|
|
2595
|
+
updatedAt: string | Date;
|
|
2594
2596
|
name: string;
|
|
2595
2597
|
crn: string;
|
|
2596
2598
|
govLink: string;
|
|
2597
2599
|
director: string;
|
|
2598
2600
|
lastUpdatedBy: {
|
|
2599
|
-
id: string;
|
|
2600
|
-
firstName: string;
|
|
2601
2601
|
lastName: string;
|
|
2602
|
+
firstName: string;
|
|
2602
2603
|
email: string;
|
|
2604
|
+
id: string;
|
|
2603
2605
|
};
|
|
2604
|
-
createdAt: string | Date;
|
|
2605
|
-
updatedAt: string | Date;
|
|
2606
2606
|
agentClientLinks: {
|
|
2607
2607
|
agentId: string;
|
|
2608
2608
|
};
|
|
@@ -2619,87 +2619,87 @@ export declare const collaborationCheckingsContract: {
|
|
|
2619
2619
|
lastName: z.ZodString;
|
|
2620
2620
|
email: z.ZodString;
|
|
2621
2621
|
}, "strip", z.ZodTypeAny, {
|
|
2622
|
-
id: string;
|
|
2623
|
-
firstName: string;
|
|
2624
2622
|
lastName: string;
|
|
2623
|
+
firstName: string;
|
|
2625
2624
|
email: string;
|
|
2626
|
-
}, {
|
|
2627
2625
|
id: string;
|
|
2628
|
-
|
|
2626
|
+
}, {
|
|
2629
2627
|
lastName: string;
|
|
2628
|
+
firstName: string;
|
|
2630
2629
|
email: string;
|
|
2630
|
+
id: string;
|
|
2631
2631
|
}>;
|
|
2632
2632
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2633
2633
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2634
2634
|
}, "strip", z.ZodTypeAny, {
|
|
2635
|
-
id: string;
|
|
2636
2635
|
email: string;
|
|
2637
|
-
|
|
2636
|
+
phone: string;
|
|
2638
2637
|
createdAt: string;
|
|
2638
|
+
id: string;
|
|
2639
2639
|
updatedAt: string;
|
|
2640
|
+
name: string;
|
|
2640
2641
|
clientId: string;
|
|
2641
2642
|
client: {
|
|
2642
|
-
|
|
2643
|
+
createdAt: string;
|
|
2643
2644
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2645
|
+
id: string;
|
|
2646
|
+
updatedAt: string;
|
|
2644
2647
|
name: string;
|
|
2645
2648
|
crn: string;
|
|
2646
2649
|
govLink: string;
|
|
2647
2650
|
director: string;
|
|
2648
2651
|
lastUpdatedBy: {
|
|
2649
|
-
id: string;
|
|
2650
|
-
firstName: string;
|
|
2651
2652
|
lastName: string;
|
|
2653
|
+
firstName: string;
|
|
2652
2654
|
email: string;
|
|
2655
|
+
id: string;
|
|
2653
2656
|
};
|
|
2654
|
-
createdAt: string;
|
|
2655
|
-
updatedAt: string;
|
|
2656
2657
|
agentClientLinks: {
|
|
2657
2658
|
agentId: string;
|
|
2658
2659
|
};
|
|
2659
2660
|
blacklistReason?: string | null | undefined;
|
|
2660
2661
|
};
|
|
2661
|
-
phone: string;
|
|
2662
2662
|
createdBy: {
|
|
2663
|
-
id: string;
|
|
2664
|
-
firstName: string;
|
|
2665
2663
|
lastName: string;
|
|
2664
|
+
firstName: string;
|
|
2666
2665
|
email: string;
|
|
2666
|
+
id: string;
|
|
2667
2667
|
};
|
|
2668
2668
|
position?: string | undefined;
|
|
2669
2669
|
source?: string | undefined;
|
|
2670
2670
|
}, {
|
|
2671
|
-
id: string;
|
|
2672
2671
|
email: string;
|
|
2673
|
-
|
|
2672
|
+
phone: string;
|
|
2674
2673
|
createdAt: string | Date;
|
|
2674
|
+
id: string;
|
|
2675
2675
|
updatedAt: string | Date;
|
|
2676
|
+
name: string;
|
|
2676
2677
|
clientId: string;
|
|
2677
2678
|
client: {
|
|
2678
|
-
|
|
2679
|
+
createdAt: string | Date;
|
|
2679
2680
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2681
|
+
id: string;
|
|
2682
|
+
updatedAt: string | Date;
|
|
2680
2683
|
name: string;
|
|
2681
2684
|
crn: string;
|
|
2682
2685
|
govLink: string;
|
|
2683
2686
|
director: string;
|
|
2684
2687
|
lastUpdatedBy: {
|
|
2685
|
-
id: string;
|
|
2686
|
-
firstName: string;
|
|
2687
2688
|
lastName: string;
|
|
2689
|
+
firstName: string;
|
|
2688
2690
|
email: string;
|
|
2691
|
+
id: string;
|
|
2689
2692
|
};
|
|
2690
|
-
createdAt: string | Date;
|
|
2691
|
-
updatedAt: string | Date;
|
|
2692
2693
|
agentClientLinks: {
|
|
2693
2694
|
agentId: string;
|
|
2694
2695
|
};
|
|
2695
2696
|
blacklistReason?: string | null | undefined;
|
|
2696
2697
|
};
|
|
2697
|
-
phone: string;
|
|
2698
2698
|
createdBy: {
|
|
2699
|
-
id: string;
|
|
2700
|
-
firstName: string;
|
|
2701
2699
|
lastName: string;
|
|
2700
|
+
firstName: string;
|
|
2702
2701
|
email: string;
|
|
2702
|
+
id: string;
|
|
2703
2703
|
};
|
|
2704
2704
|
position?: string | undefined;
|
|
2705
2705
|
source?: string | undefined;
|
|
@@ -2721,9 +2721,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2721
2721
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2722
2722
|
deletedAt: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>>, string | null | undefined, string | Date | null | undefined>;
|
|
2723
2723
|
}, "strip", z.ZodTypeAny, {
|
|
2724
|
-
id: string;
|
|
2725
2724
|
email: string;
|
|
2726
2725
|
createdAt: string;
|
|
2726
|
+
id: string;
|
|
2727
2727
|
updatedAt: string;
|
|
2728
2728
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2729
2729
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -2733,38 +2733,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
2733
2733
|
introductionEmailSent: boolean;
|
|
2734
2734
|
collaborationEmailSent: boolean;
|
|
2735
2735
|
clientContact?: {
|
|
2736
|
-
id: string;
|
|
2737
2736
|
email: string;
|
|
2738
|
-
|
|
2737
|
+
phone: string;
|
|
2739
2738
|
createdAt: string;
|
|
2739
|
+
id: string;
|
|
2740
2740
|
updatedAt: string;
|
|
2741
|
+
name: string;
|
|
2741
2742
|
clientId: string;
|
|
2742
2743
|
client: {
|
|
2743
|
-
|
|
2744
|
+
createdAt: string;
|
|
2744
2745
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2746
|
+
id: string;
|
|
2747
|
+
updatedAt: string;
|
|
2745
2748
|
name: string;
|
|
2746
2749
|
crn: string;
|
|
2747
2750
|
govLink: string;
|
|
2748
2751
|
director: string;
|
|
2749
2752
|
lastUpdatedBy: {
|
|
2750
|
-
id: string;
|
|
2751
|
-
firstName: string;
|
|
2752
2753
|
lastName: string;
|
|
2754
|
+
firstName: string;
|
|
2753
2755
|
email: string;
|
|
2756
|
+
id: string;
|
|
2754
2757
|
};
|
|
2755
|
-
createdAt: string;
|
|
2756
|
-
updatedAt: string;
|
|
2757
2758
|
agentClientLinks: {
|
|
2758
2759
|
agentId: string;
|
|
2759
2760
|
};
|
|
2760
2761
|
blacklistReason?: string | null | undefined;
|
|
2761
2762
|
};
|
|
2762
|
-
phone: string;
|
|
2763
2763
|
createdBy: {
|
|
2764
|
-
id: string;
|
|
2765
|
-
firstName: string;
|
|
2766
2764
|
lastName: string;
|
|
2765
|
+
firstName: string;
|
|
2767
2766
|
email: string;
|
|
2767
|
+
id: string;
|
|
2768
2768
|
};
|
|
2769
2769
|
position?: string | undefined;
|
|
2770
2770
|
source?: string | undefined;
|
|
@@ -2778,9 +2778,9 @@ export declare const collaborationCheckingsContract: {
|
|
|
2778
2778
|
checkingComment?: string | null | undefined;
|
|
2779
2779
|
deletedAt?: string | null | undefined;
|
|
2780
2780
|
}, {
|
|
2781
|
-
id: string;
|
|
2782
2781
|
email: string;
|
|
2783
2782
|
createdAt: string | Date;
|
|
2783
|
+
id: string;
|
|
2784
2784
|
updatedAt: string | Date;
|
|
2785
2785
|
urgency: "LOW" | "MEDIUM" | "HIGH";
|
|
2786
2786
|
emailType: "BOTH" | "INTRODUCTION" | "COLLABORATION";
|
|
@@ -2790,38 +2790,38 @@ export declare const collaborationCheckingsContract: {
|
|
|
2790
2790
|
introductionEmailSent: boolean;
|
|
2791
2791
|
collaborationEmailSent: boolean;
|
|
2792
2792
|
clientContact?: {
|
|
2793
|
-
id: string;
|
|
2794
2793
|
email: string;
|
|
2795
|
-
|
|
2794
|
+
phone: string;
|
|
2796
2795
|
createdAt: string | Date;
|
|
2796
|
+
id: string;
|
|
2797
2797
|
updatedAt: string | Date;
|
|
2798
|
+
name: string;
|
|
2798
2799
|
clientId: string;
|
|
2799
2800
|
client: {
|
|
2800
|
-
|
|
2801
|
+
createdAt: string | Date;
|
|
2801
2802
|
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2803
|
+
id: string;
|
|
2804
|
+
updatedAt: string | Date;
|
|
2802
2805
|
name: string;
|
|
2803
2806
|
crn: string;
|
|
2804
2807
|
govLink: string;
|
|
2805
2808
|
director: string;
|
|
2806
2809
|
lastUpdatedBy: {
|
|
2807
|
-
id: string;
|
|
2808
|
-
firstName: string;
|
|
2809
2810
|
lastName: string;
|
|
2811
|
+
firstName: string;
|
|
2810
2812
|
email: string;
|
|
2813
|
+
id: string;
|
|
2811
2814
|
};
|
|
2812
|
-
createdAt: string | Date;
|
|
2813
|
-
updatedAt: string | Date;
|
|
2814
2815
|
agentClientLinks: {
|
|
2815
2816
|
agentId: string;
|
|
2816
2817
|
};
|
|
2817
2818
|
blacklistReason?: string | null | undefined;
|
|
2818
2819
|
};
|
|
2819
|
-
phone: string;
|
|
2820
2820
|
createdBy: {
|
|
2821
|
-
id: string;
|
|
2822
|
-
firstName: string;
|
|
2823
2821
|
lastName: string;
|
|
2822
|
+
firstName: string;
|
|
2824
2823
|
email: string;
|
|
2824
|
+
id: string;
|
|
2825
2825
|
};
|
|
2826
2826
|
position?: string | undefined;
|
|
2827
2827
|
source?: string | undefined;
|