@deepintel-ltd/farmpro-contracts 1.11.8 → 1.11.9

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.
Files changed (40) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +2 -0
  4. package/dist/routes/agents.routes.d.ts +142 -0
  5. package/dist/routes/agents.routes.d.ts.map +1 -1
  6. package/dist/routes/equipment.routes.d.ts +36 -36
  7. package/dist/routes/extension.routes.d.ts +12 -12
  8. package/dist/routes/fertigation.routes.d.ts +156 -156
  9. package/dist/routes/field-activities.routes.d.ts +2397 -0
  10. package/dist/routes/field-activities.routes.d.ts.map +1 -0
  11. package/dist/routes/field-activities.routes.js +81 -0
  12. package/dist/routes/fields.routes.d.ts +860 -0
  13. package/dist/routes/fields.routes.d.ts.map +1 -1
  14. package/dist/routes/fields.routes.js +20 -1
  15. package/dist/routes/index.d.ts +3 -0
  16. package/dist/routes/index.d.ts.map +1 -1
  17. package/dist/routes/index.js +2 -0
  18. package/dist/routes/irrigation.routes.d.ts +20 -20
  19. package/dist/routes/livestock-groups.routes.d.ts +36 -36
  20. package/dist/routes/livestock.routes.d.ts +30 -30
  21. package/dist/routes/soil-tests.routes.d.ts +36 -36
  22. package/dist/routes/tasks.routes.d.ts +120 -120
  23. package/dist/schemas/agents.schemas.d.ts +163 -0
  24. package/dist/schemas/agents.schemas.d.ts.map +1 -1
  25. package/dist/schemas/agents.schemas.js +23 -0
  26. package/dist/schemas/equipment.schemas.d.ts +30 -30
  27. package/dist/schemas/extension.schemas.d.ts +18 -18
  28. package/dist/schemas/fertigation.schemas.d.ts +42 -42
  29. package/dist/schemas/field-activities.schemas.d.ts +806 -0
  30. package/dist/schemas/field-activities.schemas.d.ts.map +1 -0
  31. package/dist/schemas/field-activities.schemas.js +68 -0
  32. package/dist/schemas/fields.schemas.d.ts +173 -0
  33. package/dist/schemas/fields.schemas.d.ts.map +1 -1
  34. package/dist/schemas/fields.schemas.js +14 -0
  35. package/dist/schemas/irrigation.schemas.d.ts +14 -14
  36. package/dist/schemas/livestock-groups.schemas.d.ts +24 -24
  37. package/dist/schemas/livestock.schemas.d.ts +24 -24
  38. package/dist/schemas/soil-tests.schemas.d.ts +34 -34
  39. package/dist/schemas/tasks.schemas.d.ts +96 -96
  40. package/package.json +1 -1
@@ -159,9 +159,6 @@ export declare const taskAttributesSchema: z.ZodObject<{
159
159
  type: string;
160
160
  id: string;
161
161
  } | null | undefined;
162
- fieldName?: string | undefined;
163
- inventoryItemName?: string | null | undefined;
164
- assignedToName?: string | null | undefined;
165
162
  notes?: {
166
163
  id: string;
167
164
  authorId: string;
@@ -176,6 +173,9 @@ export declare const taskAttributesSchema: z.ZodObject<{
176
173
  fileName?: string | undefined;
177
174
  }[] | undefined;
178
175
  }[] | undefined;
