@dakkitor/api-contracts 1.1.28 → 1.1.29
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 +1856 -1914
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/agent-client-links/agent-client-links.contract.d.ts +419 -419
- package/dist/auth/auth.contract.d.ts +4 -4
- package/dist/bookings/bookings.contract.d.ts +1481 -1534
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.d.ts +2 -14
- package/dist/call-history/call-history.contract.d.ts.map +1 -1
- package/dist/call-history/call-history.contract.js +8 -24
- package/dist/client-contacts/client-contacts.contract.d.ts +356 -319
- package/dist/client-contacts/client-contacts.contract.d.ts.map +1 -1
- package/dist/client-contacts/client-contacts.contract.js +4 -1
- package/dist/common/call-rating.schema.d.ts +31 -0
- package/dist/common/call-rating.schema.d.ts.map +1 -0
- package/dist/common/call-rating.schema.js +63 -0
- package/dist/common/common-schemas.js +2 -2
- package/dist/curated-workers/curated-workers.contract.d.ts +8 -8
- package/dist/curated-workers/curated-workers.contract.d.ts.map +1 -1
- package/dist/curated-workers/curated-workers.contract.js +2 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/jobs/jobs.contract.d.ts +629 -629
- package/dist/jobs/jobs.contract.js +1 -1
- package/dist/lead-assignments/lead-assignments.contract.d.ts +6 -6
- package/dist/lead-assignments/lead-assignments.contract.js +2 -2
- package/dist/lead-distribution/agent-lead-distribution.contract.d.ts +63 -63
- package/dist/leads/leads.contract.d.ts +9 -9
- package/dist/users/users.contract.d.ts +108 -108
- package/dist/users/users.contract.d.ts.map +1 -1
- package/dist/users/users.contract.js +2 -3
- package/dist/workers/workers.contract.d.ts +130 -205
- package/dist/workers/workers.contract.d.ts.map +1 -1
- package/dist/workers/workers.contract.js +2 -8
- package/package.json +1 -1
|
@@ -18,13 +18,13 @@ export declare const PaySchema: z.ZodObject<{
|
|
|
18
18
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
19
19
|
receivedRate: z.ZodNumber;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
|
-
rate: number;
|
|
22
21
|
rateUnit: "DAILY" | "HOURLY";
|
|
22
|
+
rate: number;
|
|
23
23
|
receivedRate: number;
|
|
24
24
|
rateMax?: number | null | undefined;
|
|
25
25
|
}, {
|
|
26
|
-
rate: number;
|
|
27
26
|
rateUnit: "DAILY" | "HOURLY";
|
|
27
|
+
rate: number;
|
|
28
28
|
receivedRate: number;
|
|
29
29
|
rateMax?: number | null | undefined;
|
|
30
30
|
}>;
|
|
@@ -34,8 +34,8 @@ export declare const CreatePaySchema: z.ZodObject<{
|
|
|
34
34
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
35
35
|
receivedRate: z.ZodNumber;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
rate: number;
|
|
38
37
|
rateUnit: "DAILY" | "HOURLY";
|
|
38
|
+
rate: number;
|
|
39
39
|
receivedRate: number;
|
|
40
40
|
rateMax?: number | null | undefined;
|
|
41
41
|
}, {
|
|
@@ -89,13 +89,13 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
89
89
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
90
90
|
receivedRate: z.ZodNumber;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
|
-
rate: number;
|
|
93
92
|
rateUnit: "DAILY" | "HOURLY";
|
|
93
|
+
rate: number;
|
|
94
94
|
receivedRate: number;
|
|
95
95
|
rateMax?: number | null | undefined;
|
|
96
96
|
}, {
|
|
97
|
-
rate: number;
|
|
98
97
|
rateUnit: "DAILY" | "HOURLY";
|
|
98
|
+
rate: number;
|
|
99
99
|
receivedRate: number;
|
|
100
100
|
rateMax?: number | null | undefined;
|
|
101
101
|
}>;
|
|
@@ -146,14 +146,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
146
146
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
147
147
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
148
148
|
}, "strip", z.ZodTypeAny, {
|
|
149
|
-
id: string;
|
|
150
149
|
createdAt: string;
|
|
151
150
|
updatedAt: string;
|
|
151
|
+
id: string;
|
|
152
152
|
name: string;
|
|
153
153
|
}, {
|
|
154
|
-
id: string;
|
|
155
154
|
createdAt: string | Date;
|
|
156
155
|
updatedAt: string | Date;
|
|
156
|
+
id: string;
|
|
157
157
|
name: string;
|
|
158
158
|
}>>>;
|
|
159
159
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -190,10 +190,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
190
190
|
agentId: string;
|
|
191
191
|
}>>>;
|
|
192
192
|
}, "strip", z.ZodTypeAny, {
|
|
193
|
-
status: "
|
|
194
|
-
id: string;
|
|
193
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
195
194
|
createdAt: string;
|
|
196
195
|
updatedAt: string;
|
|
196
|
+
id: string;
|
|
197
197
|
name: string;
|
|
198
198
|
crn: string;
|
|
199
199
|
govLink: string;
|
|
@@ -209,10 +209,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
209
209
|
agentId: string;
|
|
210
210
|
} | null | undefined;
|
|
211
211
|
}, {
|
|
212
|
-
status: "
|
|
213
|
-
id: string;
|
|
212
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
214
213
|
createdAt: string | Date;
|
|
215
214
|
updatedAt: string | Date;
|
|
215
|
+
id: string;
|
|
216
216
|
name: string;
|
|
217
217
|
crn: string;
|
|
218
218
|
govLink: string;
|
|
@@ -257,14 +257,14 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
257
257
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
258
258
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
259
259
|
}, "strip", z.ZodTypeAny, {
|
|
260
|
-
id: string;
|
|
261
260
|
createdAt: string;
|
|
262
261
|
updatedAt: string;
|
|
262
|
+
id: string;
|
|
263
263
|
name: string;
|
|
264
264
|
}, {
|
|
265
|
-
id: string;
|
|
266
265
|
createdAt: string | Date;
|
|
267
266
|
updatedAt: string | Date;
|
|
267
|
+
id: string;
|
|
268
268
|
name: string;
|
|
269
269
|
}>>>;
|
|
270
270
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -301,10 +301,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
301
301
|
agentId: string;
|
|
302
302
|
}>>>;
|
|
303
303
|
}, "strip", z.ZodTypeAny, {
|
|
304
|
-
status: "
|
|
305
|
-
id: string;
|
|
304
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
306
305
|
createdAt: string;
|
|
307
306
|
updatedAt: string;
|
|
307
|
+
id: string;
|
|
308
308
|
name: string;
|
|
309
309
|
crn: string;
|
|
310
310
|
govLink: string;
|
|
@@ -320,10 +320,10 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
320
320
|
agentId: string;
|
|
321
321
|
} | null | undefined;
|
|
322
322
|
}, {
|
|
323
|
-
status: "
|
|
324
|
-
id: string;
|
|
323
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
325
324
|
createdAt: string | Date;
|
|
326
325
|
updatedAt: string | Date;
|
|
326
|
+
id: string;
|
|
327
327
|
name: string;
|
|
328
328
|
crn: string;
|
|
329
329
|
govLink: string;
|
|
@@ -360,22 +360,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
360
360
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
361
361
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
362
362
|
}, "strip", z.ZodTypeAny, {
|
|
363
|
-
status: "
|
|
364
|
-
id: string;
|
|
363
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
365
364
|
createdAt: string;
|
|
366
365
|
updatedAt: string;
|
|
366
|
+
id: string;
|
|
367
367
|
userId: string;
|
|
368
368
|
company?: {
|
|
369
|
-
id: string;
|
|
370
369
|
createdAt: string;
|
|
371
370
|
updatedAt: string;
|
|
371
|
+
id: string;
|
|
372
372
|
name: string;
|
|
373
373
|
} | null | undefined;
|
|
374
374
|
client?: {
|
|
375
|
-
status: "
|
|
376
|
-
id: string;
|
|
375
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
377
376
|
createdAt: string;
|
|
378
377
|
updatedAt: string;
|
|
378
|
+
id: string;
|
|
379
379
|
name: string;
|
|
380
380
|
crn: string;
|
|
381
381
|
govLink: string;
|
|
@@ -398,22 +398,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
398
398
|
email: string;
|
|
399
399
|
} | null | undefined;
|
|
400
400
|
}, {
|
|
401
|
-
status: "
|
|
402
|
-
id: string;
|
|
401
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
403
402
|
createdAt: string | Date;
|
|
404
403
|
updatedAt: string | Date;
|
|
404
|
+
id: string;
|
|
405
405
|
userId: string;
|
|
406
406
|
company?: {
|
|
407
|
-
id: string;
|
|
408
407
|
createdAt: string | Date;
|
|
409
408
|
updatedAt: string | Date;
|
|
409
|
+
id: string;
|
|
410
410
|
name: string;
|
|
411
411
|
} | null | undefined;
|
|
412
412
|
client?: {
|
|
413
|
-
status: "
|
|
414
|
-
id: string;
|
|
413
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
415
414
|
createdAt: string | Date;
|
|
416
415
|
updatedAt: string | Date;
|
|
416
|
+
id: string;
|
|
417
417
|
name: string;
|
|
418
418
|
crn: string;
|
|
419
419
|
govLink: string;
|
|
@@ -437,22 +437,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
437
437
|
} | null | undefined;
|
|
438
438
|
}>>>;
|
|
439
439
|
}, "strip", z.ZodTypeAny, {
|
|
440
|
-
status: "
|
|
441
|
-
id: string;
|
|
440
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
442
441
|
createdAt: string;
|
|
443
442
|
updatedAt: string;
|
|
443
|
+
id: string;
|
|
444
444
|
userId: string;
|
|
445
445
|
company?: {
|
|
446
|
-
id: string;
|
|
447
446
|
createdAt: string;
|
|
448
447
|
updatedAt: string;
|
|
448
|
+
id: string;
|
|
449
449
|
name: string;
|
|
450
450
|
} | null | undefined;
|
|
451
451
|
client?: {
|
|
452
|
-
status: "
|
|
453
|
-
id: string;
|
|
452
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
454
453
|
createdAt: string;
|
|
455
454
|
updatedAt: string;
|
|
455
|
+
id: string;
|
|
456
456
|
name: string;
|
|
457
457
|
crn: string;
|
|
458
458
|
govLink: string;
|
|
@@ -475,22 +475,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
475
475
|
email: string;
|
|
476
476
|
} | null | undefined;
|
|
477
477
|
newCollaboration?: {
|
|
478
|
-
status: "
|
|
479
|
-
id: string;
|
|
478
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
480
479
|
createdAt: string;
|
|
481
480
|
updatedAt: string;
|
|
481
|
+
id: string;
|
|
482
482
|
userId: string;
|
|
483
483
|
company?: {
|
|
484
|
-
id: string;
|
|
485
484
|
createdAt: string;
|
|
486
485
|
updatedAt: string;
|
|
486
|
+
id: string;
|
|
487
487
|
name: string;
|
|
488
488
|
} | null | undefined;
|
|
489
489
|
client?: {
|
|
490
|
-
status: "
|
|
491
|
-
id: string;
|
|
490
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
492
491
|
createdAt: string;
|
|
493
492
|
updatedAt: string;
|
|
493
|
+
id: string;
|
|
494
494
|
name: string;
|
|
495
495
|
crn: string;
|
|
496
496
|
govLink: string;
|
|
@@ -514,22 +514,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
514
514
|
} | null | undefined;
|
|
515
515
|
} | null | undefined;
|
|
516
516
|
}, {
|
|
517
|
-
status: "
|
|
518
|
-
id: string;
|
|
517
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
519
518
|
createdAt: string | Date;
|
|
520
519
|
updatedAt: string | Date;
|
|
520
|
+
id: string;
|
|
521
521
|
userId: string;
|
|
522
522
|
company?: {
|
|
523
|
-
id: string;
|
|
524
523
|
createdAt: string | Date;
|
|
525
524
|
updatedAt: string | Date;
|
|
525
|
+
id: string;
|
|
526
526
|
name: string;
|
|
527
527
|
} | null | undefined;
|
|
528
528
|
client?: {
|
|
529
|
-
status: "
|
|
530
|
-
id: string;
|
|
529
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
531
530
|
createdAt: string | Date;
|
|
532
531
|
updatedAt: string | Date;
|
|
532
|
+
id: string;
|
|
533
533
|
name: string;
|
|
534
534
|
crn: string;
|
|
535
535
|
govLink: string;
|
|
@@ -552,22 +552,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
552
552
|
email: string;
|
|
553
553
|
} | null | undefined;
|
|
554
554
|
newCollaboration?: {
|
|
555
|
-
status: "
|
|
556
|
-
id: string;
|
|
555
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
557
556
|
createdAt: string | Date;
|
|
558
557
|
updatedAt: string | Date;
|
|
558
|
+
id: string;
|
|
559
559
|
userId: string;
|
|
560
560
|
company?: {
|
|
561
|
-
id: string;
|
|
562
561
|
createdAt: string | Date;
|
|
563
562
|
updatedAt: string | Date;
|
|
563
|
+
id: string;
|
|
564
564
|
name: string;
|
|
565
565
|
} | null | undefined;
|
|
566
566
|
client?: {
|
|
567
|
-
status: "
|
|
568
|
-
id: string;
|
|
567
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
569
568
|
createdAt: string | Date;
|
|
570
569
|
updatedAt: string | Date;
|
|
570
|
+
id: string;
|
|
571
571
|
name: string;
|
|
572
572
|
crn: string;
|
|
573
573
|
govLink: string;
|
|
@@ -594,24 +594,25 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
594
594
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
595
595
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
596
596
|
}, "strip", z.ZodTypeAny, {
|
|
597
|
-
|
|
598
|
-
|
|
597
|
+
description: string;
|
|
598
|
+
numberOfPositions: number;
|
|
599
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
599
600
|
createdAt: string;
|
|
600
601
|
updatedAt: string;
|
|
601
|
-
|
|
602
|
-
tradeId: string;
|
|
602
|
+
id: string;
|
|
603
603
|
pay: {
|
|
604
|
-
rate: number;
|
|
605
604
|
rateUnit: "DAILY" | "HOURLY";
|
|
605
|
+
rate: number;
|
|
606
606
|
receivedRate: number;
|
|
607
607
|
rateMax?: number | null | undefined;
|
|
608
608
|
};
|
|
609
|
-
|
|
609
|
+
tradeId: string;
|
|
610
610
|
jobQualifications: {
|
|
611
611
|
id: string;
|
|
612
612
|
qualificationId: string;
|
|
613
613
|
qualificationTypeId?: string | null | undefined;
|
|
614
614
|
}[];
|
|
615
|
+
workHours?: number | null | undefined;
|
|
615
616
|
location?: {
|
|
616
617
|
address?: string | null | undefined;
|
|
617
618
|
postcode?: string | null | undefined;
|
|
@@ -621,24 +622,23 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
621
622
|
postTown?: string | null | undefined;
|
|
622
623
|
areaCovered?: string | null | undefined;
|
|
623
624
|
} | null | undefined;
|
|
624
|
-
workHours?: number | null | undefined;
|
|
625
625
|
currentCollaboration?: {
|
|
626
|
-
status: "
|
|
627
|
-
id: string;
|
|
626
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
628
627
|
createdAt: string;
|
|
629
628
|
updatedAt: string;
|
|
629
|
+
id: string;
|
|
630
630
|
userId: string;
|
|
631
631
|
company?: {
|
|
632
|
-
id: string;
|
|
633
632
|
createdAt: string;
|
|
634
633
|
updatedAt: string;
|
|
634
|
+
id: string;
|
|
635
635
|
name: string;
|
|
636
636
|
} | null | undefined;
|
|
637
637
|
client?: {
|
|
638
|
-
status: "
|
|
639
|
-
id: string;
|
|
638
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
640
639
|
createdAt: string;
|
|
641
640
|
updatedAt: string;
|
|
641
|
+
id: string;
|
|
642
642
|
name: string;
|
|
643
643
|
crn: string;
|
|
644
644
|
govLink: string;
|
|
@@ -661,22 +661,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
661
661
|
email: string;
|
|
662
662
|
} | null | undefined;
|
|
663
663
|
newCollaboration?: {
|
|
664
|
-
status: "
|
|
665
|
-
id: string;
|
|
664
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
666
665
|
createdAt: string;
|
|
667
666
|
updatedAt: string;
|
|
667
|
+
id: string;
|
|
668
668
|
userId: string;
|
|
669
669
|
company?: {
|
|
670
|
-
id: string;
|
|
671
670
|
createdAt: string;
|
|
672
671
|
updatedAt: string;
|
|
672
|
+
id: string;
|
|
673
673
|
name: string;
|
|
674
674
|
} | null | undefined;
|
|
675
675
|
client?: {
|
|
676
|
-
status: "
|
|
677
|
-
id: string;
|
|
676
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
678
677
|
createdAt: string;
|
|
679
678
|
updatedAt: string;
|
|
679
|
+
id: string;
|
|
680
680
|
name: string;
|
|
681
681
|
crn: string;
|
|
682
682
|
govLink: string;
|
|
@@ -701,19 +701,20 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
701
701
|
} | null | undefined;
|
|
702
702
|
} | null | undefined;
|
|
703
703
|
}, {
|
|
704
|
-
|
|
705
|
-
|
|
704
|
+
description: string;
|
|
705
|
+
numberOfPositions: number;
|
|
706
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
706
707
|
createdAt: string | Date;
|
|
707
708
|
updatedAt: string | Date;
|
|
708
|
-
|
|
709
|
-
tradeId: string;
|
|
709
|
+
id: string;
|
|
710
710
|
pay: {
|
|
711
|
-
rate: number;
|
|
712
711
|
rateUnit: "DAILY" | "HOURLY";
|
|
712
|
+
rate: number;
|
|
713
713
|
receivedRate: number;
|
|
714
714
|
rateMax?: number | null | undefined;
|
|
715
715
|
};
|
|
716
|
-
|
|
716
|
+
tradeId: string;
|
|
717
|
+
workHours?: number | null | undefined;
|
|
717
718
|
location?: {
|
|
718
719
|
address?: string | null | undefined;
|
|
719
720
|
postcode?: string | null | undefined;
|
|
@@ -723,29 +724,28 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
723
724
|
postTown?: string | null | undefined;
|
|
724
725
|
areaCovered?: string | null | undefined;
|
|
725
726
|
} | null | undefined;
|
|
726
|
-
workHours?: number | null | undefined;
|
|
727
727
|
jobQualifications?: {
|
|
728
728
|
id: string;
|
|
729
729
|
qualificationId: string;
|
|
730
730
|
qualificationTypeId?: string | null | undefined;
|
|
731
731
|
}[] | undefined;
|
|
732
732
|
currentCollaboration?: {
|
|
733
|
-
status: "
|
|
734
|
-
id: string;
|
|
733
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
735
734
|
createdAt: string | Date;
|
|
736
735
|
updatedAt: string | Date;
|
|
736
|
+
id: string;
|
|
737
737
|
userId: string;
|
|
738
738
|
company?: {
|
|
739
|
-
id: string;
|
|
740
739
|
createdAt: string | Date;
|
|
741
740
|
updatedAt: string | Date;
|
|
741
|
+
id: string;
|
|
742
742
|
name: string;
|
|
743
743
|
} | null | undefined;
|
|
744
744
|
client?: {
|
|
745
|
-
status: "
|
|
746
|
-
id: string;
|
|
745
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
747
746
|
createdAt: string | Date;
|
|
748
747
|
updatedAt: string | Date;
|
|
748
|
+
id: string;
|
|
749
749
|
name: string;
|
|
750
750
|
crn: string;
|
|
751
751
|
govLink: string;
|
|
@@ -768,22 +768,22 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
768
768
|
email: string;
|
|
769
769
|
} | null | undefined;
|
|
770
770
|
newCollaboration?: {
|
|
771
|
-
status: "
|
|
772
|
-
id: string;
|
|
771
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
773
772
|
createdAt: string | Date;
|
|
774
773
|
updatedAt: string | Date;
|
|
774
|
+
id: string;
|
|
775
775
|
userId: string;
|
|
776
776
|
company?: {
|
|
777
|
-
id: string;
|
|
778
777
|
createdAt: string | Date;
|
|
779
778
|
updatedAt: string | Date;
|
|
779
|
+
id: string;
|
|
780
780
|
name: string;
|
|
781
781
|
} | null | undefined;
|
|
782
782
|
client?: {
|
|
783
|
-
status: "
|
|
784
|
-
id: string;
|
|
783
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
785
784
|
createdAt: string | Date;
|
|
786
785
|
updatedAt: string | Date;
|
|
786
|
+
id: string;
|
|
787
787
|
name: string;
|
|
788
788
|
crn: string;
|
|
789
789
|
govLink: string;
|
|
@@ -831,8 +831,8 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
831
831
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
832
832
|
receivedRate: z.ZodNumber;
|
|
833
833
|
}, "strip", z.ZodTypeAny, {
|
|
834
|
-
rate: number;
|
|
835
834
|
rateUnit: "DAILY" | "HOURLY";
|
|
835
|
+
rate: number;
|
|
836
836
|
receivedRate: number;
|
|
837
837
|
rateMax?: number | null | undefined;
|
|
838
838
|
}, {
|
|
@@ -861,47 +861,47 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
861
861
|
}>, "many">>;
|
|
862
862
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
863
863
|
}, "strip", z.ZodTypeAny, {
|
|
864
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
865
864
|
description: string;
|
|
866
|
-
|
|
865
|
+
numberOfPositions: number;
|
|
866
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
867
867
|
pay: {
|
|
868
|
-
rate: number;
|
|
869
868
|
rateUnit: "DAILY" | "HOURLY";
|
|
869
|
+
rate: number;
|
|
870
870
|
receivedRate: number;
|
|
871
871
|
rateMax?: number | null | undefined;
|
|
872
872
|
};
|
|
873
|
-
|
|
873
|
+
tradeId: string;
|
|
874
874
|
currentCollaboration: {
|
|
875
875
|
id: string;
|
|
876
876
|
};
|
|
877
|
+
workHours?: number | undefined;
|
|
877
878
|
location?: {
|
|
878
879
|
address?: string | null | undefined;
|
|
879
880
|
postcode?: string | null | undefined;
|
|
880
881
|
} | undefined;
|
|
881
|
-
workHours?: number | undefined;
|
|
882
882
|
jobQualifications?: {
|
|
883
883
|
qualificationId: string;
|
|
884
884
|
qualificationTypeId?: string | null | undefined;
|
|
885
885
|
}[] | undefined;
|
|
886
886
|
}, {
|
|
887
887
|
description: string;
|
|
888
|
-
|
|
888
|
+
numberOfPositions: number;
|
|
889
889
|
pay: {
|
|
890
890
|
rate: number;
|
|
891
891
|
receivedRate: number;
|
|
892
892
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
893
893
|
rateMax?: number | null | undefined;
|
|
894
894
|
};
|
|
895
|
-
|
|
895
|
+
tradeId: string;
|
|
896
896
|
currentCollaboration: {
|
|
897
897
|
id: string;
|
|
898
898
|
};
|
|
899
|
-
status?: "
|
|
899
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
900
|
+
workHours?: number | undefined;
|
|
900
901
|
location?: {
|
|
901
902
|
address?: string | null | undefined;
|
|
902
903
|
postcode?: string | null | undefined;
|
|
903
904
|
} | undefined;
|
|
904
|
-
workHours?: number | undefined;
|
|
905
905
|
jobQualifications?: {
|
|
906
906
|
qualificationId: string;
|
|
907
907
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -930,8 +930,8 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
930
930
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
931
931
|
receivedRate: z.ZodNumber;
|
|
932
932
|
}, "strip", z.ZodTypeAny, {
|
|
933
|
-
rate: number;
|
|
934
933
|
rateUnit: "DAILY" | "HOURLY";
|
|
934
|
+
rate: number;
|
|
935
935
|
receivedRate: number;
|
|
936
936
|
rateMax?: number | null | undefined;
|
|
937
937
|
}, {
|
|
@@ -960,21 +960,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
960
960
|
}>, "many">>;
|
|
961
961
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
962
962
|
}, "strip", z.ZodTypeAny, {
|
|
963
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
964
963
|
description?: string | undefined;
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
postcode?: string | null | undefined;
|
|
969
|
-
} | undefined;
|
|
964
|
+
numberOfPositions?: number | undefined;
|
|
965
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
966
|
+
workHours?: number | undefined;
|
|
970
967
|
pay?: {
|
|
971
|
-
rate: number;
|
|
972
968
|
rateUnit: "DAILY" | "HOURLY";
|
|
969
|
+
rate: number;
|
|
973
970
|
receivedRate: number;
|
|
974
971
|
rateMax?: number | null | undefined;
|
|
975
972
|
} | undefined;
|
|
976
|
-
|
|
977
|
-
|
|
973
|
+
location?: {
|
|
974
|
+
address?: string | null | undefined;
|
|
975
|
+
postcode?: string | null | undefined;
|
|
976
|
+
} | undefined;
|
|
977
|
+
tradeId?: string | undefined;
|
|
978
978
|
jobQualifications?: {
|
|
979
979
|
qualificationId: string;
|
|
980
980
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -983,21 +983,21 @@ export declare const UpdateJobSchema: z.ZodObject<{
|
|
|
983
983
|
id: string;
|
|
984
984
|
} | undefined;
|
|
985
985
|
}, {
|
|
986
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
987
986
|
description?: string | undefined;
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
postcode?: string | null | undefined;
|
|
992
|
-
} | undefined;
|
|
987
|
+
numberOfPositions?: number | undefined;
|
|
988
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
989
|
+
workHours?: number | undefined;
|
|
993
990
|
pay?: {
|
|
994
991
|
rate: number;
|
|
995
992
|
receivedRate: number;
|
|
996
993
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
997
994
|
rateMax?: number | null | undefined;
|
|
998
995
|
} | undefined;
|
|
999
|
-
|
|
1000
|
-
|
|
996
|
+
location?: {
|
|
997
|
+
address?: string | null | undefined;
|
|
998
|
+
postcode?: string | null | undefined;
|
|
999
|
+
} | undefined;
|
|
1000
|
+
tradeId?: string | undefined;
|
|
1001
1001
|
jobQualifications?: {
|
|
1002
1002
|
qualificationId: string;
|
|
1003
1003
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -1042,37 +1042,37 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1042
1042
|
}, "strip", z.ZodTypeAny, {
|
|
1043
1043
|
limit: number;
|
|
1044
1044
|
page: number;
|
|
1045
|
-
status?: "
|
|
1046
|
-
postcode?: string | null | undefined;
|
|
1045
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
1047
1046
|
createdAt?: {
|
|
1048
1047
|
from?: string | null | undefined;
|
|
1049
1048
|
to?: string | null | undefined;
|
|
1050
1049
|
} | null | undefined;
|
|
1051
|
-
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
1052
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1053
|
-
distance?: number | null | undefined;
|
|
1054
|
-
tradeId?: string | null | undefined;
|
|
1055
1050
|
pay?: {
|
|
1056
1051
|
minRate?: number | null | undefined;
|
|
1057
1052
|
maxRate?: number | null | undefined;
|
|
1058
1053
|
} | null | undefined;
|
|
1059
|
-
}, {
|
|
1060
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
1061
1054
|
postcode?: string | null | undefined;
|
|
1055
|
+
tradeId?: string | null | undefined;
|
|
1056
|
+
distance?: number | null | undefined;
|
|
1057
|
+
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
1058
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1059
|
+
}, {
|
|
1060
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
1062
1061
|
createdAt?: {
|
|
1063
1062
|
from?: string | null | undefined;
|
|
1064
1063
|
to?: string | null | undefined;
|
|
1065
1064
|
} | null | undefined;
|
|
1066
|
-
limit?: number | undefined;
|
|
1067
|
-
page?: number | undefined;
|
|
1068
|
-
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
1069
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1070
|
-
distance?: number | null | undefined;
|
|
1071
|
-
tradeId?: string | null | undefined;
|
|
1072
1065
|
pay?: {
|
|
1073
1066
|
minRate?: number | null | undefined;
|
|
1074
1067
|
maxRate?: number | null | undefined;
|
|
1075
1068
|
} | null | undefined;
|
|
1069
|
+
postcode?: string | null | undefined;
|
|
1070
|
+
tradeId?: string | null | undefined;
|
|
1071
|
+
limit?: number | undefined;
|
|
1072
|
+
page?: number | undefined;
|
|
1073
|
+
distance?: number | null | undefined;
|
|
1074
|
+
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
1075
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1076
1076
|
}>;
|
|
1077
1077
|
export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
1078
1078
|
items: z.ZodArray<z.ZodObject<{
|
|
@@ -1087,13 +1087,13 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1087
1087
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
1088
1088
|
receivedRate: z.ZodNumber;
|
|
1089
1089
|
}, "strip", z.ZodTypeAny, {
|
|
1090
|
-
rate: number;
|
|
1091
1090
|
rateUnit: "DAILY" | "HOURLY";
|
|
1091
|
+
rate: number;
|
|
1092
1092
|
receivedRate: number;
|
|
1093
1093
|
rateMax?: number | null | undefined;
|
|
1094
1094
|
}, {
|
|
1095
|
-
rate: number;
|
|
1096
1095
|
rateUnit: "DAILY" | "HOURLY";
|
|
1096
|
+
rate: number;
|
|
1097
1097
|
receivedRate: number;
|
|
1098
1098
|
rateMax?: number | null | undefined;
|
|
1099
1099
|
}>;
|
|
@@ -1144,14 +1144,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1144
1144
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1145
1145
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1146
1146
|
}, "strip", z.ZodTypeAny, {
|
|
1147
|
-
id: string;
|
|
1148
1147
|
createdAt: string;
|
|
1149
1148
|
updatedAt: string;
|
|
1149
|
+
id: string;
|
|
1150
1150
|
name: string;
|
|
1151
1151
|
}, {
|
|
1152
|
-
id: string;
|
|
1153
1152
|
createdAt: string | Date;
|
|
1154
1153
|
updatedAt: string | Date;
|
|
1154
|
+
id: string;
|
|
1155
1155
|
name: string;
|
|
1156
1156
|
}>>>;
|
|
1157
1157
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1188,10 +1188,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1188
1188
|
agentId: string;
|
|
1189
1189
|
}>>>;
|
|
1190
1190
|
}, "strip", z.ZodTypeAny, {
|
|
1191
|
-
status: "
|
|
1192
|
-
id: string;
|
|
1191
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1193
1192
|
createdAt: string;
|
|
1194
1193
|
updatedAt: string;
|
|
1194
|
+
id: string;
|
|
1195
1195
|
name: string;
|
|
1196
1196
|
crn: string;
|
|
1197
1197
|
govLink: string;
|
|
@@ -1207,10 +1207,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1207
1207
|
agentId: string;
|
|
1208
1208
|
} | null | undefined;
|
|
1209
1209
|
}, {
|
|
1210
|
-
status: "
|
|
1211
|
-
id: string;
|
|
1210
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1212
1211
|
createdAt: string | Date;
|
|
1213
1212
|
updatedAt: string | Date;
|
|
1213
|
+
id: string;
|
|
1214
1214
|
name: string;
|
|
1215
1215
|
crn: string;
|
|
1216
1216
|
govLink: string;
|
|
@@ -1255,14 +1255,14 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1255
1255
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1256
1256
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1257
1257
|
}, "strip", z.ZodTypeAny, {
|
|
1258
|
-
id: string;
|
|
1259
1258
|
createdAt: string;
|
|
1260
1259
|
updatedAt: string;
|
|
1260
|
+
id: string;
|
|
1261
1261
|
name: string;
|
|
1262
1262
|
}, {
|
|
1263
|
-
id: string;
|
|
1264
1263
|
createdAt: string | Date;
|
|
1265
1264
|
updatedAt: string | Date;
|
|
1265
|
+
id: string;
|
|
1266
1266
|
name: string;
|
|
1267
1267
|
}>>>;
|
|
1268
1268
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1299,10 +1299,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1299
1299
|
agentId: string;
|
|
1300
1300
|
}>>>;
|
|
1301
1301
|
}, "strip", z.ZodTypeAny, {
|
|
1302
|
-
status: "
|
|
1303
|
-
id: string;
|
|
1302
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1304
1303
|
createdAt: string;
|
|
1305
1304
|
updatedAt: string;
|
|
1305
|
+
id: string;
|
|
1306
1306
|
name: string;
|
|
1307
1307
|
crn: string;
|
|
1308
1308
|
govLink: string;
|
|
@@ -1318,10 +1318,10 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1318
1318
|
agentId: string;
|
|
1319
1319
|
} | null | undefined;
|
|
1320
1320
|
}, {
|
|
1321
|
-
status: "
|
|
1322
|
-
id: string;
|
|
1321
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1323
1322
|
createdAt: string | Date;
|
|
1324
1323
|
updatedAt: string | Date;
|
|
1324
|
+
id: string;
|
|
1325
1325
|
name: string;
|
|
1326
1326
|
crn: string;
|
|
1327
1327
|
govLink: string;
|
|
@@ -1358,22 +1358,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1358
1358
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1359
1359
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1360
1360
|
}, "strip", z.ZodTypeAny, {
|
|
1361
|
-
status: "
|
|
1362
|
-
id: string;
|
|
1361
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1363
1362
|
createdAt: string;
|
|
1364
1363
|
updatedAt: string;
|
|
1364
|
+
id: string;
|
|
1365
1365
|
userId: string;
|
|
1366
1366
|
company?: {
|
|
1367
|
-
id: string;
|
|
1368
1367
|
createdAt: string;
|
|
1369
1368
|
updatedAt: string;
|
|
1369
|
+
id: string;
|
|
1370
1370
|
name: string;
|
|
1371
1371
|
} | null | undefined;
|
|
1372
1372
|
client?: {
|
|
1373
|
-
status: "
|
|
1374
|
-
id: string;
|
|
1373
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1375
1374
|
createdAt: string;
|
|
1376
1375
|
updatedAt: string;
|
|
1376
|
+
id: string;
|
|
1377
1377
|
name: string;
|
|
1378
1378
|
crn: string;
|
|
1379
1379
|
govLink: string;
|
|
@@ -1396,22 +1396,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1396
1396
|
email: string;
|
|
1397
1397
|
} | null | undefined;
|
|
1398
1398
|
}, {
|
|
1399
|
-
status: "
|
|
1400
|
-
id: string;
|
|
1399
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1401
1400
|
createdAt: string | Date;
|
|
1402
1401
|
updatedAt: string | Date;
|
|
1402
|
+
id: string;
|
|
1403
1403
|
userId: string;
|
|
1404
1404
|
company?: {
|
|
1405
|
-
id: string;
|
|
1406
1405
|
createdAt: string | Date;
|
|
1407
1406
|
updatedAt: string | Date;
|
|
1407
|
+
id: string;
|
|
1408
1408
|
name: string;
|
|
1409
1409
|
} | null | undefined;
|
|
1410
1410
|
client?: {
|
|
1411
|
-
status: "
|
|
1412
|
-
id: string;
|
|
1411
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1413
1412
|
createdAt: string | Date;
|
|
1414
1413
|
updatedAt: string | Date;
|
|
1414
|
+
id: string;
|
|
1415
1415
|
name: string;
|
|
1416
1416
|
crn: string;
|
|
1417
1417
|
govLink: string;
|
|
@@ -1435,22 +1435,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1435
1435
|
} | null | undefined;
|
|
1436
1436
|
}>>>;
|
|
1437
1437
|
}, "strip", z.ZodTypeAny, {
|
|
1438
|
-
status: "
|
|
1439
|
-
id: string;
|
|
1438
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1440
1439
|
createdAt: string;
|
|
1441
1440
|
updatedAt: string;
|
|
1441
|
+
id: string;
|
|
1442
1442
|
userId: string;
|
|
1443
1443
|
company?: {
|
|
1444
|
-
id: string;
|
|
1445
1444
|
createdAt: string;
|
|
1446
1445
|
updatedAt: string;
|
|
1446
|
+
id: string;
|
|
1447
1447
|
name: string;
|
|
1448
1448
|
} | null | undefined;
|
|
1449
1449
|
client?: {
|
|
1450
|
-
status: "
|
|
1451
|
-
id: string;
|
|
1450
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1452
1451
|
createdAt: string;
|
|
1453
1452
|
updatedAt: string;
|
|
1453
|
+
id: string;
|
|
1454
1454
|
name: string;
|
|
1455
1455
|
crn: string;
|
|
1456
1456
|
govLink: string;
|
|
@@ -1473,22 +1473,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1473
1473
|
email: string;
|
|
1474
1474
|
} | null | undefined;
|
|
1475
1475
|
newCollaboration?: {
|
|
1476
|
-
status: "
|
|
1477
|
-
id: string;
|
|
1476
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1478
1477
|
createdAt: string;
|
|
1479
1478
|
updatedAt: string;
|
|
1479
|
+
id: string;
|
|
1480
1480
|
userId: string;
|
|
1481
1481
|
company?: {
|
|
1482
|
-
id: string;
|
|
1483
1482
|
createdAt: string;
|
|
1484
1483
|
updatedAt: string;
|
|
1484
|
+
id: string;
|
|
1485
1485
|
name: string;
|
|
1486
1486
|
} | null | undefined;
|
|
1487
1487
|
client?: {
|
|
1488
|
-
status: "
|
|
1489
|
-
id: string;
|
|
1488
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1490
1489
|
createdAt: string;
|
|
1491
1490
|
updatedAt: string;
|
|
1491
|
+
id: string;
|
|
1492
1492
|
name: string;
|
|
1493
1493
|
crn: string;
|
|
1494
1494
|
govLink: string;
|
|
@@ -1512,22 +1512,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1512
1512
|
} | null | undefined;
|
|
1513
1513
|
} | null | undefined;
|
|
1514
1514
|
}, {
|
|
1515
|
-
status: "
|
|
1516
|
-
id: string;
|
|
1515
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1517
1516
|
createdAt: string | Date;
|
|
1518
1517
|
updatedAt: string | Date;
|
|
1518
|
+
id: string;
|
|
1519
1519
|
userId: string;
|
|
1520
1520
|
company?: {
|
|
1521
|
-
id: string;
|
|
1522
1521
|
createdAt: string | Date;
|
|
1523
1522
|
updatedAt: string | Date;
|
|
1523
|
+
id: string;
|
|
1524
1524
|
name: string;
|
|
1525
1525
|
} | null | undefined;
|
|
1526
1526
|
client?: {
|
|
1527
|
-
status: "
|
|
1528
|
-
id: string;
|
|
1527
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1529
1528
|
createdAt: string | Date;
|
|
1530
1529
|
updatedAt: string | Date;
|
|
1530
|
+
id: string;
|
|
1531
1531
|
name: string;
|
|
1532
1532
|
crn: string;
|
|
1533
1533
|
govLink: string;
|
|
@@ -1550,22 +1550,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1550
1550
|
email: string;
|
|
1551
1551
|
} | null | undefined;
|
|
1552
1552
|
newCollaboration?: {
|
|
1553
|
-
status: "
|
|
1554
|
-
id: string;
|
|
1553
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1555
1554
|
createdAt: string | Date;
|
|
1556
1555
|
updatedAt: string | Date;
|
|
1556
|
+
id: string;
|
|
1557
1557
|
userId: string;
|
|
1558
1558
|
company?: {
|
|
1559
|
-
id: string;
|
|
1560
1559
|
createdAt: string | Date;
|
|
1561
1560
|
updatedAt: string | Date;
|
|
1561
|
+
id: string;
|
|
1562
1562
|
name: string;
|
|
1563
1563
|
} | null | undefined;
|
|
1564
1564
|
client?: {
|
|
1565
|
-
status: "
|
|
1566
|
-
id: string;
|
|
1565
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1567
1566
|
createdAt: string | Date;
|
|
1568
1567
|
updatedAt: string | Date;
|
|
1568
|
+
id: string;
|
|
1569
1569
|
name: string;
|
|
1570
1570
|
crn: string;
|
|
1571
1571
|
govLink: string;
|
|
@@ -1592,24 +1592,25 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1592
1592
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1593
1593
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1594
1594
|
}, "strip", z.ZodTypeAny, {
|
|
1595
|
-
|
|
1596
|
-
|
|
1595
|
+
description: string;
|
|
1596
|
+
numberOfPositions: number;
|
|
1597
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1597
1598
|
createdAt: string;
|
|
1598
1599
|
updatedAt: string;
|
|
1599
|
-
|
|
1600
|
-
tradeId: string;
|
|
1600
|
+
id: string;
|
|
1601
1601
|
pay: {
|
|
1602
|
-
rate: number;
|
|
1603
1602
|
rateUnit: "DAILY" | "HOURLY";
|
|
1603
|
+
rate: number;
|
|
1604
1604
|
receivedRate: number;
|
|
1605
1605
|
rateMax?: number | null | undefined;
|
|
1606
1606
|
};
|
|
1607
|
-
|
|
1607
|
+
tradeId: string;
|
|
1608
1608
|
jobQualifications: {
|
|
1609
1609
|
id: string;
|
|
1610
1610
|
qualificationId: string;
|
|
1611
1611
|
qualificationTypeId?: string | null | undefined;
|
|
1612
1612
|
}[];
|
|
1613
|
+
workHours?: number | null | undefined;
|
|
1613
1614
|
location?: {
|
|
1614
1615
|
address?: string | null | undefined;
|
|
1615
1616
|
postcode?: string | null | undefined;
|
|
@@ -1619,24 +1620,23 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1619
1620
|
postTown?: string | null | undefined;
|
|
1620
1621
|
areaCovered?: string | null | undefined;
|
|
1621
1622
|
} | null | undefined;
|
|
1622
|
-
workHours?: number | null | undefined;
|
|
1623
1623
|
currentCollaboration?: {
|
|
1624
|
-
status: "
|
|
1625
|
-
id: string;
|
|
1624
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1626
1625
|
createdAt: string;
|
|
1627
1626
|
updatedAt: string;
|
|
1627
|
+
id: string;
|
|
1628
1628
|
userId: string;
|
|
1629
1629
|
company?: {
|
|
1630
|
-
id: string;
|
|
1631
1630
|
createdAt: string;
|
|
1632
1631
|
updatedAt: string;
|
|
1632
|
+
id: string;
|
|
1633
1633
|
name: string;
|
|
1634
1634
|
} | null | undefined;
|
|
1635
1635
|
client?: {
|
|
1636
|
-
status: "
|
|
1637
|
-
id: string;
|
|
1636
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1638
1637
|
createdAt: string;
|
|
1639
1638
|
updatedAt: string;
|
|
1639
|
+
id: string;
|
|
1640
1640
|
name: string;
|
|
1641
1641
|
crn: string;
|
|
1642
1642
|
govLink: string;
|
|
@@ -1659,22 +1659,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1659
1659
|
email: string;
|
|
1660
1660
|
} | null | undefined;
|
|
1661
1661
|
newCollaboration?: {
|
|
1662
|
-
status: "
|
|
1663
|
-
id: string;
|
|
1662
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1664
1663
|
createdAt: string;
|
|
1665
1664
|
updatedAt: string;
|
|
1665
|
+
id: string;
|
|
1666
1666
|
userId: string;
|
|
1667
1667
|
company?: {
|
|
1668
|
-
id: string;
|
|
1669
1668
|
createdAt: string;
|
|
1670
1669
|
updatedAt: string;
|
|
1670
|
+
id: string;
|
|
1671
1671
|
name: string;
|
|
1672
1672
|
} | null | undefined;
|
|
1673
1673
|
client?: {
|
|
1674
|
-
status: "
|
|
1675
|
-
id: string;
|
|
1674
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1676
1675
|
createdAt: string;
|
|
1677
1676
|
updatedAt: string;
|
|
1677
|
+
id: string;
|
|
1678
1678
|
name: string;
|
|
1679
1679
|
crn: string;
|
|
1680
1680
|
govLink: string;
|
|
@@ -1699,19 +1699,20 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1699
1699
|
} | null | undefined;
|
|
1700
1700
|
} | null | undefined;
|
|
1701
1701
|
}, {
|
|
1702
|
-
|
|
1703
|
-
|
|
1702
|
+
description: string;
|
|
1703
|
+
numberOfPositions: number;
|
|
1704
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1704
1705
|
createdAt: string | Date;
|
|
1705
1706
|
updatedAt: string | Date;
|
|
1706
|
-
|
|
1707
|
-
tradeId: string;
|
|
1707
|
+
id: string;
|
|
1708
1708
|
pay: {
|
|
1709
|
-
rate: number;
|
|
1710
1709
|
rateUnit: "DAILY" | "HOURLY";
|
|
1710
|
+
rate: number;
|
|
1711
1711
|
receivedRate: number;
|
|
1712
1712
|
rateMax?: number | null | undefined;
|
|
1713
1713
|
};
|
|
1714
|
-
|
|
1714
|
+
tradeId: string;
|
|
1715
|
+
workHours?: number | null | undefined;
|
|
1715
1716
|
location?: {
|
|
1716
1717
|
address?: string | null | undefined;
|
|
1717
1718
|
postcode?: string | null | undefined;
|
|
@@ -1721,29 +1722,28 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1721
1722
|
postTown?: string | null | undefined;
|
|
1722
1723
|
areaCovered?: string | null | undefined;
|
|
1723
1724
|
} | null | undefined;
|
|
1724
|
-
workHours?: number | null | undefined;
|
|
1725
1725
|
jobQualifications?: {
|
|
1726
1726
|
id: string;
|
|
1727
1727
|
qualificationId: string;
|
|
1728
1728
|
qualificationTypeId?: string | null | undefined;
|
|
1729
1729
|
}[] | undefined;
|
|
1730
1730
|
currentCollaboration?: {
|
|
1731
|
-
status: "
|
|
1732
|
-
id: string;
|
|
1731
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1733
1732
|
createdAt: string | Date;
|
|
1734
1733
|
updatedAt: string | Date;
|
|
1734
|
+
id: string;
|
|
1735
1735
|
userId: string;
|
|
1736
1736
|
company?: {
|
|
1737
|
-
id: string;
|
|
1738
1737
|
createdAt: string | Date;
|
|
1739
1738
|
updatedAt: string | Date;
|
|
1739
|
+
id: string;
|
|
1740
1740
|
name: string;
|
|
1741
1741
|
} | null | undefined;
|
|
1742
1742
|
client?: {
|
|
1743
|
-
status: "
|
|
1744
|
-
id: string;
|
|
1743
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1745
1744
|
createdAt: string | Date;
|
|
1746
1745
|
updatedAt: string | Date;
|
|
1746
|
+
id: string;
|
|
1747
1747
|
name: string;
|
|
1748
1748
|
crn: string;
|
|
1749
1749
|
govLink: string;
|
|
@@ -1766,22 +1766,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1766
1766
|
email: string;
|
|
1767
1767
|
} | null | undefined;
|
|
1768
1768
|
newCollaboration?: {
|
|
1769
|
-
status: "
|
|
1770
|
-
id: string;
|
|
1769
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1771
1770
|
createdAt: string | Date;
|
|
1772
1771
|
updatedAt: string | Date;
|
|
1772
|
+
id: string;
|
|
1773
1773
|
userId: string;
|
|
1774
1774
|
company?: {
|
|
1775
|
-
id: string;
|
|
1776
1775
|
createdAt: string | Date;
|
|
1777
1776
|
updatedAt: string | Date;
|
|
1777
|
+
id: string;
|
|
1778
1778
|
name: string;
|
|
1779
1779
|
} | null | undefined;
|
|
1780
1780
|
client?: {
|
|
1781
|
-
status: "
|
|
1782
|
-
id: string;
|
|
1781
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1783
1782
|
createdAt: string | Date;
|
|
1784
1783
|
updatedAt: string | Date;
|
|
1784
|
+
id: string;
|
|
1785
1785
|
name: string;
|
|
1786
1786
|
crn: string;
|
|
1787
1787
|
govLink: string;
|
|
@@ -1814,24 +1814,25 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1814
1814
|
}, "strip", z.ZodTypeAny, {
|
|
1815
1815
|
limit: number;
|
|
1816
1816
|
items: {
|
|
1817
|
-
|
|
1818
|
-
|
|
1817
|
+
description: string;
|
|
1818
|
+
numberOfPositions: number;
|
|
1819
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1819
1820
|
createdAt: string;
|
|
1820
1821
|
updatedAt: string;
|
|
1821
|
-
|
|
1822
|
-
tradeId: string;
|
|
1822
|
+
id: string;
|
|
1823
1823
|
pay: {
|
|
1824
|
-
rate: number;
|
|
1825
1824
|
rateUnit: "DAILY" | "HOURLY";
|
|
1825
|
+
rate: number;
|
|
1826
1826
|
receivedRate: number;
|
|
1827
1827
|
rateMax?: number | null | undefined;
|
|
1828
1828
|
};
|
|
1829
|
-
|
|
1829
|
+
tradeId: string;
|
|
1830
1830
|
jobQualifications: {
|
|
1831
1831
|
id: string;
|
|
1832
1832
|
qualificationId: string;
|
|
1833
1833
|
qualificationTypeId?: string | null | undefined;
|
|
1834
1834
|
}[];
|
|
1835
|
+
workHours?: number | null | undefined;
|
|
1835
1836
|
location?: {
|
|
1836
1837
|
address?: string | null | undefined;
|
|
1837
1838
|
postcode?: string | null | undefined;
|
|
@@ -1841,24 +1842,23 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1841
1842
|
postTown?: string | null | undefined;
|
|
1842
1843
|
areaCovered?: string | null | undefined;
|
|
1843
1844
|
} | null | undefined;
|
|
1844
|
-
workHours?: number | null | undefined;
|
|
1845
1845
|
currentCollaboration?: {
|
|
1846
|
-
status: "
|
|
1847
|
-
id: string;
|
|
1846
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1848
1847
|
createdAt: string;
|
|
1849
1848
|
updatedAt: string;
|
|
1849
|
+
id: string;
|
|
1850
1850
|
userId: string;
|
|
1851
1851
|
company?: {
|
|
1852
|
-
id: string;
|
|
1853
1852
|
createdAt: string;
|
|
1854
1853
|
updatedAt: string;
|
|
1854
|
+
id: string;
|
|
1855
1855
|
name: string;
|
|
1856
1856
|
} | null | undefined;
|
|
1857
1857
|
client?: {
|
|
1858
|
-
status: "
|
|
1859
|
-
id: string;
|
|
1858
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1860
1859
|
createdAt: string;
|
|
1861
1860
|
updatedAt: string;
|
|
1861
|
+
id: string;
|
|
1862
1862
|
name: string;
|
|
1863
1863
|
crn: string;
|
|
1864
1864
|
govLink: string;
|
|
@@ -1881,22 +1881,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1881
1881
|
email: string;
|
|
1882
1882
|
} | null | undefined;
|
|
1883
1883
|
newCollaboration?: {
|
|
1884
|
-
status: "
|
|
1885
|
-
id: string;
|
|
1884
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1886
1885
|
createdAt: string;
|
|
1887
1886
|
updatedAt: string;
|
|
1887
|
+
id: string;
|
|
1888
1888
|
userId: string;
|
|
1889
1889
|
company?: {
|
|
1890
|
-
id: string;
|
|
1891
1890
|
createdAt: string;
|
|
1892
1891
|
updatedAt: string;
|
|
1892
|
+
id: string;
|
|
1893
1893
|
name: string;
|
|
1894
1894
|
} | null | undefined;
|
|
1895
1895
|
client?: {
|
|
1896
|
-
status: "
|
|
1897
|
-
id: string;
|
|
1896
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1898
1897
|
createdAt: string;
|
|
1899
1898
|
updatedAt: string;
|
|
1899
|
+
id: string;
|
|
1900
1900
|
name: string;
|
|
1901
1901
|
crn: string;
|
|
1902
1902
|
govLink: string;
|
|
@@ -1928,19 +1928,20 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1928
1928
|
}, {
|
|
1929
1929
|
limit: number;
|
|
1930
1930
|
items: {
|
|
1931
|
-
|
|
1932
|
-
|
|
1931
|
+
description: string;
|
|
1932
|
+
numberOfPositions: number;
|
|
1933
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1933
1934
|
createdAt: string | Date;
|
|
1934
1935
|
updatedAt: string | Date;
|
|
1935
|
-
|
|
1936
|
-
tradeId: string;
|
|
1936
|
+
id: string;
|
|
1937
1937
|
pay: {
|
|
1938
|
-
rate: number;
|
|
1939
1938
|
rateUnit: "DAILY" | "HOURLY";
|
|
1939
|
+
rate: number;
|
|
1940
1940
|
receivedRate: number;
|
|
1941
1941
|
rateMax?: number | null | undefined;
|
|
1942
1942
|
};
|
|
1943
|
-
|
|
1943
|
+
tradeId: string;
|
|
1944
|
+
workHours?: number | null | undefined;
|
|
1944
1945
|
location?: {
|
|
1945
1946
|
address?: string | null | undefined;
|
|
1946
1947
|
postcode?: string | null | undefined;
|
|
@@ -1950,29 +1951,28 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1950
1951
|
postTown?: string | null | undefined;
|
|
1951
1952
|
areaCovered?: string | null | undefined;
|
|
1952
1953
|
} | null | undefined;
|
|
1953
|
-
workHours?: number | null | undefined;
|
|
1954
1954
|
jobQualifications?: {
|
|
1955
1955
|
id: string;
|
|
1956
1956
|
qualificationId: string;
|
|
1957
1957
|
qualificationTypeId?: string | null | undefined;
|
|
1958
1958
|
}[] | undefined;
|
|
1959
1959
|
currentCollaboration?: {
|
|
1960
|
-
status: "
|
|
1961
|
-
id: string;
|
|
1960
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
1962
1961
|
createdAt: string | Date;
|
|
1963
1962
|
updatedAt: string | Date;
|
|
1963
|
+
id: string;
|
|
1964
1964
|
userId: string;
|
|
1965
1965
|
company?: {
|
|
1966
|
-
id: string;
|
|
1967
1966
|
createdAt: string | Date;
|
|
1968
1967
|
updatedAt: string | Date;
|
|
1968
|
+
id: string;
|
|
1969
1969
|
name: string;
|
|
1970
1970
|
} | null | undefined;
|
|
1971
1971
|
client?: {
|
|
1972
|
-
status: "
|
|
1973
|
-
id: string;
|
|
1972
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
1974
1973
|
createdAt: string | Date;
|
|
1975
1974
|
updatedAt: string | Date;
|
|
1975
|
+
id: string;
|
|
1976
1976
|
name: string;
|
|
1977
1977
|
crn: string;
|
|
1978
1978
|
govLink: string;
|
|
@@ -1995,22 +1995,22 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1995
1995
|
email: string;
|
|
1996
1996
|
} | null | undefined;
|
|
1997
1997
|
newCollaboration?: {
|
|
1998
|
-
status: "
|
|
1999
|
-
id: string;
|
|
1998
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2000
1999
|
createdAt: string | Date;
|
|
2001
2000
|
updatedAt: string | Date;
|
|
2001
|
+
id: string;
|
|
2002
2002
|
userId: string;
|
|
2003
2003
|
company?: {
|
|
2004
|
-
id: string;
|
|
2005
2004
|
createdAt: string | Date;
|
|
2006
2005
|
updatedAt: string | Date;
|
|
2006
|
+
id: string;
|
|
2007
2007
|
name: string;
|
|
2008
2008
|
} | null | undefined;
|
|
2009
2009
|
client?: {
|
|
2010
|
-
status: "
|
|
2011
|
-
id: string;
|
|
2010
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2012
2011
|
createdAt: string | Date;
|
|
2013
2012
|
updatedAt: string | Date;
|
|
2013
|
+
id: string;
|
|
2014
2014
|
name: string;
|
|
2015
2015
|
crn: string;
|
|
2016
2016
|
govLink: string;
|
|
@@ -2075,8 +2075,8 @@ export declare const jobsContractRouter: {
|
|
|
2075
2075
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2076
2076
|
receivedRate: z.ZodNumber;
|
|
2077
2077
|
}, "strip", z.ZodTypeAny, {
|
|
2078
|
-
rate: number;
|
|
2079
2078
|
rateUnit: "DAILY" | "HOURLY";
|
|
2079
|
+
rate: number;
|
|
2080
2080
|
receivedRate: number;
|
|
2081
2081
|
rateMax?: number | null | undefined;
|
|
2082
2082
|
}, {
|
|
@@ -2105,47 +2105,47 @@ export declare const jobsContractRouter: {
|
|
|
2105
2105
|
}>, "many">>;
|
|
2106
2106
|
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
2107
2107
|
}, "strip", z.ZodTypeAny, {
|
|
2108
|
-
status: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE";
|
|
2109
2108
|
description: string;
|
|
2110
|
-
|
|
2109
|
+
numberOfPositions: number;
|
|
2110
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2111
2111
|
pay: {
|
|
2112
|
-
rate: number;
|
|
2113
2112
|
rateUnit: "DAILY" | "HOURLY";
|
|
2113
|
+
rate: number;
|
|
2114
2114
|
receivedRate: number;
|
|
2115
2115
|
rateMax?: number | null | undefined;
|
|
2116
2116
|
};
|
|
2117
|
-
|
|
2117
|
+
tradeId: string;
|
|
2118
2118
|
currentCollaboration: {
|
|
2119
2119
|
id: string;
|
|
2120
2120
|
};
|
|
2121
|
+
workHours?: number | undefined;
|
|
2121
2122
|
location?: {
|
|
2122
2123
|
address?: string | null | undefined;
|
|
2123
2124
|
postcode?: string | null | undefined;
|
|
2124
2125
|
} | undefined;
|
|
2125
|
-
workHours?: number | undefined;
|
|
2126
2126
|
jobQualifications?: {
|
|
2127
2127
|
qualificationId: string;
|
|
2128
2128
|
qualificationTypeId?: string | null | undefined;
|
|
2129
2129
|
}[] | undefined;
|
|
2130
2130
|
}, {
|
|
2131
2131
|
description: string;
|
|
2132
|
-
|
|
2132
|
+
numberOfPositions: number;
|
|
2133
2133
|
pay: {
|
|
2134
2134
|
rate: number;
|
|
2135
2135
|
receivedRate: number;
|
|
2136
2136
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
2137
2137
|
rateMax?: number | null | undefined;
|
|
2138
2138
|
};
|
|
2139
|
-
|
|
2139
|
+
tradeId: string;
|
|
2140
2140
|
currentCollaboration: {
|
|
2141
2141
|
id: string;
|
|
2142
2142
|
};
|
|
2143
|
-
status?: "
|
|
2143
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
2144
|
+
workHours?: number | undefined;
|
|
2144
2145
|
location?: {
|
|
2145
2146
|
address?: string | null | undefined;
|
|
2146
2147
|
postcode?: string | null | undefined;
|
|
2147
2148
|
} | undefined;
|
|
2148
|
-
workHours?: number | undefined;
|
|
2149
2149
|
jobQualifications?: {
|
|
2150
2150
|
qualificationId: string;
|
|
2151
2151
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -2265,13 +2265,13 @@ export declare const jobsContractRouter: {
|
|
|
2265
2265
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
2266
2266
|
receivedRate: z.ZodNumber;
|
|
2267
2267
|
}, "strip", z.ZodTypeAny, {
|
|
2268
|
-
rate: number;
|
|
2269
2268
|
rateUnit: "DAILY" | "HOURLY";
|
|
2269
|
+
rate: number;
|
|
2270
2270
|
receivedRate: number;
|
|
2271
2271
|
rateMax?: number | null | undefined;
|
|
2272
2272
|
}, {
|
|
2273
|
-
rate: number;
|
|
2274
2273
|
rateUnit: "DAILY" | "HOURLY";
|
|
2274
|
+
rate: number;
|
|
2275
2275
|
receivedRate: number;
|
|
2276
2276
|
rateMax?: number | null | undefined;
|
|
2277
2277
|
}>;
|
|
@@ -2322,14 +2322,14 @@ export declare const jobsContractRouter: {
|
|
|
2322
2322
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2323
2323
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2324
2324
|
}, "strip", z.ZodTypeAny, {
|
|
2325
|
-
id: string;
|
|
2326
2325
|
createdAt: string;
|
|
2327
2326
|
updatedAt: string;
|
|
2327
|
+
id: string;
|
|
2328
2328
|
name: string;
|
|
2329
2329
|
}, {
|
|
2330
|
-
id: string;
|
|
2331
2330
|
createdAt: string | Date;
|
|
2332
2331
|
updatedAt: string | Date;
|
|
2332
|
+
id: string;
|
|
2333
2333
|
name: string;
|
|
2334
2334
|
}>>>;
|
|
2335
2335
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2366,10 +2366,10 @@ export declare const jobsContractRouter: {
|
|
|
2366
2366
|
agentId: string;
|
|
2367
2367
|
}>>>;
|
|
2368
2368
|
}, "strip", z.ZodTypeAny, {
|
|
2369
|
-
status: "
|
|
2370
|
-
id: string;
|
|
2369
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2371
2370
|
createdAt: string;
|
|
2372
2371
|
updatedAt: string;
|
|
2372
|
+
id: string;
|
|
2373
2373
|
name: string;
|
|
2374
2374
|
crn: string;
|
|
2375
2375
|
govLink: string;
|
|
@@ -2385,10 +2385,10 @@ export declare const jobsContractRouter: {
|
|
|
2385
2385
|
agentId: string;
|
|
2386
2386
|
} | null | undefined;
|
|
2387
2387
|
}, {
|
|
2388
|
-
status: "
|
|
2389
|
-
id: string;
|
|
2388
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2390
2389
|
createdAt: string | Date;
|
|
2391
2390
|
updatedAt: string | Date;
|
|
2391
|
+
id: string;
|
|
2392
2392
|
name: string;
|
|
2393
2393
|
crn: string;
|
|
2394
2394
|
govLink: string;
|
|
@@ -2433,14 +2433,14 @@ export declare const jobsContractRouter: {
|
|
|
2433
2433
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2434
2434
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2435
2435
|
}, "strip", z.ZodTypeAny, {
|
|
2436
|
-
id: string;
|
|
2437
2436
|
createdAt: string;
|
|
2438
2437
|
updatedAt: string;
|
|
2438
|
+
id: string;
|
|
2439
2439
|
name: string;
|
|
2440
2440
|
}, {
|
|
2441
|
-
id: string;
|
|
2442
2441
|
createdAt: string | Date;
|
|
2443
2442
|
updatedAt: string | Date;
|
|
2443
|
+
id: string;
|
|
2444
2444
|
name: string;
|
|
2445
2445
|
}>>>;
|
|
2446
2446
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2477,10 +2477,10 @@ export declare const jobsContractRouter: {
|
|
|
2477
2477
|
agentId: string;
|
|
2478
2478
|
}>>>;
|
|
2479
2479
|
}, "strip", z.ZodTypeAny, {
|
|
2480
|
-
status: "
|
|
2481
|
-
id: string;
|
|
2480
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2482
2481
|
createdAt: string;
|
|
2483
2482
|
updatedAt: string;
|
|
2483
|
+
id: string;
|
|
2484
2484
|
name: string;
|
|
2485
2485
|
crn: string;
|
|
2486
2486
|
govLink: string;
|
|
@@ -2496,10 +2496,10 @@ export declare const jobsContractRouter: {
|
|
|
2496
2496
|
agentId: string;
|
|
2497
2497
|
} | null | undefined;
|
|
2498
2498
|
}, {
|
|
2499
|
-
status: "
|
|
2500
|
-
id: string;
|
|
2499
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2501
2500
|
createdAt: string | Date;
|
|
2502
2501
|
updatedAt: string | Date;
|
|
2502
|
+
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
2504
|
crn: string;
|
|
2505
2505
|
govLink: string;
|
|
@@ -2536,22 +2536,22 @@ export declare const jobsContractRouter: {
|
|
|
2536
2536
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2537
2537
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2538
2538
|
}, "strip", z.ZodTypeAny, {
|
|
2539
|
-
status: "
|
|
2540
|
-
id: string;
|
|
2539
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2541
2540
|
createdAt: string;
|
|
2542
2541
|
updatedAt: string;
|
|
2542
|
+
id: string;
|
|
2543
2543
|
userId: string;
|
|
2544
2544
|
company?: {
|
|
2545
|
-
id: string;
|
|
2546
2545
|
createdAt: string;
|
|
2547
2546
|
updatedAt: string;
|
|
2547
|
+
id: string;
|
|
2548
2548
|
name: string;
|
|
2549
2549
|
} | null | undefined;
|
|
2550
2550
|
client?: {
|
|
2551
|
-
status: "
|
|
2552
|
-
id: string;
|
|
2551
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2553
2552
|
createdAt: string;
|
|
2554
2553
|
updatedAt: string;
|
|
2554
|
+
id: string;
|
|
2555
2555
|
name: string;
|
|
2556
2556
|
crn: string;
|
|
2557
2557
|
govLink: string;
|
|
@@ -2574,22 +2574,22 @@ export declare const jobsContractRouter: {
|
|
|
2574
2574
|
email: string;
|
|
2575
2575
|
} | null | undefined;
|
|
2576
2576
|
}, {
|
|
2577
|
-
status: "
|
|
2578
|
-
id: string;
|
|
2577
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2579
2578
|
createdAt: string | Date;
|
|
2580
2579
|
updatedAt: string | Date;
|
|
2580
|
+
id: string;
|
|
2581
2581
|
userId: string;
|
|
2582
2582
|
company?: {
|
|
2583
|
-
id: string;
|
|
2584
2583
|
createdAt: string | Date;
|
|
2585
2584
|
updatedAt: string | Date;
|
|
2585
|
+
id: string;
|
|
2586
2586
|
name: string;
|
|
2587
2587
|
} | null | undefined;
|
|
2588
2588
|
client?: {
|
|
2589
|
-
status: "
|
|
2590
|
-
id: string;
|
|
2589
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2591
2590
|
createdAt: string | Date;
|
|
2592
2591
|
updatedAt: string | Date;
|
|
2592
|
+
id: string;
|
|
2593
2593
|
name: string;
|
|
2594
2594
|
crn: string;
|
|
2595
2595
|
govLink: string;
|
|
@@ -2613,22 +2613,22 @@ export declare const jobsContractRouter: {
|
|
|
2613
2613
|
} | null | undefined;
|
|
2614
2614
|
}>>>;
|
|
2615
2615
|
}, "strip", z.ZodTypeAny, {
|
|
2616
|
-
status: "
|
|
2617
|
-
id: string;
|
|
2616
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2618
2617
|
createdAt: string;
|
|
2619
2618
|
updatedAt: string;
|
|
2619
|
+
id: string;
|
|
2620
2620
|
userId: string;
|
|
2621
2621
|
company?: {
|
|
2622
|
-
id: string;
|
|
2623
2622
|
createdAt: string;
|
|
2624
2623
|
updatedAt: string;
|
|
2624
|
+
id: string;
|
|
2625
2625
|
name: string;
|
|
2626
2626
|
} | null | undefined;
|
|
2627
2627
|
client?: {
|
|
2628
|
-
status: "
|
|
2629
|
-
id: string;
|
|
2628
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2630
2629
|
createdAt: string;
|
|
2631
2630
|
updatedAt: string;
|
|
2631
|
+
id: string;
|
|
2632
2632
|
name: string;
|
|
2633
2633
|
crn: string;
|
|
2634
2634
|
govLink: string;
|
|
@@ -2651,22 +2651,22 @@ export declare const jobsContractRouter: {
|
|
|
2651
2651
|
email: string;
|
|
2652
2652
|
} | null | undefined;
|
|
2653
2653
|
newCollaboration?: {
|
|
2654
|
-
status: "
|
|
2655
|
-
id: string;
|
|
2654
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2656
2655
|
createdAt: string;
|
|
2657
2656
|
updatedAt: string;
|
|
2657
|
+
id: string;
|
|
2658
2658
|
userId: string;
|
|
2659
2659
|
company?: {
|
|
2660
|
-
id: string;
|
|
2661
2660
|
createdAt: string;
|
|
2662
2661
|
updatedAt: string;
|
|
2662
|
+
id: string;
|
|
2663
2663
|
name: string;
|
|
2664
2664
|
} | null | undefined;
|
|
2665
2665
|
client?: {
|
|
2666
|
-
status: "
|
|
2667
|
-
id: string;
|
|
2666
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2668
2667
|
createdAt: string;
|
|
2669
2668
|
updatedAt: string;
|
|
2669
|
+
id: string;
|
|
2670
2670
|
name: string;
|
|
2671
2671
|
crn: string;
|
|
2672
2672
|
govLink: string;
|
|
@@ -2690,22 +2690,22 @@ export declare const jobsContractRouter: {
|
|
|
2690
2690
|
} | null | undefined;
|
|
2691
2691
|
} | null | undefined;
|
|
2692
2692
|
}, {
|
|
2693
|
-
status: "
|
|
2694
|
-
id: string;
|
|
2693
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2695
2694
|
createdAt: string | Date;
|
|
2696
2695
|
updatedAt: string | Date;
|
|
2696
|
+
id: string;
|
|
2697
2697
|
userId: string;
|
|
2698
2698
|
company?: {
|
|
2699
|
-
id: string;
|
|
2700
2699
|
createdAt: string | Date;
|
|
2701
2700
|
updatedAt: string | Date;
|
|
2701
|
+
id: string;
|
|
2702
2702
|
name: string;
|
|
2703
2703
|
} | null | undefined;
|
|
2704
2704
|
client?: {
|
|
2705
|
-
status: "
|
|
2706
|
-
id: string;
|
|
2705
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2707
2706
|
createdAt: string | Date;
|
|
2708
2707
|
updatedAt: string | Date;
|
|
2708
|
+
id: string;
|
|
2709
2709
|
name: string;
|
|
2710
2710
|
crn: string;
|
|
2711
2711
|
govLink: string;
|
|
@@ -2728,22 +2728,22 @@ export declare const jobsContractRouter: {
|
|
|
2728
2728
|
email: string;
|
|
2729
2729
|
} | null | undefined;
|
|
2730
2730
|
newCollaboration?: {
|
|
2731
|
-
status: "
|
|
2732
|
-
id: string;
|
|
2731
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2733
2732
|
createdAt: string | Date;
|
|
2734
2733
|
updatedAt: string | Date;
|
|
2734
|
+
id: string;
|
|
2735
2735
|
userId: string;
|
|
2736
2736
|
company?: {
|
|
2737
|
-
id: string;
|
|
2738
2737
|
createdAt: string | Date;
|
|
2739
2738
|
updatedAt: string | Date;
|
|
2739
|
+
id: string;
|
|
2740
2740
|
name: string;
|
|
2741
2741
|
} | null | undefined;
|
|
2742
2742
|
client?: {
|
|
2743
|
-
status: "
|
|
2744
|
-
id: string;
|
|
2743
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2745
2744
|
createdAt: string | Date;
|
|
2746
2745
|
updatedAt: string | Date;
|
|
2746
|
+
id: string;
|
|
2747
2747
|
name: string;
|
|
2748
2748
|
crn: string;
|
|
2749
2749
|
govLink: string;
|
|
@@ -2770,24 +2770,25 @@ export declare const jobsContractRouter: {
|
|
|
2770
2770
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2771
2771
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2772
2772
|
}, "strip", z.ZodTypeAny, {
|
|
2773
|
-
|
|
2774
|
-
|
|
2773
|
+
description: string;
|
|
2774
|
+
numberOfPositions: number;
|
|
2775
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2775
2776
|
createdAt: string;
|
|
2776
2777
|
updatedAt: string;
|
|
2777
|
-
|
|
2778
|
-
tradeId: string;
|
|
2778
|
+
id: string;
|
|
2779
2779
|
pay: {
|
|
2780
|
-
rate: number;
|
|
2781
2780
|
rateUnit: "DAILY" | "HOURLY";
|
|
2781
|
+
rate: number;
|
|
2782
2782
|
receivedRate: number;
|
|
2783
2783
|
rateMax?: number | null | undefined;
|
|
2784
2784
|
};
|
|
2785
|
-
|
|
2785
|
+
tradeId: string;
|
|
2786
2786
|
jobQualifications: {
|
|
2787
2787
|
id: string;
|
|
2788
2788
|
qualificationId: string;
|
|
2789
2789
|
qualificationTypeId?: string | null | undefined;
|
|
2790
2790
|
}[];
|
|
2791
|
+
workHours?: number | null | undefined;
|
|
2791
2792
|
location?: {
|
|
2792
2793
|
address?: string | null | undefined;
|
|
2793
2794
|
postcode?: string | null | undefined;
|
|
@@ -2797,24 +2798,23 @@ export declare const jobsContractRouter: {
|
|
|
2797
2798
|
postTown?: string | null | undefined;
|
|
2798
2799
|
areaCovered?: string | null | undefined;
|
|
2799
2800
|
} | null | undefined;
|
|
2800
|
-
workHours?: number | null | undefined;
|
|
2801
2801
|
currentCollaboration?: {
|
|
2802
|
-
status: "
|
|
2803
|
-
id: string;
|
|
2802
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2804
2803
|
createdAt: string;
|
|
2805
2804
|
updatedAt: string;
|
|
2805
|
+
id: string;
|
|
2806
2806
|
userId: string;
|
|
2807
2807
|
company?: {
|
|
2808
|
-
id: string;
|
|
2809
2808
|
createdAt: string;
|
|
2810
2809
|
updatedAt: string;
|
|
2810
|
+
id: string;
|
|
2811
2811
|
name: string;
|
|
2812
2812
|
} | null | undefined;
|
|
2813
2813
|
client?: {
|
|
2814
|
-
status: "
|
|
2815
|
-
id: string;
|
|
2814
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2816
2815
|
createdAt: string;
|
|
2817
2816
|
updatedAt: string;
|
|
2817
|
+
id: string;
|
|
2818
2818
|
name: string;
|
|
2819
2819
|
crn: string;
|
|
2820
2820
|
govLink: string;
|
|
@@ -2837,22 +2837,22 @@ export declare const jobsContractRouter: {
|
|
|
2837
2837
|
email: string;
|
|
2838
2838
|
} | null | undefined;
|
|
2839
2839
|
newCollaboration?: {
|
|
2840
|
-
status: "
|
|
2841
|
-
id: string;
|
|
2840
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2842
2841
|
createdAt: string;
|
|
2843
2842
|
updatedAt: string;
|
|
2843
|
+
id: string;
|
|
2844
2844
|
userId: string;
|
|
2845
2845
|
company?: {
|
|
2846
|
-
id: string;
|
|
2847
2846
|
createdAt: string;
|
|
2848
2847
|
updatedAt: string;
|
|
2848
|
+
id: string;
|
|
2849
2849
|
name: string;
|
|
2850
2850
|
} | null | undefined;
|
|
2851
2851
|
client?: {
|
|
2852
|
-
status: "
|
|
2853
|
-
id: string;
|
|
2852
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2854
2853
|
createdAt: string;
|
|
2855
2854
|
updatedAt: string;
|
|
2855
|
+
id: string;
|
|
2856
2856
|
name: string;
|
|
2857
2857
|
crn: string;
|
|
2858
2858
|
govLink: string;
|
|
@@ -2877,19 +2877,20 @@ export declare const jobsContractRouter: {
|
|
|
2877
2877
|
} | null | undefined;
|
|
2878
2878
|
} | null | undefined;
|
|
2879
2879
|
}, {
|
|
2880
|
-
|
|
2881
|
-
|
|
2880
|
+
description: string;
|
|
2881
|
+
numberOfPositions: number;
|
|
2882
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2882
2883
|
createdAt: string | Date;
|
|
2883
2884
|
updatedAt: string | Date;
|
|
2884
|
-
|
|
2885
|
-
tradeId: string;
|
|
2885
|
+
id: string;
|
|
2886
2886
|
pay: {
|
|
2887
|
-
rate: number;
|
|
2888
2887
|
rateUnit: "DAILY" | "HOURLY";
|
|
2888
|
+
rate: number;
|
|
2889
2889
|
receivedRate: number;
|
|
2890
2890
|
rateMax?: number | null | undefined;
|
|
2891
2891
|
};
|
|
2892
|
-
|
|
2892
|
+
tradeId: string;
|
|
2893
|
+
workHours?: number | null | undefined;
|
|
2893
2894
|
location?: {
|
|
2894
2895
|
address?: string | null | undefined;
|
|
2895
2896
|
postcode?: string | null | undefined;
|
|
@@ -2899,29 +2900,28 @@ export declare const jobsContractRouter: {
|
|
|
2899
2900
|
postTown?: string | null | undefined;
|
|
2900
2901
|
areaCovered?: string | null | undefined;
|
|
2901
2902
|
} | null | undefined;
|
|
2902
|
-
workHours?: number | null | undefined;
|
|
2903
2903
|
jobQualifications?: {
|
|
2904
2904
|
id: string;
|
|
2905
2905
|
qualificationId: string;
|
|
2906
2906
|
qualificationTypeId?: string | null | undefined;
|
|
2907
2907
|
}[] | undefined;
|
|
2908
2908
|
currentCollaboration?: {
|
|
2909
|
-
status: "
|
|
2910
|
-
id: string;
|
|
2909
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2911
2910
|
createdAt: string | Date;
|
|
2912
2911
|
updatedAt: string | Date;
|
|
2912
|
+
id: string;
|
|
2913
2913
|
userId: string;
|
|
2914
2914
|
company?: {
|
|
2915
|
-
id: string;
|
|
2916
2915
|
createdAt: string | Date;
|
|
2917
2916
|
updatedAt: string | Date;
|
|
2917
|
+
id: string;
|
|
2918
2918
|
name: string;
|
|
2919
2919
|
} | null | undefined;
|
|
2920
2920
|
client?: {
|
|
2921
|
-
status: "
|
|
2922
|
-
id: string;
|
|
2921
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2923
2922
|
createdAt: string | Date;
|
|
2924
2923
|
updatedAt: string | Date;
|
|
2924
|
+
id: string;
|
|
2925
2925
|
name: string;
|
|
2926
2926
|
crn: string;
|
|
2927
2927
|
govLink: string;
|
|
@@ -2944,22 +2944,22 @@ export declare const jobsContractRouter: {
|
|
|
2944
2944
|
email: string;
|
|
2945
2945
|
} | null | undefined;
|
|
2946
2946
|
newCollaboration?: {
|
|
2947
|
-
status: "
|
|
2948
|
-
id: string;
|
|
2947
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
2949
2948
|
createdAt: string | Date;
|
|
2950
2949
|
updatedAt: string | Date;
|
|
2950
|
+
id: string;
|
|
2951
2951
|
userId: string;
|
|
2952
2952
|
company?: {
|
|
2953
|
-
id: string;
|
|
2954
2953
|
createdAt: string | Date;
|
|
2955
2954
|
updatedAt: string | Date;
|
|
2955
|
+
id: string;
|
|
2956
2956
|
name: string;
|
|
2957
2957
|
} | null | undefined;
|
|
2958
2958
|
client?: {
|
|
2959
|
-
status: "
|
|
2960
|
-
id: string;
|
|
2959
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
2961
2960
|
createdAt: string | Date;
|
|
2962
2961
|
updatedAt: string | Date;
|
|
2962
|
+
id: string;
|
|
2963
2963
|
name: string;
|
|
2964
2964
|
crn: string;
|
|
2965
2965
|
govLink: string;
|
|
@@ -3012,6 +3012,12 @@ export declare const jobsContractRouter: {
|
|
|
3012
3012
|
};
|
|
3013
3013
|
};
|
|
3014
3014
|
findAll: {
|
|
3015
|
+
metadata: {
|
|
3016
|
+
tags: string[];
|
|
3017
|
+
openApi: {
|
|
3018
|
+
operationId: string;
|
|
3019
|
+
};
|
|
3020
|
+
};
|
|
3015
3021
|
query: z.ZodObject<{
|
|
3016
3022
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
3017
3023
|
page: z.ZodDefault<z.ZodNumber>;
|
|
@@ -3045,44 +3051,38 @@ export declare const jobsContractRouter: {
|
|
|
3045
3051
|
}, "strip", z.ZodTypeAny, {
|
|
3046
3052
|
limit: number;
|
|
3047
3053
|
page: number;
|
|
3048
|
-
status?: "
|
|
3049
|
-
postcode?: string | null | undefined;
|
|
3054
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
3050
3055
|
createdAt?: {
|
|
3051
3056
|
from?: string | null | undefined;
|
|
3052
3057
|
to?: string | null | undefined;
|
|
3053
3058
|
} | null | undefined;
|
|
3054
|
-
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
3055
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3056
|
-
distance?: number | null | undefined;
|
|
3057
|
-
tradeId?: string | null | undefined;
|
|
3058
3059
|
pay?: {
|
|
3059
3060
|
minRate?: number | null | undefined;
|
|
3060
3061
|
maxRate?: number | null | undefined;
|
|
3061
3062
|
} | null | undefined;
|
|
3062
|
-
}, {
|
|
3063
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | null | undefined;
|
|
3064
3063
|
postcode?: string | null | undefined;
|
|
3064
|
+
tradeId?: string | null | undefined;
|
|
3065
|
+
distance?: number | null | undefined;
|
|
3066
|
+
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
3067
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3068
|
+
}, {
|
|
3069
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | null | undefined;
|
|
3065
3070
|
createdAt?: {
|
|
3066
3071
|
from?: string | null | undefined;
|
|
3067
3072
|
to?: string | null | undefined;
|
|
3068
3073
|
} | null | undefined;
|
|
3069
|
-
limit?: number | undefined;
|
|
3070
|
-
page?: number | undefined;
|
|
3071
|
-
sortBy?: "status" | "createdAt" | "updatedAt" | "description" | "numberOfPositions" | null | undefined;
|
|
3072
|
-
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3073
|
-
distance?: number | null | undefined;
|
|
3074
|
-
tradeId?: string | null | undefined;
|
|
3075
3074
|
pay?: {
|
|
3076
3075
|
minRate?: number | null | undefined;
|
|
3077
3076
|
maxRate?: number | null | undefined;
|
|
3078
3077
|
} | null | undefined;
|
|
3078
|
+
postcode?: string | null | undefined;
|
|
3079
|
+
tradeId?: string | null | undefined;
|
|
3080
|
+
limit?: number | undefined;
|
|
3081
|
+
page?: number | undefined;
|
|
3082
|
+
distance?: number | null | undefined;
|
|
3083
|
+
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
3084
|
+
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
3079
3085
|
}>;
|
|
3080
|
-
metadata: {
|
|
3081
|
-
tags: string[];
|
|
3082
|
-
openApi: {
|
|
3083
|
-
operationId: string;
|
|
3084
|
-
};
|
|
3085
|
-
};
|
|
3086
3086
|
summary: "Get all jobs";
|
|
3087
3087
|
method: "GET";
|
|
3088
3088
|
path: "/v2/jobs";
|
|
@@ -3200,13 +3200,13 @@ export declare const jobsContractRouter: {
|
|
|
3200
3200
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
3201
3201
|
receivedRate: z.ZodNumber;
|
|
3202
3202
|
}, "strip", z.ZodTypeAny, {
|
|
3203
|
-
rate: number;
|
|
3204
3203
|
rateUnit: "DAILY" | "HOURLY";
|
|
3204
|
+
rate: number;
|
|
3205
3205
|
receivedRate: number;
|
|
3206
3206
|
rateMax?: number | null | undefined;
|
|
3207
3207
|
}, {
|
|
3208
|
-
rate: number;
|
|
3209
3208
|
rateUnit: "DAILY" | "HOURLY";
|
|
3209
|
+
rate: number;
|
|
3210
3210
|
receivedRate: number;
|
|
3211
3211
|
rateMax?: number | null | undefined;
|
|
3212
3212
|
}>;
|
|
@@ -3257,14 +3257,14 @@ export declare const jobsContractRouter: {
|
|
|
3257
3257
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3258
3258
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3259
3259
|
}, "strip", z.ZodTypeAny, {
|
|
3260
|
-
id: string;
|
|
3261
3260
|
createdAt: string;
|
|
3262
3261
|
updatedAt: string;
|
|
3262
|
+
id: string;
|
|
3263
3263
|
name: string;
|
|
3264
3264
|
}, {
|
|
3265
|
-
id: string;
|
|
3266
3265
|
createdAt: string | Date;
|
|
3267
3266
|
updatedAt: string | Date;
|
|
3267
|
+
id: string;
|
|
3268
3268
|
name: string;
|
|
3269
3269
|
}>>>;
|
|
3270
3270
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3301,10 +3301,10 @@ export declare const jobsContractRouter: {
|
|
|
3301
3301
|
agentId: string;
|
|
3302
3302
|
}>>>;
|
|
3303
3303
|
}, "strip", z.ZodTypeAny, {
|
|
3304
|
-
status: "
|
|
3305
|
-
id: string;
|
|
3304
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3306
3305
|
createdAt: string;
|
|
3307
3306
|
updatedAt: string;
|
|
3307
|
+
id: string;
|
|
3308
3308
|
name: string;
|
|
3309
3309
|
crn: string;
|
|
3310
3310
|
govLink: string;
|
|
@@ -3320,10 +3320,10 @@ export declare const jobsContractRouter: {
|
|
|
3320
3320
|
agentId: string;
|
|
3321
3321
|
} | null | undefined;
|
|
3322
3322
|
}, {
|
|
3323
|
-
status: "
|
|
3324
|
-
id: string;
|
|
3323
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3325
3324
|
createdAt: string | Date;
|
|
3326
3325
|
updatedAt: string | Date;
|
|
3326
|
+
id: string;
|
|
3327
3327
|
name: string;
|
|
3328
3328
|
crn: string;
|
|
3329
3329
|
govLink: string;
|
|
@@ -3368,14 +3368,14 @@ export declare const jobsContractRouter: {
|
|
|
3368
3368
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3369
3369
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3370
3370
|
}, "strip", z.ZodTypeAny, {
|
|
3371
|
-
id: string;
|
|
3372
3371
|
createdAt: string;
|
|
3373
3372
|
updatedAt: string;
|
|
3373
|
+
id: string;
|
|
3374
3374
|
name: string;
|
|
3375
3375
|
}, {
|
|
3376
|
-
id: string;
|
|
3377
3376
|
createdAt: string | Date;
|
|
3378
3377
|
updatedAt: string | Date;
|
|
3378
|
+
id: string;
|
|
3379
3379
|
name: string;
|
|
3380
3380
|
}>>>;
|
|
3381
3381
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3412,10 +3412,10 @@ export declare const jobsContractRouter: {
|
|
|
3412
3412
|
agentId: string;
|
|
3413
3413
|
}>>>;
|
|
3414
3414
|
}, "strip", z.ZodTypeAny, {
|
|
3415
|
-
status: "
|
|
3416
|
-
id: string;
|
|
3415
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3417
3416
|
createdAt: string;
|
|
3418
3417
|
updatedAt: string;
|
|
3418
|
+
id: string;
|
|
3419
3419
|
name: string;
|
|
3420
3420
|
crn: string;
|
|
3421
3421
|
govLink: string;
|
|
@@ -3431,10 +3431,10 @@ export declare const jobsContractRouter: {
|
|
|
3431
3431
|
agentId: string;
|
|
3432
3432
|
} | null | undefined;
|
|
3433
3433
|
}, {
|
|
3434
|
-
status: "
|
|
3435
|
-
id: string;
|
|
3434
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3436
3435
|
createdAt: string | Date;
|
|
3437
3436
|
updatedAt: string | Date;
|
|
3437
|
+
id: string;
|
|
3438
3438
|
name: string;
|
|
3439
3439
|
crn: string;
|
|
3440
3440
|
govLink: string;
|
|
@@ -3471,22 +3471,22 @@ export declare const jobsContractRouter: {
|
|
|
3471
3471
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3472
3472
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3473
3473
|
}, "strip", z.ZodTypeAny, {
|
|
3474
|
-
status: "
|
|
3475
|
-
id: string;
|
|
3474
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3476
3475
|
createdAt: string;
|
|
3477
3476
|
updatedAt: string;
|
|
3477
|
+
id: string;
|
|
3478
3478
|
userId: string;
|
|
3479
3479
|
company?: {
|
|
3480
|
-
id: string;
|
|
3481
3480
|
createdAt: string;
|
|
3482
3481
|
updatedAt: string;
|
|
3482
|
+
id: string;
|
|
3483
3483
|
name: string;
|
|
3484
3484
|
} | null | undefined;
|
|
3485
3485
|
client?: {
|
|
3486
|
-
status: "
|
|
3487
|
-
id: string;
|
|
3486
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3488
3487
|
createdAt: string;
|
|
3489
3488
|
updatedAt: string;
|
|
3489
|
+
id: string;
|
|
3490
3490
|
name: string;
|
|
3491
3491
|
crn: string;
|
|
3492
3492
|
govLink: string;
|
|
@@ -3509,22 +3509,22 @@ export declare const jobsContractRouter: {
|
|
|
3509
3509
|
email: string;
|
|
3510
3510
|
} | null | undefined;
|
|
3511
3511
|
}, {
|
|
3512
|
-
status: "
|
|
3513
|
-
id: string;
|
|
3512
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3514
3513
|
createdAt: string | Date;
|
|
3515
3514
|
updatedAt: string | Date;
|
|
3515
|
+
id: string;
|
|
3516
3516
|
userId: string;
|
|
3517
3517
|
company?: {
|
|
3518
|
-
id: string;
|
|
3519
3518
|
createdAt: string | Date;
|
|
3520
3519
|
updatedAt: string | Date;
|
|
3520
|
+
id: string;
|
|
3521
3521
|
name: string;
|
|
3522
3522
|
} | null | undefined;
|
|
3523
3523
|
client?: {
|
|
3524
|
-
status: "
|
|
3525
|
-
id: string;
|
|
3524
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3526
3525
|
createdAt: string | Date;
|
|
3527
3526
|
updatedAt: string | Date;
|
|
3527
|
+
id: string;
|
|
3528
3528
|
name: string;
|
|
3529
3529
|
crn: string;
|
|
3530
3530
|
govLink: string;
|
|
@@ -3548,22 +3548,22 @@ export declare const jobsContractRouter: {
|
|
|
3548
3548
|
} | null | undefined;
|
|
3549
3549
|
}>>>;
|
|
3550
3550
|
}, "strip", z.ZodTypeAny, {
|
|
3551
|
-
status: "
|
|
3552
|
-
id: string;
|
|
3551
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3553
3552
|
createdAt: string;
|
|
3554
3553
|
updatedAt: string;
|
|
3554
|
+
id: string;
|
|
3555
3555
|
userId: string;
|
|
3556
3556
|
company?: {
|
|
3557
|
-
id: string;
|
|
3558
3557
|
createdAt: string;
|
|
3559
3558
|
updatedAt: string;
|
|
3559
|
+
id: string;
|
|
3560
3560
|
name: string;
|
|
3561
3561
|
} | null | undefined;
|
|
3562
3562
|
client?: {
|
|
3563
|
-
status: "
|
|
3564
|
-
id: string;
|
|
3563
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3565
3564
|
createdAt: string;
|
|
3566
3565
|
updatedAt: string;
|
|
3566
|
+
id: string;
|
|
3567
3567
|
name: string;
|
|
3568
3568
|
crn: string;
|
|
3569
3569
|
govLink: string;
|
|
@@ -3586,22 +3586,22 @@ export declare const jobsContractRouter: {
|
|
|
3586
3586
|
email: string;
|
|
3587
3587
|
} | null | undefined;
|
|
3588
3588
|
newCollaboration?: {
|
|
3589
|
-
status: "
|
|
3590
|
-
id: string;
|
|
3589
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3591
3590
|
createdAt: string;
|
|
3592
3591
|
updatedAt: string;
|
|
3592
|
+
id: string;
|
|
3593
3593
|
userId: string;
|
|
3594
3594
|
company?: {
|
|
3595
|
-
id: string;
|
|
3596
3595
|
createdAt: string;
|
|
3597
3596
|
updatedAt: string;
|
|
3597
|
+
id: string;
|
|
3598
3598
|
name: string;
|
|
3599
3599
|
} | null | undefined;
|
|
3600
3600
|
client?: {
|
|
3601
|
-
status: "
|
|
3602
|
-
id: string;
|
|
3601
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3603
3602
|
createdAt: string;
|
|
3604
3603
|
updatedAt: string;
|
|
3604
|
+
id: string;
|
|
3605
3605
|
name: string;
|
|
3606
3606
|
crn: string;
|
|
3607
3607
|
govLink: string;
|
|
@@ -3625,22 +3625,22 @@ export declare const jobsContractRouter: {
|
|
|
3625
3625
|
} | null | undefined;
|
|
3626
3626
|
} | null | undefined;
|
|
3627
3627
|
}, {
|
|
3628
|
-
status: "
|
|
3629
|
-
id: string;
|
|
3628
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3630
3629
|
createdAt: string | Date;
|
|
3631
3630
|
updatedAt: string | Date;
|
|
3631
|
+
id: string;
|
|
3632
3632
|
userId: string;
|
|
3633
3633
|
company?: {
|
|
3634
|
-
id: string;
|
|
3635
3634
|
createdAt: string | Date;
|
|
3636
3635
|
updatedAt: string | Date;
|
|
3636
|
+
id: string;
|
|
3637
3637
|
name: string;
|
|
3638
3638
|
} | null | undefined;
|
|
3639
3639
|
client?: {
|
|
3640
|
-
status: "
|
|
3641
|
-
id: string;
|
|
3640
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3642
3641
|
createdAt: string | Date;
|
|
3643
3642
|
updatedAt: string | Date;
|
|
3643
|
+
id: string;
|
|
3644
3644
|
name: string;
|
|
3645
3645
|
crn: string;
|
|
3646
3646
|
govLink: string;
|
|
@@ -3663,22 +3663,22 @@ export declare const jobsContractRouter: {
|
|
|
3663
3663
|
email: string;
|
|
3664
3664
|
} | null | undefined;
|
|
3665
3665
|
newCollaboration?: {
|
|
3666
|
-
status: "
|
|
3667
|
-
id: string;
|
|
3666
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3668
3667
|
createdAt: string | Date;
|
|
3669
3668
|
updatedAt: string | Date;
|
|
3669
|
+
id: string;
|
|
3670
3670
|
userId: string;
|
|
3671
3671
|
company?: {
|
|
3672
|
-
id: string;
|
|
3673
3672
|
createdAt: string | Date;
|
|
3674
3673
|
updatedAt: string | Date;
|
|
3674
|
+
id: string;
|
|
3675
3675
|
name: string;
|
|
3676
3676
|
} | null | undefined;
|
|
3677
3677
|
client?: {
|
|
3678
|
-
status: "
|
|
3679
|
-
id: string;
|
|
3678
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3680
3679
|
createdAt: string | Date;
|
|
3681
3680
|
updatedAt: string | Date;
|
|
3681
|
+
id: string;
|
|
3682
3682
|
name: string;
|
|
3683
3683
|
crn: string;
|
|
3684
3684
|
govLink: string;
|
|
@@ -3705,24 +3705,25 @@ export declare const jobsContractRouter: {
|
|
|
3705
3705
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3706
3706
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3707
3707
|
}, "strip", z.ZodTypeAny, {
|
|
3708
|
-
|
|
3709
|
-
|
|
3708
|
+
description: string;
|
|
3709
|
+
numberOfPositions: number;
|
|
3710
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3710
3711
|
createdAt: string;
|
|
3711
3712
|
updatedAt: string;
|
|
3712
|
-
|
|
3713
|
-
tradeId: string;
|
|
3713
|
+
id: string;
|
|
3714
3714
|
pay: {
|
|
3715
|
-
rate: number;
|
|
3716
3715
|
rateUnit: "DAILY" | "HOURLY";
|
|
3716
|
+
rate: number;
|
|
3717
3717
|
receivedRate: number;
|
|
3718
3718
|
rateMax?: number | null | undefined;
|
|
3719
3719
|
};
|
|
3720
|
-
|
|
3720
|
+
tradeId: string;
|
|
3721
3721
|
jobQualifications: {
|
|
3722
3722
|
id: string;
|
|
3723
3723
|
qualificationId: string;
|
|
3724
3724
|
qualificationTypeId?: string | null | undefined;
|
|
3725
3725
|
}[];
|
|
3726
|
+
workHours?: number | null | undefined;
|
|
3726
3727
|
location?: {
|
|
3727
3728
|
address?: string | null | undefined;
|
|
3728
3729
|
postcode?: string | null | undefined;
|
|
@@ -3732,24 +3733,23 @@ export declare const jobsContractRouter: {
|
|
|
3732
3733
|
postTown?: string | null | undefined;
|
|
3733
3734
|
areaCovered?: string | null | undefined;
|
|
3734
3735
|
} | null | undefined;
|
|
3735
|
-
workHours?: number | null | undefined;
|
|
3736
3736
|
currentCollaboration?: {
|
|
3737
|
-
status: "
|
|
3738
|
-
id: string;
|
|
3737
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3739
3738
|
createdAt: string;
|
|
3740
3739
|
updatedAt: string;
|
|
3740
|
+
id: string;
|
|
3741
3741
|
userId: string;
|
|
3742
3742
|
company?: {
|
|
3743
|
-
id: string;
|
|
3744
3743
|
createdAt: string;
|
|
3745
3744
|
updatedAt: string;
|
|
3745
|
+
id: string;
|
|
3746
3746
|
name: string;
|
|
3747
3747
|
} | null | undefined;
|
|
3748
3748
|
client?: {
|
|
3749
|
-
status: "
|
|
3750
|
-
id: string;
|
|
3749
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3751
3750
|
createdAt: string;
|
|
3752
3751
|
updatedAt: string;
|
|
3752
|
+
id: string;
|
|
3753
3753
|
name: string;
|
|
3754
3754
|
crn: string;
|
|
3755
3755
|
govLink: string;
|
|
@@ -3772,22 +3772,22 @@ export declare const jobsContractRouter: {
|
|
|
3772
3772
|
email: string;
|
|
3773
3773
|
} | null | undefined;
|
|
3774
3774
|
newCollaboration?: {
|
|
3775
|
-
status: "
|
|
3776
|
-
id: string;
|
|
3775
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3777
3776
|
createdAt: string;
|
|
3778
3777
|
updatedAt: string;
|
|
3778
|
+
id: string;
|
|
3779
3779
|
userId: string;
|
|
3780
3780
|
company?: {
|
|
3781
|
-
id: string;
|
|
3782
3781
|
createdAt: string;
|
|
3783
3782
|
updatedAt: string;
|
|
3783
|
+
id: string;
|
|
3784
3784
|
name: string;
|
|
3785
3785
|
} | null | undefined;
|
|
3786
3786
|
client?: {
|
|
3787
|
-
status: "
|
|
3788
|
-
id: string;
|
|
3787
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3789
3788
|
createdAt: string;
|
|
3790
3789
|
updatedAt: string;
|
|
3790
|
+
id: string;
|
|
3791
3791
|
name: string;
|
|
3792
3792
|
crn: string;
|
|
3793
3793
|
govLink: string;
|
|
@@ -3812,19 +3812,20 @@ export declare const jobsContractRouter: {
|
|
|
3812
3812
|
} | null | undefined;
|
|
3813
3813
|
} | null | undefined;
|
|
3814
3814
|
}, {
|
|
3815
|
-
|
|
3816
|
-
|
|
3815
|
+
description: string;
|
|
3816
|
+
numberOfPositions: number;
|
|
3817
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3817
3818
|
createdAt: string | Date;
|
|
3818
3819
|
updatedAt: string | Date;
|
|
3819
|
-
|
|
3820
|
-
tradeId: string;
|
|
3820
|
+
id: string;
|
|
3821
3821
|
pay: {
|
|
3822
|
-
rate: number;
|
|
3823
3822
|
rateUnit: "DAILY" | "HOURLY";
|
|
3823
|
+
rate: number;
|
|
3824
3824
|
receivedRate: number;
|
|
3825
3825
|
rateMax?: number | null | undefined;
|
|
3826
3826
|
};
|
|
3827
|
-
|
|
3827
|
+
tradeId: string;
|
|
3828
|
+
workHours?: number | null | undefined;
|
|
3828
3829
|
location?: {
|
|
3829
3830
|
address?: string | null | undefined;
|
|
3830
3831
|
postcode?: string | null | undefined;
|
|
@@ -3834,29 +3835,28 @@ export declare const jobsContractRouter: {
|
|
|
3834
3835
|
postTown?: string | null | undefined;
|
|
3835
3836
|
areaCovered?: string | null | undefined;
|
|
3836
3837
|
} | null | undefined;
|
|
3837
|
-
workHours?: number | null | undefined;
|
|
3838
3838
|
jobQualifications?: {
|
|
3839
3839
|
id: string;
|
|
3840
3840
|
qualificationId: string;
|
|
3841
3841
|
qualificationTypeId?: string | null | undefined;
|
|
3842
3842
|
}[] | undefined;
|
|
3843
3843
|
currentCollaboration?: {
|
|
3844
|
-
status: "
|
|
3845
|
-
id: string;
|
|
3844
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3846
3845
|
createdAt: string | Date;
|
|
3847
3846
|
updatedAt: string | Date;
|
|
3847
|
+
id: string;
|
|
3848
3848
|
userId: string;
|
|
3849
3849
|
company?: {
|
|
3850
|
-
id: string;
|
|
3851
3850
|
createdAt: string | Date;
|
|
3852
3851
|
updatedAt: string | Date;
|
|
3852
|
+
id: string;
|
|
3853
3853
|
name: string;
|
|
3854
3854
|
} | null | undefined;
|
|
3855
3855
|
client?: {
|
|
3856
|
-
status: "
|
|
3857
|
-
id: string;
|
|
3856
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3858
3857
|
createdAt: string | Date;
|
|
3859
3858
|
updatedAt: string | Date;
|
|
3859
|
+
id: string;
|
|
3860
3860
|
name: string;
|
|
3861
3861
|
crn: string;
|
|
3862
3862
|
govLink: string;
|
|
@@ -3879,22 +3879,22 @@ export declare const jobsContractRouter: {
|
|
|
3879
3879
|
email: string;
|
|
3880
3880
|
} | null | undefined;
|
|
3881
3881
|
newCollaboration?: {
|
|
3882
|
-
status: "
|
|
3883
|
-
id: string;
|
|
3882
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3884
3883
|
createdAt: string | Date;
|
|
3885
3884
|
updatedAt: string | Date;
|
|
3885
|
+
id: string;
|
|
3886
3886
|
userId: string;
|
|
3887
3887
|
company?: {
|
|
3888
|
-
id: string;
|
|
3889
3888
|
createdAt: string | Date;
|
|
3890
3889
|
updatedAt: string | Date;
|
|
3890
|
+
id: string;
|
|
3891
3891
|
name: string;
|
|
3892
3892
|
} | null | undefined;
|
|
3893
3893
|
client?: {
|
|
3894
|
-
status: "
|
|
3895
|
-
id: string;
|
|
3894
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3896
3895
|
createdAt: string | Date;
|
|
3897
3896
|
updatedAt: string | Date;
|
|
3897
|
+
id: string;
|
|
3898
3898
|
name: string;
|
|
3899
3899
|
crn: string;
|
|
3900
3900
|
govLink: string;
|
|
@@ -3927,24 +3927,25 @@ export declare const jobsContractRouter: {
|
|
|
3927
3927
|
}, "strip", z.ZodTypeAny, {
|
|
3928
3928
|
limit: number;
|
|
3929
3929
|
items: {
|
|
3930
|
-
|
|
3931
|
-
|
|
3930
|
+
description: string;
|
|
3931
|
+
numberOfPositions: number;
|
|
3932
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3932
3933
|
createdAt: string;
|
|
3933
3934
|
updatedAt: string;
|
|
3934
|
-
|
|
3935
|
-
tradeId: string;
|
|
3935
|
+
id: string;
|
|
3936
3936
|
pay: {
|
|
3937
|
-
rate: number;
|
|
3938
3937
|
rateUnit: "DAILY" | "HOURLY";
|
|
3938
|
+
rate: number;
|
|
3939
3939
|
receivedRate: number;
|
|
3940
3940
|
rateMax?: number | null | undefined;
|
|
3941
3941
|
};
|
|
3942
|
-
|
|
3942
|
+
tradeId: string;
|
|
3943
3943
|
jobQualifications: {
|
|
3944
3944
|
id: string;
|
|
3945
3945
|
qualificationId: string;
|
|
3946
3946
|
qualificationTypeId?: string | null | undefined;
|
|
3947
3947
|
}[];
|
|
3948
|
+
workHours?: number | null | undefined;
|
|
3948
3949
|
location?: {
|
|
3949
3950
|
address?: string | null | undefined;
|
|
3950
3951
|
postcode?: string | null | undefined;
|
|
@@ -3954,24 +3955,23 @@ export declare const jobsContractRouter: {
|
|
|
3954
3955
|
postTown?: string | null | undefined;
|
|
3955
3956
|
areaCovered?: string | null | undefined;
|
|
3956
3957
|
} | null | undefined;
|
|
3957
|
-
workHours?: number | null | undefined;
|
|
3958
3958
|
currentCollaboration?: {
|
|
3959
|
-
status: "
|
|
3960
|
-
id: string;
|
|
3959
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3961
3960
|
createdAt: string;
|
|
3962
3961
|
updatedAt: string;
|
|
3962
|
+
id: string;
|
|
3963
3963
|
userId: string;
|
|
3964
3964
|
company?: {
|
|
3965
|
-
id: string;
|
|
3966
3965
|
createdAt: string;
|
|
3967
3966
|
updatedAt: string;
|
|
3967
|
+
id: string;
|
|
3968
3968
|
name: string;
|
|
3969
3969
|
} | null | undefined;
|
|
3970
3970
|
client?: {
|
|
3971
|
-
status: "
|
|
3972
|
-
id: string;
|
|
3971
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
3973
3972
|
createdAt: string;
|
|
3974
3973
|
updatedAt: string;
|
|
3974
|
+
id: string;
|
|
3975
3975
|
name: string;
|
|
3976
3976
|
crn: string;
|
|
3977
3977
|
govLink: string;
|
|
@@ -3994,22 +3994,22 @@ export declare const jobsContractRouter: {
|
|
|
3994
3994
|
email: string;
|
|
3995
3995
|
} | null | undefined;
|
|
3996
3996
|
newCollaboration?: {
|
|
3997
|
-
status: "
|
|
3998
|
-
id: string;
|
|
3997
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
3999
3998
|
createdAt: string;
|
|
4000
3999
|
updatedAt: string;
|
|
4000
|
+
id: string;
|
|
4001
4001
|
userId: string;
|
|
4002
4002
|
company?: {
|
|
4003
|
-
id: string;
|
|
4004
4003
|
createdAt: string;
|
|
4005
4004
|
updatedAt: string;
|
|
4005
|
+
id: string;
|
|
4006
4006
|
name: string;
|
|
4007
4007
|
} | null | undefined;
|
|
4008
4008
|
client?: {
|
|
4009
|
-
status: "
|
|
4010
|
-
id: string;
|
|
4009
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4011
4010
|
createdAt: string;
|
|
4012
4011
|
updatedAt: string;
|
|
4012
|
+
id: string;
|
|
4013
4013
|
name: string;
|
|
4014
4014
|
crn: string;
|
|
4015
4015
|
govLink: string;
|
|
@@ -4041,19 +4041,20 @@ export declare const jobsContractRouter: {
|
|
|
4041
4041
|
}, {
|
|
4042
4042
|
limit: number;
|
|
4043
4043
|
items: {
|
|
4044
|
-
|
|
4045
|
-
|
|
4044
|
+
description: string;
|
|
4045
|
+
numberOfPositions: number;
|
|
4046
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4046
4047
|
createdAt: string | Date;
|
|
4047
4048
|
updatedAt: string | Date;
|
|
4048
|
-
|
|
4049
|
-
tradeId: string;
|
|
4049
|
+
id: string;
|
|
4050
4050
|
pay: {
|
|
4051
|
-
rate: number;
|
|
4052
4051
|
rateUnit: "DAILY" | "HOURLY";
|
|
4052
|
+
rate: number;
|
|
4053
4053
|
receivedRate: number;
|
|
4054
4054
|
rateMax?: number | null | undefined;
|
|
4055
4055
|
};
|
|
4056
|
-
|
|
4056
|
+
tradeId: string;
|
|
4057
|
+
workHours?: number | null | undefined;
|
|
4057
4058
|
location?: {
|
|
4058
4059
|
address?: string | null | undefined;
|
|
4059
4060
|
postcode?: string | null | undefined;
|
|
@@ -4063,29 +4064,28 @@ export declare const jobsContractRouter: {
|
|
|
4063
4064
|
postTown?: string | null | undefined;
|
|
4064
4065
|
areaCovered?: string | null | undefined;
|
|
4065
4066
|
} | null | undefined;
|
|
4066
|
-
workHours?: number | null | undefined;
|
|
4067
4067
|
jobQualifications?: {
|
|
4068
4068
|
id: string;
|
|
4069
4069
|
qualificationId: string;
|
|
4070
4070
|
qualificationTypeId?: string | null | undefined;
|
|
4071
4071
|
}[] | undefined;
|
|
4072
4072
|
currentCollaboration?: {
|
|
4073
|
-
status: "
|
|
4074
|
-
id: string;
|
|
4073
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4075
4074
|
createdAt: string | Date;
|
|
4076
4075
|
updatedAt: string | Date;
|
|
4076
|
+
id: string;
|
|
4077
4077
|
userId: string;
|
|
4078
4078
|
company?: {
|
|
4079
|
-
id: string;
|
|
4080
4079
|
createdAt: string | Date;
|
|
4081
4080
|
updatedAt: string | Date;
|
|
4081
|
+
id: string;
|
|
4082
4082
|
name: string;
|
|
4083
4083
|
} | null | undefined;
|
|
4084
4084
|
client?: {
|
|
4085
|
-
status: "
|
|
4086
|
-
id: string;
|
|
4085
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4087
4086
|
createdAt: string | Date;
|
|
4088
4087
|
updatedAt: string | Date;
|
|
4088
|
+
id: string;
|
|
4089
4089
|
name: string;
|
|
4090
4090
|
crn: string;
|
|
4091
4091
|
govLink: string;
|
|
@@ -4108,22 +4108,22 @@ export declare const jobsContractRouter: {
|
|
|
4108
4108
|
email: string;
|
|
4109
4109
|
} | null | undefined;
|
|
4110
4110
|
newCollaboration?: {
|
|
4111
|
-
status: "
|
|
4112
|
-
id: string;
|
|
4111
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4113
4112
|
createdAt: string | Date;
|
|
4114
4113
|
updatedAt: string | Date;
|
|
4114
|
+
id: string;
|
|
4115
4115
|
userId: string;
|
|
4116
4116
|
company?: {
|
|
4117
|
-
id: string;
|
|
4118
4117
|
createdAt: string | Date;
|
|
4119
4118
|
updatedAt: string | Date;
|
|
4119
|
+
id: string;
|
|
4120
4120
|
name: string;
|
|
4121
4121
|
} | null | undefined;
|
|
4122
4122
|
client?: {
|
|
4123
|
-
status: "
|
|
4124
|
-
id: string;
|
|
4123
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4125
4124
|
createdAt: string | Date;
|
|
4126
4125
|
updatedAt: string | Date;
|
|
4126
|
+
id: string;
|
|
4127
4127
|
name: string;
|
|
4128
4128
|
crn: string;
|
|
4129
4129
|
govLink: string;
|
|
@@ -4285,13 +4285,13 @@ export declare const jobsContractRouter: {
|
|
|
4285
4285
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
4286
4286
|
receivedRate: z.ZodNumber;
|
|
4287
4287
|
}, "strip", z.ZodTypeAny, {
|
|
4288
|
-
rate: number;
|
|
4289
4288
|
rateUnit: "DAILY" | "HOURLY";
|
|
4289
|
+
rate: number;
|
|
4290
4290
|
receivedRate: number;
|
|
4291
4291
|
rateMax?: number | null | undefined;
|
|
4292
4292
|
}, {
|
|
4293
|
-
rate: number;
|
|
4294
4293
|
rateUnit: "DAILY" | "HOURLY";
|
|
4294
|
+
rate: number;
|
|
4295
4295
|
receivedRate: number;
|
|
4296
4296
|
rateMax?: number | null | undefined;
|
|
4297
4297
|
}>;
|
|
@@ -4342,14 +4342,14 @@ export declare const jobsContractRouter: {
|
|
|
4342
4342
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4343
4343
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4344
4344
|
}, "strip", z.ZodTypeAny, {
|
|
4345
|
-
id: string;
|
|
4346
4345
|
createdAt: string;
|
|
4347
4346
|
updatedAt: string;
|
|
4347
|
+
id: string;
|
|
4348
4348
|
name: string;
|
|
4349
4349
|
}, {
|
|
4350
|
-
id: string;
|
|
4351
4350
|
createdAt: string | Date;
|
|
4352
4351
|
updatedAt: string | Date;
|
|
4352
|
+
id: string;
|
|
4353
4353
|
name: string;
|
|
4354
4354
|
}>>>;
|
|
4355
4355
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4386,10 +4386,10 @@ export declare const jobsContractRouter: {
|
|
|
4386
4386
|
agentId: string;
|
|
4387
4387
|
}>>>;
|
|
4388
4388
|
}, "strip", z.ZodTypeAny, {
|
|
4389
|
-
status: "
|
|
4390
|
-
id: string;
|
|
4389
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4391
4390
|
createdAt: string;
|
|
4392
4391
|
updatedAt: string;
|
|
4392
|
+
id: string;
|
|
4393
4393
|
name: string;
|
|
4394
4394
|
crn: string;
|
|
4395
4395
|
govLink: string;
|
|
@@ -4405,10 +4405,10 @@ export declare const jobsContractRouter: {
|
|
|
4405
4405
|
agentId: string;
|
|
4406
4406
|
} | null | undefined;
|
|
4407
4407
|
}, {
|
|
4408
|
-
status: "
|
|
4409
|
-
id: string;
|
|
4408
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4410
4409
|
createdAt: string | Date;
|
|
4411
4410
|
updatedAt: string | Date;
|
|
4411
|
+
id: string;
|
|
4412
4412
|
name: string;
|
|
4413
4413
|
crn: string;
|
|
4414
4414
|
govLink: string;
|
|
@@ -4453,14 +4453,14 @@ export declare const jobsContractRouter: {
|
|
|
4453
4453
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4454
4454
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4455
4455
|
}, "strip", z.ZodTypeAny, {
|
|
4456
|
-
id: string;
|
|
4457
4456
|
createdAt: string;
|
|
4458
4457
|
updatedAt: string;
|
|
4458
|
+
id: string;
|
|
4459
4459
|
name: string;
|
|
4460
4460
|
}, {
|
|
4461
|
-
id: string;
|
|
4462
4461
|
createdAt: string | Date;
|
|
4463
4462
|
updatedAt: string | Date;
|
|
4463
|
+
id: string;
|
|
4464
4464
|
name: string;
|
|
4465
4465
|
}>>>;
|
|
4466
4466
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4497,10 +4497,10 @@ export declare const jobsContractRouter: {
|
|
|
4497
4497
|
agentId: string;
|
|
4498
4498
|
}>>>;
|
|
4499
4499
|
}, "strip", z.ZodTypeAny, {
|
|
4500
|
-
status: "
|
|
4501
|
-
id: string;
|
|
4500
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4502
4501
|
createdAt: string;
|
|
4503
4502
|
updatedAt: string;
|
|
4503
|
+
id: string;
|
|
4504
4504
|
name: string;
|
|
4505
4505
|
crn: string;
|
|
4506
4506
|
govLink: string;
|
|
@@ -4516,10 +4516,10 @@ export declare const jobsContractRouter: {
|
|
|
4516
4516
|
agentId: string;
|
|
4517
4517
|
} | null | undefined;
|
|
4518
4518
|
}, {
|
|
4519
|
-
status: "
|
|
4520
|
-
id: string;
|
|
4519
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4521
4520
|
createdAt: string | Date;
|
|
4522
4521
|
updatedAt: string | Date;
|
|
4522
|
+
id: string;
|
|
4523
4523
|
name: string;
|
|
4524
4524
|
crn: string;
|
|
4525
4525
|
govLink: string;
|
|
@@ -4556,22 +4556,22 @@ export declare const jobsContractRouter: {
|
|
|
4556
4556
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4557
4557
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4558
4558
|
}, "strip", z.ZodTypeAny, {
|
|
4559
|
-
status: "
|
|
4560
|
-
id: string;
|
|
4559
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4561
4560
|
createdAt: string;
|
|
4562
4561
|
updatedAt: string;
|
|
4562
|
+
id: string;
|
|
4563
4563
|
userId: string;
|
|
4564
4564
|
company?: {
|
|
4565
|
-
id: string;
|
|
4566
4565
|
createdAt: string;
|
|
4567
4566
|
updatedAt: string;
|
|
4567
|
+
id: string;
|
|
4568
4568
|
name: string;
|
|
4569
4569
|
} | null | undefined;
|
|
4570
4570
|
client?: {
|
|
4571
|
-
status: "
|
|
4572
|
-
id: string;
|
|
4571
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4573
4572
|
createdAt: string;
|
|
4574
4573
|
updatedAt: string;
|
|
4574
|
+
id: string;
|
|
4575
4575
|
name: string;
|
|
4576
4576
|
crn: string;
|
|
4577
4577
|
govLink: string;
|
|
@@ -4594,22 +4594,22 @@ export declare const jobsContractRouter: {
|
|
|
4594
4594
|
email: string;
|
|
4595
4595
|
} | null | undefined;
|
|
4596
4596
|
}, {
|
|
4597
|
-
status: "
|
|
4598
|
-
id: string;
|
|
4597
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4599
4598
|
createdAt: string | Date;
|
|
4600
4599
|
updatedAt: string | Date;
|
|
4600
|
+
id: string;
|
|
4601
4601
|
userId: string;
|
|
4602
4602
|
company?: {
|
|
4603
|
-
id: string;
|
|
4604
4603
|
createdAt: string | Date;
|
|
4605
4604
|
updatedAt: string | Date;
|
|
4605
|
+
id: string;
|
|
4606
4606
|
name: string;
|
|
4607
4607
|
} | null | undefined;
|
|
4608
4608
|
client?: {
|
|
4609
|
-
status: "
|
|
4610
|
-
id: string;
|
|
4609
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4611
4610
|
createdAt: string | Date;
|
|
4612
4611
|
updatedAt: string | Date;
|
|
4612
|
+
id: string;
|
|
4613
4613
|
name: string;
|
|
4614
4614
|
crn: string;
|
|
4615
4615
|
govLink: string;
|
|
@@ -4633,22 +4633,22 @@ export declare const jobsContractRouter: {
|
|
|
4633
4633
|
} | null | undefined;
|
|
4634
4634
|
}>>>;
|
|
4635
4635
|
}, "strip", z.ZodTypeAny, {
|
|
4636
|
-
status: "
|
|
4637
|
-
id: string;
|
|
4636
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4638
4637
|
createdAt: string;
|
|
4639
4638
|
updatedAt: string;
|
|
4639
|
+
id: string;
|
|
4640
4640
|
userId: string;
|
|
4641
4641
|
company?: {
|
|
4642
|
-
id: string;
|
|
4643
4642
|
createdAt: string;
|
|
4644
4643
|
updatedAt: string;
|
|
4644
|
+
id: string;
|
|
4645
4645
|
name: string;
|
|
4646
4646
|
} | null | undefined;
|
|
4647
4647
|
client?: {
|
|
4648
|
-
status: "
|
|
4649
|
-
id: string;
|
|
4648
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4650
4649
|
createdAt: string;
|
|
4651
4650
|
updatedAt: string;
|
|
4651
|
+
id: string;
|
|
4652
4652
|
name: string;
|
|
4653
4653
|
crn: string;
|
|
4654
4654
|
govLink: string;
|
|
@@ -4671,22 +4671,22 @@ export declare const jobsContractRouter: {
|
|
|
4671
4671
|
email: string;
|
|
4672
4672
|
} | null | undefined;
|
|
4673
4673
|
newCollaboration?: {
|
|
4674
|
-
status: "
|
|
4675
|
-
id: string;
|
|
4674
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4676
4675
|
createdAt: string;
|
|
4677
4676
|
updatedAt: string;
|
|
4677
|
+
id: string;
|
|
4678
4678
|
userId: string;
|
|
4679
4679
|
company?: {
|
|
4680
|
-
id: string;
|
|
4681
4680
|
createdAt: string;
|
|
4682
4681
|
updatedAt: string;
|
|
4682
|
+
id: string;
|
|
4683
4683
|
name: string;
|
|
4684
4684
|
} | null | undefined;
|
|
4685
4685
|
client?: {
|
|
4686
|
-
status: "
|
|
4687
|
-
id: string;
|
|
4686
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4688
4687
|
createdAt: string;
|
|
4689
4688
|
updatedAt: string;
|
|
4689
|
+
id: string;
|
|
4690
4690
|
name: string;
|
|
4691
4691
|
crn: string;
|
|
4692
4692
|
govLink: string;
|
|
@@ -4710,22 +4710,22 @@ export declare const jobsContractRouter: {
|
|
|
4710
4710
|
} | null | undefined;
|
|
4711
4711
|
} | null | undefined;
|
|
4712
4712
|
}, {
|
|
4713
|
-
status: "
|
|
4714
|
-
id: string;
|
|
4713
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4715
4714
|
createdAt: string | Date;
|
|
4716
4715
|
updatedAt: string | Date;
|
|
4716
|
+
id: string;
|
|
4717
4717
|
userId: string;
|
|
4718
4718
|
company?: {
|
|
4719
|
-
id: string;
|
|
4720
4719
|
createdAt: string | Date;
|
|
4721
4720
|
updatedAt: string | Date;
|
|
4721
|
+
id: string;
|
|
4722
4722
|
name: string;
|
|
4723
4723
|
} | null | undefined;
|
|
4724
4724
|
client?: {
|
|
4725
|
-
status: "
|
|
4726
|
-
id: string;
|
|
4725
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4727
4726
|
createdAt: string | Date;
|
|
4728
4727
|
updatedAt: string | Date;
|
|
4728
|
+
id: string;
|
|
4729
4729
|
name: string;
|
|
4730
4730
|
crn: string;
|
|
4731
4731
|
govLink: string;
|
|
@@ -4748,22 +4748,22 @@ export declare const jobsContractRouter: {
|
|
|
4748
4748
|
email: string;
|
|
4749
4749
|
} | null | undefined;
|
|
4750
4750
|
newCollaboration?: {
|
|
4751
|
-
status: "
|
|
4752
|
-
id: string;
|
|
4751
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4753
4752
|
createdAt: string | Date;
|
|
4754
4753
|
updatedAt: string | Date;
|
|
4754
|
+
id: string;
|
|
4755
4755
|
userId: string;
|
|
4756
4756
|
company?: {
|
|
4757
|
-
id: string;
|
|
4758
4757
|
createdAt: string | Date;
|
|
4759
4758
|
updatedAt: string | Date;
|
|
4759
|
+
id: string;
|
|
4760
4760
|
name: string;
|
|
4761
4761
|
} | null | undefined;
|
|
4762
4762
|
client?: {
|
|
4763
|
-
status: "
|
|
4764
|
-
id: string;
|
|
4763
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4765
4764
|
createdAt: string | Date;
|
|
4766
4765
|
updatedAt: string | Date;
|
|
4766
|
+
id: string;
|
|
4767
4767
|
name: string;
|
|
4768
4768
|
crn: string;
|
|
4769
4769
|
govLink: string;
|
|
@@ -4790,24 +4790,25 @@ export declare const jobsContractRouter: {
|
|
|
4790
4790
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4791
4791
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
4792
4792
|
}, "strip", z.ZodTypeAny, {
|
|
4793
|
-
|
|
4794
|
-
|
|
4793
|
+
description: string;
|
|
4794
|
+
numberOfPositions: number;
|
|
4795
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4795
4796
|
createdAt: string;
|
|
4796
4797
|
updatedAt: string;
|
|
4797
|
-
|
|
4798
|
-
tradeId: string;
|
|
4798
|
+
id: string;
|
|
4799
4799
|
pay: {
|
|
4800
|
-
rate: number;
|
|
4801
4800
|
rateUnit: "DAILY" | "HOURLY";
|
|
4801
|
+
rate: number;
|
|
4802
4802
|
receivedRate: number;
|
|
4803
4803
|
rateMax?: number | null | undefined;
|
|
4804
4804
|
};
|
|
4805
|
-
|
|
4805
|
+
tradeId: string;
|
|
4806
4806
|
jobQualifications: {
|
|
4807
4807
|
id: string;
|
|
4808
4808
|
qualificationId: string;
|
|
4809
4809
|
qualificationTypeId?: string | null | undefined;
|
|
4810
4810
|
}[];
|
|
4811
|
+
workHours?: number | null | undefined;
|
|
4811
4812
|
location?: {
|
|
4812
4813
|
address?: string | null | undefined;
|
|
4813
4814
|
postcode?: string | null | undefined;
|
|
@@ -4817,24 +4818,23 @@ export declare const jobsContractRouter: {
|
|
|
4817
4818
|
postTown?: string | null | undefined;
|
|
4818
4819
|
areaCovered?: string | null | undefined;
|
|
4819
4820
|
} | null | undefined;
|
|
4820
|
-
workHours?: number | null | undefined;
|
|
4821
4821
|
currentCollaboration?: {
|
|
4822
|
-
status: "
|
|
4823
|
-
id: string;
|
|
4822
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4824
4823
|
createdAt: string;
|
|
4825
4824
|
updatedAt: string;
|
|
4825
|
+
id: string;
|
|
4826
4826
|
userId: string;
|
|
4827
4827
|
company?: {
|
|
4828
|
-
id: string;
|
|
4829
4828
|
createdAt: string;
|
|
4830
4829
|
updatedAt: string;
|
|
4830
|
+
id: string;
|
|
4831
4831
|
name: string;
|
|
4832
4832
|
} | null | undefined;
|
|
4833
4833
|
client?: {
|
|
4834
|
-
status: "
|
|
4835
|
-
id: string;
|
|
4834
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4836
4835
|
createdAt: string;
|
|
4837
4836
|
updatedAt: string;
|
|
4837
|
+
id: string;
|
|
4838
4838
|
name: string;
|
|
4839
4839
|
crn: string;
|
|
4840
4840
|
govLink: string;
|
|
@@ -4857,22 +4857,22 @@ export declare const jobsContractRouter: {
|
|
|
4857
4857
|
email: string;
|
|
4858
4858
|
} | null | undefined;
|
|
4859
4859
|
newCollaboration?: {
|
|
4860
|
-
status: "
|
|
4861
|
-
id: string;
|
|
4860
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4862
4861
|
createdAt: string;
|
|
4863
4862
|
updatedAt: string;
|
|
4863
|
+
id: string;
|
|
4864
4864
|
userId: string;
|
|
4865
4865
|
company?: {
|
|
4866
|
-
id: string;
|
|
4867
4866
|
createdAt: string;
|
|
4868
4867
|
updatedAt: string;
|
|
4868
|
+
id: string;
|
|
4869
4869
|
name: string;
|
|
4870
4870
|
} | null | undefined;
|
|
4871
4871
|
client?: {
|
|
4872
|
-
status: "
|
|
4873
|
-
id: string;
|
|
4872
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4874
4873
|
createdAt: string;
|
|
4875
4874
|
updatedAt: string;
|
|
4875
|
+
id: string;
|
|
4876
4876
|
name: string;
|
|
4877
4877
|
crn: string;
|
|
4878
4878
|
govLink: string;
|
|
@@ -4897,19 +4897,20 @@ export declare const jobsContractRouter: {
|
|
|
4897
4897
|
} | null | undefined;
|
|
4898
4898
|
} | null | undefined;
|
|
4899
4899
|
}, {
|
|
4900
|
-
|
|
4901
|
-
|
|
4900
|
+
description: string;
|
|
4901
|
+
numberOfPositions: number;
|
|
4902
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
4902
4903
|
createdAt: string | Date;
|
|
4903
4904
|
updatedAt: string | Date;
|
|
4904
|
-
|
|
4905
|
-
tradeId: string;
|
|
4905
|
+
id: string;
|
|
4906
4906
|
pay: {
|
|
4907
|
-
rate: number;
|
|
4908
4907
|
rateUnit: "DAILY" | "HOURLY";
|
|
4908
|
+
rate: number;
|
|
4909
4909
|
receivedRate: number;
|
|
4910
4910
|
rateMax?: number | null | undefined;
|
|
4911
4911
|
};
|
|
4912
|
-
|
|
4912
|
+
tradeId: string;
|
|
4913
|
+
workHours?: number | null | undefined;
|
|
4913
4914
|
location?: {
|
|
4914
4915
|
address?: string | null | undefined;
|
|
4915
4916
|
postcode?: string | null | undefined;
|
|
@@ -4919,29 +4920,28 @@ export declare const jobsContractRouter: {
|
|
|
4919
4920
|
postTown?: string | null | undefined;
|
|
4920
4921
|
areaCovered?: string | null | undefined;
|
|
4921
4922
|
} | null | undefined;
|
|
4922
|
-
workHours?: number | null | undefined;
|
|
4923
4923
|
jobQualifications?: {
|
|
4924
4924
|
id: string;
|
|
4925
4925
|
qualificationId: string;
|
|
4926
4926
|
qualificationTypeId?: string | null | undefined;
|
|
4927
4927
|
}[] | undefined;
|
|
4928
4928
|
currentCollaboration?: {
|
|
4929
|
-
status: "
|
|
4930
|
-
id: string;
|
|
4929
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4931
4930
|
createdAt: string | Date;
|
|
4932
4931
|
updatedAt: string | Date;
|
|
4932
|
+
id: string;
|
|
4933
4933
|
userId: string;
|
|
4934
4934
|
company?: {
|
|
4935
|
-
id: string;
|
|
4936
4935
|
createdAt: string | Date;
|
|
4937
4936
|
updatedAt: string | Date;
|
|
4937
|
+
id: string;
|
|
4938
4938
|
name: string;
|
|
4939
4939
|
} | null | undefined;
|
|
4940
4940
|
client?: {
|
|
4941
|
-
status: "
|
|
4942
|
-
id: string;
|
|
4941
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4943
4942
|
createdAt: string | Date;
|
|
4944
4943
|
updatedAt: string | Date;
|
|
4944
|
+
id: string;
|
|
4945
4945
|
name: string;
|
|
4946
4946
|
crn: string;
|
|
4947
4947
|
govLink: string;
|
|
@@ -4964,22 +4964,22 @@ export declare const jobsContractRouter: {
|
|
|
4964
4964
|
email: string;
|
|
4965
4965
|
} | null | undefined;
|
|
4966
4966
|
newCollaboration?: {
|
|
4967
|
-
status: "
|
|
4968
|
-
id: string;
|
|
4967
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
4969
4968
|
createdAt: string | Date;
|
|
4970
4969
|
updatedAt: string | Date;
|
|
4970
|
+
id: string;
|
|
4971
4971
|
userId: string;
|
|
4972
4972
|
company?: {
|
|
4973
|
-
id: string;
|
|
4974
4973
|
createdAt: string | Date;
|
|
4975
4974
|
updatedAt: string | Date;
|
|
4975
|
+
id: string;
|
|
4976
4976
|
name: string;
|
|
4977
4977
|
} | null | undefined;
|
|
4978
4978
|
client?: {
|
|
4979
|
-
status: "
|
|
4980
|
-
id: string;
|
|
4979
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
4981
4980
|
createdAt: string | Date;
|
|
4982
4981
|
updatedAt: string | Date;
|
|
4982
|
+
id: string;
|
|
4983
4983
|
name: string;
|
|
4984
4984
|
crn: string;
|
|
4985
4985
|
govLink: string;
|
|
@@ -5067,8 +5067,8 @@ export declare const jobsContractRouter: {
|
|
|
5067
5067
|
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5068
5068
|
receivedRate: z.ZodNumber;
|
|
5069
5069
|
}, "strip", z.ZodTypeAny, {
|
|
5070
|
-
rate: number;
|
|
5071
5070
|
rateUnit: "DAILY" | "HOURLY";
|
|
5071
|
+
rate: number;
|
|
5072
5072
|
receivedRate: number;
|
|
5073
5073
|
rateMax?: number | null | undefined;
|
|
5074
5074
|
}, {
|
|
@@ -5097,21 +5097,21 @@ export declare const jobsContractRouter: {
|
|
|
5097
5097
|
}>, "many">>;
|
|
5098
5098
|
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>>;
|
|
5099
5099
|
}, "strip", z.ZodTypeAny, {
|
|
5100
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
5101
5100
|
description?: string | undefined;
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5105
|
-
postcode?: string | null | undefined;
|
|
5106
|
-
} | undefined;
|
|
5101
|
+
numberOfPositions?: number | undefined;
|
|
5102
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5103
|
+
workHours?: number | undefined;
|
|
5107
5104
|
pay?: {
|
|
5108
|
-
rate: number;
|
|
5109
5105
|
rateUnit: "DAILY" | "HOURLY";
|
|
5106
|
+
rate: number;
|
|
5110
5107
|
receivedRate: number;
|
|
5111
5108
|
rateMax?: number | null | undefined;
|
|
5112
5109
|
} | undefined;
|
|
5113
|
-
|
|
5114
|
-
|
|
5110
|
+
location?: {
|
|
5111
|
+
address?: string | null | undefined;
|
|
5112
|
+
postcode?: string | null | undefined;
|
|
5113
|
+
} | undefined;
|
|
5114
|
+
tradeId?: string | undefined;
|
|
5115
5115
|
jobQualifications?: {
|
|
5116
5116
|
qualificationId: string;
|
|
5117
5117
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5120,21 +5120,21 @@ export declare const jobsContractRouter: {
|
|
|
5120
5120
|
id: string;
|
|
5121
5121
|
} | undefined;
|
|
5122
5122
|
}, {
|
|
5123
|
-
status?: "AVAILABLE" | "CANCELED" | "FILLED" | "NOT_AVAILABLE" | undefined;
|
|
5124
5123
|
description?: string | undefined;
|
|
5125
|
-
|
|
5126
|
-
|
|
5127
|
-
|
|
5128
|
-
postcode?: string | null | undefined;
|
|
5129
|
-
} | undefined;
|
|
5124
|
+
numberOfPositions?: number | undefined;
|
|
5125
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | undefined;
|
|
5126
|
+
workHours?: number | undefined;
|
|
5130
5127
|
pay?: {
|
|
5131
5128
|
rate: number;
|
|
5132
5129
|
receivedRate: number;
|
|
5133
5130
|
rateUnit?: "DAILY" | "HOURLY" | undefined;
|
|
5134
5131
|
rateMax?: number | null | undefined;
|
|
5135
5132
|
} | undefined;
|
|
5136
|
-
|
|
5137
|
-
|
|
5133
|
+
location?: {
|
|
5134
|
+
address?: string | null | undefined;
|
|
5135
|
+
postcode?: string | null | undefined;
|
|
5136
|
+
} | undefined;
|
|
5137
|
+
tradeId?: string | undefined;
|
|
5138
5138
|
jobQualifications?: {
|
|
5139
5139
|
qualificationId: string;
|
|
5140
5140
|
qualificationTypeId?: string | null | undefined;
|
|
@@ -5257,13 +5257,13 @@ export declare const jobsContractRouter: {
|
|
|
5257
5257
|
rateMax: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
5258
5258
|
receivedRate: z.ZodNumber;
|
|
5259
5259
|
}, "strip", z.ZodTypeAny, {
|
|
5260
|
-
rate: number;
|
|
5261
5260
|
rateUnit: "DAILY" | "HOURLY";
|
|
5261
|
+
rate: number;
|
|
5262
5262
|
receivedRate: number;
|
|
5263
5263
|
rateMax?: number | null | undefined;
|
|
5264
5264
|
}, {
|
|
5265
|
-
rate: number;
|
|
5266
5265
|
rateUnit: "DAILY" | "HOURLY";
|
|
5266
|
+
rate: number;
|
|
5267
5267
|
receivedRate: number;
|
|
5268
5268
|
rateMax?: number | null | undefined;
|
|
5269
5269
|
}>;
|
|
@@ -5314,14 +5314,14 @@ export declare const jobsContractRouter: {
|
|
|
5314
5314
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5315
5315
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5316
5316
|
}, "strip", z.ZodTypeAny, {
|
|
5317
|
-
id: string;
|
|
5318
5317
|
createdAt: string;
|
|
5319
5318
|
updatedAt: string;
|
|
5319
|
+
id: string;
|
|
5320
5320
|
name: string;
|
|
5321
5321
|
}, {
|
|
5322
|
-
id: string;
|
|
5323
5322
|
createdAt: string | Date;
|
|
5324
5323
|
updatedAt: string | Date;
|
|
5324
|
+
id: string;
|
|
5325
5325
|
name: string;
|
|
5326
5326
|
}>>>;
|
|
5327
5327
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5358,10 +5358,10 @@ export declare const jobsContractRouter: {
|
|
|
5358
5358
|
agentId: string;
|
|
5359
5359
|
}>>>;
|
|
5360
5360
|
}, "strip", z.ZodTypeAny, {
|
|
5361
|
-
status: "
|
|
5362
|
-
id: string;
|
|
5361
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5363
5362
|
createdAt: string;
|
|
5364
5363
|
updatedAt: string;
|
|
5364
|
+
id: string;
|
|
5365
5365
|
name: string;
|
|
5366
5366
|
crn: string;
|
|
5367
5367
|
govLink: string;
|
|
@@ -5377,10 +5377,10 @@ export declare const jobsContractRouter: {
|
|
|
5377
5377
|
agentId: string;
|
|
5378
5378
|
} | null | undefined;
|
|
5379
5379
|
}, {
|
|
5380
|
-
status: "
|
|
5381
|
-
id: string;
|
|
5380
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5382
5381
|
createdAt: string | Date;
|
|
5383
5382
|
updatedAt: string | Date;
|
|
5383
|
+
id: string;
|
|
5384
5384
|
name: string;
|
|
5385
5385
|
crn: string;
|
|
5386
5386
|
govLink: string;
|
|
@@ -5425,14 +5425,14 @@ export declare const jobsContractRouter: {
|
|
|
5425
5425
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5426
5426
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5427
5427
|
}, "strip", z.ZodTypeAny, {
|
|
5428
|
-
id: string;
|
|
5429
5428
|
createdAt: string;
|
|
5430
5429
|
updatedAt: string;
|
|
5430
|
+
id: string;
|
|
5431
5431
|
name: string;
|
|
5432
5432
|
}, {
|
|
5433
|
-
id: string;
|
|
5434
5433
|
createdAt: string | Date;
|
|
5435
5434
|
updatedAt: string | Date;
|
|
5435
|
+
id: string;
|
|
5436
5436
|
name: string;
|
|
5437
5437
|
}>>>;
|
|
5438
5438
|
client: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -5469,10 +5469,10 @@ export declare const jobsContractRouter: {
|
|
|
5469
5469
|
agentId: string;
|
|
5470
5470
|
}>>>;
|
|
5471
5471
|
}, "strip", z.ZodTypeAny, {
|
|
5472
|
-
status: "
|
|
5473
|
-
id: string;
|
|
5472
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5474
5473
|
createdAt: string;
|
|
5475
5474
|
updatedAt: string;
|
|
5475
|
+
id: string;
|
|
5476
5476
|
name: string;
|
|
5477
5477
|
crn: string;
|
|
5478
5478
|
govLink: string;
|
|
@@ -5488,10 +5488,10 @@ export declare const jobsContractRouter: {
|
|
|
5488
5488
|
agentId: string;
|
|
5489
5489
|
} | null | undefined;
|
|
5490
5490
|
}, {
|
|
5491
|
-
status: "
|
|
5492
|
-
id: string;
|
|
5491
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5493
5492
|
createdAt: string | Date;
|
|
5494
5493
|
updatedAt: string | Date;
|
|
5494
|
+
id: string;
|
|
5495
5495
|
name: string;
|
|
5496
5496
|
crn: string;
|
|
5497
5497
|
govLink: string;
|
|
@@ -5528,22 +5528,22 @@ export declare const jobsContractRouter: {
|
|
|
5528
5528
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5529
5529
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5530
5530
|
}, "strip", z.ZodTypeAny, {
|
|
5531
|
-
status: "
|
|
5532
|
-
id: string;
|
|
5531
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5533
5532
|
createdAt: string;
|
|
5534
5533
|
updatedAt: string;
|
|
5534
|
+
id: string;
|
|
5535
5535
|
userId: string;
|
|
5536
5536
|
company?: {
|
|
5537
|
-
id: string;
|
|
5538
5537
|
createdAt: string;
|
|
5539
5538
|
updatedAt: string;
|
|
5539
|
+
id: string;
|
|
5540
5540
|
name: string;
|
|
5541
5541
|
} | null | undefined;
|
|
5542
5542
|
client?: {
|
|
5543
|
-
status: "
|
|
5544
|
-
id: string;
|
|
5543
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5545
5544
|
createdAt: string;
|
|
5546
5545
|
updatedAt: string;
|
|
5546
|
+
id: string;
|
|
5547
5547
|
name: string;
|
|
5548
5548
|
crn: string;
|
|
5549
5549
|
govLink: string;
|
|
@@ -5566,22 +5566,22 @@ export declare const jobsContractRouter: {
|
|
|
5566
5566
|
email: string;
|
|
5567
5567
|
} | null | undefined;
|
|
5568
5568
|
}, {
|
|
5569
|
-
status: "
|
|
5570
|
-
id: string;
|
|
5569
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5571
5570
|
createdAt: string | Date;
|
|
5572
5571
|
updatedAt: string | Date;
|
|
5572
|
+
id: string;
|
|
5573
5573
|
userId: string;
|
|
5574
5574
|
company?: {
|
|
5575
|
-
id: string;
|
|
5576
5575
|
createdAt: string | Date;
|
|
5577
5576
|
updatedAt: string | Date;
|
|
5577
|
+
id: string;
|
|
5578
5578
|
name: string;
|
|
5579
5579
|
} | null | undefined;
|
|
5580
5580
|
client?: {
|
|
5581
|
-
status: "
|
|
5582
|
-
id: string;
|
|
5581
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5583
5582
|
createdAt: string | Date;
|
|
5584
5583
|
updatedAt: string | Date;
|
|
5584
|
+
id: string;
|
|
5585
5585
|
name: string;
|
|
5586
5586
|
crn: string;
|
|
5587
5587
|
govLink: string;
|
|
@@ -5605,22 +5605,22 @@ export declare const jobsContractRouter: {
|
|
|
5605
5605
|
} | null | undefined;
|
|
5606
5606
|
}>>>;
|
|
5607
5607
|
}, "strip", z.ZodTypeAny, {
|
|
5608
|
-
status: "
|
|
5609
|
-
id: string;
|
|
5608
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5610
5609
|
createdAt: string;
|
|
5611
5610
|
updatedAt: string;
|
|
5611
|
+
id: string;
|
|
5612
5612
|
userId: string;
|
|
5613
5613
|
company?: {
|
|
5614
|
-
id: string;
|
|
5615
5614
|
createdAt: string;
|
|
5616
5615
|
updatedAt: string;
|
|
5616
|
+
id: string;
|
|
5617
5617
|
name: string;
|
|
5618
5618
|
} | null | undefined;
|
|
5619
5619
|
client?: {
|
|
5620
|
-
status: "
|
|
5621
|
-
id: string;
|
|
5620
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5622
5621
|
createdAt: string;
|
|
5623
5622
|
updatedAt: string;
|
|
5623
|
+
id: string;
|
|
5624
5624
|
name: string;
|
|
5625
5625
|
crn: string;
|
|
5626
5626
|
govLink: string;
|
|
@@ -5643,22 +5643,22 @@ export declare const jobsContractRouter: {
|
|
|
5643
5643
|
email: string;
|
|
5644
5644
|
} | null | undefined;
|
|
5645
5645
|
newCollaboration?: {
|
|
5646
|
-
status: "
|
|
5647
|
-
id: string;
|
|
5646
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5648
5647
|
createdAt: string;
|
|
5649
5648
|
updatedAt: string;
|
|
5649
|
+
id: string;
|
|
5650
5650
|
userId: string;
|
|
5651
5651
|
company?: {
|
|
5652
|
-
id: string;
|
|
5653
5652
|
createdAt: string;
|
|
5654
5653
|
updatedAt: string;
|
|
5654
|
+
id: string;
|
|
5655
5655
|
name: string;
|
|
5656
5656
|
} | null | undefined;
|
|
5657
5657
|
client?: {
|
|
5658
|
-
status: "
|
|
5659
|
-
id: string;
|
|
5658
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5660
5659
|
createdAt: string;
|
|
5661
5660
|
updatedAt: string;
|
|
5661
|
+
id: string;
|
|
5662
5662
|
name: string;
|
|
5663
5663
|
crn: string;
|
|
5664
5664
|
govLink: string;
|
|
@@ -5682,22 +5682,22 @@ export declare const jobsContractRouter: {
|
|
|
5682
5682
|
} | null | undefined;
|
|
5683
5683
|
} | null | undefined;
|
|
5684
5684
|
}, {
|
|
5685
|
-
status: "
|
|
5686
|
-
id: string;
|
|
5685
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5687
5686
|
createdAt: string | Date;
|
|
5688
5687
|
updatedAt: string | Date;
|
|
5688
|
+
id: string;
|
|
5689
5689
|
userId: string;
|
|
5690
5690
|
company?: {
|
|
5691
|
-
id: string;
|
|
5692
5691
|
createdAt: string | Date;
|
|
5693
5692
|
updatedAt: string | Date;
|
|
5693
|
+
id: string;
|
|
5694
5694
|
name: string;
|
|
5695
5695
|
} | null | undefined;
|
|
5696
5696
|
client?: {
|
|
5697
|
-
status: "
|
|
5698
|
-
id: string;
|
|
5697
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5699
5698
|
createdAt: string | Date;
|
|
5700
5699
|
updatedAt: string | Date;
|
|
5700
|
+
id: string;
|
|
5701
5701
|
name: string;
|
|
5702
5702
|
crn: string;
|
|
5703
5703
|
govLink: string;
|
|
@@ -5720,22 +5720,22 @@ export declare const jobsContractRouter: {
|
|
|
5720
5720
|
email: string;
|
|
5721
5721
|
} | null | undefined;
|
|
5722
5722
|
newCollaboration?: {
|
|
5723
|
-
status: "
|
|
5724
|
-
id: string;
|
|
5723
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5725
5724
|
createdAt: string | Date;
|
|
5726
5725
|
updatedAt: string | Date;
|
|
5726
|
+
id: string;
|
|
5727
5727
|
userId: string;
|
|
5728
5728
|
company?: {
|
|
5729
|
-
id: string;
|
|
5730
5729
|
createdAt: string | Date;
|
|
5731
5730
|
updatedAt: string | Date;
|
|
5731
|
+
id: string;
|
|
5732
5732
|
name: string;
|
|
5733
5733
|
} | null | undefined;
|
|
5734
5734
|
client?: {
|
|
5735
|
-
status: "
|
|
5736
|
-
id: string;
|
|
5735
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5737
5736
|
createdAt: string | Date;
|
|
5738
5737
|
updatedAt: string | Date;
|
|
5738
|
+
id: string;
|
|
5739
5739
|
name: string;
|
|
5740
5740
|
crn: string;
|
|
5741
5741
|
govLink: string;
|
|
@@ -5762,24 +5762,25 @@ export declare const jobsContractRouter: {
|
|
|
5762
5762
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5763
5763
|
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
5764
5764
|
}, "strip", z.ZodTypeAny, {
|
|
5765
|
-
|
|
5766
|
-
|
|
5765
|
+
description: string;
|
|
5766
|
+
numberOfPositions: number;
|
|
5767
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5767
5768
|
createdAt: string;
|
|
5768
5769
|
updatedAt: string;
|
|
5769
|
-
|
|
5770
|
-
tradeId: string;
|
|
5770
|
+
id: string;
|
|
5771
5771
|
pay: {
|
|
5772
|
-
rate: number;
|
|
5773
5772
|
rateUnit: "DAILY" | "HOURLY";
|
|
5773
|
+
rate: number;
|
|
5774
5774
|
receivedRate: number;
|
|
5775
5775
|
rateMax?: number | null | undefined;
|
|
5776
5776
|
};
|
|
5777
|
-
|
|
5777
|
+
tradeId: string;
|
|
5778
5778
|
jobQualifications: {
|
|
5779
5779
|
id: string;
|
|
5780
5780
|
qualificationId: string;
|
|
5781
5781
|
qualificationTypeId?: string | null | undefined;
|
|
5782
5782
|
}[];
|
|
5783
|
+
workHours?: number | null | undefined;
|
|
5783
5784
|
location?: {
|
|
5784
5785
|
address?: string | null | undefined;
|
|
5785
5786
|
postcode?: string | null | undefined;
|
|
@@ -5789,24 +5790,23 @@ export declare const jobsContractRouter: {
|
|
|
5789
5790
|
postTown?: string | null | undefined;
|
|
5790
5791
|
areaCovered?: string | null | undefined;
|
|
5791
5792
|
} | null | undefined;
|
|
5792
|
-
workHours?: number | null | undefined;
|
|
5793
5793
|
currentCollaboration?: {
|
|
5794
|
-
status: "
|
|
5795
|
-
id: string;
|
|
5794
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5796
5795
|
createdAt: string;
|
|
5797
5796
|
updatedAt: string;
|
|
5797
|
+
id: string;
|
|
5798
5798
|
userId: string;
|
|
5799
5799
|
company?: {
|
|
5800
|
-
id: string;
|
|
5801
5800
|
createdAt: string;
|
|
5802
5801
|
updatedAt: string;
|
|
5802
|
+
id: string;
|
|
5803
5803
|
name: string;
|
|
5804
5804
|
} | null | undefined;
|
|
5805
5805
|
client?: {
|
|
5806
|
-
status: "
|
|
5807
|
-
id: string;
|
|
5806
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5808
5807
|
createdAt: string;
|
|
5809
5808
|
updatedAt: string;
|
|
5809
|
+
id: string;
|
|
5810
5810
|
name: string;
|
|
5811
5811
|
crn: string;
|
|
5812
5812
|
govLink: string;
|
|
@@ -5829,22 +5829,22 @@ export declare const jobsContractRouter: {
|
|
|
5829
5829
|
email: string;
|
|
5830
5830
|
} | null | undefined;
|
|
5831
5831
|
newCollaboration?: {
|
|
5832
|
-
status: "
|
|
5833
|
-
id: string;
|
|
5832
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5834
5833
|
createdAt: string;
|
|
5835
5834
|
updatedAt: string;
|
|
5835
|
+
id: string;
|
|
5836
5836
|
userId: string;
|
|
5837
5837
|
company?: {
|
|
5838
|
-
id: string;
|
|
5839
5838
|
createdAt: string;
|
|
5840
5839
|
updatedAt: string;
|
|
5840
|
+
id: string;
|
|
5841
5841
|
name: string;
|
|
5842
5842
|
} | null | undefined;
|
|
5843
5843
|
client?: {
|
|
5844
|
-
status: "
|
|
5845
|
-
id: string;
|
|
5844
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5846
5845
|
createdAt: string;
|
|
5847
5846
|
updatedAt: string;
|
|
5847
|
+
id: string;
|
|
5848
5848
|
name: string;
|
|
5849
5849
|
crn: string;
|
|
5850
5850
|
govLink: string;
|
|
@@ -5869,19 +5869,20 @@ export declare const jobsContractRouter: {
|
|
|
5869
5869
|
} | null | undefined;
|
|
5870
5870
|
} | null | undefined;
|
|
5871
5871
|
}, {
|
|
5872
|
-
|
|
5873
|
-
|
|
5872
|
+
description: string;
|
|
5873
|
+
numberOfPositions: number;
|
|
5874
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
5874
5875
|
createdAt: string | Date;
|
|
5875
5876
|
updatedAt: string | Date;
|
|
5876
|
-
|
|
5877
|
-
tradeId: string;
|
|
5877
|
+
id: string;
|
|
5878
5878
|
pay: {
|
|
5879
|
-
rate: number;
|
|
5880
5879
|
rateUnit: "DAILY" | "HOURLY";
|
|
5880
|
+
rate: number;
|
|
5881
5881
|
receivedRate: number;
|
|
5882
5882
|
rateMax?: number | null | undefined;
|
|
5883
5883
|
};
|
|
5884
|
-
|
|
5884
|
+
tradeId: string;
|
|
5885
|
+
workHours?: number | null | undefined;
|
|
5885
5886
|
location?: {
|
|
5886
5887
|
address?: string | null | undefined;
|
|
5887
5888
|
postcode?: string | null | undefined;
|
|
@@ -5891,29 +5892,28 @@ export declare const jobsContractRouter: {
|
|
|
5891
5892
|
postTown?: string | null | undefined;
|
|
5892
5893
|
areaCovered?: string | null | undefined;
|
|
5893
5894
|
} | null | undefined;
|
|
5894
|
-
workHours?: number | null | undefined;
|
|
5895
5895
|
jobQualifications?: {
|
|
5896
5896
|
id: string;
|
|
5897
5897
|
qualificationId: string;
|
|
5898
5898
|
qualificationTypeId?: string | null | undefined;
|
|
5899
5899
|
}[] | undefined;
|
|
5900
5900
|
currentCollaboration?: {
|
|
5901
|
-
status: "
|
|
5902
|
-
id: string;
|
|
5901
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5903
5902
|
createdAt: string | Date;
|
|
5904
5903
|
updatedAt: string | Date;
|
|
5904
|
+
id: string;
|
|
5905
5905
|
userId: string;
|
|
5906
5906
|
company?: {
|
|
5907
|
-
id: string;
|
|
5908
5907
|
createdAt: string | Date;
|
|
5909
5908
|
updatedAt: string | Date;
|
|
5909
|
+
id: string;
|
|
5910
5910
|
name: string;
|
|
5911
5911
|
} | null | undefined;
|
|
5912
5912
|
client?: {
|
|
5913
|
-
status: "
|
|
5914
|
-
id: string;
|
|
5913
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5915
5914
|
createdAt: string | Date;
|
|
5916
5915
|
updatedAt: string | Date;
|
|
5916
|
+
id: string;
|
|
5917
5917
|
name: string;
|
|
5918
5918
|
crn: string;
|
|
5919
5919
|
govLink: string;
|
|
@@ -5936,22 +5936,22 @@ export declare const jobsContractRouter: {
|
|
|
5936
5936
|
email: string;
|
|
5937
5937
|
} | null | undefined;
|
|
5938
5938
|
newCollaboration?: {
|
|
5939
|
-
status: "
|
|
5940
|
-
id: string;
|
|
5939
|
+
status: "APPROVED" | "ACTIVE" | "INACTIVE" | "PENDING_APPROVAL" | "REJECTED" | "CHANGED_COMPANY" | "CHANGED_AGENT";
|
|
5941
5940
|
createdAt: string | Date;
|
|
5942
5941
|
updatedAt: string | Date;
|
|
5942
|
+
id: string;
|
|
5943
5943
|
userId: string;
|
|
5944
5944
|
company?: {
|
|
5945
|
-
id: string;
|
|
5946
5945
|
createdAt: string | Date;
|
|
5947
5946
|
updatedAt: string | Date;
|
|
5947
|
+
id: string;
|
|
5948
5948
|
name: string;
|
|
5949
5949
|
} | null | undefined;
|
|
5950
5950
|
client?: {
|
|
5951
|
-
status: "
|
|
5952
|
-
id: string;
|
|
5951
|
+
status: "APPROVED" | "PENDING_VERIFICATION" | "BLACKLISTED";
|
|
5953
5952
|
createdAt: string | Date;
|
|
5954
5953
|
updatedAt: string | Date;
|
|
5954
|
+
id: string;
|
|
5955
5955
|
name: string;
|
|
5956
5956
|
crn: string;
|
|
5957
5957
|
govLink: string;
|