@dakkitor/api-contracts 1.1.89 → 1.1.91
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/bot.abilities.json +7 -0
- 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
|
@@ -336,7 +336,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
336
336
|
description: z.ZodString;
|
|
337
337
|
numberOfPositions: z.ZodNumber;
|
|
338
338
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
339
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
339
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
340
340
|
pay: z.ZodObject<{
|
|
341
341
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
342
342
|
rate: z.ZodNumber;
|
|
@@ -922,7 +922,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
922
922
|
}, "strip", z.ZodTypeAny, {
|
|
923
923
|
description: string;
|
|
924
924
|
numberOfPositions: number;
|
|
925
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
925
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
926
926
|
createdAt: string;
|
|
927
927
|
updatedAt: string;
|
|
928
928
|
id: string;
|
|
@@ -1041,7 +1041,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
1041
1041
|
}, {
|
|
1042
1042
|
description: string;
|
|
1043
1043
|
numberOfPositions: number;
|
|
1044
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1044
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1045
1045
|
createdAt: string | Date;
|
|
1046
1046
|
updatedAt: string | Date;
|
|
1047
1047
|
id: string;
|
|
@@ -1185,7 +1185,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
1185
1185
|
job: {
|
|
1186
1186
|
description: string;
|
|
1187
1187
|
numberOfPositions: number;
|
|
1188
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1188
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1189
1189
|
createdAt: string;
|
|
1190
1190
|
updatedAt: string;
|
|
1191
1191
|
id: string;
|
|
@@ -1390,7 +1390,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
1390
1390
|
job: {
|
|
1391
1391
|
description: string;
|
|
1392
1392
|
numberOfPositions: number;
|
|
1393
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1393
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1394
1394
|
createdAt: string | Date;
|
|
1395
1395
|
updatedAt: string | Date;
|
|
1396
1396
|
id: string;
|
|
@@ -1615,7 +1615,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
1615
1615
|
job: {
|
|
1616
1616
|
description: string;
|
|
1617
1617
|
numberOfPositions: number;
|
|
1618
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1618
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1619
1619
|
createdAt: string;
|
|
1620
1620
|
updatedAt: string;
|
|
1621
1621
|
id: string;
|
|
@@ -1838,7 +1838,7 @@ export declare const ActiveSchema: z.ZodObject<{
|
|
|
1838
1838
|
job: {
|
|
1839
1839
|
description: string;
|
|
1840
1840
|
numberOfPositions: number;
|
|
1841
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
1841
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
1842
1842
|
createdAt: string | Date;
|
|
1843
1843
|
updatedAt: string | Date;
|
|
1844
1844
|
id: string;
|
|
@@ -2534,7 +2534,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
2534
2534
|
description: z.ZodString;
|
|
2535
2535
|
numberOfPositions: z.ZodNumber;
|
|
2536
2536
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2537
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
2537
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
2538
2538
|
pay: z.ZodObject<{
|
|
2539
2539
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
2540
2540
|
rate: z.ZodNumber;
|
|
@@ -3120,7 +3120,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
3120
3120
|
}, "strip", z.ZodTypeAny, {
|
|
3121
3121
|
description: string;
|
|
3122
3122
|
numberOfPositions: number;
|
|
3123
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3123
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3124
3124
|
createdAt: string;
|
|
3125
3125
|
updatedAt: string;
|
|
3126
3126
|
id: string;
|
|
@@ -3239,7 +3239,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
3239
3239
|
}, {
|
|
3240
3240
|
description: string;
|
|
3241
3241
|
numberOfPositions: number;
|
|
3242
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3242
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3243
3243
|
createdAt: string | Date;
|
|
3244
3244
|
updatedAt: string | Date;
|
|
3245
3245
|
id: string;
|
|
@@ -3383,7 +3383,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
3383
3383
|
job: {
|
|
3384
3384
|
description: string;
|
|
3385
3385
|
numberOfPositions: number;
|
|
3386
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3386
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3387
3387
|
createdAt: string;
|
|
3388
3388
|
updatedAt: string;
|
|
3389
3389
|
id: string;
|
|
@@ -3588,7 +3588,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
3588
3588
|
job: {
|
|
3589
3589
|
description: string;
|
|
3590
3590
|
numberOfPositions: number;
|
|
3591
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3591
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3592
3592
|
createdAt: string | Date;
|
|
3593
3593
|
updatedAt: string | Date;
|
|
3594
3594
|
id: string;
|
|
@@ -3813,7 +3813,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
3813
3813
|
job: {
|
|
3814
3814
|
description: string;
|
|
3815
3815
|
numberOfPositions: number;
|
|
3816
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
3816
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
3817
3817
|
createdAt: string;
|
|
3818
3818
|
updatedAt: string;
|
|
3819
3819
|
id: string;
|
|
@@ -4036,7 +4036,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
4036
4036
|
job: {
|
|
4037
4037
|
description: string;
|
|
4038
4038
|
numberOfPositions: number;
|
|
4039
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4039
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4040
4040
|
createdAt: string | Date;
|
|
4041
4041
|
updatedAt: string | Date;
|
|
4042
4042
|
id: string;
|
|
@@ -4267,7 +4267,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
4267
4267
|
job: {
|
|
4268
4268
|
description: string;
|
|
4269
4269
|
numberOfPositions: number;
|
|
4270
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4270
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4271
4271
|
createdAt: string;
|
|
4272
4272
|
updatedAt: string;
|
|
4273
4273
|
id: string;
|
|
@@ -4497,7 +4497,7 @@ export declare const PaginatedActiveResponseSchema: z.ZodObject<{
|
|
|
4497
4497
|
job: {
|
|
4498
4498
|
description: string;
|
|
4499
4499
|
numberOfPositions: number;
|
|
4500
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
4500
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
4501
4501
|
createdAt: string | Date;
|
|
4502
4502
|
updatedAt: string | Date;
|
|
4503
4503
|
id: string;
|
|
@@ -5180,7 +5180,7 @@ export declare const activesContractRouter: {
|
|
|
5180
5180
|
description: z.ZodString;
|
|
5181
5181
|
numberOfPositions: z.ZodNumber;
|
|
5182
5182
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
5183
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
5183
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
5184
5184
|
pay: z.ZodObject<{
|
|
5185
5185
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
5186
5186
|
rate: z.ZodNumber;
|
|
@@ -5766,7 +5766,7 @@ export declare const activesContractRouter: {
|
|
|
5766
5766
|
}, "strip", z.ZodTypeAny, {
|
|
5767
5767
|
description: string;
|
|
5768
5768
|
numberOfPositions: number;
|
|
5769
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
5769
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
5770
5770
|
createdAt: string;
|
|
5771
5771
|
updatedAt: string;
|
|
5772
5772
|
id: string;
|
|
@@ -5885,7 +5885,7 @@ export declare const activesContractRouter: {
|
|
|
5885
5885
|
}, {
|
|
5886
5886
|
description: string;
|
|
5887
5887
|
numberOfPositions: number;
|
|
5888
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
5888
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
5889
5889
|
createdAt: string | Date;
|
|
5890
5890
|
updatedAt: string | Date;
|
|
5891
5891
|
id: string;
|
|
@@ -6029,7 +6029,7 @@ export declare const activesContractRouter: {
|
|
|
6029
6029
|
job: {
|
|
6030
6030
|
description: string;
|
|
6031
6031
|
numberOfPositions: number;
|
|
6032
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6032
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6033
6033
|
createdAt: string;
|
|
6034
6034
|
updatedAt: string;
|
|
6035
6035
|
id: string;
|
|
@@ -6234,7 +6234,7 @@ export declare const activesContractRouter: {
|
|
|
6234
6234
|
job: {
|
|
6235
6235
|
description: string;
|
|
6236
6236
|
numberOfPositions: number;
|
|
6237
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6237
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6238
6238
|
createdAt: string | Date;
|
|
6239
6239
|
updatedAt: string | Date;
|
|
6240
6240
|
id: string;
|
|
@@ -6459,7 +6459,7 @@ export declare const activesContractRouter: {
|
|
|
6459
6459
|
job: {
|
|
6460
6460
|
description: string;
|
|
6461
6461
|
numberOfPositions: number;
|
|
6462
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6462
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6463
6463
|
createdAt: string;
|
|
6464
6464
|
updatedAt: string;
|
|
6465
6465
|
id: string;
|
|
@@ -6682,7 +6682,7 @@ export declare const activesContractRouter: {
|
|
|
6682
6682
|
job: {
|
|
6683
6683
|
description: string;
|
|
6684
6684
|
numberOfPositions: number;
|
|
6685
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
6685
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
6686
6686
|
createdAt: string | Date;
|
|
6687
6687
|
updatedAt: string | Date;
|
|
6688
6688
|
id: string;
|
|
@@ -7468,7 +7468,7 @@ export declare const activesContractRouter: {
|
|
|
7468
7468
|
description: z.ZodString;
|
|
7469
7469
|
numberOfPositions: z.ZodNumber;
|
|
7470
7470
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
7471
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
7471
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
7472
7472
|
pay: z.ZodObject<{
|
|
7473
7473
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
7474
7474
|
rate: z.ZodNumber;
|
|
@@ -8054,7 +8054,7 @@ export declare const activesContractRouter: {
|
|
|
8054
8054
|
}, "strip", z.ZodTypeAny, {
|
|
8055
8055
|
description: string;
|
|
8056
8056
|
numberOfPositions: number;
|
|
8057
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8057
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8058
8058
|
createdAt: string;
|
|
8059
8059
|
updatedAt: string;
|
|
8060
8060
|
id: string;
|
|
@@ -8173,7 +8173,7 @@ export declare const activesContractRouter: {
|
|
|
8173
8173
|
}, {
|
|
8174
8174
|
description: string;
|
|
8175
8175
|
numberOfPositions: number;
|
|
8176
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8176
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8177
8177
|
createdAt: string | Date;
|
|
8178
8178
|
updatedAt: string | Date;
|
|
8179
8179
|
id: string;
|
|
@@ -8317,7 +8317,7 @@ export declare const activesContractRouter: {
|
|
|
8317
8317
|
job: {
|
|
8318
8318
|
description: string;
|
|
8319
8319
|
numberOfPositions: number;
|
|
8320
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8320
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8321
8321
|
createdAt: string;
|
|
8322
8322
|
updatedAt: string;
|
|
8323
8323
|
id: string;
|
|
@@ -8522,7 +8522,7 @@ export declare const activesContractRouter: {
|
|
|
8522
8522
|
job: {
|
|
8523
8523
|
description: string;
|
|
8524
8524
|
numberOfPositions: number;
|
|
8525
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8525
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8526
8526
|
createdAt: string | Date;
|
|
8527
8527
|
updatedAt: string | Date;
|
|
8528
8528
|
id: string;
|
|
@@ -8747,7 +8747,7 @@ export declare const activesContractRouter: {
|
|
|
8747
8747
|
job: {
|
|
8748
8748
|
description: string;
|
|
8749
8749
|
numberOfPositions: number;
|
|
8750
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8750
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8751
8751
|
createdAt: string;
|
|
8752
8752
|
updatedAt: string;
|
|
8753
8753
|
id: string;
|
|
@@ -8970,7 +8970,7 @@ export declare const activesContractRouter: {
|
|
|
8970
8970
|
job: {
|
|
8971
8971
|
description: string;
|
|
8972
8972
|
numberOfPositions: number;
|
|
8973
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
8973
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
8974
8974
|
createdAt: string | Date;
|
|
8975
8975
|
updatedAt: string | Date;
|
|
8976
8976
|
id: string;
|
|
@@ -9201,7 +9201,7 @@ export declare const activesContractRouter: {
|
|
|
9201
9201
|
job: {
|
|
9202
9202
|
description: string;
|
|
9203
9203
|
numberOfPositions: number;
|
|
9204
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
9204
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
9205
9205
|
createdAt: string;
|
|
9206
9206
|
updatedAt: string;
|
|
9207
9207
|
id: string;
|
|
@@ -9431,7 +9431,7 @@ export declare const activesContractRouter: {
|
|
|
9431
9431
|
job: {
|
|
9432
9432
|
description: string;
|
|
9433
9433
|
numberOfPositions: number;
|
|
9434
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
9434
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
9435
9435
|
createdAt: string | Date;
|
|
9436
9436
|
updatedAt: string | Date;
|
|
9437
9437
|
id: string;
|
|
@@ -10073,7 +10073,7 @@ export declare const activesContractRouter: {
|
|
|
10073
10073
|
description: z.ZodString;
|
|
10074
10074
|
numberOfPositions: z.ZodNumber;
|
|
10075
10075
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
10076
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
10076
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
10077
10077
|
pay: z.ZodObject<{
|
|
10078
10078
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
10079
10079
|
rate: z.ZodNumber;
|
|
@@ -10659,7 +10659,7 @@ export declare const activesContractRouter: {
|
|
|
10659
10659
|
}, "strip", z.ZodTypeAny, {
|
|
10660
10660
|
description: string;
|
|
10661
10661
|
numberOfPositions: number;
|
|
10662
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10662
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
10663
10663
|
createdAt: string;
|
|
10664
10664
|
updatedAt: string;
|
|
10665
10665
|
id: string;
|
|
@@ -10778,7 +10778,7 @@ export declare const activesContractRouter: {
|
|
|
10778
10778
|
}, {
|
|
10779
10779
|
description: string;
|
|
10780
10780
|
numberOfPositions: number;
|
|
10781
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10781
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
10782
10782
|
createdAt: string | Date;
|
|
10783
10783
|
updatedAt: string | Date;
|
|
10784
10784
|
id: string;
|
|
@@ -10922,7 +10922,7 @@ export declare const activesContractRouter: {
|
|
|
10922
10922
|
job: {
|
|
10923
10923
|
description: string;
|
|
10924
10924
|
numberOfPositions: number;
|
|
10925
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
10925
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
10926
10926
|
createdAt: string;
|
|
10927
10927
|
updatedAt: string;
|
|
10928
10928
|
id: string;
|
|
@@ -11127,7 +11127,7 @@ export declare const activesContractRouter: {
|
|
|
11127
11127
|
job: {
|
|
11128
11128
|
description: string;
|
|
11129
11129
|
numberOfPositions: number;
|
|
11130
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
11130
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
11131
11131
|
createdAt: string | Date;
|
|
11132
11132
|
updatedAt: string | Date;
|
|
11133
11133
|
id: string;
|
|
@@ -11352,7 +11352,7 @@ export declare const activesContractRouter: {
|
|
|
11352
11352
|
job: {
|
|
11353
11353
|
description: string;
|
|
11354
11354
|
numberOfPositions: number;
|
|
11355
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
11355
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
11356
11356
|
createdAt: string;
|
|
11357
11357
|
updatedAt: string;
|
|
11358
11358
|
id: string;
|
|
@@ -11575,7 +11575,7 @@ export declare const activesContractRouter: {
|
|
|
11575
11575
|
job: {
|
|
11576
11576
|
description: string;
|
|
11577
11577
|
numberOfPositions: number;
|
|
11578
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
11578
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
11579
11579
|
createdAt: string | Date;
|
|
11580
11580
|
updatedAt: string | Date;
|
|
11581
11581
|
id: string;
|
|
@@ -12276,7 +12276,7 @@ export declare const activesContractRouter: {
|
|
|
12276
12276
|
description: z.ZodString;
|
|
12277
12277
|
numberOfPositions: z.ZodNumber;
|
|
12278
12278
|
workHours: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
12279
|
-
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "
|
|
12279
|
+
status: z.ZodEnum<["CANCELED", "FILLED", "AVAILABLE", "NOT_AVAILABLE", "DRAFT"]>;
|
|
12280
12280
|
pay: z.ZodObject<{
|
|
12281
12281
|
rateUnit: z.ZodEnum<["DAILY", "HOURLY"]>;
|
|
12282
12282
|
rate: z.ZodNumber;
|
|
@@ -12862,7 +12862,7 @@ export declare const activesContractRouter: {
|
|
|
12862
12862
|
}, "strip", z.ZodTypeAny, {
|
|
12863
12863
|
description: string;
|
|
12864
12864
|
numberOfPositions: number;
|
|
12865
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
12865
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
12866
12866
|
createdAt: string;
|
|
12867
12867
|
updatedAt: string;
|
|
12868
12868
|
id: string;
|
|
@@ -12981,7 +12981,7 @@ export declare const activesContractRouter: {
|
|
|
12981
12981
|
}, {
|
|
12982
12982
|
description: string;
|
|
12983
12983
|
numberOfPositions: number;
|
|
12984
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
12984
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
12985
12985
|
createdAt: string | Date;
|
|
12986
12986
|
updatedAt: string | Date;
|
|
12987
12987
|
id: string;
|
|
@@ -13125,7 +13125,7 @@ export declare const activesContractRouter: {
|
|
|
13125
13125
|
job: {
|
|
13126
13126
|
description: string;
|
|
13127
13127
|
numberOfPositions: number;
|
|
13128
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
13128
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
13129
13129
|
createdAt: string;
|
|
13130
13130
|
updatedAt: string;
|
|
13131
13131
|
id: string;
|
|
@@ -13330,7 +13330,7 @@ export declare const activesContractRouter: {
|
|
|
13330
13330
|
job: {
|
|
13331
13331
|
description: string;
|
|
13332
13332
|
numberOfPositions: number;
|
|
13333
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
13333
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
13334
13334
|
createdAt: string | Date;
|
|
13335
13335
|
updatedAt: string | Date;
|
|
13336
13336
|
id: string;
|
|
@@ -13555,7 +13555,7 @@ export declare const activesContractRouter: {
|
|
|
13555
13555
|
job: {
|
|
13556
13556
|
description: string;
|
|
13557
13557
|
numberOfPositions: number;
|
|
13558
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
13558
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
13559
13559
|
createdAt: string;
|
|
13560
13560
|
updatedAt: string;
|
|
13561
13561
|
id: string;
|
|
@@ -13778,7 +13778,7 @@ export declare const activesContractRouter: {
|
|
|
13778
13778
|
job: {
|
|
13779
13779
|
description: string;
|
|
13780
13780
|
numberOfPositions: number;
|
|
13781
|
-
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "
|
|
13781
|
+
status: "CANCELED" | "FILLED" | "AVAILABLE" | "NOT_AVAILABLE" | "DRAFT";
|
|
13782
13782
|
createdAt: string | Date;
|
|
13783
13783
|
updatedAt: string | Date;
|
|
13784
13784
|
id: string;
|