176
+ fieldName?: string | undefined;
177
+ inventoryItemName?: string | null | undefined;
178
+ assignedToName?: string | null | undefined;
179
179
  contributingSources?: {
180
180
  type: string;
181
181
  id: string;
@@ -198,9 +198,6 @@ export declare const taskAttributesSchema: z.ZodObject<{
198
198
  type: string;
199
199
  id: string;
200
200
  } | null | undefined;
201
- fieldName?: string | undefined;
202
- inventoryItemName?: string | null | undefined;
203
- assignedToName?: string | null | undefined;
204
201
  notes?: {
205
202
  id: string;
206
203
  authorId: string;
@@ -215,6 +212,9 @@ export declare const taskAttributesSchema: z.ZodObject<{
215
212
  fileName?: string | undefined;
216
213
  }[] | undefined;
217
214
  }[] | undefined;
215
+ fieldName?: string | undefined;
216
+ inventoryItemName?: string | null | undefined;
217
+ assignedToName?: string | null | undefined;
218
218
  contributingSources?: {
219
219
  type: string;
220
220
  id: string;
@@ -236,20 +236,20 @@ export declare const createTaskAttributesSchema: z.ZodObject<{
236
236
  fieldId: string;
237
237
  category: string;
238
238
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
239
+ notes?: string | undefined;
239
240
  inventoryItemId?: string | undefined;
240
241
  plannedQuantity?: number | undefined;
241
242
  assignedTo?: string | undefined;
242
- notes?: string | undefined;
243
243
  }, {
244
244
  date: string;
245
245
  title: string;
246
246
  fieldId: string;
247
247
  category: string;
248
248
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
249
+ notes?: string | undefined;
249
250
  inventoryItemId?: string | undefined;
250
251
  plannedQuantity?: number | undefined;
251
252
  assignedTo?: string | undefined;
252
- notes?: string | undefined;
253
253
  }>;
254
254
  export declare const updateTaskAttributesSchema: z.ZodObject<{
255
255
  title: z.ZodOptional<z.ZodString>;
@@ -286,11 +286,11 @@ export declare const completeTaskAttributesSchema: z.ZodObject<{
286
286
  actualQuantity: z.ZodOptional<z.ZodNumber>;
287
287
  notes: z.ZodOptional<z.ZodString>;
288
288
  }, "strip", z.ZodTypeAny, {
289
- actualQuantity?: number | undefined;
290
289
  notes?: string | undefined;
291
- }, {
292
290
  actualQuantity?: number | undefined;
291
+ }, {
293
292
  notes?: string | undefined;
293
+ actualQuantity?: number | undefined;
294
294
  }>;
295
295
  export declare const addTaskNoteAttributesSchema: z.ZodEffects<z.ZodObject<{
296
296
  text: z.ZodDefault<z.ZodString>;
@@ -326,20 +326,20 @@ export declare const createTaskSchema: z.ZodObject<{
326
326
  fieldId: string;
327
327
  category: string;
328
328
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
329
+ notes?: string | undefined;
329
330
  inventoryItemId?: string | undefined;
330
331
  plannedQuantity?: number | undefined;
331
332
  assignedTo?: string | undefined;
332
- notes?: string | undefined;
333
333
  }, {
334
334
  date: string;
335
335
  title: string;
336
336
  fieldId: string;
337
337
  category: string;
338
338
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
339
+ notes?: string | undefined;
339
340
  inventoryItemId?: string | undefined;
340
341
  plannedQuantity?: number | undefined;
341
342
  assignedTo?: string | undefined;
342
- notes?: string | undefined;
343
343
  }>;
344
344
  }, "strip", z.ZodTypeAny, {
345
345
  type: "tasks";
@@ -349,10 +349,10 @@ export declare const createTaskSchema: z.ZodObject<{
349
349
  fieldId: string;
350
350
  category: string;
351
351
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
352
+ notes?: string | undefined;
352
353
  inventoryItemId?: string | undefined;
353
354
  plannedQuantity?: number | undefined;
354
355
  assignedTo?: string | undefined;
355
- notes?: string | undefined;
356
356
  };
357
357
  }, {
358
358
  type: "tasks";
@@ -362,10 +362,10 @@ export declare const createTaskSchema: z.ZodObject<{
362
362
  fieldId: string;
363
363
  category: string;
364
364
  status?: "pending" | "in-progress" | "completed" | "cancelled" | undefined;
365
+ notes?: string | undefined;
365
366
  inventoryItemId?: string | undefined;
366
367
  plannedQuantity?: number | undefined;
367
368
  assignedTo?: string | undefined;
368
- notes?: string | undefined;
369
369
  };
370
370
  }>;
371
371
  export declare const updateTaskSchema: z.ZodObject<{
@@ -438,25 +438,25 @@ export declare const completeTaskSchema: z.ZodObject<{
438
438
  actualQuantity: z.ZodOptional<z.ZodNumber>;
439
439
  notes: z.ZodOptional<z.ZodString>;
440
440
  }, "strip", z.ZodTypeAny, {
441
- actualQuantity?: number | undefined;
442
441
  notes?: string | undefined;
443
- }, {
444
442
  actualQuantity?: number | undefined;
443
+ }, {
445
444
  notes?: string | undefined;
445
+ actualQuantity?: number | undefined;
446
446
  }>;
447
447
  }, "strip", z.ZodTypeAny, {
448
448
  type: "tasks";
449
449
  id: string;
450
450
  attributes: {
451
- actualQuantity?: number | undefined;
452
451
  notes?: string | undefined;
452
+ actualQuantity?: number | undefined;
453
453
  };
454
454
  }, {
455
455
  type: "tasks";
456
456
  id: string;
457
457
  attributes: {
458
- actualQuantity?: number | undefined;
459
458
  notes?: string | undefined;
459
+ actualQuantity?: number | undefined;
460
460
  };
461
461
  }>;
462
462
  export declare const addTaskNoteSchema: z.ZodObject<{
@@ -599,9 +599,6 @@ export declare const taskResourceSchema: z.ZodObject<{
599
599
  type: string;
600
600
  id: string;
601
601
  } | null | undefined;
602
- fieldName?: string | undefined;
603
- inventoryItemName?: string | null | undefined;
604
- assignedToName?: string | null | undefined;
605
602
  notes?: {
606
603
  id: string;
607
604
  authorId: string;
@@ -616,6 +613,9 @@ export declare const taskResourceSchema: z.ZodObject<{
616
613
  fileName?: string | undefined;
617
614
  }[] | undefined;
618
615
  }[] | undefined;
616
+ fieldName?: string | undefined;
617
+ inventoryItemName?: string | null | undefined;
618
+ assignedToName?: string | null | undefined;
619
619
  contributingSources?: {
620
620
  type: string;
621
621
  id: string;
@@ -638,9 +638,6 @@ export declare const taskResourceSchema: z.ZodObject<{
638
638
  type: string;
639
639
  id: string;
640
640
  } | null | undefined;
641
- fieldName?: string | undefined;
642
- inventoryItemName?: string | null | undefined;
643
- assignedToName?: string | null | undefined;
644
641
  notes?: {
645
642
  id: string;
646
643
  authorId: string;
@@ -655,6 +652,9 @@ export declare const taskResourceSchema: z.ZodObject<{
655
652
  fileName?: string | undefined;
656
653
  }[] | undefined;
657
654
  }[] | undefined;
655
+ fieldName?: string | undefined;
656
+ inventoryItemName?: string | null | undefined;
657
+ assignedToName?: string | null | undefined;
658
658
  contributingSources?: {
659
659
  type: string;
660
660
  id: string;
@@ -684,9 +684,6 @@ export declare const taskResourceSchema: z.ZodObject<{
684
684
  type: string;
685
685
  id: string;
686
686
  } | null | undefined;
687
- fieldName?: string | undefined;
688
- inventoryItemName?: string | null | undefined;
689
- assignedToName?: string | null | undefined;
690
687
  notes?: {
691
688
  id: string;
692
689
  authorId: string;
@@ -701,6 +698,9 @@ export declare const taskResourceSchema: z.ZodObject<{
701
698
  fileName?: string | undefined;
702
699
  }[] | undefined;
703
700
  }[] | undefined;
701
+ fieldName?: string | undefined;
702
+ inventoryItemName?: string | null | undefined;
703
+ assignedToName?: string | null | undefined;
704
704
  contributingSources?: {
705
705
  type: string;
706
706
  id: string;
@@ -730,9 +730,6 @@ export declare const taskResourceSchema: z.ZodObject<{
730
730
  type: string;
731
731
  id: string;
732
732
  } | null | undefined;
733
- fieldName?: string | undefined;
734
- inventoryItemName?: string | null | undefined;
735
- assignedToName?: string | null | undefined;
736
733
  notes?: {
737
734
  id: string;
738
735
  authorId: string;
@@ -747,6 +744,9 @@ export declare const taskResourceSchema: z.ZodObject<{
747
744
  fileName?: string | undefined;
748
745
  }[] | undefined;
749
746
  }[] | undefined;
747
+ fieldName?: string | undefined;
748
+ inventoryItemName?: string | null | undefined;
749
+ assignedToName?: string | null | undefined;
750
750
  contributingSources?: {
751
751
  type: string;
752
752
  id: string;
@@ -865,9 +865,6 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
865
865
  type: string;
866
866
  id: string;
867
867
  } | null | undefined;
868
- fieldName?: string | undefined;
869
- inventoryItemName?: string | null | undefined;
870
- assignedToName?: string | null | undefined;
871
868
  notes?: {
872
869
  id: string;
873
870
  authorId: string;
@@ -882,6 +879,9 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
882
879
  fileName?: string | undefined;
883
880
  }[] | undefined;
884
881
  }[] | undefined;
882
+ fieldName?: string | undefined;
883
+ inventoryItemName?: string | null | undefined;
884
+ assignedToName?: string | null | undefined;
885
885
  contributingSources?: {
886
886
  type: string;
887
887
  id: string;
@@ -904,9 +904,6 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
904
904
  type: string;
905
905
  id: string;
906
906
  } | null | undefined;
907
- fieldName?: string | undefined;
908
- inventoryItemName?: string | null | undefined;
909
- assignedToName?: string | null | undefined;
910
907
  notes?: {
911
908
  id: string;
912
909
  authorId: string;
@@ -921,6 +918,9 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
921
918
  fileName?: string | undefined;
922
919
  }[] | undefined;
923
920
  }[] | undefined;
921
+ fieldName?: string | undefined;
922
+ inventoryItemName?: string | null | undefined;
923
+ assignedToName?: string | null | undefined;
924
924
  contributingSources?: {
925
925
  type: string;
926
926
  id: string;
@@ -1035,9 +1035,6 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
1035
1035
  type: string;
1036
1036
  id: string;
1037
1037
  } | null | undefined;
1038
- fieldName?: string | undefined;
1039
- inventoryItemName?: string | null | undefined;
1040
- assignedToName?: string | null | undefined;
1041
1038
  notes?: {
1042
1039
  id: string;
1043
1040
  authorId: string;
@@ -1052,6 +1049,9 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
1052
1049
  fileName?: string | undefined;
1053
1050
  }[] | undefined;
1054
1051
  }[] | undefined;
1052
+ fieldName?: string | undefined;
1053
+ inventoryItemName?: string | null | undefined;
1054
+ assignedToName?: string | null | undefined;
1055
1055
  contributingSources?: {
1056
1056
  type: string;
1057
1057
  id: string;
@@ -1097,9 +1097,6 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
1097
1097
  type: string;
1098
1098
  id: string;
1099
1099
  } | null | undefined;
1100
- fieldName?: string | undefined;
1101
- inventoryItemName?: string | null | undefined;
1102
- assignedToName?: string | null | undefined;
1103
1100
  notes?: {
1104
1101
  id: string;
1105
1102
  authorId: string;
@@ -1114,6 +1111,9 @@ export declare const taskDetailResourceSchema: z.ZodObject<{
1114
1111
  fileName?: string | undefined;
1115
1112
  }[] | undefined;
1116
1113
  }[] | undefined;
1114
+ fieldName?: string | undefined;
1115
+ inventoryItemName?: string | null | undefined;
1116
+ assignedToName?: string | null | undefined;
1117
1117
  contributingSources?: {
1118
1118
  type: string;
1119
1119
  id: string;
@@ -1249,9 +1249,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1249
1249
  type: string;
1250
1250
  id: string;
1251
1251
  } | null | undefined;
1252
- fieldName?: string | undefined;
1253
- inventoryItemName?: string | null | undefined;
1254
- assignedToName?: string | null | undefined;
1255
1252
  notes?: {
1256
1253
  id: string;
1257
1254
  authorId: string;
@@ -1266,6 +1263,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1266
1263
  fileName?: string | undefined;
1267
1264
  }[] | undefined;
1268
1265
  }[] | undefined;
1266
+ fieldName?: string | undefined;
1267
+ inventoryItemName?: string | null | undefined;
1268
+ assignedToName?: string | null | undefined;
1269
1269
  contributingSources?: {
1270
1270
  type: string;
1271
1271
  id: string;
@@ -1288,9 +1288,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1288
1288
  type: string;
1289
1289
  id: string;
1290
1290
  } | null | undefined;
1291
- fieldName?: string | undefined;
1292
- inventoryItemName?: string | null | undefined;
1293
- assignedToName?: string | null | undefined;
1294
1291
  notes?: {
1295
1292
  id: string;
1296
1293
  authorId: string;
@@ -1305,6 +1302,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1305
1302
  fileName?: string | undefined;
1306
1303
  }[] | undefined;
1307
1304
  }[] | undefined;
1305
+ fieldName?: string | undefined;
1306
+ inventoryItemName?: string | null | undefined;
1307
+ assignedToName?: string | null | undefined;
1308
1308
  contributingSources?: {
1309
1309
  type: string;
1310
1310
  id: string;
@@ -1334,9 +1334,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1334
1334
  type: string;
1335
1335
  id: string;
1336
1336
  } | null | undefined;
1337
- fieldName?: string | undefined;
1338
- inventoryItemName?: string | null | undefined;
1339
- assignedToName?: string | null | undefined;
1340
1337
  notes?: {
1341
1338
  id: string;
1342
1339
  authorId: string;
@@ -1351,6 +1348,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1351
1348
  fileName?: string | undefined;
1352
1349
  }[] | undefined;
1353
1350
  }[] | undefined;
1351
+ fieldName?: string | undefined;
1352
+ inventoryItemName?: string | null | undefined;
1353
+ assignedToName?: string | null | undefined;
1354
1354
  contributingSources?: {
1355
1355
  type: string;
1356
1356
  id: string;
@@ -1380,9 +1380,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1380
1380
  type: string;
1381
1381
  id: string;
1382
1382
  } | null | undefined;
1383
- fieldName?: string | undefined;
1384
- inventoryItemName?: string | null | undefined;
1385
- assignedToName?: string | null | undefined;
1386
1383
  notes?: {
1387
1384
  id: string;
1388
1385
  authorId: string;
@@ -1397,6 +1394,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1397
1394
  fileName?: string | undefined;
1398
1395
  }[] | undefined;
1399
1396
  }[] | undefined;
