@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
|
@@ -3228,6 +3228,7 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3228
3228
|
fieldId: string;
|
|
3229
3229
|
notes: string | null;
|
|
3230
3230
|
cropName: string;
|
|
3231
|
+
estimatedTotalCost: number | null;
|
|
3231
3232
|
cropNutrientProfileId: string;
|
|
3232
3233
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3233
3234
|
baselineSoilTestId: string | null;
|
|
@@ -3244,7 +3245,6 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3244
3245
|
applicationEfficiency: number;
|
|
3245
3246
|
weeklyFrequency: number;
|
|
3246
3247
|
totalWeeks: number | null;
|
|
3247
|
-
estimatedTotalCost: number | null;
|
|
3248
3248
|
actualTotalCost: number | null;
|
|
3249
3249
|
fieldName?: string | undefined;
|
|
3250
3250
|
pendingEvents?: number | undefined;
|
|
@@ -3261,6 +3261,7 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3261
3261
|
fieldId: string;
|
|
3262
3262
|
notes: string | null;
|
|
3263
3263
|
cropName: string;
|
|
3264
|
+
estimatedTotalCost: number | null;
|
|
3264
3265
|
cropNutrientProfileId: string;
|
|
3265
3266
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3266
3267
|
baselineSoilTestId: string | null;
|
|
@@ -3277,7 +3278,6 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3277
3278
|
applicationEfficiency: number;
|
|
3278
3279
|
weeklyFrequency: number;
|
|
3279
3280
|
totalWeeks: number | null;
|
|
3280
|
-
estimatedTotalCost: number | null;
|
|
3281
3281
|
actualTotalCost: number | null;
|
|
3282
3282
|
fieldName?: string | undefined;
|
|
3283
3283
|
pendingEvents?: number | undefined;
|
|
@@ -3575,6 +3575,7 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3575
3575
|
fieldId: string;
|
|
3576
3576
|
notes: string | null;
|
|
3577
3577
|
cropName: string;
|
|
3578
|
+
estimatedTotalCost: number | null;
|
|
3578
3579
|
cropNutrientProfileId: string;
|
|
3579
3580
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3580
3581
|
baselineSoilTestId: string | null;
|
|
@@ -3591,7 +3592,6 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3591
3592
|
applicationEfficiency: number;
|
|
3592
3593
|
weeklyFrequency: number;
|
|
3593
3594
|
totalWeeks: number | null;
|
|
3594
|
-
estimatedTotalCost: number | null;
|
|
3595
3595
|
actualTotalCost: number | null;
|
|
3596
3596
|
fieldName?: string | undefined;
|
|
3597
3597
|
pendingEvents?: number | undefined;
|
|
@@ -3608,6 +3608,7 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3608
3608
|
fieldId: string;
|
|
3609
3609
|
notes: string | null;
|
|
3610
3610
|
cropName: string;
|
|
3611
|
+
estimatedTotalCost: number | null;
|
|
3611
3612
|
cropNutrientProfileId: string;
|
|
3612
3613
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3613
3614
|
baselineSoilTestId: string | null;
|
|
@@ -3624,7 +3625,6 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3624
3625
|
applicationEfficiency: number;
|
|
3625
3626
|
weeklyFrequency: number;
|
|
3626
3627
|
totalWeeks: number | null;
|
|
3627
|
-
estimatedTotalCost: number | null;
|
|
3628
3628
|
actualTotalCost: number | null;
|
|
3629
3629
|
fieldName?: string | undefined;
|
|
3630
3630
|
pendingEvents?: number | undefined;
|
|
@@ -3648,6 +3648,7 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3648
3648
|
fieldId: string;
|
|
3649
3649
|
notes: string | null;
|
|
3650
3650
|
cropName: string;
|
|
3651
|
+
estimatedTotalCost: number | null;
|
|
3651
3652
|
cropNutrientProfileId: string;
|
|
3652
3653
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3653
3654
|
baselineSoilTestId: string | null;
|
|
@@ -3664,7 +3665,6 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3664
3665
|
applicationEfficiency: number;
|
|
3665
3666
|
weeklyFrequency: number;
|
|
3666
3667
|
totalWeeks: number | null;
|
|
3667
|
-
estimatedTotalCost: number | null;
|
|
3668
3668
|
actualTotalCost: number | null;
|
|
3669
3669
|
fieldName?: string | undefined;
|
|
3670
3670
|
pendingEvents?: number | undefined;
|
|
@@ -3688,6 +3688,7 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3688
3688
|
fieldId: string;
|
|
3689
3689
|
notes: string | null;
|
|
3690
3690
|
cropName: string;
|
|
3691
|
+
estimatedTotalCost: number | null;
|
|
3691
3692
|
cropNutrientProfileId: string;
|
|
3692
3693
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3693
3694
|
baselineSoilTestId: string | null;
|
|
@@ -3704,7 +3705,6 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3704
3705
|
applicationEfficiency: number;
|
|
3705
3706
|
weeklyFrequency: number;
|
|
3706
3707
|
totalWeeks: number | null;
|
|
3707
|
-
estimatedTotalCost: number | null;
|
|
3708
3708
|
actualTotalCost: number | null;
|
|
3709
3709
|
fieldName?: string | undefined;
|
|
3710
3710
|
pendingEvents?: number | undefined;
|
|
@@ -3778,6 +3778,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3778
3778
|
fieldId: string;
|
|
3779
3779
|
notes: string | null;
|
|
3780
3780
|
cropName: string;
|
|
3781
|
+
estimatedTotalCost: number | null;
|
|
3781
3782
|
cropNutrientProfileId: string;
|
|
3782
3783
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3783
3784
|
baselineSoilTestId: string | null;
|
|
@@ -3794,7 +3795,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3794
3795
|
applicationEfficiency: number;
|
|
3795
3796
|
weeklyFrequency: number;
|
|
3796
3797
|
totalWeeks: number | null;
|
|
3797
|
-
estimatedTotalCost: number | null;
|
|
3798
3798
|
actualTotalCost: number | null;
|
|
3799
3799
|
fieldName?: string | undefined;
|
|
3800
3800
|
pendingEvents?: number | undefined;
|
|
@@ -3811,6 +3811,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3811
3811
|
fieldId: string;
|
|
3812
3812
|
notes: string | null;
|
|
3813
3813
|
cropName: string;
|
|
3814
|
+
estimatedTotalCost: number | null;
|
|
3814
3815
|
cropNutrientProfileId: string;
|
|
3815
3816
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3816
3817
|
baselineSoilTestId: string | null;
|
|
@@ -3827,7 +3828,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3827
3828
|
applicationEfficiency: number;
|
|
3828
3829
|
weeklyFrequency: number;
|
|
3829
3830
|
totalWeeks: number | null;
|
|
3830
|
-
estimatedTotalCost: number | null;
|
|
3831
3831
|
actualTotalCost: number | null;
|
|
3832
3832
|
fieldName?: string | undefined;
|
|
3833
3833
|
pendingEvents?: number | undefined;
|
|
@@ -3851,6 +3851,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3851
3851
|
fieldId: string;
|
|
3852
3852
|
notes: string | null;
|
|
3853
3853
|
cropName: string;
|
|
3854
|
+
estimatedTotalCost: number | null;
|
|
3854
3855
|
cropNutrientProfileId: string;
|
|
3855
3856
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3856
3857
|
baselineSoilTestId: string | null;
|
|
@@ -3867,7 +3868,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3867
3868
|
applicationEfficiency: number;
|
|
3868
3869
|
weeklyFrequency: number;
|
|
3869
3870
|
totalWeeks: number | null;
|
|
3870
|
-
estimatedTotalCost: number | null;
|
|
3871
3871
|
actualTotalCost: number | null;
|
|
3872
3872
|
fieldName?: string | undefined;
|
|
3873
3873
|
pendingEvents?: number | undefined;
|
|
@@ -3891,6 +3891,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3891
3891
|
fieldId: string;
|
|
3892
3892
|
notes: string | null;
|
|
3893
3893
|
cropName: string;
|
|
3894
|
+
estimatedTotalCost: number | null;
|
|
3894
3895
|
cropNutrientProfileId: string;
|
|
3895
3896
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3896
3897
|
baselineSoilTestId: string | null;
|
|
@@ -3907,7 +3908,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3907
3908
|
applicationEfficiency: number;
|
|
3908
3909
|
weeklyFrequency: number;
|
|
3909
3910
|
totalWeeks: number | null;
|
|
3910
|
-
estimatedTotalCost: number | null;
|
|
3911
3911
|
actualTotalCost: number | null;
|
|
3912
3912
|
fieldName?: string | undefined;
|
|
3913
3913
|
pendingEvents?: number | undefined;
|
|
@@ -3957,6 +3957,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3957
3957
|
fieldId: string;
|
|
3958
3958
|
notes: string | null;
|
|
3959
3959
|
cropName: string;
|
|
3960
|
+
estimatedTotalCost: number | null;
|
|
3960
3961
|
cropNutrientProfileId: string;
|
|
3961
3962
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
3962
3963
|
baselineSoilTestId: string | null;
|
|
@@ -3973,7 +3974,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3973
3974
|
applicationEfficiency: number;
|
|
3974
3975
|
weeklyFrequency: number;
|
|
3975
3976
|
totalWeeks: number | null;
|
|
3976
|
-
estimatedTotalCost: number | null;
|
|
3977
3977
|
actualTotalCost: number | null;
|
|
3978
3978
|
fieldName?: string | undefined;
|
|
3979
3979
|
pendingEvents?: number | undefined;
|
|
@@ -4009,6 +4009,7 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
4009
4009
|
fieldId: string;
|
|
4010
4010
|
notes: string | null;
|
|
4011
4011
|
cropName: string;
|
|
4012
|
+
estimatedTotalCost: number | null;
|
|
4012
4013
|
cropNutrientProfileId: string;
|
|
4013
4014
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4014
4015
|
baselineSoilTestId: string | null;
|
|
@@ -4025,7 +4026,6 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
4025
4026
|
applicationEfficiency: number;
|
|
4026
4027
|
weeklyFrequency: number;
|
|
4027
4028
|
totalWeeks: number | null;
|
|
4028
|
-
estimatedTotalCost: number | null;
|
|
4029
4029
|
actualTotalCost: number | null;
|
|
4030
4030
|
fieldName?: string | undefined;
|
|
4031
4031
|
pendingEvents?: number | undefined;
|
|
@@ -4110,6 +4110,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4110
4110
|
fieldId: string;
|
|
4111
4111
|
notes: string | null;
|
|
4112
4112
|
cropName: string;
|
|
4113
|
+
estimatedTotalCost: number | null;
|
|
4113
4114
|
cropNutrientProfileId: string;
|
|
4114
4115
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4115
4116
|
baselineSoilTestId: string | null;
|
|
@@ -4126,7 +4127,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4126
4127
|
applicationEfficiency: number;
|
|
4127
4128
|
weeklyFrequency: number;
|
|
4128
4129
|
totalWeeks: number | null;
|
|
4129
|
-
estimatedTotalCost: number | null;
|
|
4130
4130
|
actualTotalCost: number | null;
|
|
4131
4131
|
fieldName?: string | undefined;
|
|
4132
4132
|
pendingEvents?: number | undefined;
|
|
@@ -4143,6 +4143,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4143
4143
|
fieldId: string;
|
|
4144
4144
|
notes: string | null;
|
|
4145
4145
|
cropName: string;
|
|
4146
|
+
estimatedTotalCost: number | null;
|
|
4146
4147
|
cropNutrientProfileId: string;
|
|
4147
4148
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4148
4149
|
baselineSoilTestId: string | null;
|
|
@@ -4159,7 +4160,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4159
4160
|
applicationEfficiency: number;
|
|
4160
4161
|
weeklyFrequency: number;
|
|
4161
4162
|
totalWeeks: number | null;
|
|
4162
|
-
estimatedTotalCost: number | null;
|
|
4163
4163
|
actualTotalCost: number | null;
|
|
4164
4164
|
fieldName?: string | undefined;
|
|
4165
4165
|
pendingEvents?: number | undefined;
|
|
@@ -4183,6 +4183,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4183
4183
|
fieldId: string;
|
|
4184
4184
|
notes: string | null;
|
|
4185
4185
|
cropName: string;
|
|
4186
|
+
estimatedTotalCost: number | null;
|
|
4186
4187
|
cropNutrientProfileId: string;
|
|
4187
4188
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4188
4189
|
baselineSoilTestId: string | null;
|
|
@@ -4199,7 +4200,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4199
4200
|
applicationEfficiency: number;
|
|
4200
4201
|
weeklyFrequency: number;
|
|
4201
4202
|
totalWeeks: number | null;
|
|
4202
|
-
estimatedTotalCost: number | null;
|
|
4203
4203
|
actualTotalCost: number | null;
|
|
4204
4204
|
fieldName?: string | undefined;
|
|
4205
4205
|
pendingEvents?: number | undefined;
|
|
@@ -4223,6 +4223,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4223
4223
|
fieldId: string;
|
|
4224
4224
|
notes: string | null;
|
|
4225
4225
|
cropName: string;
|
|
4226
|
+
estimatedTotalCost: number | null;
|
|
4226
4227
|
cropNutrientProfileId: string;
|
|
4227
4228
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4228
4229
|
baselineSoilTestId: string | null;
|
|
@@ -4239,7 +4240,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4239
4240
|
applicationEfficiency: number;
|
|
4240
4241
|
weeklyFrequency: number;
|
|
4241
4242
|
totalWeeks: number | null;
|
|
4242
|
-
estimatedTotalCost: number | null;
|
|
4243
4243
|
actualTotalCost: number | null;
|
|
4244
4244
|
fieldName?: string | undefined;
|
|
4245
4245
|
pendingEvents?: number | undefined;
|
|
@@ -4289,6 +4289,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4289
4289
|
fieldId: string;
|
|
4290
4290
|
notes: string | null;
|
|
4291
4291
|
cropName: string;
|
|
4292
|
+
estimatedTotalCost: number | null;
|
|
4292
4293
|
cropNutrientProfileId: string;
|
|
4293
4294
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4294
4295
|
baselineSoilTestId: string | null;
|
|
@@ -4305,7 +4306,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4305
4306
|
applicationEfficiency: number;
|
|
4306
4307
|
weeklyFrequency: number;
|
|
4307
4308
|
totalWeeks: number | null;
|
|
4308
|
-
estimatedTotalCost: number | null;
|
|
4309
4309
|
actualTotalCost: number | null;
|
|
4310
4310
|
fieldName?: string | undefined;
|
|
4311
4311
|
pendingEvents?: number | undefined;
|
|
@@ -4341,6 +4341,7 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4341
4341
|
fieldId: string;
|
|
4342
4342
|
notes: string | null;
|
|
4343
4343
|
cropName: string;
|
|
4344
|
+
estimatedTotalCost: number | null;
|
|
4344
4345
|
cropNutrientProfileId: string;
|
|
4345
4346
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
4346
4347
|
baselineSoilTestId: string | null;
|
|
@@ -4357,7 +4358,6 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4357
4358
|
applicationEfficiency: number;
|
|
4358
4359
|
weeklyFrequency: number;
|
|
4359
4360
|
totalWeeks: number | null;
|
|
4360
|
-
estimatedTotalCost: number | null;
|
|
4361
4361
|
actualTotalCost: number | null;
|
|
4362
4362
|
fieldName?: string | undefined;
|
|
4363
4363
|
pendingEvents?: number | undefined;
|
|
@@ -5786,8 +5786,8 @@ export declare const fertigationRecommendationAttributesSchema: z.ZodObject<{
|
|
|
5786
5786
|
createdAt: string;
|
|
5787
5787
|
updatedAt: string;
|
|
5788
5788
|
fieldId: string;
|
|
5789
|
-
estimatedCost: number | null;
|
|
5790
5789
|
confidence: number | null;
|
|
5790
|
+
estimatedCost: number | null;
|
|
5791
5791
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
5792
5792
|
soilTestId: string | null;
|
|
5793
5793
|
scheduleId: string | null;
|
|
@@ -5817,8 +5817,8 @@ export declare const fertigationRecommendationAttributesSchema: z.ZodObject<{
|
|
|
5817
5817
|
createdAt: string;
|
|
5818
5818
|
updatedAt: string;
|
|
5819
5819
|
fieldId: string;
|
|
5820
|
-
estimatedCost: number | null;
|
|
5821
5820
|
confidence: number | null;
|
|
5821
|
+
estimatedCost: number | null;
|
|
5822
5822
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
5823
5823
|
soilTestId: string | null;
|
|
5824
5824
|
scheduleId: string | null;
|
|
@@ -5980,8 +5980,8 @@ export declare const fertigationRecommendationResourceSchema: z.ZodObject<{
|
|
|
5980
5980
|
createdAt: string;
|
|
5981
5981
|
updatedAt: string;
|
|
5982
5982
|
fieldId: string;
|
|
5983
|
-
estimatedCost: number | null;
|
|
5984
5983
|
confidence: number | null;
|
|
5984
|
+
estimatedCost: number | null;
|
|
5985
5985
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
5986
5986
|
soilTestId: string | null;
|
|
5987
5987
|
scheduleId: string | null;
|
|
@@ -6011,8 +6011,8 @@ export declare const fertigationRecommendationResourceSchema: z.ZodObject<{
|
|
|
6011
6011
|
createdAt: string;
|
|
6012
6012
|
updatedAt: string;
|
|
6013
6013
|
fieldId: string;
|
|
6014
|
-
estimatedCost: number | null;
|
|
6015
6014
|
confidence: number | null;
|
|
6015
|
+
estimatedCost: number | null;
|
|
6016
6016
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6017
6017
|
soilTestId: string | null;
|
|
6018
6018
|
scheduleId: string | null;
|
|
@@ -6049,8 +6049,8 @@ export declare const fertigationRecommendationResourceSchema: z.ZodObject<{
|
|
|
6049
6049
|
createdAt: string;
|
|
6050
6050
|
updatedAt: string;
|
|
6051
6051
|
fieldId: string;
|
|
6052
|
-
estimatedCost: number | null;
|
|
6053
6052
|
confidence: number | null;
|
|
6053
|
+
estimatedCost: number | null;
|
|
6054
6054
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6055
6055
|
soilTestId: string | null;
|
|
6056
6056
|
scheduleId: string | null;
|
|
@@ -6087,8 +6087,8 @@ export declare const fertigationRecommendationResourceSchema: z.ZodObject<{
|
|
|
6087
6087
|
createdAt: string;
|
|
6088
6088
|
updatedAt: string;
|
|
6089
6089
|
fieldId: string;
|
|
6090
|
-
estimatedCost: number | null;
|
|
6091
6090
|
confidence: number | null;
|
|
6091
|
+
estimatedCost: number | null;
|
|
6092
6092
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6093
6093
|
soilTestId: string | null;
|
|
6094
6094
|
scheduleId: string | null;
|
|
@@ -6179,8 +6179,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6179
6179
|
createdAt: string;
|
|
6180
6180
|
updatedAt: string;
|
|
6181
6181
|
fieldId: string;
|
|
6182
|
-
estimatedCost: number | null;
|
|
6183
6182
|
confidence: number | null;
|
|
6183
|
+
estimatedCost: number | null;
|
|
6184
6184
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6185
6185
|
soilTestId: string | null;
|
|
6186
6186
|
scheduleId: string | null;
|
|
@@ -6210,8 +6210,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6210
6210
|
createdAt: string;
|
|
6211
6211
|
updatedAt: string;
|
|
6212
6212
|
fieldId: string;
|
|
6213
|
-
estimatedCost: number | null;
|
|
6214
6213
|
confidence: number | null;
|
|
6214
|
+
estimatedCost: number | null;
|
|
6215
6215
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6216
6216
|
soilTestId: string | null;
|
|
6217
6217
|
scheduleId: string | null;
|
|
@@ -6248,8 +6248,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6248
6248
|
createdAt: string;
|
|
6249
6249
|
updatedAt: string;
|
|
6250
6250
|
fieldId: string;
|
|
6251
|
-
estimatedCost: number | null;
|
|
6252
6251
|
confidence: number | null;
|
|
6252
|
+
estimatedCost: number | null;
|
|
6253
6253
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6254
6254
|
soilTestId: string | null;
|
|
6255
6255
|
scheduleId: string | null;
|
|
@@ -6286,8 +6286,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6286
6286
|
createdAt: string;
|
|
6287
6287
|
updatedAt: string;
|
|
6288
6288
|
fieldId: string;
|
|
6289
|
-
estimatedCost: number | null;
|
|
6290
6289
|
confidence: number | null;
|
|
6290
|
+
estimatedCost: number | null;
|
|
6291
6291
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6292
6292
|
soilTestId: string | null;
|
|
6293
6293
|
scheduleId: string | null;
|
|
@@ -6350,8 +6350,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6350
6350
|
createdAt: string;
|
|
6351
6351
|
updatedAt: string;
|
|
6352
6352
|
fieldId: string;
|
|
6353
|
-
estimatedCost: number | null;
|
|
6354
6353
|
confidence: number | null;
|
|
6354
|
+
estimatedCost: number | null;
|
|
6355
6355
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6356
6356
|
soilTestId: string | null;
|
|
6357
6357
|
scheduleId: string | null;
|
|
@@ -6400,8 +6400,8 @@ export declare const fertigationRecommendationResponseSchema: z.ZodObject<{
|
|
|
6400
6400
|
createdAt: string;
|
|
6401
6401
|
updatedAt: string;
|
|
6402
6402
|
fieldId: string;
|
|
6403
|
-
estimatedCost: number | null;
|
|
6404
6403
|
confidence: number | null;
|
|
6404
|
+
estimatedCost: number | null;
|
|
6405
6405
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6406
6406
|
soilTestId: string | null;
|
|
6407
6407
|
scheduleId: string | null;
|
|
@@ -6503,8 +6503,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6503
6503
|
createdAt: string;
|
|
6504
6504
|
updatedAt: string;
|
|
6505
6505
|
fieldId: string;
|
|
6506
|
-
estimatedCost: number | null;
|
|
6507
6506
|
confidence: number | null;
|
|
6507
|
+
estimatedCost: number | null;
|
|
6508
6508
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6509
6509
|
soilTestId: string | null;
|
|
6510
6510
|
scheduleId: string | null;
|
|
@@ -6534,8 +6534,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6534
6534
|
createdAt: string;
|
|
6535
6535
|
updatedAt: string;
|
|
6536
6536
|
fieldId: string;
|
|
6537
|
-
estimatedCost: number | null;
|
|
6538
6537
|
confidence: number | null;
|
|
6538
|
+
estimatedCost: number | null;
|
|
6539
6539
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6540
6540
|
soilTestId: string | null;
|
|
6541
6541
|
scheduleId: string | null;
|
|
@@ -6572,8 +6572,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6572
6572
|
createdAt: string;
|
|
6573
6573
|
updatedAt: string;
|
|
6574
6574
|
fieldId: string;
|
|
6575
|
-
estimatedCost: number | null;
|
|
6576
6575
|
confidence: number | null;
|
|
6576
|
+
estimatedCost: number | null;
|
|
6577
6577
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6578
6578
|
soilTestId: string | null;
|
|
6579
6579
|
scheduleId: string | null;
|
|
@@ -6610,8 +6610,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6610
6610
|
createdAt: string;
|
|
6611
6611
|
updatedAt: string;
|
|
6612
6612
|
fieldId: string;
|
|
6613
|
-
estimatedCost: number | null;
|
|
6614
6613
|
confidence: number | null;
|
|
6614
|
+
estimatedCost: number | null;
|
|
6615
6615
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6616
6616
|
soilTestId: string | null;
|
|
6617
6617
|
scheduleId: string | null;
|
|
@@ -6674,8 +6674,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6674
6674
|
createdAt: string;
|
|
6675
6675
|
updatedAt: string;
|
|
6676
6676
|
fieldId: string;
|
|
6677
|
-
estimatedCost: number | null;
|
|
6678
6677
|
confidence: number | null;
|
|
6678
|
+
estimatedCost: number | null;
|
|
6679
6679
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6680
6680
|
soilTestId: string | null;
|
|
6681
6681
|
scheduleId: string | null;
|
|
@@ -6724,8 +6724,8 @@ export declare const fertigationRecommendationListResponseSchema: z.ZodObject<{
|
|
|
6724
6724
|
createdAt: string;
|
|
6725
6725
|
updatedAt: string;
|
|
6726
6726
|
fieldId: string;
|
|
6727
|
-
estimatedCost: number | null;
|
|
6728
6727
|
confidence: number | null;
|
|
6728
|
+
estimatedCost: number | null;
|
|
6729
6729
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6730
6730
|
soilTestId: string | null;
|
|
6731
6731
|
scheduleId: string | null;
|
|
@@ -6827,8 +6827,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
6827
6827
|
createdAt: string;
|
|
6828
6828
|
updatedAt: string;
|
|
6829
6829
|
fieldId: string;
|
|
6830
|
-
estimatedCost: number | null;
|
|
6831
6830
|
confidence: number | null;
|
|
6831
|
+
estimatedCost: number | null;
|
|
6832
6832
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6833
6833
|
soilTestId: string | null;
|
|
6834
6834
|
scheduleId: string | null;
|
|
@@ -6858,8 +6858,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
6858
6858
|
createdAt: string;
|
|
6859
6859
|
updatedAt: string;
|
|
6860
6860
|
fieldId: string;
|
|
6861
|
-
estimatedCost: number | null;
|
|
6862
6861
|
confidence: number | null;
|
|
6862
|
+
estimatedCost: number | null;
|
|
6863
6863
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6864
6864
|
soilTestId: string | null;
|
|
6865
6865
|
scheduleId: string | null;
|
|
@@ -6896,8 +6896,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
6896
6896
|
createdAt: string;
|
|
6897
6897
|
updatedAt: string;
|
|
6898
6898
|
fieldId: string;
|
|
6899
|
-
estimatedCost: number | null;
|
|
6900
6899
|
confidence: number | null;
|
|
6900
|
+
estimatedCost: number | null;
|
|
6901
6901
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6902
6902
|
soilTestId: string | null;
|
|
6903
6903
|
scheduleId: string | null;
|
|
@@ -6934,8 +6934,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
6934
6934
|
createdAt: string;
|
|
6935
6935
|
updatedAt: string;
|
|
6936
6936
|
fieldId: string;
|
|
6937
|
-
estimatedCost: number | null;
|
|
6938
6937
|
confidence: number | null;
|
|
6938
|
+
estimatedCost: number | null;
|
|
6939
6939
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
6940
6940
|
soilTestId: string | null;
|
|
6941
6941
|
scheduleId: string | null;
|
|
@@ -7027,6 +7027,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7027
7027
|
fieldId: string;
|
|
7028
7028
|
notes: string | null;
|
|
7029
7029
|
cropName: string;
|
|
7030
|
+
estimatedTotalCost: number | null;
|
|
7030
7031
|
cropNutrientProfileId: string;
|
|
7031
7032
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7032
7033
|
baselineSoilTestId: string | null;
|
|
@@ -7043,7 +7044,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7043
7044
|
applicationEfficiency: number;
|
|
7044
7045
|
weeklyFrequency: number;
|
|
7045
7046
|
totalWeeks: number | null;
|
|
7046
|
-
estimatedTotalCost: number | null;
|
|
7047
7047
|
actualTotalCost: number | null;
|
|
7048
7048
|
fieldName?: string | undefined;
|
|
7049
7049
|
pendingEvents?: number | undefined;
|
|
@@ -7060,6 +7060,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7060
7060
|
fieldId: string;
|
|
7061
7061
|
notes: string | null;
|
|
7062
7062
|
cropName: string;
|
|
7063
|
+
estimatedTotalCost: number | null;
|
|
7063
7064
|
cropNutrientProfileId: string;
|
|
7064
7065
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7065
7066
|
baselineSoilTestId: string | null;
|
|
@@ -7076,7 +7077,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7076
7077
|
applicationEfficiency: number;
|
|
7077
7078
|
weeklyFrequency: number;
|
|
7078
7079
|
totalWeeks: number | null;
|
|
7079
|
-
estimatedTotalCost: number | null;
|
|
7080
7080
|
actualTotalCost: number | null;
|
|
7081
7081
|
fieldName?: string | undefined;
|
|
7082
7082
|
pendingEvents?: number | undefined;
|
|
@@ -7100,6 +7100,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7100
7100
|
fieldId: string;
|
|
7101
7101
|
notes: string | null;
|
|
7102
7102
|
cropName: string;
|
|
7103
|
+
estimatedTotalCost: number | null;
|
|
7103
7104
|
cropNutrientProfileId: string;
|
|
7104
7105
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7105
7106
|
baselineSoilTestId: string | null;
|
|
@@ -7116,7 +7117,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7116
7117
|
applicationEfficiency: number;
|
|
7117
7118
|
weeklyFrequency: number;
|
|
7118
7119
|
totalWeeks: number | null;
|
|
7119
|
-
estimatedTotalCost: number | null;
|
|
7120
7120
|
actualTotalCost: number | null;
|
|
7121
7121
|
fieldName?: string | undefined;
|
|
7122
7122
|
pendingEvents?: number | undefined;
|
|
@@ -7140,6 +7140,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7140
7140
|
fieldId: string;
|
|
7141
7141
|
notes: string | null;
|
|
7142
7142
|
cropName: string;
|
|
7143
|
+
estimatedTotalCost: number | null;
|
|
7143
7144
|
cropNutrientProfileId: string;
|
|
7144
7145
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7145
7146
|
baselineSoilTestId: string | null;
|
|
@@ -7156,7 +7157,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7156
7157
|
applicationEfficiency: number;
|
|
7157
7158
|
weeklyFrequency: number;
|
|
7158
7159
|
totalWeeks: number | null;
|
|
7159
|
-
estimatedTotalCost: number | null;
|
|
7160
7160
|
actualTotalCost: number | null;
|
|
7161
7161
|
fieldName?: string | undefined;
|
|
7162
7162
|
pendingEvents?: number | undefined;
|
|
@@ -7176,8 +7176,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7176
7176
|
createdAt: string;
|
|
7177
7177
|
updatedAt: string;
|
|
7178
7178
|
fieldId: string;
|
|
7179
|
-
estimatedCost: number | null;
|
|
7180
7179
|
confidence: number | null;
|
|
7180
|
+
estimatedCost: number | null;
|
|
7181
7181
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
7182
7182
|
soilTestId: string | null;
|
|
7183
7183
|
scheduleId: string | null;
|
|
@@ -7221,6 +7221,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7221
7221
|
fieldId: string;
|
|
7222
7222
|
notes: string | null;
|
|
7223
7223
|
cropName: string;
|
|
7224
|
+
estimatedTotalCost: number | null;
|
|
7224
7225
|
cropNutrientProfileId: string;
|
|
7225
7226
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7226
7227
|
baselineSoilTestId: string | null;
|
|
@@ -7237,7 +7238,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7237
7238
|
applicationEfficiency: number;
|
|
7238
7239
|
weeklyFrequency: number;
|
|
7239
7240
|
totalWeeks: number | null;
|
|
7240
|
-
estimatedTotalCost: number | null;
|
|
7241
7241
|
actualTotalCost: number | null;
|
|
7242
7242
|
fieldName?: string | undefined;
|
|
7243
7243
|
pendingEvents?: number | undefined;
|
|
@@ -7257,8 +7257,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7257
7257
|
createdAt: string;
|
|
7258
7258
|
updatedAt: string;
|
|
7259
7259
|
fieldId: string;
|
|
7260
|
-
estimatedCost: number | null;
|
|
7261
7260
|
confidence: number | null;
|
|
7261
|
+
estimatedCost: number | null;
|
|
7262
7262
|
applicationMethod: "fertigation" | "broadcast" | "foliar";
|
|
7263
7263
|
soilTestId: string | null;
|
|
7264
7264
|
scheduleId: string | null;
|
|
@@ -7302,6 +7302,7 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7302
7302
|
fieldId: string;
|
|
7303
7303
|
notes: string | null;
|
|
7304
7304
|
cropName: string;
|
|
7305
|
+
estimatedTotalCost: number | null;
|
|
7305
7306
|
cropNutrientProfileId: string;
|
|
7306
7307
|
currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
|
|
7307
7308
|
baselineSoilTestId: string | null;
|
|
@@ -7318,7 +7319,6 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7318
7319
|
applicationEfficiency: number;
|
|
7319
7320
|
weeklyFrequency: number;
|
|
7320
7321
|
totalWeeks: number | null;
|
|
7321
|
-
estimatedTotalCost: number | null;
|
|
7322
7322
|
actualTotalCost: number | null;
|
|
7323
7323
|
fieldName?: string | undefined;
|
|
7324
7324
|
pendingEvents?: number | undefined;
|
|
@@ -7389,11 +7389,11 @@ export declare const upcomingEventsQuerySchema: z.ZodObject<{
|
|
|
7389
7389
|
days: z.ZodDefault<z.ZodNumber>;
|
|
7390
7390
|
limit: z.ZodDefault<z.ZodNumber>;
|
|
7391
7391
|
}, "strip", z.ZodTypeAny, {
|
|
7392
|
-
limit: number;
|
|
7393
7392
|
days: number;
|
|
7393
|
+
limit: number;
|
|
7394
7394
|
}, {
|
|
7395
|
-
limit?: number | undefined;
|
|
7396
7395
|
days?: number | undefined;
|
|
7396
|
+
limit?: number | undefined;
|
|
7397
7397
|
}>;
|
|
7398
7398
|
export declare const fertigationRecommendationQuerySchema: z.ZodObject<{
|
|
7399
7399
|
'filter[fieldId]': z.ZodOptional<z.ZodString>;
|