@deepintel-ltd/farmpro-contracts 1.15.4 → 1.15.6
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/agent-workflows.routes.d.ts +56 -56
- package/dist/routes/commodity-deals.routes.d.ts +561 -6
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
- package/dist/routes/commodity-deals.routes.js +17 -1
- package/dist/routes/fertigation.routes.d.ts +160 -160
- package/dist/routes/field-activities.routes.d.ts +172 -172
- package/dist/routes/field-monitoring.routes.d.ts +50 -50
- package/dist/routes/field-observations.routes.d.ts +40 -40
- package/dist/routes/fields.routes.d.ts +461 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +19 -1
- package/dist/routes/finance.routes.d.ts +78 -78
- package/dist/routes/harvest.routes.d.ts +72 -72
- package/dist/routes/inventory.routes.d.ts +42 -42
- package/dist/routes/live-monitor.routes.d.ts +6 -6
- package/dist/routes/measurements.routes.d.ts +6 -6
- package/dist/routes/monitoring-visualization.routes.d.ts +12 -12
- package/dist/routes/prescription-maps.routes.d.ts +28 -28
- package/dist/routes/soil-tests.routes.d.ts +80 -80
- package/dist/routes/suppliers.routes.d.ts +80 -80
- package/dist/routes/waybills.routes.d.ts +56 -56
- package/dist/routes/weather.routes.d.ts +24 -24
- package/dist/routes/yield-prediction.routes.d.ts +36 -36
- package/dist/schemas/agent-workflows.schemas.d.ts +64 -64
- package/dist/schemas/commodity-deals.schemas.d.ts +728 -13
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +68 -1
- package/dist/schemas/fertigation.schemas.d.ts +72 -72
- package/dist/schemas/field-activities.schemas.d.ts +148 -148
- package/dist/schemas/field-monitoring.schemas.d.ts +30 -30
- package/dist/schemas/field-observations.schemas.d.ts +34 -34
- package/dist/schemas/fields.schemas.d.ts +286 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +26 -0
- package/dist/schemas/finance.schemas.d.ts +94 -94
- package/dist/schemas/harvest.schemas.d.ts +80 -80
- package/dist/schemas/inventory.schemas.d.ts +46 -46
- package/dist/schemas/live-monitor.schemas.d.ts +10 -10
- package/dist/schemas/measurements.schemas.d.ts +6 -6
- package/dist/schemas/monitoring-visualization.schemas.d.ts +14 -14
- package/dist/schemas/prescription-maps.schemas.d.ts +22 -22
- package/dist/schemas/recommendations.schemas.d.ts +6 -6
- package/dist/schemas/soil-tests.schemas.d.ts +84 -84
- package/dist/schemas/suppliers.schemas.d.ts +84 -84
- package/dist/schemas/waybills.schemas.d.ts +48 -48
- package/dist/schemas/weather.schemas.d.ts +68 -68
- package/dist/schemas/yield-prediction.schemas.d.ts +24 -24
- package/package.json +1 -1
|
@@ -14413,23 +14413,23 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14413
14413
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
14414
14414
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
14415
14415
|
}, "strip", z.ZodTypeAny, {
|
|
14416
|
-
unit: string;
|
|
14417
14416
|
quantity: number;
|
|
14417
|
+
unit: string;
|
|
14418
|
+
productName: string;
|
|
14418
14419
|
reason: string;
|
|
14419
14420
|
estimatedCost: number | null;
|
|
14420
14421
|
priority: number;
|
|
14421
14422
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14422
|
-
productName: string;
|
|
14423
14423
|
productId: string;
|
|
14424
14424
|
frequency: string | null;
|
|
14425
14425
|
}, {
|
|
14426
|
-
unit: string;
|
|
14427
14426
|
quantity: number;
|
|
14427
|
+
unit: string;
|
|
14428
|
+
productName: string;
|
|
14428
14429
|
reason: string;
|
|
14429
14430
|
estimatedCost: number | null;
|
|
14430
14431
|
priority: number;
|
|
14431
14432
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14432
|
-
productName: string;
|
|
14433
14433
|
productId: string;
|
|
14434
14434
|
frequency: string | null;
|
|
14435
14435
|
}>, "many">;
|
|
@@ -14460,13 +14460,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14460
14460
|
phosphorusDeficit: number | null;
|
|
14461
14461
|
potassiumDeficit: number | null;
|
|
14462
14462
|
recommendedProducts: {
|
|
14463
|
-
unit: string;
|
|
14464
14463
|
quantity: number;
|
|
14464
|
+
unit: string;
|
|
14465
|
+
productName: string;
|
|
14465
14466
|
reason: string;
|
|
14466
14467
|
estimatedCost: number | null;
|
|
14467
14468
|
priority: number;
|
|
14468
14469
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14469
|
-
productName: string;
|
|
14470
14470
|
productId: string;
|
|
14471
14471
|
frequency: string | null;
|
|
14472
14472
|
}[];
|
|
@@ -14491,13 +14491,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14491
14491
|
phosphorusDeficit: number | null;
|
|
14492
14492
|
potassiumDeficit: number | null;
|
|
14493
14493
|
recommendedProducts: {
|
|
14494
|
-
unit: string;
|
|
14495
14494
|
quantity: number;
|
|
14495
|
+
unit: string;
|
|
14496
|
+
productName: string;
|
|
14496
14497
|
reason: string;
|
|
14497
14498
|
estimatedCost: number | null;
|
|
14498
14499
|
priority: number;
|
|
14499
14500
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14500
|
-
productName: string;
|
|
14501
14501
|
productId: string;
|
|
14502
14502
|
frequency: string | null;
|
|
14503
14503
|
}[];
|
|
@@ -14529,13 +14529,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14529
14529
|
phosphorusDeficit: number | null;
|
|
14530
14530
|
potassiumDeficit: number | null;
|
|
14531
14531
|
recommendedProducts: {
|
|
14532
|
-
unit: string;
|
|
14533
14532
|
quantity: number;
|
|
14533
|
+
unit: string;
|
|
14534
|
+
productName: string;
|
|
14534
14535
|
reason: string;
|
|
14535
14536
|
estimatedCost: number | null;
|
|
14536
14537
|
priority: number;
|
|
14537
14538
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14538
|
-
productName: string;
|
|
14539
14539
|
productId: string;
|
|
14540
14540
|
frequency: string | null;
|
|
14541
14541
|
}[];
|
|
@@ -14567,13 +14567,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14567
14567
|
phosphorusDeficit: number | null;
|
|
14568
14568
|
potassiumDeficit: number | null;
|
|
14569
14569
|
recommendedProducts: {
|
|
14570
|
-
unit: string;
|
|
14571
14570
|
quantity: number;
|
|
14571
|
+
unit: string;
|
|
14572
|
+
productName: string;
|
|
14572
14573
|
reason: string;
|
|
14573
14574
|
estimatedCost: number | null;
|
|
14574
14575
|
priority: number;
|
|
14575
14576
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14576
|
-
productName: string;
|
|
14577
14577
|
productId: string;
|
|
14578
14578
|
frequency: string | null;
|
|
14579
14579
|
}[];
|
|
@@ -14631,13 +14631,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14631
14631
|
phosphorusDeficit: number | null;
|
|
14632
14632
|
potassiumDeficit: number | null;
|
|
14633
14633
|
recommendedProducts: {
|
|
14634
|
-
unit: string;
|
|
14635
14634
|
quantity: number;
|
|
14635
|
+
unit: string;
|
|
14636
|
+
productName: string;
|
|
14636
14637
|
reason: string;
|
|
14637
14638
|
estimatedCost: number | null;
|
|
14638
14639
|
priority: number;
|
|
14639
14640
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14640
|
-
productName: string;
|
|
14641
14641
|
productId: string;
|
|
14642
14642
|
frequency: string | null;
|
|
14643
14643
|
}[];
|
|
@@ -14681,13 +14681,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
14681
14681
|
phosphorusDeficit: number | null;
|
|
14682
14682
|
potassiumDeficit: number | null;
|
|
14683
14683
|
recommendedProducts: {
|
|
14684
|
-
unit: string;
|
|
14685
14684
|
quantity: number;
|
|
14685
|
+
unit: string;
|
|
14686
|
+
productName: string;
|
|
14686
14687
|
reason: string;
|
|
14687
14688
|
estimatedCost: number | null;
|
|
14688
14689
|
priority: number;
|
|
14689
14690
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
14690
|
-
productName: string;
|
|
14691
14691
|
productId: string;
|
|
14692
14692
|
frequency: string | null;
|
|
14693
14693
|
}[];
|
|
@@ -15136,23 +15136,23 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15136
15136
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
15137
15137
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
15138
15138
|
}, "strip", z.ZodTypeAny, {
|
|
15139
|
-
unit: string;
|
|
15140
15139
|
quantity: number;
|
|
15140
|
+
unit: string;
|
|
15141
|
+
productName: string;
|
|
15141
15142
|
reason: string;
|
|
15142
15143
|
estimatedCost: number | null;
|
|
15143
15144
|
priority: number;
|
|
15144
15145
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15145
|
-
productName: string;
|
|
15146
15146
|
productId: string;
|
|
15147
15147
|
frequency: string | null;
|
|
15148
15148
|
}, {
|
|
15149
|
-
unit: string;
|
|
15150
15149
|
quantity: number;
|
|
15150
|
+
unit: string;
|
|
15151
|
+
productName: string;
|
|
15151
15152
|
reason: string;
|
|
15152
15153
|
estimatedCost: number | null;
|
|
15153
15154
|
priority: number;
|
|
15154
15155
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15155
|
-
productName: string;
|
|
15156
15156
|
productId: string;
|
|
15157
15157
|
frequency: string | null;
|
|
15158
15158
|
}>, "many">;
|
|
@@ -15183,13 +15183,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15183
15183
|
phosphorusDeficit: number | null;
|
|
15184
15184
|
potassiumDeficit: number | null;
|
|
15185
15185
|
recommendedProducts: {
|
|
15186
|
-
unit: string;
|
|
15187
15186
|
quantity: number;
|
|
15187
|
+
unit: string;
|
|
15188
|
+
productName: string;
|
|
15188
15189
|
reason: string;
|
|
15189
15190
|
estimatedCost: number | null;
|
|
15190
15191
|
priority: number;
|
|
15191
15192
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15192
|
-
productName: string;
|
|
15193
15193
|
productId: string;
|
|
15194
15194
|
frequency: string | null;
|
|
15195
15195
|
}[];
|
|
@@ -15214,13 +15214,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15214
15214
|
phosphorusDeficit: number | null;
|
|
15215
15215
|
potassiumDeficit: number | null;
|
|
15216
15216
|
recommendedProducts: {
|
|
15217
|
-
unit: string;
|
|
15218
15217
|
quantity: number;
|
|
15218
|
+
unit: string;
|
|
15219
|
+
productName: string;
|
|
15219
15220
|
reason: string;
|
|
15220
15221
|
estimatedCost: number | null;
|
|
15221
15222
|
priority: number;
|
|
15222
15223
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15223
|
-
productName: string;
|
|
15224
15224
|
productId: string;
|
|
15225
15225
|
frequency: string | null;
|
|
15226
15226
|
}[];
|
|
@@ -15252,13 +15252,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15252
15252
|
phosphorusDeficit: number | null;
|
|
15253
15253
|
potassiumDeficit: number | null;
|
|
15254
15254
|
recommendedProducts: {
|
|
15255
|
-
unit: string;
|
|
15256
15255
|
quantity: number;
|
|
15256
|
+
unit: string;
|
|
15257
|
+
productName: string;
|
|
15257
15258
|
reason: string;
|
|
15258
15259
|
estimatedCost: number | null;
|
|
15259
15260
|
priority: number;
|
|
15260
15261
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15261
|
-
productName: string;
|
|
15262
15262
|
productId: string;
|
|
15263
15263
|
frequency: string | null;
|
|
15264
15264
|
}[];
|
|
@@ -15290,13 +15290,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15290
15290
|
phosphorusDeficit: number | null;
|
|
15291
15291
|
potassiumDeficit: number | null;
|
|
15292
15292
|
recommendedProducts: {
|
|
15293
|
-
unit: string;
|
|
15294
15293
|
quantity: number;
|
|
15294
|
+
unit: string;
|
|
15295
|
+
productName: string;
|
|
15295
15296
|
reason: string;
|
|
15296
15297
|
estimatedCost: number | null;
|
|
15297
15298
|
priority: number;
|
|
15298
15299
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15299
|
-
productName: string;
|
|
15300
15300
|
productId: string;
|
|
15301
15301
|
frequency: string | null;
|
|
15302
15302
|
}[];
|
|
@@ -15354,13 +15354,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15354
15354
|
phosphorusDeficit: number | null;
|
|
15355
15355
|
potassiumDeficit: number | null;
|
|
15356
15356
|
recommendedProducts: {
|
|
15357
|
-
unit: string;
|
|
15358
15357
|
quantity: number;
|
|
15358
|
+
unit: string;
|
|
15359
|
+
productName: string;
|
|
15359
15360
|
reason: string;
|
|
15360
15361
|
estimatedCost: number | null;
|
|
15361
15362
|
priority: number;
|
|
15362
15363
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15363
|
-
productName: string;
|
|
15364
15364
|
productId: string;
|
|
15365
15365
|
frequency: string | null;
|
|
15366
15366
|
}[];
|
|
@@ -15404,13 +15404,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15404
15404
|
phosphorusDeficit: number | null;
|
|
15405
15405
|
potassiumDeficit: number | null;
|
|
15406
15406
|
recommendedProducts: {
|
|
15407
|
-
unit: string;
|
|
15408
15407
|
quantity: number;
|
|
15408
|
+
unit: string;
|
|
15409
|
+
productName: string;
|
|
15409
15410
|
reason: string;
|
|
15410
15411
|
estimatedCost: number | null;
|
|
15411
15412
|
priority: number;
|
|
15412
15413
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15413
|
-
productName: string;
|
|
15414
15414
|
productId: string;
|
|
15415
15415
|
frequency: string | null;
|
|
15416
15416
|
}[];
|
|
@@ -15658,23 +15658,23 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15658
15658
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
15659
15659
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
15660
15660
|
}, "strip", z.ZodTypeAny, {
|
|
15661
|
-
unit: string;
|
|
15662
15661
|
quantity: number;
|
|
15662
|
+
unit: string;
|
|
15663
|
+
productName: string;
|
|
15663
15664
|
reason: string;
|
|
15664
15665
|
estimatedCost: number | null;
|
|
15665
15666
|
priority: number;
|
|
15666
15667
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15667
|
-
productName: string;
|
|
15668
15668
|
productId: string;
|
|
15669
15669
|
frequency: string | null;
|
|
15670
15670
|
}, {
|
|
15671
|
-
unit: string;
|
|
15672
15671
|
quantity: number;
|
|
15672
|
+
unit: string;
|
|
15673
|
+
productName: string;
|
|
15673
15674
|
reason: string;
|
|
15674
15675
|
estimatedCost: number | null;
|
|
15675
15676
|
priority: number;
|
|
15676
15677
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15677
|
-
productName: string;
|
|
15678
15678
|
productId: string;
|
|
15679
15679
|
frequency: string | null;
|
|
15680
15680
|
}>, "many">;
|
|
@@ -15705,13 +15705,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15705
15705
|
phosphorusDeficit: number | null;
|
|
15706
15706
|
potassiumDeficit: number | null;
|
|
15707
15707
|
recommendedProducts: {
|
|
15708
|
-
unit: string;
|
|
15709
15708
|
quantity: number;
|
|
15709
|
+
unit: string;
|
|
15710
|
+
productName: string;
|
|
15710
15711
|
reason: string;
|
|
15711
15712
|
estimatedCost: number | null;
|
|
15712
15713
|
priority: number;
|
|
15713
15714
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15714
|
-
productName: string;
|
|
15715
15715
|
productId: string;
|
|
15716
15716
|
frequency: string | null;
|
|
15717
15717
|
}[];
|
|
@@ -15736,13 +15736,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15736
15736
|
phosphorusDeficit: number | null;
|
|
15737
15737
|
potassiumDeficit: number | null;
|
|
15738
15738
|
recommendedProducts: {
|
|
15739
|
-
unit: string;
|
|
15740
15739
|
quantity: number;
|
|
15740
|
+
unit: string;
|
|
15741
|
+
productName: string;
|
|
15741
15742
|
reason: string;
|
|
15742
15743
|
estimatedCost: number | null;
|
|
15743
15744
|
priority: number;
|
|
15744
15745
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15745
|
-
productName: string;
|
|
15746
15746
|
productId: string;
|
|
15747
15747
|
frequency: string | null;
|
|
15748
15748
|
}[];
|
|
@@ -15774,13 +15774,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15774
15774
|
phosphorusDeficit: number | null;
|
|
15775
15775
|
potassiumDeficit: number | null;
|
|
15776
15776
|
recommendedProducts: {
|
|
15777
|
-
unit: string;
|
|
15778
15777
|
quantity: number;
|
|
15778
|
+
unit: string;
|
|
15779
|
+
productName: string;
|
|
15779
15780
|
reason: string;
|
|
15780
15781
|
estimatedCost: number | null;
|
|
15781
15782
|
priority: number;
|
|
15782
15783
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15783
|
-
productName: string;
|
|
15784
15784
|
productId: string;
|
|
15785
15785
|
frequency: string | null;
|
|
15786
15786
|
}[];
|
|
@@ -15812,13 +15812,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15812
15812
|
phosphorusDeficit: number | null;
|
|
15813
15813
|
potassiumDeficit: number | null;
|
|
15814
15814
|
recommendedProducts: {
|
|
15815
|
-
unit: string;
|
|
15816
15815
|
quantity: number;
|
|
15816
|
+
unit: string;
|
|
15817
|
+
productName: string;
|
|
15817
15818
|
reason: string;
|
|
15818
15819
|
estimatedCost: number | null;
|
|
15819
15820
|
priority: number;
|
|
15820
15821
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15821
|
-
productName: string;
|
|
15822
15822
|
productId: string;
|
|
15823
15823
|
frequency: string | null;
|
|
15824
15824
|
}[];
|
|
@@ -15876,13 +15876,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15876
15876
|
phosphorusDeficit: number | null;
|
|
15877
15877
|
potassiumDeficit: number | null;
|
|
15878
15878
|
recommendedProducts: {
|
|
15879
|
-
unit: string;
|
|
15880
15879
|
quantity: number;
|
|
15880
|
+
unit: string;
|
|
15881
|
+
productName: string;
|
|
15881
15882
|
reason: string;
|
|
15882
15883
|
estimatedCost: number | null;
|
|
15883
15884
|
priority: number;
|
|
15884
15885
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15885
|
-
productName: string;
|
|
15886
15886
|
productId: string;
|
|
15887
15887
|
frequency: string | null;
|
|
15888
15888
|
}[];
|
|
@@ -15926,13 +15926,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
15926
15926
|
phosphorusDeficit: number | null;
|
|
15927
15927
|
potassiumDeficit: number | null;
|
|
15928
15928
|
recommendedProducts: {
|
|
15929
|
-
unit: string;
|
|
15930
15929
|
quantity: number;
|
|
15930
|
+
unit: string;
|
|
15931
|
+
productName: string;
|
|
15931
15932
|
reason: string;
|
|
15932
15933
|
estimatedCost: number | null;
|
|
15933
15934
|
priority: number;
|
|
15934
15935
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
15935
|
-
productName: string;
|
|
15936
15936
|
productId: string;
|
|
15937
15937
|
frequency: string | null;
|
|
15938
15938
|
}[];
|
|
@@ -16190,23 +16190,23 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16190
16190
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
16191
16191
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
16192
16192
|
}, "strip", z.ZodTypeAny, {
|
|
16193
|
-
unit: string;
|
|
16194
16193
|
quantity: number;
|
|
16194
|
+
unit: string;
|
|
16195
|
+
productName: string;
|
|
16195
16196
|
reason: string;
|
|
16196
16197
|
estimatedCost: number | null;
|
|
16197
16198
|
priority: number;
|
|
16198
16199
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16199
|
-
productName: string;
|
|
16200
16200
|
productId: string;
|
|
16201
16201
|
frequency: string | null;
|
|
16202
16202
|
}, {
|
|
16203
|
-
unit: string;
|
|
16204
16203
|
quantity: number;
|
|
16204
|
+
unit: string;
|
|
16205
|
+
productName: string;
|
|
16205
16206
|
reason: string;
|
|
16206
16207
|
estimatedCost: number | null;
|
|
16207
16208
|
priority: number;
|
|
16208
16209
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16209
|
-
productName: string;
|
|
16210
16210
|
productId: string;
|
|
16211
16211
|
frequency: string | null;
|
|
16212
16212
|
}>, "many">;
|
|
@@ -16237,13 +16237,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16237
16237
|
phosphorusDeficit: number | null;
|
|
16238
16238
|
potassiumDeficit: number | null;
|
|
16239
16239
|
recommendedProducts: {
|
|
16240
|
-
unit: string;
|
|
16241
16240
|
quantity: number;
|
|
16241
|
+
unit: string;
|
|
16242
|
+
productName: string;
|
|
16242
16243
|
reason: string;
|
|
16243
16244
|
estimatedCost: number | null;
|
|
16244
16245
|
priority: number;
|
|
16245
16246
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16246
|
-
productName: string;
|
|
16247
16247
|
productId: string;
|
|
16248
16248
|
frequency: string | null;
|
|
16249
16249
|
}[];
|
|
@@ -16268,13 +16268,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16268
16268
|
phosphorusDeficit: number | null;
|
|
16269
16269
|
potassiumDeficit: number | null;
|
|
16270
16270
|
recommendedProducts: {
|
|
16271
|
-
unit: string;
|
|
16272
16271
|
quantity: number;
|
|
16272
|
+
unit: string;
|
|
16273
|
+
productName: string;
|
|
16273
16274
|
reason: string;
|
|
16274
16275
|
estimatedCost: number | null;
|
|
16275
16276
|
priority: number;
|
|
16276
16277
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16277
|
-
productName: string;
|
|
16278
16278
|
productId: string;
|
|
16279
16279
|
frequency: string | null;
|
|
16280
16280
|
}[];
|
|
@@ -16306,13 +16306,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16306
16306
|
phosphorusDeficit: number | null;
|
|
16307
16307
|
potassiumDeficit: number | null;
|
|
16308
16308
|
recommendedProducts: {
|
|
16309
|
-
unit: string;
|
|
16310
16309
|
quantity: number;
|
|
16310
|
+
unit: string;
|
|
16311
|
+
productName: string;
|
|
16311
16312
|
reason: string;
|
|
16312
16313
|
estimatedCost: number | null;
|
|
16313
16314
|
priority: number;
|
|
16314
16315
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16315
|
-
productName: string;
|
|
16316
16316
|
productId: string;
|
|
16317
16317
|
frequency: string | null;
|
|
16318
16318
|
}[];
|
|
@@ -16344,13 +16344,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16344
16344
|
phosphorusDeficit: number | null;
|
|
16345
16345
|
potassiumDeficit: number | null;
|
|
16346
16346
|
recommendedProducts: {
|
|
16347
|
-
unit: string;
|
|
16348
16347
|
quantity: number;
|
|
16348
|
+
unit: string;
|
|
16349
|
+
productName: string;
|
|
16349
16350
|
reason: string;
|
|
16350
16351
|
estimatedCost: number | null;
|
|
16351
16352
|
priority: number;
|
|
16352
16353
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16353
|
-
productName: string;
|
|
16354
16354
|
productId: string;
|
|
16355
16355
|
frequency: string | null;
|
|
16356
16356
|
}[];
|
|
@@ -16586,13 +16586,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16586
16586
|
phosphorusDeficit: number | null;
|
|
16587
16587
|
potassiumDeficit: number | null;
|
|
16588
16588
|
recommendedProducts: {
|
|
16589
|
-
unit: string;
|
|
16590
16589
|
quantity: number;
|
|
16590
|
+
unit: string;
|
|
16591
|
+
productName: string;
|
|
16591
16592
|
reason: string;
|
|
16592
16593
|
estimatedCost: number | null;
|
|
16593
16594
|
priority: number;
|
|
16594
16595
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16595
|
-
productName: string;
|
|
16596
16596
|
productId: string;
|
|
16597
16597
|
frequency: string | null;
|
|
16598
16598
|
}[];
|
|
@@ -16667,13 +16667,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
16667
16667
|
phosphorusDeficit: number | null;
|
|
16668
16668
|
potassiumDeficit: number | null;
|
|
16669
16669
|
recommendedProducts: {
|
|
16670
|
-
unit: string;
|
|
16671
16670
|
quantity: number;
|
|
16671
|
+
unit: string;
|
|
16672
|
+
productName: string;
|
|
16672
16673
|
reason: string;
|
|
16673
16674
|
estimatedCost: number | null;
|
|
16674
16675
|
priority: number;
|
|
16675
16676
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
16676
|
-
productName: string;
|
|
16677
16677
|
productId: string;
|
|
16678
16678
|
frequency: string | null;
|
|
16679
16679
|
}[];
|
|
@@ -17049,23 +17049,23 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17049
17049
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
17050
17050
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
17051
17051
|
}, "strip", z.ZodTypeAny, {
|
|
17052
|
-
unit: string;
|
|
17053
17052
|
quantity: number;
|
|
17053
|
+
unit: string;
|
|
17054
|
+
productName: string;
|
|
17054
17055
|
reason: string;
|
|
17055
17056
|
estimatedCost: number | null;
|
|
17056
17057
|
priority: number;
|
|
17057
17058
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17058
|
-
productName: string;
|
|
17059
17059
|
productId: string;
|
|
17060
17060
|
frequency: string | null;
|
|
17061
17061
|
}, {
|
|
17062
|
-
unit: string;
|
|
17063
17062
|
quantity: number;
|
|
17063
|
+
unit: string;
|
|
17064
|
+
productName: string;
|
|
17064
17065
|
reason: string;
|
|
17065
17066
|
estimatedCost: number | null;
|
|
17066
17067
|
priority: number;
|
|
17067
17068
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17068
|
-
productName: string;
|
|
17069
17069
|
productId: string;
|
|
17070
17070
|
frequency: string | null;
|
|
17071
17071
|
}>, "many">;
|
|
@@ -17096,13 +17096,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17096
17096
|
phosphorusDeficit: number | null;
|
|
17097
17097
|
potassiumDeficit: number | null;
|
|
17098
17098
|
recommendedProducts: {
|
|
17099
|
-
unit: string;
|
|
17100
17099
|
quantity: number;
|
|
17100
|
+
unit: string;
|
|
17101
|
+
productName: string;
|
|
17101
17102
|
reason: string;
|
|
17102
17103
|
estimatedCost: number | null;
|
|
17103
17104
|
priority: number;
|
|
17104
17105
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17105
|
-
productName: string;
|
|
17106
17106
|
productId: string;
|
|
17107
17107
|
frequency: string | null;
|
|
17108
17108
|
}[];
|
|
@@ -17127,13 +17127,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17127
17127
|
phosphorusDeficit: number | null;
|
|
17128
17128
|
potassiumDeficit: number | null;
|
|
17129
17129
|
recommendedProducts: {
|
|
17130
|
-
unit: string;
|
|
17131
17130
|
quantity: number;
|
|
17131
|
+
unit: string;
|
|
17132
|
+
productName: string;
|
|
17132
17133
|
reason: string;
|
|
17133
17134
|
estimatedCost: number | null;
|
|
17134
17135
|
priority: number;
|
|
17135
17136
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17136
|
-
productName: string;
|
|
17137
17137
|
productId: string;
|
|
17138
17138
|
frequency: string | null;
|
|
17139
17139
|
}[];
|
|
@@ -17165,13 +17165,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17165
17165
|
phosphorusDeficit: number | null;
|
|
17166
17166
|
potassiumDeficit: number | null;
|
|
17167
17167
|
recommendedProducts: {
|
|
17168
|
-
unit: string;
|
|
17169
17168
|
quantity: number;
|
|
17169
|
+
unit: string;
|
|
17170
|
+
productName: string;
|
|
17170
17171
|
reason: string;
|
|
17171
17172
|
estimatedCost: number | null;
|
|
17172
17173
|
priority: number;
|
|
17173
17174
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17174
|
-
productName: string;
|
|
17175
17175
|
productId: string;
|
|
17176
17176
|
frequency: string | null;
|
|
17177
17177
|
}[];
|
|
@@ -17203,13 +17203,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17203
17203
|
phosphorusDeficit: number | null;
|
|
17204
17204
|
potassiumDeficit: number | null;
|
|
17205
17205
|
recommendedProducts: {
|
|
17206
|
-
unit: string;
|
|
17207
17206
|
quantity: number;
|
|
17207
|
+
unit: string;
|
|
17208
|
+
productName: string;
|
|
17208
17209
|
reason: string;
|
|
17209
17210
|
estimatedCost: number | null;
|
|
17210
17211
|
priority: number;
|
|
17211
17212
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17212
|
-
productName: string;
|
|
17213
17213
|
productId: string;
|
|
17214
17214
|
frequency: string | null;
|
|
17215
17215
|
}[];
|
|
@@ -17267,13 +17267,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17267
17267
|
phosphorusDeficit: number | null;
|
|
17268
17268
|
potassiumDeficit: number | null;
|
|
17269
17269
|
recommendedProducts: {
|
|
17270
|
-
unit: string;
|
|
17271
17270
|
quantity: number;
|
|
17271
|
+
unit: string;
|
|
17272
|
+
productName: string;
|
|
17272
17273
|
reason: string;
|
|
17273
17274
|
estimatedCost: number | null;
|
|
17274
17275
|
priority: number;
|
|
17275
17276
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17276
|
-
productName: string;
|
|
17277
17277
|
productId: string;
|
|
17278
17278
|
frequency: string | null;
|
|
17279
17279
|
}[];
|
|
@@ -17317,13 +17317,13 @@ export declare const fertigationRecommendationsRouter: {
|
|
|
17317
17317
|
phosphorusDeficit: number | null;
|
|
17318
17318
|
potassiumDeficit: number | null;
|
|
17319
17319
|
recommendedProducts: {
|
|
17320
|
-
unit: string;
|
|
17321
17320
|
quantity: number;
|
|
17321
|
+
unit: string;
|
|
17322
|
+
productName: string;
|
|
17322
17323
|
reason: string;
|
|
17323
17324
|
estimatedCost: number | null;
|
|
17324
17325
|
priority: number;
|
|
17325
17326
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
17326
|
-
productName: string;
|
|
17327
17327
|
productId: string;
|
|
17328
17328
|
frequency: string | null;
|
|
17329
17329
|
}[];
|
|
@@ -32037,23 +32037,23 @@ export declare const fertigationRouter: {
|
|
|
32037
32037
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
32038
32038
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
32039
32039
|
}, "strip", z.ZodTypeAny, {
|
|
32040
|
-
unit: string;
|
|
32041
32040
|
quantity: number;
|
|
32041
|
+
unit: string;
|
|
32042
|
+
productName: string;
|
|
32042
32043
|
reason: string;
|
|
32043
32044
|
estimatedCost: number | null;
|
|
32044
32045
|
priority: number;
|
|
32045
32046
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32046
|
-
productName: string;
|
|
32047
32047
|
productId: string;
|
|
32048
32048
|
frequency: string | null;
|
|
32049
32049
|
}, {
|
|
32050
|
-
unit: string;
|
|
32051
32050
|
quantity: number;
|
|
32051
|
+
unit: string;
|
|
32052
|
+
productName: string;
|
|
32052
32053
|
reason: string;
|
|
32053
32054
|
estimatedCost: number | null;
|
|
32054
32055
|
priority: number;
|
|
32055
32056
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32056
|
-
productName: string;
|
|
32057
32057
|
productId: string;
|
|
32058
32058
|
frequency: string | null;
|
|
32059
32059
|
}>, "many">;
|
|
@@ -32084,13 +32084,13 @@ export declare const fertigationRouter: {
|
|
|
32084
32084
|
phosphorusDeficit: number | null;
|
|
32085
32085
|
potassiumDeficit: number | null;
|
|
32086
32086
|
recommendedProducts: {
|
|
32087
|
-
unit: string;
|
|
32088
32087
|
quantity: number;
|
|
32088
|
+
unit: string;
|
|
32089
|
+
productName: string;
|
|
32089
32090
|
reason: string;
|
|
32090
32091
|
estimatedCost: number | null;
|
|
32091
32092
|
priority: number;
|
|
32092
32093
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32093
|
-
productName: string;
|
|
32094
32094
|
productId: string;
|
|
32095
32095
|
frequency: string | null;
|
|
32096
32096
|
}[];
|
|
@@ -32115,13 +32115,13 @@ export declare const fertigationRouter: {
|
|
|
32115
32115
|
phosphorusDeficit: number | null;
|
|
32116
32116
|
potassiumDeficit: number | null;
|
|
32117
32117
|
recommendedProducts: {
|
|
32118
|
-
unit: string;
|
|
32119
32118
|
quantity: number;
|
|
32119
|
+
unit: string;
|
|
32120
|
+
productName: string;
|
|
32120
32121
|
reason: string;
|
|
32121
32122
|
estimatedCost: number | null;
|
|
32122
32123
|
priority: number;
|
|
32123
32124
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32124
|
-
productName: string;
|
|
32125
32125
|
productId: string;
|
|
32126
32126
|
frequency: string | null;
|
|
32127
32127
|
}[];
|
|
@@ -32153,13 +32153,13 @@ export declare const fertigationRouter: {
|
|
|
32153
32153
|
phosphorusDeficit: number | null;
|
|
32154
32154
|
potassiumDeficit: number | null;
|
|
32155
32155
|
recommendedProducts: {
|
|
32156
|
-
unit: string;
|
|
32157
32156
|
quantity: number;
|
|
32157
|
+
unit: string;
|
|
32158
|
+
productName: string;
|
|
32158
32159
|
reason: string;
|
|
32159
32160
|
estimatedCost: number | null;
|
|
32160
32161
|
priority: number;
|
|
32161
32162
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32162
|
-
productName: string;
|
|
32163
32163
|
productId: string;
|
|
32164
32164
|
frequency: string | null;
|
|
32165
32165
|
}[];
|
|
@@ -32191,13 +32191,13 @@ export declare const fertigationRouter: {
|
|
|
32191
32191
|
phosphorusDeficit: number | null;
|
|
32192
32192
|
potassiumDeficit: number | null;
|
|
32193
32193
|
recommendedProducts: {
|
|
32194
|
-
unit: string;
|
|
32195
32194
|
quantity: number;
|
|
32195
|
+
unit: string;
|
|
32196
|
+
productName: string;
|
|
32196
32197
|
reason: string;
|
|
32197
32198
|
estimatedCost: number | null;
|
|
32198
32199
|
priority: number;
|
|
32199
32200
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32200
|
-
productName: string;
|
|
32201
32201
|
productId: string;
|
|
32202
32202
|
frequency: string | null;
|
|
32203
32203
|
}[];
|
|
@@ -32255,13 +32255,13 @@ export declare const fertigationRouter: {
|
|
|
32255
32255
|
phosphorusDeficit: number | null;
|
|
32256
32256
|
potassiumDeficit: number | null;
|
|
32257
32257
|
recommendedProducts: {
|
|
32258
|
-
unit: string;
|
|
32259
32258
|
quantity: number;
|
|
32259
|
+
unit: string;
|
|
32260
|
+
productName: string;
|
|
32260
32261
|
reason: string;
|
|
32261
32262
|
estimatedCost: number | null;
|
|
32262
32263
|
priority: number;
|
|
32263
32264
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32264
|
-
productName: string;
|
|
32265
32265
|
productId: string;
|
|
32266
32266
|
frequency: string | null;
|
|
32267
32267
|
}[];
|
|
@@ -32305,13 +32305,13 @@ export declare const fertigationRouter: {
|
|
|
32305
32305
|
phosphorusDeficit: number | null;
|
|
32306
32306
|
potassiumDeficit: number | null;
|
|
32307
32307
|
recommendedProducts: {
|
|
32308
|
-
unit: string;
|
|
32309
32308
|
quantity: number;
|
|
32309
|
+
unit: string;
|
|
32310
|
+
productName: string;
|
|
32310
32311
|
reason: string;
|
|
32311
32312
|
estimatedCost: number | null;
|
|
32312
32313
|
priority: number;
|
|
32313
32314
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32314
|
-
productName: string;
|
|
32315
32315
|
productId: string;
|
|
32316
32316
|
frequency: string | null;
|
|
32317
32317
|
}[];
|
|
@@ -32760,23 +32760,23 @@ export declare const fertigationRouter: {
|
|
|
32760
32760
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
32761
32761
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
32762
32762
|
}, "strip", z.ZodTypeAny, {
|
|
32763
|
-
unit: string;
|
|
32764
32763
|
quantity: number;
|
|
32764
|
+
unit: string;
|
|
32765
|
+
productName: string;
|
|
32765
32766
|
reason: string;
|
|
32766
32767
|
estimatedCost: number | null;
|
|
32767
32768
|
priority: number;
|
|
32768
32769
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32769
|
-
productName: string;
|
|
32770
32770
|
productId: string;
|
|
32771
32771
|
frequency: string | null;
|
|
32772
32772
|
}, {
|
|
32773
|
-
unit: string;
|
|
32774
32773
|
quantity: number;
|
|
32774
|
+
unit: string;
|
|
32775
|
+
productName: string;
|
|
32775
32776
|
reason: string;
|
|
32776
32777
|
estimatedCost: number | null;
|
|
32777
32778
|
priority: number;
|
|
32778
32779
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32779
|
-
productName: string;
|
|
32780
32780
|
productId: string;
|
|
32781
32781
|
frequency: string | null;
|
|
32782
32782
|
}>, "many">;
|
|
@@ -32807,13 +32807,13 @@ export declare const fertigationRouter: {
|
|
|
32807
32807
|
phosphorusDeficit: number | null;
|
|
32808
32808
|
potassiumDeficit: number | null;
|
|
32809
32809
|
recommendedProducts: {
|
|
32810
|
-
unit: string;
|
|
32811
32810
|
quantity: number;
|
|
32811
|
+
unit: string;
|
|
32812
|
+
productName: string;
|
|
32812
32813
|
reason: string;
|
|
32813
32814
|
estimatedCost: number | null;
|
|
32814
32815
|
priority: number;
|
|
32815
32816
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32816
|
-
productName: string;
|
|
32817
32817
|
productId: string;
|
|
32818
32818
|
frequency: string | null;
|
|
32819
32819
|
}[];
|
|
@@ -32838,13 +32838,13 @@ export declare const fertigationRouter: {
|
|
|
32838
32838
|
phosphorusDeficit: number | null;
|
|
32839
32839
|
potassiumDeficit: number | null;
|
|
32840
32840
|
recommendedProducts: {
|
|
32841
|
-
unit: string;
|
|
32842
32841
|
quantity: number;
|
|
32842
|
+
unit: string;
|
|
32843
|
+
productName: string;
|
|
32843
32844
|
reason: string;
|
|
32844
32845
|
estimatedCost: number | null;
|
|
32845
32846
|
priority: number;
|
|
32846
32847
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32847
|
-
productName: string;
|
|
32848
32848
|
productId: string;
|
|
32849
32849
|
frequency: string | null;
|
|
32850
32850
|
}[];
|
|
@@ -32876,13 +32876,13 @@ export declare const fertigationRouter: {
|
|
|
32876
32876
|
phosphorusDeficit: number | null;
|
|
32877
32877
|
potassiumDeficit: number | null;
|
|
32878
32878
|
recommendedProducts: {
|
|
32879
|
-
unit: string;
|
|
32880
32879
|
quantity: number;
|
|
32880
|
+
unit: string;
|
|
32881
|
+
productName: string;
|
|
32881
32882
|
reason: string;
|
|
32882
32883
|
estimatedCost: number | null;
|
|
32883
32884
|
priority: number;
|
|
32884
32885
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32885
|
-
productName: string;
|
|
32886
32886
|
productId: string;
|
|
32887
32887
|
frequency: string | null;
|
|
32888
32888
|
}[];
|
|
@@ -32914,13 +32914,13 @@ export declare const fertigationRouter: {
|
|
|
32914
32914
|
phosphorusDeficit: number | null;
|
|
32915
32915
|
potassiumDeficit: number | null;
|
|
32916
32916
|
recommendedProducts: {
|
|
32917
|
-
unit: string;
|
|
32918
32917
|
quantity: number;
|
|
32918
|
+
unit: string;
|
|
32919
|
+
productName: string;
|
|
32919
32920
|
reason: string;
|
|
32920
32921
|
estimatedCost: number | null;
|
|
32921
32922
|
priority: number;
|
|
32922
32923
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32923
|
-
productName: string;
|
|
32924
32924
|
productId: string;
|
|
32925
32925
|
frequency: string | null;
|
|
32926
32926
|
}[];
|
|
@@ -32978,13 +32978,13 @@ export declare const fertigationRouter: {
|
|
|
32978
32978
|
phosphorusDeficit: number | null;
|
|
32979
32979
|
potassiumDeficit: number | null;
|
|
32980
32980
|
recommendedProducts: {
|
|
32981
|
-
unit: string;
|
|
32982
32981
|
quantity: number;
|
|
32982
|
+
unit: string;
|
|
32983
|
+
productName: string;
|
|
32983
32984
|
reason: string;
|
|
32984
32985
|
estimatedCost: number | null;
|
|
32985
32986
|
priority: number;
|
|
32986
32987
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
32987
|
-
productName: string;
|
|
32988
32988
|
productId: string;
|
|
32989
32989
|
frequency: string | null;
|
|
32990
32990
|
}[];
|
|
@@ -33028,13 +33028,13 @@ export declare const fertigationRouter: {
|
|
|
33028
33028
|
phosphorusDeficit: number | null;
|
|
33029
33029
|
potassiumDeficit: number | null;
|
|
33030
33030
|
recommendedProducts: {
|
|
33031
|
-
unit: string;
|
|
33032
33031
|
quantity: number;
|
|
33032
|
+
unit: string;
|
|
33033
|
+
productName: string;
|
|
33033
33034
|
reason: string;
|
|
33034
33035
|
estimatedCost: number | null;
|
|
33035
33036
|
priority: number;
|
|
33036
33037
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33037
|
-
productName: string;
|
|
33038
33038
|
productId: string;
|
|
33039
33039
|
frequency: string | null;
|
|
33040
33040
|
}[];
|
|
@@ -33282,23 +33282,23 @@ export declare const fertigationRouter: {
|
|
|
33282
33282
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
33283
33283
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
33284
33284
|
}, "strip", z.ZodTypeAny, {
|
|
33285
|
-
unit: string;
|
|
33286
33285
|
quantity: number;
|
|
33286
|
+
unit: string;
|
|
33287
|
+
productName: string;
|
|
33287
33288
|
reason: string;
|
|
33288
33289
|
estimatedCost: number | null;
|
|
33289
33290
|
priority: number;
|
|
33290
33291
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33291
|
-
productName: string;
|
|
33292
33292
|
productId: string;
|
|
33293
33293
|
frequency: string | null;
|
|
33294
33294
|
}, {
|
|
33295
|
-
unit: string;
|
|
33296
33295
|
quantity: number;
|
|
33296
|
+
unit: string;
|
|
33297
|
+
productName: string;
|
|
33297
33298
|
reason: string;
|
|
33298
33299
|
estimatedCost: number | null;
|
|
33299
33300
|
priority: number;
|
|
33300
33301
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33301
|
-
productName: string;
|
|
33302
33302
|
productId: string;
|
|
33303
33303
|
frequency: string | null;
|
|
33304
33304
|
}>, "many">;
|
|
@@ -33329,13 +33329,13 @@ export declare const fertigationRouter: {
|
|
|
33329
33329
|
phosphorusDeficit: number | null;
|
|
33330
33330
|
potassiumDeficit: number | null;
|
|
33331
33331
|
recommendedProducts: {
|
|
33332
|
-
unit: string;
|
|
33333
33332
|
quantity: number;
|
|
33333
|
+
unit: string;
|
|
33334
|
+
productName: string;
|
|
33334
33335
|
reason: string;
|
|
33335
33336
|
estimatedCost: number | null;
|
|
33336
33337
|
priority: number;
|
|
33337
33338
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33338
|
-
productName: string;
|
|
33339
33339
|
productId: string;
|
|
33340
33340
|
frequency: string | null;
|
|
33341
33341
|
}[];
|
|
@@ -33360,13 +33360,13 @@ export declare const fertigationRouter: {
|
|
|
33360
33360
|
phosphorusDeficit: number | null;
|
|
33361
33361
|
potassiumDeficit: number | null;
|
|
33362
33362
|
recommendedProducts: {
|
|
33363
|
-
unit: string;
|
|
33364
33363
|
quantity: number;
|
|
33364
|
+
unit: string;
|
|
33365
|
+
productName: string;
|
|
33365
33366
|
reason: string;
|
|
33366
33367
|
estimatedCost: number | null;
|
|
33367
33368
|
priority: number;
|
|
33368
33369
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33369
|
-
productName: string;
|
|
33370
33370
|
productId: string;
|
|
33371
33371
|
frequency: string | null;
|
|
33372
33372
|
}[];
|
|
@@ -33398,13 +33398,13 @@ export declare const fertigationRouter: {
|
|
|
33398
33398
|
phosphorusDeficit: number | null;
|
|
33399
33399
|
potassiumDeficit: number | null;
|
|
33400
33400
|
recommendedProducts: {
|
|
33401
|
-
unit: string;
|
|
33402
33401
|
quantity: number;
|
|
33402
|
+
unit: string;
|
|
33403
|
+
productName: string;
|
|
33403
33404
|
reason: string;
|
|
33404
33405
|
estimatedCost: number | null;
|
|
33405
33406
|
priority: number;
|
|
33406
33407
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33407
|
-
productName: string;
|
|
33408
33408
|
productId: string;
|
|
33409
33409
|
frequency: string | null;
|
|
33410
33410
|
}[];
|
|
@@ -33436,13 +33436,13 @@ export declare const fertigationRouter: {
|
|
|
33436
33436
|
phosphorusDeficit: number | null;
|
|
33437
33437
|
potassiumDeficit: number | null;
|
|
33438
33438
|
recommendedProducts: {
|
|
33439
|
-
unit: string;
|
|
33440
33439
|
quantity: number;
|
|
33440
|
+
unit: string;
|
|
33441
|
+
productName: string;
|
|
33441
33442
|
reason: string;
|
|
33442
33443
|
estimatedCost: number | null;
|
|
33443
33444
|
priority: number;
|
|
33444
33445
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33445
|
-
productName: string;
|
|
33446
33446
|
productId: string;
|
|
33447
33447
|
frequency: string | null;
|
|
33448
33448
|
}[];
|
|
@@ -33500,13 +33500,13 @@ export declare const fertigationRouter: {
|
|
|
33500
33500
|
phosphorusDeficit: number | null;
|
|
33501
33501
|
potassiumDeficit: number | null;
|
|
33502
33502
|
recommendedProducts: {
|
|
33503
|
-
unit: string;
|
|
33504
33503
|
quantity: number;
|
|
33504
|
+
unit: string;
|
|
33505
|
+
productName: string;
|
|
33505
33506
|
reason: string;
|
|
33506
33507
|
estimatedCost: number | null;
|
|
33507
33508
|
priority: number;
|
|
33508
33509
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33509
|
-
productName: string;
|
|
33510
33510
|
productId: string;
|
|
33511
33511
|
frequency: string | null;
|
|
33512
33512
|
}[];
|
|
@@ -33550,13 +33550,13 @@ export declare const fertigationRouter: {
|
|
|
33550
33550
|
phosphorusDeficit: number | null;
|
|
33551
33551
|
potassiumDeficit: number | null;
|
|
33552
33552
|
recommendedProducts: {
|
|
33553
|
-
unit: string;
|
|
33554
33553
|
quantity: number;
|
|
33554
|
+
unit: string;
|
|
33555
|
+
productName: string;
|
|
33555
33556
|
reason: string;
|
|
33556
33557
|
estimatedCost: number | null;
|
|
33557
33558
|
priority: number;
|
|
33558
33559
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33559
|
-
productName: string;
|
|
33560
33560
|
productId: string;
|
|
33561
33561
|
frequency: string | null;
|
|
33562
33562
|
}[];
|
|
@@ -33814,23 +33814,23 @@ export declare const fertigationRouter: {
|
|
|
33814
33814
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
33815
33815
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
33816
33816
|
}, "strip", z.ZodTypeAny, {
|
|
33817
|
-
unit: string;
|
|
33818
33817
|
quantity: number;
|
|
33818
|
+
unit: string;
|
|
33819
|
+
productName: string;
|
|
33819
33820
|
reason: string;
|
|
33820
33821
|
estimatedCost: number | null;
|
|
33821
33822
|
priority: number;
|
|
33822
33823
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33823
|
-
productName: string;
|
|
33824
33824
|
productId: string;
|
|
33825
33825
|
frequency: string | null;
|
|
33826
33826
|
}, {
|
|
33827
|
-
unit: string;
|
|
33828
33827
|
quantity: number;
|
|
33828
|
+
unit: string;
|
|
33829
|
+
productName: string;
|
|
33829
33830
|
reason: string;
|
|
33830
33831
|
estimatedCost: number | null;
|
|
33831
33832
|
priority: number;
|
|
33832
33833
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33833
|
-
productName: string;
|
|
33834
33834
|
productId: string;
|
|
33835
33835
|
frequency: string | null;
|
|
33836
33836
|
}>, "many">;
|
|
@@ -33861,13 +33861,13 @@ export declare const fertigationRouter: {
|
|
|
33861
33861
|
phosphorusDeficit: number | null;
|
|
33862
33862
|
potassiumDeficit: number | null;
|
|
33863
33863
|
recommendedProducts: {
|
|
33864
|
-
unit: string;
|
|
33865
33864
|
quantity: number;
|
|
33865
|
+
unit: string;
|
|
33866
|
+
productName: string;
|
|
33866
33867
|
reason: string;
|
|
33867
33868
|
estimatedCost: number | null;
|
|
33868
33869
|
priority: number;
|
|
33869
33870
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33870
|
-
productName: string;
|
|
33871
33871
|
productId: string;
|
|
33872
33872
|
frequency: string | null;
|
|
33873
33873
|
}[];
|
|
@@ -33892,13 +33892,13 @@ export declare const fertigationRouter: {
|
|
|
33892
33892
|
phosphorusDeficit: number | null;
|
|
33893
33893
|
potassiumDeficit: number | null;
|
|
33894
33894
|
recommendedProducts: {
|
|
33895
|
-
unit: string;
|
|
33896
33895
|
quantity: number;
|
|
33896
|
+
unit: string;
|
|
33897
|
+
productName: string;
|
|
33897
33898
|
reason: string;
|
|
33898
33899
|
estimatedCost: number | null;
|
|
33899
33900
|
priority: number;
|
|
33900
33901
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33901
|
-
productName: string;
|
|
33902
33902
|
productId: string;
|
|
33903
33903
|
frequency: string | null;
|
|
33904
33904
|
}[];
|
|
@@ -33930,13 +33930,13 @@ export declare const fertigationRouter: {
|
|
|
33930
33930
|
phosphorusDeficit: number | null;
|
|
33931
33931
|
potassiumDeficit: number | null;
|
|
33932
33932
|
recommendedProducts: {
|
|
33933
|
-
unit: string;
|
|
33934
33933
|
quantity: number;
|
|
33934
|
+
unit: string;
|
|
33935
|
+
productName: string;
|
|
33935
33936
|
reason: string;
|
|
33936
33937
|
estimatedCost: number | null;
|
|
33937
33938
|
priority: number;
|
|
33938
33939
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33939
|
-
productName: string;
|
|
33940
33940
|
productId: string;
|
|
33941
33941
|
frequency: string | null;
|
|
33942
33942
|
}[];
|
|
@@ -33968,13 +33968,13 @@ export declare const fertigationRouter: {
|
|
|
33968
33968
|
phosphorusDeficit: number | null;
|
|
33969
33969
|
potassiumDeficit: number | null;
|
|
33970
33970
|
recommendedProducts: {
|
|
33971
|
-
unit: string;
|
|
33972
33971
|
quantity: number;
|
|
33972
|
+
unit: string;
|
|
33973
|
+
productName: string;
|
|
33973
33974
|
reason: string;
|
|
33974
33975
|
estimatedCost: number | null;
|
|
33975
33976
|
priority: number;
|
|
33976
33977
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
33977
|
-
productName: string;
|
|
33978
33978
|
productId: string;
|
|
33979
33979
|
frequency: string | null;
|
|
33980
33980
|
}[];
|
|
@@ -34210,13 +34210,13 @@ export declare const fertigationRouter: {
|
|
|
34210
34210
|
phosphorusDeficit: number | null;
|
|
34211
34211
|
potassiumDeficit: number | null;
|
|
34212
34212
|
recommendedProducts: {
|
|
34213
|
-
unit: string;
|
|
34214
34213
|
quantity: number;
|
|
34214
|
+
unit: string;
|
|
34215
|
+
productName: string;
|
|
34215
34216
|
reason: string;
|
|
34216
34217
|
estimatedCost: number | null;
|
|
34217
34218
|
priority: number;
|
|
34218
34219
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34219
|
-
productName: string;
|
|
34220
34220
|
productId: string;
|
|
34221
34221
|
frequency: string | null;
|
|
34222
34222
|
}[];
|
|
@@ -34291,13 +34291,13 @@ export declare const fertigationRouter: {
|
|
|
34291
34291
|
phosphorusDeficit: number | null;
|
|
34292
34292
|
potassiumDeficit: number | null;
|
|
34293
34293
|
recommendedProducts: {
|
|
34294
|
-
unit: string;
|
|
34295
34294
|
quantity: number;
|
|
34295
|
+
unit: string;
|
|
34296
|
+
productName: string;
|
|
34296
34297
|
reason: string;
|
|
34297
34298
|
estimatedCost: number | null;
|
|
34298
34299
|
priority: number;
|
|
34299
34300
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34300
|
-
productName: string;
|
|
34301
34301
|
productId: string;
|
|
34302
34302
|
frequency: string | null;
|
|
34303
34303
|
}[];
|
|
@@ -34673,23 +34673,23 @@ export declare const fertigationRouter: {
|
|
|
34673
34673
|
applicationMethod: z.ZodNullable<z.ZodEnum<["fertigation", "broadcast", "foliar"]>>;
|
|
34674
34674
|
estimatedCost: z.ZodNullable<z.ZodNumber>;
|
|
34675
34675
|
}, "strip", z.ZodTypeAny, {
|
|
34676
|
-
unit: string;
|
|
34677
34676
|
quantity: number;
|
|
34677
|
+
unit: string;
|
|
34678
|
+
productName: string;
|
|
34678
34679
|
reason: string;
|
|
34679
34680
|
estimatedCost: number | null;
|
|
34680
34681
|
priority: number;
|
|
34681
34682
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34682
|
-
productName: string;
|
|
34683
34683
|
productId: string;
|
|
34684
34684
|
frequency: string | null;
|
|
34685
34685
|
}, {
|
|
34686
|
-
unit: string;
|
|
34687
34686
|
quantity: number;
|
|
34687
|
+
unit: string;
|
|
34688
|
+
productName: string;
|
|
34688
34689
|
reason: string;
|
|
34689
34690
|
estimatedCost: number | null;
|
|
34690
34691
|
priority: number;
|
|
34691
34692
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34692
|
-
productName: string;
|
|
34693
34693
|
productId: string;
|
|
34694
34694
|
frequency: string | null;
|
|
34695
34695
|
}>, "many">;
|
|
@@ -34720,13 +34720,13 @@ export declare const fertigationRouter: {
|
|
|
34720
34720
|
phosphorusDeficit: number | null;
|
|
34721
34721
|
potassiumDeficit: number | null;
|
|
34722
34722
|
recommendedProducts: {
|
|
34723
|
-
unit: string;
|
|
34724
34723
|
quantity: number;
|
|
34724
|
+
unit: string;
|
|
34725
|
+
productName: string;
|
|
34725
34726
|
reason: string;
|
|
34726
34727
|
estimatedCost: number | null;
|
|
34727
34728
|
priority: number;
|
|
34728
34729
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34729
|
-
productName: string;
|
|
34730
34730
|
productId: string;
|
|
34731
34731
|
frequency: string | null;
|
|
34732
34732
|
}[];
|
|
@@ -34751,13 +34751,13 @@ export declare const fertigationRouter: {
|
|
|
34751
34751
|
phosphorusDeficit: number | null;
|
|
34752
34752
|
potassiumDeficit: number | null;
|
|
34753
34753
|
recommendedProducts: {
|
|
34754
|
-
unit: string;
|
|
34755
34754
|
quantity: number;
|
|
34755
|
+
unit: string;
|
|
34756
|
+
productName: string;
|
|
34756
34757
|
reason: string;
|
|
34757
34758
|
estimatedCost: number | null;
|
|
34758
34759
|
priority: number;
|
|
34759
34760
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34760
|
-
productName: string;
|
|
34761
34761
|
productId: string;
|
|
34762
34762
|
frequency: string | null;
|
|
34763
34763
|
}[];
|
|
@@ -34789,13 +34789,13 @@ export declare const fertigationRouter: {
|
|
|
34789
34789
|
phosphorusDeficit: number | null;
|
|
34790
34790
|
potassiumDeficit: number | null;
|
|
34791
34791
|
recommendedProducts: {
|
|
34792
|
-
unit: string;
|
|
34793
34792
|
quantity: number;
|
|
34793
|
+
unit: string;
|
|
34794
|
+
productName: string;
|
|
34794
34795
|
reason: string;
|
|
34795
34796
|
estimatedCost: number | null;
|
|
34796
34797
|
priority: number;
|
|
34797
34798
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34798
|
-
productName: string;
|
|
34799
34799
|
productId: string;
|
|
34800
34800
|
frequency: string | null;
|
|
34801
34801
|
}[];
|
|
@@ -34827,13 +34827,13 @@ export declare const fertigationRouter: {
|
|
|
34827
34827
|
phosphorusDeficit: number | null;
|
|
34828
34828
|
potassiumDeficit: number | null;
|
|
34829
34829
|
recommendedProducts: {
|
|
34830
|
-
unit: string;
|
|
34831
34830
|
quantity: number;
|
|
34831
|
+
unit: string;
|
|
34832
|
+
productName: string;
|
|
34832
34833
|
reason: string;
|
|
34833
34834
|
estimatedCost: number | null;
|
|
34834
34835
|
priority: number;
|
|
34835
34836
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34836
|
-
productName: string;
|
|
34837
34837
|
productId: string;
|
|
34838
34838
|
frequency: string | null;
|
|
34839
34839
|
}[];
|
|
@@ -34891,13 +34891,13 @@ export declare const fertigationRouter: {
|
|
|
34891
34891
|
phosphorusDeficit: number | null;
|
|
34892
34892
|
potassiumDeficit: number | null;
|
|
34893
34893
|
recommendedProducts: {
|
|
34894
|
-
unit: string;
|
|
34895
34894
|
quantity: number;
|
|
34895
|
+
unit: string;
|
|
34896
|
+
productName: string;
|
|
34896
34897
|
reason: string;
|
|
34897
34898
|
estimatedCost: number | null;
|
|
34898
34899
|
priority: number;
|
|
34899
34900
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34900
|
-
productName: string;
|
|
34901
34901
|
productId: string;
|
|
34902
34902
|
frequency: string | null;
|
|
34903
34903
|
}[];
|
|
@@ -34941,13 +34941,13 @@ export declare const fertigationRouter: {
|
|
|
34941
34941
|
phosphorusDeficit: number | null;
|
|
34942
34942
|
potassiumDeficit: number | null;
|
|
34943
34943
|
recommendedProducts: {
|
|
34944
|
-
unit: string;
|
|
34945
34944
|
quantity: number;
|
|
34945
|
+
unit: string;
|
|
34946
|
+
productName: string;
|
|
34946
34947
|
reason: string;
|
|
34947
34948
|
estimatedCost: number | null;
|
|
34948
34949
|
priority: number;
|
|
34949
34950
|
applicationMethod: "fertigation" | "broadcast" | "foliar" | null;
|
|
34950
|
-
productName: string;
|
|
34951
34951
|
productId: string;
|
|
34952
34952
|
frequency: string | null;
|
|
34953
34953
|
}[];
|