@deepintel-ltd/farmpro-contracts 1.7.13 → 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.
- package/dist/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/routes/agent-workflows.routes.d.ts +88 -88
- package/dist/routes/agents.routes.d.ts +3260 -0
- package/dist/routes/agents.routes.d.ts.map +1 -1
- package/dist/routes/agents.routes.js +130 -1
- package/dist/routes/analytics.routes.d.ts +20 -20
- package/dist/routes/documents.routes.d.ts +855 -58
- package/dist/routes/documents.routes.d.ts.map +1 -1
- package/dist/routes/documents.routes.js +43 -1
- package/dist/routes/equipment.routes.d.ts +38 -38
- package/dist/routes/farm-status.routes.d.ts +315 -0
- package/dist/routes/farm-status.routes.d.ts.map +1 -0
- package/dist/routes/farm-status.routes.js +26 -0
- package/dist/routes/fertigation.routes.d.ts +148 -148
- package/dist/routes/field-monitoring.routes.d.ts +52 -52
- package/dist/routes/field-observations.routes.d.ts +56 -56
- package/dist/routes/finance.routes.d.ts +3493 -0
- package/dist/routes/finance.routes.d.ts.map +1 -1
- package/dist/routes/finance.routes.js +158 -1
- package/dist/routes/geofences.routes.d.ts.map +1 -1
- package/dist/routes/index.d.ts +3 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +2 -0
- package/dist/routes/irrigation.routes.d.ts +6 -6
- package/dist/routes/measurements.routes.d.ts +13 -4
- package/dist/routes/measurements.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +43 -36
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.js +7 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +20 -20
- package/dist/routes/prescription-maps.routes.d.ts +570 -23
- package/dist/routes/prescription-maps.routes.d.ts.map +1 -1
- package/dist/routes/prescription-maps.routes.js +18 -1
- package/dist/routes/soil-tests.routes.d.ts +30 -30
- package/dist/routes/subscriptions.routes.d.ts +14 -14
- package/dist/routes/weather.routes.d.ts +545 -52
- package/dist/routes/weather.routes.d.ts.map +1 -1
- package/dist/routes/weather.routes.js +13 -1
- package/dist/routes/yield-prediction.routes.d.ts +30 -30
- package/dist/schemas/agent-workflows.schemas.d.ts +92 -92
- package/dist/schemas/agents.schemas.d.ts +1120 -0
- package/dist/schemas/agents.schemas.d.ts.map +1 -1
- package/dist/schemas/agents.schemas.js +181 -0
- package/dist/schemas/analytics.schemas.d.ts +56 -56
- package/dist/schemas/documents.schemas.d.ts +248 -48
- package/dist/schemas/documents.schemas.d.ts.map +1 -1
- package/dist/schemas/documents.schemas.js +38 -0
- package/dist/schemas/equipment.schemas.d.ts +30 -30
- package/dist/schemas/farm-status.schemas.d.ts +451 -0
- package/dist/schemas/farm-status.schemas.d.ts.map +1 -0
- package/dist/schemas/farm-status.schemas.js +44 -0
- package/dist/schemas/fertigation.schemas.d.ts +50 -50
- package/dist/schemas/field-monitoring.schemas.d.ts +42 -42
- package/dist/schemas/field-observations.schemas.d.ts +44 -44
- package/dist/schemas/finance.schemas.d.ts +1057 -0
- package/dist/schemas/finance.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.js +170 -0
- package/dist/schemas/irrigation.schemas.d.ts +8 -8
- package/dist/schemas/measurements.schemas.d.ts +21 -8
- package/dist/schemas/measurements.schemas.d.ts.map +1 -1
- package/dist/schemas/measurements.schemas.js +13 -6
- package/dist/schemas/monitoring-visualization.schemas.d.ts +50 -43
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +27 -17
- package/dist/schemas/pest-disease-risk.schemas.d.ts +18 -18
- package/dist/schemas/prescription-maps.schemas.d.ts +45 -22
- package/dist/schemas/prescription-maps.schemas.d.ts.map +1 -1
- package/dist/schemas/prescription-maps.schemas.js +9 -1
- package/dist/schemas/recommendations.schemas.d.ts +2 -2
- package/dist/schemas/soil-tests.schemas.d.ts +28 -28
- package/dist/schemas/subscriptions.schemas.d.ts +22 -22
- package/dist/schemas/weather.schemas.d.ts +789 -112
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/dist/schemas/weather.schemas.js +37 -0
- package/dist/schemas/yield-prediction.schemas.d.ts +12 -12
- package/package.json +1 -1
|
@@ -173,8 +173,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
173
173
|
action: string;
|
|
174
174
|
details: string;
|
|
175
175
|
timing: string;
|
|
176
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
177
176
|
confidence?: number | undefined;
|
|
177
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
178
178
|
materials?: {
|
|
179
179
|
name: string;
|
|
180
180
|
unit: string;
|
|
@@ -194,8 +194,8 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
194
194
|
action: string;
|
|
195
195
|
details: string;
|
|
196
196
|
timing: string;
|
|
197
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
198
197
|
confidence?: number | undefined;
|
|
198
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
199
199
|
materials?: {
|
|
200
200
|
name: string;
|
|
201
201
|
unit: string;
|
|
@@ -236,14 +236,13 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
236
236
|
} | null;
|
|
237
237
|
farmId: string;
|
|
238
238
|
fieldId: string | null;
|
|
239
|
-
estimatedCost: number | null;
|
|
240
239
|
recommendations: {
|
|
241
240
|
priority: number;
|
|
242
241
|
action: string;
|
|
243
242
|
details: string;
|
|
244
243
|
timing: string;
|
|
245
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
246
244
|
confidence?: number | undefined;
|
|
245
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
247
246
|
materials?: {
|
|
248
247
|
name: string;
|
|
249
248
|
unit: string;
|
|
@@ -259,6 +258,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
259
258
|
estimatedTime?: string | undefined;
|
|
260
259
|
riskLevel?: string | undefined;
|
|
261
260
|
}[] | null;
|
|
261
|
+
estimatedCost: number | null;
|
|
262
262
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
263
263
|
uploadedBy: string;
|
|
264
264
|
photoUrl: string;
|
|
@@ -319,14 +319,13 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
319
319
|
} | null;
|
|
320
320
|
farmId: string;
|
|
321
321
|
fieldId: string | null;
|
|
322
|
-
estimatedCost: number | null;
|
|
323
322
|
recommendations: {
|
|
324
323
|
priority: number;
|
|
325
324
|
action: string;
|
|
326
325
|
details: string;
|
|
327
326
|
timing: string;
|
|
328
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
329
327
|
confidence?: number | undefined;
|
|
328
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
330
329
|
materials?: {
|
|
331
330
|
name: string;
|
|
332
331
|
unit: string;
|
|
@@ -342,6 +341,7 @@ export declare const observationAttributesSchema: z.ZodObject<{
|
|
|
342
341
|
estimatedTime?: string | undefined;
|
|
343
342
|
riskLevel?: string | undefined;
|
|
344
343
|
}[] | null;
|
|
344
|
+
estimatedCost: number | null;
|
|
345
345
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
346
346
|
uploadedBy: string;
|
|
347
347
|
photoUrl: string;
|
|
@@ -622,8 +622,8 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
622
622
|
action: string;
|
|
623
623
|
details: string;
|
|
624
624
|
timing: string;
|
|
625
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
626
625
|
confidence?: number | undefined;
|
|
626
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
627
627
|
materials?: {
|
|
628
628
|
name: string;
|
|
629
629
|
unit: string;
|
|
@@ -643,8 +643,8 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
643
643
|
action: string;
|
|
644
644
|
details: string;
|
|
645
645
|
timing: string;
|
|
646
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
647
646
|
confidence?: number | undefined;
|
|
647
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
648
648
|
materials?: {
|
|
649
649
|
name: string;
|
|
650
650
|
unit: string;
|
|
@@ -685,14 +685,13 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
685
685
|
} | null;
|
|
686
686
|
farmId: string;
|
|
687
687
|
fieldId: string | null;
|
|
688
|
-
estimatedCost: number | null;
|
|
689
688
|
recommendations: {
|
|
690
689
|
priority: number;
|
|
691
690
|
action: string;
|
|
692
691
|
details: string;
|
|
693
692
|
timing: string;
|
|
694
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
695
693
|
confidence?: number | undefined;
|
|
694
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
696
695
|
materials?: {
|
|
697
696
|
name: string;
|
|
698
697
|
unit: string;
|
|
@@ -708,6 +707,7 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
708
707
|
estimatedTime?: string | undefined;
|
|
709
708
|
riskLevel?: string | undefined;
|
|
710
709
|
}[] | null;
|
|
710
|
+
estimatedCost: number | null;
|
|
711
711
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
712
712
|
uploadedBy: string;
|
|
713
713
|
photoUrl: string;
|
|
@@ -768,14 +768,13 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
768
768
|
} | null;
|
|
769
769
|
farmId: string;
|
|
770
770
|
fieldId: string | null;
|
|
771
|
-
estimatedCost: number | null;
|
|
772
771
|
recommendations: {
|
|
773
772
|
priority: number;
|
|
774
773
|
action: string;
|
|
775
774
|
details: string;
|
|
776
775
|
timing: string;
|
|
777
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
778
776
|
confidence?: number | undefined;
|
|
777
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
779
778
|
materials?: {
|
|
780
779
|
name: string;
|
|
781
780
|
unit: string;
|
|
@@ -791,6 +790,7 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
791
790
|
estimatedTime?: string | undefined;
|
|
792
791
|
riskLevel?: string | undefined;
|
|
793
792
|
}[] | null;
|
|
793
|
+
estimatedCost: number | null;
|
|
794
794
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
795
795
|
uploadedBy: string;
|
|
796
796
|
photoUrl: string;
|
|
@@ -858,14 +858,13 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
858
858
|
} | null;
|
|
859
859
|
farmId: string;
|
|
860
860
|
fieldId: string | null;
|
|
861
|
-
estimatedCost: number | null;
|
|
862
861
|
recommendations: {
|
|
863
862
|
priority: number;
|
|
864
863
|
action: string;
|
|
865
864
|
details: string;
|
|
866
865
|
timing: string;
|
|
867
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
868
866
|
confidence?: number | undefined;
|
|
867
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
869
868
|
materials?: {
|
|
870
869
|
name: string;
|
|
871
870
|
unit: string;
|
|
@@ -881,6 +880,7 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
881
880
|
estimatedTime?: string | undefined;
|
|
882
881
|
riskLevel?: string | undefined;
|
|
883
882
|
}[] | null;
|
|
883
|
+
estimatedCost: number | null;
|
|
884
884
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
885
885
|
uploadedBy: string;
|
|
886
886
|
photoUrl: string;
|
|
@@ -948,14 +948,13 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
948
948
|
} | null;
|
|
949
949
|
farmId: string;
|
|
950
950
|
fieldId: string | null;
|
|
951
|
-
estimatedCost: number | null;
|
|
952
951
|
recommendations: {
|
|
953
952
|
priority: number;
|
|
954
953
|
action: string;
|
|
955
954
|
details: string;
|
|
956
955
|
timing: string;
|
|
957
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
958
956
|
confidence?: number | undefined;
|
|
957
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
959
958
|
materials?: {
|
|
960
959
|
name: string;
|
|
961
960
|
unit: string;
|
|
@@ -971,6 +970,7 @@ export declare const observationResourceSchema: z.ZodObject<{
|
|
|
971
970
|
estimatedTime?: string | undefined;
|
|
972
971
|
riskLevel?: string | undefined;
|
|
973
972
|
}[] | null;
|
|
973
|
+
estimatedCost: number | null;
|
|
974
974
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
975
975
|
uploadedBy: string;
|
|
976
976
|
photoUrl: string;
|
|
@@ -1374,8 +1374,8 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1374
1374
|
action: string;
|
|
1375
1375
|
details: string;
|
|
1376
1376
|
timing: string;
|
|
1377
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1378
1377
|
confidence?: number | undefined;
|
|
1378
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1379
1379
|
materials?: {
|
|
1380
1380
|
name: string;
|
|
1381
1381
|
unit: string;
|
|
@@ -1395,8 +1395,8 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1395
1395
|
action: string;
|
|
1396
1396
|
details: string;
|
|
1397
1397
|
timing: string;
|
|
1398
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1399
1398
|
confidence?: number | undefined;
|
|
1399
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1400
1400
|
materials?: {
|
|
1401
1401
|
name: string;
|
|
1402
1402
|
unit: string;
|
|
@@ -1437,14 +1437,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1437
1437
|
} | null;
|
|
1438
1438
|
farmId: string;
|
|
1439
1439
|
fieldId: string | null;
|
|
1440
|
-
estimatedCost: number | null;
|
|
1441
1440
|
recommendations: {
|
|
1442
1441
|
priority: number;
|
|
1443
1442
|
action: string;
|
|
1444
1443
|
details: string;
|
|
1445
1444
|
timing: string;
|
|
1446
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1447
1445
|
confidence?: number | undefined;
|
|
1446
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1448
1447
|
materials?: {
|
|
1449
1448
|
name: string;
|
|
1450
1449
|
unit: string;
|
|
@@ -1460,6 +1459,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1460
1459
|
estimatedTime?: string | undefined;
|
|
1461
1460
|
riskLevel?: string | undefined;
|
|
1462
1461
|
}[] | null;
|
|
1462
|
+
estimatedCost: number | null;
|
|
1463
1463
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1464
1464
|
uploadedBy: string;
|
|
1465
1465
|
photoUrl: string;
|
|
@@ -1520,14 +1520,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1520
1520
|
} | null;
|
|
1521
1521
|
farmId: string;
|
|
1522
1522
|
fieldId: string | null;
|
|
1523
|
-
estimatedCost: number | null;
|
|
1524
1523
|
recommendations: {
|
|
1525
1524
|
priority: number;
|
|
1526
1525
|
action: string;
|
|
1527
1526
|
details: string;
|
|
1528
1527
|
timing: string;
|
|
1529
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1530
1528
|
confidence?: number | undefined;
|
|
1529
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1531
1530
|
materials?: {
|
|
1532
1531
|
name: string;
|
|
1533
1532
|
unit: string;
|
|
@@ -1543,6 +1542,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1543
1542
|
estimatedTime?: string | undefined;
|
|
1544
1543
|
riskLevel?: string | undefined;
|
|
1545
1544
|
}[] | null;
|
|
1545
|
+
estimatedCost: number | null;
|
|
1546
1546
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1547
1547
|
uploadedBy: string;
|
|
1548
1548
|
photoUrl: string;
|
|
@@ -1610,14 +1610,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1610
1610
|
} | null;
|
|
1611
1611
|
farmId: string;
|
|
1612
1612
|
fieldId: string | null;
|
|
1613
|
-
estimatedCost: number | null;
|
|
1614
1613
|
recommendations: {
|
|
1615
1614
|
priority: number;
|
|
1616
1615
|
action: string;
|
|
1617
1616
|
details: string;
|
|
1618
1617
|
timing: string;
|
|
1619
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1620
1618
|
confidence?: number | undefined;
|
|
1619
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1621
1620
|
materials?: {
|
|
1622
1621
|
name: string;
|
|
1623
1622
|
unit: string;
|
|
@@ -1633,6 +1632,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1633
1632
|
estimatedTime?: string | undefined;
|
|
1634
1633
|
riskLevel?: string | undefined;
|
|
1635
1634
|
}[] | null;
|
|
1635
|
+
estimatedCost: number | null;
|
|
1636
1636
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1637
1637
|
uploadedBy: string;
|
|
1638
1638
|
photoUrl: string;
|
|
@@ -1700,14 +1700,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1700
1700
|
} | null;
|
|
1701
1701
|
farmId: string;
|
|
1702
1702
|
fieldId: string | null;
|
|
1703
|
-
estimatedCost: number | null;
|
|
1704
1703
|
recommendations: {
|
|
1705
1704
|
priority: number;
|
|
1706
1705
|
action: string;
|
|
1707
1706
|
details: string;
|
|
1708
1707
|
timing: string;
|
|
1709
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1710
1708
|
confidence?: number | undefined;
|
|
1709
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1711
1710
|
materials?: {
|
|
1712
1711
|
name: string;
|
|
1713
1712
|
unit: string;
|
|
@@ -1723,6 +1722,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1723
1722
|
estimatedTime?: string | undefined;
|
|
1724
1723
|
riskLevel?: string | undefined;
|
|
1725
1724
|
}[] | null;
|
|
1725
|
+
estimatedCost: number | null;
|
|
1726
1726
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1727
1727
|
uploadedBy: string;
|
|
1728
1728
|
photoUrl: string;
|
|
@@ -1816,14 +1816,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1816
1816
|
} | null;
|
|
1817
1817
|
farmId: string;
|
|
1818
1818
|
fieldId: string | null;
|
|
1819
|
-
estimatedCost: number | null;
|
|
1820
1819
|
recommendations: {
|
|
1821
1820
|
priority: number;
|
|
1822
1821
|
action: string;
|
|
1823
1822
|
details: string;
|
|
1824
1823
|
timing: string;
|
|
1825
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1826
1824
|
confidence?: number | undefined;
|
|
1825
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1827
1826
|
materials?: {
|
|
1828
1827
|
name: string;
|
|
1829
1828
|
unit: string;
|
|
@@ -1839,6 +1838,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1839
1838
|
estimatedTime?: string | undefined;
|
|
1840
1839
|
riskLevel?: string | undefined;
|
|
1841
1840
|
}[] | null;
|
|
1841
|
+
estimatedCost: number | null;
|
|
1842
1842
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1843
1843
|
uploadedBy: string;
|
|
1844
1844
|
photoUrl: string;
|
|
@@ -1918,14 +1918,13 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1918
1918
|
} | null;
|
|
1919
1919
|
farmId: string;
|
|
1920
1920
|
fieldId: string | null;
|
|
1921
|
-
estimatedCost: number | null;
|
|
1922
1921
|
recommendations: {
|
|
1923
1922
|
priority: number;
|
|
1924
1923
|
action: string;
|
|
1925
1924
|
details: string;
|
|
1926
1925
|
timing: string;
|
|
1927
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1928
1926
|
confidence?: number | undefined;
|
|
1927
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1929
1928
|
materials?: {
|
|
1930
1929
|
name: string;
|
|
1931
1930
|
unit: string;
|
|
@@ -1941,6 +1940,7 @@ export declare const observationResponseSchema: z.ZodObject<{
|
|
|
1941
1940
|
estimatedTime?: string | undefined;
|
|
1942
1941
|
riskLevel?: string | undefined;
|
|
1943
1942
|
}[] | null;
|
|
1943
|
+
estimatedCost: number | null;
|
|
1944
1944
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
1945
1945
|
uploadedBy: string;
|
|
1946
1946
|
photoUrl: string;
|
|
@@ -2182,8 +2182,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2182
2182
|
action: string;
|
|
2183
2183
|
details: string;
|
|
2184
2184
|
timing: string;
|
|
2185
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2186
2185
|
confidence?: number | undefined;
|
|
2186
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2187
2187
|
materials?: {
|
|
2188
2188
|
name: string;
|
|
2189
2189
|
unit: string;
|
|
@@ -2203,8 +2203,8 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2203
2203
|
action: string;
|
|
2204
2204
|
details: string;
|
|
2205
2205
|
timing: string;
|
|
2206
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2207
2206
|
confidence?: number | undefined;
|
|
2207
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2208
2208
|
materials?: {
|
|
2209
2209
|
name: string;
|
|
2210
2210
|
unit: string;
|
|
@@ -2245,14 +2245,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2245
2245
|
} | null;
|
|
2246
2246
|
farmId: string;
|
|
2247
2247
|
fieldId: string | null;
|
|
2248
|
-
estimatedCost: number | null;
|
|
2249
2248
|
recommendations: {
|
|
2250
2249
|
priority: number;
|
|
2251
2250
|
action: string;
|
|
2252
2251
|
details: string;
|
|
2253
2252
|
timing: string;
|
|
2254
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2255
2253
|
confidence?: number | undefined;
|
|
2254
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2256
2255
|
materials?: {
|
|
2257
2256
|
name: string;
|
|
2258
2257
|
unit: string;
|
|
@@ -2268,6 +2267,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2268
2267
|
estimatedTime?: string | undefined;
|
|
2269
2268
|
riskLevel?: string | undefined;
|
|
2270
2269
|
}[] | null;
|
|
2270
|
+
estimatedCost: number | null;
|
|
2271
2271
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2272
2272
|
uploadedBy: string;
|
|
2273
2273
|
photoUrl: string;
|
|
@@ -2328,14 +2328,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2328
2328
|
} | null;
|
|
2329
2329
|
farmId: string;
|
|
2330
2330
|
fieldId: string | null;
|
|
2331
|
-
estimatedCost: number | null;
|
|
2332
2331
|
recommendations: {
|
|
2333
2332
|
priority: number;
|
|
2334
2333
|
action: string;
|
|
2335
2334
|
details: string;
|
|
2336
2335
|
timing: string;
|
|
2337
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2338
2336
|
confidence?: number | undefined;
|
|
2337
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2339
2338
|
materials?: {
|
|
2340
2339
|
name: string;
|
|
2341
2340
|
unit: string;
|
|
@@ -2351,6 +2350,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2351
2350
|
estimatedTime?: string | undefined;
|
|
2352
2351
|
riskLevel?: string | undefined;
|
|
2353
2352
|
}[] | null;
|
|
2353
|
+
estimatedCost: number | null;
|
|
2354
2354
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2355
2355
|
uploadedBy: string;
|
|
2356
2356
|
photoUrl: string;
|
|
@@ -2418,14 +2418,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2418
2418
|
} | null;
|
|
2419
2419
|
farmId: string;
|
|
2420
2420
|
fieldId: string | null;
|
|
2421
|
-
estimatedCost: number | null;
|
|
2422
2421
|
recommendations: {
|
|
2423
2422
|
priority: number;
|
|
2424
2423
|
action: string;
|
|
2425
2424
|
details: string;
|
|
2426
2425
|
timing: string;
|
|
2427
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2428
2426
|
confidence?: number | undefined;
|
|
2427
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2429
2428
|
materials?: {
|
|
2430
2429
|
name: string;
|
|
2431
2430
|
unit: string;
|
|
@@ -2441,6 +2440,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2441
2440
|
estimatedTime?: string | undefined;
|
|
2442
2441
|
riskLevel?: string | undefined;
|
|
2443
2442
|
}[] | null;
|
|
2443
|
+
estimatedCost: number | null;
|
|
2444
2444
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2445
2445
|
uploadedBy: string;
|
|
2446
2446
|
photoUrl: string;
|
|
@@ -2508,14 +2508,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2508
2508
|
} | null;
|
|
2509
2509
|
farmId: string;
|
|
2510
2510
|
fieldId: string | null;
|
|
2511
|
-
estimatedCost: number | null;
|
|
2512
2511
|
recommendations: {
|
|
2513
2512
|
priority: number;
|
|
2514
2513
|
action: string;
|
|
2515
2514
|
details: string;
|
|
2516
2515
|
timing: string;
|
|
2517
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2518
2516
|
confidence?: number | undefined;
|
|
2517
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2519
2518
|
materials?: {
|
|
2520
2519
|
name: string;
|
|
2521
2520
|
unit: string;
|
|
@@ -2531,6 +2530,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2531
2530
|
estimatedTime?: string | undefined;
|
|
2532
2531
|
riskLevel?: string | undefined;
|
|
2533
2532
|
}[] | null;
|
|
2533
|
+
estimatedCost: number | null;
|
|
2534
2534
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2535
2535
|
uploadedBy: string;
|
|
2536
2536
|
photoUrl: string;
|
|
@@ -2624,14 +2624,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2624
2624
|
} | null;
|
|
2625
2625
|
farmId: string;
|
|
2626
2626
|
fieldId: string | null;
|
|
2627
|
-
estimatedCost: number | null;
|
|
2628
2627
|
recommendations: {
|
|
2629
2628
|
priority: number;
|
|
2630
2629
|
action: string;
|
|
2631
2630
|
details: string;
|
|
2632
2631
|
timing: string;
|
|
2633
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2634
2632
|
confidence?: number | undefined;
|
|
2633
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2635
2634
|
materials?: {
|
|
2636
2635
|
name: string;
|
|
2637
2636
|
unit: string;
|
|
@@ -2647,6 +2646,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2647
2646
|
estimatedTime?: string | undefined;
|
|
2648
2647
|
riskLevel?: string | undefined;
|
|
2649
2648
|
}[] | null;
|
|
2649
|
+
estimatedCost: number | null;
|
|
2650
2650
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2651
2651
|
uploadedBy: string;
|
|
2652
2652
|
photoUrl: string;
|
|
@@ -2726,14 +2726,13 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2726
2726
|
} | null;
|
|
2727
2727
|
farmId: string;
|
|
2728
2728
|
fieldId: string | null;
|
|
2729
|
-
estimatedCost: number | null;
|
|
2730
2729
|
recommendations: {
|
|
2731
2730
|
priority: number;
|
|
2732
2731
|
action: string;
|
|
2733
2732
|
details: string;
|
|
2734
2733
|
timing: string;
|
|
2735
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2736
2734
|
confidence?: number | undefined;
|
|
2735
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2737
2736
|
materials?: {
|
|
2738
2737
|
name: string;
|
|
2739
2738
|
unit: string;
|
|
@@ -2749,6 +2748,7 @@ export declare const observationListResponseSchema: z.ZodObject<{
|
|
|
2749
2748
|
estimatedTime?: string | undefined;
|
|
2750
2749
|
riskLevel?: string | undefined;
|
|
2751
2750
|
}[] | null;
|
|
2751
|
+
estimatedCost: number | null;
|
|
2752
2752
|
severity: "critical" | "low" | "medium" | "high" | null;
|
|
2753
2753
|
uploadedBy: string;
|
|
2754
2754
|
photoUrl: string;
|