@deepintel-ltd/farmpro-contracts 1.3.1 → 1.3.4

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 (55) hide show
  1. package/dist/index.d.ts +7 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +10 -1
  4. package/dist/routes/admin.routes.d.ts +747 -0
  5. package/dist/routes/admin.routes.d.ts.map +1 -0
  6. package/dist/routes/admin.routes.js +26 -0
  7. package/dist/routes/agent-workflows.routes.d.ts +2900 -0
  8. package/dist/routes/agent-workflows.routes.d.ts.map +1 -0
  9. package/dist/routes/agent-workflows.routes.js +160 -0
  10. package/dist/routes/documents.routes.d.ts +417 -0
  11. package/dist/routes/documents.routes.d.ts.map +1 -1
  12. package/dist/routes/documents.routes.js +16 -0
  13. package/dist/routes/field-monitoring.routes.d.ts +568 -23
  14. package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
  15. package/dist/routes/field-monitoring.routes.js +64 -0
  16. package/dist/routes/field-observations.routes.d.ts +130 -58
  17. package/dist/routes/field-observations.routes.d.ts.map +1 -1
  18. package/dist/routes/health.routes.d.ts +317 -0
  19. package/dist/routes/health.routes.d.ts.map +1 -0
  20. package/dist/routes/health.routes.js +18 -0
  21. package/dist/routes/index.d.ts +9 -0
  22. package/dist/routes/index.d.ts.map +1 -1
  23. package/dist/routes/index.js +6 -0
  24. package/dist/routes/tasks.routes.d.ts +408 -0
  25. package/dist/routes/tasks.routes.d.ts.map +1 -1
  26. package/dist/routes/weather.routes.d.ts +264 -17
  27. package/dist/routes/weather.routes.d.ts.map +1 -1
  28. package/dist/schemas/admin.schemas.d.ts +1063 -0
  29. package/dist/schemas/admin.schemas.d.ts.map +1 -0
  30. package/dist/schemas/admin.schemas.js +63 -0
  31. package/dist/schemas/agent-workflows.schemas.d.ts +2399 -0
  32. package/dist/schemas/agent-workflows.schemas.d.ts.map +1 -0
  33. package/dist/schemas/agent-workflows.schemas.js +70 -0
  34. package/dist/schemas/documents.schemas.d.ts +202 -0
  35. package/dist/schemas/documents.schemas.d.ts.map +1 -1
  36. package/dist/schemas/documents.schemas.js +10 -1
  37. package/dist/schemas/field-monitoring.schemas.d.ts +215 -9
  38. package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
  39. package/dist/schemas/field-monitoring.schemas.js +26 -2
  40. package/dist/schemas/field-observations.schemas.d.ts +100 -40
  41. package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
  42. package/dist/schemas/field-observations.schemas.js +2 -24
  43. package/dist/schemas/health.schemas.d.ts +176 -0
  44. package/dist/schemas/health.schemas.d.ts.map +1 -0
  45. package/dist/schemas/health.schemas.js +26 -0
  46. package/dist/schemas/recommendations.schemas.d.ts +112 -0
  47. package/dist/schemas/recommendations.schemas.d.ts.map +1 -0
  48. package/dist/schemas/recommendations.schemas.js +32 -0
  49. package/dist/schemas/tasks.schemas.d.ts +344 -0
  50. package/dist/schemas/tasks.schemas.d.ts.map +1 -1
  51. package/dist/schemas/tasks.schemas.js +9 -0
  52. package/dist/schemas/weather.schemas.d.ts +780 -44
  53. package/dist/schemas/weather.schemas.d.ts.map +1 -1
  54. package/dist/schemas/weather.schemas.js +2 -1
  55. package/package.json +1 -1
@@ -136,6 +136,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
136
136
  action: z.ZodString;
137
137
  details: z.ZodString;
138
138
  timing: z.ZodString;