1397
+ fieldName?: string | undefined;
1398
+ inventoryItemName?: string | null | undefined;
1399
+ assignedToName?: string | null | undefined;
1400
1400
  contributingSources?: {
1401
1401
  type: string;
1402
1402
  id: string;
@@ -1452,9 +1452,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1452
1452
  type: string;
1453
1453
  id: string;
1454
1454
  } | null | undefined;
1455
- fieldName?: string | undefined;
1456
- inventoryItemName?: string | null | undefined;
1457
- assignedToName?: string | null | undefined;
1458
1455
  notes?: {
1459
1456
  id: string;
1460
1457
  authorId: string;
@@ -1469,6 +1466,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1469
1466
  fileName?: string | undefined;
1470
1467
  }[] | undefined;
1471
1468
  }[] | undefined;
1469
+ fieldName?: string | undefined;
1470
+ inventoryItemName?: string | null | undefined;
1471
+ assignedToName?: string | null | undefined;
1472
1472
  contributingSources?: {
1473
1473
  type: string;
1474
1474
  id: string;
@@ -1510,9 +1510,6 @@ export declare const taskResponseSchema: z.ZodObject<{
1510
1510
  type: string;
1511
1511
  id: string;
1512
1512
  } | null | undefined;
1513
- fieldName?: string | undefined;
1514
- inventoryItemName?: string | null | undefined;
1515
- assignedToName?: string | null | undefined;
1516
1513
  notes?: {
1517
1514
  id: string;
1518
1515
  authorId: string;
@@ -1527,6 +1524,9 @@ export declare const taskResponseSchema: z.ZodObject<{
1527
1524
  fileName?: string | undefined;
1528
1525
  }[] | undefined;
1529
1526
  }[] | undefined;
1527
+ fieldName?: string | undefined;
1528
+ inventoryItemName?: string | null | undefined;
1529
+ assignedToName?: string | null | undefined;
1530
1530
  contributingSources?: {
1531
1531
  type: string;
1532
1532
  id: string;
@@ -1657,9 +1657,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1657
1657
  type: string;
1658
1658
  id: string;
1659
1659
  } | null | undefined;
1660
- fieldName?: string | undefined;
1661
- inventoryItemName?: string | null | undefined;
1662
- assignedToName?: string | null | undefined;
1663
1660
  notes?: {
1664
1661
  id: string;
1665
1662
  authorId: string;
@@ -1674,6 +1671,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1674
1671
  fileName?: string | undefined;
1675
1672
  }[] | undefined;
1676
1673
  }[] | undefined;
