@deepintel-ltd/farmpro-contracts 1.11.2 → 1.11.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.
- package/dist/routes/admin.routes.d.ts +3947 -187
- package/dist/routes/admin.routes.d.ts.map +1 -1
- package/dist/routes/admin.routes.js +106 -4
- package/dist/routes/agent-workflows.routes.d.ts +140 -140
- package/dist/routes/agents.routes.d.ts +6 -6
- package/dist/routes/analytics.routes.d.ts +6 -6
- package/dist/routes/auth.routes.d.ts +999 -0
- package/dist/routes/auth.routes.d.ts.map +1 -1
- package/dist/routes/auth.routes.js +30 -1
- package/dist/routes/crop-profile.routes.d.ts +18 -18
- package/dist/routes/documents.routes.d.ts +58 -58
- package/dist/routes/equipment.routes.d.ts +62 -62
- package/dist/routes/extension.routes.d.ts +6 -6
- package/dist/routes/farm-status.routes.d.ts +6 -6
- package/dist/routes/farms.routes.d.ts +35 -0
- package/dist/routes/farms.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +76 -76
- package/dist/routes/field-monitoring.routes.d.ts +34 -34
- package/dist/routes/field-observations.routes.d.ts +170 -170
- package/dist/routes/finance.routes.d.ts +6 -6
- package/dist/routes/geofences.routes.d.ts +8 -8
- package/dist/routes/irrigation.routes.d.ts +22 -22
- package/dist/routes/live-monitor.routes.d.ts +2 -2
- package/dist/routes/livestock-groups.routes.d.ts +30 -30
- package/dist/routes/livestock.routes.d.ts +24 -24
- package/dist/routes/monitoring-visualization.routes.d.ts +4 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +48 -48
- package/dist/routes/prescription-maps.routes.d.ts +2 -2
- package/dist/routes/seasonal-plans.routes.d.ts +6 -6
- package/dist/routes/soil-tests.routes.d.ts +30 -30
- package/dist/routes/subscriptions.routes.d.ts +2 -2
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/routes/team.routes.d.ts +24 -24
- package/dist/routes/users.routes.d.ts +14 -0
- package/dist/routes/users.routes.d.ts.map +1 -1
- package/dist/routes/weather.routes.d.ts +14 -14
- package/dist/routes/yield-prediction.routes.d.ts +48 -48
- package/dist/schemas/admin.schemas.d.ts +843 -81
- package/dist/schemas/admin.schemas.d.ts.map +1 -1
- package/dist/schemas/admin.schemas.js +58 -1
- package/dist/schemas/agent-workflows.schemas.d.ts +111 -111
- package/dist/schemas/agents.schemas.d.ts +6 -6
- package/dist/schemas/analytics.schemas.d.ts +12 -12
- package/dist/schemas/auth.schemas.d.ts +28 -0
- package/dist/schemas/auth.schemas.d.ts.map +1 -1
- package/dist/schemas/auth.schemas.js +8 -0
- package/dist/schemas/crop-profile.schemas.d.ts +26 -26
- package/dist/schemas/documents.schemas.d.ts +48 -48
- package/dist/schemas/equipment.schemas.d.ts +48 -48
- package/dist/schemas/extension.schemas.d.ts +12 -12
- package/dist/schemas/farm-status.schemas.d.ts +8 -8
- package/dist/schemas/farms.schemas.d.ts +48 -0
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/farms.schemas.js +3 -0
- package/dist/schemas/fertigation.schemas.d.ts +20 -20
- package/dist/schemas/field-monitoring.schemas.d.ts +26 -26
- package/dist/schemas/field-observations.schemas.d.ts +126 -126
- package/dist/schemas/finance.schemas.d.ts +6 -6
- package/dist/schemas/geofences.schemas.d.ts +6 -6
- package/dist/schemas/irrigation.schemas.d.ts +12 -12
- package/dist/schemas/live-monitor.schemas.d.ts +2 -2
- package/dist/schemas/livestock-groups.schemas.d.ts +18 -18
- package/dist/schemas/livestock.schemas.d.ts +18 -18
- package/dist/schemas/monitoring-visualization.schemas.d.ts +4 -4
- package/dist/schemas/pest-disease-risk.schemas.d.ts +32 -32
- package/dist/schemas/prescription-maps.schemas.d.ts +2 -2
- package/dist/schemas/seasonal-plans.schemas.d.ts +12 -12
- package/dist/schemas/soil-tests.schemas.d.ts +28 -28
- package/dist/schemas/team-payments.schemas.d.ts +24 -24
- package/dist/schemas/team.schemas.d.ts +18 -18
- package/dist/schemas/users.schemas.d.ts +15 -0
- package/dist/schemas/users.schemas.d.ts.map +1 -1
- package/dist/schemas/users.schemas.js +1 -0
- package/dist/schemas/weather.schemas.d.ts +28 -28
- package/dist/schemas/yield-prediction.schemas.d.ts +8 -8
- package/package.json +1 -1
|
@@ -84,8 +84,8 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
|
84
84
|
testCost: number | null;
|
|
85
85
|
documentUrl: string | null;
|
|
86
86
|
createdBy: string | null;
|
|
87
|
-
fieldName?: string | undefined;
|
|
88
87
|
recommendations?: string | null | undefined;
|
|
88
|
+
fieldName?: string | undefined;
|
|
89
89
|
recommendedFertilizers?: {
|
|
90
90
|
inventoryItemId: string;
|
|
91
91
|
unit: string;
|
|
@@ -113,8 +113,8 @@ export declare const soilTestAttributesSchema: z.ZodObject<{
|
|
|
113
113
|
testCost: number | null;
|
|
114
114
|
documentUrl: string | null;
|
|
115
115
|
createdBy: string | null;
|
|
116
|
-
fieldName?: string | undefined;
|
|
117
116
|
recommendations?: string | null | undefined;
|
|
117
|
+
fieldName?: string | undefined;
|
|
118
118
|
recommendedFertilizers?: {
|
|
119
119
|
inventoryItemId: string;
|
|
120
120
|
unit: string;
|
|
@@ -487,8 +487,8 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
487
487
|
testCost: number | null;
|
|
488
488
|
documentUrl: string | null;
|
|
489
489
|
createdBy: string | null;
|
|
490
|
-
fieldName?: string | undefined;
|
|
491
490
|
recommendations?: string | null | undefined;
|
|
491
|
+
fieldName?: string | undefined;
|
|
492
492
|
recommendedFertilizers?: {
|
|
493
493
|
inventoryItemId: string;
|
|
494
494
|
unit: string;
|
|
@@ -516,8 +516,8 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
516
516
|
testCost: number | null;
|
|
517
517
|
documentUrl: string | null;
|
|
518
518
|
createdBy: string | null;
|
|
519
|
-
fieldName?: string | undefined;
|
|
520
519
|
recommendations?: string | null | undefined;
|
|
520
|
+
fieldName?: string | undefined;
|
|
521
521
|
recommendedFertilizers?: {
|
|
522
522
|
inventoryItemId: string;
|
|
523
523
|
unit: string;
|
|
@@ -552,8 +552,8 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
552
552
|
testCost: number | null;
|
|
553
553
|
documentUrl: string | null;
|
|
554
554
|
createdBy: string | null;
|
|
555
|
-
fieldName?: string | undefined;
|
|
556
555
|
recommendations?: string | null | undefined;
|
|
556
|
+
fieldName?: string | undefined;
|
|
557
557
|
recommendedFertilizers?: {
|
|
558
558
|
inventoryItemId: string;
|
|
559
559
|
unit: string;
|
|
@@ -588,8 +588,8 @@ export declare const soilTestResourceSchema: z.ZodObject<{
|
|
|
588
588
|
testCost: number | null;
|
|
589
589
|
documentUrl: string | null;
|
|
590
590
|
createdBy: string | null;
|
|
591
|
-
fieldName?: string | undefined;
|
|
592
591
|
recommendations?: string | null | undefined;
|
|
592
|
+
fieldName?: string | undefined;
|
|
593
593
|
recommendedFertilizers?: {
|
|
594
594
|
inventoryItemId: string;
|
|
595
595
|
unit: string;
|
|
@@ -667,8 +667,8 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
667
667
|
testCost: number | null;
|
|
668
668
|
documentUrl: string | null;
|
|
669
669
|
createdBy: string | null;
|
|
670
|
-
fieldName?: string | undefined;
|
|
671
670
|
recommendations?: string | null | undefined;
|
|
671
|
+
fieldName?: string | undefined;
|
|
672
672
|
recommendedFertilizers?: {
|
|
673
673
|
inventoryItemId: string;
|
|
674
674
|
unit: string;
|
|
@@ -696,8 +696,8 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
696
696
|
testCost: number | null;
|
|
697
697
|
documentUrl: string | null;
|
|
698
698
|
createdBy: string | null;
|
|
699
|
-
fieldName?: string | undefined;
|
|
700
699
|
recommendations?: string | null | undefined;
|
|
700
|
+
fieldName?: string | undefined;
|
|
701
701
|
recommendedFertilizers?: {
|
|
702
702
|
inventoryItemId: string;
|
|
703
703
|
unit: string;
|
|
@@ -790,8 +790,8 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
790
790
|
testCost: number | null;
|
|
791
791
|
documentUrl: string | null;
|
|
792
792
|
createdBy: string | null;
|
|
793
|
-
fieldName?: string | undefined;
|
|
794
793
|
recommendations?: string | null | undefined;
|
|
794
|
+
fieldName?: string | undefined;
|
|
795
795
|
recommendedFertilizers?: {
|
|
796
796
|
inventoryItemId: string;
|
|
797
797
|
unit: string;
|
|
@@ -837,8 +837,8 @@ export declare const soilTestDetailResourceSchema: z.ZodObject<{
|
|
|
837
837
|
testCost: number | null;
|
|
838
838
|
documentUrl: string | null;
|
|
839
839
|
createdBy: string | null;
|
|
840
|
-
fieldName?: string | undefined;
|
|
841
840
|
recommendations?: string | null | undefined;
|
|
841
|
+
fieldName?: string | undefined;
|
|
842
842
|
recommendedFertilizers?: {
|
|
843
843
|
inventoryItemId: string;
|
|
844
844
|
unit: string;
|
|
@@ -928,8 +928,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
928
928
|
testCost: number | null;
|
|
929
929
|
documentUrl: string | null;
|
|
930
930
|
createdBy: string | null;
|
|
931
|
-
fieldName?: string | undefined;
|
|
932
931
|
recommendations?: string | null | undefined;
|
|
932
|
+
fieldName?: string | undefined;
|
|
933
933
|
recommendedFertilizers?: {
|
|
934
934
|
inventoryItemId: string;
|
|
935
935
|
unit: string;
|
|
@@ -957,8 +957,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
957
957
|
testCost: number | null;
|
|
958
958
|
documentUrl: string | null;
|
|
959
959
|
createdBy: string | null;
|
|
960
|
-
fieldName?: string | undefined;
|
|
961
960
|
recommendations?: string | null | undefined;
|
|
961
|
+
fieldName?: string | undefined;
|
|
962
962
|
recommendedFertilizers?: {
|
|
963
963
|
inventoryItemId: string;
|
|
964
964
|
unit: string;
|
|
@@ -993,8 +993,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
993
993
|
testCost: number | null;
|
|
994
994
|
documentUrl: string | null;
|
|
995
995
|
createdBy: string | null;
|
|
996
|
-
fieldName?: string | undefined;
|
|
997
996
|
recommendations?: string | null | undefined;
|
|
997
|
+
fieldName?: string | undefined;
|
|
998
998
|
recommendedFertilizers?: {
|
|
999
999
|
inventoryItemId: string;
|
|
1000
1000
|
unit: string;
|
|
@@ -1029,8 +1029,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1029
1029
|
testCost: number | null;
|
|
1030
1030
|
documentUrl: string | null;
|
|
1031
1031
|
createdBy: string | null;
|
|
1032
|
-
fieldName?: string | undefined;
|
|
1033
1032
|
recommendations?: string | null | undefined;
|
|
1033
|
+
fieldName?: string | undefined;
|
|
1034
1034
|
recommendedFertilizers?: {
|
|
1035
1035
|
inventoryItemId: string;
|
|
1036
1036
|
unit: string;
|
|
@@ -1091,8 +1091,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1091
1091
|
testCost: number | null;
|
|
1092
1092
|
documentUrl: string | null;
|
|
1093
1093
|
createdBy: string | null;
|
|
1094
|
-
fieldName?: string | undefined;
|
|
1095
1094
|
recommendations?: string | null | undefined;
|
|
1095
|
+
fieldName?: string | undefined;
|
|
1096
1096
|
recommendedFertilizers?: {
|
|
1097
1097
|
inventoryItemId: string;
|
|
1098
1098
|
unit: string;
|
|
@@ -1139,8 +1139,8 @@ export declare const soilTestResponseSchema: z.ZodObject<{
|
|
|
1139
1139
|
testCost: number | null;
|
|
1140
1140
|
documentUrl: string | null;
|
|
1141
1141
|
createdBy: string | null;
|
|
1142
|
-
fieldName?: string | undefined;
|
|
1143
1142
|
recommendations?: string | null | undefined;
|
|
1143
|
+
fieldName?: string | undefined;
|
|
1144
1144
|
recommendedFertilizers?: {
|
|
1145
1145
|
inventoryItemId: string;
|
|
1146
1146
|
unit: string;
|
|
@@ -1230,8 +1230,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1230
1230
|
testCost: number | null;
|
|
1231
1231
|
documentUrl: string | null;
|
|
1232
1232
|
createdBy: string | null;
|
|
1233
|
-
fieldName?: string | undefined;
|
|
1234
1233
|
recommendations?: string | null | undefined;
|
|
1234
|
+
fieldName?: string | undefined;
|
|
1235
1235
|
recommendedFertilizers?: {
|
|
1236
1236
|
inventoryItemId: string;
|
|
1237
1237
|
unit: string;
|
|
@@ -1259,8 +1259,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1259
1259
|
testCost: number | null;
|
|
1260
1260
|
documentUrl: string | null;
|
|
1261
1261
|
createdBy: string | null;
|
|
1262
|
-
fieldName?: string | undefined;
|
|
1263
1262
|
recommendations?: string | null | undefined;
|
|
1263
|
+
fieldName?: string | undefined;
|
|
1264
1264
|
recommendedFertilizers?: {
|
|
1265
1265
|
inventoryItemId: string;
|
|
1266
1266
|
unit: string;
|
|
@@ -1353,8 +1353,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1353
1353
|
testCost: number | null;
|
|
1354
1354
|
documentUrl: string | null;
|
|
1355
1355
|
createdBy: string | null;
|
|
1356
|
-
fieldName?: string | undefined;
|
|
1357
1356
|
recommendations?: string | null | undefined;
|
|
1357
|
+
fieldName?: string | undefined;
|
|
1358
1358
|
recommendedFertilizers?: {
|
|
1359
1359
|
inventoryItemId: string;
|
|
1360
1360
|
unit: string;
|
|
@@ -1400,8 +1400,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1400
1400
|
testCost: number | null;
|
|
1401
1401
|
documentUrl: string | null;
|
|
1402
1402
|
createdBy: string | null;
|
|
1403
|
-
fieldName?: string | undefined;
|
|
1404
1403
|
recommendations?: string | null | undefined;
|
|
1404
|
+
fieldName?: string | undefined;
|
|
1405
1405
|
recommendedFertilizers?: {
|
|
1406
1406
|
inventoryItemId: string;
|
|
1407
1407
|
unit: string;
|
|
@@ -1473,8 +1473,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1473
1473
|
testCost: number | null;
|
|
1474
1474
|
documentUrl: string | null;
|
|
1475
1475
|
createdBy: string | null;
|
|
1476
|
-
fieldName?: string | undefined;
|
|
1477
1476
|
recommendations?: string | null | undefined;
|
|
1477
|
+
fieldName?: string | undefined;
|
|
1478
1478
|
recommendedFertilizers?: {
|
|
1479
1479
|
inventoryItemId: string;
|
|
1480
1480
|
unit: string;
|
|
@@ -1532,8 +1532,8 @@ export declare const soilTestDetailResponseSchema: z.ZodObject<{
|
|
|
1532
1532
|
testCost: number | null;
|
|
1533
1533
|
documentUrl: string | null;
|
|
1534
1534
|
createdBy: string | null;
|
|
1535
|
-
fieldName?: string | undefined;
|
|
1536
1535
|
recommendations?: string | null | undefined;
|
|
1536
|
+
fieldName?: string | undefined;
|
|
1537
1537
|
recommendedFertilizers?: {
|
|
1538
1538
|
inventoryItemId: string;
|
|
1539
1539
|
unit: string;
|
|
@@ -1634,8 +1634,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1634
1634
|
testCost: number | null;
|
|
1635
1635
|
documentUrl: string | null;
|
|
1636
1636
|
createdBy: string | null;
|
|
1637
|
-
fieldName?: string | undefined;
|
|
1638
1637
|
recommendations?: string | null | undefined;
|
|
1638
|
+
fieldName?: string | undefined;
|
|
1639
1639
|
recommendedFertilizers?: {
|
|
1640
1640
|
inventoryItemId: string;
|
|
1641
1641
|
unit: string;
|
|
@@ -1663,8 +1663,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1663
1663
|
testCost: number | null;
|
|
1664
1664
|
documentUrl: string | null;
|
|
1665
1665
|
createdBy: string | null;
|
|
1666
|
-
fieldName?: string | undefined;
|
|
1667
1666
|
recommendations?: string | null | undefined;
|
|
1667
|
+
fieldName?: string | undefined;
|
|
1668
1668
|
recommendedFertilizers?: {
|
|
1669
1669
|
inventoryItemId: string;
|
|
1670
1670
|
unit: string;
|
|
@@ -1699,8 +1699,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1699
1699
|
testCost: number | null;
|
|
1700
1700
|
documentUrl: string | null;
|
|
1701
1701
|
createdBy: string | null;
|
|
1702
|
-
fieldName?: string | undefined;
|
|
1703
1702
|
recommendations?: string | null | undefined;
|
|
1703
|
+
fieldName?: string | undefined;
|
|
1704
1704
|
recommendedFertilizers?: {
|
|
1705
1705
|
inventoryItemId: string;
|
|
1706
1706
|
unit: string;
|
|
@@ -1735,8 +1735,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1735
1735
|
testCost: number | null;
|
|
1736
1736
|
documentUrl: string | null;
|
|
1737
1737
|
createdBy: string | null;
|
|
1738
|
-
fieldName?: string | undefined;
|
|
1739
1738
|
recommendations?: string | null | undefined;
|
|
1739
|
+
fieldName?: string | undefined;
|
|
1740
1740
|
recommendedFertilizers?: {
|
|
1741
1741
|
inventoryItemId: string;
|
|
1742
1742
|
unit: string;
|
|
@@ -1797,8 +1797,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1797
1797
|
testCost: number | null;
|
|
1798
1798
|
documentUrl: string | null;
|
|
1799
1799
|
createdBy: string | null;
|
|
1800
|
-
fieldName?: string | undefined;
|
|
1801
1800
|
recommendations?: string | null | undefined;
|
|
1801
|
+
fieldName?: string | undefined;
|
|
1802
1802
|
recommendedFertilizers?: {
|
|
1803
1803
|
inventoryItemId: string;
|
|
1804
1804
|
unit: string;
|
|
@@ -1845,8 +1845,8 @@ export declare const soilTestListResponseSchema: z.ZodObject<{
|
|
|
1845
1845
|
testCost: number | null;
|
|
1846
1846
|
documentUrl: string | null;
|
|
1847
1847
|
createdBy: string | null;
|
|
1848
|
-
fieldName?: string | undefined;
|
|
1849
1848
|
recommendations?: string | null | undefined;
|
|
1849
|
+
fieldName?: string | undefined;
|
|
1850
1850
|
recommendedFertilizers?: {
|
|
1851
1851
|
inventoryItemId: string;
|
|
1852
1852
|
unit: string;
|
|
@@ -1304,8 +1304,8 @@ export declare const vendorPaymentAttributesSchema: z.ZodObject<{
|
|
|
1304
1304
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1305
1305
|
createdAt: string;
|
|
1306
1306
|
updatedAt: string;
|
|
1307
|
-
currency: string;
|
|
1308
1307
|
farmId: string;
|
|
1308
|
+
currency: string;
|
|
1309
1309
|
fieldId: string | null;
|
|
1310
1310
|
category: string;
|
|
1311
1311
|
cropId: string | null;
|
|
@@ -1333,8 +1333,8 @@ export declare const vendorPaymentAttributesSchema: z.ZodObject<{
|
|
|
1333
1333
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1334
1334
|
createdAt: string;
|
|
1335
1335
|
updatedAt: string;
|
|
1336
|
-
currency: string;
|
|
1337
1336
|
farmId: string;
|
|
1337
|
+
currency: string;
|
|
1338
1338
|
fieldId: string | null;
|
|
1339
1339
|
category: string;
|
|
1340
1340
|
cropId: string | null;
|
|
@@ -1589,8 +1589,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
|
|
|
1589
1589
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1590
1590
|
createdAt: string;
|
|
1591
1591
|
updatedAt: string;
|
|
1592
|
-
currency: string;
|
|
1593
1592
|
farmId: string;
|
|
1593
|
+
currency: string;
|
|
1594
1594
|
fieldId: string | null;
|
|
1595
1595
|
category: string;
|
|
1596
1596
|
cropId: string | null;
|
|
@@ -1618,8 +1618,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
|
|
|
1618
1618
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1619
1619
|
createdAt: string;
|
|
1620
1620
|
updatedAt: string;
|
|
1621
|
-
currency: string;
|
|
1622
1621
|
farmId: string;
|
|
1622
|
+
currency: string;
|
|
1623
1623
|
fieldId: string | null;
|
|
1624
1624
|
category: string;
|
|
1625
1625
|
cropId: string | null;
|
|
@@ -1654,8 +1654,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
|
|
|
1654
1654
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1655
1655
|
createdAt: string;
|
|
1656
1656
|
updatedAt: string;
|
|
1657
|
-
currency: string;
|
|
1658
1657
|
farmId: string;
|
|
1658
|
+
currency: string;
|
|
1659
1659
|
fieldId: string | null;
|
|
1660
1660
|
category: string;
|
|
1661
1661
|
cropId: string | null;
|
|
@@ -1690,8 +1690,8 @@ export declare const vendorPaymentResourceSchema: z.ZodObject<{
|
|
|
1690
1690
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1691
1691
|
createdAt: string;
|
|
1692
1692
|
updatedAt: string;
|
|
1693
|
-
currency: string;
|
|
1694
1693
|
farmId: string;
|
|
1694
|
+
currency: string;
|
|
1695
1695
|
fieldId: string | null;
|
|
1696
1696
|
category: string;
|
|
1697
1697
|
cropId: string | null;
|
|
@@ -1758,8 +1758,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1758
1758
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1759
1759
|
createdAt: string;
|
|
1760
1760
|
updatedAt: string;
|
|
1761
|
-
currency: string;
|
|
1762
1761
|
farmId: string;
|
|
1762
|
+
currency: string;
|
|
1763
1763
|
fieldId: string | null;
|
|
1764
1764
|
category: string;
|
|
1765
1765
|
cropId: string | null;
|
|
@@ -1787,8 +1787,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1787
1787
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1788
1788
|
createdAt: string;
|
|
1789
1789
|
updatedAt: string;
|
|
1790
|
-
currency: string;
|
|
1791
1790
|
farmId: string;
|
|
1791
|
+
currency: string;
|
|
1792
1792
|
fieldId: string | null;
|
|
1793
1793
|
category: string;
|
|
1794
1794
|
cropId: string | null;
|
|
@@ -1823,8 +1823,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1823
1823
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1824
1824
|
createdAt: string;
|
|
1825
1825
|
updatedAt: string;
|
|
1826
|
-
currency: string;
|
|
1827
1826
|
farmId: string;
|
|
1827
|
+
currency: string;
|
|
1828
1828
|
fieldId: string | null;
|
|
1829
1829
|
category: string;
|
|
1830
1830
|
cropId: string | null;
|
|
@@ -1859,8 +1859,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1859
1859
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1860
1860
|
createdAt: string;
|
|
1861
1861
|
updatedAt: string;
|
|
1862
|
-
currency: string;
|
|
1863
1862
|
farmId: string;
|
|
1863
|
+
currency: string;
|
|
1864
1864
|
fieldId: string | null;
|
|
1865
1865
|
category: string;
|
|
1866
1866
|
cropId: string | null;
|
|
@@ -1921,8 +1921,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1921
1921
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1922
1922
|
createdAt: string;
|
|
1923
1923
|
updatedAt: string;
|
|
1924
|
-
currency: string;
|
|
1925
1924
|
farmId: string;
|
|
1925
|
+
currency: string;
|
|
1926
1926
|
fieldId: string | null;
|
|
1927
1927
|
category: string;
|
|
1928
1928
|
cropId: string | null;
|
|
@@ -1969,8 +1969,8 @@ export declare const vendorPaymentResponseSchema: z.ZodObject<{
|
|
|
1969
1969
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
1970
1970
|
createdAt: string;
|
|
1971
1971
|
updatedAt: string;
|
|
1972
|
-
currency: string;
|
|
1973
1972
|
farmId: string;
|
|
1973
|
+
currency: string;
|
|
1974
1974
|
fieldId: string | null;
|
|
1975
1975
|
category: string;
|
|
1976
1976
|
cropId: string | null;
|
|
@@ -2048,8 +2048,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2048
2048
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2049
2049
|
createdAt: string;
|
|
2050
2050
|
updatedAt: string;
|
|
2051
|
-
currency: string;
|
|
2052
2051
|
farmId: string;
|
|
2052
|
+
currency: string;
|
|
2053
2053
|
fieldId: string | null;
|
|
2054
2054
|
category: string;
|
|
2055
2055
|
cropId: string | null;
|
|
@@ -2077,8 +2077,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2077
2077
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2078
2078
|
createdAt: string;
|
|
2079
2079
|
updatedAt: string;
|
|
2080
|
-
currency: string;
|
|
2081
2080
|
farmId: string;
|
|
2081
|
+
currency: string;
|
|
2082
2082
|
fieldId: string | null;
|
|
2083
2083
|
category: string;
|
|
2084
2084
|
cropId: string | null;
|
|
@@ -2113,8 +2113,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2113
2113
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2114
2114
|
createdAt: string;
|
|
2115
2115
|
updatedAt: string;
|
|
2116
|
-
currency: string;
|
|
2117
2116
|
farmId: string;
|
|
2117
|
+
currency: string;
|
|
2118
2118
|
fieldId: string | null;
|
|
2119
2119
|
category: string;
|
|
2120
2120
|
cropId: string | null;
|
|
@@ -2149,8 +2149,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2149
2149
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2150
2150
|
createdAt: string;
|
|
2151
2151
|
updatedAt: string;
|
|
2152
|
-
currency: string;
|
|
2153
2152
|
farmId: string;
|
|
2153
|
+
currency: string;
|
|
2154
2154
|
fieldId: string | null;
|
|
2155
2155
|
category: string;
|
|
2156
2156
|
cropId: string | null;
|
|
@@ -2211,8 +2211,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2211
2211
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2212
2212
|
createdAt: string;
|
|
2213
2213
|
updatedAt: string;
|
|
2214
|
-
currency: string;
|
|
2215
2214
|
farmId: string;
|
|
2215
|
+
currency: string;
|
|
2216
2216
|
fieldId: string | null;
|
|
2217
2217
|
category: string;
|
|
2218
2218
|
cropId: string | null;
|
|
@@ -2259,8 +2259,8 @@ export declare const vendorPaymentListResponseSchema: z.ZodObject<{
|
|
|
2259
2259
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2260
2260
|
createdAt: string;
|
|
2261
2261
|
updatedAt: string;
|
|
2262
|
-
currency: string;
|
|
2263
2262
|
farmId: string;
|
|
2263
|
+
currency: string;
|
|
2264
2264
|
fieldId: string | null;
|
|
2265
2265
|
category: string;
|
|
2266
2266
|
cropId: string | null;
|
|
@@ -2338,8 +2338,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2338
2338
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2339
2339
|
createdAt: string;
|
|
2340
2340
|
updatedAt: string;
|
|
2341
|
-
currency: string;
|
|
2342
2341
|
farmId: string;
|
|
2342
|
+
currency: string;
|
|
2343
2343
|
fieldId: string | null;
|
|
2344
2344
|
category: string;
|
|
2345
2345
|
cropId: string | null;
|
|
@@ -2367,8 +2367,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2367
2367
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2368
2368
|
createdAt: string;
|
|
2369
2369
|
updatedAt: string;
|
|
2370
|
-
currency: string;
|
|
2371
2370
|
farmId: string;
|
|
2371
|
+
currency: string;
|
|
2372
2372
|
fieldId: string | null;
|
|
2373
2373
|
category: string;
|
|
2374
2374
|
cropId: string | null;
|
|
@@ -2403,8 +2403,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2403
2403
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2404
2404
|
createdAt: string;
|
|
2405
2405
|
updatedAt: string;
|
|
2406
|
-
currency: string;
|
|
2407
2406
|
farmId: string;
|
|
2407
|
+
currency: string;
|
|
2408
2408
|
fieldId: string | null;
|
|
2409
2409
|
category: string;
|
|
2410
2410
|
cropId: string | null;
|
|
@@ -2439,8 +2439,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2439
2439
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2440
2440
|
createdAt: string;
|
|
2441
2441
|
updatedAt: string;
|
|
2442
|
-
currency: string;
|
|
2443
2442
|
farmId: string;
|
|
2443
|
+
currency: string;
|
|
2444
2444
|
fieldId: string | null;
|
|
2445
2445
|
category: string;
|
|
2446
2446
|
cropId: string | null;
|
|
@@ -2501,8 +2501,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2501
2501
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2502
2502
|
createdAt: string;
|
|
2503
2503
|
updatedAt: string;
|
|
2504
|
-
currency: string;
|
|
2505
2504
|
farmId: string;
|
|
2505
|
+
currency: string;
|
|
2506
2506
|
fieldId: string | null;
|
|
2507
2507
|
category: string;
|
|
2508
2508
|
cropId: string | null;
|
|
@@ -2549,8 +2549,8 @@ export declare const paymentApprovalListResponseSchema: z.ZodObject<{
|
|
|
2549
2549
|
status: "DRAFT" | "PENDING_APPROVAL" | "PROCESSING" | "COMPLETED" | "FAILED" | "REJECTED";
|
|
2550
2550
|
createdAt: string;
|
|
2551
2551
|
updatedAt: string;
|
|
2552
|
-
currency: string;
|
|
2553
2552
|
farmId: string;
|
|
2553
|
+
currency: string;
|
|
2554
2554
|
fieldId: string | null;
|
|
2555
2555
|
category: string;
|
|
2556
2556
|
cropId: string | null;
|
|
@@ -25,8 +25,8 @@ export declare const teamMemberAttributesSchema: z.ZodObject<{
|
|
|
25
25
|
farmId: string;
|
|
26
26
|
userId: string | null;
|
|
27
27
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
28
|
-
tasksAssigned?: number | undefined;
|
|
29
28
|
tasksCompleted?: number | undefined;
|
|
29
|
+
tasksAssigned?: number | undefined;
|
|
30
30
|
tasksPending?: number | undefined;
|
|
31
31
|
}, {
|
|
32
32
|
email: string;
|
|
@@ -37,8 +37,8 @@ export declare const teamMemberAttributesSchema: z.ZodObject<{
|
|
|
37
37
|
farmId: string;
|
|
38
38
|
userId: string | null;
|
|
39
39
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
40
|
-
tasksAssigned?: number | undefined;
|
|
41
40
|
tasksCompleted?: number | undefined;
|
|
41
|
+
tasksAssigned?: number | undefined;
|
|
42
42
|
tasksPending?: number | undefined;
|
|
43
43
|
}>;
|
|
44
44
|
export declare const createTeamMemberAttributesSchema: z.ZodObject<{
|
|
@@ -179,8 +179,8 @@ export declare const teamMemberResourceSchema: z.ZodObject<{
|
|
|
179
179
|
farmId: string;
|
|
180
180
|
userId: string | null;
|
|
181
181
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
182
|
-
tasksAssigned?: number | undefined;
|
|
183
182
|
tasksCompleted?: number | undefined;
|
|
183
|
+
tasksAssigned?: number | undefined;
|
|
184
184
|
tasksPending?: number | undefined;
|
|
185
185
|
}, {
|
|
186
186
|
email: string;
|
|
@@ -191,8 +191,8 @@ export declare const teamMemberResourceSchema: z.ZodObject<{
|
|
|
191
191
|
farmId: string;
|
|
192
192
|
userId: string | null;
|
|
193
193
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
194
|
-
tasksAssigned?: number | undefined;
|
|
195
194
|
tasksCompleted?: number | undefined;
|
|
195
|
+
tasksAssigned?: number | undefined;
|
|
196
196
|
tasksPending?: number | undefined;
|
|
197
197
|
}>;
|
|
198
198
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -210,8 +210,8 @@ export declare const teamMemberResourceSchema: z.ZodObject<{
|
|
|
210
210
|
farmId: string;
|
|
211
211
|
userId: string | null;
|
|
212
212
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
213
|
-
tasksAssigned?: number | undefined;
|
|
214
213
|
tasksCompleted?: number | undefined;
|
|
214
|
+
tasksAssigned?: number | undefined;
|
|
215
215
|
tasksPending?: number | undefined;
|
|
216
216
|
};
|
|
217
217
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -229,8 +229,8 @@ export declare const teamMemberResourceSchema: z.ZodObject<{
|
|
|
229
229
|
farmId: string;
|
|
230
230
|
userId: string | null;
|
|
231
231
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
232
|
-
tasksAssigned?: number | undefined;
|
|
233
232
|
tasksCompleted?: number | undefined;
|
|
233
|
+
tasksAssigned?: number | undefined;
|
|
234
234
|
tasksPending?: number | undefined;
|
|
235
235
|
};
|
|
236
236
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -263,8 +263,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
263
263
|
farmId: string;
|
|
264
264
|
userId: string | null;
|
|
265
265
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
266
|
-
tasksAssigned?: number | undefined;
|
|
267
266
|
tasksCompleted?: number | undefined;
|
|
267
|
+
tasksAssigned?: number | undefined;
|
|
268
268
|
tasksPending?: number | undefined;
|
|
269
269
|
}, {
|
|
270
270
|
email: string;
|
|
@@ -275,8 +275,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
275
275
|
farmId: string;
|
|
276
276
|
userId: string | null;
|
|
277
277
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
278
|
-
tasksAssigned?: number | undefined;
|
|
279
278
|
tasksCompleted?: number | undefined;
|
|
279
|
+
tasksAssigned?: number | undefined;
|
|
280
280
|
tasksPending?: number | undefined;
|
|
281
281
|
}>;
|
|
282
282
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -294,8 +294,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
294
294
|
farmId: string;
|
|
295
295
|
userId: string | null;
|
|
296
296
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
297
|
-
tasksAssigned?: number | undefined;
|
|
298
297
|
tasksCompleted?: number | undefined;
|
|
298
|
+
tasksAssigned?: number | undefined;
|
|
299
299
|
tasksPending?: number | undefined;
|
|
300
300
|
};
|
|
301
301
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -313,8 +313,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
313
313
|
farmId: string;
|
|
314
314
|
userId: string | null;
|
|
315
315
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
316
|
-
tasksAssigned?: number | undefined;
|
|
317
316
|
tasksCompleted?: number | undefined;
|
|
317
|
+
tasksAssigned?: number | undefined;
|
|
318
318
|
tasksPending?: number | undefined;
|
|
319
319
|
};
|
|
320
320
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -358,8 +358,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
358
358
|
farmId: string;
|
|
359
359
|
userId: string | null;
|
|
360
360
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
361
|
-
tasksAssigned?: number | undefined;
|
|
362
361
|
tasksCompleted?: number | undefined;
|
|
362
|
+
tasksAssigned?: number | undefined;
|
|
363
363
|
tasksPending?: number | undefined;
|
|
364
364
|
};
|
|
365
365
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -389,8 +389,8 @@ export declare const teamMemberResponseSchema: z.ZodObject<{
|
|
|
389
389
|
farmId: string;
|
|
390
390
|
userId: string | null;
|
|
391
391
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
392
|
-
tasksAssigned?: number | undefined;
|
|
393
392
|
tasksCompleted?: number | undefined;
|
|
393
|
+
tasksAssigned?: number | undefined;
|
|
394
394
|
tasksPending?: number | undefined;
|
|
395
395
|
};
|
|
396
396
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -434,8 +434,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
434
434
|
farmId: string;
|
|
435
435
|
userId: string | null;
|
|
436
436
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
437
|
-
tasksAssigned?: number | undefined;
|
|
438
437
|
tasksCompleted?: number | undefined;
|
|
438
|
+
tasksAssigned?: number | undefined;
|
|
439
439
|
tasksPending?: number | undefined;
|
|
440
440
|
}, {
|
|
441
441
|
email: string;
|
|
@@ -446,8 +446,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
446
446
|
farmId: string;
|
|
447
447
|
userId: string | null;
|
|
448
448
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
449
|
-
tasksAssigned?: number | undefined;
|
|
450
449
|
tasksCompleted?: number | undefined;
|
|
450
|
+
tasksAssigned?: number | undefined;
|
|
451
451
|
tasksPending?: number | undefined;
|
|
452
452
|
}>;
|
|
453
453
|
relationships: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -465,8 +465,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
465
465
|
farmId: string;
|
|
466
466
|
userId: string | null;
|
|
467
467
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
468
|
-
tasksAssigned?: number | undefined;
|
|
469
468
|
tasksCompleted?: number | undefined;
|
|
469
|
+
tasksAssigned?: number | undefined;
|
|
470
470
|
tasksPending?: number | undefined;
|
|
471
471
|
};
|
|
472
472
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -484,8 +484,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
484
484
|
farmId: string;
|
|
485
485
|
userId: string | null;
|
|
486
486
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
487
|
-
tasksAssigned?: number | undefined;
|
|
488
487
|
tasksCompleted?: number | undefined;
|
|
488
|
+
tasksAssigned?: number | undefined;
|
|
489
489
|
tasksPending?: number | undefined;
|
|
490
490
|
};
|
|
491
491
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -529,8 +529,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
529
529
|
farmId: string;
|
|
530
530
|
userId: string | null;
|
|
531
531
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
532
|
-
tasksAssigned?: number | undefined;
|
|
533
532
|
tasksCompleted?: number | undefined;
|
|
533
|
+
tasksAssigned?: number | undefined;
|
|
534
534
|
tasksPending?: number | undefined;
|
|
535
535
|
};
|
|
536
536
|
relationships?: Record<string, unknown> | undefined;
|
|
@@ -560,8 +560,8 @@ export declare const teamMemberListResponseSchema: z.ZodObject<{
|
|
|
560
560
|
farmId: string;
|
|
561
561
|
userId: string | null;
|
|
562
562
|
role: "owner" | "farm-manager" | "agronomist" | "field-worker" | "accountant" | "other";
|
|
563
|
-
tasksAssigned?: number | undefined;
|
|
564
563
|
tasksCompleted?: number | undefined;
|
|
564
|
+
tasksAssigned?: number | undefined;
|
|
565
565
|
tasksPending?: number | undefined;
|
|
566
566
|
};
|
|
567
567
|
relationships?: Record<string, unknown> | undefined;
|