@dakkitor/api-contracts 1.1.15 → 1.1.16
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 +1122 -0
- package/dist/actives/actives.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.d.ts +1090 -0
- package/dist/bookings/bookings.contract.d.ts.map +1 -1
- package/dist/bookings/bookings.contract.js +34 -0
- package/dist/index.d.ts +1589 -289
- package/dist/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -69,12 +69,101 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
69
69
|
job: z.ZodObject<{
|
|
70
70
|
id: z.ZodString;
|
|
71
71
|
description: z.ZodString;
|
|
72
|
+
numberOfPositions: z.ZodNumber;
|
|
73
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
74
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
75
|
+
pay: z.ZodObject<{
|
|
76
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
77
|
+
rate: z.ZodNumber;
|
|
78
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
79
|
+
receivedRate: z.ZodNumber;
|
|
80
|
+
}, "strip", z.ZodTypeAny, {
|
|
81
|
+
rate: number;
|
|
82
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
83
|
+
receivedRate: number;
|
|
84
|
+
rateMax?: number | null | undefined;
|
|
85
|
+
}, {
|
|
86
|
+
rate: number;
|
|
87
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
88
|
+
receivedRate: number;
|
|
89
|
+
rateMax?: number | null | undefined;
|
|
90
|
+
}>;
|
|
91
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
92
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
93
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
94
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
95
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
96
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
97
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
98
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
|
100
|
+
address?: string | null | undefined;
|
|
101
|
+
postcode?: string | null | undefined;
|
|
102
|
+
county?: string | null | undefined;
|
|
103
|
+
adminDistrict?: string | null | undefined;
|
|
104
|
+
builtUpArea?: string | null | undefined;
|
|
105
|
+
postTown?: string | null | undefined;
|
|
106
|
+
areaCovered?: string | null | undefined;
|
|
107
|
+
}, {
|
|
108
|
+
address?: string | null | undefined;
|
|
109
|
+
postcode?: string | null | undefined;
|
|
110
|
+
county?: string | null | undefined;
|
|
111
|
+
adminDistrict?: string | null | undefined;
|
|
112
|
+
builtUpArea?: string | null | undefined;
|
|
113
|
+
postTown?: string | null | undefined;
|
|
114
|
+
areaCovered?: string | null | undefined;
|
|
115
|
+
}>>>;
|
|
116
|
+
tradeId: z.ZodString;
|
|
117
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
118
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
72
119
|
}, "strip", z.ZodTypeAny, {
|
|
120
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
121
|
+
createdAt: string;
|
|
122
|
+
updatedAt: string;
|
|
73
123
|
id: string;
|
|
124
|
+
pay: {
|
|
125
|
+
rate: number;
|
|
126
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
127
|
+
receivedRate: number;
|
|
128
|
+
rateMax?: number | null | undefined;
|
|
129
|
+
};
|
|
130
|
+
tradeId: string;
|
|
74
131
|
description: string;
|
|
132
|
+
numberOfPositions: number;
|
|
133
|
+
workHours?: number | null | undefined;
|
|
134
|
+
location?: {
|
|
135
|
+
address?: string | null | undefined;
|
|
136
|
+
postcode?: string | null | undefined;
|
|
137
|
+
county?: string | null | undefined;
|
|
138
|
+
adminDistrict?: string | null | undefined;
|
|
139
|
+
builtUpArea?: string | null | undefined;
|
|
140
|
+
postTown?: string | null | undefined;
|
|
141
|
+
areaCovered?: string | null | undefined;
|
|
142
|
+
} | null | undefined;
|
|
75
143
|
}, {
|
|
144
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
145
|
+
createdAt: string | Date;
|
|
146
|
+
updatedAt: string | Date;
|
|
76
147
|
id: string;
|
|
148
|
+
pay: {
|
|
149
|
+
rate: number;
|
|
150
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
151
|
+
receivedRate: number;
|
|
152
|
+
rateMax?: number | null | undefined;
|
|
153
|
+
};
|
|
154
|
+
tradeId: string;
|
|
77
155
|
description: string;
|
|
156
|
+
numberOfPositions: number;
|
|
157
|
+
workHours?: number | null | undefined;
|
|
158
|
+
location?: {
|
|
159
|
+
address?: string | null | undefined;
|
|
160
|
+
postcode?: string | null | undefined;
|
|
161
|
+
county?: string | null | undefined;
|
|
162
|
+
adminDistrict?: string | null | undefined;
|
|
163
|
+
builtUpArea?: string | null | undefined;
|
|
164
|
+
postTown?: string | null | undefined;
|
|
165
|
+
areaCovered?: string | null | undefined;
|
|
166
|
+
} | null | undefined;
|
|
78
167
|
}>;
|
|
79
168
|
userId: z.ZodString;
|
|
80
169
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -102,8 +191,29 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
102
191
|
email: string;
|
|
103
192
|
};
|
|
104
193
|
job: {
|
|
194
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
195
|
+
createdAt: string;
|
|
196
|
+
updatedAt: string;
|
|
105
197
|
id: string;
|
|
198
|
+
pay: {
|
|
199
|
+
rate: number;
|
|
200
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
201
|
+
receivedRate: number;
|
|
202
|
+
rateMax?: number | null | undefined;
|
|
203
|
+
};
|
|
204
|
+
tradeId: string;
|
|
106
205
|
description: string;
|
|
206
|
+
numberOfPositions: number;
|
|
207
|
+
workHours?: number | null | undefined;
|
|
208
|
+
location?: {
|
|
209
|
+
address?: string | null | undefined;
|
|
210
|
+
postcode?: string | null | undefined;
|
|
211
|
+
county?: string | null | undefined;
|
|
212
|
+
adminDistrict?: string | null | undefined;
|
|
213
|
+
builtUpArea?: string | null | undefined;
|
|
214
|
+
postTown?: string | null | undefined;
|
|
215
|
+
areaCovered?: string | null | undefined;
|
|
216
|
+
} | null | undefined;
|
|
107
217
|
};
|
|
108
218
|
endDate?: string | null | undefined;
|
|
109
219
|
}, {
|
|
@@ -129,8 +239,29 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
129
239
|
email: string;
|
|
130
240
|
};
|
|
131
241
|
job: {
|
|
242
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
243
|
+
createdAt: string | Date;
|
|
244
|
+
updatedAt: string | Date;
|
|
132
245
|
id: string;
|
|
246
|
+
pay: {
|
|
247
|
+
rate: number;
|
|
248
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
249
|
+
receivedRate: number;
|
|
250
|
+
rateMax?: number | null | undefined;
|
|
251
|
+
};
|
|
252
|
+
tradeId: string;
|
|
133
253
|
description: string;
|
|
254
|
+
numberOfPositions: number;
|
|
255
|
+
workHours?: number | null | undefined;
|
|
256
|
+
location?: {
|
|
257
|
+
address?: string | null | undefined;
|
|
258
|
+
postcode?: string | null | undefined;
|
|
259
|
+
county?: string | null | undefined;
|
|
260
|
+
adminDistrict?: string | null | undefined;
|
|
261
|
+
builtUpArea?: string | null | undefined;
|
|
262
|
+
postTown?: string | null | undefined;
|
|
263
|
+
areaCovered?: string | null | undefined;
|
|
264
|
+
} | null | undefined;
|
|
134
265
|
};
|
|
135
266
|
endDate?: string | Date | null | undefined;
|
|
136
267
|
}>;
|
|
@@ -175,8 +306,29 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
175
306
|
email: string;
|
|
176
307
|
};
|
|
177
308
|
job: {
|
|
309
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
310
|
+
createdAt: string;
|
|
311
|
+
updatedAt: string;
|
|
178
312
|
id: string;
|
|
313
|
+
pay: {
|
|
314
|
+
rate: number;
|
|
315
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
316
|
+
receivedRate: number;
|
|
317
|
+
rateMax?: number | null | undefined;
|
|
318
|
+
};
|
|
319
|
+
tradeId: string;
|
|
179
320
|
description: string;
|
|
321
|
+
numberOfPositions: number;
|
|
322
|
+
workHours?: number | null | undefined;
|
|
323
|
+
location?: {
|
|
324
|
+
address?: string | null | undefined;
|
|
325
|
+
postcode?: string | null | undefined;
|
|
326
|
+
county?: string | null | undefined;
|
|
327
|
+
adminDistrict?: string | null | undefined;
|
|
328
|
+
builtUpArea?: string | null | undefined;
|
|
329
|
+
postTown?: string | null | undefined;
|
|
330
|
+
areaCovered?: string | null | undefined;
|
|
331
|
+
} | null | undefined;
|
|
180
332
|
};
|
|
181
333
|
endDate?: string | null | undefined;
|
|
182
334
|
};
|
|
@@ -219,8 +371,29 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
219
371
|
email: string;
|
|
220
372
|
};
|
|
221
373
|
job: {
|
|
374
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
375
|
+
createdAt: string | Date;
|
|
376
|
+
updatedAt: string | Date;
|
|
222
377
|
id: string;
|
|
378
|
+
pay: {
|
|
379
|
+
rate: number;
|
|
380
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
381
|
+
receivedRate: number;
|
|
382
|
+
rateMax?: number | null | undefined;
|
|
383
|
+
};
|
|
384
|
+
tradeId: string;
|
|
223
385
|
description: string;
|
|
386
|
+
numberOfPositions: number;
|
|
387
|
+
workHours?: number | null | undefined;
|
|
388
|
+
location?: {
|
|
389
|
+
address?: string | null | undefined;
|
|
390
|
+
postcode?: string | null | undefined;
|
|
391
|
+
county?: string | null | undefined;
|
|
392
|
+
adminDistrict?: string | null | undefined;
|
|
393
|
+
builtUpArea?: string | null | undefined;
|
|
394
|
+
postTown?: string | null | undefined;
|
|
395
|
+
areaCovered?: string | null | undefined;
|
|
396
|
+
} | null | undefined;
|
|
224
397
|
};
|
|
225
398
|
endDate?: string | Date | null | undefined;
|
|
226
399
|
};
|
|
@@ -453,12 +626,101 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
453
626
|
job: z.ZodObject<{
|
|
454
627
|
id: z.ZodString;
|
|
455
628
|
description: z.ZodString;
|
|
629
|
+
numberOfPositions: z.ZodNumber;
|
|
630
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
631
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
632
|
+
pay: z.ZodObject<{
|
|
633
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
634
|
+
rate: z.ZodNumber;
|
|
635
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
636
|
+
receivedRate: z.ZodNumber;
|
|
637
|
+
}, "strip", z.ZodTypeAny, {
|
|
638
|
+
rate: number;
|
|
639
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
640
|
+
receivedRate: number;
|
|
641
|
+
rateMax?: number | null | undefined;
|
|
642
|
+
}, {
|
|
643
|
+
rate: number;
|
|
644
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
645
|
+
receivedRate: number;
|
|
646
|
+
rateMax?: number | null | undefined;
|
|
647
|
+
}>;
|
|
648
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
649
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
650
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
651
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
652
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
653
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
654
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
655
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
656
|
+
}, "strip", z.ZodTypeAny, {
|
|
657
|
+
address?: string | null | undefined;
|
|
658
|
+
postcode?: string | null | undefined;
|
|
659
|
+
county?: string | null | undefined;
|
|
660
|
+
adminDistrict?: string | null | undefined;
|
|
661
|
+
builtUpArea?: string | null | undefined;
|
|
662
|
+
postTown?: string | null | undefined;
|
|
663
|
+
areaCovered?: string | null | undefined;
|
|
664
|
+
}, {
|
|
665
|
+
address?: string | null | undefined;
|
|
666
|
+
postcode?: string | null | undefined;
|
|
667
|
+
county?: string | null | undefined;
|
|
668
|
+
adminDistrict?: string | null | undefined;
|
|
669
|
+
builtUpArea?: string | null | undefined;
|
|
670
|
+
postTown?: string | null | undefined;
|
|
671
|
+
areaCovered?: string | null | undefined;
|
|
672
|
+
}>>>;
|
|
673
|
+
tradeId: z.ZodString;
|
|
674
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
675
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
456
676
|
}, "strip", z.ZodTypeAny, {
|
|
677
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
678
|
+
createdAt: string;
|
|
679
|
+
updatedAt: string;
|
|
457
680
|
id: string;
|
|
681
|
+
pay: {
|
|
682
|
+
rate: number;
|
|
683
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
684
|
+
receivedRate: number;
|
|
685
|
+
rateMax?: number | null | undefined;
|
|
686
|
+
};
|
|
687
|
+
tradeId: string;
|
|
458
688
|
description: string;
|
|
689
|
+
numberOfPositions: number;
|
|
690
|
+
workHours?: number | null | undefined;
|
|
691
|
+
location?: {
|
|
692
|
+
address?: string | null | undefined;
|
|
693
|
+
postcode?: string | null | undefined;
|
|
694
|
+
county?: string | null | undefined;
|
|
695
|
+
adminDistrict?: string | null | undefined;
|
|
696
|
+
builtUpArea?: string | null | undefined;
|
|
697
|
+
postTown?: string | null | undefined;
|
|
698
|
+
areaCovered?: string | null | undefined;
|
|
699
|
+
} | null | undefined;
|
|
459
700
|
}, {
|
|
701
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
702
|
+
createdAt: string | Date;
|
|
703
|
+
updatedAt: string | Date;
|
|
460
704
|
id: string;
|
|
705
|
+
pay: {
|
|
706
|
+
rate: number;
|
|
707
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
708
|
+
receivedRate: number;
|
|
709
|
+
rateMax?: number | null | undefined;
|
|
710
|
+
};
|
|
711
|
+
tradeId: string;
|
|
461
712
|
description: string;
|
|
713
|
+
numberOfPositions: number;
|
|
714
|
+
workHours?: number | null | undefined;
|
|
715
|
+
location?: {
|
|
716
|
+
address?: string | null | undefined;
|
|
717
|
+
postcode?: string | null | undefined;
|
|
718
|
+
county?: string | null | undefined;
|
|
719
|
+
adminDistrict?: string | null | undefined;
|
|
720
|
+
builtUpArea?: string | null | undefined;
|
|
721
|
+
postTown?: string | null | undefined;
|
|
722
|
+
areaCovered?: string | null | undefined;
|
|
723
|
+
} | null | undefined;
|
|
462
724
|
}>;
|
|
463
725
|
userId: z.ZodString;
|
|
464
726
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -486,8 +748,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
486
748
|
email: string;
|
|
487
749
|
};
|
|
488
750
|
job: {
|
|
751
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
752
|
+
createdAt: string;
|
|
753
|
+
updatedAt: string;
|
|
489
754
|
id: string;
|
|
755
|
+
pay: {
|
|
756
|
+
rate: number;
|
|
757
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
758
|
+
receivedRate: number;
|
|
759
|
+
rateMax?: number | null | undefined;
|
|
760
|
+
};
|
|
761
|
+
tradeId: string;
|
|
490
762
|
description: string;
|
|
763
|
+
numberOfPositions: number;
|
|
764
|
+
workHours?: number | null | undefined;
|
|
765
|
+
location?: {
|
|
766
|
+
address?: string | null | undefined;
|
|
767
|
+
postcode?: string | null | undefined;
|
|
768
|
+
county?: string | null | undefined;
|
|
769
|
+
adminDistrict?: string | null | undefined;
|
|
770
|
+
builtUpArea?: string | null | undefined;
|
|
771
|
+
postTown?: string | null | undefined;
|
|
772
|
+
areaCovered?: string | null | undefined;
|
|
773
|
+
} | null | undefined;
|
|
491
774
|
};
|
|
492
775
|
endDate?: string | null | undefined;
|
|
493
776
|
}, {
|
|
@@ -513,8 +796,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
513
796
|
email: string;
|
|
514
797
|
};
|
|
515
798
|
job: {
|
|
799
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
800
|
+
createdAt: string | Date;
|
|
801
|
+
updatedAt: string | Date;
|
|
516
802
|
id: string;
|
|
803
|
+
pay: {
|
|
804
|
+
rate: number;
|
|
805
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
806
|
+
receivedRate: number;
|
|
807
|
+
rateMax?: number | null | undefined;
|
|
808
|
+
};
|
|
809
|
+
tradeId: string;
|
|
517
810
|
description: string;
|
|
811
|
+
numberOfPositions: number;
|
|
812
|
+
workHours?: number | null | undefined;
|
|
813
|
+
location?: {
|
|
814
|
+
address?: string | null | undefined;
|
|
815
|
+
postcode?: string | null | undefined;
|
|
816
|
+
county?: string | null | undefined;
|
|
817
|
+
adminDistrict?: string | null | undefined;
|
|
818
|
+
builtUpArea?: string | null | undefined;
|
|
819
|
+
postTown?: string | null | undefined;
|
|
820
|
+
areaCovered?: string | null | undefined;
|
|
821
|
+
} | null | undefined;
|
|
518
822
|
};
|
|
519
823
|
endDate?: string | Date | null | undefined;
|
|
520
824
|
}>;
|
|
@@ -559,8 +863,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
559
863
|
email: string;
|
|
560
864
|
};
|
|
561
865
|
job: {
|
|
866
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
867
|
+
createdAt: string;
|
|
868
|
+
updatedAt: string;
|
|
562
869
|
id: string;
|
|
870
|
+
pay: {
|
|
871
|
+
rate: number;
|
|
872
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
873
|
+
receivedRate: number;
|
|
874
|
+
rateMax?: number | null | undefined;
|
|
875
|
+
};
|
|
876
|
+
tradeId: string;
|
|
563
877
|
description: string;
|
|
878
|
+
numberOfPositions: number;
|
|
879
|
+
workHours?: number | null | undefined;
|
|
880
|
+
location?: {
|
|
881
|
+
address?: string | null | undefined;
|
|
882
|
+
postcode?: string | null | undefined;
|
|
883
|
+
county?: string | null | undefined;
|
|
884
|
+
adminDistrict?: string | null | undefined;
|
|
885
|
+
builtUpArea?: string | null | undefined;
|
|
886
|
+
postTown?: string | null | undefined;
|
|
887
|
+
areaCovered?: string | null | undefined;
|
|
888
|
+
} | null | undefined;
|
|
564
889
|
};
|
|
565
890
|
endDate?: string | null | undefined;
|
|
566
891
|
};
|
|
@@ -603,8 +928,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
603
928
|
email: string;
|
|
604
929
|
};
|
|
605
930
|
job: {
|
|
931
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
932
|
+
createdAt: string | Date;
|
|
933
|
+
updatedAt: string | Date;
|
|
606
934
|
id: string;
|
|
935
|
+
pay: {
|
|
936
|
+
rate: number;
|
|
937
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
938
|
+
receivedRate: number;
|
|
939
|
+
rateMax?: number | null | undefined;
|
|
940
|
+
};
|
|
941
|
+
tradeId: string;
|
|
607
942
|
description: string;
|
|
943
|
+
numberOfPositions: number;
|
|
944
|
+
workHours?: number | null | undefined;
|
|
945
|
+
location?: {
|
|
946
|
+
address?: string | null | undefined;
|
|
947
|
+
postcode?: string | null | undefined;
|
|
948
|
+
county?: string | null | undefined;
|
|
949
|
+
adminDistrict?: string | null | undefined;
|
|
950
|
+
builtUpArea?: string | null | undefined;
|
|
951
|
+
postTown?: string | null | undefined;
|
|
952
|
+
areaCovered?: string | null | undefined;
|
|
953
|
+
} | null | undefined;
|
|
608
954
|
};
|
|
609
955
|
endDate?: string | Date | null | undefined;
|
|
610
956
|
};
|
|
@@ -655,8 +1001,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
655
1001
|
email: string;
|
|
656
1002
|
};
|
|
657
1003
|
job: {
|
|
1004
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1005
|
+
createdAt: string;
|
|
1006
|
+
updatedAt: string;
|
|
658
1007
|
id: string;
|
|
1008
|
+
pay: {
|
|
1009
|
+
rate: number;
|
|
1010
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1011
|
+
receivedRate: number;
|
|
1012
|
+
rateMax?: number | null | undefined;
|
|
1013
|
+
};
|
|
1014
|
+
tradeId: string;
|
|
659
1015
|
description: string;
|
|
1016
|
+
numberOfPositions: number;
|
|
1017
|
+
workHours?: number | null | undefined;
|
|
1018
|
+
location?: {
|
|
1019
|
+
address?: string | null | undefined;
|
|
1020
|
+
postcode?: string | null | undefined;
|
|
1021
|
+
county?: string | null | undefined;
|
|
1022
|
+
adminDistrict?: string | null | undefined;
|
|
1023
|
+
builtUpArea?: string | null | undefined;
|
|
1024
|
+
postTown?: string | null | undefined;
|
|
1025
|
+
areaCovered?: string | null | undefined;
|
|
1026
|
+
} | null | undefined;
|
|
660
1027
|
};
|
|
661
1028
|
endDate?: string | null | undefined;
|
|
662
1029
|
};
|
|
@@ -706,8 +1073,29 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
706
1073
|
email: string;
|
|
707
1074
|
};
|
|
708
1075
|
job: {
|
|
1076
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1077
|
+
createdAt: string | Date;
|
|
1078
|
+
updatedAt: string | Date;
|
|
709
1079
|
id: string;
|
|
1080
|
+
pay: {
|
|
1081
|
+
rate: number;
|
|
1082
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1083
|
+
receivedRate: number;
|
|
1084
|
+
rateMax?: number | null | undefined;
|
|
1085
|
+
};
|
|
1086
|
+
tradeId: string;
|
|
710
1087
|
description: string;
|
|
1088
|
+
numberOfPositions: number;
|
|
1089
|
+
workHours?: number | null | undefined;
|
|
1090
|
+
location?: {
|
|
1091
|
+
address?: string | null | undefined;
|
|
1092
|
+
postcode?: string | null | undefined;
|
|
1093
|
+
county?: string | null | undefined;
|
|
1094
|
+
adminDistrict?: string | null | undefined;
|
|
1095
|
+
builtUpArea?: string | null | undefined;
|
|
1096
|
+
postTown?: string | null | undefined;
|
|
1097
|
+
areaCovered?: string | null | undefined;
|
|
1098
|
+
} | null | undefined;
|
|
711
1099
|
};
|
|
712
1100
|
endDate?: string | Date | null | undefined;
|
|
713
1101
|
};
|
|
@@ -945,12 +1333,101 @@ export declare const activesContractRouter: {
|
|
|
945
1333
|
job: z.ZodObject<{
|
|
946
1334
|
id: z.ZodString;
|
|
947
1335
|
description: z.ZodString;
|
|
1336
|
+
numberOfPositions: z.ZodNumber;
|
|
1337
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1338
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
1339
|
+
pay: z.ZodObject<{
|
|
1340
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
1341
|
+
rate: z.ZodNumber;
|
|
1342
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1343
|
+
receivedRate: z.ZodNumber;
|
|
1344
|
+
}, "strip", z.ZodTypeAny, {
|
|
1345
|
+
rate: number;
|
|
1346
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1347
|
+
receivedRate: number;
|
|
1348
|
+
rateMax?: number | null | undefined;
|
|
1349
|
+
}, {
|
|
1350
|
+
rate: number;
|
|
1351
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1352
|
+
receivedRate: number;
|
|
1353
|
+
rateMax?: number | null | undefined;
|
|
1354
|
+
}>;
|
|
1355
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1356
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1357
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1358
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1359
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1360
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1361
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1362
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1363
|
+
}, "strip", z.ZodTypeAny, {
|
|
1364
|
+
address?: string | null | undefined;
|
|
1365
|
+
postcode?: string | null | undefined;
|
|
1366
|
+
county?: string | null | undefined;
|
|
1367
|
+
adminDistrict?: string | null | undefined;
|
|
1368
|
+
builtUpArea?: string | null | undefined;
|
|
1369
|
+
postTown?: string | null | undefined;
|
|
1370
|
+
areaCovered?: string | null | undefined;
|
|
1371
|
+
}, {
|
|
1372
|
+
address?: string | null | undefined;
|
|
1373
|
+
postcode?: string | null | undefined;
|
|
1374
|
+
county?: string | null | undefined;
|
|
1375
|
+
adminDistrict?: string | null | undefined;
|
|
1376
|
+
builtUpArea?: string | null | undefined;
|
|
1377
|
+
postTown?: string | null | undefined;
|
|
1378
|
+
areaCovered?: string | null | undefined;
|
|
1379
|
+
}>>>;
|
|
1380
|
+
tradeId: z.ZodString;
|
|
1381
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1382
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
948
1383
|
}, "strip", z.ZodTypeAny, {
|
|
1384
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1385
|
+
createdAt: string;
|
|
1386
|
+
updatedAt: string;
|
|
949
1387
|
id: string;
|
|
1388
|
+
pay: {
|
|
1389
|
+
rate: number;
|
|
1390
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1391
|
+
receivedRate: number;
|
|
1392
|
+
rateMax?: number | null | undefined;
|
|
1393
|
+
};
|
|
1394
|
+
tradeId: string;
|
|
950
1395
|
description: string;
|
|
1396
|
+
numberOfPositions: number;
|
|
1397
|
+
workHours?: number | null | undefined;
|
|
1398
|
+
location?: {
|
|
1399
|
+
address?: string | null | undefined;
|
|
1400
|
+
postcode?: string | null | undefined;
|
|
1401
|
+
county?: string | null | undefined;
|
|
1402
|
+
adminDistrict?: string | null | undefined;
|
|
1403
|
+
builtUpArea?: string | null | undefined;
|
|
1404
|
+
postTown?: string | null | undefined;
|
|
1405
|
+
areaCovered?: string | null | undefined;
|
|
1406
|
+
} | null | undefined;
|
|
951
1407
|
}, {
|
|
1408
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1409
|
+
createdAt: string | Date;
|
|
1410
|
+
updatedAt: string | Date;
|
|
952
1411
|
id: string;
|
|
1412
|
+
pay: {
|
|
1413
|
+
rate: number;
|
|
1414
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1415
|
+
receivedRate: number;
|
|
1416
|
+
rateMax?: number | null | undefined;
|
|
1417
|
+
};
|
|
1418
|
+
tradeId: string;
|
|
953
1419
|
description: string;
|
|
1420
|
+
numberOfPositions: number;
|
|
1421
|
+
workHours?: number | null | undefined;
|
|
1422
|
+
location?: {
|
|
1423
|
+
address?: string | null | undefined;
|
|
1424
|
+
postcode?: string | null | undefined;
|
|
1425
|
+
county?: string | null | undefined;
|
|
1426
|
+
adminDistrict?: string | null | undefined;
|
|
1427
|
+
builtUpArea?: string | null | undefined;
|
|
1428
|
+
postTown?: string | null | undefined;
|
|
1429
|
+
areaCovered?: string | null | undefined;
|
|
1430
|
+
} | null | undefined;
|
|
954
1431
|
}>;
|
|
955
1432
|
userId: z.ZodString;
|
|
956
1433
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -978,8 +1455,29 @@ export declare const activesContractRouter: {
|
|
|
978
1455
|
email: string;
|
|
979
1456
|
};
|
|
980
1457
|
job: {
|
|
1458
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1459
|
+
createdAt: string;
|
|
1460
|
+
updatedAt: string;
|
|
981
1461
|
id: string;
|
|
1462
|
+
pay: {
|
|
1463
|
+
rate: number;
|
|
1464
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1465
|
+
receivedRate: number;
|
|
1466
|
+
rateMax?: number | null | undefined;
|
|
1467
|
+
};
|
|
1468
|
+
tradeId: string;
|
|
982
1469
|
description: string;
|
|
1470
|
+
numberOfPositions: number;
|
|
1471
|
+
workHours?: number | null | undefined;
|
|
1472
|
+
location?: {
|
|
1473
|
+
address?: string | null | undefined;
|
|
1474
|
+
postcode?: string | null | undefined;
|
|
1475
|
+
county?: string | null | undefined;
|
|
1476
|
+
adminDistrict?: string | null | undefined;
|
|
1477
|
+
builtUpArea?: string | null | undefined;
|
|
1478
|
+
postTown?: string | null | undefined;
|
|
1479
|
+
areaCovered?: string | null | undefined;
|
|
1480
|
+
} | null | undefined;
|
|
983
1481
|
};
|
|
984
1482
|
endDate?: string | null | undefined;
|
|
985
1483
|
}, {
|
|
@@ -1005,8 +1503,29 @@ export declare const activesContractRouter: {
|
|
|
1005
1503
|
email: string;
|
|
1006
1504
|
};
|
|
1007
1505
|
job: {
|
|
1506
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1507
|
+
createdAt: string | Date;
|
|
1508
|
+
updatedAt: string | Date;
|
|
1008
1509
|
id: string;
|
|
1510
|
+
pay: {
|
|
1511
|
+
rate: number;
|
|
1512
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1513
|
+
receivedRate: number;
|
|
1514
|
+
rateMax?: number | null | undefined;
|
|
1515
|
+
};
|
|
1516
|
+
tradeId: string;
|
|
1009
1517
|
description: string;
|
|
1518
|
+
numberOfPositions: number;
|
|
1519
|
+
workHours?: number | null | undefined;
|
|
1520
|
+
location?: {
|
|
1521
|
+
address?: string | null | undefined;
|
|
1522
|
+
postcode?: string | null | undefined;
|
|
1523
|
+
county?: string | null | undefined;
|
|
1524
|
+
adminDistrict?: string | null | undefined;
|
|
1525
|
+
builtUpArea?: string | null | undefined;
|
|
1526
|
+
postTown?: string | null | undefined;
|
|
1527
|
+
areaCovered?: string | null | undefined;
|
|
1528
|
+
} | null | undefined;
|
|
1010
1529
|
};
|
|
1011
1530
|
endDate?: string | Date | null | undefined;
|
|
1012
1531
|
}>;
|
|
@@ -1051,8 +1570,29 @@ export declare const activesContractRouter: {
|
|
|
1051
1570
|
email: string;
|
|
1052
1571
|
};
|
|
1053
1572
|
job: {
|
|
1573
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1574
|
+
createdAt: string;
|
|
1575
|
+
updatedAt: string;
|
|
1054
1576
|
id: string;
|
|
1577
|
+
pay: {
|
|
1578
|
+
rate: number;
|
|
1579
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1580
|
+
receivedRate: number;
|
|
1581
|
+
rateMax?: number | null | undefined;
|
|
1582
|
+
};
|
|
1583
|
+
tradeId: string;
|
|
1055
1584
|
description: string;
|
|
1585
|
+
numberOfPositions: number;
|
|
1586
|
+
workHours?: number | null | undefined;
|
|
1587
|
+
location?: {
|
|
1588
|
+
address?: string | null | undefined;
|
|
1589
|
+
postcode?: string | null | undefined;
|
|
1590
|
+
county?: string | null | undefined;
|
|
1591
|
+
adminDistrict?: string | null | undefined;
|
|
1592
|
+
builtUpArea?: string | null | undefined;
|
|
1593
|
+
postTown?: string | null | undefined;
|
|
1594
|
+
areaCovered?: string | null | undefined;
|
|
1595
|
+
} | null | undefined;
|
|
1056
1596
|
};
|
|
1057
1597
|
endDate?: string | null | undefined;
|
|
1058
1598
|
};
|
|
@@ -1095,8 +1635,29 @@ export declare const activesContractRouter: {
|
|
|
1095
1635
|
email: string;
|
|
1096
1636
|
};
|
|
1097
1637
|
job: {
|
|
1638
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
1639
|
+
createdAt: string | Date;
|
|
1640
|
+
updatedAt: string | Date;
|
|
1098
1641
|
id: string;
|
|
1642
|
+
pay: {
|
|
1643
|
+
rate: number;
|
|
1644
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1645
|
+
receivedRate: number;
|
|
1646
|
+
rateMax?: number | null | undefined;
|
|
1647
|
+
};
|
|
1648
|
+
tradeId: string;
|
|
1099
1649
|
description: string;
|
|
1650
|
+
numberOfPositions: number;
|
|
1651
|
+
workHours?: number | null | undefined;
|
|
1652
|
+
location?: {
|
|
1653
|
+
address?: string | null | undefined;
|
|
1654
|
+
postcode?: string | null | undefined;
|
|
1655
|
+
county?: string | null | undefined;
|
|
1656
|
+
adminDistrict?: string | null | undefined;
|
|
1657
|
+
builtUpArea?: string | null | undefined;
|
|
1658
|
+
postTown?: string | null | undefined;
|
|
1659
|
+
areaCovered?: string | null | undefined;
|
|
1660
|
+
} | null | undefined;
|
|
1100
1661
|
};
|
|
1101
1662
|
endDate?: string | Date | null | undefined;
|
|
1102
1663
|
};
|
|
@@ -1424,12 +1985,101 @@ export declare const activesContractRouter: {
|
|
|
1424
1985
|
job: z.ZodObject<{
|
|
1425
1986
|
id: z.ZodString;
|
|
1426
1987
|
description: z.ZodString;
|
|
1988
|
+
numberOfPositions: z.ZodNumber;
|
|
1989
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1990
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
1991
|
+
pay: z.ZodObject<{
|
|
1992
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
1993
|
+
rate: z.ZodNumber;
|
|
1994
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1995
|
+
receivedRate: z.ZodNumber;
|
|
1996
|
+
}, "strip", z.ZodTypeAny, {
|
|
1997
|
+
rate: number;
|
|
1998
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
1999
|
+
receivedRate: number;
|
|
2000
|
+
rateMax?: number | null | undefined;
|
|
2001
|
+
}, {
|
|
2002
|
+
rate: number;
|
|
2003
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2004
|
+
receivedRate: number;
|
|
2005
|
+
rateMax?: number | null | undefined;
|
|
2006
|
+
}>;
|
|
2007
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2008
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2009
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2010
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2011
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2012
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2013
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2014
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2015
|
+
}, "strip", z.ZodTypeAny, {
|
|
2016
|
+
address?: string | null | undefined;
|
|
2017
|
+
postcode?: string | null | undefined;
|
|
2018
|
+
county?: string | null | undefined;
|
|
2019
|
+
adminDistrict?: string | null | undefined;
|
|
2020
|
+
builtUpArea?: string | null | undefined;
|
|
2021
|
+
postTown?: string | null | undefined;
|
|
2022
|
+
areaCovered?: string | null | undefined;
|
|
2023
|
+
}, {
|
|
2024
|
+
address?: string | null | undefined;
|
|
2025
|
+
postcode?: string | null | undefined;
|
|
2026
|
+
county?: string | null | undefined;
|
|
2027
|
+
adminDistrict?: string | null | undefined;
|
|
2028
|
+
builtUpArea?: string | null | undefined;
|
|
2029
|
+
postTown?: string | null | undefined;
|
|
2030
|
+
areaCovered?: string | null | undefined;
|
|
2031
|
+
}>>>;
|
|
2032
|
+
tradeId: z.ZodString;
|
|
2033
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2034
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1427
2035
|
}, "strip", z.ZodTypeAny, {
|
|
2036
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2037
|
+
createdAt: string;
|
|
2038
|
+
updatedAt: string;
|
|
1428
2039
|
id: string;
|
|
2040
|
+
pay: {
|
|
2041
|
+
rate: number;
|
|
2042
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2043
|
+
receivedRate: number;
|
|
2044
|
+
rateMax?: number | null | undefined;
|
|
2045
|
+
};
|
|
2046
|
+
tradeId: string;
|
|
1429
2047
|
description: string;
|
|
2048
|
+
numberOfPositions: number;
|
|
2049
|
+
workHours?: number | null | undefined;
|
|
2050
|
+
location?: {
|
|
2051
|
+
address?: string | null | undefined;
|
|
2052
|
+
postcode?: string | null | undefined;
|
|
2053
|
+
county?: string | null | undefined;
|
|
2054
|
+
adminDistrict?: string | null | undefined;
|
|
2055
|
+
builtUpArea?: string | null | undefined;
|
|
2056
|
+
postTown?: string | null | undefined;
|
|
2057
|
+
areaCovered?: string | null | undefined;
|
|
2058
|
+
} | null | undefined;
|
|
1430
2059
|
}, {
|
|
2060
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2061
|
+
createdAt: string | Date;
|
|
2062
|
+
updatedAt: string | Date;
|
|
1431
2063
|
id: string;
|
|
2064
|
+
pay: {
|
|
2065
|
+
rate: number;
|
|
2066
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2067
|
+
receivedRate: number;
|
|
2068
|
+
rateMax?: number | null | undefined;
|
|
2069
|
+
};
|
|
2070
|
+
tradeId: string;
|
|
1432
2071
|
description: string;
|
|
2072
|
+
numberOfPositions: number;
|
|
2073
|
+
workHours?: number | null | undefined;
|
|
2074
|
+
location?: {
|
|
2075
|
+
address?: string | null | undefined;
|
|
2076
|
+
postcode?: string | null | undefined;
|
|
2077
|
+
county?: string | null | undefined;
|
|
2078
|
+
adminDistrict?: string | null | undefined;
|
|
2079
|
+
builtUpArea?: string | null | undefined;
|
|
2080
|
+
postTown?: string | null | undefined;
|
|
2081
|
+
areaCovered?: string | null | undefined;
|
|
2082
|
+
} | null | undefined;
|
|
1433
2083
|
}>;
|
|
1434
2084
|
userId: z.ZodString;
|
|
1435
2085
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1457,8 +2107,29 @@ export declare const activesContractRouter: {
|
|
|
1457
2107
|
email: string;
|
|
1458
2108
|
};
|
|
1459
2109
|
job: {
|
|
2110
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2111
|
+
createdAt: string;
|
|
2112
|
+
updatedAt: string;
|
|
1460
2113
|
id: string;
|
|
2114
|
+
pay: {
|
|
2115
|
+
rate: number;
|
|
2116
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2117
|
+
receivedRate: number;
|
|
2118
|
+
rateMax?: number | null | undefined;
|
|
2119
|
+
};
|
|
2120
|
+
tradeId: string;
|
|
1461
2121
|
description: string;
|
|
2122
|
+
numberOfPositions: number;
|
|
2123
|
+
workHours?: number | null | undefined;
|
|
2124
|
+
location?: {
|
|
2125
|
+
address?: string | null | undefined;
|
|
2126
|
+
postcode?: string | null | undefined;
|
|
2127
|
+
county?: string | null | undefined;
|
|
2128
|
+
adminDistrict?: string | null | undefined;
|
|
2129
|
+
builtUpArea?: string | null | undefined;
|
|
2130
|
+
postTown?: string | null | undefined;
|
|
2131
|
+
areaCovered?: string | null | undefined;
|
|
2132
|
+
} | null | undefined;
|
|
1462
2133
|
};
|
|
1463
2134
|
endDate?: string | null | undefined;
|
|
1464
2135
|
}, {
|
|
@@ -1484,8 +2155,29 @@ export declare const activesContractRouter: {
|
|
|
1484
2155
|
email: string;
|
|
1485
2156
|
};
|
|
1486
2157
|
job: {
|
|
2158
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2159
|
+
createdAt: string | Date;
|
|
2160
|
+
updatedAt: string | Date;
|
|
1487
2161
|
id: string;
|
|
2162
|
+
pay: {
|
|
2163
|
+
rate: number;
|
|
2164
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2165
|
+
receivedRate: number;
|
|
2166
|
+
rateMax?: number | null | undefined;
|
|
2167
|
+
};
|
|
2168
|
+
tradeId: string;
|
|
1488
2169
|
description: string;
|
|
2170
|
+
numberOfPositions: number;
|
|
2171
|
+
workHours?: number | null | undefined;
|
|
2172
|
+
location?: {
|
|
2173
|
+
address?: string | null | undefined;
|
|
2174
|
+
postcode?: string | null | undefined;
|
|
2175
|
+
county?: string | null | undefined;
|
|
2176
|
+
adminDistrict?: string | null | undefined;
|
|
2177
|
+
builtUpArea?: string | null | undefined;
|
|
2178
|
+
postTown?: string | null | undefined;
|
|
2179
|
+
areaCovered?: string | null | undefined;
|
|
2180
|
+
} | null | undefined;
|
|
1489
2181
|
};
|
|
1490
2182
|
endDate?: string | Date | null | undefined;
|
|
1491
2183
|
}>;
|
|
@@ -1530,8 +2222,29 @@ export declare const activesContractRouter: {
|
|
|
1530
2222
|
email: string;
|
|
1531
2223
|
};
|
|
1532
2224
|
job: {
|
|
2225
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2226
|
+
createdAt: string;
|
|
2227
|
+
updatedAt: string;
|
|
1533
2228
|
id: string;
|
|
2229
|
+
pay: {
|
|
2230
|
+
rate: number;
|
|
2231
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2232
|
+
receivedRate: number;
|
|
2233
|
+
rateMax?: number | null | undefined;
|
|
2234
|
+
};
|
|
2235
|
+
tradeId: string;
|
|
1534
2236
|
description: string;
|
|
2237
|
+
numberOfPositions: number;
|
|
2238
|
+
workHours?: number | null | undefined;
|
|
2239
|
+
location?: {
|
|
2240
|
+
address?: string | null | undefined;
|
|
2241
|
+
postcode?: string | null | undefined;
|
|
2242
|
+
county?: string | null | undefined;
|
|
2243
|
+
adminDistrict?: string | null | undefined;
|
|
2244
|
+
builtUpArea?: string | null | undefined;
|
|
2245
|
+
postTown?: string | null | undefined;
|
|
2246
|
+
areaCovered?: string | null | undefined;
|
|
2247
|
+
} | null | undefined;
|
|
1535
2248
|
};
|
|
1536
2249
|
endDate?: string | null | undefined;
|
|
1537
2250
|
};
|
|
@@ -1574,8 +2287,29 @@ export declare const activesContractRouter: {
|
|
|
1574
2287
|
email: string;
|
|
1575
2288
|
};
|
|
1576
2289
|
job: {
|
|
2290
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2291
|
+
createdAt: string | Date;
|
|
2292
|
+
updatedAt: string | Date;
|
|
1577
2293
|
id: string;
|
|
2294
|
+
pay: {
|
|
2295
|
+
rate: number;
|
|
2296
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2297
|
+
receivedRate: number;
|
|
2298
|
+
rateMax?: number | null | undefined;
|
|
2299
|
+
};
|
|
2300
|
+
tradeId: string;
|
|
1578
2301
|
description: string;
|
|
2302
|
+
numberOfPositions: number;
|
|
2303
|
+
workHours?: number | null | undefined;
|
|
2304
|
+
location?: {
|
|
2305
|
+
address?: string | null | undefined;
|
|
2306
|
+
postcode?: string | null | undefined;
|
|
2307
|
+
county?: string | null | undefined;
|
|
2308
|
+
adminDistrict?: string | null | undefined;
|
|
2309
|
+
builtUpArea?: string | null | undefined;
|
|
2310
|
+
postTown?: string | null | undefined;
|
|
2311
|
+
areaCovered?: string | null | undefined;
|
|
2312
|
+
} | null | undefined;
|
|
1579
2313
|
};
|
|
1580
2314
|
endDate?: string | Date | null | undefined;
|
|
1581
2315
|
};
|
|
@@ -1626,8 +2360,29 @@ export declare const activesContractRouter: {
|
|
|
1626
2360
|
email: string;
|
|
1627
2361
|
};
|
|
1628
2362
|
job: {
|
|
2363
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2364
|
+
createdAt: string;
|
|
2365
|
+
updatedAt: string;
|
|
1629
2366
|
id: string;
|
|
2367
|
+
pay: {
|
|
2368
|
+
rate: number;
|
|
2369
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2370
|
+
receivedRate: number;
|
|
2371
|
+
rateMax?: number | null | undefined;
|
|
2372
|
+
};
|
|
2373
|
+
tradeId: string;
|
|
1630
2374
|
description: string;
|
|
2375
|
+
numberOfPositions: number;
|
|
2376
|
+
workHours?: number | null | undefined;
|
|
2377
|
+
location?: {
|
|
2378
|
+
address?: string | null | undefined;
|
|
2379
|
+
postcode?: string | null | undefined;
|
|
2380
|
+
county?: string | null | undefined;
|
|
2381
|
+
adminDistrict?: string | null | undefined;
|
|
2382
|
+
builtUpArea?: string | null | undefined;
|
|
2383
|
+
postTown?: string | null | undefined;
|
|
2384
|
+
areaCovered?: string | null | undefined;
|
|
2385
|
+
} | null | undefined;
|
|
1631
2386
|
};
|
|
1632
2387
|
endDate?: string | null | undefined;
|
|
1633
2388
|
};
|
|
@@ -1677,8 +2432,29 @@ export declare const activesContractRouter: {
|
|
|
1677
2432
|
email: string;
|
|
1678
2433
|
};
|
|
1679
2434
|
job: {
|
|
2435
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2436
|
+
createdAt: string | Date;
|
|
2437
|
+
updatedAt: string | Date;
|
|
1680
2438
|
id: string;
|
|
2439
|
+
pay: {
|
|
2440
|
+
rate: number;
|
|
2441
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2442
|
+
receivedRate: number;
|
|
2443
|
+
rateMax?: number | null | undefined;
|
|
2444
|
+
};
|
|
2445
|
+
tradeId: string;
|
|
1681
2446
|
description: string;
|
|
2447
|
+
numberOfPositions: number;
|
|
2448
|
+
workHours?: number | null | undefined;
|
|
2449
|
+
location?: {
|
|
2450
|
+
address?: string | null | undefined;
|
|
2451
|
+
postcode?: string | null | undefined;
|
|
2452
|
+
county?: string | null | undefined;
|
|
2453
|
+
adminDistrict?: string | null | undefined;
|
|
2454
|
+
builtUpArea?: string | null | undefined;
|
|
2455
|
+
postTown?: string | null | undefined;
|
|
2456
|
+
areaCovered?: string | null | undefined;
|
|
2457
|
+
} | null | undefined;
|
|
1682
2458
|
};
|
|
1683
2459
|
endDate?: string | Date | null | undefined;
|
|
1684
2460
|
};
|
|
@@ -1875,12 +2651,101 @@ export declare const activesContractRouter: {
|
|
|
1875
2651
|
job: z.ZodObject<{
|
|
1876
2652
|
id: z.ZodString;
|
|
1877
2653
|
description: z.ZodString;
|
|
2654
|
+
numberOfPositions: z.ZodNumber;
|
|
2655
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2656
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
2657
|
+
pay: z.ZodObject<{
|
|
2658
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
2659
|
+
rate: z.ZodNumber;
|
|
2660
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2661
|
+
receivedRate: z.ZodNumber;
|
|
2662
|
+
}, "strip", z.ZodTypeAny, {
|
|
2663
|
+
rate: number;
|
|
2664
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2665
|
+
receivedRate: number;
|
|
2666
|
+
rateMax?: number | null | undefined;
|
|
2667
|
+
}, {
|
|
2668
|
+
rate: number;
|
|
2669
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2670
|
+
receivedRate: number;
|
|
2671
|
+
rateMax?: number | null | undefined;
|
|
2672
|
+
}>;
|
|
2673
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2674
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2675
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2676
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2677
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2678
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2679
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2680
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2681
|
+
}, "strip", z.ZodTypeAny, {
|
|
2682
|
+
address?: string | null | undefined;
|
|
2683
|
+
postcode?: string | null | undefined;
|
|
2684
|
+
county?: string | null | undefined;
|
|
2685
|
+
adminDistrict?: string | null | undefined;
|
|
2686
|
+
builtUpArea?: string | null | undefined;
|
|
2687
|
+
postTown?: string | null | undefined;
|
|
2688
|
+
areaCovered?: string | null | undefined;
|
|
2689
|
+
}, {
|
|
2690
|
+
address?: string | null | undefined;
|
|
2691
|
+
postcode?: string | null | undefined;
|
|
2692
|
+
county?: string | null | undefined;
|
|
2693
|
+
adminDistrict?: string | null | undefined;
|
|
2694
|
+
builtUpArea?: string | null | undefined;
|
|
2695
|
+
postTown?: string | null | undefined;
|
|
2696
|
+
areaCovered?: string | null | undefined;
|
|
2697
|
+
}>>>;
|
|
2698
|
+
tradeId: z.ZodString;
|
|
2699
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2700
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
1878
2701
|
}, "strip", z.ZodTypeAny, {
|
|
2702
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2703
|
+
createdAt: string;
|
|
2704
|
+
updatedAt: string;
|
|
1879
2705
|
id: string;
|
|
2706
|
+
pay: {
|
|
2707
|
+
rate: number;
|
|
2708
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2709
|
+
receivedRate: number;
|
|
2710
|
+
rateMax?: number | null | undefined;
|
|
2711
|
+
};
|
|
2712
|
+
tradeId: string;
|
|
1880
2713
|
description: string;
|
|
2714
|
+
numberOfPositions: number;
|
|
2715
|
+
workHours?: number | null | undefined;
|
|
2716
|
+
location?: {
|
|
2717
|
+
address?: string | null | undefined;
|
|
2718
|
+
postcode?: string | null | undefined;
|
|
2719
|
+
county?: string | null | undefined;
|
|
2720
|
+
adminDistrict?: string | null | undefined;
|
|
2721
|
+
builtUpArea?: string | null | undefined;
|
|
2722
|
+
postTown?: string | null | undefined;
|
|
2723
|
+
areaCovered?: string | null | undefined;
|
|
2724
|
+
} | null | undefined;
|
|
1881
2725
|
}, {
|
|
2726
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2727
|
+
createdAt: string | Date;
|
|
2728
|
+
updatedAt: string | Date;
|
|
1882
2729
|
id: string;
|
|
2730
|
+
pay: {
|
|
2731
|
+
rate: number;
|
|
2732
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2733
|
+
receivedRate: number;
|
|
2734
|
+
rateMax?: number | null | undefined;
|
|
2735
|
+
};
|
|
2736
|
+
tradeId: string;
|
|
1883
2737
|
description: string;
|
|
2738
|
+
numberOfPositions: number;
|
|
2739
|
+
workHours?: number | null | undefined;
|
|
2740
|
+
location?: {
|
|
2741
|
+
address?: string | null | undefined;
|
|
2742
|
+
postcode?: string | null | undefined;
|
|
2743
|
+
county?: string | null | undefined;
|
|
2744
|
+
adminDistrict?: string | null | undefined;
|
|
2745
|
+
builtUpArea?: string | null | undefined;
|
|
2746
|
+
postTown?: string | null | undefined;
|
|
2747
|
+
areaCovered?: string | null | undefined;
|
|
2748
|
+
} | null | undefined;
|
|
1884
2749
|
}>;
|
|
1885
2750
|
userId: z.ZodString;
|
|
1886
2751
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -1908,8 +2773,29 @@ export declare const activesContractRouter: {
|
|
|
1908
2773
|
email: string;
|
|
1909
2774
|
};
|
|
1910
2775
|
job: {
|
|
2776
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2777
|
+
createdAt: string;
|
|
2778
|
+
updatedAt: string;
|
|
1911
2779
|
id: string;
|
|
2780
|
+
pay: {
|
|
2781
|
+
rate: number;
|
|
2782
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2783
|
+
receivedRate: number;
|
|
2784
|
+
rateMax?: number | null | undefined;
|
|
2785
|
+
};
|
|
2786
|
+
tradeId: string;
|
|
1912
2787
|
description: string;
|
|
2788
|
+
numberOfPositions: number;
|
|
2789
|
+
workHours?: number | null | undefined;
|
|
2790
|
+
location?: {
|
|
2791
|
+
address?: string | null | undefined;
|
|
2792
|
+
postcode?: string | null | undefined;
|
|
2793
|
+
county?: string | null | undefined;
|
|
2794
|
+
adminDistrict?: string | null | undefined;
|
|
2795
|
+
builtUpArea?: string | null | undefined;
|
|
2796
|
+
postTown?: string | null | undefined;
|
|
2797
|
+
areaCovered?: string | null | undefined;
|
|
2798
|
+
} | null | undefined;
|
|
1913
2799
|
};
|
|
1914
2800
|
endDate?: string | null | undefined;
|
|
1915
2801
|
}, {
|
|
@@ -1935,8 +2821,29 @@ export declare const activesContractRouter: {
|
|
|
1935
2821
|
email: string;
|
|
1936
2822
|
};
|
|
1937
2823
|
job: {
|
|
2824
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2825
|
+
createdAt: string | Date;
|
|
2826
|
+
updatedAt: string | Date;
|
|
1938
2827
|
id: string;
|
|
2828
|
+
pay: {
|
|
2829
|
+
rate: number;
|
|
2830
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2831
|
+
receivedRate: number;
|
|
2832
|
+
rateMax?: number | null | undefined;
|
|
2833
|
+
};
|
|
2834
|
+
tradeId: string;
|
|
1939
2835
|
description: string;
|
|
2836
|
+
numberOfPositions: number;
|
|
2837
|
+
workHours?: number | null | undefined;
|
|
2838
|
+
location?: {
|
|
2839
|
+
address?: string | null | undefined;
|
|
2840
|
+
postcode?: string | null | undefined;
|
|
2841
|
+
county?: string | null | undefined;
|
|
2842
|
+
adminDistrict?: string | null | undefined;
|
|
2843
|
+
builtUpArea?: string | null | undefined;
|
|
2844
|
+
postTown?: string | null | undefined;
|
|
2845
|
+
areaCovered?: string | null | undefined;
|
|
2846
|
+
} | null | undefined;
|
|
1940
2847
|
};
|
|
1941
2848
|
endDate?: string | Date | null | undefined;
|
|
1942
2849
|
}>;
|
|
@@ -1981,8 +2888,29 @@ export declare const activesContractRouter: {
|
|
|
1981
2888
|
email: string;
|
|
1982
2889
|
};
|
|
1983
2890
|
job: {
|
|
2891
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2892
|
+
createdAt: string;
|
|
2893
|
+
updatedAt: string;
|
|
1984
2894
|
id: string;
|
|
2895
|
+
pay: {
|
|
2896
|
+
rate: number;
|
|
2897
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2898
|
+
receivedRate: number;
|
|
2899
|
+
rateMax?: number | null | undefined;
|
|
2900
|
+
};
|
|
2901
|
+
tradeId: string;
|
|
1985
2902
|
description: string;
|
|
2903
|
+
numberOfPositions: number;
|
|
2904
|
+
workHours?: number | null | undefined;
|
|
2905
|
+
location?: {
|
|
2906
|
+
address?: string | null | undefined;
|
|
2907
|
+
postcode?: string | null | undefined;
|
|
2908
|
+
county?: string | null | undefined;
|
|
2909
|
+
adminDistrict?: string | null | undefined;
|
|
2910
|
+
builtUpArea?: string | null | undefined;
|
|
2911
|
+
postTown?: string | null | undefined;
|
|
2912
|
+
areaCovered?: string | null | undefined;
|
|
2913
|
+
} | null | undefined;
|
|
1986
2914
|
};
|
|
1987
2915
|
endDate?: string | null | undefined;
|
|
1988
2916
|
};
|
|
@@ -2025,8 +2953,29 @@ export declare const activesContractRouter: {
|
|
|
2025
2953
|
email: string;
|
|
2026
2954
|
};
|
|
2027
2955
|
job: {
|
|
2956
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
2957
|
+
createdAt: string | Date;
|
|
2958
|
+
updatedAt: string | Date;
|
|
2028
2959
|
id: string;
|
|
2960
|
+
pay: {
|
|
2961
|
+
rate: number;
|
|
2962
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
2963
|
+
receivedRate: number;
|
|
2964
|
+
rateMax?: number | null | undefined;
|
|
2965
|
+
};
|
|
2966
|
+
tradeId: string;
|
|
2029
2967
|
description: string;
|
|
2968
|
+
numberOfPositions: number;
|
|
2969
|
+
workHours?: number | null | undefined;
|
|
2970
|
+
location?: {
|
|
2971
|
+
address?: string | null | undefined;
|
|
2972
|
+
postcode?: string | null | undefined;
|
|
2973
|
+
county?: string | null | undefined;
|
|
2974
|
+
adminDistrict?: string | null | undefined;
|
|
2975
|
+
builtUpArea?: string | null | undefined;
|
|
2976
|
+
postTown?: string | null | undefined;
|
|
2977
|
+
areaCovered?: string | null | undefined;
|
|
2978
|
+
} | null | undefined;
|
|
2030
2979
|
};
|
|
2031
2980
|
endDate?: string | Date | null | undefined;
|
|
2032
2981
|
};
|
|
@@ -2277,12 +3226,101 @@ export declare const activesContractRouter: {
|
|
|
2277
3226
|
job: z.ZodObject<{
|
|
2278
3227
|
id: z.ZodString;
|
|
2279
3228
|
description: z.ZodString;
|
|
3229
|
+
numberOfPositions: z.ZodNumber;
|
|
3230
|
+
workHours: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3231
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE"]>;
|
|
3232
|
+
pay: z.ZodObject<{
|
|
3233
|
+
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
3234
|
+
rate: z.ZodNumber;
|
|
3235
|
+
rateMax: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3236
|
+
receivedRate: z.ZodNumber;
|
|
3237
|
+
}, "strip", z.ZodTypeAny, {
|
|
3238
|
+
rate: number;
|
|
3239
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3240
|
+
receivedRate: number;
|
|
3241
|
+
rateMax?: number | null | undefined;
|
|
3242
|
+
}, {
|
|
3243
|
+
rate: number;
|
|
3244
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3245
|
+
receivedRate: number;
|
|
3246
|
+
rateMax?: number | null | undefined;
|
|
3247
|
+
}>;
|
|
3248
|
+
location: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3249
|
+
address: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3250
|
+
postcode: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3251
|
+
county: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3252
|
+
adminDistrict: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3253
|
+
builtUpArea: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3254
|
+
postTown: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3255
|
+
areaCovered: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
3256
|
+
}, "strip", z.ZodTypeAny, {
|
|
3257
|
+
address?: string | null | undefined;
|
|
3258
|
+
postcode?: string | null | undefined;
|
|
3259
|
+
county?: string | null | undefined;
|
|
3260
|
+
adminDistrict?: string | null | undefined;
|
|
3261
|
+
builtUpArea?: string | null | undefined;
|
|
3262
|
+
postTown?: string | null | undefined;
|
|
3263
|
+
areaCovered?: string | null | undefined;
|
|
3264
|
+
}, {
|
|
3265
|
+
address?: string | null | undefined;
|
|
3266
|
+
postcode?: string | null | undefined;
|
|
3267
|
+
county?: string | null | undefined;
|
|
3268
|
+
adminDistrict?: string | null | undefined;
|
|
3269
|
+
builtUpArea?: string | null | undefined;
|
|
3270
|
+
postTown?: string | null | undefined;
|
|
3271
|
+
areaCovered?: string | null | undefined;
|
|
3272
|
+
}>>>;
|
|
3273
|
+
tradeId: z.ZodString;
|
|
3274
|
+
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
3275
|
+
updatedAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
2280
3276
|
}, "strip", z.ZodTypeAny, {
|
|
3277
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3278
|
+
createdAt: string;
|
|
3279
|
+
updatedAt: string;
|
|
2281
3280
|
id: string;
|
|
3281
|
+
pay: {
|
|
3282
|
+
rate: number;
|
|
3283
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3284
|
+
receivedRate: number;
|
|
3285
|
+
rateMax?: number | null | undefined;
|
|
3286
|
+
};
|
|
3287
|
+
tradeId: string;
|
|
2282
3288
|
description: string;
|
|
3289
|
+
numberOfPositions: number;
|
|
3290
|
+
workHours?: number | null | undefined;
|
|
3291
|
+
location?: {
|
|
3292
|
+
address?: string | null | undefined;
|
|
3293
|
+
postcode?: string | null | undefined;
|
|
3294
|
+
county?: string | null | undefined;
|
|
3295
|
+
adminDistrict?: string | null | undefined;
|
|
3296
|
+
builtUpArea?: string | null | undefined;
|
|
3297
|
+
postTown?: string | null | undefined;
|
|
3298
|
+
areaCovered?: string | null | undefined;
|
|
3299
|
+
} | null | undefined;
|
|
2283
3300
|
}, {
|
|
3301
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3302
|
+
createdAt: string | Date;
|
|
3303
|
+
updatedAt: string | Date;
|
|
2284
3304
|
id: string;
|
|
3305
|
+
pay: {
|
|
3306
|
+
rate: number;
|
|
3307
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3308
|
+
receivedRate: number;
|
|
3309
|
+
rateMax?: number | null | undefined;
|
|
3310
|
+
};
|
|
3311
|
+
tradeId: string;
|
|
2285
3312
|
description: string;
|
|
3313
|
+
numberOfPositions: number;
|
|
3314
|
+
workHours?: number | null | undefined;
|
|
3315
|
+
location?: {
|
|
3316
|
+
address?: string | null | undefined;
|
|
3317
|
+
postcode?: string | null | undefined;
|
|
3318
|
+
county?: string | null | undefined;
|
|
3319
|
+
adminDistrict?: string | null | undefined;
|
|
3320
|
+
builtUpArea?: string | null | undefined;
|
|
3321
|
+
postTown?: string | null | undefined;
|
|
3322
|
+
areaCovered?: string | null | undefined;
|
|
3323
|
+
} | null | undefined;
|
|
2286
3324
|
}>;
|
|
2287
3325
|
userId: z.ZodString;
|
|
2288
3326
|
createdAt: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>;
|
|
@@ -2310,8 +3348,29 @@ export declare const activesContractRouter: {
|
|
|
2310
3348
|
email: string;
|
|
2311
3349
|
};
|
|
2312
3350
|
job: {
|
|
3351
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3352
|
+
createdAt: string;
|
|
3353
|
+
updatedAt: string;
|
|
2313
3354
|
id: string;
|
|
3355
|
+
pay: {
|
|
3356
|
+
rate: number;
|
|
3357
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3358
|
+
receivedRate: number;
|
|
3359
|
+
rateMax?: number | null | undefined;
|
|
3360
|
+
};
|
|
3361
|
+
tradeId: string;
|
|
2314
3362
|
description: string;
|
|
3363
|
+
numberOfPositions: number;
|
|
3364
|
+
workHours?: number | null | undefined;
|
|
3365
|
+
location?: {
|
|
3366
|
+
address?: string | null | undefined;
|
|
3367
|
+
postcode?: string | null | undefined;
|
|
3368
|
+
county?: string | null | undefined;
|
|
3369
|
+
adminDistrict?: string | null | undefined;
|
|
3370
|
+
builtUpArea?: string | null | undefined;
|
|
3371
|
+
postTown?: string | null | undefined;
|
|
3372
|
+
areaCovered?: string | null | undefined;
|
|
3373
|
+
} | null | undefined;
|
|
2315
3374
|
};
|
|
2316
3375
|
endDate?: string | null | undefined;
|
|
2317
3376
|
}, {
|
|
@@ -2337,8 +3396,29 @@ export declare const activesContractRouter: {
|
|
|
2337
3396
|
email: string;
|
|
2338
3397
|
};
|
|
2339
3398
|
job: {
|
|
3399
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3400
|
+
createdAt: string | Date;
|
|
3401
|
+
updatedAt: string | Date;
|
|
2340
3402
|
id: string;
|
|
3403
|
+
pay: {
|
|
3404
|
+
rate: number;
|
|
3405
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3406
|
+
receivedRate: number;
|
|
3407
|
+
rateMax?: number | null | undefined;
|
|
3408
|
+
};
|
|
3409
|
+
tradeId: string;
|
|
2341
3410
|
description: string;
|
|
3411
|
+
numberOfPositions: number;
|
|
3412
|
+
workHours?: number | null | undefined;
|
|
3413
|
+
location?: {
|
|
3414
|
+
address?: string | null | undefined;
|
|
3415
|
+
postcode?: string | null | undefined;
|
|
3416
|
+
county?: string | null | undefined;
|
|
3417
|
+
adminDistrict?: string | null | undefined;
|
|
3418
|
+
builtUpArea?: string | null | undefined;
|
|
3419
|
+
postTown?: string | null | undefined;
|
|
3420
|
+
areaCovered?: string | null | undefined;
|
|
3421
|
+
} | null | undefined;
|
|
2342
3422
|
};
|
|
2343
3423
|
endDate?: string | Date | null | undefined;
|
|
2344
3424
|
}>;
|
|
@@ -2383,8 +3463,29 @@ export declare const activesContractRouter: {
|
|
|
2383
3463
|
email: string;
|
|
2384
3464
|
};
|
|
2385
3465
|
job: {
|
|
3466
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3467
|
+
createdAt: string;
|
|
3468
|
+
updatedAt: string;
|
|
2386
3469
|
id: string;
|
|
3470
|
+
pay: {
|
|
3471
|
+
rate: number;
|
|
3472
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3473
|
+
receivedRate: number;
|
|
3474
|
+
rateMax?: number | null | undefined;
|
|
3475
|
+
};
|
|
3476
|
+
tradeId: string;
|
|
2387
3477
|
description: string;
|
|
3478
|
+
numberOfPositions: number;
|
|
3479
|
+
workHours?: number | null | undefined;
|
|
3480
|
+
location?: {
|
|
3481
|
+
address?: string | null | undefined;
|
|
3482
|
+
postcode?: string | null | undefined;
|
|
3483
|
+
county?: string | null | undefined;
|
|
3484
|
+
adminDistrict?: string | null | undefined;
|
|
3485
|
+
builtUpArea?: string | null | undefined;
|
|
3486
|
+
postTown?: string | null | undefined;
|
|
3487
|
+
areaCovered?: string | null | undefined;
|
|
3488
|
+
} | null | undefined;
|
|
2388
3489
|
};
|
|
2389
3490
|
endDate?: string | null | undefined;
|
|
2390
3491
|
};
|
|
@@ -2427,8 +3528,29 @@ export declare const activesContractRouter: {
|
|
|
2427
3528
|
email: string;
|
|
2428
3529
|
};
|
|
2429
3530
|
job: {
|
|
3531
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE";
|
|
3532
|
+
createdAt: string | Date;
|
|
3533
|
+
updatedAt: string | Date;
|
|
2430
3534
|
id: string;
|
|
3535
|
+
pay: {
|
|
3536
|
+
rate: number;
|
|
3537
|
+
rateUnit: "DAILY" | "HOURLY";
|
|
3538
|
+
receivedRate: number;
|
|
3539
|
+
rateMax?: number | null | undefined;
|
|
3540
|
+
};
|
|
3541
|
+
tradeId: string;
|
|
2431
3542
|
description: string;
|
|
3543
|
+
numberOfPositions: number;
|
|
3544
|
+
workHours?: number | null | undefined;
|
|
3545
|
+
location?: {
|
|
3546
|
+
address?: string | null | undefined;
|
|
3547
|
+
postcode?: string | null | undefined;
|
|
3548
|
+
county?: string | null | undefined;
|
|
3549
|
+
adminDistrict?: string | null | undefined;
|
|
3550
|
+
builtUpArea?: string | null | undefined;
|
|
3551
|
+
postTown?: string | null | undefined;
|
|
3552
|
+
areaCovered?: string | null | undefined;
|
|
3553
|
+
} | null | undefined;
|
|
2432
3554
|
};
|
|
2433
3555
|
endDate?: string | Date | null | undefined;
|
|
2434
3556
|
};
|