1674
+ fieldName?: string | undefined;
1675
+ inventoryItemName?: string | null | undefined;
1676
+ assignedToName?: string | null | undefined;
1677
1677
  contributingSources?: {
1678
1678
  type: string;
1679
1679
  id: string;
@@ -1696,9 +1696,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1696
1696
  type: string;
1697
1697
  id: string;
1698
1698
  } | null | undefined;
1699
- fieldName?: string | undefined;
1700
- inventoryItemName?: string | null | undefined;
1701
- assignedToName?: string | null | undefined;
1702
1699
  notes?: {
1703
1700
  id: string;
1704
1701
  authorId: string;
@@ -1713,6 +1710,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1713
1710
  fileName?: string | undefined;
1714
1711
  }[] | undefined;
1715
1712
  }[] | undefined;
1713
+ fieldName?: string | undefined;
1714
+ inventoryItemName?: string | null | undefined;
1715
+ assignedToName?: string | null | undefined;
1716
1716
  contributingSources?: {
1717
1717
  type: string;
1718
1718
  id: string;
@@ -1827,9 +1827,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1827
1827
  type: string;
1828
1828
  id: string;
1829
1829
  } | null | undefined;
1830
- fieldName?: string | undefined;
1831
- inventoryItemName?: string | null | undefined;
1832
- assignedToName?: string | null | undefined;
1833
1830
  notes?: {
1834
1831
  id: string;
1835
1832
  authorId: string;
@@ -1844,6 +1841,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1844
1841
  fileName?: string | undefined;
1845
1842
  }[] | undefined;