139
+ severity: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
140
+ confidence: z.ZodOptional<z.ZodNumber>;
139
141
  materials: z.ZodOptional<z.ZodArray<z.ZodObject<{
140
142
  inventoryItemId: z.ZodOptional<z.ZodString>;
141
143
  name: z.ZodString;
@@ -171,6 +173,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
171
173
  action: string;
172
174
  details: string;
173
175
  timing: string;
176
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
177
+ confidence?: number | undefined;
174
178
  materials?: {
175
179
  name: string;
176
180
  unit: string;
@@ -190,6 +194,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
190
194
  action: string;
191
195
  details: string;
192
196
  timing: string;
197
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
198
+ confidence?: number | undefined;
193
199
  materials?: {
194
200
  name: string;
195
201
  unit: string;
@@ -236,6 +242,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
236
242
  action: string;
237
243
  details: string;
238
244
  timing: string;
245
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
246
+ confidence?: number | undefined;
239
247
  materials?: {
240
248
  name: string;
241
249
  unit: string;
@@ -251,7 +259,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
251
259
  estimatedTime?: string | undefined;
252
260
  riskLevel?: string | undefined;
253
261
  }[] | null;
254
- severity: "critical" | "high" | "medium" | "low" | null;
262
+ severity: "critical" | "low" | "medium" | "high" | null;
255
263
  uploadedBy: string;
256
264
  photoUrl: string;
257
265
  photoThumbnail: string | null;
@@ -259,7 +267,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
259
267
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
260
268
  userNotes: string | null;
261
269
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
262
- analysisStatus: "pending" | "completed" | "processing" | "failed";
270
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
263
271
  analysisCompletedAt: Date | null;
264
272
  identifiedCrop: string | null;
265
273
  identifiedCropConfidence: number | null;
@@ -317,6 +325,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
317
325
  action: string;
318
326
  details: string;
319
327
  timing: string;
328
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
329
+ confidence?: number | undefined;
320
330
  materials?: {
321
331
  name: string;
322
332
  unit: string;
@@ -332,7 +342,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
332
342
  estimatedTime?: string | undefined;
333
343
  riskLevel?: string | undefined;
334
344
  }[] | null;
335
- severity: "critical" | "high" | "medium" | "low" | null;
345
+ severity: "critical" | "low" | "medium" | "high" | null;
336
346
  uploadedBy: string;
337
347
  photoUrl: string;
338
348
  photoThumbnail: string | null;
@@ -340,7 +350,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
340
350
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
341
351
  userNotes: string | null;
342
352
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
343
- analysisStatus: "pending" | "completed" | "processing" | "failed";
353
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
344
354
  analysisCompletedAt: Date | null;
345
355
  identifiedCrop: string | null;
346
356
  identifiedCropConfidence: number | null;
@@ -575,6 +585,8 @@ export declare const observationResourceSchema: z.ZodObject<{
575
585
  action: z.ZodString;
576
586
  details: z.ZodString;
577
587
  timing: z.ZodString;
588
+ severity: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
589
+ confidence: z.ZodOptional<z.ZodNumber>;
578
590
  materials: z.ZodOptional<z.ZodArray<z.ZodObject<{
579
591
  inventoryItemId: z.ZodOptional<z.ZodString>;
580
592
  name: z.ZodString;
@@ -610,6 +622,8 @@ export declare const observationResourceSchema: z.ZodObject<{
610
622
  action: string;
611
623
  details: string;
612
624
  timing: string;
625
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
626
+ confidence?: number | undefined;
613
627
  materials?: {
614
628
  name: string;
615
629
  unit: string;
@@ -629,6 +643,8 @@ export declare const observationResourceSchema: z.ZodObject<{
629
643
  action: string;
630
644
  details: string;
631
645
  timing: string;
646
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
647
+ confidence?: number | undefined;
632
648
  materials?: {
633
649
  name: string;
634
650
  unit: string;
@@ -675,6 +691,8 @@ export declare const observationResourceSchema: z.ZodObject<{
675
691
  action: string;
676
692
  details: string;
677
693
  timing: string;
694
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
695
+ confidence?: number | undefined;
678
696
  materials?: {
679
697
  name: string;
680
698
  unit: string;
@@ -690,7 +708,7 @@ export declare const observationResourceSchema: z.ZodObject<{
690
708
  estimatedTime?: string | undefined;
691
709
  riskLevel?: string | undefined;
692
710
  }[] | null;
693
- severity: "critical" | "high" | "medium" | "low" | null;
711
+ severity: "critical" | "low" | "medium" | "high" | null;
694
712
  uploadedBy: string;
695
713
  photoUrl: string;
696
714
  photoThumbnail: string | null;
@@ -698,7 +716,7 @@ export declare const observationResourceSchema: z.ZodObject<{
698
716
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
699
717
  userNotes: string | null;
700
718
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
701
- analysisStatus: "pending" | "completed" | "processing" | "failed";
719
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
702
720
  analysisCompletedAt: Date | null;
703
721
  identifiedCrop: string | null;
704
722
  identifiedCropConfidence: number | null;
@@ -756,6 +774,8 @@ export declare const observationResourceSchema: z.ZodObject<{
756
774
  action: string;
757
775
  details: string;
758
776
  timing: string;
777
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
778
+ confidence?: number | undefined;
759
779
  materials?: {
760
780
  name: string;
761
781
  unit: string;
@@ -771,7 +791,7 @@ export declare const observationResourceSchema: z.ZodObject<{
771
791
  estimatedTime?: string | undefined;
772
792
  riskLevel?: string | undefined;
773
793
  }[] | null;
774
- severity: "critical" | "high" | "medium" | "low" | null;
794
+ severity: "critical" | "low" | "medium" | "high" | null;
775
795
  uploadedBy: string;
776
796
  photoUrl: string;
777
797
  photoThumbnail: string | null;
@@ -779,7 +799,7 @@ export declare const observationResourceSchema: z.ZodObject<{
779
799
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
780
800
  userNotes: string | null;
781
801
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
782
- analysisStatus: "pending" | "completed" | "processing" | "failed";
802
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
783
803
  analysisCompletedAt: Date | null;
784
804
  identifiedCrop: string | null;
785
805
  identifiedCropConfidence: number | null;
@@ -844,6 +864,8 @@ export declare const observationResourceSchema: z.ZodObject<{
844
864
  action: string;
845
865
  details: string;
846
866
  timing: string;
867
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
868
+ confidence?: number | undefined;
847
869
  materials?: {
848
870
  name: string;
849
871
  unit: string;
@@ -859,7 +881,7 @@ export declare const observationResourceSchema: z.ZodObject<{
859
881
  estimatedTime?: string | undefined;
860
882
  riskLevel?: string | undefined;
861
883
  }[] | null;
862
- severity: "critical" | "high" | "medium" | "low" | null;
884
+ severity: "critical" | "low" | "medium" | "high" | null;
863
885
  uploadedBy: string;
864
886
  photoUrl: string;
865
887
  photoThumbnail: string | null;
@@ -867,7 +889,7 @@ export declare const observationResourceSchema: z.ZodObject<{
867
889
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
868
890
  userNotes: string | null;
869
891
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
870
- analysisStatus: "pending" | "completed" | "processing" | "failed";
892
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
871
893
  analysisCompletedAt: Date | null;
872
894
  identifiedCrop: string | null;
873
895
  identifiedCropConfidence: number | null;
@@ -932,6 +954,8 @@ export declare const observationResourceSchema: z.ZodObject<{
932
954
  action: string;
933
955
  details: string;
934
956
  timing: string;
957
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
958
+ confidence?: number | undefined;
935
959
  materials?: {
936
960
  name: string;
937
961
  unit: string;
@@ -947,7 +971,7 @@ export declare const observationResourceSchema: z.ZodObject<{
947
971
  estimatedTime?: string | undefined;
948
972
  riskLevel?: string | undefined;
949
973
  }[] | null;
950
- severity: "critical" | "high" | "medium" | "low" | null;
974
+ severity: "critical" | "low" | "medium" | "high" | null;
951
975
  uploadedBy: string;
952
976
  photoUrl: string;
953
977
  photoThumbnail: string | null;
@@ -955,7 +979,7 @@ export declare const observationResourceSchema: z.ZodObject<{
955
979
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
956
980
  userNotes: string | null;
957
981
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
958
- analysisStatus: "pending" | "completed" | "processing" | "failed";
982
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
959
983
  analysisCompletedAt: Date | null;
960
984
  identifiedCrop: string | null;
961
985
  identifiedCropConfidence: number | null;
@@ -1267,6 +1291,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1267
1291
  action: z.ZodString;
1268
1292
  details: z.ZodString;
1269
1293
  timing: z.ZodString;
1294
+ severity: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
1295
+ confidence: z.ZodOptional<z.ZodNumber>;
1270
1296
  materials: z.ZodOptional<z.ZodArray<z.ZodObject<{
1271
1297
  inventoryItemId: z.ZodOptional<z.ZodString>;
1272
1298
  name: z.ZodString;
@@ -1302,6 +1328,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1302
1328
  action: string;
1303
1329
  details: string;
1304
1330
  timing: string;
1331
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1332
+ confidence?: number | undefined;
1305
1333
  materials?: {
1306
1334
  name: string;
1307
1335
  unit: string;
@@ -1321,6 +1349,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1321
1349
  action: string;
1322
1350
  details: string;
1323
1351
  timing: string;
1352
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1353
+ confidence?: number | undefined;
1324
1354
  materials?: {
1325
1355
  name: string;
1326
1356
  unit: string;
@@ -1367,6 +1397,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1367
1397
  action: string;
1368
1398
  details: string;
1369
1399
  timing: string;
1400
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1401
+ confidence?: number | undefined;
1370
1402
  materials?: {
1371
1403
  name: string;
1372
1404
  unit: string;
@@ -1382,7 +1414,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1382
1414
  estimatedTime?: string | undefined;
1383
1415
  riskLevel?: string | undefined;
1384
1416
  }[] | null;
1385
- severity: "critical" | "high" | "medium" | "low" | null;
1417
+ severity: "critical" | "low" | "medium" | "high" | null;
1386
1418
  uploadedBy: string;
1387
1419
  photoUrl: string;
1388
1420
  photoThumbnail: string | null;
@@ -1390,7 +1422,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1390
1422
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1391
1423
  userNotes: string | null;
1392
1424
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1393
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1425
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1394
1426
  analysisCompletedAt: Date | null;
1395
1427
  identifiedCrop: string | null;
1396
1428
  identifiedCropConfidence: number | null;
@@ -1448,6 +1480,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1448
1480
  action: string;
1449
1481
  details: string;
1450
1482
  timing: string;
1483
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1484
+ confidence?: number | undefined;
1451
1485
  materials?: {
1452
1486
  name: string;
1453
1487
  unit: string;
@@ -1463,7 +1497,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1463
1497
  estimatedTime?: string | undefined;
1464
1498
  riskLevel?: string | undefined;
1465
1499
  }[] | null;
1466
- severity: "critical" | "high" | "medium" | "low" | null;
1500
+ severity: "critical" | "low" | "medium" | "high" | null;
1467
1501
  uploadedBy: string;
1468
1502
  photoUrl: string;
1469
1503
  photoThumbnail: string | null;
@@ -1471,7 +1505,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1471
1505
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1472
1506
  userNotes: string | null;
1473
1507
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1474
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1508
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1475
1509
  analysisCompletedAt: Date | null;
1476
1510
  identifiedCrop: string | null;
1477
1511
  identifiedCropConfidence: number | null;
@@ -1536,6 +1570,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1536
1570
  action: string;
1537
1571
  details: string;
1538
1572
  timing: string;
1573
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1574
+ confidence?: number | undefined;
1539
1575
  materials?: {
1540
1576
  name: string;
1541
1577
  unit: string;
@@ -1551,7 +1587,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1551
1587
  estimatedTime?: string | undefined;
1552
1588
  riskLevel?: string | undefined;
1553
1589
  }[] | null;
1554
- severity: "critical" | "high" | "medium" | "low" | null;
1590
+ severity: "critical" | "low" | "medium" | "high" | null;
1555
1591
  uploadedBy: string;
1556
1592
  photoUrl: string;
1557
1593
  photoThumbnail: string | null;
@@ -1559,7 +1595,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1559
1595
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1560
1596
  userNotes: string | null;
1561
1597
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1562
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1598
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1563
1599
  analysisCompletedAt: Date | null;
1564
1600
  identifiedCrop: string | null;
1565
1601
  identifiedCropConfidence: number | null;
@@ -1624,6 +1660,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1624
1660
  action: string;
1625
1661
  details: string;
1626
1662
  timing: string;
1663
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1664
+ confidence?: number | undefined;
1627
1665
  materials?: {
1628
1666
  name: string;
1629
1667
  unit: string;
@@ -1639,7 +1677,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1639
1677
  estimatedTime?: string | undefined;
1640
1678
  riskLevel?: string | undefined;
1641
1679
  }[] | null;
1642
- severity: "critical" | "high" | "medium" | "low" | null;
1680
+ severity: "critical" | "low" | "medium" | "high" | null;
1643
1681
  uploadedBy: string;
1644
1682
  photoUrl: string;
1645
1683
  photoThumbnail: string | null;
@@ -1647,7 +1685,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1647
1685
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1648
1686
  userNotes: string | null;
1649
1687
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1650
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1688
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1651
1689
  analysisCompletedAt: Date | null;
1652
1690
  identifiedCrop: string | null;
1653
1691
  identifiedCropConfidence: number | null;
@@ -1738,6 +1776,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1738
1776
  action: string;
1739
1777
  details: string;
1740
1778
  timing: string;
1779
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1780
+ confidence?: number | undefined;
1741
1781
  materials?: {
1742
1782
  name: string;
1743
1783
  unit: string;
@@ -1753,7 +1793,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1753
1793
  estimatedTime?: string | undefined;
1754
1794
  riskLevel?: string | undefined;
1755
1795
  }[] | null;
1756
- severity: "critical" | "high" | "medium" | "low" | null;
1796
+ severity: "critical" | "low" | "medium" | "high" | null;
1757
1797
  uploadedBy: string;
1758
1798
  photoUrl: string;
1759
1799
  photoThumbnail: string | null;
@@ -1761,7 +1801,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1761
1801
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1762
1802
  userNotes: string | null;
1763
1803
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1764
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1804
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1765
1805
  analysisCompletedAt: Date | null;
1766
1806
  identifiedCrop: string | null;
1767
1807
  identifiedCropConfidence: number | null;
@@ -1838,6 +1878,8 @@ export declare const observationResponseSchema: z.ZodObject<{
1838
1878
  action: string;
1839
1879
  details: string;
1840
1880
  timing: string;
1881
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
1882
+ confidence?: number | undefined;
1841
1883
  materials?: {
1842
1884
  name: string;
1843
1885
  unit: string;
@@ -1853,7 +1895,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1853
1895
  estimatedTime?: string | undefined;
1854
1896
  riskLevel?: string | undefined;
1855
1897
  }[] | null;
1856
- severity: "critical" | "high" | "medium" | "low" | null;
1898
+ severity: "critical" | "low" | "medium" | "high" | null;
1857
1899
  uploadedBy: string;
1858
1900
  photoUrl: string;
1859
1901
  photoThumbnail: string | null;
@@ -1861,7 +1903,7 @@ export declare const observationResponseSchema: z.ZodObject<{
1861
1903
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
1862
1904
  userNotes: string | null;
1863
1905
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
1864
- analysisStatus: "pending" | "completed" | "processing" | "failed";
1906
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
1865
1907
  analysisCompletedAt: Date | null;
1866
1908
  identifiedCrop: string | null;
1867
1909
  identifiedCropConfidence: number | null;
@@ -2057,6 +2099,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2057
2099
  action: z.ZodString;
2058
2100
  details: z.ZodString;
2059
2101
  timing: z.ZodString;
2102
+ severity: z.ZodOptional<z.ZodEnum<["low", "medium", "high", "critical"]>>;
2103
+ confidence: z.ZodOptional<z.ZodNumber>;
2060
2104
  materials: z.ZodOptional<z.ZodArray<z.ZodObject<{
2061
2105
  inventoryItemId: z.ZodOptional<z.ZodString>;
2062
2106
  name: z.ZodString;
@@ -2092,6 +2136,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2092
2136
  action: string;
2093
2137
  details: string;
2094
2138
  timing: string;
2139
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2140
+ confidence?: number | undefined;
2095
2141
  materials?: {
2096
2142
  name: string;
2097
2143
  unit: string;
@@ -2111,6 +2157,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2111
2157
  action: string;
2112
2158
  details: string;
2113
2159
  timing: string;
2160
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2161
+ confidence?: number | undefined;
2114
2162
  materials?: {
2115
2163
  name: string;
2116
2164
  unit: string;
@@ -2157,6 +2205,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2157
2205
  action: string;
2158
2206
  details: string;
2159
2207
  timing: string;
2208
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2209
+ confidence?: number | undefined;
2160
2210
  materials?: {
2161
2211
  name: string;
2162
2212
  unit: string;
@@ -2172,7 +2222,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2172
2222
  estimatedTime?: string | undefined;
2173
2223
  riskLevel?: string | undefined;
2174
2224
  }[] | null;
2175
- severity: "critical" | "high" | "medium" | "low" | null;
2225
+ severity: "critical" | "low" | "medium" | "high" | null;
2176
2226
  uploadedBy: string;
2177
2227
  photoUrl: string;
2178
2228
  photoThumbnail: string | null;
@@ -2180,7 +2230,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2180
2230
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2181
2231
  userNotes: string | null;
2182
2232
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2183
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2233
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2184
2234
  analysisCompletedAt: Date | null;
2185
2235
  identifiedCrop: string | null;
2186
2236
  identifiedCropConfidence: number | null;
@@ -2238,6 +2288,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2238
2288
  action: string;
2239
2289
  details: string;
2240
2290
  timing: string;
2291
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2292
+ confidence?: number | undefined;
2241
2293
  materials?: {
2242
2294
  name: string;
2243
2295
  unit: string;
@@ -2253,7 +2305,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2253
2305
  estimatedTime?: string | undefined;
2254
2306
  riskLevel?: string | undefined;
2255
2307
  }[] | null;
2256
- severity: "critical" | "high" | "medium" | "low" | null;
2308
+ severity: "critical" | "low" | "medium" | "high" | null;
2257
2309
  uploadedBy: string;
2258
2310
  photoUrl: string;
2259
2311
  photoThumbnail: string | null;
@@ -2261,7 +2313,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2261
2313
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2262
2314
  userNotes: string | null;
2263
2315
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2264
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2316
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2265
2317
  analysisCompletedAt: Date | null;
2266
2318
  identifiedCrop: string | null;
2267
2319
  identifiedCropConfidence: number | null;
@@ -2326,6 +2378,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2326
2378
  action: string;
2327
2379
  details: string;
2328
2380
  timing: string;
2381
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2382
+ confidence?: number | undefined;
2329
2383
  materials?: {
2330
2384
  name: string;
2331
2385
  unit: string;
@@ -2341,7 +2395,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2341
2395
  estimatedTime?: string | undefined;
2342
2396
  riskLevel?: string | undefined;
2343
2397
  }[] | null;
2344
- severity: "critical" | "high" | "medium" | "low" | null;
2398
+ severity: "critical" | "low" | "medium" | "high" | null;
2345
2399
  uploadedBy: string;
2346
2400
  photoUrl: string;
2347
2401
  photoThumbnail: string | null;
@@ -2349,7 +2403,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2349
2403
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2350
2404
  userNotes: string | null;
2351
2405
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2352
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2406
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2353
2407
  analysisCompletedAt: Date | null;
2354
2408
  identifiedCrop: string | null;
2355
2409
  identifiedCropConfidence: number | null;
@@ -2414,6 +2468,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2414
2468
  action: string;
2415
2469
  details: string;
2416
2470
  timing: string;
2471
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2472
+ confidence?: number | undefined;
2417
2473
  materials?: {
2418
2474
  name: string;
2419
2475
  unit: string;
@@ -2429,7 +2485,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2429
2485
  estimatedTime?: string | undefined;
2430
2486
  riskLevel?: string | undefined;
2431
2487
  }[] | null;
2432
- severity: "critical" | "high" | "medium" | "low" | null;
2488
+ severity: "critical" | "low" | "medium" | "high" | null;
2433
2489
  uploadedBy: string;
2434
2490
  photoUrl: string;
2435
2491
  photoThumbnail: string | null;
@@ -2437,7 +2493,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2437
2493
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2438
2494
  userNotes: string | null;
2439
2495
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2440
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2496
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2441
2497
  analysisCompletedAt: Date | null;
2442
2498
  identifiedCrop: string | null;
2443
2499
  identifiedCropConfidence: number | null;
@@ -2528,6 +2584,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2528
2584
  action: string;
2529
2585
  details: string;
2530
2586
  timing: string;
2587
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2588
+ confidence?: number | undefined;
2531
2589
  materials?: {
2532
2590
  name: string;
2533
2591
  unit: string;
@@ -2543,7 +2601,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2543
2601
  estimatedTime?: string | undefined;
2544
2602
  riskLevel?: string | undefined;
2545
2603
  }[] | null;
2546
- severity: "critical" | "high" | "medium" | "low" | null;
2604
+ severity: "critical" | "low" | "medium" | "high" | null;
2547
2605
  uploadedBy: string;
2548
2606
  photoUrl: string;
2549
2607
  photoThumbnail: string | null;
@@ -2551,7 +2609,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2551
2609
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2552
2610
  userNotes: string | null;
2553
2611
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2554
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2612
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2555
2613
  analysisCompletedAt: Date | null;
2556
2614
  identifiedCrop: string | null;
2557
2615
  identifiedCropConfidence: number | null;
@@ -2628,6 +2686,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
2628
2686
  action: string;
2629
2687
  details: string;
2630
2688
  timing: string;
2689
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2690
+ confidence?: number | undefined;
2631
2691
  materials?: {
2632
2692
  name: string;
2633
2693
  unit: string;
@@ -2643,7 +2703,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2643
2703
  estimatedTime?: string | undefined;
2644
2704
  riskLevel?: string | undefined;
2645
2705
  }[] | null;
2646
- severity: "critical" | "high" | "medium" | "low" | null;
2706
+ severity: "critical" | "low" | "medium" | "high" | null;
2647
2707
  uploadedBy: string;
2648
2708
  photoUrl: string;
2649
2709
  photoThumbnail: string | null;
@@ -2651,7 +2711,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
2651
2711
  observationType: "general" | "disease" | "pest" | "nutrient" | "weed" | "health_check";
2652
2712
  userNotes: string | null;
2653
2713
  cropStageAtTime: "planted" | "flowering" | "mature" | "harvested" | "germination" | "vegetative" | "fruiting" | null;
2654
- analysisStatus: "pending" | "completed" | "processing" | "failed";
2714
+ analysisStatus: "pending" | "completed" | "failed" | "processing";
2655
2715
  analysisCompletedAt: Date | null;
2656
2716
  identifiedCrop: string | null;
2657
2717
  identifiedCropConfidence: number | null;
@@ -2721,17 +2781,17 @@ export declare const observationListQuerySchema: z.ZodObject<{
2721
2781
  }, "strip", z.ZodTypeAny, {
2722
2782
  pageSize: string;
2723
2783
  page: string;
2724
- status?: "pending" | "completed" | "processing" | "failed" | undefined;
2784
+ status?: "pending" | "completed" | "failed" | "processing" | undefined;
2725
2785
  fieldId?: string | undefined;
2726
- severity?: "critical" | "high" | "medium" | "low" | undefined;
2786
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2727
2787
  startDate?: string | undefined;
2728
2788
  endDate?: string | undefined;
2729
2789
  observationType?: string | undefined;
2730
2790
  }, {
2731
- status?: "pending" | "completed" | "processing" | "failed" | undefined;
2791
+ status?: "pending" | "completed" | "failed" | "processing" | undefined;
2732
2792
  pageSize?: string | undefined;
2733
2793
  fieldId?: string | undefined;
2734
- severity?: "critical" | "high" | "medium" | "low" | undefined;
2794
+ severity?: "critical" | "low" | "medium" | "high" | undefined;
2735
2795
  startDate?: string | undefined;
2736
2796
  endDate?: string | undefined;
2737
2797
  observationType?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"field-observations.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/field-observations.schemas.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"field-observations.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/field-observations.schemas.ts"],"names":[],"mappings":"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"}