@dakkitor/api-contracts 1.1.89 → 1.1.90
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/abilities/second-agent.abilities.json +1 -1
- package/dist/actives/actives.contract.d.ts +46 -46
- package/dist/bookings/bookings.contract.d.ts +39 -39
- package/dist/jobs/jobs.contract.d.ts +63 -63
- package/dist/jobs/jobs.contract.d.ts.map +1 -1
- package/dist/jobs/jobs.contract.js +12 -5
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
/**
|
|
3
3
|
* Job Status Enum
|
|
4
4
|
*/
|
|
5
|
-
export declare const JobStatusSchema: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
5
|
+
export declare const JobStatusSchema: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
6
6
|
/**
|
|
7
7
|
* Job Sortable Fields Enum
|
|
8
8
|
*/
|
|
@@ -82,7 +82,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
82
82
|
description: z.ZodString;
|
|
83
83
|
numberOfPositions: z.ZodNumber;
|
|
84
84
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
85
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
85
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
86
86
|
pay: z.ZodObject<{
|
|
87
87
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
88
88
|
rate: z.ZodNumber;
|
|
@@ -668,7 +668,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
668
668
|
}, "strip", z.ZodTypeAny, {
|
|
669
669
|
description: string;
|
|
670
670
|
numberOfPositions: number;
|
|
671
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
671
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
672
672
|
createdAt: string;
|
|
673
673
|
updatedAt: string;
|
|
674
674
|
id: string;
|
|
@@ -787,7 +787,7 @@ export declare const JobSchema: z.ZodObject<{
|
|
|
787
787
|
}, {
|
|
788
788
|
description: string;
|
|
789
789
|
numberOfPositions: number;
|
|
790
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
790
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
791
791
|
createdAt: string | Date;
|
|
792
792
|
updatedAt: string | Date;
|
|
793
793
|
id: string;
|
|
@@ -955,11 +955,11 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
955
955
|
qualificationId: string;
|
|
956
956
|
qualificationTypeId?: string | null | undefined;
|
|
957
957
|
}>, "many">>;
|
|
958
|
-
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
958
|
+
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>;
|
|
959
959
|
}, "strip", z.ZodTypeAny, {
|
|
960
960
|
description: string;
|
|
961
961
|
numberOfPositions: number;
|
|
962
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
962
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
963
963
|
workHours: number;
|
|
964
964
|
pay: {
|
|
965
965
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -992,7 +992,7 @@ export declare const CreateJobSchema: z.ZodObject<{
|
|
|
992
992
|
currentCollaboration: {
|
|
993
993
|
id: string;
|
|
994
994
|
};
|
|
995
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
995
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
996
996
|
workHours?: number | undefined;
|
|
997
997
|
location?: {
|
|
998
998
|
address?: string | null | undefined;
|
|
@@ -1137,11 +1137,11 @@ export declare const UpdateJobSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1137
1137
|
qualificationId: string;
|
|
1138
1138
|
qualificationTypeId?: string | null | undefined;
|
|
1139
1139
|
}>, "many">>;
|
|
1140
|
-
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
1140
|
+
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>;
|
|
1141
1141
|
}, "strip", z.ZodTypeAny, {
|
|
1142
1142
|
description?: string | undefined;
|
|
1143
1143
|
numberOfPositions?: number | undefined;
|
|
1144
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1144
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
1145
1145
|
workHours?: number | undefined;
|
|
1146
1146
|
pay?: {
|
|
1147
1147
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -1164,7 +1164,7 @@ export declare const UpdateJobSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1164
1164
|
}, {
|
|
1165
1165
|
description?: string | undefined;
|
|
1166
1166
|
numberOfPositions?: number | undefined;
|
|
1167
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1167
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
1168
1168
|
workHours?: number | undefined;
|
|
1169
1169
|
pay?: {
|
|
1170
1170
|
rate: number;
|
|
@@ -1187,7 +1187,7 @@ export declare const UpdateJobSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1187
1187
|
}>, {
|
|
1188
1188
|
description?: string | undefined;
|
|
1189
1189
|
numberOfPositions?: number | undefined;
|
|
1190
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1190
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
1191
1191
|
workHours?: number | undefined;
|
|
1192
1192
|
pay?: {
|
|
1193
1193
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -1210,7 +1210,7 @@ export declare const UpdateJobSchema: z.ZodEffects<z.ZodObject<{
|
|
|
1210
1210
|
}, {
|
|
1211
1211
|
description?: string | undefined;
|
|
1212
1212
|
numberOfPositions?: number | undefined;
|
|
1213
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1213
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
1214
1214
|
workHours?: number | undefined;
|
|
1215
1215
|
pay?: {
|
|
1216
1216
|
rate: number;
|
|
@@ -1259,7 +1259,7 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1259
1259
|
qualificationId?: string | undefined;
|
|
1260
1260
|
qualificationTypeId?: string | undefined;
|
|
1261
1261
|
}>, "many">>;
|
|
1262
|
-
status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
1262
|
+
status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>>;
|
|
1263
1263
|
userId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1264
1264
|
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1265
1265
|
companyId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -1288,7 +1288,7 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1288
1288
|
}, "strip", z.ZodTypeAny, {
|
|
1289
1289
|
limit: number;
|
|
1290
1290
|
page: number;
|
|
1291
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1291
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | null | undefined;
|
|
1292
1292
|
createdAt?: {
|
|
1293
1293
|
from?: string | null | undefined;
|
|
1294
1294
|
to?: string | null | undefined;
|
|
@@ -1312,7 +1312,7 @@ export declare const FilterJobSchema: z.ZodObject<{
|
|
|
1312
1312
|
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
1313
1313
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
1314
1314
|
}, {
|
|
1315
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1315
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | null | undefined;
|
|
1316
1316
|
createdAt?: {
|
|
1317
1317
|
from?: string | null | undefined;
|
|
1318
1318
|
to?: string | null | undefined;
|
|
@@ -1344,7 +1344,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1344
1344
|
description: z.ZodString;
|
|
1345
1345
|
numberOfPositions: z.ZodNumber;
|
|
1346
1346
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1347
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
1347
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
1348
1348
|
pay: z.ZodObject<{
|
|
1349
1349
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
1350
1350
|
rate: z.ZodNumber;
|
|
@@ -1930,7 +1930,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
1930
1930
|
}, "strip", z.ZodTypeAny, {
|
|
1931
1931
|
description: string;
|
|
1932
1932
|
numberOfPositions: number;
|
|
1933
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1933
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1934
1934
|
createdAt: string;
|
|
1935
1935
|
updatedAt: string;
|
|
1936
1936
|
id: string;
|
|
@@ -2049,7 +2049,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2049
2049
|
}, {
|
|
2050
2050
|
description: string;
|
|
2051
2051
|
numberOfPositions: number;
|
|
2052
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
2052
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
2053
2053
|
createdAt: string | Date;
|
|
2054
2054
|
updatedAt: string | Date;
|
|
2055
2055
|
id: string;
|
|
@@ -2176,7 +2176,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2176
2176
|
items: {
|
|
2177
2177
|
description: string;
|
|
2178
2178
|
numberOfPositions: number;
|
|
2179
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
2179
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
2180
2180
|
createdAt: string;
|
|
2181
2181
|
updatedAt: string;
|
|
2182
2182
|
id: string;
|
|
@@ -2302,7 +2302,7 @@ export declare const PaginatedJobResponseSchema: z.ZodObject<{
|
|
|
2302
2302
|
items: {
|
|
2303
2303
|
description: string;
|
|
2304
2304
|
numberOfPositions: number;
|
|
2305
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
2305
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
2306
2306
|
createdAt: string | Date;
|
|
2307
2307
|
updatedAt: string | Date;
|
|
2308
2308
|
id: string;
|
|
@@ -2456,7 +2456,7 @@ export declare const SearchJobResultSchema: z.ZodObject<{
|
|
|
2456
2456
|
description: z.ZodString;
|
|
2457
2457
|
numberOfPositions: z.ZodNumber;
|
|
2458
2458
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2459
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
2459
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
2460
2460
|
pay: z.ZodObject<{
|
|
2461
2461
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
2462
2462
|
rate: z.ZodNumber;
|
|
@@ -3042,7 +3042,7 @@ export declare const SearchJobResultSchema: z.ZodObject<{
|
|
|
3042
3042
|
}, "strip", z.ZodTypeAny, {
|
|
3043
3043
|
description: string;
|
|
3044
3044
|
numberOfPositions: number;
|
|
3045
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3045
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3046
3046
|
createdAt: string;
|
|
3047
3047
|
updatedAt: string;
|
|
3048
3048
|
id: string;
|
|
@@ -3161,7 +3161,7 @@ export declare const SearchJobResultSchema: z.ZodObject<{
|
|
|
3161
3161
|
}, {
|
|
3162
3162
|
description: string;
|
|
3163
3163
|
numberOfPositions: number;
|
|
3164
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3164
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3165
3165
|
createdAt: string | Date;
|
|
3166
3166
|
updatedAt: string | Date;
|
|
3167
3167
|
id: string;
|
|
@@ -3283,7 +3283,7 @@ export declare const SearchJobResultSchema: z.ZodObject<{
|
|
|
3283
3283
|
job: {
|
|
3284
3284
|
description: string;
|
|
3285
3285
|
numberOfPositions: number;
|
|
3286
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3286
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3287
3287
|
createdAt: string;
|
|
3288
3288
|
updatedAt: string;
|
|
3289
3289
|
id: string;
|
|
@@ -3405,7 +3405,7 @@ export declare const SearchJobResultSchema: z.ZodObject<{
|
|
|
3405
3405
|
job: {
|
|
3406
3406
|
description: string;
|
|
3407
3407
|
numberOfPositions: number;
|
|
3408
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3408
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3409
3409
|
createdAt: string | Date;
|
|
3410
3410
|
updatedAt: string | Date;
|
|
3411
3411
|
id: string;
|
|
@@ -3530,7 +3530,7 @@ export declare const SearchJobResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
3530
3530
|
description: z.ZodString;
|
|
3531
3531
|
numberOfPositions: z.ZodNumber;
|
|
3532
3532
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
3533
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
3533
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
3534
3534
|
pay: z.ZodObject<{
|
|
3535
3535
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
3536
3536
|
rate: z.ZodNumber;
|
|
@@ -4116,7 +4116,7 @@ export declare const SearchJobResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4116
4116
|
}, "strip", z.ZodTypeAny, {
|
|
4117
4117
|
description: string;
|
|
4118
4118
|
numberOfPositions: number;
|
|
4119
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4119
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4120
4120
|
createdAt: string;
|
|
4121
4121
|
updatedAt: string;
|
|
4122
4122
|
id: string;
|
|
@@ -4235,7 +4235,7 @@ export declare const SearchJobResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4235
4235
|
}, {
|
|
4236
4236
|
description: string;
|
|
4237
4237
|
numberOfPositions: number;
|
|
4238
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4238
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4239
4239
|
createdAt: string | Date;
|
|
4240
4240
|
updatedAt: string | Date;
|
|
4241
4241
|
id: string;
|
|
@@ -4357,7 +4357,7 @@ export declare const SearchJobResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4357
4357
|
job: {
|
|
4358
4358
|
description: string;
|
|
4359
4359
|
numberOfPositions: number;
|
|
4360
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4360
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4361
4361
|
createdAt: string;
|
|
4362
4362
|
updatedAt: string;
|
|
4363
4363
|
id: string;
|
|
@@ -4479,7 +4479,7 @@ export declare const SearchJobResponseSchema: z.ZodArray<z.ZodObject<{
|
|
|
4479
4479
|
job: {
|
|
4480
4480
|
description: string;
|
|
4481
4481
|
numberOfPositions: number;
|
|
4482
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4482
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4483
4483
|
createdAt: string | Date;
|
|
4484
4484
|
updatedAt: string | Date;
|
|
4485
4485
|
id: string;
|
|
@@ -4658,11 +4658,11 @@ export declare const jobsContractRouter: {
|
|
|
4658
4658
|
qualificationId: string;
|
|
4659
4659
|
qualificationTypeId?: string | null | undefined;
|
|
4660
4660
|
}>, "many">>;
|
|
4661
|
-
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
4661
|
+
status: z.ZodDefault<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>;
|
|
4662
4662
|
}, "strip", z.ZodTypeAny, {
|
|
4663
4663
|
description: string;
|
|
4664
4664
|
numberOfPositions: number;
|
|
4665
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4665
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4666
4666
|
workHours: number;
|
|
4667
4667
|
pay: {
|
|
4668
4668
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -4695,7 +4695,7 @@ export declare const jobsContractRouter: {
|
|
|
4695
4695
|
currentCollaboration: {
|
|
4696
4696
|
id: string;
|
|
4697
4697
|
};
|
|
4698
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4698
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
4699
4699
|
workHours?: number | undefined;
|
|
4700
4700
|
location?: {
|
|
4701
4701
|
address?: string | null | undefined;
|
|
@@ -4813,7 +4813,7 @@ export declare const jobsContractRouter: {
|
|
|
4813
4813
|
description: z.ZodString;
|
|
4814
4814
|
numberOfPositions: z.ZodNumber;
|
|
4815
4815
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
4816
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
4816
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
4817
4817
|
pay: z.ZodObject<{
|
|
4818
4818
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
4819
4819
|
rate: z.ZodNumber;
|
|
@@ -5399,7 +5399,7 @@ export declare const jobsContractRouter: {
|
|
|
5399
5399
|
}, "strip", z.ZodTypeAny, {
|
|
5400
5400
|
description: string;
|
|
5401
5401
|
numberOfPositions: number;
|
|
5402
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
5402
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
5403
5403
|
createdAt: string;
|
|
5404
5404
|
updatedAt: string;
|
|
5405
5405
|
id: string;
|
|
@@ -5518,7 +5518,7 @@ export declare const jobsContractRouter: {
|
|
|
5518
5518
|
}, {
|
|
5519
5519
|
description: string;
|
|
5520
5520
|
numberOfPositions: number;
|
|
5521
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
5521
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
5522
5522
|
createdAt: string | Date;
|
|
5523
5523
|
updatedAt: string | Date;
|
|
5524
5524
|
id: string;
|
|
@@ -5858,7 +5858,7 @@ export declare const jobsContractRouter: {
|
|
|
5858
5858
|
description: z.ZodString;
|
|
5859
5859
|
numberOfPositions: z.ZodNumber;
|
|
5860
5860
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5861
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
5861
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
5862
5862
|
pay: z.ZodObject<{
|
|
5863
5863
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
5864
5864
|
rate: z.ZodNumber;
|
|
@@ -6444,7 +6444,7 @@ export declare const jobsContractRouter: {
|
|
|
6444
6444
|
}, "strip", z.ZodTypeAny, {
|
|
6445
6445
|
description: string;
|
|
6446
6446
|
numberOfPositions: number;
|
|
6447
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6447
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6448
6448
|
createdAt: string;
|
|
6449
6449
|
updatedAt: string;
|
|
6450
6450
|
id: string;
|
|
@@ -6563,7 +6563,7 @@ export declare const jobsContractRouter: {
|
|
|
6563
6563
|
}, {
|
|
6564
6564
|
description: string;
|
|
6565
6565
|
numberOfPositions: number;
|
|
6566
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6566
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6567
6567
|
createdAt: string | Date;
|
|
6568
6568
|
updatedAt: string | Date;
|
|
6569
6569
|
id: string;
|
|
@@ -6739,7 +6739,7 @@ export declare const jobsContractRouter: {
|
|
|
6739
6739
|
qualificationId?: string | undefined;
|
|
6740
6740
|
qualificationTypeId?: string | undefined;
|
|
6741
6741
|
}>, "many">>;
|
|
6742
|
-
status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
6742
|
+
status: z.ZodNullable<z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>>;
|
|
6743
6743
|
userId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6744
6744
|
clientId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
6745
6745
|
companyId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
@@ -6768,7 +6768,7 @@ export declare const jobsContractRouter: {
|
|
|
6768
6768
|
}, "strip", z.ZodTypeAny, {
|
|
6769
6769
|
limit: number;
|
|
6770
6770
|
page: number;
|
|
6771
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6771
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | null | undefined;
|
|
6772
6772
|
createdAt?: {
|
|
6773
6773
|
from?: string | null | undefined;
|
|
6774
6774
|
to?: string | null | undefined;
|
|
@@ -6792,7 +6792,7 @@ export declare const jobsContractRouter: {
|
|
|
6792
6792
|
sortBy?: "description" | "numberOfPositions" | "status" | "createdAt" | "updatedAt" | null | undefined;
|
|
6793
6793
|
sortOrder?: "ASC" | "DESC" | null | undefined;
|
|
6794
6794
|
}, {
|
|
6795
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6795
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | null | undefined;
|
|
6796
6796
|
createdAt?: {
|
|
6797
6797
|
from?: string | null | undefined;
|
|
6798
6798
|
to?: string | null | undefined;
|
|
@@ -6928,7 +6928,7 @@ export declare const jobsContractRouter: {
|
|
|
6928
6928
|
description: z.ZodString;
|
|
6929
6929
|
numberOfPositions: z.ZodNumber;
|
|
6930
6930
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
6931
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
6931
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
6932
6932
|
pay: z.ZodObject<{
|
|
6933
6933
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
6934
6934
|
rate: z.ZodNumber;
|
|
@@ -7514,7 +7514,7 @@ export declare const jobsContractRouter: {
|
|
|
7514
7514
|
}, "strip", z.ZodTypeAny, {
|
|
7515
7515
|
description: string;
|
|
7516
7516
|
numberOfPositions: number;
|
|
7517
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
7517
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
7518
7518
|
createdAt: string;
|
|
7519
7519
|
updatedAt: string;
|
|
7520
7520
|
id: string;
|
|
@@ -7633,7 +7633,7 @@ export declare const jobsContractRouter: {
|
|
|
7633
7633
|
}, {
|
|
7634
7634
|
description: string;
|
|
7635
7635
|
numberOfPositions: number;
|
|
7636
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
7636
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
7637
7637
|
createdAt: string | Date;
|
|
7638
7638
|
updatedAt: string | Date;
|
|
7639
7639
|
id: string;
|
|
@@ -7760,7 +7760,7 @@ export declare const jobsContractRouter: {
|
|
|
7760
7760
|
items: {
|
|
7761
7761
|
description: string;
|
|
7762
7762
|
numberOfPositions: number;
|
|
7763
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
7763
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
7764
7764
|
createdAt: string;
|
|
7765
7765
|
updatedAt: string;
|
|
7766
7766
|
id: string;
|
|
@@ -7886,7 +7886,7 @@ export declare const jobsContractRouter: {
|
|
|
7886
7886
|
items: {
|
|
7887
7887
|
description: string;
|
|
7888
7888
|
numberOfPositions: number;
|
|
7889
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
7889
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
7890
7890
|
createdAt: string | Date;
|
|
7891
7891
|
updatedAt: string | Date;
|
|
7892
7892
|
id: string;
|
|
@@ -8144,7 +8144,7 @@ export declare const jobsContractRouter: {
|
|
|
8144
8144
|
description: z.ZodString;
|
|
8145
8145
|
numberOfPositions: z.ZodNumber;
|
|
8146
8146
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
8147
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
8147
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
8148
8148
|
pay: z.ZodObject<{
|
|
8149
8149
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
8150
8150
|
rate: z.ZodNumber;
|
|
@@ -8730,7 +8730,7 @@ export declare const jobsContractRouter: {
|
|
|
8730
8730
|
}, "strip", z.ZodTypeAny, {
|
|
8731
8731
|
description: string;
|
|
8732
8732
|
numberOfPositions: number;
|
|
8733
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8733
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8734
8734
|
createdAt: string;
|
|
8735
8735
|
updatedAt: string;
|
|
8736
8736
|
id: string;
|
|
@@ -8849,7 +8849,7 @@ export declare const jobsContractRouter: {
|
|
|
8849
8849
|
}, {
|
|
8850
8850
|
description: string;
|
|
8851
8851
|
numberOfPositions: number;
|
|
8852
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8852
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8853
8853
|
createdAt: string | Date;
|
|
8854
8854
|
updatedAt: string | Date;
|
|
8855
8855
|
id: string;
|
|
@@ -8971,7 +8971,7 @@ export declare const jobsContractRouter: {
|
|
|
8971
8971
|
job: {
|
|
8972
8972
|
description: string;
|
|
8973
8973
|
numberOfPositions: number;
|
|
8974
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8974
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8975
8975
|
createdAt: string;
|
|
8976
8976
|
updatedAt: string;
|
|
8977
8977
|
id: string;
|
|
@@ -9093,7 +9093,7 @@ export declare const jobsContractRouter: {
|
|
|
9093
9093
|
job: {
|
|
9094
9094
|
description: string;
|
|
9095
9095
|
numberOfPositions: number;
|
|
9096
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
9096
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
9097
9097
|
createdAt: string | Date;
|
|
9098
9098
|
updatedAt: string | Date;
|
|
9099
9099
|
id: string;
|
|
@@ -9336,7 +9336,7 @@ export declare const jobsContractRouter: {
|
|
|
9336
9336
|
description: z.ZodString;
|
|
9337
9337
|
numberOfPositions: z.ZodNumber;
|
|
9338
9338
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
9339
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
9339
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
9340
9340
|
pay: z.ZodObject<{
|
|
9341
9341
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
9342
9342
|
rate: z.ZodNumber;
|
|
@@ -9922,7 +9922,7 @@ export declare const jobsContractRouter: {
|
|
|
9922
9922
|
}, "strip", z.ZodTypeAny, {
|
|
9923
9923
|
description: string;
|
|
9924
9924
|
numberOfPositions: number;
|
|
9925
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
9925
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
9926
9926
|
createdAt: string;
|
|
9927
9927
|
updatedAt: string;
|
|
9928
9928
|
id: string;
|
|
@@ -10041,7 +10041,7 @@ export declare const jobsContractRouter: {
|
|
|
10041
10041
|
}, {
|
|
10042
10042
|
description: string;
|
|
10043
10043
|
numberOfPositions: number;
|
|
10044
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10044
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
10045
10045
|
createdAt: string | Date;
|
|
10046
10046
|
updatedAt: string | Date;
|
|
10047
10047
|
id: string;
|
|
@@ -10249,11 +10249,11 @@ export declare const jobsContractRouter: {
|
|
|
10249
10249
|
qualificationId: string;
|
|
10250
10250
|
qualificationTypeId?: string | null | undefined;
|
|
10251
10251
|
}>, "many">>;
|
|
10252
|
-
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
10252
|
+
status: z.ZodOptional<z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>>;
|
|
10253
10253
|
}, "strip", z.ZodTypeAny, {
|
|
10254
10254
|
description?: string | undefined;
|
|
10255
10255
|
numberOfPositions?: number | undefined;
|
|
10256
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10256
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
10257
10257
|
workHours?: number | undefined;
|
|
10258
10258
|
pay?: {
|
|
10259
10259
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -10276,7 +10276,7 @@ export declare const jobsContractRouter: {
|
|
|
10276
10276
|
}, {
|
|
10277
10277
|
description?: string | undefined;
|
|
10278
10278
|
numberOfPositions?: number | undefined;
|
|
10279
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10279
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
10280
10280
|
workHours?: number | undefined;
|
|
10281
10281
|
pay?: {
|
|
10282
10282
|
rate: number;
|
|
@@ -10299,7 +10299,7 @@ export declare const jobsContractRouter: {
|
|
|
10299
10299
|
}>, {
|
|
10300
10300
|
description?: string | undefined;
|
|
10301
10301
|
numberOfPositions?: number | undefined;
|
|
10302
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10302
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
10303
10303
|
workHours?: number | undefined;
|
|
10304
10304
|
pay?: {
|
|
10305
10305
|
rateUnit: "DAILY" | "HOURLY";
|
|
@@ -10322,7 +10322,7 @@ export declare const jobsContractRouter: {
|
|
|
10322
10322
|
}, {
|
|
10323
10323
|
description?: string | undefined;
|
|
10324
10324
|
numberOfPositions?: number | undefined;
|
|
10325
|
-
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10325
|
+
status?: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT" | undefined;
|
|
10326
10326
|
workHours?: number | undefined;
|
|
10327
10327
|
pay?: {
|
|
10328
10328
|
rate: number;
|
|
@@ -10450,7 +10450,7 @@ export declare const jobsContractRouter: {
|
|
|
10450
10450
|
description: z.ZodString;
|
|
10451
10451
|
numberOfPositions: z.ZodNumber;
|
|
10452
10452
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
10453
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
10453
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
10454
10454
|
pay: z.ZodObject<{
|
|
10455
10455
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
10456
10456
|
rate: z.ZodNumber;
|
|
@@ -11036,7 +11036,7 @@ export declare const jobsContractRouter: {
|
|
|
11036
11036
|
}, "strip", z.ZodTypeAny, {
|
|
11037
11037
|
description: string;
|
|
11038
11038
|
numberOfPositions: number;
|
|
11039
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
11039
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
11040
11040
|
createdAt: string;
|
|
11041
11041
|
updatedAt: string;
|
|
11042
11042
|
id: string;
|
|
@@ -11155,7 +11155,7 @@ export declare const jobsContractRouter: {
|
|
|
11155
11155
|
}, {
|
|
11156
11156
|
description: string;
|
|
11157
11157
|
numberOfPositions: number;
|
|
11158
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
11158
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
11159
11159
|
createdAt: string | Date;
|
|
11160
11160
|
updatedAt: string | Date;
|
|
11161
11161
|
id: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jobs.contract.d.ts","sourceRoot":"","sources":["../../contracts/jobs/jobs.contract.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKM,CAAC;AAEzC,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAEM,CAAC;AAE3C,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAIxE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+F9B,CAAC"}
|
|
1
|
+
{"version":3,"file":"jobs.contract.d.ts","sourceRoot":"","sources":["../../contracts/jobs/jobs.contract.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKM,CAAC;AAEzC,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAEM,CAAC;AAE3C,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAIxE,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+F9B,CAAC"}
|
|
@@ -19,7 +19,7 @@ exports.JobStatusSchema = zod_1.z.enum([
|
|
|
19
19
|
'FILLED',
|
|
20
20
|
'AVAILABLE',
|
|
21
21
|
'NOT_AVAILABLE',
|
|
22
|
-
'
|
|
22
|
+
'DRAFT',
|
|
23
23
|
]);
|
|
24
24
|
/**
|
|
25
25
|
* Job Sortable Fields Enum
|
|
@@ -240,11 +240,18 @@ exports.UpdateJobSchema = zod_1.z
|
|
|
240
240
|
status: exports.JobStatusSchema.optional().describe('Job Status'),
|
|
241
241
|
})
|
|
242
242
|
.superRefine((data, ctx) => {
|
|
243
|
-
// If status is being set to something other than
|
|
244
|
-
// currentCollaboration
|
|
243
|
+
// If status is being set to something other than DRAFT,
|
|
244
|
+
// and currentCollaboration is null or an empty object (form with no selection),
|
|
245
|
+
// then require a collaboration.
|
|
246
|
+
// Note: We check for null or missing id specifically, not `!data.currentCollaboration`,
|
|
247
|
+
// because undefined means the field wasn't provided in the request (PATCH),
|
|
248
|
+
// and the service layer will handle checking the existing job's collaboration.
|
|
249
|
+
const hasNoCollaboration = data.currentCollaboration === null ||
|
|
250
|
+
(data.currentCollaboration !== undefined &&
|
|
251
|
+
!data.currentCollaboration.id);
|
|
245
252
|
if (data.status !== undefined &&
|
|
246
|
-
data.status !== '
|
|
247
|
-
|
|
253
|
+
data.status !== 'DRAFT' &&
|
|
254
|
+
hasNoCollaboration) {
|
|
248
255
|
ctx.addIssue({
|
|
249
256
|
code: zod_1.z.ZodIssueCode.custom,
|
|
250
257
|
message: 'A collaboration is required when setting status to a non-draft value.',
|