@deepintel-ltd/farmpro-contracts 1.7.14 → 1.7.19

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 (78) 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/agent-workflows.routes.d.ts +88 -88
  5. package/dist/routes/agents.routes.d.ts +3260 -0
  6. package/dist/routes/agents.routes.d.ts.map +1 -1
  7. package/dist/routes/agents.routes.js +130 -1
  8. package/dist/routes/analytics.routes.d.ts +20 -20
  9. package/dist/routes/documents.routes.d.ts +855 -58
  10. package/dist/routes/documents.routes.d.ts.map +1 -1
  11. package/dist/routes/documents.routes.js +43 -1
  12. package/dist/routes/equipment.routes.d.ts +38 -38
  13. package/dist/routes/farm-status.routes.d.ts +315 -0
  14. package/dist/routes/farm-status.routes.d.ts.map +1 -0
  15. package/dist/routes/farm-status.routes.js +26 -0
  16. package/dist/routes/fertigation.routes.d.ts +148 -148
  17. package/dist/routes/field-monitoring.routes.d.ts +52 -52
  18. package/dist/routes/field-observations.routes.d.ts +56 -56
  19. package/dist/routes/finance.routes.d.ts +3493 -0
  20. package/dist/routes/finance.routes.d.ts.map +1 -1
  21. package/dist/routes/finance.routes.js +158 -1
  22. package/dist/routes/geofences.routes.d.ts.map +1 -1
  23. package/dist/routes/index.d.ts +3 -0
  24. package/dist/routes/index.d.ts.map +1 -1
  25. package/dist/routes/index.js +2 -0
  26. package/dist/routes/irrigation.routes.d.ts +6 -6
  27. package/dist/routes/measurements.routes.d.ts +13 -4
  28. package/dist/routes/measurements.routes.d.ts.map +1 -1
  29. package/dist/routes/monitoring-visualization.routes.d.ts +36 -29
  30. package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
  31. package/dist/routes/monitoring-visualization.routes.js +7 -4
  32. package/dist/routes/pest-disease-risk.routes.d.ts +20 -20
  33. package/dist/routes/prescription-maps.routes.d.ts +567 -20
  34. package/dist/routes/prescription-maps.routes.d.ts.map +1 -1
  35. package/dist/routes/prescription-maps.routes.js +18 -1
  36. package/dist/routes/soil-tests.routes.d.ts +30 -30
  37. package/dist/routes/subscriptions.routes.d.ts +14 -14
  38. package/dist/routes/weather.routes.d.ts +545 -52
  39. package/dist/routes/weather.routes.d.ts.map +1 -1
  40. package/dist/routes/weather.routes.js +13 -1
  41. package/dist/routes/yield-prediction.routes.d.ts +30 -30
  42. package/dist/schemas/agent-workflows.schemas.d.ts +92 -92
  43. package/dist/schemas/agents.schemas.d.ts +1120 -0
  44. package/dist/schemas/agents.schemas.d.ts.map +1 -1
  45. package/dist/schemas/agents.schemas.js +181 -0
  46. package/dist/schemas/analytics.schemas.d.ts +56 -56
  47. package/dist/schemas/documents.schemas.d.ts +248 -48
  48. package/dist/schemas/documents.schemas.d.ts.map +1 -1
  49. package/dist/schemas/documents.schemas.js +38 -0
  50. package/dist/schemas/equipment.schemas.d.ts +30 -30
  51. package/dist/schemas/farm-status.schemas.d.ts +451 -0
  52. package/dist/schemas/farm-status.schemas.d.ts.map +1 -0
  53. package/dist/schemas/farm-status.schemas.js +44 -0
  54. package/dist/schemas/fertigation.schemas.d.ts +50 -50
  55. package/dist/schemas/field-monitoring.schemas.d.ts +42 -42
  56. package/dist/schemas/field-observations.schemas.d.ts +44 -44
  57. package/dist/schemas/finance.schemas.d.ts +1057 -0
  58. package/dist/schemas/finance.schemas.d.ts.map +1 -1
  59. package/dist/schemas/finance.schemas.js +170 -0
  60. package/dist/schemas/irrigation.schemas.d.ts +8 -8
  61. package/dist/schemas/measurements.schemas.d.ts +21 -8
  62. package/dist/schemas/measurements.schemas.d.ts.map +1 -1
  63. package/dist/schemas/measurements.schemas.js +13 -6
  64. package/dist/schemas/monitoring-visualization.schemas.d.ts +43 -36
  65. package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
  66. package/dist/schemas/monitoring-visualization.schemas.js +24 -16
  67. package/dist/schemas/pest-disease-risk.schemas.d.ts +18 -18
  68. package/dist/schemas/prescription-maps.schemas.d.ts +41 -18
  69. package/dist/schemas/prescription-maps.schemas.d.ts.map +1 -1
  70. package/dist/schemas/prescription-maps.schemas.js +8 -0
  71. package/dist/schemas/recommendations.schemas.d.ts +2 -2
  72. package/dist/schemas/soil-tests.schemas.d.ts +28 -28
  73. package/dist/schemas/subscriptions.schemas.d.ts +22 -22
  74. package/dist/schemas/weather.schemas.d.ts +789 -112
  75. package/dist/schemas/weather.schemas.d.ts.map +1 -1
  76. package/dist/schemas/weather.schemas.js +37 -0
  77. package/dist/schemas/yield-prediction.schemas.d.ts +12 -12
  78. package/package.json +1 -1
