@deepintel-ltd/farmpro-contracts 1.16.1 → 1.16.3
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/routes/agents.routes.d.ts +8 -8
- package/dist/routes/documents.routes.d.ts +78 -78
- package/dist/routes/fertigation.routes.d.ts +4 -4
- package/dist/routes/field-monitoring.routes.d.ts +40 -0
- package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.d.ts +174 -28
- package/dist/routes/field-observations.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.js +7 -4
- package/dist/routes/fields.routes.d.ts +923 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +23 -1
- package/dist/routes/files.routes.d.ts +6 -6
- package/dist/routes/finance.routes.d.ts +30 -30
- package/dist/routes/inventory.routes.d.ts +6 -6
- package/dist/routes/irrigation.routes.d.ts +2 -2
- package/dist/routes/monitoring-visualization.routes.d.ts +4 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +44 -44
- package/dist/routes/prescription-maps.routes.d.ts +4 -4
- package/dist/routes/subscriptions.routes.d.ts +4 -4
- package/dist/routes/tasks.routes.d.ts +108 -108
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/routes/weather.routes.d.ts +42 -42
- package/dist/schemas/agents.schemas.d.ts +8 -8
- package/dist/schemas/common.schemas.d.ts +32 -0
- package/dist/schemas/common.schemas.d.ts.map +1 -1
- package/dist/schemas/common.schemas.js +14 -0
- package/dist/schemas/documents.schemas.d.ts +48 -48
- package/dist/schemas/fertigation.schemas.d.ts +2 -2
- package/dist/schemas/field-monitoring.schemas.d.ts +20 -0
- package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
- package/dist/schemas/field-monitoring.schemas.js +4 -0
- package/dist/schemas/fields.schemas.d.ts +170 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +14 -0
- package/dist/schemas/files.schemas.d.ts +12 -12
- package/dist/schemas/finance.schemas.d.ts +34 -34
- package/dist/schemas/inventory.schemas.d.ts +6 -6
- package/dist/schemas/irrigation.schemas.d.ts +2 -2
- package/dist/schemas/monitoring-visualization.schemas.d.ts +6 -6
- package/dist/schemas/pest-disease-risk.schemas.d.ts +36 -36
- package/dist/schemas/prescription-maps.schemas.d.ts +4 -4
- package/dist/schemas/subscriptions.schemas.d.ts +2 -2
- package/dist/schemas/tasks.schemas.d.ts +96 -96
- package/dist/schemas/team-payments.schemas.d.ts +24 -24
- package/dist/schemas/weather.schemas.d.ts +84 -84
- package/package.json +1 -1
|
@@ -18,13 +18,13 @@ export declare const taskNoteSchema: z.ZodObject<{
|
|
|
18
18
|
}, "strip", z.ZodTypeAny, {
|
|
19
19
|
id: string;
|
|
20
20
|
fileUrl: string;
|
|
21
|
-
fileExtension?: string | null | undefined;
|
|
22
21
|
fileName?: string | undefined;
|
|
22
|
+
fileExtension?: string | null | undefined;
|
|
23
23
|
}, {
|
|
24
24
|
id: string;
|
|
25
25
|
fileUrl: string;
|
|
26
|
-
fileExtension?: string | null | undefined;
|
|
27
26
|
fileName?: string | undefined;
|
|
27
|
+
fileExtension?: string | null | undefined;
|
|
28
28
|
}>, "many">>;
|
|
29
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
30
|
id: string;
|
|
@@ -36,8 +36,8 @@ export declare const taskNoteSchema: z.ZodObject<{
|
|
|
36
36
|
documents?: {
|
|
37
37
|
id: string;
|
|
38
38
|
fileUrl: string;
|
|
39
|
-
fileExtension?: string | null | undefined;
|
|
40
39
|
fileName?: string | undefined;
|
|
40
|
+
fileExtension?: string | null | undefined;
|
|
41
41
|
}[] | undefined;
|
|
42
42
|
}, {
|
|
43
43
|
id: string;
|
|
@@ -49,8 +49,8 @@ export declare const taskNoteSchema: z.ZodObject<{
|
|
|
49
49
|
documents?: {
|
|
50
50
|
id: string;
|
|
51
51
|
fileUrl: string;
|
|
52
|
-
fileExtension?: string | null | undefined;
|
|
53
52
|
fileName?: string | undefined;
|
|
53
|
+
fileExtension?: string | null | undefined;
|
|
54
54
|
}[] | undefined;
|
|
55
55
|
}>;
|
|
56
56
|
export declare const taskAttributesSchema: z.ZodObject<{
|
|
@@ -83,13 +83,13 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
83
83
|
}, "strip", z.ZodTypeAny, {
|
|
84
84
|
id: string;
|
|
85
85
|
fileUrl: string;
|
|
86
|
-
fileExtension?: string | null | undefined;
|
|
87
86
|
fileName?: string | undefined;
|
|
87
|
+
fileExtension?: string | null | undefined;
|
|
88
88
|
}, {
|
|
89
89
|
id: string;
|
|
90
90
|
fileUrl: string;
|
|
91
|
-
fileExtension?: string | null | undefined;
|
|
92
91
|
fileName?: string | undefined;
|
|
92
|
+
fileExtension?: string | null | undefined;
|
|
93
93
|
}>, "many">>;
|
|
94
94
|
}, "strip", z.ZodTypeAny, {
|
|
95
95
|
id: string;
|
|
@@ -101,8 +101,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
101
101
|
documents?: {
|
|
102
102
|
id: string;
|
|
103
103
|
fileUrl: string;
|
|
104
|
-
fileExtension?: string | null | undefined;
|
|
105
104
|
fileName?: string | undefined;
|
|
105
|
+
fileExtension?: string | null | undefined;
|
|
106
106
|
}[] | undefined;
|
|
107
107
|
}, {
|
|
108
108
|
id: string;
|
|
@@ -114,8 +114,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
114
114
|
documents?: {
|
|
115
115
|
id: string;
|
|
116
116
|
fileUrl: string;
|
|
117
|
-
fileExtension?: string | null | undefined;
|
|
118
117
|
fileName?: string | undefined;
|
|
118
|
+
fileExtension?: string | null | undefined;
|
|
119
119
|
}[] | undefined;
|
|
120
120
|
}>, "many">>;
|
|
121
121
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -147,8 +147,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
147
147
|
title: string;
|
|
148
148
|
createdAt: string;
|
|
149
149
|
updatedAt: string;
|
|
150
|
-
fieldId: string;
|
|
151
150
|
category: string;
|
|
151
|
+
fieldId: string;
|
|
152
152
|
inventoryItemId: string | null;
|
|
153
153
|
plannedQuantity: number | null;
|
|
154
154
|
actualQuantity: number | null;
|
|
@@ -169,8 +169,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
169
169
|
documents?: {
|
|
170
170
|
id: string;
|
|
171
171
|
fileUrl: string;
|
|
172
|
-
fileExtension?: string | null | undefined;
|
|
173
172
|
fileName?: string | undefined;
|
|
173
|
+
fileExtension?: string | null | undefined;
|
|
174
174
|
}[] | undefined;
|
|
175
175
|
}[] | undefined;
|
|
176
176
|
fieldName?: string | undefined;
|
|
@@ -186,8 +186,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
186
186
|
title: string;
|
|
187
187
|
createdAt: string;
|
|
188
188
|
updatedAt: string;
|
|
189
|
-
fieldId: string;
|
|
190
189
|
category: string;
|
|
190
|
+
fieldId: string;
|
|
191
191
|
inventoryItemId: string | null;
|
|
192
192
|
plannedQuantity: number | null;
|
|
193
193
|
actualQuantity: number | null;
|
|
@@ -208,8 +208,8 @@ export declare const taskAttributesSchema: z.ZodObject<{
|
|
|
208
208
|
documents?: {
|
|
209
209
|
id: string;
|
|
210
210
|
fileUrl: string;
|
|
211
|
-
fileExtension?: string | null | undefined;
|
|
212
211
|
fileName?: string | undefined;
|
|
212
|
+
fileExtension?: string | null | undefined;
|
|
213
213
|
}[] | undefined;
|
|
214
214
|
}[] | undefined;
|
|
215
215
|
fieldName?: string | undefined;
|
|
@@ -233,8 +233,8 @@ export declare const createTaskAttributesSchema: z.ZodObject<{
|
|
|
233
233
|
}, "strip", z.ZodTypeAny, {
|
|
234
234
|
date: string;
|
|
235
235
|
title: string;
|
|
236
|
-
fieldId: string;
|
|
237
236
|
category: string;
|
|
237
|
+
fieldId: string;
|
|
238
238
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
239
239
|
notes?: string | undefined;
|
|
240
240
|
inventoryItemId?: string | undefined;
|
|
@@ -243,8 +243,8 @@ export declare const createTaskAttributesSchema: z.ZodObject<{
|
|
|
243
243
|
}, {
|
|
244
244
|
date: string;
|
|
245
245
|
title: string;
|
|
246
|
-
fieldId: string;
|
|
247
246
|
category: string;
|
|
247
|
+
fieldId: string;
|
|
248
248
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
249
249
|
notes?: string | undefined;
|
|
250
250
|
inventoryItemId?: string | undefined;
|
|
@@ -265,8 +265,8 @@ export declare const updateTaskAttributesSchema: z.ZodObject<{
|
|
|
265
265
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
266
266
|
date?: string | undefined;
|
|
267
267
|
title?: string | undefined;
|
|
268
|
-
fieldId?: string | undefined;
|
|
269
268
|
category?: string | undefined;
|
|
269
|
+
fieldId?: string | undefined;
|
|
270
270
|
inventoryItemId?: string | undefined;
|
|
271
271
|
plannedQuantity?: number | undefined;
|
|
272
272
|
actualQuantity?: number | undefined;
|
|
@@ -275,8 +275,8 @@ export declare const updateTaskAttributesSchema: z.ZodObject<{
|
|
|
275
275
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
276
276
|
date?: string | undefined;
|
|
277
277
|
title?: string | undefined;
|
|
278
|
-
fieldId?: string | undefined;
|
|
279
278
|
category?: string | undefined;
|
|
279
|
+
fieldId?: string | undefined;
|
|
280
280
|
inventoryItemId?: string | undefined;
|
|
281
281
|
plannedQuantity?: number | undefined;
|
|
282
282
|
actualQuantity?: number | undefined;
|
|
@@ -323,8 +323,8 @@ export declare const createTaskSchema: z.ZodObject<{
|
|
|
323
323
|
}, "strip", z.ZodTypeAny, {
|
|
324
324
|
date: string;
|
|
325
325
|
title: string;
|
|
326
|
-
fieldId: string;
|
|
327
326
|
category: string;
|
|
327
|
+
fieldId: string;
|
|
328
328
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
329
329
|
notes?: string | undefined;
|
|
330
330
|
inventoryItemId?: string | undefined;
|
|
@@ -333,8 +333,8 @@ export declare const createTaskSchema: z.ZodObject<{
|
|
|
333
333
|
}, {
|
|
334
334
|
date: string;
|
|
335
335
|
title: string;
|
|
336
|
-
fieldId: string;
|
|
337
336
|
category: string;
|
|
337
|
+
fieldId: string;
|
|
338
338
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
339
339
|
notes?: string | undefined;
|
|
340
340
|
inventoryItemId?: string | undefined;
|
|
@@ -346,8 +346,8 @@ export declare const createTaskSchema: z.ZodObject<{
|
|
|
346
346
|
attributes: {
|
|
347
347
|
date: string;
|
|
348
348
|
title: string;
|
|
349
|
-
fieldId: string;
|
|
350
349
|
category: string;
|
|
350
|
+
fieldId: string;
|
|
351
351
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
352
352
|
notes?: string | undefined;
|
|
353
353
|
inventoryItemId?: string | undefined;
|
|
@@ -359,8 +359,8 @@ export declare const createTaskSchema: z.ZodObject<{
|
|
|
359
359
|
attributes: {
|
|
360
360
|
date: string;
|
|
361
361
|
title: string;
|
|
362
|
-
fieldId: string;
|
|
363
362
|
category: string;
|
|
363
|
+
fieldId: string;
|
|
364
364
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
365
365
|
notes?: string | undefined;
|
|
366
366
|
inventoryItemId?: string | undefined;
|
|
@@ -385,8 +385,8 @@ export declare const updateTaskSchema: z.ZodObject<{
|
|
|
385
385
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
386
386
|
date?: string | undefined;
|
|
387
387
|
title?: string | undefined;
|
|
388
|
-
fieldId?: string | undefined;
|
|
389
388
|
category?: string | undefined;
|
|
389
|
+
fieldId?: string | undefined;
|
|
390
390
|
inventoryItemId?: string | undefined;
|
|
391
391
|
plannedQuantity?: number | undefined;
|
|
392
392
|
actualQuantity?: number | undefined;
|
|
@@ -395,8 +395,8 @@ export declare const updateTaskSchema: z.ZodObject<{
|
|
|
395
395
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
396
396
|
date?: string | undefined;
|
|
397
397
|
title?: string | undefined;
|
|
398
|
-
fieldId?: string | undefined;
|
|
399
398
|
category?: string | undefined;
|
|
399
|
+
fieldId?: string | undefined;
|
|
400
400
|
inventoryItemId?: string | undefined;
|
|
401
401
|
plannedQuantity?: number | undefined;
|
|
402
402
|
actualQuantity?: number | undefined;
|
|
@@ -409,8 +409,8 @@ export declare const updateTaskSchema: z.ZodObject<{
|
|
|
409
409
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
410
410
|
date?: string | undefined;
|
|
411
411
|
title?: string | undefined;
|
|
412
|
-
fieldId?: string | undefined;
|
|
413
412
|
category?: string | undefined;
|
|
413
|
+
fieldId?: string | undefined;
|
|
414
414
|
inventoryItemId?: string | undefined;
|
|
415
415
|
plannedQuantity?: number | undefined;
|
|
416
416
|
actualQuantity?: number | undefined;
|
|
@@ -423,8 +423,8 @@ export declare const updateTaskSchema: z.ZodObject<{
|
|
|
423
423
|
status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
|
|
424
424
|
date?: string | undefined;
|
|
425
425
|
title?: string | undefined;
|
|
426
|
-
fieldId?: string | undefined;
|
|
427
426
|
category?: string | undefined;
|
|
427
|
+
fieldId?: string | undefined;
|
|
428
428
|
inventoryItemId?: string | undefined;
|
|
429
429
|
plannedQuantity?: number | undefined;
|
|
430
430
|
actualQuantity?: number | undefined;
|
|
@@ -523,13 +523,13 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
523
523
|
}, "strip", z.ZodTypeAny, {
|
|
524
524
|
id: string;
|
|
525
525
|
fileUrl: string;
|
|
526
|
-
fileExtension?: string | null | undefined;
|
|
527
526
|
fileName?: string | undefined;
|
|
527
|
+
fileExtension?: string | null | undefined;
|
|
528
528
|
}, {
|
|
529
529
|
id: string;
|
|
530
530
|
fileUrl: string;
|
|
531
|
-
fileExtension?: string | null | undefined;
|
|
532
531
|
fileName?: string | undefined;
|
|
532
|
+
fileExtension?: string | null | undefined;
|
|
533
533
|
}>, "many">>;
|
|
534
534
|
}, "strip", z.ZodTypeAny, {
|
|
535
535
|
id: string;
|
|
@@ -541,8 +541,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
541
541
|
documents?: {
|
|
542
542
|
id: string;
|
|
543
543
|
fileUrl: string;
|
|
544
|
-
fileExtension?: string | null | undefined;
|
|
545
544
|
fileName?: string | undefined;
|
|
545
|
+
fileExtension?: string | null | undefined;
|
|
546
546
|
}[] | undefined;
|
|
547
547
|
}, {
|
|
548
548
|
id: string;
|
|
@@ -554,8 +554,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
554
554
|
documents?: {
|
|
555
555
|
id: string;
|
|
556
556
|
fileUrl: string;
|
|
557
|
-
fileExtension?: string | null | undefined;
|
|
558
557
|
fileName?: string | undefined;
|
|
558
|
+
fileExtension?: string | null | undefined;
|
|
559
559
|
}[] | undefined;
|
|
560
560
|
}>, "many">>;
|
|
561
561
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -587,8 +587,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
587
587
|
title: string;
|
|
588
588
|
createdAt: string;
|
|
589
589
|
updatedAt: string;
|
|
590
|
-
fieldId: string;
|
|
591
590
|
category: string;
|
|
591
|
+
fieldId: string;
|
|
592
592
|
inventoryItemId: string | null;
|
|
593
593
|
plannedQuantity: number | null;
|
|
594
594
|
actualQuantity: number | null;
|
|
@@ -609,8 +609,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
609
609
|
documents?: {
|
|
610
610
|
id: string;
|
|
611
611
|
fileUrl: string;
|
|
612
|
-
fileExtension?: string | null | undefined;
|
|
613
612
|
fileName?: string | undefined;
|
|
613
|
+
fileExtension?: string | null | undefined;
|
|
614
614
|
}[] | undefined;
|
|
615
615
|
}[] | undefined;
|
|
616
616
|
fieldName?: string | undefined;
|
|
@@ -626,8 +626,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
626
626
|
title: string;
|
|
627
627
|
createdAt: string;
|
|
628
628
|
updatedAt: string;
|
|
629
|
-
fieldId: string;
|
|
630
629
|
category: string;
|
|
630
|
+
fieldId: string;
|
|
631
631
|
inventoryItemId: string | null;
|
|
632
632
|
plannedQuantity: number | null;
|
|
633
633
|
actualQuantity: number | null;
|
|
@@ -648,8 +648,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
648
648
|
documents?: {
|
|
649
649
|
id: string;
|
|
650
650
|
fileUrl: string;
|
|
651
|
-
fileExtension?: string | null | undefined;
|
|
652
651
|
fileName?: string | undefined;
|
|
652
|
+
fileExtension?: string | null | undefined;
|
|
653
653
|
}[] | undefined;
|
|
654
654
|
}[] | undefined;
|
|
655
655
|
fieldName?: string | undefined;
|
|
@@ -672,8 +672,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
672
672
|
title: string;
|
|
673
673
|
createdAt: string;
|
|
674
674
|
updatedAt: string;
|
|
675
|
-
fieldId: string;
|
|
676
675
|
category: string;
|
|
676
|
+
fieldId: string;
|
|
677
677
|
inventoryItemId: string | null;
|
|
678
678
|
plannedQuantity: number | null;
|
|
679
679
|
actualQuantity: number | null;
|
|
@@ -694,8 +694,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
694
694
|
documents?: {
|
|
695
695
|
id: string;
|
|
696
696
|
fileUrl: string;
|
|
697
|
-
fileExtension?: string | null | undefined;
|
|
698
697
|
fileName?: string | undefined;
|
|
698
|
+
fileExtension?: string | null | undefined;
|
|
699
699
|
}[] | undefined;
|
|
700
700
|
}[] | undefined;
|
|
701
701
|
fieldName?: string | undefined;
|
|
@@ -718,8 +718,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
718
718
|
title: string;
|
|
719
719
|
createdAt: string;
|
|
720
720
|
updatedAt: string;
|
|
721
|
-
fieldId: string;
|
|
722
721
|
category: string;
|
|
722
|
+
fieldId: string;
|
|
723
723
|
inventoryItemId: string | null;
|
|
724
724
|
plannedQuantity: number | null;
|
|
725
725
|
actualQuantity: number | null;
|
|
@@ -740,8 +740,8 @@ export declare const taskResourceSchema: z.ZodObject<{
|
|
|
740
740
|
documents?: {
|
|
741
741
|
id: string;
|
|
742
742
|
fileUrl: string;
|
|
743
|
-
fileExtension?: string | null | undefined;
|
|
744
743
|
fileName?: string | undefined;
|
|
744
|
+
fileExtension?: string | null | undefined;
|
|
745
745
|
}[] | undefined;
|
|
746
746
|
}[] | undefined;
|
|
747
747
|
fieldName?: string | undefined;
|
|
@@ -789,13 +789,13 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
789
789
|
}, "strip", z.ZodTypeAny, {
|
|
790
790
|
id: string;
|
|
791
791
|
fileUrl: string;
|
|
792
|
-
fileExtension?: string | null | undefined;
|
|
793
792
|
fileName?: string | undefined;
|
|
793
|
+
fileExtension?: string | null | undefined;
|
|
794
794
|
}, {
|
|
795
795
|
id: string;
|
|
796
796
|
fileUrl: string;
|
|
797
|
-
fileExtension?: string | null | undefined;
|
|
798
797
|
fileName?: string | undefined;
|
|
798
|
+
fileExtension?: string | null | undefined;
|
|
799
799
|
}>, "many">>;
|
|
800
800
|
}, "strip", z.ZodTypeAny, {
|
|
801
801
|
id: string;
|
|
@@ -807,8 +807,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
807
807
|
documents?: {
|
|
808
808
|
id: string;
|
|
809
809
|
fileUrl: string;
|
|
810
|
-
fileExtension?: string | null | undefined;
|
|
811
810
|
fileName?: string | undefined;
|
|
811
|
+
fileExtension?: string | null | undefined;
|
|
812
812
|
}[] | undefined;
|
|
813
813
|
}, {
|
|
814
814
|
id: string;
|
|
@@ -820,8 +820,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
820
820
|
documents?: {
|
|
821
821
|
id: string;
|
|
822
822
|
fileUrl: string;
|
|
823
|
-
fileExtension?: string | null | undefined;
|
|
824
823
|
fileName?: string | undefined;
|
|
824
|
+
fileExtension?: string | null | undefined;
|
|
825
825
|
}[] | undefined;
|
|
826
826
|
}>, "many">>;
|
|
827
827
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -853,8 +853,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
853
853
|
title: string;
|
|
854
854
|
createdAt: string;
|
|
855
855
|
updatedAt: string;
|
|
856
|
-
fieldId: string;
|
|
857
856
|
category: string;
|
|
857
|
+
fieldId: string;
|
|
858
858
|
inventoryItemId: string | null;
|
|
859
859
|
plannedQuantity: number | null;
|
|
860
860
|
actualQuantity: number | null;
|
|
@@ -875,8 +875,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
875
875
|
documents?: {
|
|
876
876
|
id: string;
|
|
877
877
|
fileUrl: string;
|
|
878
|
-
fileExtension?: string | null | undefined;
|
|
879
878
|
fileName?: string | undefined;
|
|
879
|
+
fileExtension?: string | null | undefined;
|
|
880
880
|
}[] | undefined;
|
|
881
881
|
}[] | undefined;
|
|
882
882
|
fieldName?: string | undefined;
|
|
@@ -892,8 +892,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
892
892
|
title: string;
|
|
893
893
|
createdAt: string;
|
|
894
894
|
updatedAt: string;
|
|
895
|
-
fieldId: string;
|
|
896
895
|
category: string;
|
|
896
|
+
fieldId: string;
|
|
897
897
|
inventoryItemId: string | null;
|
|
898
898
|
plannedQuantity: number | null;
|
|
899
899
|
actualQuantity: number | null;
|
|
@@ -914,8 +914,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
914
914
|
documents?: {
|
|
915
915
|
id: string;
|
|
916
916
|
fileUrl: string;
|
|
917
|
-
fileExtension?: string | null | undefined;
|
|
918
917
|
fileName?: string | undefined;
|
|
918
|
+
fileExtension?: string | null | undefined;
|
|
919
919
|
}[] | undefined;
|
|
920
920
|
}[] | undefined;
|
|
921
921
|
fieldName?: string | undefined;
|
|
@@ -1023,8 +1023,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
1023
1023
|
title: string;
|
|
1024
1024
|
createdAt: string;
|
|
1025
1025
|
updatedAt: string;
|
|
1026
|
-
fieldId: string;
|
|
1027
1026
|
category: string;
|
|
1027
|
+
fieldId: string;
|
|
1028
1028
|
inventoryItemId: string | null;
|
|
1029
1029
|
plannedQuantity: number | null;
|
|
1030
1030
|
actualQuantity: number | null;
|
|
@@ -1045,8 +1045,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
1045
1045
|
documents?: {
|
|
1046
1046
|
id: string;
|
|
1047
1047
|
fileUrl: string;
|
|
1048
|
-
fileExtension?: string | null | undefined;
|
|
1049
1048
|
fileName?: string | undefined;
|
|
1049
|
+
fileExtension?: string | null | undefined;
|
|
1050
1050
|
}[] | undefined;
|
|
1051
1051
|
}[] | undefined;
|
|
1052
1052
|
fieldName?: string | undefined;
|
|
@@ -1085,8 +1085,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
1085
1085
|
title: string;
|
|
1086
1086
|
createdAt: string;
|
|
1087
1087
|
updatedAt: string;
|
|
1088
|
-
fieldId: string;
|
|
1089
1088
|
category: string;
|
|
1089
|
+
fieldId: string;
|
|
1090
1090
|
inventoryItemId: string | null;
|
|
1091
1091
|
plannedQuantity: number | null;
|
|
1092
1092
|
actualQuantity: number | null;
|
|
@@ -1107,8 +1107,8 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
|
|
|
1107
1107
|
documents?: {
|
|
1108
1108
|
id: string;
|
|
1109
1109
|
fileUrl: string;
|
|
1110
|
-
fileExtension?: string | null | undefined;
|
|
1111
1110
|
fileName?: string | undefined;
|
|
1111
|
+
fileExtension?: string | null | undefined;
|
|
1112
1112
|
}[] | undefined;
|
|
1113
1113
|
}[] | undefined;
|
|
1114
1114
|
fieldName?: string | undefined;
|
|
@@ -1173,13 +1173,13 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1173
1173
|
}, "strip", z.ZodTypeAny, {
|
|
1174
1174
|
id: string;
|
|
1175
1175
|
fileUrl: string;
|
|
1176
|
-
fileExtension?: string | null | undefined;
|
|
1177
1176
|
fileName?: string | undefined;
|
|
1177
|
+
fileExtension?: string | null | undefined;
|
|
1178
1178
|
}, {
|
|
1179
1179
|
id: string;
|
|
1180
1180
|
fileUrl: string;
|
|
1181
|
-
fileExtension?: string | null | undefined;
|
|
1182
1181
|
fileName?: string | undefined;
|
|
1182
|
+
fileExtension?: string | null | undefined;
|
|
1183
1183
|
}>, "many">>;
|
|
1184
1184
|
}, "strip", z.ZodTypeAny, {
|
|
1185
1185
|
id: string;
|
|
@@ -1191,8 +1191,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1191
1191
|
documents?: {
|
|
1192
1192
|
id: string;
|
|
1193
1193
|
fileUrl: string;
|
|
1194
|
-
fileExtension?: string | null | undefined;
|
|
1195
1194
|
fileName?: string | undefined;
|
|
1195
|
+
fileExtension?: string | null | undefined;
|
|
1196
1196
|
}[] | undefined;
|
|
1197
1197
|
}, {
|
|
1198
1198
|
id: string;
|
|
@@ -1204,8 +1204,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1204
1204
|
documents?: {
|
|
1205
1205
|
id: string;
|
|
1206
1206
|
fileUrl: string;
|
|
1207
|
-
fileExtension?: string | null | undefined;
|
|
1208
1207
|
fileName?: string | undefined;
|
|
1208
|
+
fileExtension?: string | null | undefined;
|
|
1209
1209
|
}[] | undefined;
|
|
1210
1210
|
}>, "many">>;
|
|
1211
1211
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1237,8 +1237,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1237
1237
|
title: string;
|
|
1238
1238
|
createdAt: string;
|
|
1239
1239
|
updatedAt: string;
|
|
1240
|
-
fieldId: string;
|
|
1241
1240
|
category: string;
|
|
1241
|
+
fieldId: string;
|
|
1242
1242
|
inventoryItemId: string | null;
|
|
1243
1243
|
plannedQuantity: number | null;
|
|
1244
1244
|
actualQuantity: number | null;
|
|
@@ -1259,8 +1259,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1259
1259
|
documents?: {
|
|
1260
1260
|
id: string;
|
|
1261
1261
|
fileUrl: string;
|
|
1262
|
-
fileExtension?: string | null | undefined;
|
|
1263
1262
|
fileName?: string | undefined;
|
|
1263
|
+
fileExtension?: string | null | undefined;
|
|
1264
1264
|
}[] | undefined;
|
|
1265
1265
|
}[] | undefined;
|
|
1266
1266
|
fieldName?: string | undefined;
|
|
@@ -1276,8 +1276,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1276
1276
|
title: string;
|
|
1277
1277
|
createdAt: string;
|
|
1278
1278
|
updatedAt: string;
|
|
1279
|
-
fieldId: string;
|
|
1280
1279
|
category: string;
|
|
1280
|
+
fieldId: string;
|
|
1281
1281
|
inventoryItemId: string | null;
|
|
1282
1282
|
plannedQuantity: number | null;
|
|
1283
1283
|
actualQuantity: number | null;
|
|
@@ -1298,8 +1298,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1298
1298
|
documents?: {
|
|
1299
1299
|
id: string;
|
|
1300
1300
|
fileUrl: string;
|
|
1301
|
-
fileExtension?: string | null | undefined;
|
|
1302
1301
|
fileName?: string | undefined;
|
|
1302
|
+
fileExtension?: string | null | undefined;
|
|
1303
1303
|
}[] | undefined;
|
|
1304
1304
|
}[] | undefined;
|
|
1305
1305
|
fieldName?: string | undefined;
|
|
@@ -1322,8 +1322,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1322
1322
|
title: string;
|
|
1323
1323
|
createdAt: string;
|
|
1324
1324
|
updatedAt: string;
|
|
1325
|
-
fieldId: string;
|
|
1326
1325
|
category: string;
|
|
1326
|
+
fieldId: string;
|
|
1327
1327
|
inventoryItemId: string | null;
|
|
1328
1328
|
plannedQuantity: number | null;
|
|
1329
1329
|
actualQuantity: number | null;
|
|
@@ -1344,8 +1344,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1344
1344
|
documents?: {
|
|
1345
1345
|
id: string;
|
|
1346
1346
|
fileUrl: string;
|
|
1347
|
-
fileExtension?: string | null | undefined;
|
|
1348
1347
|
fileName?: string | undefined;
|
|
1348
|
+
fileExtension?: string | null | undefined;
|
|
1349
1349
|
}[] | undefined;
|
|
1350
1350
|
}[] | undefined;
|
|
1351
1351
|
fieldName?: string | undefined;
|
|
@@ -1368,8 +1368,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1368
1368
|
title: string;
|
|
1369
1369
|
createdAt: string;
|
|
1370
1370
|
updatedAt: string;
|
|
1371
|
-
fieldId: string;
|
|
1372
1371
|
category: string;
|
|
1372
|
+
fieldId: string;
|
|
1373
1373
|
inventoryItemId: string | null;
|
|
1374
1374
|
plannedQuantity: number | null;
|
|
1375
1375
|
actualQuantity: number | null;
|
|
@@ -1390,8 +1390,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1390
1390
|
documents?: {
|
|
1391
1391
|
id: string;
|
|
1392
1392
|
fileUrl: string;
|
|
1393
|
-
fileExtension?: string | null | undefined;
|
|
1394
1393
|
fileName?: string | undefined;
|
|
1394
|
+
fileExtension?: string | null | undefined;
|
|
1395
1395
|
}[] | undefined;
|
|
1396
1396
|
}[] | undefined;
|
|
1397
1397
|
fieldName?: string | undefined;
|
|
@@ -1440,8 +1440,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1440
1440
|
title: string;
|
|
1441
1441
|
createdAt: string;
|
|
1442
1442
|
updatedAt: string;
|
|
1443
|
-
fieldId: string;
|
|
1444
1443
|
category: string;
|
|
1444
|
+
fieldId: string;
|
|
1445
1445
|
inventoryItemId: string | null;
|
|
1446
1446
|
plannedQuantity: number | null;
|
|
1447
1447
|
actualQuantity: number | null;
|
|
@@ -1462,8 +1462,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1462
1462
|
documents?: {
|
|
1463
1463
|
id: string;
|
|
1464
1464
|
fileUrl: string;
|
|
1465
|
-
fileExtension?: string | null | undefined;
|
|
1466
1465
|
fileName?: string | undefined;
|
|
1466
|
+
fileExtension?: string | null | undefined;
|
|
1467
1467
|
}[] | undefined;
|
|
1468
1468
|
}[] | undefined;
|
|
1469
1469
|
fieldName?: string | undefined;
|
|
@@ -1498,8 +1498,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1498
1498
|
title: string;
|
|
1499
1499
|
createdAt: string;
|
|
1500
1500
|
updatedAt: string;
|
|
1501
|
-
fieldId: string;
|
|
1502
1501
|
category: string;
|
|
1502
|
+
fieldId: string;
|
|
1503
1503
|
inventoryItemId: string | null;
|
|
1504
1504
|
plannedQuantity: number | null;
|
|
1505
1505
|
actualQuantity: number | null;
|
|
@@ -1520,8 +1520,8 @@ export declare const taskResponseSchema: z.ZodObject<{
|
|
|
1520
1520
|
documents?: {
|
|
1521
1521
|
id: string;
|
|
1522
1522
|
fileUrl: string;
|
|
1523
|
-
fileExtension?: string | null | undefined;
|
|
1524
1523
|
fileName?: string | undefined;
|
|
1524
|
+
fileExtension?: string | null | undefined;
|
|
1525
1525
|
}[] | undefined;
|
|
1526
1526
|
}[] | undefined;
|
|
1527
1527
|
fieldName?: string | undefined;
|
|
@@ -1581,13 +1581,13 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1581
1581
|
}, "strip", z.ZodTypeAny, {
|
|
1582
1582
|
id: string;
|
|
1583
1583
|
fileUrl: string;
|
|
1584
|
-
fileExtension?: string | null | undefined;
|
|
1585
1584
|
fileName?: string | undefined;
|
|
1585
|
+
fileExtension?: string | null | undefined;
|
|
1586
1586
|
}, {
|
|
1587
1587
|
id: string;
|
|
1588
1588
|
fileUrl: string;
|
|
1589
|
-
fileExtension?: string | null | undefined;
|
|
1590
1589
|
fileName?: string | undefined;
|
|
1590
|
+
fileExtension?: string | null | undefined;
|
|
1591
1591
|
}>, "many">>;
|
|
1592
1592
|
}, "strip", z.ZodTypeAny, {
|
|
1593
1593
|
id: string;
|
|
@@ -1599,8 +1599,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1599
1599
|
documents?: {
|
|
1600
1600
|
id: string;
|
|
1601
1601
|
fileUrl: string;
|
|
1602
|
-
fileExtension?: string | null | undefined;
|
|
1603
1602
|
fileName?: string | undefined;
|
|
1603
|
+
fileExtension?: string | null | undefined;
|
|
1604
1604
|
}[] | undefined;
|
|
1605
1605
|
}, {
|
|
1606
1606
|
id: string;
|
|
@@ -1612,8 +1612,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1612
1612
|
documents?: {
|
|
1613
1613
|
id: string;
|
|
1614
1614
|
fileUrl: string;
|
|
1615
|
-
fileExtension?: string | null | undefined;
|
|
1616
1615
|
fileName?: string | undefined;
|
|
1616
|
+
fileExtension?: string | null | undefined;
|
|
1617
1617
|
}[] | undefined;
|
|
1618
1618
|
}>, "many">>;
|
|
1619
1619
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1645,8 +1645,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1645
1645
|
title: string;
|
|
1646
1646
|
createdAt: string;
|
|
1647
1647
|
updatedAt: string;
|
|
1648
|
-
fieldId: string;
|
|
1649
1648
|
category: string;
|
|
1649
|
+
fieldId: string;
|
|
1650
1650
|
inventoryItemId: string | null;
|
|
1651
1651
|
plannedQuantity: number | null;
|
|
1652
1652
|
actualQuantity: number | null;
|
|
@@ -1667,8 +1667,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1667
1667
|
documents?: {
|
|
1668
1668
|
id: string;
|
|
1669
1669
|
fileUrl: string;
|
|
1670
|
-
fileExtension?: string | null | undefined;
|
|
1671
1670
|
fileName?: string | undefined;
|
|
1671
|
+
fileExtension?: string | null | undefined;
|
|
1672
1672
|
}[] | undefined;
|
|
1673
1673
|
}[] | undefined;
|
|
1674
1674
|
fieldName?: string | undefined;
|
|
@@ -1684,8 +1684,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1684
1684
|
title: string;
|
|
1685
1685
|
createdAt: string;
|
|
1686
1686
|
updatedAt: string;
|
|
1687
|
-
fieldId: string;
|
|
1688
1687
|
category: string;
|
|
1688
|
+
fieldId: string;
|
|
1689
1689
|
inventoryItemId: string | null;
|
|
1690
1690
|
plannedQuantity: number | null;
|
|
1691
1691
|
actualQuantity: number | null;
|
|
@@ -1706,8 +1706,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1706
1706
|
documents?: {
|
|
1707
1707
|
id: string;
|
|
1708
1708
|
fileUrl: string;
|
|
1709
|
-
fileExtension?: string | null | undefined;
|
|
1710
1709
|
fileName?: string | undefined;
|
|
1710
|
+
fileExtension?: string | null | undefined;
|
|
1711
1711
|
}[] | undefined;
|
|
1712
1712
|
}[] | undefined;
|
|
1713
1713
|
fieldName?: string | undefined;
|
|
@@ -1815,8 +1815,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1815
1815
|
title: string;
|
|
1816
1816
|
createdAt: string;
|
|
1817
1817
|
updatedAt: string;
|
|
1818
|
-
fieldId: string;
|
|
1819
1818
|
category: string;
|
|
1819
|
+
fieldId: string;
|
|
1820
1820
|
inventoryItemId: string | null;
|
|
1821
1821
|
plannedQuantity: number | null;
|
|
1822
1822
|
actualQuantity: number | null;
|
|
@@ -1837,8 +1837,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1837
1837
|
documents?: {
|
|
1838
1838
|
id: string;
|
|
1839
1839
|
fileUrl: string;
|
|
1840
|
-
fileExtension?: string | null | undefined;
|
|
1841
1840
|
fileName?: string | undefined;
|
|
1841
|
+
fileExtension?: string | null | undefined;
|
|
1842
1842
|
}[] | undefined;
|
|
1843
1843
|
}[] | undefined;
|
|
1844
1844
|
fieldName?: string | undefined;
|
|
@@ -1877,8 +1877,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1877
1877
|
title: string;
|
|
1878
1878
|
createdAt: string;
|
|
1879
1879
|
updatedAt: string;
|
|
1880
|
-
fieldId: string;
|
|
1881
1880
|
category: string;
|
|
1881
|
+
fieldId: string;
|
|
1882
1882
|
inventoryItemId: string | null;
|
|
1883
1883
|
plannedQuantity: number | null;
|
|
1884
1884
|
actualQuantity: number | null;
|
|
@@ -1899,8 +1899,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1899
1899
|
documents?: {
|
|
1900
1900
|
id: string;
|
|
1901
1901
|
fileUrl: string;
|
|
1902
|
-
fileExtension?: string | null | undefined;
|
|
1903
1902
|
fileName?: string | undefined;
|
|
1903
|
+
fileExtension?: string | null | undefined;
|
|
1904
1904
|
}[] | undefined;
|
|
1905
1905
|
}[] | undefined;
|
|
1906
1906
|
fieldName?: string | undefined;
|
|
@@ -1965,8 +1965,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1965
1965
|
title: string;
|
|
1966
1966
|
createdAt: string;
|
|
1967
1967
|
updatedAt: string;
|
|
1968
|
-
fieldId: string;
|
|
1969
1968
|
category: string;
|
|
1969
|
+
fieldId: string;
|
|
1970
1970
|
inventoryItemId: string | null;
|
|
1971
1971
|
plannedQuantity: number | null;
|
|
1972
1972
|
actualQuantity: number | null;
|
|
@@ -1987,8 +1987,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
1987
1987
|
documents?: {
|
|
1988
1988
|
id: string;
|
|
1989
1989
|
fileUrl: string;
|
|
1990
|
-
fileExtension?: string | null | undefined;
|
|
1991
1990
|
fileName?: string | undefined;
|
|
1991
|
+
fileExtension?: string | null | undefined;
|
|
1992
1992
|
}[] | undefined;
|
|
1993
1993
|
}[] | undefined;
|
|
1994
1994
|
fieldName?: string | undefined;
|
|
@@ -2039,8 +2039,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
2039
2039
|
title: string;
|
|
2040
2040
|
createdAt: string;
|
|
2041
2041
|
updatedAt: string;
|
|
2042
|
-
fieldId: string;
|
|
2043
2042
|
category: string;
|
|
2043
|
+
fieldId: string;
|
|
2044
2044
|
inventoryItemId: string | null;
|
|
2045
2045
|
plannedQuantity: number | null;
|
|
2046
2046
|
actualQuantity: number | null;
|
|
@@ -2061,8 +2061,8 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
|
|
|
2061
2061
|
documents?: {
|
|
2062
2062
|
id: string;
|
|
2063
2063
|
fileUrl: string;
|
|
2064
|
-
fileExtension?: string | null | undefined;
|
|
2065
2064
|
fileName?: string | undefined;
|
|
2065
|
+
fileExtension?: string | null | undefined;
|
|
2066
2066
|
}[] | undefined;
|
|
2067
2067
|
}[] | undefined;
|
|
2068
2068
|
fieldName?: string | undefined;
|
|
@@ -2138,13 +2138,13 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2138
2138
|
}, "strip", z.ZodTypeAny, {
|
|
2139
2139
|
id: string;
|
|
2140
2140
|
fileUrl: string;
|
|
2141
|
-
fileExtension?: string | null | undefined;
|
|
2142
2141
|
fileName?: string | undefined;
|
|
2142
|
+
fileExtension?: string | null | undefined;
|
|
2143
2143
|
}, {
|
|
2144
2144
|
id: string;
|
|
2145
2145
|
fileUrl: string;
|
|
2146
|
-
fileExtension?: string | null | undefined;
|
|
2147
2146
|
fileName?: string | undefined;
|
|
2147
|
+
fileExtension?: string | null | undefined;
|
|
2148
2148
|
}>, "many">>;
|
|
2149
2149
|
}, "strip", z.ZodTypeAny, {
|
|
2150
2150
|
id: string;
|
|
@@ -2156,8 +2156,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2156
2156
|
documents?: {
|
|
2157
2157
|
id: string;
|
|
2158
2158
|
fileUrl: string;
|
|
2159
|
-
fileExtension?: string | null | undefined;
|
|
2160
2159
|
fileName?: string | undefined;
|
|
2160
|
+
fileExtension?: string | null | undefined;
|
|
2161
2161
|
}[] | undefined;
|
|
2162
2162
|
}, {
|
|
2163
2163
|
id: string;
|
|
@@ -2169,8 +2169,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2169
2169
|
documents?: {
|
|
2170
2170
|
id: string;
|
|
2171
2171
|
fileUrl: string;
|
|
2172
|
-
fileExtension?: string | null | undefined;
|
|
2173
2172
|
fileName?: string | undefined;
|
|
2173
|
+
fileExtension?: string | null | undefined;
|
|
2174
2174
|
}[] | undefined;
|
|
2175
2175
|
}>, "many">>;
|
|
2176
2176
|
source: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2202,8 +2202,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2202
2202
|
title: string;
|
|
2203
2203
|
createdAt: string;
|
|
2204
2204
|
updatedAt: string;
|
|
2205
|
-
fieldId: string;
|
|
2206
2205
|
category: string;
|
|
2206
|
+
fieldId: string;
|
|
2207
2207
|
inventoryItemId: string | null;
|
|
2208
2208
|
plannedQuantity: number | null;
|
|
2209
2209
|
actualQuantity: number | null;
|
|
@@ -2224,8 +2224,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2224
2224
|
documents?: {
|
|
2225
2225
|
id: string;
|
|
2226
2226
|
fileUrl: string;
|
|
2227
|
-
fileExtension?: string | null | undefined;
|
|
2228
2227
|
fileName?: string | undefined;
|
|
2228
|
+
fileExtension?: string | null | undefined;
|
|
2229
2229
|
}[] | undefined;
|
|
2230
2230
|
}[] | undefined;
|
|
2231
2231
|
fieldName?: string | undefined;
|
|
@@ -2241,8 +2241,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2241
2241
|
title: string;
|
|
2242
2242
|
createdAt: string;
|
|
2243
2243
|
updatedAt: string;
|
|
2244
|
-
fieldId: string;
|
|
2245
2244
|
category: string;
|
|
2245
|
+
fieldId: string;
|
|
2246
2246
|
inventoryItemId: string | null;
|
|
2247
2247
|
plannedQuantity: number | null;
|
|
2248
2248
|
actualQuantity: number | null;
|
|
@@ -2263,8 +2263,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2263
2263
|
documents?: {
|
|
2264
2264
|
id: string;
|
|
2265
2265
|
fileUrl: string;
|
|
2266
|
-
fileExtension?: string | null | undefined;
|
|
2267
2266
|
fileName?: string | undefined;
|
|
2267
|
+
fileExtension?: string | null | undefined;
|
|
2268
2268
|
}[] | undefined;
|
|
2269
2269
|
}[] | undefined;
|
|
2270
2270
|
fieldName?: string | undefined;
|
|
@@ -2287,8 +2287,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2287
2287
|
title: string;
|
|
2288
2288
|
createdAt: string;
|
|
2289
2289
|
updatedAt: string;
|
|
2290
|
-
fieldId: string;
|
|
2291
2290
|
category: string;
|
|
2291
|
+
fieldId: string;
|
|
2292
2292
|
inventoryItemId: string | null;
|
|
2293
2293
|
plannedQuantity: number | null;
|
|
2294
2294
|
actualQuantity: number | null;
|
|
@@ -2309,8 +2309,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2309
2309
|
documents?: {
|
|
2310
2310
|
id: string;
|
|
2311
2311
|
fileUrl: string;
|
|
2312
|
-
fileExtension?: string | null | undefined;
|
|
2313
2312
|
fileName?: string | undefined;
|
|
2313
|
+
fileExtension?: string | null | undefined;
|
|
2314
2314
|
}[] | undefined;
|
|
2315
2315
|
}[] | undefined;
|
|
2316
2316
|
fieldName?: string | undefined;
|
|
@@ -2333,8 +2333,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2333
2333
|
title: string;
|
|
2334
2334
|
createdAt: string;
|
|
2335
2335
|
updatedAt: string;
|
|
2336
|
-
fieldId: string;
|
|
2337
2336
|
category: string;
|
|
2337
|
+
fieldId: string;
|
|
2338
2338
|
inventoryItemId: string | null;
|
|
2339
2339
|
plannedQuantity: number | null;
|
|
2340
2340
|
actualQuantity: number | null;
|
|
@@ -2355,8 +2355,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2355
2355
|
documents?: {
|
|
2356
2356
|
id: string;
|
|
2357
2357
|
fileUrl: string;
|
|
2358
|
-
fileExtension?: string | null | undefined;
|
|
2359
2358
|
fileName?: string | undefined;
|
|
2359
|
+
fileExtension?: string | null | undefined;
|
|
2360
2360
|
}[] | undefined;
|
|
2361
2361
|
}[] | undefined;
|
|
2362
2362
|
fieldName?: string | undefined;
|
|
@@ -2405,8 +2405,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2405
2405
|
title: string;
|
|
2406
2406
|
createdAt: string;
|
|
2407
2407
|
updatedAt: string;
|
|
2408
|
-
fieldId: string;
|
|
2409
2408
|
category: string;
|
|
2409
|
+
fieldId: string;
|
|
2410
2410
|
inventoryItemId: string | null;
|
|
2411
2411
|
plannedQuantity: number | null;
|
|
2412
2412
|
actualQuantity: number | null;
|
|
@@ -2427,8 +2427,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2427
2427
|
documents?: {
|
|
2428
2428
|
id: string;
|
|
2429
2429
|
fileUrl: string;
|
|
2430
|
-
fileExtension?: string | null | undefined;
|
|
2431
2430
|
fileName?: string | undefined;
|
|
2431
|
+
fileExtension?: string | null | undefined;
|
|
2432
2432
|
}[] | undefined;
|
|
2433
2433
|
}[] | undefined;
|
|
2434
2434
|
fieldName?: string | undefined;
|
|
@@ -2463,8 +2463,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2463
2463
|
title: string;
|
|
2464
2464
|
createdAt: string;
|
|
2465
2465
|
updatedAt: string;
|
|
2466
|
-
fieldId: string;
|
|
2467
2466
|
category: string;
|
|
2467
|
+
fieldId: string;
|
|
2468
2468
|
inventoryItemId: string | null;
|
|
2469
2469
|
plannedQuantity: number | null;
|
|
2470
2470
|
actualQuantity: number | null;
|
|
@@ -2485,8 +2485,8 @@ export declare const taskListResponseSchema: z.ZodObject<{
|
|
|
2485
2485
|
documents?: {
|
|
2486
2486
|
id: string;
|
|
2487
2487
|
fileUrl: string;
|
|
2488
|
-
fileExtension?: string | null | undefined;
|
|
2489
2488
|
fileName?: string | undefined;
|
|
2489
|
+
fileExtension?: string | null | undefined;
|
|
2490
2490
|
}[] | undefined;
|
|
2491
2491
|
}[] | undefined;
|
|
2492
2492
|
fieldName?: string | undefined;
|