1846
1843
  }[] | undefined;
1844
+ fieldName?: string | undefined;
1845
+ inventoryItemName?: string | null | undefined;
1846
+ assignedToName?: string | null | undefined;
1847
1847
  contributingSources?: {
1848
1848
  type: string;
1849
1849
  id: string;
@@ -1889,9 +1889,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1889
1889
  type: string;
1890
1890
  id: string;
1891
1891
  } | null | undefined;
1892
- fieldName?: string | undefined;
1893
- inventoryItemName?: string | null | undefined;
1894
- assignedToName?: string | null | undefined;
1895
1892
  notes?: {
1896
1893
  id: string;
1897
1894
  authorId: string;
@@ -1906,6 +1903,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1906
1903
  fileName?: string | undefined;
1907
1904
  }[] | undefined;
1908
1905
  }[] | undefined;
1906
+ fieldName?: string | undefined;
1907
+ inventoryItemName?: string | null | undefined;
1908
+ assignedToName?: string | null | undefined;
1909
1909
  contributingSources?: {
1910
1910
  type: string;
1911
1911
  id: string;
@@ -1977,9 +1977,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1977
1977
  type: string;
1978
1978
  id: string;
1979
1979
  } | null | undefined;
1980
- fieldName?: string | undefined;
1981
- inventoryItemName?: string | null | undefined;
1982
- assignedToName?: string | null | undefined;
1983
1980
  notes?: {
1984
1981
  id: string;
1985
1982
  authorId: string;
@@ -1994,6 +1991,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
1994
1991
  fileName?: string | undefined;
1995
1992
  }[] | undefined;