@@ -85,6 +85,7 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
85
85
  documentUrl: string | null;
86
86
  createdBy: string | null;
87
87
  fieldName?: string | undefined;
88
+ recommendations?: string | null | undefined;
88
89
  recommendedFertilizers?: {
89
90
  inventoryItemId: string;
90
91
  unit: string;
@@ -92,7 +93,6 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
92
93
  reason: string;
93
94
  estimatedCost?: number | undefined;
94
95
  }[] | undefined;
95
- recommendations?: string | null | undefined;
96
96
  }, {
97
97
  createdAt: string;
98
98
  updatedAt: string;
@@ -114,6 +114,7 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
114
114
  documentUrl: string | null;
115
115
  createdBy: string | null;
116
116
  fieldName?: string | undefined;
117
+ recommendations?: string | null | undefined;
117
118
  recommendedFertilizers?: {
118
119
  inventoryItemId: string;
119
120
  unit: string;
@@ -121,7 +122,6 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
121
122
  reason: string;
122
123
  estimatedCost?: number | undefined;
123
124
  }[] | undefined;
124
- recommendations?: string | null | undefined;
125
125
  }>;
126
126
  export declare const createSoilTestAttributesSchema: z.ZodObject<{
127
127
  fieldId: z.ZodString;
@@ -488,6 +488,7 @@ export declare const soilTestResourceSchema: z.ZodObject<{
488
488
  documentUrl: string | null;
489
489
  createdBy: string | null;
490
490
  fieldName?: string | undefined;
491
+ recommendations?: string | null | undefined;
491
492
  recommendedFertilizers?: {
492
493
  inventoryItemId: string;
493
494
  unit: string;
@@ -495,7 +496,6 @@ export declare const soilTestResourceSchema: z.ZodObject<{
495
496
  reason: string;
496
497
  estimatedCost?: number | undefined;
497
498
  }[] | undefined;
498
- recommendations?: string | null | undefined;
499
499
  }, {
500
500
  createdAt: string;
501
501
  updatedAt: string;
@@ -517,6 +517,7 @@ export declare const soilTestResourceSchema: z.ZodObject<{
517
517
  documentUrl: string | null;
518
518
  createdBy: string | null;
519
519
  fieldName?: string | undefined;
520
+ recommendations?: string | null | undefined;
520
521
  recommendedFertilizers?: {
521
522
  inventoryItemId: string;
522
523
  unit: string;
@@ -524,7 +525,6 @@ export declare const soilTestResourceSchema: z.ZodObject<{
524
525
  reason: string;
525
526
  estimatedCost?: number | undefined;
526
527
  }[] | undefined;
527
- recommendations?: string | null | undefined;
528
528
  }>;
529
529
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
530
530
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -553,6 +553,7 @@ export declare const soilTestResourceSchema: z.ZodObject<{
553
553
  documentUrl: string | null;
554
554
  createdBy: string | null;
555
555
  fieldName?: string | undefined;
556
+ recommendations?: string | null | undefined;
556
557
  recommendedFertilizers?: {
557
558
  inventoryItemId: string;
558
559
  unit: string;
@@ -560,7 +561,6 @@ export declare const soilTestResourceSchema: z.ZodObject<{
560
561
  reason: string;
561
562
  estimatedCost?: number | undefined;
562
563
  }[] | undefined;
563
- recommendations?: string | null | undefined;
564
564
  };
565
565
  relationships?: Record<string, unknown> | undefined;
566
566
  links?: Record<string, string> | undefined;
@@ -589,6 +589,7 @@ export declare const soilTestResourceSchema: z.ZodObject<{
589
589
  documentUrl: string | null;
590
590
  createdBy: string | null;
591
591
  fieldName?: string | undefined;
592
+ recommendations?: string | null | undefined;
592
593
  recommendedFertilizers?: {
593
594
  inventoryItemId: string;
594
595
  unit: string;
@@ -596,7 +597,6 @@ export declare const soilTestResourceSchema: z.ZodObject<{
596
597
  reason: string;
597
598
  estimatedCost?: number | undefined;
598
599
  }[] | undefined;
599
- recommendations?: string | null | undefined;
600
600
  };
601
601
  relationships?: Record<string, unknown> | undefined;
602
602
  links?: Record<string, string> | undefined;
@@ -668,6 +668,7 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
668
668
  documentUrl: string | null;
669
669
  createdBy: string | null;
670
670
  fieldName?: string | undefined;
671
+ recommendations?: string | null | undefined;
671
672
  recommendedFertilizers?: {
672
673
  inventoryItemId: string;
673
674
  unit: string;
@@ -675,7 +676,6 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
675
676
  reason: string;
676
677
  estimatedCost?: number | undefined;
677
678
  }[] | undefined;
678
- recommendations?: string | null | undefined;
679
679
  }, {
680
680
  createdAt: string;
681
681
  updatedAt: string;
@@ -697,6 +697,7 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
697
697
  documentUrl: string | null;
698
698
  createdBy: string | null;
699
699
  fieldName?: string | undefined;
700
+ recommendations?: string | null | undefined;
700
701
  recommendedFertilizers?: {
701
702
  inventoryItemId: string;
702
703
  unit: string;
@@ -704,7 +705,6 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
704
705
  reason: string;
705
706
  estimatedCost?: number | undefined;
706
707
  }[] | undefined;
707
- recommendations?: string | null | undefined;
708
708
  }>;
709
709
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
710
710
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -791,6 +791,7 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
791
791
  documentUrl: string | null;
792
792
  createdBy: string | null;
793
793
  fieldName?: string | undefined;
794
+ recommendations?: string | null | undefined;
794
795
  recommendedFertilizers?: {
795
796
  inventoryItemId: string;
796
797
  unit: string;
@@ -798,7 +799,6 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
798
799
  reason: string;
799
800
  estimatedCost?: number | undefined;
800
801
  }[] | undefined;
801
- recommendations?: string | null | undefined;
802
802
  };
803
803
  relationships?: {
804
804
  field?: {
@@ -838,6 +838,7 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
838
838
  documentUrl: string | null;
839
839
  createdBy: string | null;
840
840
  fieldName?: string | undefined;
841
+ recommendations?: string | null | undefined;
841
842
  recommendedFertilizers?: {
842
843
  inventoryItemId: string;
843
844
  unit: string;
@@ -845,7 +846,6 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
845
846
  reason: string;
846
847
  estimatedCost?: number | undefined;
847
848
  }[] | undefined;
848
- recommendations?: string | null | undefined;
849
849
  };
850
850
  relationships?: {
851
851
  field?: {
@@ -929,6 +929,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
929
929
  documentUrl: string | null;
930
930
  createdBy: string | null;
931
931
  fieldName?: string | undefined;
932
+ recommendations?: string | null | undefined;
932
933
  recommendedFertilizers?: {
933
934
  inventoryItemId: string;
934
935
  unit: string;
@@ -936,7 +937,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
936
937
  reason: string;
937
938
  estimatedCost?: number | undefined;
938
939
  }[] | undefined;
939
- recommendations?: string | null | undefined;
940
940
  }, {
941
941
  createdAt: string;
942
942
  updatedAt: string;
@@ -958,6 +958,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
958
958
  documentUrl: string | null;
959
959
  createdBy: string | null;
960
960
  fieldName?: string | undefined;
961
+ recommendations?: string | null | undefined;
961
962
  recommendedFertilizers?: {
962
963
  inventoryItemId: string;
963
964
  unit: string;
@@ -965,7 +966,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
965
966
  reason: string;
966
967
  estimatedCost?: number | undefined;
967
968
  }[] | undefined;
968
- recommendations?: string | null | undefined;
969
969
  }>;
970
970
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
971
971
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -994,6 +994,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
994
994
  documentUrl: string | null;
995
995
  createdBy: string | null;
996
996
  fieldName?: string | undefined;
997
+ recommendations?: string | null | undefined;
997
998
  recommendedFertilizers?: {
998
999
  inventoryItemId: string;
999
1000
  unit: string;
@@ -1001,7 +1002,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1001
1002
  reason: string;
1002
1003
  estimatedCost?: number | undefined;
1003
1004
  }[] | undefined;
1004
- recommendations?: string | null | undefined;
1005
1005
  };
1006
1006
  relationships?: Record<string, unknown> | undefined;
1007
1007
  links?: Record<string, string> | undefined;
@@ -1030,6 +1030,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1030
1030
  documentUrl: string | null;
1031
1031
  createdBy: string | null;
1032
1032
  fieldName?: string | undefined;
1033
+ recommendations?: string | null | undefined;
1033
1034
  recommendedFertilizers?: {
1034
1035
  inventoryItemId: string;
1035
1036
  unit: string;
@@ -1037,7 +1038,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1037
1038
  reason: string;
1038
1039
  estimatedCost?: number | undefined;
1039
1040
  }[] | undefined;
1040
- recommendations?: string | null | undefined;
1041
1041
  };
1042
1042
  relationships?: Record<string, unknown> | undefined;
1043
1043
  links?: Record<string, string> | undefined;
@@ -1092,6 +1092,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1092
1092
  documentUrl: string | null;
1093
1093
  createdBy: string | null;
1094
1094
  fieldName?: string | undefined;
1095
+ recommendations?: string | null | undefined;
1095
1096
  recommendedFertilizers?: {
1096
1097
  inventoryItemId: string;
1097
1098
  unit: string;
@@ -1099,7 +1100,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1099
1100
  reason: string;
1100
1101
  estimatedCost?: number | undefined;
1101
1102
  }[] | undefined;
1102
- recommendations?: string | null | undefined;
1103
1103
  };
1104
1104
  relationships?: Record<string, unknown> | undefined;
1105
1105
  links?: Record<string, string> | undefined;
@@ -1140,6 +1140,7 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1140
1140
  documentUrl: string | null;
1141
1141
  createdBy: string | null;
1142
1142
  fieldName?: string | undefined;
1143
+ recommendations?: string | null | undefined;
1143
1144
  recommendedFertilizers?: {
1144
1145
  inventoryItemId: string;
1145
1146
  unit: string;
@@ -1147,7 +1148,6 @@ export declare const soilTestResponseSchema: z.ZodObject<{
1147
1148
  reason: string;
1148
1149
  estimatedCost?: number | undefined;
1149
1150
  }[] | undefined;
1150
- recommendations?: string | null | undefined;
1151
1151
  };
1152
1152
  relationships?: Record<string, unknown> | undefined;
1153
1153
  links?: Record<string, string> | undefined;
@@ -1231,6 +1231,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1231
1231
  documentUrl: string | null;
1232
1232
  createdBy: string | null;
1233
1233
  fieldName?: string | undefined;
1234
+ recommendations?: string | null | undefined;
1234
1235
  recommendedFertilizers?: {
1235
1236
  inventoryItemId: string;
1236
1237
  unit: string;
@@ -1238,7 +1239,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1238
1239
  reason: string;
1239
1240
  estimatedCost?: number | undefined;
1240
1241
  }[] | undefined;
1241
- recommendations?: string | null | undefined;
1242
1242
  }, {
1243
1243
  createdAt: string;
1244
1244
  updatedAt: string;
@@ -1260,6 +1260,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1260
1260
  documentUrl: string | null;
1261
1261
  createdBy: string | null;
1262
1262
  fieldName?: string | undefined;
1263
+ recommendations?: string | null | undefined;
1263
1264
  recommendedFertilizers?: {
1264
1265
  inventoryItemId: string;
1265
1266
  unit: string;
@@ -1267,7 +1268,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1267
1268
  reason: string;
1268
1269
  estimatedCost?: number | undefined;
1269
1270
  }[] | undefined;
1270
- recommendations?: string | null | undefined;
1271
1271
  }>;
1272
1272
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1273
1273
  meta: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -1354,6 +1354,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1354
1354
  documentUrl: string | null;
1355
1355
  createdBy: string | null;
1356
1356
  fieldName?: string | undefined;
1357
+ recommendations?: string | null | undefined;
1357
1358
  recommendedFertilizers?: {
1358
1359
  inventoryItemId: string;
1359
1360
  unit: string;
@@ -1361,7 +1362,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1361
1362
  reason: string;
1362
1363
  estimatedCost?: number | undefined;
1363
1364
  }[] | undefined;
1364
- recommendations?: string | null | undefined;
1365
1365
  };
1366
1366
  relationships?: {
1367
1367
  field?: {
@@ -1401,6 +1401,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1401
1401
  documentUrl: string | null;
1402
1402
  createdBy: string | null;
1403
1403
  fieldName?: string | undefined;
1404
+ recommendations?: string | null | undefined;
1404
1405
  recommendedFertilizers?: {
1405
1406
  inventoryItemId: string;
1406
1407
  unit: string;
@@ -1408,7 +1409,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1408
1409
  reason: string;
1409
1410
  estimatedCost?: number | undefined;
1410
1411
  }[] | undefined;
1411
- recommendations?: string | null | undefined;
1412
1412
  };
1413
1413
  relationships?: {
1414
1414
  field?: {
@@ -1474,6 +1474,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1474
1474
  documentUrl: string | null;
1475
1475
  createdBy: string | null;
1476
1476
  fieldName?: string | undefined;
1477
+ recommendations?: string | null | undefined;
1477
1478
  recommendedFertilizers?: {
1478
1479
  inventoryItemId: string;
1479
1480
  unit: string;
@@ -1481,7 +1482,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1481
1482
  reason: string;
1482
1483
  estimatedCost?: number | undefined;
1483
1484
  }[] | undefined;
1484
- recommendations?: string | null | undefined;
1485
1485
  };
1486
1486
  relationships?: {
1487
1487
  field?: {
@@ -1533,6 +1533,7 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1533
1533
  documentUrl: string | null;
1534
1534
  createdBy: string | null;
1535
1535
  fieldName?: string | undefined;
1536
+ recommendations?: string | null | undefined;
1536
1537
  recommendedFertilizers?: {
1537
1538
  inventoryItemId: string;
1538
1539
  unit: string;
@@ -1540,7 +1541,6 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
1540
1541
  reason: string;
1541
1542
  estimatedCost?: number | undefined;
1542
1543
  }[] | undefined;
1543
- recommendations?: string | null | undefined;
1544
1544
  };
1545
1545
  relationships?: {
1546
1546
  field?: {
@@ -1635,6 +1635,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1635
1635
  documentUrl: string | null;
1636
1636
  createdBy: string | null;
1637
1637
  fieldName?: string | undefined;
1638
+ recommendations?: string | null | undefined;
1638
1639
  recommendedFertilizers?: {
1639
1640
  inventoryItemId: string;
1640
1641
  unit: string;
@@ -1642,7 +1643,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1642
1643
  reason: string;
1643
1644
  estimatedCost?: number | undefined;
1644
1645
  }[] | undefined;
1645
- recommendations?: string | null | undefined;
1646
1646
  }, {
1647
1647
  createdAt: string;
1648
1648
  updatedAt: string;
@@ -1664,6 +1664,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1664
1664
  documentUrl: string | null;
1665
1665
  createdBy: string | null;
1666
1666
  fieldName?: string | undefined;
1667
+ recommendations?: string | null | undefined;
1667
1668
  recommendedFertilizers?: {
1668
1669
  inventoryItemId: string;
1669
1670
  unit: string;
@@ -1671,7 +1672,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1671
1672
  reason: string;
1672
1673
  estimatedCost?: number | undefined;
1673
1674
  }[] | undefined;
1674
- recommendations?: string | null | undefined;
1675
1675
  }>;
1676
1676
  relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1677
1677
  links: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
@@ -1700,6 +1700,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1700
1700
  documentUrl: string | null;
1701
1701
  createdBy: string | null;
1702
1702
  fieldName?: string | undefined;
1703
+ recommendations?: string | null | undefined;
1703
1704
  recommendedFertilizers?: {
1704
1705
  inventoryItemId: string;
1705
1706
  unit: string;
@@ -1707,7 +1708,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1707
1708
  reason: string;
1708
1709
  estimatedCost?: number | undefined;
1709
1710
  }[] | undefined;
1710
- recommendations?: string | null | undefined;
1711
1711
  };
1712
1712
  relationships?: Record<string, unknown> | undefined;
1713
1713
  links?: Record<string, string> | undefined;
@@ -1736,6 +1736,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1736
1736
  documentUrl: string | null;
1737
1737
  createdBy: string | null;
1738
1738
  fieldName?: string | undefined;
1739
+ recommendations?: string | null | undefined;
1739
1740
  recommendedFertilizers?: {
1740
1741
  inventoryItemId: string;
1741
1742
  unit: string;
@@ -1743,7 +1744,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1743
1744
  reason: string;
1744
1745
  estimatedCost?: number | undefined;
1745
1746
  }[] | undefined;
1746
- recommendations?: string | null | undefined;
1747
1747
  };
1748
1748
  relationships?: Record<string, unknown> | undefined;
1749
1749
  links?: Record<string, string> | undefined;
@@ -1798,6 +1798,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1798
1798
  documentUrl: string | null;
1799
1799
  createdBy: string | null;
1800
1800
  fieldName?: string | undefined;
1801
+ recommendations?: string | null | undefined;
1801
1802
  recommendedFertilizers?: {
1802
1803
  inventoryItemId: string;
1803
1804
  unit: string;
@@ -1805,7 +1806,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1805
1806
  reason: string;
1806
1807
  estimatedCost?: number | undefined;
1807
1808
  }[] | undefined;
1808
- recommendations?: string | null | undefined;
1809
1809
  };
1810
1810
  relationships?: Record<string, unknown> | undefined;
1811
1811
  links?: Record<string, string> | undefined;
@@ -1846,6 +1846,7 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1846
1846
  documentUrl: string | null;
1847
1847
  createdBy: string | null;
1848
1848
  fieldName?: string | undefined;
1849
+ recommendations?: string | null | undefined;
1849
1850
  recommendedFertilizers?: {
1850
1851
  inventoryItemId: string;
1851
1852
  unit: string;
@@ -1853,7 +1854,6 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
1853
1854
  reason: string;
1854
1855
  estimatedCost?: number | undefined;
1855
1856
  }[] | undefined;
1856
- recommendations?: string | null | undefined;
1857
1857
  };
1858
1858
  relationships?: Record<string, unknown> | undefined;
1859
1859
  links?: Record<string, string> | undefined;
@@ -620,16 +620,16 @@ export declare const usageTrackingAttributesSchema: z.ZodObject<{
620
620
  createdAt: string;
621
621
  updatedAt: string;
622
622
  count: number;
623
- resourceType: string;
624
623
  periodStart: string;
625
624
  periodEnd: string;
625
+ resourceType: string;
626
626
  }, {
627
627
  createdAt: string;
628
628
  updatedAt: string;
629
629
  count: number;
630
- resourceType: string;
631
630
  periodStart: string;
632
631
  periodEnd: string;
632
+ resourceType: string;
633
633
  }>;
634
634
  export declare const usageTrackingResourceSchema: z.ZodObject<{
635
635
  type: z.ZodLiteral<"usage-tracking">;
@@ -646,16 +646,16 @@ export declare const usageTrackingResourceSchema: z.ZodObject<{
646
646
  createdAt: string;
647
647
  updatedAt: string;
648
648
  count: number;
649
- resourceType: string;
650
649
  periodStart: string;
651
650
  periodEnd: string;
651
+ resourceType: string;
652
652
  }, {
653
653
  createdAt: string;
654
654
  updatedAt: string;
655
655
  count: number;
656
- resourceType: string;
657
656
  periodStart: string;
658
657
  periodEnd: string;
658
+ resourceType: string;
659
659
  }>;
660
660
  }, "strip", z.ZodTypeAny, {
661
661
  type: "usage-tracking";
@@ -664,9 +664,9 @@ export declare const usageTrackingResourceSchema: z.ZodObject<{
664
664
  createdAt: string;
665
665
  updatedAt: string;
666
666
  count: number;
667
- resourceType: string;
668
667
  periodStart: string;
669
668
  periodEnd: string;
669
+ resourceType: string;
670
670
  };
671
671
  }, {
672
672
  type: "usage-tracking";
@@ -675,9 +675,9 @@ export declare const usageTrackingResourceSchema: z.ZodObject<{
675
675
  createdAt: string;
676
676
  updatedAt: string;
677
677
  count: number;
678
- resourceType: string;
679
678
  periodStart: string;
680
679
  periodEnd: string;
680
+ resourceType: string;
681
681
  };
682
682
  }>;
683
683
  export declare const usageTrackingResponseSchema: z.ZodObject<{
@@ -696,16 +696,16 @@ export declare const usageTrackingResponseSchema: z.ZodObject<{
696
696
  createdAt: string;
697
697
  updatedAt: string;
698
698
  count: number;
699
- resourceType: string;
700
699
  periodStart: string;
701
700
  periodEnd: string;
701
+ resourceType: string;
702
702
  }, {
703
703
  createdAt: string;
704
704
  updatedAt: string;
705
705
  count: number;
706
- resourceType: string;
707
706
  periodStart: string;
708
707
  periodEnd: string;
708
+ resourceType: string;
709
709
  }>;
710
710
  }, "strip", z.ZodTypeAny, {
711
711
  type: "usage-tracking";
@@ -714,9 +714,9 @@ export declare const usageTrackingResponseSchema: z.ZodObject<{
714
714
  createdAt: string;
715
715
  updatedAt: string;
716
716
  count: number;
717
- resourceType: string;
718
717
  periodStart: string;
719
718
  periodEnd: string;
719
+ resourceType: string;
720
720
  };
721
721
  }, {
722
722
  type: "usage-tracking";
@@ -725,9 +725,9 @@ export declare const usageTrackingResponseSchema: z.ZodObject<{
725
725
  createdAt: string;
726
726
  updatedAt: string;
727
727
  count: number;
728
- resourceType: string;
729
728
  periodStart: string;
730
729
  periodEnd: string;
730
+ resourceType: string;
731
731
  };
732
732
  }>;
733
733
  included: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -762,9 +762,9 @@ export declare const usageTrackingResponseSchema: z.ZodObject<{
762
762
  createdAt: string;
763
763
  updatedAt: string;
764
764
  count: number;
765
- resourceType: string;
766
765
  periodStart: string;
767
766
  periodEnd: string;
767
+ resourceType: string;
768
768
  };
769
769
  };
