@dakkitor/api-contracts 1.1.109 → 1.1.111
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 +3059 -3059
- package/dist/agent-client-links/agent-client-links.contract.d.ts +74 -74
- package/dist/bookings/bookings.contract.d.ts +11037 -11037
- package/dist/call-history/call-history.contract.d.ts +294 -294
- package/dist/client-contacts/client-contacts.contract.d.ts +186 -186
- package/dist/clients/clients.contract.d.ts +99 -99
- package/dist/clients/clients.contract.d.ts.map +1 -1
- package/dist/clients/clients.contract.js +5 -5
- package/dist/collaboration-checkings/collaboration-checkings.contract.d.ts +440 -440
- package/dist/collaborations/collaborations.contract.d.ts +328 -328
- package/dist/companies/companies.contract.d.ts +22 -22
- package/dist/curated-workers/curated-workers.contract.d.ts +76 -76
- package/dist/dashboards/agent-daily-metrics.contract.d.ts +3 -3
- package/dist/dashboards/dashboard-widgets.contract.d.ts +224 -150
- package/dist/dashboards/dashboard-widgets.contract.d.ts.map +1 -1
- package/dist/dashboards/dashboard-widgets.contract.js +124 -101
- package/dist/dashboards/dashboard.contract.d.ts +14 -14
- package/dist/files/files.contract.d.ts +24 -24
- package/dist/jobs/jobs.contract.d.ts +907 -907
- package/dist/lead-assignments/lead-assignments.contract.d.ts +160 -160
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +34 -34
- package/dist/lead-distribution/lead-distribution-config.contract.d.ts +7 -7
- package/dist/leads/leads.contract.d.ts +136 -136
- package/dist/postcodes/postcodes.contract.d.ts +18 -18
- package/dist/qualifications/qualifications.contract.d.ts +22 -22
- package/dist/trades/trades.contract.d.ts +16 -16
- package/dist/users/users.contract.d.ts +6 -6
- package/dist/workers/workers.contract.d.ts +288 -288
- package/package.json +41 -41
- package/dist/abilities/interconnection.json +0 -370
- package/dist/abilities/second-agent.abilities copy.json +0 -370
|
@@ -22,14 +22,14 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
|
|
|
22
22
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
23
23
|
}, "strip", z.ZodTypeAny, {
|
|
24
24
|
id: string;
|
|
25
|
+
name: string;
|
|
25
26
|
createdAt: string;
|
|
26
27
|
updatedAt: string;
|
|
27
|
-
name: string;
|
|
28
28
|
}, {
|
|
29
29
|
id: string;
|
|
30
|
+
name: string;
|
|
30
31
|
createdAt: string | Date;
|
|
31
32
|
updatedAt: string | Date;
|
|
32
|
-
name: string;
|
|
33
33
|
}>>>;
|
|
34
34
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
35
35
|
id: z.ZodString;
|
|
@@ -67,14 +67,14 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
|
|
|
67
67
|
}>>>;
|
|
68
68
|
}, "strip", z.ZodTypeAny, {
|
|
69
69
|
id: string;
|
|
70
|
-
status: "
|
|
70
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
71
|
+
name: string;
|
|
72
|
+
director: string;
|
|
71
73
|
createdAt: string;
|
|
72
74
|
updatedAt: string;
|
|
73
|
-
name: string;
|
|
74
75
|
crn: string | null;
|
|
75
76
|
govLink: string;
|
|
76
77
|
soleTrader: boolean;
|
|
77
|
-
director: string;
|
|
78
78
|
blacklistReason?: string | null | undefined;
|
|
79
79
|
lastUpdatedBy?: {
|
|
80
80
|
id: string;
|
|
@@ -87,14 +87,14 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
|
|
|
87
87
|
} | null | undefined;
|
|
88
88
|
}, {
|
|
89
89
|
id: string;
|
|
90
|
-
status: "
|
|
90
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
91
|
+
name: string;
|
|
92
|
+
director: string;
|
|
91
93
|
createdAt: string | Date;
|
|
92
94
|
updatedAt: string | Date;
|
|
93
|
-
name: string;
|
|
94
95
|
crn: string | null;
|
|
95
96
|
govLink: string;
|
|
96
97
|
soleTrader: boolean;
|
|
97
|
-
director: string;
|
|
98
98
|
blacklistReason?: string | null | undefined;
|
|
99
99
|
lastUpdatedBy?: {
|
|
100
100
|
id: string;
|
|
@@ -174,20 +174,20 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
|
|
|
174
174
|
userId: string;
|
|
175
175
|
company?: {
|
|
176
176
|
id: string;
|
|
177
|
+
name: string;
|
|
177
178
|
createdAt: string;
|
|
178
179
|
updatedAt: string;
|
|
179
|
-
name: string;
|
|
180
180
|
} | null | undefined;
|
|
181
181
|
client?: {
|
|
182
182
|
id: string;
|
|
183
|
-
status: "
|
|
183
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
184
|
+
name: string;
|
|
185
|
+
director: string;
|
|
184
186
|
createdAt: string;
|
|
185
187
|
updatedAt: string;
|
|
186
|
-
name: string;
|
|
187
188
|
crn: string | null;
|
|
188
189
|
govLink: string;
|
|
189
190
|
soleTrader: boolean;
|
|
190
|
-
director: string;
|
|
191
191
|
blacklistReason?: string | null | undefined;
|
|
192
192
|
lastUpdatedBy?: {
|
|
193
193
|
id: string;
|
|
@@ -223,20 +223,20 @@ export declare const BaseCollaborationSchema: z.ZodObject<{
|
|
|
223
223
|
userId: string;
|
|
224
224
|
company?: {
|
|
225
225
|
id: string;
|
|
226
|
+
name: string;
|
|
226
227
|
createdAt: string | Date;
|
|
227
228
|
updatedAt: string | Date;
|
|
228
|
-
name: string;
|
|
229
229
|
} | null | undefined;
|
|
230
230
|
client?: {
|
|
231
231
|
id: string;
|
|
232
|
-
status: "
|
|
232
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
233
|
+
name: string;
|
|
234
|
+
director: string;
|
|
233
235
|
createdAt: string | Date;
|
|
234
236
|
updatedAt: string | Date;
|
|
235
|
-
name: string;
|
|
236
237
|
crn: string | null;
|
|
237
238
|
govLink: string;
|
|
238
239
|
soleTrader: boolean;
|
|
239
|
-
director: string;
|
|
240
240
|
blacklistReason?: string | null | undefined;
|
|
241
241
|
lastUpdatedBy?: {
|
|
242
242
|
id: string;
|
|
@@ -277,14 +277,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
277
277
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
278
278
|
}, "strip", z.ZodTypeAny, {
|
|
279
279
|
id: string;
|
|
280
|
+
name: string;
|
|
280
281
|
createdAt: string;
|
|
281
282
|
updatedAt: string;
|
|
282
|
-
name: string;
|
|
283
283
|
}, {
|
|
284
284
|
id: string;
|
|
285
|
+
name: string;
|
|
285
286
|
createdAt: string | Date;
|
|
286
287
|
updatedAt: string | Date;
|
|
287
|
-
name: string;
|
|
288
288
|
}>>>;
|
|
289
289
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
290
290
|
id: z.ZodString;
|
|
@@ -322,14 +322,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
322
322
|
}>>>;
|
|
323
323
|
}, "strip", z.ZodTypeAny, {
|
|
324
324
|
id: string;
|
|
325
|
-
status: "
|
|
325
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
326
|
+
name: string;
|
|
327
|
+
director: string;
|
|
326
328
|
createdAt: string;
|
|
327
329
|
updatedAt: string;
|
|
328
|
-
name: string;
|
|
329
330
|
crn: string | null;
|
|
330
331
|
govLink: string;
|
|
331
332
|
soleTrader: boolean;
|
|
332
|
-
director: string;
|
|
333
333
|
blacklistReason?: string | null | undefined;
|
|
334
334
|
lastUpdatedBy?: {
|
|
335
335
|
id: string;
|
|
@@ -342,14 +342,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
342
342
|
} | null | undefined;
|
|
343
343
|
}, {
|
|
344
344
|
id: string;
|
|
345
|
-
status: "
|
|
345
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
346
|
+
name: string;
|
|
347
|
+
director: string;
|
|
346
348
|
createdAt: string | Date;
|
|
347
349
|
updatedAt: string | Date;
|
|
348
|
-
name: string;
|
|
349
350
|
crn: string | null;
|
|
350
351
|
govLink: string;
|
|
351
352
|
soleTrader: boolean;
|
|
352
|
-
director: string;
|
|
353
353
|
blacklistReason?: string | null | undefined;
|
|
354
354
|
lastUpdatedBy?: {
|
|
355
355
|
id: string;
|
|
@@ -431,14 +431,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
431
431
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
432
432
|
}, "strip", z.ZodTypeAny, {
|
|
433
433
|
id: string;
|
|
434
|
+
name: string;
|
|
434
435
|
createdAt: string;
|
|
435
436
|
updatedAt: string;
|
|
436
|
-
name: string;
|
|
437
437
|
}, {
|
|
438
438
|
id: string;
|
|
439
|
+
name: string;
|
|
439
440
|
createdAt: string | Date;
|
|
440
441
|
updatedAt: string | Date;
|
|
441
|
-
name: string;
|
|
442
442
|
}>>>;
|
|
443
443
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
444
444
|
id: z.ZodString;
|
|
@@ -476,14 +476,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
476
476
|
}>>>;
|
|
477
477
|
}, "strip", z.ZodTypeAny, {
|
|
478
478
|
id: string;
|
|
479
|
-
status: "
|
|
479
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
480
|
+
name: string;
|
|
481
|
+
director: string;
|
|
480
482
|
createdAt: string;
|
|
481
483
|
updatedAt: string;
|
|
482
|
-
name: string;
|
|
483
484
|
crn: string | null;
|
|
484
485
|
govLink: string;
|
|
485
486
|
soleTrader: boolean;
|
|
486
|
-
director: string;
|
|
487
487
|
blacklistReason?: string | null | undefined;
|
|
488
488
|
lastUpdatedBy?: {
|
|
489
489
|
id: string;
|
|
@@ -496,14 +496,14 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
496
496
|
} | null | undefined;
|
|
497
497
|
}, {
|
|
498
498
|
id: string;
|
|
499
|
-
status: "
|
|
499
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
500
|
+
name: string;
|
|
501
|
+
director: string;
|
|
500
502
|
createdAt: string | Date;
|
|
501
503
|
updatedAt: string | Date;
|
|
502
|
-
name: string;
|
|
503
504
|
crn: string | null;
|
|
504
505
|
govLink: string;
|
|
505
506
|
soleTrader: boolean;
|
|
506
|
-
director: string;
|
|
507
507
|
blacklistReason?: string | null | undefined;
|
|
508
508
|
lastUpdatedBy?: {
|
|
509
509
|
id: string;
|
|
@@ -583,20 +583,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
583
583
|
userId: string;
|
|
584
584
|
company?: {
|
|
585
585
|
id: string;
|
|
586
|
+
name: string;
|
|
586
587
|
createdAt: string;
|
|
587
588
|
updatedAt: string;
|
|
588
|
-
name: string;
|
|
589
589
|
} | null | undefined;
|
|
590
590
|
client?: {
|
|
591
591
|
id: string;
|
|
592
|
-
status: "
|
|
592
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
593
|
+
name: string;
|
|
594
|
+
director: string;
|
|
593
595
|
createdAt: string;
|
|
594
596
|
updatedAt: string;
|
|
595
|
-
name: string;
|
|
596
597
|
crn: string | null;
|
|
597
598
|
govLink: string;
|
|
598
599
|
soleTrader: boolean;
|
|
599
|
-
director: string;
|
|
600
600
|
blacklistReason?: string | null | undefined;
|
|
601
601
|
lastUpdatedBy?: {
|
|
602
602
|
id: string;
|
|
@@ -632,20 +632,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
632
632
|
userId: string;
|
|
633
633
|
company?: {
|
|
634
634
|
id: string;
|
|
635
|
+
name: string;
|
|
635
636
|
createdAt: string | Date;
|
|
636
637
|
updatedAt: string | Date;
|
|
637
|
-
name: string;
|
|
638
638
|
} | null | undefined;
|
|
639
639
|
client?: {
|
|
640
640
|
id: string;
|
|
641
|
-
status: "
|
|
641
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
642
|
+
name: string;
|
|
643
|
+
director: string;
|
|
642
644
|
createdAt: string | Date;
|
|
643
645
|
updatedAt: string | Date;
|
|
644
|
-
name: string;
|
|
645
646
|
crn: string | null;
|
|
646
647
|
govLink: string;
|
|
647
648
|
soleTrader: boolean;
|
|
648
|
-
director: string;
|
|
649
649
|
blacklistReason?: string | null | undefined;
|
|
650
650
|
lastUpdatedBy?: {
|
|
651
651
|
id: string;
|
|
@@ -682,20 +682,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
682
682
|
userId: string;
|
|
683
683
|
company?: {
|
|
684
684
|
id: string;
|
|
685
|
+
name: string;
|
|
685
686
|
createdAt: string;
|
|
686
687
|
updatedAt: string;
|
|
687
|
-
name: string;
|
|
688
688
|
} | null | undefined;
|
|
689
689
|
client?: {
|
|
690
690
|
id: string;
|
|
691
|
-
status: "
|
|
691
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
692
|
+
name: string;
|
|
693
|
+
director: string;
|
|
692
694
|
createdAt: string;
|
|
693
695
|
updatedAt: string;
|
|
694
|
-
name: string;
|
|
695
696
|
crn: string | null;
|
|
696
697
|
govLink: string;
|
|
697
698
|
soleTrader: boolean;
|
|
698
|
-
director: string;
|
|
699
699
|
blacklistReason?: string | null | undefined;
|
|
700
700
|
lastUpdatedBy?: {
|
|
701
701
|
id: string;
|
|
@@ -731,20 +731,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
731
731
|
userId: string;
|
|
732
732
|
company?: {
|
|
733
733
|
id: string;
|
|
734
|
+
name: string;
|
|
734
735
|
createdAt: string;
|
|
735
736
|
updatedAt: string;
|
|
736
|
-
name: string;
|
|
737
737
|
} | null | undefined;
|
|
738
738
|
client?: {
|
|
739
739
|
id: string;
|
|
740
|
-
status: "
|
|
740
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
741
|
+
name: string;
|
|
742
|
+
director: string;
|
|
741
743
|
createdAt: string;
|
|
742
744
|
updatedAt: string;
|
|
743
|
-
name: string;
|
|
744
745
|
crn: string | null;
|
|
745
746
|
govLink: string;
|
|
746
747
|
soleTrader: boolean;
|
|
747
|
-
director: string;
|
|
748
748
|
blacklistReason?: string | null | undefined;
|
|
749
749
|
lastUpdatedBy?: {
|
|
750
750
|
id: string;
|
|
@@ -781,20 +781,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
781
781
|
userId: string;
|
|
782
782
|
company?: {
|
|
783
783
|
id: string;
|
|
784
|
+
name: string;
|
|
784
785
|
createdAt: string | Date;
|
|
785
786
|
updatedAt: string | Date;
|
|
786
|
-
name: string;
|
|
787
787
|
} | null | undefined;
|
|
788
788
|
client?: {
|
|
789
789
|
id: string;
|
|
790
|
-
status: "
|
|
790
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
791
|
+
name: string;
|
|
792
|
+
director: string;
|
|
791
793
|
createdAt: string | Date;
|
|
792
794
|
updatedAt: string | Date;
|
|
793
|
-
name: string;
|
|
794
795
|
crn: string | null;
|
|
795
796
|
govLink: string;
|
|
796
797
|
soleTrader: boolean;
|
|
797
|
-
director: string;
|
|
798
798
|
blacklistReason?: string | null | undefined;
|
|
799
799
|
lastUpdatedBy?: {
|
|
800
800
|
id: string;
|
|
@@ -830,20 +830,20 @@ export declare const CollaborationSchema: z.ZodObject<{
|
|
|
830
830
|
userId: string;
|
|
831
831
|
company?: {
|
|
832
832
|
id: string;
|
|
833
|
+
name: string;
|
|
833
834
|
createdAt: string | Date;
|
|
834
835
|
updatedAt: string | Date;
|
|
835
|
-
name: string;
|
|
836
836
|
} | null | undefined;
|
|
837
837
|
client?: {
|
|
838
838
|
id: string;
|
|
839
|
-
status: "
|
|
839
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
840
|
+
name: string;
|
|
841
|
+
director: string;
|
|
840
842
|
createdAt: string | Date;
|
|
841
843
|
updatedAt: string | Date;
|
|
842
|
-
name: string;
|
|
843
844
|
crn: string | null;
|
|
844
845
|
govLink: string;
|
|
845
846
|
soleTrader: boolean;
|
|
846
|
-
director: string;
|
|
847
847
|
blacklistReason?: string | null | undefined;
|
|
848
848
|
lastUpdatedBy?: {
|
|
849
849
|
id: string;
|
|
@@ -1156,14 +1156,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1156
1156
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1157
1157
|
}, "strip", z.ZodTypeAny, {
|
|
1158
1158
|
id: string;
|
|
1159
|
+
name: string;
|
|
1159
1160
|
createdAt: string;
|
|
1160
1161
|
updatedAt: string;
|
|
1161
|
-
name: string;
|
|
1162
1162
|
}, {
|
|
1163
1163
|
id: string;
|
|
1164
|
+
name: string;
|
|
1164
1165
|
createdAt: string | Date;
|
|
1165
1166
|
updatedAt: string | Date;
|
|
1166
|
-
name: string;
|
|
1167
1167
|
}>>>;
|
|
1168
1168
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1169
1169
|
id: z.ZodString;
|
|
@@ -1201,14 +1201,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1201
1201
|
}>>>;
|
|
1202
1202
|
}, "strip", z.ZodTypeAny, {
|
|
1203
1203
|
id: string;
|
|
1204
|
-
status: "
|
|
1204
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1205
|
+
name: string;
|
|
1206
|
+
director: string;
|
|
1205
1207
|
createdAt: string;
|
|
1206
1208
|
updatedAt: string;
|
|
1207
|
-
name: string;
|
|
1208
1209
|
crn: string | null;
|
|
1209
1210
|
govLink: string;
|
|
1210
1211
|
soleTrader: boolean;
|
|
1211
|
-
director: string;
|
|
1212
1212
|
blacklistReason?: string | null | undefined;
|
|
1213
1213
|
lastUpdatedBy?: {
|
|
1214
1214
|
id: string;
|
|
@@ -1221,14 +1221,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1221
1221
|
} | null | undefined;
|
|
1222
1222
|
}, {
|
|
1223
1223
|
id: string;
|
|
1224
|
-
status: "
|
|
1224
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1225
|
+
name: string;
|
|
1226
|
+
director: string;
|
|
1225
1227
|
createdAt: string | Date;
|
|
1226
1228
|
updatedAt: string | Date;
|
|
1227
|
-
name: string;
|
|
1228
1229
|
crn: string | null;
|
|
1229
1230
|
govLink: string;
|
|
1230
1231
|
soleTrader: boolean;
|
|
1231
|
-
director: string;
|
|
1232
1232
|
blacklistReason?: string | null | undefined;
|
|
1233
1233
|
lastUpdatedBy?: {
|
|
1234
1234
|
id: string;
|
|
@@ -1310,14 +1310,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1310
1310
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1311
1311
|
}, "strip", z.ZodTypeAny, {
|
|
1312
1312
|
id: string;
|
|
1313
|
+
name: string;
|
|
1313
1314
|
createdAt: string;
|
|
1314
1315
|
updatedAt: string;
|
|
1315
|
-
name: string;
|
|
1316
1316
|
}, {
|
|
1317
1317
|
id: string;
|
|
1318
|
+
name: string;
|
|
1318
1319
|
createdAt: string | Date;
|
|
1319
1320
|
updatedAt: string | Date;
|
|
1320
|
-
name: string;
|
|
1321
1321
|
}>>>;
|
|
1322
1322
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1323
1323
|
id: z.ZodString;
|
|
@@ -1355,14 +1355,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1355
1355
|
}>>>;
|
|
1356
1356
|
}, "strip", z.ZodTypeAny, {
|
|
1357
1357
|
id: string;
|
|
1358
|
-
status: "
|
|
1358
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1359
|
+
name: string;
|
|
1360
|
+
director: string;
|
|
1359
1361
|
createdAt: string;
|
|
1360
1362
|
updatedAt: string;
|
|
1361
|
-
name: string;
|
|
1362
1363
|
crn: string | null;
|
|
1363
1364
|
govLink: string;
|
|
1364
1365
|
soleTrader: boolean;
|
|
1365
|
-
director: string;
|
|
1366
1366
|
blacklistReason?: string | null | undefined;
|
|
1367
1367
|
lastUpdatedBy?: {
|
|
1368
1368
|
id: string;
|
|
@@ -1375,14 +1375,14 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1375
1375
|
} | null | undefined;
|
|
1376
1376
|
}, {
|
|
1377
1377
|
id: string;
|
|
1378
|
-
status: "
|
|
1378
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1379
|
+
name: string;
|
|
1380
|
+
director: string;
|
|
1379
1381
|
createdAt: string | Date;
|
|
1380
1382
|
updatedAt: string | Date;
|
|
1381
|
-
name: string;
|
|
1382
1383
|
crn: string | null;
|
|
1383
1384
|
govLink: string;
|
|
1384
1385
|
soleTrader: boolean;
|
|
1385
|
-
director: string;
|
|
1386
1386
|
blacklistReason?: string | null | undefined;
|
|
1387
1387
|
lastUpdatedBy?: {
|
|
1388
1388
|
id: string;
|
|
@@ -1462,20 +1462,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1462
1462
|
userId: string;
|
|
1463
1463
|
company?: {
|
|
1464
1464
|
id: string;
|
|
1465
|
+
name: string;
|
|
1465
1466
|
createdAt: string;
|
|
1466
1467
|
updatedAt: string;
|
|
1467
|
-
name: string;
|
|
1468
1468
|
} | null | undefined;
|
|
1469
1469
|
client?: {
|
|
1470
1470
|
id: string;
|
|
1471
|
-
status: "
|
|
1471
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1472
|
+
name: string;
|
|
1473
|
+
director: string;
|
|
1472
1474
|
createdAt: string;
|
|
1473
1475
|
updatedAt: string;
|
|
1474
|
-
name: string;
|
|
1475
1476
|
crn: string | null;
|
|
1476
1477
|
govLink: string;
|
|
1477
1478
|
soleTrader: boolean;
|
|
1478
|
-
director: string;
|
|
1479
1479
|
blacklistReason?: string | null | undefined;
|
|
1480
1480
|
lastUpdatedBy?: {
|
|
1481
1481
|
id: string;
|
|
@@ -1511,20 +1511,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1511
1511
|
userId: string;
|
|
1512
1512
|
company?: {
|
|
1513
1513
|
id: string;
|
|
1514
|
+
name: string;
|
|
1514
1515
|
createdAt: string | Date;
|
|
1515
1516
|
updatedAt: string | Date;
|
|
1516
|
-
name: string;
|
|
1517
1517
|
} | null | undefined;
|
|
1518
1518
|
client?: {
|
|
1519
1519
|
id: string;
|
|
1520
|
-
status: "
|
|
1520
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1521
|
+
name: string;
|
|
1522
|
+
director: string;
|
|
1521
1523
|
createdAt: string | Date;
|
|
1522
1524
|
updatedAt: string | Date;
|
|
1523
|
-
name: string;
|
|
1524
1525
|
crn: string | null;
|
|
1525
1526
|
govLink: string;
|
|
1526
1527
|
soleTrader: boolean;
|
|
1527
|
-
director: string;
|
|
1528
1528
|
blacklistReason?: string | null | undefined;
|
|
1529
1529
|
lastUpdatedBy?: {
|
|
1530
1530
|
id: string;
|
|
@@ -1561,20 +1561,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1561
1561
|
userId: string;
|
|
1562
1562
|
company?: {
|
|
1563
1563
|
id: string;
|
|
1564
|
+
name: string;
|
|
1564
1565
|
createdAt: string;
|
|
1565
1566
|
updatedAt: string;
|
|
1566
|
-
name: string;
|
|
1567
1567
|
} | null | undefined;
|
|
1568
1568
|
client?: {
|
|
1569
1569
|
id: string;
|
|
1570
|
-
status: "
|
|
1570
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1571
|
+
name: string;
|
|
1572
|
+
director: string;
|
|
1571
1573
|
createdAt: string;
|
|
1572
1574
|
updatedAt: string;
|
|
1573
|
-
name: string;
|
|
1574
1575
|
crn: string | null;
|
|
1575
1576
|
govLink: string;
|
|
1576
1577
|
soleTrader: boolean;
|
|
1577
|
-
director: string;
|
|
1578
1578
|
blacklistReason?: string | null | undefined;
|
|
1579
1579
|
lastUpdatedBy?: {
|
|
1580
1580
|
id: string;
|
|
@@ -1610,20 +1610,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1610
1610
|
userId: string;
|
|
1611
1611
|
company?: {
|
|
1612
1612
|
id: string;
|
|
1613
|
+
name: string;
|
|
1613
1614
|
createdAt: string;
|
|
1614
1615
|
updatedAt: string;
|
|
1615
|
-
name: string;
|
|
1616
1616
|
} | null | undefined;
|
|
1617
1617
|
client?: {
|
|
1618
1618
|
id: string;
|
|
1619
|
-
status: "
|
|
1619
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1620
|
+
name: string;
|
|
1621
|
+
director: string;
|
|
1620
1622
|
createdAt: string;
|
|
1621
1623
|
updatedAt: string;
|
|
1622
|
-
name: string;
|
|
1623
1624
|
crn: string | null;
|
|
1624
1625
|
govLink: string;
|
|
1625
1626
|
soleTrader: boolean;
|
|
1626
|
-
director: string;
|
|
1627
1627
|
blacklistReason?: string | null | undefined;
|
|
1628
1628
|
lastUpdatedBy?: {
|
|
1629
1629
|
id: string;
|
|
@@ -1660,20 +1660,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1660
1660
|
userId: string;
|
|
1661
1661
|
company?: {
|
|
1662
1662
|
id: string;
|
|
1663
|
+
name: string;
|
|
1663
1664
|
createdAt: string | Date;
|
|
1664
1665
|
updatedAt: string | Date;
|
|
1665
|
-
name: string;
|
|
1666
1666
|
} | null | undefined;
|
|
1667
1667
|
client?: {
|
|
1668
1668
|
id: string;
|
|
1669
|
-
status: "
|
|
1669
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1670
|
+
name: string;
|
|
1671
|
+
director: string;
|
|
1670
1672
|
createdAt: string | Date;
|
|
1671
1673
|
updatedAt: string | Date;
|
|
1672
|
-
name: string;
|
|
1673
1674
|
crn: string | null;
|
|
1674
1675
|
govLink: string;
|
|
1675
1676
|
soleTrader: boolean;
|
|
1676
|
-
director: string;
|
|
1677
1677
|
blacklistReason?: string | null | undefined;
|
|
1678
1678
|
lastUpdatedBy?: {
|
|
1679
1679
|
id: string;
|
|
@@ -1709,20 +1709,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1709
1709
|
userId: string;
|
|
1710
1710
|
company?: {
|
|
1711
1711
|
id: string;
|
|
1712
|
+
name: string;
|
|
1712
1713
|
createdAt: string | Date;
|
|
1713
1714
|
updatedAt: string | Date;
|
|
1714
|
-
name: string;
|
|
1715
1715
|
} | null | undefined;
|
|
1716
1716
|
client?: {
|
|
1717
1717
|
id: string;
|
|
1718
|
-
status: "
|
|
1718
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1719
|
+
name: string;
|
|
1720
|
+
director: string;
|
|
1719
1721
|
createdAt: string | Date;
|
|
1720
1722
|
updatedAt: string | Date;
|
|
1721
|
-
name: string;
|
|
1722
1723
|
crn: string | null;
|
|
1723
1724
|
govLink: string;
|
|
1724
1725
|
soleTrader: boolean;
|
|
1725
|
-
director: string;
|
|
1726
1726
|
blacklistReason?: string | null | undefined;
|
|
1727
1727
|
lastUpdatedBy?: {
|
|
1728
1728
|
id: string;
|
|
@@ -1767,20 +1767,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1767
1767
|
userId: string;
|
|
1768
1768
|
company?: {
|
|
1769
1769
|
id: string;
|
|
1770
|
+
name: string;
|
|
1770
1771
|
createdAt: string;
|
|
1771
1772
|
updatedAt: string;
|
|
1772
|
-
name: string;
|
|
1773
1773
|
} | null | undefined;
|
|
1774
1774
|
client?: {
|
|
1775
1775
|
id: string;
|
|
1776
|
-
status: "
|
|
1776
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1777
|
+
name: string;
|
|
1778
|
+
director: string;
|
|
1777
1779
|
createdAt: string;
|
|
1778
1780
|
updatedAt: string;
|
|
1779
|
-
name: string;
|
|
1780
1781
|
crn: string | null;
|
|
1781
1782
|
govLink: string;
|
|
1782
1783
|
soleTrader: boolean;
|
|
1783
|
-
director: string;
|
|
1784
1784
|
blacklistReason?: string | null | undefined;
|
|
1785
1785
|
lastUpdatedBy?: {
|
|
1786
1786
|
id: string;
|
|
@@ -1816,20 +1816,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1816
1816
|
userId: string;
|
|
1817
1817
|
company?: {
|
|
1818
1818
|
id: string;
|
|
1819
|
+
name: string;
|
|
1819
1820
|
createdAt: string;
|
|
1820
1821
|
updatedAt: string;
|
|
1821
|
-
name: string;
|
|
1822
1822
|
} | null | undefined;
|
|
1823
1823
|
client?: {
|
|
1824
1824
|
id: string;
|
|
1825
|
-
status: "
|
|
1825
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1826
|
+
name: string;
|
|
1827
|
+
director: string;
|
|
1826
1828
|
createdAt: string;
|
|
1827
1829
|
updatedAt: string;
|
|
1828
|
-
name: string;
|
|
1829
1830
|
crn: string | null;
|
|
1830
1831
|
govLink: string;
|
|
1831
1832
|
soleTrader: boolean;
|
|
1832
|
-
director: string;
|
|
1833
1833
|
blacklistReason?: string | null | undefined;
|
|
1834
1834
|
lastUpdatedBy?: {
|
|
1835
1835
|
id: string;
|
|
@@ -1873,20 +1873,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1873
1873
|
userId: string;
|
|
1874
1874
|
company?: {
|
|
1875
1875
|
id: string;
|
|
1876
|
+
name: string;
|
|
1876
1877
|
createdAt: string | Date;
|
|
1877
1878
|
updatedAt: string | Date;
|
|
1878
|
-
name: string;
|
|
1879
1879
|
} | null | undefined;
|
|
1880
1880
|
client?: {
|
|
1881
1881
|
id: string;
|
|
1882
|
-
status: "
|
|
1882
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1883
|
+
name: string;
|
|
1884
|
+
director: string;
|
|
1883
1885
|
createdAt: string | Date;
|
|
1884
1886
|
updatedAt: string | Date;
|
|
1885
|
-
name: string;
|
|
1886
1887
|
crn: string | null;
|
|
1887
1888
|
govLink: string;
|
|
1888
1889
|
soleTrader: boolean;
|
|
1889
|
-
director: string;
|
|
1890
1890
|
blacklistReason?: string | null | undefined;
|
|
1891
1891
|
lastUpdatedBy?: {
|
|
1892
1892
|
id: string;
|
|
@@ -1922,20 +1922,20 @@ export declare const PaginatedCollaborationResponseSchema: z.ZodObject<{
|
|
|
1922
1922
|
userId: string;
|
|
1923
1923
|
company?: {
|
|
1924
1924
|
id: string;
|
|
1925
|
+
name: string;
|
|
1925
1926
|
createdAt: string | Date;
|
|
1926
1927
|
updatedAt: string | Date;
|
|
1927
|
-
name: string;
|
|
1928
1928
|
} | null | undefined;
|
|
1929
1929
|
client?: {
|
|
1930
1930
|
id: string;
|
|
1931
|
-
status: "
|
|
1931
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1932
|
+
name: string;
|
|
1933
|
+
director: string;
|
|
1932
1934
|
createdAt: string | Date;
|
|
1933
1935
|
updatedAt: string | Date;
|
|
1934
|
-
name: string;
|
|
1935
1936
|
crn: string | null;
|
|
1936
1937
|
govLink: string;
|
|
1937
1938
|
soleTrader: boolean;
|
|
1938
|
-
director: string;
|
|
1939
1939
|
blacklistReason?: string | null | undefined;
|
|
1940
1940
|
lastUpdatedBy?: {
|
|
1941
1941
|
id: string;
|
|
@@ -2145,14 +2145,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2145
2145
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2146
2146
|
}, "strip", z.ZodTypeAny, {
|
|
2147
2147
|
id: string;
|
|
2148
|
+
name: string;
|
|
2148
2149
|
createdAt: string;
|
|
2149
2150
|
updatedAt: string;
|
|
2150
|
-
name: string;
|
|
2151
2151
|
}, {
|
|
2152
2152
|
id: string;
|
|
2153
|
+
name: string;
|
|
2153
2154
|
createdAt: string | Date;
|
|
2154
2155
|
updatedAt: string | Date;
|
|
2155
|
-
name: string;
|
|
2156
2156
|
}>>>;
|
|
2157
2157
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2158
2158
|
id: z.ZodString;
|
|
@@ -2190,14 +2190,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2190
2190
|
}>>>;
|
|
2191
2191
|
}, "strip", z.ZodTypeAny, {
|
|
2192
2192
|
id: string;
|
|
2193
|
-
status: "
|
|
2193
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2194
|
+
name: string;
|
|
2195
|
+
director: string;
|
|
2194
2196
|
createdAt: string;
|
|
2195
2197
|
updatedAt: string;
|
|
2196
|
-
name: string;
|
|
2197
2198
|
crn: string | null;
|
|
2198
2199
|
govLink: string;
|
|
2199
2200
|
soleTrader: boolean;
|
|
2200
|
-
director: string;
|
|
2201
2201
|
blacklistReason?: string | null | undefined;
|
|
2202
2202
|
lastUpdatedBy?: {
|
|
2203
2203
|
id: string;
|
|
@@ -2210,14 +2210,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2210
2210
|
} | null | undefined;
|
|
2211
2211
|
}, {
|
|
2212
2212
|
id: string;
|
|
2213
|
-
status: "
|
|
2213
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2214
|
+
name: string;
|
|
2215
|
+
director: string;
|
|
2214
2216
|
createdAt: string | Date;
|
|
2215
2217
|
updatedAt: string | Date;
|
|
2216
|
-
name: string;
|
|
2217
2218
|
crn: string | null;
|
|
2218
2219
|
govLink: string;
|
|
2219
2220
|
soleTrader: boolean;
|
|
2220
|
-
director: string;
|
|
2221
2221
|
blacklistReason?: string | null | undefined;
|
|
2222
2222
|
lastUpdatedBy?: {
|
|
2223
2223
|
id: string;
|
|
@@ -2299,14 +2299,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2299
2299
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2300
2300
|
}, "strip", z.ZodTypeAny, {
|
|
2301
2301
|
id: string;
|
|
2302
|
+
name: string;
|
|
2302
2303
|
createdAt: string;
|
|
2303
2304
|
updatedAt: string;
|
|
2304
|
-
name: string;
|
|
2305
2305
|
}, {
|
|
2306
2306
|
id: string;
|
|
2307
|
+
name: string;
|
|
2307
2308
|
createdAt: string | Date;
|
|
2308
2309
|
updatedAt: string | Date;
|
|
2309
|
-
name: string;
|
|
2310
2310
|
}>>>;
|
|
2311
2311
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2312
2312
|
id: z.ZodString;
|
|
@@ -2344,14 +2344,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2344
2344
|
}>>>;
|
|
2345
2345
|
}, "strip", z.ZodTypeAny, {
|
|
2346
2346
|
id: string;
|
|
2347
|
-
status: "
|
|
2347
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2348
|
+
name: string;
|
|
2349
|
+
director: string;
|
|
2348
2350
|
createdAt: string;
|
|
2349
2351
|
updatedAt: string;
|
|
2350
|
-
name: string;
|
|
2351
2352
|
crn: string | null;
|
|
2352
2353
|
govLink: string;
|
|
2353
2354
|
soleTrader: boolean;
|
|
2354
|
-
director: string;
|
|
2355
2355
|
blacklistReason?: string | null | undefined;
|
|
2356
2356
|
lastUpdatedBy?: {
|
|
2357
2357
|
id: string;
|
|
@@ -2364,14 +2364,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2364
2364
|
} | null | undefined;
|
|
2365
2365
|
}, {
|
|
2366
2366
|
id: string;
|
|
2367
|
-
status: "
|
|
2367
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2368
|
+
name: string;
|
|
2369
|
+
director: string;
|
|
2368
2370
|
createdAt: string | Date;
|
|
2369
2371
|
updatedAt: string | Date;
|
|
2370
|
-
name: string;
|
|
2371
2372
|
crn: string | null;
|
|
2372
2373
|
govLink: string;
|
|
2373
2374
|
soleTrader: boolean;
|
|
2374
|
-
director: string;
|
|
2375
2375
|
blacklistReason?: string | null | undefined;
|
|
2376
2376
|
lastUpdatedBy?: {
|
|
2377
2377
|
id: string;
|
|
@@ -2451,20 +2451,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2451
2451
|
userId: string;
|
|
2452
2452
|
company?: {
|
|
2453
2453
|
id: string;
|
|
2454
|
+
name: string;
|
|
2454
2455
|
createdAt: string;
|
|
2455
2456
|
updatedAt: string;
|
|
2456
|
-
name: string;
|
|
2457
2457
|
} | null | undefined;
|
|
2458
2458
|
client?: {
|
|
2459
2459
|
id: string;
|
|
2460
|
-
status: "
|
|
2460
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2461
|
+
name: string;
|
|
2462
|
+
director: string;
|
|
2461
2463
|
createdAt: string;
|
|
2462
2464
|
updatedAt: string;
|
|
2463
|
-
name: string;
|
|
2464
2465
|
crn: string | null;
|
|
2465
2466
|
govLink: string;
|
|
2466
2467
|
soleTrader: boolean;
|
|
2467
|
-
director: string;
|
|
2468
2468
|
blacklistReason?: string | null | undefined;
|
|
2469
2469
|
lastUpdatedBy?: {
|
|
2470
2470
|
id: string;
|
|
@@ -2500,20 +2500,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2500
2500
|
userId: string;
|
|
2501
2501
|
company?: {
|
|
2502
2502
|
id: string;
|
|
2503
|
+
name: string;
|
|
2503
2504
|
createdAt: string | Date;
|
|
2504
2505
|
updatedAt: string | Date;
|
|
2505
|
-
name: string;
|
|
2506
2506
|
} | null | undefined;
|
|
2507
2507
|
client?: {
|
|
2508
2508
|
id: string;
|
|
2509
|
-
status: "
|
|
2509
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2510
|
+
name: string;
|
|
2511
|
+
director: string;
|
|
2510
2512
|
createdAt: string | Date;
|
|
2511
2513
|
updatedAt: string | Date;
|
|
2512
|
-
name: string;
|
|
2513
2514
|
crn: string | null;
|
|
2514
2515
|
govLink: string;
|
|
2515
2516
|
soleTrader: boolean;
|
|
2516
|
-
director: string;
|
|
2517
2517
|
blacklistReason?: string | null | undefined;
|
|
2518
2518
|
lastUpdatedBy?: {
|
|
2519
2519
|
id: string;
|
|
@@ -2550,20 +2550,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2550
2550
|
userId: string;
|
|
2551
2551
|
company?: {
|
|
2552
2552
|
id: string;
|
|
2553
|
+
name: string;
|
|
2553
2554
|
createdAt: string;
|
|
2554
2555
|
updatedAt: string;
|
|
2555
|
-
name: string;
|
|
2556
2556
|
} | null | undefined;
|
|
2557
2557
|
client?: {
|
|
2558
2558
|
id: string;
|
|
2559
|
-
status: "
|
|
2559
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2560
|
+
name: string;
|
|
2561
|
+
director: string;
|
|
2560
2562
|
createdAt: string;
|
|
2561
2563
|
updatedAt: string;
|
|
2562
|
-
name: string;
|
|
2563
2564
|
crn: string | null;
|
|
2564
2565
|
govLink: string;
|
|
2565
2566
|
soleTrader: boolean;
|
|
2566
|
-
director: string;
|
|
2567
2567
|
blacklistReason?: string | null | undefined;
|
|
2568
2568
|
lastUpdatedBy?: {
|
|
2569
2569
|
id: string;
|
|
@@ -2599,20 +2599,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2599
2599
|
userId: string;
|
|
2600
2600
|
company?: {
|
|
2601
2601
|
id: string;
|
|
2602
|
+
name: string;
|
|
2602
2603
|
createdAt: string;
|
|
2603
2604
|
updatedAt: string;
|
|
2604
|
-
name: string;
|
|
2605
2605
|
} | null | undefined;
|
|
2606
2606
|
client?: {
|
|
2607
2607
|
id: string;
|
|
2608
|
-
status: "
|
|
2608
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2609
|
+
name: string;
|
|
2610
|
+
director: string;
|
|
2609
2611
|
createdAt: string;
|
|
2610
2612
|
updatedAt: string;
|
|
2611
|
-
name: string;
|
|
2612
2613
|
crn: string | null;
|
|
2613
2614
|
govLink: string;
|
|
2614
2615
|
soleTrader: boolean;
|
|
2615
|
-
director: string;
|
|
2616
2616
|
blacklistReason?: string | null | undefined;
|
|
2617
2617
|
lastUpdatedBy?: {
|
|
2618
2618
|
id: string;
|
|
@@ -2649,20 +2649,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2649
2649
|
userId: string;
|
|
2650
2650
|
company?: {
|
|
2651
2651
|
id: string;
|
|
2652
|
+
name: string;
|
|
2652
2653
|
createdAt: string | Date;
|
|
2653
2654
|
updatedAt: string | Date;
|
|
2654
|
-
name: string;
|
|
2655
2655
|
} | null | undefined;
|
|
2656
2656
|
client?: {
|
|
2657
2657
|
id: string;
|
|
2658
|
-
status: "
|
|
2658
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2659
|
+
name: string;
|
|
2660
|
+
director: string;
|
|
2659
2661
|
createdAt: string | Date;
|
|
2660
2662
|
updatedAt: string | Date;
|
|
2661
|
-
name: string;
|
|
2662
2663
|
crn: string | null;
|
|
2663
2664
|
govLink: string;
|
|
2664
2665
|
soleTrader: boolean;
|
|
2665
|
-
director: string;
|
|
2666
2666
|
blacklistReason?: string | null | undefined;
|
|
2667
2667
|
lastUpdatedBy?: {
|
|
2668
2668
|
id: string;
|
|
@@ -2698,20 +2698,20 @@ export declare const collaborationsContractRouter: {
|
|
|
2698
2698
|
userId: string;
|
|
2699
2699
|
company?: {
|
|
2700
2700
|
id: string;
|
|
2701
|
+
name: string;
|
|
2701
2702
|
createdAt: string | Date;
|
|
2702
2703
|
updatedAt: string | Date;
|
|
2703
|
-
name: string;
|
|
2704
2704
|
} | null | undefined;
|
|
2705
2705
|
client?: {
|
|
2706
2706
|
id: string;
|
|
2707
|
-
status: "
|
|
2707
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2708
|
+
name: string;
|
|
2709
|
+
director: string;
|
|
2708
2710
|
createdAt: string | Date;
|
|
2709
2711
|
updatedAt: string | Date;
|
|
2710
|
-
name: string;
|
|
2711
2712
|
crn: string | null;
|
|
2712
2713
|
govLink: string;
|
|
2713
2714
|
soleTrader: boolean;
|
|
2714
|
-
director: string;
|
|
2715
2715
|
blacklistReason?: string | null | undefined;
|
|
2716
2716
|
lastUpdatedBy?: {
|
|
2717
2717
|
id: string;
|
|
@@ -2918,14 +2918,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2918
2918
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2919
2919
|
}, "strip", z.ZodTypeAny, {
|
|
2920
2920
|
id: string;
|
|
2921
|
+
name: string;
|
|
2921
2922
|
createdAt: string;
|
|
2922
2923
|
updatedAt: string;
|
|
2923
|
-
name: string;
|
|
2924
2924
|
}, {
|
|
2925
2925
|
id: string;
|
|
2926
|
+
name: string;
|
|
2926
2927
|
createdAt: string | Date;
|
|
2927
2928
|
updatedAt: string | Date;
|
|
2928
|
-
name: string;
|
|
2929
2929
|
}>>>;
|
|
2930
2930
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2931
2931
|
id: z.ZodString;
|
|
@@ -2963,14 +2963,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2963
2963
|
}>>>;
|
|
2964
2964
|
}, "strip", z.ZodTypeAny, {
|
|
2965
2965
|
id: string;
|
|
2966
|
-
status: "
|
|
2966
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2967
|
+
name: string;
|
|
2968
|
+
director: string;
|
|
2967
2969
|
createdAt: string;
|
|
2968
2970
|
updatedAt: string;
|
|
2969
|
-
name: string;
|
|
2970
2971
|
crn: string | null;
|
|
2971
2972
|
govLink: string;
|
|
2972
2973
|
soleTrader: boolean;
|
|
2973
|
-
director: string;
|
|
2974
2974
|
blacklistReason?: string | null | undefined;
|
|
2975
2975
|
lastUpdatedBy?: {
|
|
2976
2976
|
id: string;
|
|
@@ -2983,14 +2983,14 @@ export declare const collaborationsContractRouter: {
|
|
|
2983
2983
|
} | null | undefined;
|
|
2984
2984
|
}, {
|
|
2985
2985
|
id: string;
|
|
2986
|
-
status: "
|
|
2986
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2987
|
+
name: string;
|
|
2988
|
+
director: string;
|
|
2987
2989
|
createdAt: string | Date;
|
|
2988
2990
|
updatedAt: string | Date;
|
|
2989
|
-
name: string;
|
|
2990
2991
|
crn: string | null;
|
|
2991
2992
|
govLink: string;
|
|
2992
2993
|
soleTrader: boolean;
|
|
2993
|
-
director: string;
|
|
2994
2994
|
blacklistReason?: string | null | undefined;
|
|
2995
2995
|
lastUpdatedBy?: {
|
|
2996
2996
|
id: string;
|
|
@@ -3072,14 +3072,14 @@ export declare const collaborationsContractRouter: {
|
|
|
3072
3072
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3073
3073
|
}, "strip", z.ZodTypeAny, {
|
|
3074
3074
|
id: string;
|
|
3075
|
+
name: string;
|
|
3075
3076
|
createdAt: string;
|
|
3076
3077
|
updatedAt: string;
|
|
3077
|
-
name: string;
|
|
3078
3078
|
}, {
|
|
3079
3079
|
id: string;
|
|
3080
|
+
name: string;
|
|
3080
3081
|
createdAt: string | Date;
|
|
3081
3082
|
updatedAt: string | Date;
|
|
3082
|
-
name: string;
|
|
3083
3083
|
}>>>;
|
|
3084
3084
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3085
3085
|
id: z.ZodString;
|
|
@@ -3117,14 +3117,14 @@ export declare const collaborationsContractRouter: {
|
|
|
3117
3117
|
}>>>;
|
|
3118
3118
|
}, "strip", z.ZodTypeAny, {
|
|
3119
3119
|
id: string;
|
|
3120
|
-
status: "
|
|
3120
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3121
|
+
name: string;
|
|
3122
|
+
director: string;
|
|
3121
3123
|
createdAt: string;
|
|
3122
3124
|
updatedAt: string;
|
|
3123
|
-
name: string;
|
|
3124
3125
|
crn: string | null;
|
|
3125
3126
|
govLink: string;
|
|
3126
3127
|
soleTrader: boolean;
|
|
3127
|
-
director: string;
|
|
3128
3128
|
blacklistReason?: string | null | undefined;
|
|
3129
3129
|
lastUpdatedBy?: {
|
|
3130
3130
|
id: string;
|
|
@@ -3137,14 +3137,14 @@ export declare const collaborationsContractRouter: {
|
|
|
3137
3137
|
} | null | undefined;
|
|
3138
3138
|
}, {
|
|
3139
3139
|
id: string;
|
|
3140
|
-
status: "
|
|
3140
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3141
|
+
name: string;
|
|
3142
|
+
director: string;
|
|
3141
3143
|
createdAt: string | Date;
|
|
3142
3144
|
updatedAt: string | Date;
|
|
3143
|
-
name: string;
|
|
3144
3145
|
crn: string | null;
|
|
3145
3146
|
govLink: string;
|
|
3146
3147
|
soleTrader: boolean;
|
|
3147
|
-
director: string;
|
|
3148
3148
|
blacklistReason?: string | null | undefined;
|
|
3149
3149
|
lastUpdatedBy?: {
|
|
3150
3150
|
id: string;
|
|
@@ -3224,20 +3224,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3224
3224
|
userId: string;
|
|
3225
3225
|
company?: {
|
|
3226
3226
|
id: string;
|
|
3227
|
+
name: string;
|
|
3227
3228
|
createdAt: string;
|
|
3228
3229
|
updatedAt: string;
|
|
3229
|
-
name: string;
|
|
3230
3230
|
} | null | undefined;
|
|
3231
3231
|
client?: {
|
|
3232
3232
|
id: string;
|
|
3233
|
-
status: "
|
|
3233
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3234
|
+
name: string;
|
|
3235
|
+
director: string;
|
|
3234
3236
|
createdAt: string;
|
|
3235
3237
|
updatedAt: string;
|
|
3236
|
-
name: string;
|
|
3237
3238
|
crn: string | null;
|
|
3238
3239
|
govLink: string;
|
|
3239
3240
|
soleTrader: boolean;
|
|
3240
|
-
director: string;
|
|
3241
3241
|
blacklistReason?: string | null | undefined;
|
|
3242
3242
|
lastUpdatedBy?: {
|
|
3243
3243
|
id: string;
|
|
@@ -3273,20 +3273,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3273
3273
|
userId: string;
|
|
3274
3274
|
company?: {
|
|
3275
3275
|
id: string;
|
|
3276
|
+
name: string;
|
|
3276
3277
|
createdAt: string | Date;
|
|
3277
3278
|
updatedAt: string | Date;
|
|
3278
|
-
name: string;
|
|
3279
3279
|
} | null | undefined;
|
|
3280
3280
|
client?: {
|
|
3281
3281
|
id: string;
|
|
3282
|
-
status: "
|
|
3282
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3283
|
+
name: string;
|
|
3284
|
+
director: string;
|
|
3283
3285
|
createdAt: string | Date;
|
|
3284
3286
|
updatedAt: string | Date;
|
|
3285
|
-
name: string;
|
|
3286
3287
|
crn: string | null;
|
|
3287
3288
|
govLink: string;
|
|
3288
3289
|
soleTrader: boolean;
|
|
3289
|
-
director: string;
|
|
3290
3290
|
blacklistReason?: string | null | undefined;
|
|
3291
3291
|
lastUpdatedBy?: {
|
|
3292
3292
|
id: string;
|
|
@@ -3323,20 +3323,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3323
3323
|
userId: string;
|
|
3324
3324
|
company?: {
|
|
3325
3325
|
id: string;
|
|
3326
|
+
name: string;
|
|
3326
3327
|
createdAt: string;
|
|
3327
3328
|
updatedAt: string;
|
|
3328
|
-
name: string;
|
|
3329
3329
|
} | null | undefined;
|
|
3330
3330
|
client?: {
|
|
3331
3331
|
id: string;
|
|
3332
|
-
status: "
|
|
3332
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3333
|
+
name: string;
|
|
3334
|
+
director: string;
|
|
3333
3335
|
createdAt: string;
|
|
3334
3336
|
updatedAt: string;
|
|
3335
|
-
name: string;
|
|
3336
3337
|
crn: string | null;
|
|
3337
3338
|
govLink: string;
|
|
3338
3339
|
soleTrader: boolean;
|
|
3339
|
-
director: string;
|
|
3340
3340
|
blacklistReason?: string | null | undefined;
|
|
3341
3341
|
lastUpdatedBy?: {
|
|
3342
3342
|
id: string;
|
|
@@ -3372,20 +3372,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3372
3372
|
userId: string;
|
|
3373
3373
|
company?: {
|
|
3374
3374
|
id: string;
|
|
3375
|
+
name: string;
|
|
3375
3376
|
createdAt: string;
|
|
3376
3377
|
updatedAt: string;
|
|
3377
|
-
name: string;
|
|
3378
3378
|
} | null | undefined;
|
|
3379
3379
|
client?: {
|
|
3380
3380
|
id: string;
|
|
3381
|
-
status: "
|
|
3381
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3382
|
+
name: string;
|
|
3383
|
+
director: string;
|
|
3382
3384
|
createdAt: string;
|
|
3383
3385
|
updatedAt: string;
|
|
3384
|
-
name: string;
|
|
3385
3386
|
crn: string | null;
|
|
3386
3387
|
govLink: string;
|
|
3387
3388
|
soleTrader: boolean;
|
|
3388
|
-
director: string;
|
|
3389
3389
|
blacklistReason?: string | null | undefined;
|
|
3390
3390
|
lastUpdatedBy?: {
|
|
3391
3391
|
id: string;
|
|
@@ -3422,20 +3422,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3422
3422
|
userId: string;
|
|
3423
3423
|
company?: {
|
|
3424
3424
|
id: string;
|
|
3425
|
+
name: string;
|
|
3425
3426
|
createdAt: string | Date;
|
|
3426
3427
|
updatedAt: string | Date;
|
|
3427
|
-
name: string;
|
|
3428
3428
|
} | null | undefined;
|
|
3429
3429
|
client?: {
|
|
3430
3430
|
id: string;
|
|
3431
|
-
status: "
|
|
3431
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3432
|
+
name: string;
|
|
3433
|
+
director: string;
|
|
3432
3434
|
createdAt: string | Date;
|
|
3433
3435
|
updatedAt: string | Date;
|
|
3434
|
-
name: string;
|
|
3435
3436
|
crn: string | null;
|
|
3436
3437
|
govLink: string;
|
|
3437
3438
|
soleTrader: boolean;
|
|
3438
|
-
director: string;
|
|
3439
3439
|
blacklistReason?: string | null | undefined;
|
|
3440
3440
|
lastUpdatedBy?: {
|
|
3441
3441
|
id: string;
|
|
@@ -3471,20 +3471,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3471
3471
|
userId: string;
|
|
3472
3472
|
company?: {
|
|
3473
3473
|
id: string;
|
|
3474
|
+
name: string;
|
|
3474
3475
|
createdAt: string | Date;
|
|
3475
3476
|
updatedAt: string | Date;
|
|
3476
|
-
name: string;
|
|
3477
3477
|
} | null | undefined;
|
|
3478
3478
|
client?: {
|
|
3479
3479
|
id: string;
|
|
3480
|
-
status: "
|
|
3480
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3481
|
+
name: string;
|
|
3482
|
+
director: string;
|
|
3481
3483
|
createdAt: string | Date;
|
|
3482
3484
|
updatedAt: string | Date;
|
|
3483
|
-
name: string;
|
|
3484
3485
|
crn: string | null;
|
|
3485
3486
|
govLink: string;
|
|
3486
3487
|
soleTrader: boolean;
|
|
3487
|
-
director: string;
|
|
3488
3488
|
blacklistReason?: string | null | undefined;
|
|
3489
3489
|
lastUpdatedBy?: {
|
|
3490
3490
|
id: string;
|
|
@@ -3529,20 +3529,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3529
3529
|
userId: string;
|
|
3530
3530
|
company?: {
|
|
3531
3531
|
id: string;
|
|
3532
|
+
name: string;
|
|
3532
3533
|
createdAt: string;
|
|
3533
3534
|
updatedAt: string;
|
|
3534
|
-
name: string;
|
|
3535
3535
|
} | null | undefined;
|
|
3536
3536
|
client?: {
|
|
3537
3537
|
id: string;
|
|
3538
|
-
status: "
|
|
3538
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3539
|
+
name: string;
|
|
3540
|
+
director: string;
|
|
3539
3541
|
createdAt: string;
|
|
3540
3542
|
updatedAt: string;
|
|
3541
|
-
name: string;
|
|
3542
3543
|
crn: string | null;
|
|
3543
3544
|
govLink: string;
|
|
3544
3545
|
soleTrader: boolean;
|
|
3545
|
-
director: string;
|
|
3546
3546
|
blacklistReason?: string | null | undefined;
|
|
3547
3547
|
lastUpdatedBy?: {
|
|
3548
3548
|
id: string;
|
|
@@ -3578,20 +3578,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3578
3578
|
userId: string;
|
|
3579
3579
|
company?: {
|
|
3580
3580
|
id: string;
|
|
3581
|
+
name: string;
|
|
3581
3582
|
createdAt: string;
|
|
3582
3583
|
updatedAt: string;
|
|
3583
|
-
name: string;
|
|
3584
3584
|
} | null | undefined;
|
|
3585
3585
|
client?: {
|
|
3586
3586
|
id: string;
|
|
3587
|
-
status: "
|
|
3587
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3588
|
+
name: string;
|
|
3589
|
+
director: string;
|
|
3588
3590
|
createdAt: string;
|
|
3589
3591
|
updatedAt: string;
|
|
3590
|
-
name: string;
|
|
3591
3592
|
crn: string | null;
|
|
3592
3593
|
govLink: string;
|
|
3593
3594
|
soleTrader: boolean;
|
|
3594
|
-
director: string;
|
|
3595
3595
|
blacklistReason?: string | null | undefined;
|
|
3596
3596
|
lastUpdatedBy?: {
|
|
3597
3597
|
id: string;
|
|
@@ -3635,20 +3635,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3635
3635
|
userId: string;
|
|
3636
3636
|
company?: {
|
|
3637
3637
|
id: string;
|
|
3638
|
+
name: string;
|
|
3638
3639
|
createdAt: string | Date;
|
|
3639
3640
|
updatedAt: string | Date;
|
|
3640
|
-
name: string;
|
|
3641
3641
|
} | null | undefined;
|
|
3642
3642
|
client?: {
|
|
3643
3643
|
id: string;
|
|
3644
|
-
status: "
|
|
3644
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3645
|
+
name: string;
|
|
3646
|
+
director: string;
|
|
3645
3647
|
createdAt: string | Date;
|
|
3646
3648
|
updatedAt: string | Date;
|
|
3647
|
-
name: string;
|
|
3648
3649
|
crn: string | null;
|
|
3649
3650
|
govLink: string;
|
|
3650
3651
|
soleTrader: boolean;
|
|
3651
|
-
director: string;
|
|
3652
3652
|
blacklistReason?: string | null | undefined;
|
|
3653
3653
|
lastUpdatedBy?: {
|
|
3654
3654
|
id: string;
|
|
@@ -3684,20 +3684,20 @@ export declare const collaborationsContractRouter: {
|
|
|
3684
3684
|
userId: string;
|
|
3685
3685
|
company?: {
|
|
3686
3686
|
id: string;
|
|
3687
|
+
name: string;
|
|
3687
3688
|
createdAt: string | Date;
|
|
3688
3689
|
updatedAt: string | Date;
|
|
3689
|
-
name: string;
|
|
3690
3690
|
} | null | undefined;
|
|
3691
3691
|
client?: {
|
|
3692
3692
|
id: string;
|
|
3693
|
-
status: "
|
|
3693
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3694
|
+
name: string;
|
|
3695
|
+
director: string;
|
|
3694
3696
|
createdAt: string | Date;
|
|
3695
3697
|
updatedAt: string | Date;
|
|
3696
|
-
name: string;
|
|
3697
3698
|
crn: string | null;
|
|
3698
3699
|
govLink: string;
|
|
3699
3700
|
soleTrader: boolean;
|
|
3700
|
-
director: string;
|
|
3701
3701
|
blacklistReason?: string | null | undefined;
|
|
3702
3702
|
lastUpdatedBy?: {
|
|
3703
3703
|
id: string;
|
|
@@ -4035,14 +4035,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4035
4035
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4036
4036
|
}, "strip", z.ZodTypeAny, {
|
|
4037
4037
|
id: string;
|
|
4038
|
+
name: string;
|
|
4038
4039
|
createdAt: string;
|
|
4039
4040
|
updatedAt: string;
|
|
4040
|
-
name: string;
|
|
4041
4041
|
}, {
|
|
4042
4042
|
id: string;
|
|
4043
|
+
name: string;
|
|
4043
4044
|
createdAt: string | Date;
|
|
4044
4045
|
updatedAt: string | Date;
|
|
4045
|
-
name: string;
|
|
4046
4046
|
}>>>;
|
|
4047
4047
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4048
4048
|
id: z.ZodString;
|
|
@@ -4080,14 +4080,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4080
4080
|
}>>>;
|
|
4081
4081
|
}, "strip", z.ZodTypeAny, {
|
|
4082
4082
|
id: string;
|
|
4083
|
-
status: "
|
|
4083
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4084
|
+
name: string;
|
|
4085
|
+
director: string;
|
|
4084
4086
|
createdAt: string;
|
|
4085
4087
|
updatedAt: string;
|
|
4086
|
-
name: string;
|
|
4087
4088
|
crn: string | null;
|
|
4088
4089
|
govLink: string;
|
|
4089
4090
|
soleTrader: boolean;
|
|
4090
|
-
director: string;
|
|
4091
4091
|
blacklistReason?: string | null | undefined;
|
|
4092
4092
|
lastUpdatedBy?: {
|
|
4093
4093
|
id: string;
|
|
@@ -4100,14 +4100,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4100
4100
|
} | null | undefined;
|
|
4101
4101
|
}, {
|
|
4102
4102
|
id: string;
|
|
4103
|
-
status: "
|
|
4103
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4104
|
+
name: string;
|
|
4105
|
+
director: string;
|
|
4104
4106
|
createdAt: string | Date;
|
|
4105
4107
|
updatedAt: string | Date;
|
|
4106
|
-
name: string;
|
|
4107
4108
|
crn: string | null;
|
|
4108
4109
|
govLink: string;
|
|
4109
4110
|
soleTrader: boolean;
|
|
4110
|
-
director: string;
|
|
4111
4111
|
blacklistReason?: string | null | undefined;
|
|
4112
4112
|
lastUpdatedBy?: {
|
|
4113
4113
|
id: string;
|
|
@@ -4189,14 +4189,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4189
4189
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4190
4190
|
}, "strip", z.ZodTypeAny, {
|
|
4191
4191
|
id: string;
|
|
4192
|
+
name: string;
|
|
4192
4193
|
createdAt: string;
|
|
4193
4194
|
updatedAt: string;
|
|
4194
|
-
name: string;
|
|
4195
4195
|
}, {
|
|
4196
4196
|
id: string;
|
|
4197
|
+
name: string;
|
|
4197
4198
|
createdAt: string | Date;
|
|
4198
4199
|
updatedAt: string | Date;
|
|
4199
|
-
name: string;
|
|
4200
4200
|
}>>>;
|
|
4201
4201
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4202
4202
|
id: z.ZodString;
|
|
@@ -4234,14 +4234,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4234
4234
|
}>>>;
|
|
4235
4235
|
}, "strip", z.ZodTypeAny, {
|
|
4236
4236
|
id: string;
|
|
4237
|
-
status: "
|
|
4237
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4238
|
+
name: string;
|
|
4239
|
+
director: string;
|
|
4238
4240
|
createdAt: string;
|
|
4239
4241
|
updatedAt: string;
|
|
4240
|
-
name: string;
|
|
4241
4242
|
crn: string | null;
|
|
4242
4243
|
govLink: string;
|
|
4243
4244
|
soleTrader: boolean;
|
|
4244
|
-
director: string;
|
|
4245
4245
|
blacklistReason?: string | null | undefined;
|
|
4246
4246
|
lastUpdatedBy?: {
|
|
4247
4247
|
id: string;
|
|
@@ -4254,14 +4254,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4254
4254
|
} | null | undefined;
|
|
4255
4255
|
}, {
|
|
4256
4256
|
id: string;
|
|
4257
|
-
status: "
|
|
4257
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4258
|
+
name: string;
|
|
4259
|
+
director: string;
|
|
4258
4260
|
createdAt: string | Date;
|
|
4259
4261
|
updatedAt: string | Date;
|
|
4260
|
-
name: string;
|
|
4261
4262
|
crn: string | null;
|
|
4262
4263
|
govLink: string;
|
|
4263
4264
|
soleTrader: boolean;
|
|
4264
|
-
director: string;
|
|
4265
4265
|
blacklistReason?: string | null | undefined;
|
|
4266
4266
|
lastUpdatedBy?: {
|
|
4267
4267
|
id: string;
|
|
@@ -4341,20 +4341,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4341
4341
|
userId: string;
|
|
4342
4342
|
company?: {
|
|
4343
4343
|
id: string;
|
|
4344
|
+
name: string;
|
|
4344
4345
|
createdAt: string;
|
|
4345
4346
|
updatedAt: string;
|
|
4346
|
-
name: string;
|
|
4347
4347
|
} | null | undefined;
|
|
4348
4348
|
client?: {
|
|
4349
4349
|
id: string;
|
|
4350
|
-
status: "
|
|
4350
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4351
|
+
name: string;
|
|
4352
|
+
director: string;
|
|
4351
4353
|
createdAt: string;
|
|
4352
4354
|
updatedAt: string;
|
|
4353
|
-
name: string;
|
|
4354
4355
|
crn: string | null;
|
|
4355
4356
|
govLink: string;
|
|
4356
4357
|
soleTrader: boolean;
|
|
4357
|
-
director: string;
|
|
4358
4358
|
blacklistReason?: string | null | undefined;
|
|
4359
4359
|
lastUpdatedBy?: {
|
|
4360
4360
|
id: string;
|
|
@@ -4390,20 +4390,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4390
4390
|
userId: string;
|
|
4391
4391
|
company?: {
|
|
4392
4392
|
id: string;
|
|
4393
|
+
name: string;
|
|
4393
4394
|
createdAt: string | Date;
|
|
4394
4395
|
updatedAt: string | Date;
|
|
4395
|
-
name: string;
|
|
4396
4396
|
} | null | undefined;
|
|
4397
4397
|
client?: {
|
|
4398
4398
|
id: string;
|
|
4399
|
-
status: "
|
|
4399
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4400
|
+
name: string;
|
|
4401
|
+
director: string;
|
|
4400
4402
|
createdAt: string | Date;
|
|
4401
4403
|
updatedAt: string | Date;
|
|
4402
|
-
name: string;
|
|
4403
4404
|
crn: string | null;
|
|
4404
4405
|
govLink: string;
|
|
4405
4406
|
soleTrader: boolean;
|
|
4406
|
-
director: string;
|
|
4407
4407
|
blacklistReason?: string | null | undefined;
|
|
4408
4408
|
lastUpdatedBy?: {
|
|
4409
4409
|
id: string;
|
|
@@ -4440,20 +4440,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4440
4440
|
userId: string;
|
|
4441
4441
|
company?: {
|
|
4442
4442
|
id: string;
|
|
4443
|
+
name: string;
|
|
4443
4444
|
createdAt: string;
|
|
4444
4445
|
updatedAt: string;
|
|
4445
|
-
name: string;
|
|
4446
4446
|
} | null | undefined;
|
|
4447
4447
|
client?: {
|
|
4448
4448
|
id: string;
|
|
4449
|
-
status: "
|
|
4449
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4450
|
+
name: string;
|
|
4451
|
+
director: string;
|
|
4450
4452
|
createdAt: string;
|
|
4451
4453
|
updatedAt: string;
|
|
4452
|
-
name: string;
|
|
4453
4454
|
crn: string | null;
|
|
4454
4455
|
govLink: string;
|
|
4455
4456
|
soleTrader: boolean;
|
|
4456
|
-
director: string;
|
|
4457
4457
|
blacklistReason?: string | null | undefined;
|
|
4458
4458
|
lastUpdatedBy?: {
|
|
4459
4459
|
id: string;
|
|
@@ -4489,20 +4489,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4489
4489
|
userId: string;
|
|
4490
4490
|
company?: {
|
|
4491
4491
|
id: string;
|
|
4492
|
+
name: string;
|
|
4492
4493
|
createdAt: string;
|
|
4493
4494
|
updatedAt: string;
|
|
4494
|
-
name: string;
|
|
4495
4495
|
} | null | undefined;
|
|
4496
4496
|
client?: {
|
|
4497
4497
|
id: string;
|
|
4498
|
-
status: "
|
|
4498
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4499
|
+
name: string;
|
|
4500
|
+
director: string;
|
|
4499
4501
|
createdAt: string;
|
|
4500
4502
|
updatedAt: string;
|
|
4501
|
-
name: string;
|
|
4502
4503
|
crn: string | null;
|
|
4503
4504
|
govLink: string;
|
|
4504
4505
|
soleTrader: boolean;
|
|
4505
|
-
director: string;
|
|
4506
4506
|
blacklistReason?: string | null | undefined;
|
|
4507
4507
|
lastUpdatedBy?: {
|
|
4508
4508
|
id: string;
|
|
@@ -4539,20 +4539,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4539
4539
|
userId: string;
|
|
4540
4540
|
company?: {
|
|
4541
4541
|
id: string;
|
|
4542
|
+
name: string;
|
|
4542
4543
|
createdAt: string | Date;
|
|
4543
4544
|
updatedAt: string | Date;
|
|
4544
|
-
name: string;
|
|
4545
4545
|
} | null | undefined;
|
|
4546
4546
|
client?: {
|
|
4547
4547
|
id: string;
|
|
4548
|
-
status: "
|
|
4548
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4549
|
+
name: string;
|
|
4550
|
+
director: string;
|
|
4549
4551
|
createdAt: string | Date;
|
|
4550
4552
|
updatedAt: string | Date;
|
|
4551
|
-
name: string;
|
|
4552
4553
|
crn: string | null;
|
|
4553
4554
|
govLink: string;
|
|
4554
4555
|
soleTrader: boolean;
|
|
4555
|
-
director: string;
|
|
4556
4556
|
blacklistReason?: string | null | undefined;
|
|
4557
4557
|
lastUpdatedBy?: {
|
|
4558
4558
|
id: string;
|
|
@@ -4588,20 +4588,20 @@ export declare const collaborationsContractRouter: {
|
|
|
4588
4588
|
userId: string;
|
|
4589
4589
|
company?: {
|
|
4590
4590
|
id: string;
|
|
4591
|
+
name: string;
|
|
4591
4592
|
createdAt: string | Date;
|
|
4592
4593
|
updatedAt: string | Date;
|
|
4593
|
-
name: string;
|
|
4594
4594
|
} | null | undefined;
|
|
4595
4595
|
client?: {
|
|
4596
4596
|
id: string;
|
|
4597
|
-
status: "
|
|
4597
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4598
|
+
name: string;
|
|
4599
|
+
director: string;
|
|
4598
4600
|
createdAt: string | Date;
|
|
4599
4601
|
updatedAt: string | Date;
|
|
4600
|
-
name: string;
|
|
4601
4602
|
crn: string | null;
|
|
4602
4603
|
govLink: string;
|
|
4603
4604
|
soleTrader: boolean;
|
|
4604
|
-
director: string;
|
|
4605
4605
|
blacklistReason?: string | null | undefined;
|
|
4606
4606
|
lastUpdatedBy?: {
|
|
4607
4607
|
id: string;
|
|
@@ -4818,14 +4818,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4818
4818
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4819
4819
|
}, "strip", z.ZodTypeAny, {
|
|
4820
4820
|
id: string;
|
|
4821
|
+
name: string;
|
|
4821
4822
|
createdAt: string;
|
|
4822
4823
|
updatedAt: string;
|
|
4823
|
-
name: string;
|
|
4824
4824
|
}, {
|
|
4825
4825
|
id: string;
|
|
4826
|
+
name: string;
|
|
4826
4827
|
createdAt: string | Date;
|
|
4827
4828
|
updatedAt: string | Date;
|
|
4828
|
-
name: string;
|
|
4829
4829
|
}>>>;
|
|
4830
4830
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4831
4831
|
id: z.ZodString;
|
|
@@ -4863,14 +4863,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4863
4863
|
}>>>;
|
|
4864
4864
|
}, "strip", z.ZodTypeAny, {
|
|
4865
4865
|
id: string;
|
|
4866
|
-
status: "
|
|
4866
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4867
|
+
name: string;
|
|
4868
|
+
director: string;
|
|
4867
4869
|
createdAt: string;
|
|
4868
4870
|
updatedAt: string;
|
|
4869
|
-
name: string;
|
|
4870
4871
|
crn: string | null;
|
|
4871
4872
|
govLink: string;
|
|
4872
4873
|
soleTrader: boolean;
|
|
4873
|
-
director: string;
|
|
4874
4874
|
blacklistReason?: string | null | undefined;
|
|
4875
4875
|
lastUpdatedBy?: {
|
|
4876
4876
|
id: string;
|
|
@@ -4883,14 +4883,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4883
4883
|
} | null | undefined;
|
|
4884
4884
|
}, {
|
|
4885
4885
|
id: string;
|
|
4886
|
-
status: "
|
|
4886
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4887
|
+
name: string;
|
|
4888
|
+
director: string;
|
|
4887
4889
|
createdAt: string | Date;
|
|
4888
4890
|
updatedAt: string | Date;
|
|
4889
|
-
name: string;
|
|
4890
4891
|
crn: string | null;
|
|
4891
4892
|
govLink: string;
|
|
4892
4893
|
soleTrader: boolean;
|
|
4893
|
-
director: string;
|
|
4894
4894
|
blacklistReason?: string | null | undefined;
|
|
4895
4895
|
lastUpdatedBy?: {
|
|
4896
4896
|
id: string;
|
|
@@ -4972,14 +4972,14 @@ export declare const collaborationsContractRouter: {
|
|
|
4972
4972
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4973
4973
|
}, "strip", z.ZodTypeAny, {
|
|
4974
4974
|
id: string;
|
|
4975
|
+
name: string;
|
|
4975
4976
|
createdAt: string;
|
|
4976
4977
|
updatedAt: string;
|
|
4977
|
-
name: string;
|
|
4978
4978
|
}, {
|
|
4979
4979
|
id: string;
|
|
4980
|
+
name: string;
|
|
4980
4981
|
createdAt: string | Date;
|
|
4981
4982
|
updatedAt: string | Date;
|
|
4982
|
-
name: string;
|
|
4983
4983
|
}>>>;
|
|
4984
4984
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4985
4985
|
id: z.ZodString;
|
|
@@ -5017,14 +5017,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5017
5017
|
}>>>;
|
|
5018
5018
|
}, "strip", z.ZodTypeAny, {
|
|
5019
5019
|
id: string;
|
|
5020
|
-
status: "
|
|
5020
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5021
|
+
name: string;
|
|
5022
|
+
director: string;
|
|
5021
5023
|
createdAt: string;
|
|
5022
5024
|
updatedAt: string;
|
|
5023
|
-
name: string;
|
|
5024
5025
|
crn: string | null;
|
|
5025
5026
|
govLink: string;
|
|
5026
5027
|
soleTrader: boolean;
|
|
5027
|
-
director: string;
|
|
5028
5028
|
blacklistReason?: string | null | undefined;
|
|
5029
5029
|
lastUpdatedBy?: {
|
|
5030
5030
|
id: string;
|
|
@@ -5037,14 +5037,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5037
5037
|
} | null | undefined;
|
|
5038
5038
|
}, {
|
|
5039
5039
|
id: string;
|
|
5040
|
-
status: "
|
|
5040
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5041
|
+
name: string;
|
|
5042
|
+
director: string;
|
|
5041
5043
|
createdAt: string | Date;
|
|
5042
5044
|
updatedAt: string | Date;
|
|
5043
|
-
name: string;
|
|
5044
5045
|
crn: string | null;
|
|
5045
5046
|
govLink: string;
|
|
5046
5047
|
soleTrader: boolean;
|
|
5047
|
-
director: string;
|
|
5048
5048
|
blacklistReason?: string | null | undefined;
|
|
5049
5049
|
lastUpdatedBy?: {
|
|
5050
5050
|
id: string;
|
|
@@ -5124,20 +5124,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5124
5124
|
userId: string;
|
|
5125
5125
|
company?: {
|
|
5126
5126
|
id: string;
|
|
5127
|
+
name: string;
|
|
5127
5128
|
createdAt: string;
|
|
5128
5129
|
updatedAt: string;
|
|
5129
|
-
name: string;
|
|
5130
5130
|
} | null | undefined;
|
|
5131
5131
|
client?: {
|
|
5132
5132
|
id: string;
|
|
5133
|
-
status: "
|
|
5133
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5134
|
+
name: string;
|
|
5135
|
+
director: string;
|
|
5134
5136
|
createdAt: string;
|
|
5135
5137
|
updatedAt: string;
|
|
5136
|
-
name: string;
|
|
5137
5138
|
crn: string | null;
|
|
5138
5139
|
govLink: string;
|
|
5139
5140
|
soleTrader: boolean;
|
|
5140
|
-
director: string;
|
|
5141
5141
|
blacklistReason?: string | null | undefined;
|
|
5142
5142
|
lastUpdatedBy?: {
|
|
5143
5143
|
id: string;
|
|
@@ -5173,20 +5173,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5173
5173
|
userId: string;
|
|
5174
5174
|
company?: {
|
|
5175
5175
|
id: string;
|
|
5176
|
+
name: string;
|
|
5176
5177
|
createdAt: string | Date;
|
|
5177
5178
|
updatedAt: string | Date;
|
|
5178
|
-
name: string;
|
|
5179
5179
|
} | null | undefined;
|
|
5180
5180
|
client?: {
|
|
5181
5181
|
id: string;
|
|
5182
|
-
status: "
|
|
5182
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5183
|
+
name: string;
|
|
5184
|
+
director: string;
|
|
5183
5185
|
createdAt: string | Date;
|
|
5184
5186
|
updatedAt: string | Date;
|
|
5185
|
-
name: string;
|
|
5186
5187
|
crn: string | null;
|
|
5187
5188
|
govLink: string;
|
|
5188
5189
|
soleTrader: boolean;
|
|
5189
|
-
director: string;
|
|
5190
5190
|
blacklistReason?: string | null | undefined;
|
|
5191
5191
|
lastUpdatedBy?: {
|
|
5192
5192
|
id: string;
|
|
@@ -5223,20 +5223,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5223
5223
|
userId: string;
|
|
5224
5224
|
company?: {
|
|
5225
5225
|
id: string;
|
|
5226
|
+
name: string;
|
|
5226
5227
|
createdAt: string;
|
|
5227
5228
|
updatedAt: string;
|
|
5228
|
-
name: string;
|
|
5229
5229
|
} | null | undefined;
|
|
5230
5230
|
client?: {
|
|
5231
5231
|
id: string;
|
|
5232
|
-
status: "
|
|
5232
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5233
|
+
name: string;
|
|
5234
|
+
director: string;
|
|
5233
5235
|
createdAt: string;
|
|
5234
5236
|
updatedAt: string;
|
|
5235
|
-
name: string;
|
|
5236
5237
|
crn: string | null;
|
|
5237
5238
|
govLink: string;
|
|
5238
5239
|
soleTrader: boolean;
|
|
5239
|
-
director: string;
|
|
5240
5240
|
blacklistReason?: string | null | undefined;
|
|
5241
5241
|
lastUpdatedBy?: {
|
|
5242
5242
|
id: string;
|
|
@@ -5272,20 +5272,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5272
5272
|
userId: string;
|
|
5273
5273
|
company?: {
|
|
5274
5274
|
id: string;
|
|
5275
|
+
name: string;
|
|
5275
5276
|
createdAt: string;
|
|
5276
5277
|
updatedAt: string;
|
|
5277
|
-
name: string;
|
|
5278
5278
|
} | null | undefined;
|
|
5279
5279
|
client?: {
|
|
5280
5280
|
id: string;
|
|
5281
|
-
status: "
|
|
5281
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5282
|
+
name: string;
|
|
5283
|
+
director: string;
|
|
5282
5284
|
createdAt: string;
|
|
5283
5285
|
updatedAt: string;
|
|
5284
|
-
name: string;
|
|
5285
5286
|
crn: string | null;
|
|
5286
5287
|
govLink: string;
|
|
5287
5288
|
soleTrader: boolean;
|
|
5288
|
-
director: string;
|
|
5289
5289
|
blacklistReason?: string | null | undefined;
|
|
5290
5290
|
lastUpdatedBy?: {
|
|
5291
5291
|
id: string;
|
|
@@ -5322,20 +5322,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5322
5322
|
userId: string;
|
|
5323
5323
|
company?: {
|
|
5324
5324
|
id: string;
|
|
5325
|
+
name: string;
|
|
5325
5326
|
createdAt: string | Date;
|
|
5326
5327
|
updatedAt: string | Date;
|
|
5327
|
-
name: string;
|
|
5328
5328
|
} | null | undefined;
|
|
5329
5329
|
client?: {
|
|
5330
5330
|
id: string;
|
|
5331
|
-
status: "
|
|
5331
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5332
|
+
name: string;
|
|
5333
|
+
director: string;
|
|
5332
5334
|
createdAt: string | Date;
|
|
5333
5335
|
updatedAt: string | Date;
|
|
5334
|
-
name: string;
|
|
5335
5336
|
crn: string | null;
|
|
5336
5337
|
govLink: string;
|
|
5337
5338
|
soleTrader: boolean;
|
|
5338
|
-
director: string;
|
|
5339
5339
|
blacklistReason?: string | null | undefined;
|
|
5340
5340
|
lastUpdatedBy?: {
|
|
5341
5341
|
id: string;
|
|
@@ -5371,20 +5371,20 @@ export declare const collaborationsContractRouter: {
|
|
|
5371
5371
|
userId: string;
|
|
5372
5372
|
company?: {
|
|
5373
5373
|
id: string;
|
|
5374
|
+
name: string;
|
|
5374
5375
|
createdAt: string | Date;
|
|
5375
5376
|
updatedAt: string | Date;
|
|
5376
|
-
name: string;
|
|
5377
5377
|
} | null | undefined;
|
|
5378
5378
|
client?: {
|
|
5379
5379
|
id: string;
|
|
5380
|
-
status: "
|
|
5380
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5381
|
+
name: string;
|
|
5382
|
+
director: string;
|
|
5381
5383
|
createdAt: string | Date;
|
|
5382
5384
|
updatedAt: string | Date;
|
|
5383
|
-
name: string;
|
|
5384
5385
|
crn: string | null;
|
|
5385
5386
|
govLink: string;
|
|
5386
5387
|
soleTrader: boolean;
|
|
5387
|
-
director: string;
|
|
5388
5388
|
blacklistReason?: string | null | undefined;
|
|
5389
5389
|
lastUpdatedBy?: {
|
|
5390
5390
|
id: string;
|
|
@@ -5779,14 +5779,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5779
5779
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5780
5780
|
}, "strip", z.ZodTypeAny, {
|
|
5781
5781
|
id: string;
|
|
5782
|
+
name: string;
|
|
5782
5783
|
createdAt: string;
|
|
5783
5784
|
updatedAt: string;
|
|
5784
|
-
name: string;
|
|
5785
5785
|
}, {
|
|
5786
5786
|
id: string;
|
|
5787
|
+
name: string;
|
|
5787
5788
|
createdAt: string | Date;
|
|
5788
5789
|
updatedAt: string | Date;
|
|
5789
|
-
name: string;
|
|
5790
5790
|
}>>>;
|
|
5791
5791
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5792
5792
|
id: z.ZodString;
|
|
@@ -5824,14 +5824,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5824
5824
|
}>>>;
|
|
5825
5825
|
}, "strip", z.ZodTypeAny, {
|
|
5826
5826
|
id: string;
|
|
5827
|
-
status: "
|
|
5827
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5828
|
+
name: string;
|
|
5829
|
+
director: string;
|
|
5828
5830
|
createdAt: string;
|
|
5829
5831
|
updatedAt: string;
|
|
5830
|
-
name: string;
|
|
5831
5832
|
crn: string | null;
|
|
5832
5833
|
govLink: string;
|
|
5833
5834
|
soleTrader: boolean;
|
|
5834
|
-
director: string;
|
|
5835
5835
|
blacklistReason?: string | null | undefined;
|
|
5836
5836
|
lastUpdatedBy?: {
|
|
5837
5837
|
id: string;
|
|
@@ -5844,14 +5844,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5844
5844
|
} | null | undefined;
|
|
5845
5845
|
}, {
|
|
5846
5846
|
id: string;
|
|
5847
|
-
status: "
|
|
5847
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5848
|
+
name: string;
|
|
5849
|
+
director: string;
|
|
5848
5850
|
createdAt: string | Date;
|
|
5849
5851
|
updatedAt: string | Date;
|
|
5850
|
-
name: string;
|
|
5851
5852
|
crn: string | null;
|
|
5852
5853
|
govLink: string;
|
|
5853
5854
|
soleTrader: boolean;
|
|
5854
|
-
director: string;
|
|
5855
5855
|
blacklistReason?: string | null | undefined;
|
|
5856
5856
|
lastUpdatedBy?: {
|
|
5857
5857
|
id: string;
|
|
@@ -5933,14 +5933,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5933
5933
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5934
5934
|
}, "strip", z.ZodTypeAny, {
|
|
5935
5935
|
id: string;
|
|
5936
|
+
name: string;
|
|
5936
5937
|
createdAt: string;
|
|
5937
5938
|
updatedAt: string;
|
|
5938
|
-
name: string;
|
|
5939
5939
|
}, {
|
|
5940
5940
|
id: string;
|
|
5941
|
+
name: string;
|
|
5941
5942
|
createdAt: string | Date;
|
|
5942
5943
|
updatedAt: string | Date;
|
|
5943
|
-
name: string;
|
|
5944
5944
|
}>>>;
|
|
5945
5945
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
5946
5946
|
id: z.ZodString;
|
|
@@ -5978,14 +5978,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5978
5978
|
}>>>;
|
|
5979
5979
|
}, "strip", z.ZodTypeAny, {
|
|
5980
5980
|
id: string;
|
|
5981
|
-
status: "
|
|
5981
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5982
|
+
name: string;
|
|
5983
|
+
director: string;
|
|
5982
5984
|
createdAt: string;
|
|
5983
5985
|
updatedAt: string;
|
|
5984
|
-
name: string;
|
|
5985
5986
|
crn: string | null;
|
|
5986
5987
|
govLink: string;
|
|
5987
5988
|
soleTrader: boolean;
|
|
5988
|
-
director: string;
|
|
5989
5989
|
blacklistReason?: string | null | undefined;
|
|
5990
5990
|
lastUpdatedBy?: {
|
|
5991
5991
|
id: string;
|
|
@@ -5998,14 +5998,14 @@ export declare const collaborationsContractRouter: {
|
|
|
5998
5998
|
} | null | undefined;
|
|
5999
5999
|
}, {
|
|
6000
6000
|
id: string;
|
|
6001
|
-
status: "
|
|
6001
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6002
|
+
name: string;
|
|
6003
|
+
director: string;
|
|
6002
6004
|
createdAt: string | Date;
|
|
6003
6005
|
updatedAt: string | Date;
|
|
6004
|
-
name: string;
|
|
6005
6006
|
crn: string | null;
|
|
6006
6007
|
govLink: string;
|
|
6007
6008
|
soleTrader: boolean;
|
|
6008
|
-
director: string;
|
|
6009
6009
|
blacklistReason?: string | null | undefined;
|
|
6010
6010
|
lastUpdatedBy?: {
|
|
6011
6011
|
id: string;
|
|
@@ -6085,20 +6085,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6085
6085
|
userId: string;
|
|
6086
6086
|
company?: {
|
|
6087
6087
|
id: string;
|
|
6088
|
+
name: string;
|
|
6088
6089
|
createdAt: string;
|
|
6089
6090
|
updatedAt: string;
|
|
6090
|
-
name: string;
|
|
6091
6091
|
} | null | undefined;
|
|
6092
6092
|
client?: {
|
|
6093
6093
|
id: string;
|
|
6094
|
-
status: "
|
|
6094
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6095
|
+
name: string;
|
|
6096
|
+
director: string;
|
|
6095
6097
|
createdAt: string;
|
|
6096
6098
|
updatedAt: string;
|
|
6097
|
-
name: string;
|
|
6098
6099
|
crn: string | null;
|
|
6099
6100
|
govLink: string;
|
|
6100
6101
|
soleTrader: boolean;
|
|
6101
|
-
director: string;
|
|
6102
6102
|
blacklistReason?: string | null | undefined;
|
|
6103
6103
|
lastUpdatedBy?: {
|
|
6104
6104
|
id: string;
|
|
@@ -6134,20 +6134,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6134
6134
|
userId: string;
|
|
6135
6135
|
company?: {
|
|
6136
6136
|
id: string;
|
|
6137
|
+
name: string;
|
|
6137
6138
|
createdAt: string | Date;
|
|
6138
6139
|
updatedAt: string | Date;
|
|
6139
|
-
name: string;
|
|
6140
6140
|
} | null | undefined;
|
|
6141
6141
|
client?: {
|
|
6142
6142
|
id: string;
|
|
6143
|
-
status: "
|
|
6143
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6144
|
+
name: string;
|
|
6145
|
+
director: string;
|
|
6144
6146
|
createdAt: string | Date;
|
|
6145
6147
|
updatedAt: string | Date;
|
|
6146
|
-
name: string;
|
|
6147
6148
|
crn: string | null;
|
|
6148
6149
|
govLink: string;
|
|
6149
6150
|
soleTrader: boolean;
|
|
6150
|
-
director: string;
|
|
6151
6151
|
blacklistReason?: string | null | undefined;
|
|
6152
6152
|
lastUpdatedBy?: {
|
|
6153
6153
|
id: string;
|
|
@@ -6184,20 +6184,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6184
6184
|
userId: string;
|
|
6185
6185
|
company?: {
|
|
6186
6186
|
id: string;
|
|
6187
|
+
name: string;
|
|
6187
6188
|
createdAt: string;
|
|
6188
6189
|
updatedAt: string;
|
|
6189
|
-
name: string;
|
|
6190
6190
|
} | null | undefined;
|
|
6191
6191
|
client?: {
|
|
6192
6192
|
id: string;
|
|
6193
|
-
status: "
|
|
6193
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6194
|
+
name: string;
|
|
6195
|
+
director: string;
|
|
6194
6196
|
createdAt: string;
|
|
6195
6197
|
updatedAt: string;
|
|
6196
|
-
name: string;
|
|
6197
6198
|
crn: string | null;
|
|
6198
6199
|
govLink: string;
|
|
6199
6200
|
soleTrader: boolean;
|
|
6200
|
-
director: string;
|
|
6201
6201
|
blacklistReason?: string | null | undefined;
|
|
6202
6202
|
lastUpdatedBy?: {
|
|
6203
6203
|
id: string;
|
|
@@ -6233,20 +6233,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6233
6233
|
userId: string;
|
|
6234
6234
|
company?: {
|
|
6235
6235
|
id: string;
|
|
6236
|
+
name: string;
|
|
6236
6237
|
createdAt: string;
|
|
6237
6238
|
updatedAt: string;
|
|
6238
|
-
name: string;
|
|
6239
6239
|
} | null | undefined;
|
|
6240
6240
|
client?: {
|
|
6241
6241
|
id: string;
|
|
6242
|
-
status: "
|
|
6242
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6243
|
+
name: string;
|
|
6244
|
+
director: string;
|
|
6243
6245
|
createdAt: string;
|
|
6244
6246
|
updatedAt: string;
|
|
6245
|
-
name: string;
|
|
6246
6247
|
crn: string | null;
|
|
6247
6248
|
govLink: string;
|
|
6248
6249
|
soleTrader: boolean;
|
|
6249
|
-
director: string;
|
|
6250
6250
|
blacklistReason?: string | null | undefined;
|
|
6251
6251
|
lastUpdatedBy?: {
|
|
6252
6252
|
id: string;
|
|
@@ -6283,20 +6283,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6283
6283
|
userId: string;
|
|
6284
6284
|
company?: {
|
|
6285
6285
|
id: string;
|
|
6286
|
+
name: string;
|
|
6286
6287
|
createdAt: string | Date;
|
|
6287
6288
|
updatedAt: string | Date;
|
|
6288
|
-
name: string;
|
|
6289
6289
|
} | null | undefined;
|
|
6290
6290
|
client?: {
|
|
6291
6291
|
id: string;
|
|
6292
|
-
status: "
|
|
6292
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6293
|
+
name: string;
|
|
6294
|
+
director: string;
|
|
6293
6295
|
createdAt: string | Date;
|
|
6294
6296
|
updatedAt: string | Date;
|
|
6295
|
-
name: string;
|
|
6296
6297
|
crn: string | null;
|
|
6297
6298
|
govLink: string;
|
|
6298
6299
|
soleTrader: boolean;
|
|
6299
|
-
director: string;
|
|
6300
6300
|
blacklistReason?: string | null | undefined;
|
|
6301
6301
|
lastUpdatedBy?: {
|
|
6302
6302
|
id: string;
|
|
@@ -6332,20 +6332,20 @@ export declare const collaborationsContractRouter: {
|
|
|
6332
6332
|
userId: string;
|
|
6333
6333
|
company?: {
|
|
6334
6334
|
id: string;
|
|
6335
|
+
name: string;
|
|
6335
6336
|
createdAt: string | Date;
|
|
6336
6337
|
updatedAt: string | Date;
|
|
6337
|
-
name: string;
|
|
6338
6338
|
} | null | undefined;
|
|
6339
6339
|
client?: {
|
|
6340
6340
|
id: string;
|
|
6341
|
-
status: "
|
|
6341
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
6342
|
+
name: string;
|
|
6343
|
+
director: string;
|
|
6342
6344
|
createdAt: string | Date;
|
|
6343
6345
|
updatedAt: string | Date;
|
|
6344
|
-
name: string;
|
|
6345
6346
|
crn: string | null;
|
|
6346
6347
|
govLink: string;
|
|
6347
6348
|
soleTrader: boolean;
|
|
6348
|
-
director: string;
|
|
6349
6349
|
blacklistReason?: string | null | undefined;
|
|
6350
6350
|
lastUpdatedBy?: {
|
|
6351
6351
|
id: string;
|