1996
1993
  }[] | undefined;
1994
+ fieldName?: string | undefined;
1995
+ inventoryItemName?: string | null | undefined;
1996
+ assignedToName?: string | null | undefined;
1997
1997
  contributingSources?: {
1998
1998
  type: string;
1999
1999
  id: string;
@@ -2051,9 +2051,6 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
2051
2051
  type: string;
2052
2052
  id: string;
2053
2053
  } | null | undefined;
2054
- fieldName?: string | undefined;
2055
- inventoryItemName?: string | null | undefined;
2056
- assignedToName?: string | null | undefined;
2057
2054
  notes?: {
2058
2055
  id: string;
2059
2056
  authorId: string;
@@ -2068,6 +2065,9 @@ export declare const taskDetailResponseSchema: z.ZodObject<{
2068
2065
  fileName?: string | undefined;
2069
2066
  }[] | undefined;
2070
2067
  }[] | undefined;
2068
+ fieldName?: string | undefined;
2069
+ inventoryItemName?: string | null | undefined;
2070
+ assignedToName?: string | null | undefined;
2071
2071
  contributingSources?: {
2072
2072
  type: string;
2073
2073
  id: string;
@@ -2214,9 +2214,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2214
2214
  type: string;
2215
2215
  id: string;
2216
2216
  } | null | undefined;