770
770
  links?: Record<string, string> | undefined;
@@ -785,9 +785,9 @@ export declare const usageTrackingResponseSchema: z.ZodObject<{
785
785
  createdAt: string;
786
786
  updatedAt: string;
787
787
  count: number;
788
- resourceType: string;
789
788
  periodStart: string;
790
789
  periodEnd: string;
790
+ resourceType: string;
791
791
  };
792
792
  };
793
793
  links?: Record<string, string> | undefined;
@@ -817,16 +817,16 @@ export declare const usageTrackingListResponseSchema: z.ZodObject<{
817
817
  createdAt: string;
818
818
  updatedAt: string;
819
819
  count: number;
820
- resourceType: string;
821
820
  periodStart: string;
822
821
  periodEnd: string;
822
+ resourceType: string;
823
823
  }, {
824
824
  createdAt: string;
825
825
  updatedAt: string;
826
826
  count: number;
827
- resourceType: string;
828
827
  periodStart: string;
829
828
  periodEnd: string;
829
+ resourceType: string;
830
830
  }>;
831
831
  }, "strip", z.ZodTypeAny, {
832
832
  type: "usage-tracking";
@@ -835,9 +835,9 @@ export declare const usageTrackingListResponseSchema: z.ZodObject<{
835
835
  createdAt: string;
836
836
  updatedAt: string;
837
837
  count: number;
838
- resourceType: string;
839
838
  periodStart: string;
840
839
  periodEnd: string;
840
+ resourceType: string;
841
841
  };
842
842
  }, {
843
843
  type: "usage-tracking";
@@ -846,9 +846,9 @@ export declare const usageTrackingListResponseSchema: z.ZodObject<{
846
846
  createdAt: string;
847
847
  updatedAt: string;
848
848
  count: number;
849
- resourceType: string;
850
849
  periodStart: string;
851
850
  periodEnd: string;
851
+ resourceType: string;
852
852
  };
853
853
  }>, "many">;
