@deepintel-ltd/farmpro-contracts 1.16.10 → 1.16.12
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 +1036 -0
- package/dist/routes/admin.routes.d.ts.map +1 -1
- package/dist/routes/admin.routes.js +29 -1
- package/dist/routes/agent-workflows.routes.d.ts +246 -246
- package/dist/routes/agents.routes.d.ts +16 -16
- package/dist/routes/fertigation.routes.d.ts +336 -336
- package/dist/routes/field-monitoring.routes.d.ts +8 -8
- package/dist/routes/field-observations.routes.d.ts +56 -56
- package/dist/routes/fields.routes.d.ts +63 -63
- package/dist/routes/health.routes.d.ts +66 -0
- package/dist/routes/health.routes.d.ts.map +1 -1
- package/dist/routes/livestock-groups.routes.d.ts +8 -8
- package/dist/routes/livestock.routes.d.ts +50 -50
- package/dist/routes/payments.routes.d.ts +20 -20
- package/dist/routes/pest-disease-risk.routes.d.ts +4 -4
- package/dist/routes/soil-tests.routes.d.ts +40 -40
- package/dist/schemas/admin.schemas.d.ts +267 -0
- package/dist/schemas/admin.schemas.d.ts.map +1 -1
- package/dist/schemas/admin.schemas.js +38 -0
- package/dist/schemas/agent-workflows.schemas.d.ts +206 -206
- package/dist/schemas/agents.schemas.d.ts +16 -16
- package/dist/schemas/fertigation.schemas.d.ts +128 -128
- package/dist/schemas/field-monitoring.schemas.d.ts +8 -8
- package/dist/schemas/field-observations.schemas.d.ts +46 -46
- package/dist/schemas/fields.schemas.d.ts +59 -59
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +8 -1
- package/dist/schemas/health.schemas.d.ts +33 -0
- package/dist/schemas/health.schemas.d.ts.map +1 -1
- package/dist/schemas/health.schemas.js +1 -0
- package/dist/schemas/livestock.schemas.d.ts +50 -50
- package/dist/schemas/payments.schemas.d.ts +20 -20
- package/dist/schemas/pest-disease-risk.schemas.d.ts +2 -2
- package/dist/schemas/soil-tests.schemas.d.ts +42 -42
- package/package.json +1 -1
|
@@ -69,7 +69,7 @@ export declare const fieldsRouter: {
|
|
|
69
69
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
70
70
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
71
71
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
72
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
72
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
73
73
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
74
74
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
75
75
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -128,7 +128,7 @@ export declare const fieldsRouter: {
|
|
|
128
128
|
moisture: string | null;
|
|
129
129
|
soilType: string | null;
|
|
130
130
|
expectedHarvestDate: string | null;
|
|
131
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
131
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
132
132
|
standCountPerHa?: number | null | undefined;
|
|
133
133
|
targetStandPerHa?: number | null | undefined;
|
|
134
134
|
coverImage?: string | null | undefined;
|
|
@@ -162,7 +162,7 @@ export declare const fieldsRouter: {
|
|
|
162
162
|
moisture: string | null;
|
|
163
163
|
soilType: string | null;
|
|
164
164
|
expectedHarvestDate: string | null;
|
|
165
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
165
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
166
166
|
standCountPerHa?: number | null | undefined;
|
|
167
167
|
targetStandPerHa?: number | null | undefined;
|
|
168
168
|
coverImage?: string | null | undefined;
|
|
@@ -203,7 +203,7 @@ export declare const fieldsRouter: {
|
|
|
203
203
|
moisture: string | null;
|
|
204
204
|
soilType: string | null;
|
|
205
205
|
expectedHarvestDate: string | null;
|
|
206
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
206
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
207
207
|
standCountPerHa?: number | null | undefined;
|
|
208
208
|
targetStandPerHa?: number | null | undefined;
|
|
209
209
|
coverImage?: string | null | undefined;
|
|
@@ -244,7 +244,7 @@ export declare const fieldsRouter: {
|
|
|
244
244
|
moisture: string | null;
|
|
245
245
|
soilType: string | null;
|
|
246
246
|
expectedHarvestDate: string | null;
|
|
247
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
247
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
248
248
|
standCountPerHa?: number | null | undefined;
|
|
249
249
|
targetStandPerHa?: number | null | undefined;
|
|
250
250
|
coverImage?: string | null | undefined;
|
|
@@ -311,7 +311,7 @@ export declare const fieldsRouter: {
|
|
|
311
311
|
moisture: string | null;
|
|
312
312
|
soilType: string | null;
|
|
313
313
|
expectedHarvestDate: string | null;
|
|
314
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
314
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
315
315
|
standCountPerHa?: number | null | undefined;
|
|
316
316
|
targetStandPerHa?: number | null | undefined;
|
|
317
317
|
coverImage?: string | null | undefined;
|
|
@@ -364,7 +364,7 @@ export declare const fieldsRouter: {
|
|
|
364
364
|
moisture: string | null;
|
|
365
365
|
soilType: string | null;
|
|
366
366
|
expectedHarvestDate: string | null;
|
|
367
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
367
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
368
368
|
standCountPerHa?: number | null | undefined;
|
|
369
369
|
targetStandPerHa?: number | null | undefined;
|
|
370
370
|
coverImage?: string | null | undefined;
|
|
@@ -702,7 +702,7 @@ export declare const fieldsRouter: {
|
|
|
702
702
|
currentCrop: z.ZodOptional<z.ZodString>;
|
|
703
703
|
plantingDate: z.ZodOptional<z.ZodString>;
|
|
704
704
|
expectedHarvestDate: z.ZodOptional<z.ZodString>;
|
|
705
|
-
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
705
|
+
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
706
706
|
standCountPerHa: z.ZodOptional<z.ZodNumber>;
|
|
707
707
|
targetStandPerHa: z.ZodOptional<z.ZodNumber>;
|
|
708
708
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -718,7 +718,7 @@ export declare const fieldsRouter: {
|
|
|
718
718
|
moisture?: string | undefined;
|
|
719
719
|
soilType?: string | undefined;
|
|
720
720
|
expectedHarvestDate?: string | undefined;
|
|
721
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
721
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
722
722
|
standCountPerHa?: number | undefined;
|
|
723
723
|
targetStandPerHa?: number | undefined;
|
|
724
724
|
}, {
|
|
@@ -734,7 +734,7 @@ export declare const fieldsRouter: {
|
|
|
734
734
|
moisture?: string | undefined;
|
|
735
735
|
soilType?: string | undefined;
|
|
736
736
|
expectedHarvestDate?: string | undefined;
|
|
737
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
737
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
738
738
|
standCountPerHa?: number | undefined;
|
|
739
739
|
targetStandPerHa?: number | undefined;
|
|
740
740
|
}>;
|
|
@@ -791,7 +791,7 @@ export declare const fieldsRouter: {
|
|
|
791
791
|
moisture?: string | undefined;
|
|
792
792
|
soilType?: string | undefined;
|
|
793
793
|
expectedHarvestDate?: string | undefined;
|
|
794
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
794
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
795
795
|
standCountPerHa?: number | undefined;
|
|
796
796
|
targetStandPerHa?: number | undefined;
|
|
797
797
|
};
|
|
@@ -818,7 +818,7 @@ export declare const fieldsRouter: {
|
|
|
818
818
|
moisture?: string | undefined;
|
|
819
819
|
soilType?: string | undefined;
|
|
820
820
|
expectedHarvestDate?: string | undefined;
|
|
821
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
821
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
822
822
|
standCountPerHa?: number | undefined;
|
|
823
823
|
targetStandPerHa?: number | undefined;
|
|
824
824
|
};
|
|
@@ -847,7 +847,7 @@ export declare const fieldsRouter: {
|
|
|
847
847
|
moisture?: string | undefined;
|
|
848
848
|
soilType?: string | undefined;
|
|
849
849
|
expectedHarvestDate?: string | undefined;
|
|
850
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
850
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
851
851
|
standCountPerHa?: number | undefined;
|
|
852
852
|
targetStandPerHa?: number | undefined;
|
|
853
853
|
};
|
|
@@ -876,7 +876,7 @@ export declare const fieldsRouter: {
|
|
|
876
876
|
moisture?: string | undefined;
|
|
877
877
|
soilType?: string | undefined;
|
|
878
878
|
expectedHarvestDate?: string | undefined;
|
|
879
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
879
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
880
880
|
standCountPerHa?: number | undefined;
|
|
881
881
|
targetStandPerHa?: number | undefined;
|
|
882
882
|
};
|
|
@@ -917,7 +917,7 @@ export declare const fieldsRouter: {
|
|
|
917
917
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
918
918
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
919
919
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
920
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
920
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
921
921
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
922
922
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
923
923
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -976,7 +976,7 @@ export declare const fieldsRouter: {
|
|
|
976
976
|
moisture: string | null;
|
|
977
977
|
soilType: string | null;
|
|
978
978
|
expectedHarvestDate: string | null;
|
|
979
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
979
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
980
980
|
standCountPerHa?: number | null | undefined;
|
|
981
981
|
targetStandPerHa?: number | null | undefined;
|
|
982
982
|
coverImage?: string | null | undefined;
|
|
@@ -1010,7 +1010,7 @@ export declare const fieldsRouter: {
|
|
|
1010
1010
|
moisture: string | null;
|
|
1011
1011
|
soilType: string | null;
|
|
1012
1012
|
expectedHarvestDate: string | null;
|
|
1013
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1013
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1014
1014
|
standCountPerHa?: number | null | undefined;
|
|
1015
1015
|
targetStandPerHa?: number | null | undefined;
|
|
1016
1016
|
coverImage?: string | null | undefined;
|
|
@@ -1051,7 +1051,7 @@ export declare const fieldsRouter: {
|
|
|
1051
1051
|
moisture: string | null;
|
|
1052
1052
|
soilType: string | null;
|
|
1053
1053
|
expectedHarvestDate: string | null;
|
|
1054
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1054
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1055
1055
|
standCountPerHa?: number | null | undefined;
|
|
1056
1056
|
targetStandPerHa?: number | null | undefined;
|
|
1057
1057
|
coverImage?: string | null | undefined;
|
|
@@ -1092,7 +1092,7 @@ export declare const fieldsRouter: {
|
|
|
1092
1092
|
moisture: string | null;
|
|
1093
1093
|
soilType: string | null;
|
|
1094
1094
|
expectedHarvestDate: string | null;
|
|
1095
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1095
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1096
1096
|
standCountPerHa?: number | null | undefined;
|
|
1097
1097
|
targetStandPerHa?: number | null | undefined;
|
|
1098
1098
|
coverImage?: string | null | undefined;
|
|
@@ -1159,7 +1159,7 @@ export declare const fieldsRouter: {
|
|
|
1159
1159
|
moisture: string | null;
|
|
1160
1160
|
soilType: string | null;
|
|
1161
1161
|
expectedHarvestDate: string | null;
|
|
1162
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1162
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1163
1163
|
standCountPerHa?: number | null | undefined;
|
|
1164
1164
|
targetStandPerHa?: number | null | undefined;
|
|
1165
1165
|
coverImage?: string | null | undefined;
|
|
@@ -1212,7 +1212,7 @@ export declare const fieldsRouter: {
|
|
|
1212
1212
|
moisture: string | null;
|
|
1213
1213
|
soilType: string | null;
|
|
1214
1214
|
expectedHarvestDate: string | null;
|
|
1215
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1215
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1216
1216
|
standCountPerHa?: number | null | undefined;
|
|
1217
1217
|
targetStandPerHa?: number | null | undefined;
|
|
1218
1218
|
coverImage?: string | null | undefined;
|
|
@@ -1775,7 +1775,7 @@ export declare const fieldsRouter: {
|
|
|
1775
1775
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
1776
1776
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
1777
1777
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
1778
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
1778
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
1779
1779
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1780
1780
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1781
1781
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -1834,7 +1834,7 @@ export declare const fieldsRouter: {
|
|
|
1834
1834
|
moisture: string | null;
|
|
1835
1835
|
soilType: string | null;
|
|
1836
1836
|
expectedHarvestDate: string | null;
|
|
1837
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1837
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1838
1838
|
standCountPerHa?: number | null | undefined;
|
|
1839
1839
|
targetStandPerHa?: number | null | undefined;
|
|
1840
1840
|
coverImage?: string | null | undefined;
|
|
@@ -1868,7 +1868,7 @@ export declare const fieldsRouter: {
|
|
|
1868
1868
|
moisture: string | null;
|
|
1869
1869
|
soilType: string | null;
|
|
1870
1870
|
expectedHarvestDate: string | null;
|
|
1871
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
1871
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
1872
1872
|
standCountPerHa?: number | null | undefined;
|
|
1873
1873
|
targetStandPerHa?: number | null | undefined;
|
|
1874
1874
|
coverImage?: string | null | undefined;
|
|
@@ -2104,7 +2104,7 @@ export declare const fieldsRouter: {
|
|
|
2104
2104
|
moisture: string | null;
|
|
2105
2105
|
soilType: string | null;
|
|
2106
2106
|
expectedHarvestDate: string | null;
|
|
2107
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2107
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2108
2108
|
standCountPerHa?: number | null | undefined;
|
|
2109
2109
|
targetStandPerHa?: number | null | undefined;
|
|
2110
2110
|
coverImage?: string | null | undefined;
|
|
@@ -2179,7 +2179,7 @@ export declare const fieldsRouter: {
|
|
|
2179
2179
|
moisture: string | null;
|
|
2180
2180
|
soilType: string | null;
|
|
2181
2181
|
expectedHarvestDate: string | null;
|
|
2182
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2182
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2183
2183
|
standCountPerHa?: number | null | undefined;
|
|
2184
2184
|
targetStandPerHa?: number | null | undefined;
|
|
2185
2185
|
coverImage?: string | null | undefined;
|
|
@@ -2280,7 +2280,7 @@ export declare const fieldsRouter: {
|
|
|
2280
2280
|
moisture: string | null;
|
|
2281
2281
|
soilType: string | null;
|
|
2282
2282
|
expectedHarvestDate: string | null;
|
|
2283
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2283
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2284
2284
|
standCountPerHa?: number | null | undefined;
|
|
2285
2285
|
targetStandPerHa?: number | null | undefined;
|
|
2286
2286
|
coverImage?: string | null | undefined;
|
|
@@ -2367,7 +2367,7 @@ export declare const fieldsRouter: {
|
|
|
2367
2367
|
moisture: string | null;
|
|
2368
2368
|
soilType: string | null;
|
|
2369
2369
|
expectedHarvestDate: string | null;
|
|
2370
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2370
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2371
2371
|
standCountPerHa?: number | null | undefined;
|
|
2372
2372
|
targetStandPerHa?: number | null | undefined;
|
|
2373
2373
|
coverImage?: string | null | undefined;
|
|
@@ -2655,7 +2655,7 @@ export declare const fieldsRouter: {
|
|
|
2655
2655
|
currentCrop: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2656
2656
|
plantingDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2657
2657
|
expectedHarvestDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2658
|
-
cropStage: z.ZodOptional<z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>>;
|
|
2658
|
+
cropStage: z.ZodOptional<z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>>;
|
|
2659
2659
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2660
2660
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2661
2661
|
cropHistory: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -2698,7 +2698,7 @@ export declare const fieldsRouter: {
|
|
|
2698
2698
|
moisture?: string | undefined;
|
|
2699
2699
|
soilType?: string | undefined;
|
|
2700
2700
|
expectedHarvestDate?: string | null | undefined;
|
|
2701
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2701
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2702
2702
|
standCountPerHa?: number | null | undefined;
|
|
2703
2703
|
targetStandPerHa?: number | null | undefined;
|
|
2704
2704
|
coverImage?: string | null | undefined;
|
|
@@ -2725,7 +2725,7 @@ export declare const fieldsRouter: {
|
|
|
2725
2725
|
moisture?: string | undefined;
|
|
2726
2726
|
soilType?: string | undefined;
|
|
2727
2727
|
expectedHarvestDate?: string | null | undefined;
|
|
2728
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2728
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2729
2729
|
standCountPerHa?: number | null | undefined;
|
|
2730
2730
|
targetStandPerHa?: number | null | undefined;
|
|
2731
2731
|
coverImage?: string | null | undefined;
|
|
@@ -2756,7 +2756,7 @@ export declare const fieldsRouter: {
|
|
|
2756
2756
|
moisture?: string | undefined;
|
|
2757
2757
|
soilType?: string | undefined;
|
|
2758
2758
|
expectedHarvestDate?: string | null | undefined;
|
|
2759
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2759
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2760
2760
|
standCountPerHa?: number | null | undefined;
|
|
2761
2761
|
targetStandPerHa?: number | null | undefined;
|
|
2762
2762
|
coverImage?: string | null | undefined;
|
|
@@ -2787,7 +2787,7 @@ export declare const fieldsRouter: {
|
|
|
2787
2787
|
moisture?: string | undefined;
|
|
2788
2788
|
soilType?: string | undefined;
|
|
2789
2789
|
expectedHarvestDate?: string | null | undefined;
|
|
2790
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2790
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2791
2791
|
standCountPerHa?: number | null | undefined;
|
|
2792
2792
|
targetStandPerHa?: number | null | undefined;
|
|
2793
2793
|
coverImage?: string | null | undefined;
|
|
@@ -2820,7 +2820,7 @@ export declare const fieldsRouter: {
|
|
|
2820
2820
|
moisture?: string | undefined;
|
|
2821
2821
|
soilType?: string | undefined;
|
|
2822
2822
|
expectedHarvestDate?: string | null | undefined;
|
|
2823
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2823
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2824
2824
|
standCountPerHa?: number | null | undefined;
|
|
2825
2825
|
targetStandPerHa?: number | null | undefined;
|
|
2826
2826
|
coverImage?: string | null | undefined;
|
|
@@ -2853,7 +2853,7 @@ export declare const fieldsRouter: {
|
|
|
2853
2853
|
moisture?: string | undefined;
|
|
2854
2854
|
soilType?: string | undefined;
|
|
2855
2855
|
expectedHarvestDate?: string | null | undefined;
|
|
2856
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | null | undefined;
|
|
2856
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null | undefined;
|
|
2857
2857
|
standCountPerHa?: number | null | undefined;
|
|
2858
2858
|
targetStandPerHa?: number | null | undefined;
|
|
2859
2859
|
coverImage?: string | null | undefined;
|
|
@@ -2896,7 +2896,7 @@ export declare const fieldsRouter: {
|
|
|
2896
2896
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
2897
2897
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
2898
2898
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
2899
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
2899
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
2900
2900
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2901
2901
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2902
2902
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -2955,7 +2955,7 @@ export declare const fieldsRouter: {
|
|
|
2955
2955
|
moisture: string | null;
|
|
2956
2956
|
soilType: string | null;
|
|
2957
2957
|
expectedHarvestDate: string | null;
|
|
2958
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2958
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2959
2959
|
standCountPerHa?: number | null | undefined;
|
|
2960
2960
|
targetStandPerHa?: number | null | undefined;
|
|
2961
2961
|
coverImage?: string | null | undefined;
|
|
@@ -2989,7 +2989,7 @@ export declare const fieldsRouter: {
|
|
|
2989
2989
|
moisture: string | null;
|
|
2990
2990
|
soilType: string | null;
|
|
2991
2991
|
expectedHarvestDate: string | null;
|
|
2992
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
2992
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
2993
2993
|
standCountPerHa?: number | null | undefined;
|
|
2994
2994
|
targetStandPerHa?: number | null | undefined;
|
|
2995
2995
|
coverImage?: string | null | undefined;
|
|
@@ -3030,7 +3030,7 @@ export declare const fieldsRouter: {
|
|
|
3030
3030
|
moisture: string | null;
|
|
3031
3031
|
soilType: string | null;
|
|
3032
3032
|
expectedHarvestDate: string | null;
|
|
3033
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3033
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3034
3034
|
standCountPerHa?: number | null | undefined;
|
|
3035
3035
|
targetStandPerHa?: number | null | undefined;
|
|
3036
3036
|
coverImage?: string | null | undefined;
|
|
@@ -3071,7 +3071,7 @@ export declare const fieldsRouter: {
|
|
|
3071
3071
|
moisture: string | null;
|
|
3072
3072
|
soilType: string | null;
|
|
3073
3073
|
expectedHarvestDate: string | null;
|
|
3074
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3074
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3075
3075
|
standCountPerHa?: number | null | undefined;
|
|
3076
3076
|
targetStandPerHa?: number | null | undefined;
|
|
3077
3077
|
coverImage?: string | null | undefined;
|
|
@@ -3138,7 +3138,7 @@ export declare const fieldsRouter: {
|
|
|
3138
3138
|
moisture: string | null;
|
|
3139
3139
|
soilType: string | null;
|
|
3140
3140
|
expectedHarvestDate: string | null;
|
|
3141
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3141
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3142
3142
|
standCountPerHa?: number | null | undefined;
|
|
3143
3143
|
targetStandPerHa?: number | null | undefined;
|
|
3144
3144
|
coverImage?: string | null | undefined;
|
|
@@ -3191,7 +3191,7 @@ export declare const fieldsRouter: {
|
|
|
3191
3191
|
moisture: string | null;
|
|
3192
3192
|
soilType: string | null;
|
|
3193
3193
|
expectedHarvestDate: string | null;
|
|
3194
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3194
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3195
3195
|
standCountPerHa?: number | null | undefined;
|
|
3196
3196
|
targetStandPerHa?: number | null | undefined;
|
|
3197
3197
|
coverImage?: string | null | undefined;
|
|
@@ -3609,14 +3609,14 @@ export declare const fieldsRouter: {
|
|
|
3609
3609
|
expectedHarvestDate: z.ZodOptional<z.ZodString>;
|
|
3610
3610
|
variety: z.ZodOptional<z.ZodString>;
|
|
3611
3611
|
notes: z.ZodOptional<z.ZodString>;
|
|
3612
|
-
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
3612
|
+
cropStage: z.ZodOptional<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
3613
3613
|
standCountPerHa: z.ZodOptional<z.ZodNumber>;
|
|
3614
3614
|
targetStandPerHa: z.ZodOptional<z.ZodNumber>;
|
|
3615
3615
|
}, "strip", z.ZodTypeAny, {
|
|
3616
3616
|
currentCrop: string;
|
|
3617
3617
|
plantingDate: string;
|
|
3618
3618
|
expectedHarvestDate?: string | undefined;
|
|
3619
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3619
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3620
3620
|
standCountPerHa?: number | undefined;
|
|
3621
3621
|
targetStandPerHa?: number | undefined;
|
|
3622
3622
|
variety?: string | undefined;
|
|
@@ -3625,7 +3625,7 @@ export declare const fieldsRouter: {
|
|
|
3625
3625
|
currentCrop: string;
|
|
3626
3626
|
plantingDate: string;
|
|
3627
3627
|
expectedHarvestDate?: string | undefined;
|
|
3628
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3628
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3629
3629
|
standCountPerHa?: number | undefined;
|
|
3630
3630
|
targetStandPerHa?: number | undefined;
|
|
3631
3631
|
variety?: string | undefined;
|
|
@@ -3637,7 +3637,7 @@ export declare const fieldsRouter: {
|
|
|
3637
3637
|
currentCrop: string;
|
|
3638
3638
|
plantingDate: string;
|
|
3639
3639
|
expectedHarvestDate?: string | undefined;
|
|
3640
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3640
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3641
3641
|
standCountPerHa?: number | undefined;
|
|
3642
3642
|
targetStandPerHa?: number | undefined;
|
|
3643
3643
|
variety?: string | undefined;
|
|
@@ -3649,7 +3649,7 @@ export declare const fieldsRouter: {
|
|
|
3649
3649
|
currentCrop: string;
|
|
3650
3650
|
plantingDate: string;
|
|
3651
3651
|
expectedHarvestDate?: string | undefined;
|
|
3652
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3652
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3653
3653
|
standCountPerHa?: number | undefined;
|
|
3654
3654
|
targetStandPerHa?: number | undefined;
|
|
3655
3655
|
variety?: string | undefined;
|
|
@@ -3663,7 +3663,7 @@ export declare const fieldsRouter: {
|
|
|
3663
3663
|
currentCrop: string;
|
|
3664
3664
|
plantingDate: string;
|
|
3665
3665
|
expectedHarvestDate?: string | undefined;
|
|
3666
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3666
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3667
3667
|
standCountPerHa?: number | undefined;
|
|
3668
3668
|
targetStandPerHa?: number | undefined;
|
|
3669
3669
|
variety?: string | undefined;
|
|
@@ -3677,7 +3677,7 @@ export declare const fieldsRouter: {
|
|
|
3677
3677
|
currentCrop: string;
|
|
3678
3678
|
plantingDate: string;
|
|
3679
3679
|
expectedHarvestDate?: string | undefined;
|
|
3680
|
-
cropStage?: "planted" | "growing" | "flowering" | "mature" | "harvested" | undefined;
|
|
3680
|
+
cropStage?: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | undefined;
|
|
3681
3681
|
standCountPerHa?: number | undefined;
|
|
3682
3682
|
targetStandPerHa?: number | undefined;
|
|
3683
3683
|
variety?: string | undefined;
|
|
@@ -3712,7 +3712,7 @@ export declare const fieldsRouter: {
|
|
|
3712
3712
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
3713
3713
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
3714
3714
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
3715
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
3715
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
3716
3716
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3717
3717
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3718
3718
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3771,7 +3771,7 @@ export declare const fieldsRouter: {
|
|
|
3771
3771
|
moisture: string | null;
|
|
3772
3772
|
soilType: string | null;
|
|
3773
3773
|
expectedHarvestDate: string | null;
|
|
3774
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3774
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3775
3775
|
standCountPerHa?: number | null | undefined;
|
|
3776
3776
|
targetStandPerHa?: number | null | undefined;
|
|
3777
3777
|
coverImage?: string | null | undefined;
|
|
@@ -3805,7 +3805,7 @@ export declare const fieldsRouter: {
|
|
|
3805
3805
|
moisture: string | null;
|
|
3806
3806
|
soilType: string | null;
|
|
3807
3807
|
expectedHarvestDate: string | null;
|
|
3808
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3808
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3809
3809
|
standCountPerHa?: number | null | undefined;
|
|
3810
3810
|
targetStandPerHa?: number | null | undefined;
|
|
3811
3811
|
coverImage?: string | null | undefined;
|
|
@@ -3846,7 +3846,7 @@ export declare const fieldsRouter: {
|
|
|
3846
3846
|
moisture: string | null;
|
|
3847
3847
|
soilType: string | null;
|
|
3848
3848
|
expectedHarvestDate: string | null;
|
|
3849
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3849
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3850
3850
|
standCountPerHa?: number | null | undefined;
|
|
3851
3851
|
targetStandPerHa?: number | null | undefined;
|
|
3852
3852
|
coverImage?: string | null | undefined;
|
|
@@ -3887,7 +3887,7 @@ export declare const fieldsRouter: {
|
|
|
3887
3887
|
moisture: string | null;
|
|
3888
3888
|
soilType: string | null;
|
|
3889
3889
|
expectedHarvestDate: string | null;
|
|
3890
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3890
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3891
3891
|
standCountPerHa?: number | null | undefined;
|
|
3892
3892
|
targetStandPerHa?: number | null | undefined;
|
|
3893
3893
|
coverImage?: string | null | undefined;
|
|
@@ -3954,7 +3954,7 @@ export declare const fieldsRouter: {
|
|
|
3954
3954
|
moisture: string | null;
|
|
3955
3955
|
soilType: string | null;
|
|
3956
3956
|
expectedHarvestDate: string | null;
|
|
3957
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
3957
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
3958
3958
|
standCountPerHa?: number | null | undefined;
|
|
3959
3959
|
targetStandPerHa?: number | null | undefined;
|
|
3960
3960
|
coverImage?: string | null | undefined;
|
|
@@ -4007,7 +4007,7 @@ export declare const fieldsRouter: {
|
|
|
4007
4007
|
moisture: string | null;
|
|
4008
4008
|
soilType: string | null;
|
|
4009
4009
|
expectedHarvestDate: string | null;
|
|
4010
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
4010
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
4011
4011
|
standCountPerHa?: number | null | undefined;
|
|
4012
4012
|
targetStandPerHa?: number | null | undefined;
|
|
4013
4013
|
coverImage?: string | null | undefined;
|
|
@@ -5127,7 +5127,7 @@ export declare const fieldsRouter: {
|
|
|
5127
5127
|
currentCrop: z.ZodNullable<z.ZodString>;
|
|
5128
5128
|
plantingDate: z.ZodNullable<z.ZodString>;
|
|
5129
5129
|
expectedHarvestDate: z.ZodNullable<z.ZodString>;
|
|
5130
|
-
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "mature", "harvested"]>>;
|
|
5130
|
+
cropStage: z.ZodNullable<z.ZodEnum<["planted", "growing", "flowering", "fruiting", "mature", "harvested"]>>;
|
|
5131
5131
|
standCountPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5132
5132
|
targetStandPerHa: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5133
5133
|
coverImage: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -5186,7 +5186,7 @@ export declare const fieldsRouter: {
|
|
|
5186
5186
|
moisture: string | null;
|
|
5187
5187
|
soilType: string | null;
|
|
5188
5188
|
expectedHarvestDate: string | null;
|
|
5189
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5189
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5190
5190
|
standCountPerHa?: number | null | undefined;
|
|
5191
5191
|
targetStandPerHa?: number | null | undefined;
|
|
5192
5192
|
coverImage?: string | null | undefined;
|
|
@@ -5220,7 +5220,7 @@ export declare const fieldsRouter: {
|
|
|
5220
5220
|
moisture: string | null;
|
|
5221
5221
|
soilType: string | null;
|
|
5222
5222
|
expectedHarvestDate: string | null;
|
|
5223
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5223
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5224
5224
|
standCountPerHa?: number | null | undefined;
|
|
5225
5225
|
targetStandPerHa?: number | null | undefined;
|
|
5226
5226
|
coverImage?: string | null | undefined;
|
|
@@ -5261,7 +5261,7 @@ export declare const fieldsRouter: {
|
|
|
5261
5261
|
moisture: string | null;
|
|
5262
5262
|
soilType: string | null;
|
|
5263
5263
|
expectedHarvestDate: string | null;
|
|
5264
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5264
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5265
5265
|
standCountPerHa?: number | null | undefined;
|
|
5266
5266
|
targetStandPerHa?: number | null | undefined;
|
|
5267
5267
|
coverImage?: string | null | undefined;
|
|
@@ -5302,7 +5302,7 @@ export declare const fieldsRouter: {
|
|
|
5302
5302
|
moisture: string | null;
|
|
5303
5303
|
soilType: string | null;
|
|
5304
5304
|
expectedHarvestDate: string | null;
|
|
5305
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5305
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5306
5306
|
standCountPerHa?: number | null | undefined;
|
|
5307
5307
|
targetStandPerHa?: number | null | undefined;
|
|
5308
5308
|
coverImage?: string | null | undefined;
|
|
@@ -5369,7 +5369,7 @@ export declare const fieldsRouter: {
|
|
|
5369
5369
|
moisture: string | null;
|
|
5370
5370
|
soilType: string | null;
|
|
5371
5371
|
expectedHarvestDate: string | null;
|
|
5372
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5372
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5373
5373
|
standCountPerHa?: number | null | undefined;
|
|
5374
5374
|
targetStandPerHa?: number | null | undefined;
|
|
5375
5375
|
coverImage?: string | null | undefined;
|
|
@@ -5422,7 +5422,7 @@ export declare const fieldsRouter: {
|
|
|
5422
5422
|
moisture: string | null;
|
|
5423
5423
|
soilType: string | null;
|
|
5424
5424
|
expectedHarvestDate: string | null;
|
|
5425
|
-
cropStage: "planted" | "growing" | "flowering" | "mature" | "harvested" | null;
|
|
5425
|
+
cropStage: "planted" | "growing" | "flowering" | "fruiting" | "mature" | "harvested" | null;
|
|
5426
5426
|
standCountPerHa?: number | null | undefined;
|
|
5427
5427
|
targetStandPerHa?: number | null | undefined;
|
|
5428
5428
|
coverImage?: string | null | undefined;
|