2217
- fieldName?: string | undefined;
2218
- inventoryItemName?: string | null | undefined;
2219
- assignedToName?: string | null | undefined;
2220
2217
  notes?: {
2221
2218
  id: string;
2222
2219
  authorId: string;
@@ -2231,6 +2228,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2231
2228
  fileName?: string | undefined;
2232
2229
  }[] | undefined;
2233
2230
  }[] | undefined;
2231
+ fieldName?: string | undefined;
2232
+ inventoryItemName?: string | null | undefined;
2233
+ assignedToName?: string | null | undefined;
2234
2234
  contributingSources?: {
2235
2235
  type: string;
2236
2236
  id: string;
@@ -2253,9 +2253,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2253
2253
  type: string;
2254
2254
  id: string;
2255
2255
  } | null | undefined;
2256
- fieldName?: string | undefined;
2257
- inventoryItemName?: string | null | undefined;
2258
- assignedToName?: string | null | undefined;
2259
2256
  notes?: {
2260
2257
  id: string;
2261
2258
  authorId: string;
@@ -2270,6 +2267,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2270
2267
  fileName?: string | undefined;
2271
2268
  }[] | undefined;
2272
2269
  }[] | undefined;
2270
+ fieldName?: string | undefined;
2271
+ inventoryItemName?: string | null | undefined;
2272
+ assignedToName?: string | null | undefined;
2273
2273
  contributingSources?: {
2274
2274
  type: string;
2275
2275
  id: string;
@@ -2299,9 +2299,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2299
2299
  type: string;
2300
2300
  id: string;
2301
2301
  } | null | undefined;