854
854
  included: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -883,9 +883,9 @@ export declare const usageTrackingListResponseSchema: z.ZodObject<{
883
883
  createdAt: string;
884
884
  updatedAt: string;
885
885
  count: number;
886
- resourceType: string;
887
886
  periodStart: string;
888
887
  periodEnd: string;
888
+ resourceType: string;
889
889
  };
890
890
  }[];
891
891
  links?: Record<string, string> | undefined;
@@ -906,9 +906,9 @@ export declare const usageTrackingListResponseSchema: z.ZodObject<{
906
906
  createdAt: string;
907
907
  updatedAt: string;
908
908
  count: number;
909
- resourceType: string;
910
909
  periodStart: string;
911
910
  periodEnd: string;
911
+ resourceType: string;
912
912
  };
913
913
  }[];
914
914
  links?: Record<string, string> | undefined;
@@ -943,16 +943,16 @@ export declare const currentUsageResponseSchema: z.ZodObject<{
943
943
  periodEnd: z.ZodString;
944
944
  }, "strip", z.ZodTypeAny, {
945
945
  count: number;
946
- limit: number | null;
947
- resourceType: string;
948
946
  periodStart: string;
949
947
  periodEnd: string;
948
+ resourceType: string;
949
+ limit: number | null;
950
950
  }, {
951
951
  count: number;
952
- limit: number | null;
953
- resourceType: string;
954
952
  periodStart: string;
955
953
  periodEnd: string;
954
+ resourceType: string;
955
+ limit: number | null;
956
956
  }>;
957
957
  export declare const availablePlanSchema: z.ZodObject<{
958
958
  tier: z.ZodEnum<["FREE", "STARTER_PACK", "COOPERATIVE", "ENTERPRISE", "GOVERNMENT"]>;