2302
- fieldName?: string | undefined;
2303
- inventoryItemName?: string | null | undefined;
2304
- assignedToName?: string | null | undefined;
2305
2302
  notes?: {
2306
2303
  id: string;
2307
2304
  authorId: string;
@@ -2316,6 +2313,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2316
2313
  fileName?: string | undefined;
2317
2314
  }[] | undefined;
2318
2315
  }[] | undefined;
2316
+ fieldName?: string | undefined;
2317
+ inventoryItemName?: string | null | undefined;
2318
+ assignedToName?: string | null | undefined;
2319
2319
  contributingSources?: {
2320
2320
  type: string;
2321
2321
  id: string;
@@ -2345,9 +2345,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2345
2345
  type: string;
2346
2346
  id: string;
2347
2347
  } | null | undefined;
2348
- fieldName?: string | undefined;
2349
- inventoryItemName?: string | null | undefined;
2350
- assignedToName?: string | null | undefined;
2351
2348
  notes?: {
2352
2349
  id: string;
2353
2350
  authorId: string;
@@ -2362,6 +2359,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2362
2359
  fileName?: string | undefined;
2363
2360
  }[] | undefined;
2364
2361
  }[] | undefined;
2362
+ fieldName?: string | undefined;
2363
+ inventoryItemName?: string | null | undefined;
2364
+ assignedToName?: string | null | undefined;
2365
2365
  contributingSources?: {
2366
2366
  type: string;
2367
2367
  id: string;
@@ -2417,9 +2417,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2417
2417
  type: string;
2418
2418
  id: string;
2419
2419
  } | null | undefined;
2420
- fieldName?: string | undefined;
2421
- inventoryItemName?: string | null | undefined;
2422
- assignedToName?: string | null | undefined;
2423
2420
  notes?: {
2424
2421
  id: string;
2425
2422
  authorId: string;
@@ -2434,6 +2431,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2434
2431
  fileName?: string | undefined;
2435
2432
  }[] | undefined;
2436
2433
  }[] | undefined;
2434
+ fieldName?: string | undefined;
2435
+ inventoryItemName?: string | null | undefined;
2436
+ assignedToName?: string | null | undefined;
2437
2437
  contributingSources?: {
2438
2438
  type: string;
2439
2439
  id: string;
@@ -2475,9 +2475,6 @@ export declare const taskListResponseSchema: z.ZodObject<{
2475
2475
  type: string;
2476
2476
  id: string;
2477
2477
  } | null | undefined;
2478
- fieldName?: string | undefined;
2479
- inventoryItemName?: string | null | undefined;
2480
- assignedToName?: string | null | undefined;
2481
2478
  notes?: {
2482
2479
  id: string;
2483
2480
  authorId: string;
@@ -2492,6 +2489,9 @@ export declare const taskListResponseSchema: z.ZodObject<{
2492
2489
  fileName?: string | undefined;
2493
2490
  }[] | undefined;
2494
2491
  }[] | undefined;
2492
+ fieldName?: string | undefined;
2493
+ inventoryItemName?: string | null | undefined;
2494
+ assignedToName?: string | null | undefined;
2495
2495
  contributingSources?: {
2496
2496
  type: string;
2497
2497
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepintel-ltd/farmpro-contracts",
3
- "version": "1.11.8",
3
+ "version": "1.11.9",
4
4
  "description": "Type-safe API contracts for FarmPro API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",