@deepintel-ltd/farmpro-contracts 1.7.14 → 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.
Files changed (78) hide show
  1. package/dist/index.d.ts +3 -1
  2. package/dist/index.d.ts.map +1 -1
  3. package/dist/index.js +2 -0
  4. package/dist/routes/agent-workflows.routes.d.ts +88 -88
  5. package/dist/routes/agents.routes.d.ts +3260 -0
  6. package/dist/routes/agents.routes.d.ts.map +1 -1
  7. package/dist/routes/agents.routes.js +130 -1
  8. package/dist/routes/analytics.routes.d.ts +20 -20
  9. package/dist/routes/documents.routes.d.ts +855 -58
  10. package/dist/routes/documents.routes.d.ts.map +1 -1
  11. package/dist/routes/documents.routes.js +43 -1
  12. package/dist/routes/equipment.routes.d.ts +38 -38
  13. package/dist/routes/farm-status.routes.d.ts +315 -0
  14. package/dist/routes/farm-status.routes.d.ts.map +1 -0
  15. package/dist/routes/farm-status.routes.js +26 -0
  16. package/dist/routes/fertigation.routes.d.ts +148 -148
  17. package/dist/routes/field-monitoring.routes.d.ts +52 -52
  18. package/dist/routes/field-observations.routes.d.ts +56 -56
  19. package/dist/routes/finance.routes.d.ts +3493 -0
  20. package/dist/routes/finance.routes.d.ts.map +1 -1
  21. package/dist/routes/finance.routes.js +158 -1
  22. package/dist/routes/geofences.routes.d.ts.map +1 -1
  23. package/dist/routes/index.d.ts +3 -0
  24. package/dist/routes/index.d.ts.map +1 -1
  25. package/dist/routes/index.js +2 -0
  26. package/dist/routes/irrigation.routes.d.ts +6 -6
  27. package/dist/routes/measurements.routes.d.ts +13 -4
  28. package/dist/routes/measurements.routes.d.ts.map +1 -1
  29. package/dist/routes/monitoring-visualization.routes.d.ts +36 -29
  30. package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
  31. package/dist/routes/monitoring-visualization.routes.js +7 -4
  32. package/dist/routes/pest-disease-risk.routes.d.ts +20 -20
  33. package/dist/routes/prescription-maps.routes.d.ts +567 -20
  34. package/dist/routes/prescription-maps.routes.d.ts.map +1 -1
  35. package/dist/routes/prescription-maps.routes.js +18 -1
  36. package/dist/routes/soil-tests.routes.d.ts +30 -30
  37. package/dist/routes/subscriptions.routes.d.ts +14 -14
  38. package/dist/routes/weather.routes.d.ts +545 -52
  39. package/dist/routes/weather.routes.d.ts.map +1 -1
  40. package/dist/routes/weather.routes.js +13 -1
  41. package/dist/routes/yield-prediction.routes.d.ts +30 -30
  42. package/dist/schemas/agent-workflows.schemas.d.ts +92 -92
  43. package/dist/schemas/agents.schemas.d.ts +1120 -0
  44. package/dist/schemas/agents.schemas.d.ts.map +1 -1
  45. package/dist/schemas/agents.schemas.js +181 -0
  46. package/dist/schemas/analytics.schemas.d.ts +56 -56
  47. package/dist/schemas/documents.schemas.d.ts +248 -48
  48. package/dist/schemas/documents.schemas.d.ts.map +1 -1
  49. package/dist/schemas/documents.schemas.js +38 -0
  50. package/dist/schemas/equipment.schemas.d.ts +30 -30
  51. package/dist/schemas/farm-status.schemas.d.ts +451 -0
  52. package/dist/schemas/farm-status.schemas.d.ts.map +1 -0
  53. package/dist/schemas/farm-status.schemas.js +44 -0
  54. package/dist/schemas/fertigation.schemas.d.ts +50 -50
  55. package/dist/schemas/field-monitoring.schemas.d.ts +42 -42
  56. package/dist/schemas/field-observations.schemas.d.ts +44 -44
  57. package/dist/schemas/finance.schemas.d.ts +1057 -0
  58. package/dist/schemas/finance.schemas.d.ts.map +1 -1
  59. package/dist/schemas/finance.schemas.js +170 -0
  60. package/dist/schemas/irrigation.schemas.d.ts +8 -8
  61. package/dist/schemas/measurements.schemas.d.ts +21 -8
  62. package/dist/schemas/measurements.schemas.d.ts.map +1 -1
  63. package/dist/schemas/measurements.schemas.js +13 -6
  64. package/dist/schemas/monitoring-visualization.schemas.d.ts +43 -36
  65. package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
  66. package/dist/schemas/monitoring-visualization.schemas.js +24 -16
  67. package/dist/schemas/pest-disease-risk.schemas.d.ts +18 -18
  68. package/dist/schemas/prescription-maps.schemas.d.ts +41 -18
  69. package/dist/schemas/prescription-maps.schemas.d.ts.map +1 -1
  70. package/dist/schemas/prescription-maps.schemas.js +8 -0
  71. package/dist/schemas/recommendations.schemas.d.ts +2 -2
  72. package/dist/schemas/soil-tests.schemas.d.ts +28 -28
  73. package/dist/schemas/subscriptions.schemas.d.ts +22 -22
  74. package/dist/schemas/weather.schemas.d.ts +789 -112
  75. package/dist/schemas/weather.schemas.d.ts.map +1 -1
  76. package/dist/schemas/weather.schemas.js +37 -0
  77. package/dist/schemas/yield-prediction.schemas.d.ts +12 -12
  78. package/package.json +1 -1
@@ -6155,6 +6155,7 @@ export declare const fertigationSchedulesRouter: {
6155
6155
  fieldId: string;
6156
6156
  notes: string | null;
6157
6157
  cropName: string;
6158
+ estimatedTotalCost: number | null;
6158
6159
  cropNutrientProfileId: string;
6159
6160
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6160
6161
  baselineSoilTestId: string | null;
@@ -6171,7 +6172,6 @@ export declare const fertigationSchedulesRouter: {
6171
6172
  applicationEfficiency: number;
6172
6173
  weeklyFrequency: number;
6173
6174
  totalWeeks: number | null;
6174
- estimatedTotalCost: number | null;
6175
6175
  actualTotalCost: number | null;
6176
6176
  fieldName?: string | undefined;
6177
6177
  pendingEvents?: number | undefined;
@@ -6188,6 +6188,7 @@ export declare const fertigationSchedulesRouter: {
6188
6188
  fieldId: string;
6189
6189
  notes: string | null;
6190
6190
  cropName: string;
6191
+ estimatedTotalCost: number | null;
6191
6192
  cropNutrientProfileId: string;
6192
6193
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6193
6194
  baselineSoilTestId: string | null;
@@ -6204,7 +6205,6 @@ export declare const fertigationSchedulesRouter: {
6204
6205
  applicationEfficiency: number;
6205
6206
  weeklyFrequency: number;
6206
6207
  totalWeeks: number | null;
6207
- estimatedTotalCost: number | null;
6208
6208
  actualTotalCost: number | null;
6209
6209
  fieldName?: string | undefined;
6210
6210
  pendingEvents?: number | undefined;
@@ -6228,6 +6228,7 @@ export declare const fertigationSchedulesRouter: {
6228
6228
  fieldId: string;
6229
6229
  notes: string | null;
6230
6230
  cropName: string;
6231
+ estimatedTotalCost: number | null;
6231
6232
  cropNutrientProfileId: string;
6232
6233
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6233
6234
  baselineSoilTestId: string | null;
@@ -6244,7 +6245,6 @@ export declare const fertigationSchedulesRouter: {
6244
6245
  applicationEfficiency: number;
6245
6246
  weeklyFrequency: number;
6246
6247
  totalWeeks: number | null;
6247
- estimatedTotalCost: number | null;
6248
6248
  actualTotalCost: number | null;
6249
6249
  fieldName?: string | undefined;
6250
6250
  pendingEvents?: number | undefined;
@@ -6268,6 +6268,7 @@ export declare const fertigationSchedulesRouter: {
6268
6268
  fieldId: string;
6269
6269
  notes: string | null;
6270
6270
  cropName: string;
6271
+ estimatedTotalCost: number | null;
6271
6272
  cropNutrientProfileId: string;
6272
6273
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6273
6274
  baselineSoilTestId: string | null;
@@ -6284,7 +6285,6 @@ export declare const fertigationSchedulesRouter: {
6284
6285
  applicationEfficiency: number;
6285
6286
  weeklyFrequency: number;
6286
6287
  totalWeeks: number | null;
6287
- estimatedTotalCost: number | null;
6288
6288
  actualTotalCost: number | null;
6289
6289
  fieldName?: string | undefined;
6290
6290
  pendingEvents?: number | undefined;
@@ -6334,6 +6334,7 @@ export declare const fertigationSchedulesRouter: {
6334
6334
  fieldId: string;
6335
6335
  notes: string | null;
6336
6336
  cropName: string;
6337
+ estimatedTotalCost: number | null;
6337
6338
  cropNutrientProfileId: string;
6338
6339
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6339
6340
  baselineSoilTestId: string | null;
@@ -6350,7 +6351,6 @@ export declare const fertigationSchedulesRouter: {
6350
6351
  applicationEfficiency: number;
6351
6352
  weeklyFrequency: number;
6352
6353
  totalWeeks: number | null;
6353
- estimatedTotalCost: number | null;
6354
6354
  actualTotalCost: number | null;
6355
6355
  fieldName?: string | undefined;
6356
6356
  pendingEvents?: number | undefined;
@@ -6386,6 +6386,7 @@ export declare const fertigationSchedulesRouter: {
6386
6386
  fieldId: string;
6387
6387
  notes: string | null;
6388
6388
  cropName: string;
6389
+ estimatedTotalCost: number | null;
6389
6390
  cropNutrientProfileId: string;
6390
6391
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6391
6392
  baselineSoilTestId: string | null;
@@ -6402,7 +6403,6 @@ export declare const fertigationSchedulesRouter: {
6402
6403
  applicationEfficiency: number;
6403
6404
  weeklyFrequency: number;
6404
6405
  totalWeeks: number | null;
6405
- estimatedTotalCost: number | null;
6406
6406
  actualTotalCost: number | null;
6407
6407
  fieldName?: string | undefined;
6408
6408
  pendingEvents?: number | undefined;
@@ -6692,6 +6692,7 @@ export declare const fertigationSchedulesRouter: {
6692
6692
  fieldId: string;
6693
6693
  notes: string | null;
6694
6694
  cropName: string;
6695
+ estimatedTotalCost: number | null;
6695
6696
  cropNutrientProfileId: string;
6696
6697
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6697
6698
  baselineSoilTestId: string | null;
@@ -6708,7 +6709,6 @@ export declare const fertigationSchedulesRouter: {
6708
6709
  applicationEfficiency: number;
6709
6710
  weeklyFrequency: number;
6710
6711
  totalWeeks: number | null;
6711
- estimatedTotalCost: number | null;
6712
6712
  actualTotalCost: number | null;
6713
6713
  fieldName?: string | undefined;
6714
6714
  pendingEvents?: number | undefined;
@@ -6725,6 +6725,7 @@ export declare const fertigationSchedulesRouter: {
6725
6725
  fieldId: string;
6726
6726
  notes: string | null;
6727
6727
  cropName: string;
6728
+ estimatedTotalCost: number | null;
6728
6729
  cropNutrientProfileId: string;
6729
6730
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6730
6731
  baselineSoilTestId: string | null;
@@ -6741,7 +6742,6 @@ export declare const fertigationSchedulesRouter: {
6741
6742
  applicationEfficiency: number;
6742
6743
  weeklyFrequency: number;
6743
6744
  totalWeeks: number | null;
6744
- estimatedTotalCost: number | null;
6745
6745
  actualTotalCost: number | null;
6746
6746
  fieldName?: string | undefined;
6747
6747
  pendingEvents?: number | undefined;
@@ -6765,6 +6765,7 @@ export declare const fertigationSchedulesRouter: {
6765
6765
  fieldId: string;
6766
6766
  notes: string | null;
6767
6767
  cropName: string;
6768
+ estimatedTotalCost: number | null;
6768
6769
  cropNutrientProfileId: string;
6769
6770
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6770
6771
  baselineSoilTestId: string | null;
@@ -6781,7 +6782,6 @@ export declare const fertigationSchedulesRouter: {
6781
6782
  applicationEfficiency: number;
6782
6783
  weeklyFrequency: number;
6783
6784
  totalWeeks: number | null;
6784
- estimatedTotalCost: number | null;
6785
6785
  actualTotalCost: number | null;
6786
6786
  fieldName?: string | undefined;
6787
6787
  pendingEvents?: number | undefined;
@@ -6805,6 +6805,7 @@ export declare const fertigationSchedulesRouter: {
6805
6805
  fieldId: string;
6806
6806
  notes: string | null;
6807
6807
  cropName: string;
6808
+ estimatedTotalCost: number | null;
6808
6809
  cropNutrientProfileId: string;
6809
6810
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6810
6811
  baselineSoilTestId: string | null;
@@ -6821,7 +6822,6 @@ export declare const fertigationSchedulesRouter: {
6821
6822
  applicationEfficiency: number;
6822
6823
  weeklyFrequency: number;
6823
6824
  totalWeeks: number | null;
6824
- estimatedTotalCost: number | null;
6825
6825
  actualTotalCost: number | null;
6826
6826
  fieldName?: string | undefined;
6827
6827
  pendingEvents?: number | undefined;
@@ -6871,6 +6871,7 @@ export declare const fertigationSchedulesRouter: {
6871
6871
  fieldId: string;
6872
6872
  notes: string | null;
6873
6873
  cropName: string;
6874
+ estimatedTotalCost: number | null;
6874
6875
  cropNutrientProfileId: string;
6875
6876
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6876
6877
  baselineSoilTestId: string | null;
@@ -6887,7 +6888,6 @@ export declare const fertigationSchedulesRouter: {
6887
6888
  applicationEfficiency: number;
6888
6889
  weeklyFrequency: number;
6889
6890
  totalWeeks: number | null;
6890
- estimatedTotalCost: number | null;
6891
6891
  actualTotalCost: number | null;
6892
6892
  fieldName?: string | undefined;
6893
6893
  pendingEvents?: number | undefined;
@@ -6923,6 +6923,7 @@ export declare const fertigationSchedulesRouter: {
6923
6923
  fieldId: string;
6924
6924
  notes: string | null;
6925
6925
  cropName: string;
6926
+ estimatedTotalCost: number | null;
6926
6927
  cropNutrientProfileId: string;
6927
6928
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
6928
6929
  baselineSoilTestId: string | null;
@@ -6939,7 +6940,6 @@ export declare const fertigationSchedulesRouter: {
6939
6940
  applicationEfficiency: number;
6940
6941
  weeklyFrequency: number;
6941
6942
  totalWeeks: number | null;
6942
- estimatedTotalCost: number | null;
6943
6943
  actualTotalCost: number | null;
6944
6944
  fieldName?: string | undefined;
6945
6945
  pendingEvents?: number | undefined;
@@ -7332,6 +7332,7 @@ export declare const fertigationSchedulesRouter: {
7332
7332
  fieldId: string;
7333
7333
  notes: string | null;
7334
7334
  cropName: string;
7335
+ estimatedTotalCost: number | null;
7335
7336
  cropNutrientProfileId: string;
7336
7337
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7337
7338
  baselineSoilTestId: string | null;
@@ -7348,7 +7349,6 @@ export declare const fertigationSchedulesRouter: {
7348
7349
  applicationEfficiency: number;
7349
7350
  weeklyFrequency: number;
7350
7351
  totalWeeks: number | null;
7351
- estimatedTotalCost: number | null;
7352
7352
  actualTotalCost: number | null;
7353
7353
  fieldName?: string | undefined;
7354
7354
  pendingEvents?: number | undefined;
@@ -7365,6 +7365,7 @@ export declare const fertigationSchedulesRouter: {
7365
7365
  fieldId: string;
7366
7366
  notes: string | null;
7367
7367
  cropName: string;
7368
+ estimatedTotalCost: number | null;
7368
7369
  cropNutrientProfileId: string;
7369
7370
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7370
7371
  baselineSoilTestId: string | null;
@@ -7381,7 +7382,6 @@ export declare const fertigationSchedulesRouter: {
7381
7382
  applicationEfficiency: number;
7382
7383
  weeklyFrequency: number;
7383
7384
  totalWeeks: number | null;
7384
- estimatedTotalCost: number | null;
7385
7385
  actualTotalCost: number | null;
7386
7386
  fieldName?: string | undefined;
7387
7387
  pendingEvents?: number | undefined;
@@ -7405,6 +7405,7 @@ export declare const fertigationSchedulesRouter: {
7405
7405
  fieldId: string;
7406
7406
  notes: string | null;
7407
7407
  cropName: string;
7408
+ estimatedTotalCost: number | null;
7408
7409
  cropNutrientProfileId: string;
7409
7410
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7410
7411
  baselineSoilTestId: string | null;
@@ -7421,7 +7422,6 @@ export declare const fertigationSchedulesRouter: {
7421
7422
  applicationEfficiency: number;
7422
7423
  weeklyFrequency: number;
7423
7424
  totalWeeks: number | null;
7424
- estimatedTotalCost: number | null;
7425
7425
  actualTotalCost: number | null;
7426
7426
  fieldName?: string | undefined;
7427
7427
  pendingEvents?: number | undefined;
@@ -7445,6 +7445,7 @@ export declare const fertigationSchedulesRouter: {
7445
7445
  fieldId: string;
7446
7446
  notes: string | null;
7447
7447
  cropName: string;
7448
+ estimatedTotalCost: number | null;
7448
7449
  cropNutrientProfileId: string;
7449
7450
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7450
7451
  baselineSoilTestId: string | null;
@@ -7461,7 +7462,6 @@ export declare const fertigationSchedulesRouter: {
7461
7462
  applicationEfficiency: number;
7462
7463
  weeklyFrequency: number;
7463
7464
  totalWeeks: number | null;
7464
- estimatedTotalCost: number | null;
7465
7465
  actualTotalCost: number | null;
7466
7466
  fieldName?: string | undefined;
7467
7467
  pendingEvents?: number | undefined;
@@ -7511,6 +7511,7 @@ export declare const fertigationSchedulesRouter: {
7511
7511
  fieldId: string;
7512
7512
  notes: string | null;
7513
7513
  cropName: string;
7514
+ estimatedTotalCost: number | null;
7514
7515
  cropNutrientProfileId: string;
7515
7516
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7516
7517
  baselineSoilTestId: string | null;
@@ -7527,7 +7528,6 @@ export declare const fertigationSchedulesRouter: {
7527
7528
  applicationEfficiency: number;
7528
7529
  weeklyFrequency: number;
7529
7530
  totalWeeks: number | null;
7530
- estimatedTotalCost: number | null;
7531
7531
  actualTotalCost: number | null;
7532
7532
  fieldName?: string | undefined;
7533
7533
  pendingEvents?: number | undefined;
@@ -7563,6 +7563,7 @@ export declare const fertigationSchedulesRouter: {
7563
7563
  fieldId: string;
7564
7564
  notes: string | null;
7565
7565
  cropName: string;
7566
+ estimatedTotalCost: number | null;
7566
7567
  cropNutrientProfileId: string;
7567
7568
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
7568
7569
  baselineSoilTestId: string | null;
@@ -7579,7 +7580,6 @@ export declare const fertigationSchedulesRouter: {
7579
7580
  applicationEfficiency: number;
7580
7581
  weeklyFrequency: number;
7581
7582
  totalWeeks: number | null;
7582
- estimatedTotalCost: number | null;
7583
7583
  actualTotalCost: number | null;
7584
7584
  fieldName?: string | undefined;
7585
7585
  pendingEvents?: number | undefined;
@@ -8142,6 +8142,7 @@ export declare const fertigationSchedulesRouter: {
8142
8142
  fieldId: string;
8143
8143
  notes: string | null;
8144
8144
  cropName: string;
8145
+ estimatedTotalCost: number | null;
8145
8146
  cropNutrientProfileId: string;
8146
8147
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8147
8148
  baselineSoilTestId: string | null;
@@ -8158,7 +8159,6 @@ export declare const fertigationSchedulesRouter: {
8158
8159
  applicationEfficiency: number;
8159
8160
  weeklyFrequency: number;
8160
8161
  totalWeeks: number | null;
8161
- estimatedTotalCost: number | null;
8162
8162
  actualTotalCost: number | null;
8163
8163
  fieldName?: string | undefined;
8164
8164
  pendingEvents?: number | undefined;
@@ -8175,6 +8175,7 @@ export declare const fertigationSchedulesRouter: {
8175
8175
  fieldId: string;
8176
8176
  notes: string | null;
8177
8177
  cropName: string;
8178
+ estimatedTotalCost: number | null;
8178
8179
  cropNutrientProfileId: string;
8179
8180
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8180
8181
  baselineSoilTestId: string | null;
@@ -8191,7 +8192,6 @@ export declare const fertigationSchedulesRouter: {
8191
8192
  applicationEfficiency: number;
8192
8193
  weeklyFrequency: number;
8193
8194
  totalWeeks: number | null;
8194
- estimatedTotalCost: number | null;
8195
8195
  actualTotalCost: number | null;
8196
8196
  fieldName?: string | undefined;
8197
8197
  pendingEvents?: number | undefined;
@@ -8215,6 +8215,7 @@ export declare const fertigationSchedulesRouter: {
8215
8215
  fieldId: string;
8216
8216
  notes: string | null;
8217
8217
  cropName: string;
8218
+ estimatedTotalCost: number | null;
8218
8219
  cropNutrientProfileId: string;
8219
8220
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8220
8221
  baselineSoilTestId: string | null;
@@ -8231,7 +8232,6 @@ export declare const fertigationSchedulesRouter: {
8231
8232
  applicationEfficiency: number;
8232
8233
  weeklyFrequency: number;
8233
8234
  totalWeeks: number | null;
8234
- estimatedTotalCost: number | null;
8235
8235
  actualTotalCost: number | null;
8236
8236
  fieldName?: string | undefined;
8237
8237
  pendingEvents?: number | undefined;
@@ -8255,6 +8255,7 @@ export declare const fertigationSchedulesRouter: {
8255
8255
  fieldId: string;
8256
8256
  notes: string | null;
8257
8257
  cropName: string;
8258
+ estimatedTotalCost: number | null;
8258
8259
  cropNutrientProfileId: string;
8259
8260
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8260
8261
  baselineSoilTestId: string | null;
@@ -8271,7 +8272,6 @@ export declare const fertigationSchedulesRouter: {
8271
8272
  applicationEfficiency: number;
8272
8273
  weeklyFrequency: number;
8273
8274
  totalWeeks: number | null;
8274
- estimatedTotalCost: number | null;
8275
8275
  actualTotalCost: number | null;
8276
8276
  fieldName?: string | undefined;
8277
8277
  pendingEvents?: number | undefined;
@@ -8321,6 +8321,7 @@ export declare const fertigationSchedulesRouter: {
8321
8321
  fieldId: string;
8322
8322
  notes: string | null;
8323
8323
  cropName: string;
8324
+ estimatedTotalCost: number | null;
8324
8325
  cropNutrientProfileId: string;
8325
8326
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8326
8327
  baselineSoilTestId: string | null;
@@ -8337,7 +8338,6 @@ export declare const fertigationSchedulesRouter: {
8337
8338
  applicationEfficiency: number;
8338
8339
  weeklyFrequency: number;
8339
8340
  totalWeeks: number | null;
8340
- estimatedTotalCost: number | null;
8341
8341
  actualTotalCost: number | null;
8342
8342
  fieldName?: string | undefined;
8343
8343
  pendingEvents?: number | undefined;
@@ -8373,6 +8373,7 @@ export declare const fertigationSchedulesRouter: {
8373
8373
  fieldId: string;
8374
8374
  notes: string | null;
8375
8375
  cropName: string;
8376
+ estimatedTotalCost: number | null;
8376
8377
  cropNutrientProfileId: string;
8377
8378
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8378
8379
  baselineSoilTestId: string | null;
@@ -8389,7 +8390,6 @@ export declare const fertigationSchedulesRouter: {
8389
8390
  applicationEfficiency: number;
8390
8391
  weeklyFrequency: number;
8391
8392
  totalWeeks: number | null;
8392
- estimatedTotalCost: number | null;
8393
8393
  actualTotalCost: number | null;
8394
8394
  fieldName?: string | undefined;
8395
8395
  pendingEvents?: number | undefined;
@@ -8859,6 +8859,7 @@ export declare const fertigationSchedulesRouter: {
8859
8859
  fieldId: string;
8860
8860
  notes: string | null;
8861
8861
  cropName: string;
8862
+ estimatedTotalCost: number | null;
8862
8863
  cropNutrientProfileId: string;
8863
8864
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8864
8865
  baselineSoilTestId: string | null;
@@ -8875,7 +8876,6 @@ export declare const fertigationSchedulesRouter: {
8875
8876
  applicationEfficiency: number;
8876
8877
  weeklyFrequency: number;
8877
8878
  totalWeeks: number | null;
8878
- estimatedTotalCost: number | null;
8879
8879
  actualTotalCost: number | null;
8880
8880
  fieldName?: string | undefined;
8881
8881
  pendingEvents?: number | undefined;
@@ -8892,6 +8892,7 @@ export declare const fertigationSchedulesRouter: {
8892
8892
  fieldId: string;
8893
8893
  notes: string | null;
8894
8894
  cropName: string;
8895
+ estimatedTotalCost: number | null;
8895
8896
  cropNutrientProfileId: string;
8896
8897
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8897
8898
  baselineSoilTestId: string | null;
@@ -8908,7 +8909,6 @@ export declare const fertigationSchedulesRouter: {
8908
8909
  applicationEfficiency: number;
8909
8910
  weeklyFrequency: number;
8910
8911
  totalWeeks: number | null;
8911
- estimatedTotalCost: number | null;
8912
8912
  actualTotalCost: number | null;
8913
8913
  fieldName?: string | undefined;
8914
8914
  pendingEvents?: number | undefined;
@@ -8932,6 +8932,7 @@ export declare const fertigationSchedulesRouter: {
8932
8932
  fieldId: string;
8933
8933
  notes: string | null;
8934
8934
  cropName: string;
8935
+ estimatedTotalCost: number | null;
8935
8936
  cropNutrientProfileId: string;
8936
8937
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8937
8938
  baselineSoilTestId: string | null;
@@ -8948,7 +8949,6 @@ export declare const fertigationSchedulesRouter: {
8948
8949
  applicationEfficiency: number;
8949
8950
  weeklyFrequency: number;
8950
8951
  totalWeeks: number | null;
8951
- estimatedTotalCost: number | null;
8952
8952
  actualTotalCost: number | null;
8953
8953
  fieldName?: string | undefined;
8954
8954
  pendingEvents?: number | undefined;
@@ -8972,6 +8972,7 @@ export declare const fertigationSchedulesRouter: {
8972
8972
  fieldId: string;
8973
8973
  notes: string | null;
8974
8974
  cropName: string;
8975
+ estimatedTotalCost: number | null;
8975
8976
  cropNutrientProfileId: string;
8976
8977
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
8977
8978
  baselineSoilTestId: string | null;
@@ -8988,7 +8989,6 @@ export declare const fertigationSchedulesRouter: {
8988
8989
  applicationEfficiency: number;
8989
8990
  weeklyFrequency: number;
8990
8991
  totalWeeks: number | null;
8991
- estimatedTotalCost: number | null;
8992
8992
  actualTotalCost: number | null;
8993
8993
  fieldName?: string | undefined;
8994
8994
  pendingEvents?: number | undefined;
@@ -9038,6 +9038,7 @@ export declare const fertigationSchedulesRouter: {
9038
9038
  fieldId: string;
9039
9039
  notes: string | null;
9040
9040
  cropName: string;
9041
+ estimatedTotalCost: number | null;
9041
9042
  cropNutrientProfileId: string;
9042
9043
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9043
9044
  baselineSoilTestId: string | null;
@@ -9054,7 +9055,6 @@ export declare const fertigationSchedulesRouter: {
9054
9055
  applicationEfficiency: number;
9055
9056
  weeklyFrequency: number;
9056
9057
  totalWeeks: number | null;
9057
- estimatedTotalCost: number | null;
9058
9058
  actualTotalCost: number | null;
9059
9059
  fieldName?: string | undefined;
9060
9060
  pendingEvents?: number | undefined;
@@ -9090,6 +9090,7 @@ export declare const fertigationSchedulesRouter: {
9090
9090
  fieldId: string;
9091
9091
  notes: string | null;
9092
9092
  cropName: string;
9093
+ estimatedTotalCost: number | null;
9093
9094
  cropNutrientProfileId: string;
9094
9095
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9095
9096
  baselineSoilTestId: string | null;
@@ -9106,7 +9107,6 @@ export declare const fertigationSchedulesRouter: {
9106
9107
  applicationEfficiency: number;
9107
9108
  weeklyFrequency: number;
9108
9109
  totalWeeks: number | null;
9109
- estimatedTotalCost: number | null;
9110
9110
  actualTotalCost: number | null;
9111
9111
  fieldName?: string | undefined;
9112
9112
  pendingEvents?: number | undefined;
@@ -9486,6 +9486,7 @@ export declare const fertigationSchedulesRouter: {
9486
9486
  fieldId: string;
9487
9487
  notes: string | null;
9488
9488
  cropName: string;
9489
+ estimatedTotalCost: number | null;
9489
9490
  cropNutrientProfileId: string;
9490
9491
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9491
9492
  baselineSoilTestId: string | null;
@@ -9502,7 +9503,6 @@ export declare const fertigationSchedulesRouter: {
9502
9503
  applicationEfficiency: number;
9503
9504
  weeklyFrequency: number;
9504
9505
  totalWeeks: number | null;
9505
- estimatedTotalCost: number | null;
9506
9506
  actualTotalCost: number | null;
9507
9507
  fieldName?: string | undefined;
9508
9508
  pendingEvents?: number | undefined;
@@ -9519,6 +9519,7 @@ export declare const fertigationSchedulesRouter: {
9519
9519
  fieldId: string;
9520
9520
  notes: string | null;
9521
9521
  cropName: string;
9522
+ estimatedTotalCost: number | null;
9522
9523
  cropNutrientProfileId: string;
9523
9524
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9524
9525
  baselineSoilTestId: string | null;
@@ -9535,7 +9536,6 @@ export declare const fertigationSchedulesRouter: {
9535
9536
  applicationEfficiency: number;
9536
9537
  weeklyFrequency: number;
9537
9538
  totalWeeks: number | null;
9538
- estimatedTotalCost: number | null;
9539
9539
  actualTotalCost: number | null;
9540
9540
  fieldName?: string | undefined;
9541
9541
  pendingEvents?: number | undefined;
@@ -9559,6 +9559,7 @@ export declare const fertigationSchedulesRouter: {
9559
9559
  fieldId: string;
9560
9560
  notes: string | null;
9561
9561
  cropName: string;
9562
+ estimatedTotalCost: number | null;
9562
9563
  cropNutrientProfileId: string;
9563
9564
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9564
9565
  baselineSoilTestId: string | null;
@@ -9575,7 +9576,6 @@ export declare const fertigationSchedulesRouter: {
9575
9576
  applicationEfficiency: number;
9576
9577
  weeklyFrequency: number;
9577
9578
  totalWeeks: number | null;
9578
- estimatedTotalCost: number | null;
9579
9579
  actualTotalCost: number | null;
9580
9580
  fieldName?: string | undefined;
9581
9581
  pendingEvents?: number | undefined;
@@ -9599,6 +9599,7 @@ export declare const fertigationSchedulesRouter: {
9599
9599
  fieldId: string;
9600
9600
  notes: string | null;
9601
9601
  cropName: string;
9602
+ estimatedTotalCost: number | null;
9602
9603
  cropNutrientProfileId: string;
9603
9604
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9604
9605
  baselineSoilTestId: string | null;
@@ -9615,7 +9616,6 @@ export declare const fertigationSchedulesRouter: {
9615
9616
  applicationEfficiency: number;
9616
9617
  weeklyFrequency: number;
9617
9618
  totalWeeks: number | null;
9618
- estimatedTotalCost: number | null;
9619
9619
  actualTotalCost: number | null;
9620
9620
  fieldName?: string | undefined;
9621
9621
  pendingEvents?: number | undefined;
@@ -9665,6 +9665,7 @@ export declare const fertigationSchedulesRouter: {
9665
9665
  fieldId: string;
9666
9666
  notes: string | null;
9667
9667
  cropName: string;
9668
+ estimatedTotalCost: number | null;
9668
9669
  cropNutrientProfileId: string;
9669
9670
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9670
9671
  baselineSoilTestId: string | null;
@@ -9681,7 +9682,6 @@ export declare const fertigationSchedulesRouter: {
9681
9682
  applicationEfficiency: number;
9682
9683
  weeklyFrequency: number;
9683
9684
  totalWeeks: number | null;
9684
- estimatedTotalCost: number | null;
9685
9685
  actualTotalCost: number | null;
9686
9686
  fieldName?: string | undefined;
9687
9687
  pendingEvents?: number | undefined;
@@ -9717,6 +9717,7 @@ export declare const fertigationSchedulesRouter: {
9717
9717
  fieldId: string;
9718
9718
  notes: string | null;
9719
9719
  cropName: string;
9720
+ estimatedTotalCost: number | null;
9720
9721
  cropNutrientProfileId: string;
9721
9722
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
9722
9723
  baselineSoilTestId: string | null;
@@ -9733,7 +9734,6 @@ export declare const fertigationSchedulesRouter: {
9733
9734
  applicationEfficiency: number;
9734
9735
  weeklyFrequency: number;
9735
9736
  totalWeeks: number | null;
9736
- estimatedTotalCost: number | null;
9737
9737
  actualTotalCost: number | null;
9738
9738
  fieldName?: string | undefined;
9739
9739
  pendingEvents?: number | undefined;
@@ -10874,11 +10874,11 @@ export declare const fertigationEventsRouter: {
10874
10874
  days: z.ZodDefault<z.ZodNumber>;
10875
10875
  limit: z.ZodDefault<z.ZodNumber>;
10876
10876
  }, "strip", z.ZodTypeAny, {
10877
- limit: number;
10878
10877
  days: number;
10878
+ limit: number;
10879
10879
  }, {
10880
- limit?: number | undefined;
10881
10880
  days?: number | undefined;
10881
+ limit?: number | undefined;
10882
10882
  }>;
10883
10883
  summary: "Get upcoming events";
10884
10884
  description: "Get upcoming fertigation events across all schedules for dashboard";
@@ -14450,8 +14450,8 @@ export declare const fertigationRecommendationsRouter: {
14450
14450
  createdAt: string;
14451
14451
  updatedAt: string;
14452
14452
  fieldId: string;
14453
- estimatedCost: number | null;
14454
14453
  confidence: number | null;
14454
+ estimatedCost: number | null;
14455
14455
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14456
14456
  soilTestId: string | null;
14457
14457
  scheduleId: string | null;
@@ -14481,8 +14481,8 @@ export declare const fertigationRecommendationsRouter: {
14481
14481
  createdAt: string;
14482
14482
  updatedAt: string;
14483
14483
  fieldId: string;
14484
- estimatedCost: number | null;
14485
14484
  confidence: number | null;
14485
+ estimatedCost: number | null;
14486
14486
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14487
14487
  soilTestId: string | null;
14488
14488
  scheduleId: string | null;
@@ -14519,8 +14519,8 @@ export declare const fertigationRecommendationsRouter: {
14519
14519
  createdAt: string;
14520
14520
  updatedAt: string;
14521
14521
  fieldId: string;
14522
- estimatedCost: number | null;
14523
14522
  confidence: number | null;
14523
+ estimatedCost: number | null;
14524
14524
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14525
14525
  soilTestId: string | null;
14526
14526
  scheduleId: string | null;
@@ -14557,8 +14557,8 @@ export declare const fertigationRecommendationsRouter: {
14557
14557
  createdAt: string;
14558
14558
  updatedAt: string;
14559
14559
  fieldId: string;
14560
- estimatedCost: number | null;
14561
14560
  confidence: number | null;
14561
+ estimatedCost: number | null;
14562
14562
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14563
14563
  soilTestId: string | null;
14564
14564
  scheduleId: string | null;
@@ -14621,8 +14621,8 @@ export declare const fertigationRecommendationsRouter: {
14621
14621
  createdAt: string;
14622
14622
  updatedAt: string;
14623
14623
  fieldId: string;
14624
- estimatedCost: number | null;
14625
14624
  confidence: number | null;
14625
+ estimatedCost: number | null;
14626
14626
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14627
14627
  soilTestId: string | null;
14628
14628
  scheduleId: string | null;
@@ -14671,8 +14671,8 @@ export declare const fertigationRecommendationsRouter: {
14671
14671
  createdAt: string;
14672
14672
  updatedAt: string;
14673
14673
  fieldId: string;
14674
- estimatedCost: number | null;
14675
14674
  confidence: number | null;
14675
+ estimatedCost: number | null;
14676
14676
  applicationMethod: "fertigation" | "broadcast" | "foliar";
14677
14677
  soilTestId: string | null;
14678
14678
  scheduleId: string | null;
@@ -15173,8 +15173,8 @@ export declare const fertigationRecommendationsRouter: {
15173
15173
  createdAt: string;
15174
15174
  updatedAt: string;
15175
15175
  fieldId: string;
15176
- estimatedCost: number | null;
15177
15176
  confidence: number | null;
15177
+ estimatedCost: number | null;
15178
15178
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15179
15179
  soilTestId: string | null;
15180
15180
  scheduleId: string | null;
@@ -15204,8 +15204,8 @@ export declare const fertigationRecommendationsRouter: {
15204
15204
  createdAt: string;
15205
15205
  updatedAt: string;
15206
15206
  fieldId: string;
15207
- estimatedCost: number | null;
15208
15207
  confidence: number | null;
15208
+ estimatedCost: number | null;
15209
15209
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15210
15210
  soilTestId: string | null;
15211
15211
  scheduleId: string | null;
@@ -15242,8 +15242,8 @@ export declare const fertigationRecommendationsRouter: {
15242
15242
  createdAt: string;
15243
15243
  updatedAt: string;
15244
15244
  fieldId: string;
15245
- estimatedCost: number | null;
15246
15245
  confidence: number | null;
15246
+ estimatedCost: number | null;
15247
15247
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15248
15248
  soilTestId: string | null;
15249
15249
  scheduleId: string | null;
@@ -15280,8 +15280,8 @@ export declare const fertigationRecommendationsRouter: {
15280
15280
  createdAt: string;
15281
15281
  updatedAt: string;
15282
15282
  fieldId: string;
15283
- estimatedCost: number | null;
15284
15283
  confidence: number | null;
15284
+ estimatedCost: number | null;
15285
15285
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15286
15286
  soilTestId: string | null;
15287
15287
  scheduleId: string | null;
@@ -15344,8 +15344,8 @@ export declare const fertigationRecommendationsRouter: {
15344
15344
  createdAt: string;
15345
15345
  updatedAt: string;
15346
15346
  fieldId: string;
15347
- estimatedCost: number | null;
15348
15347
  confidence: number | null;
15348
+ estimatedCost: number | null;
15349
15349
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15350
15350
  soilTestId: string | null;
15351
15351
  scheduleId: string | null;
@@ -15394,8 +15394,8 @@ export declare const fertigationRecommendationsRouter: {
15394
15394
  createdAt: string;
15395
15395
  updatedAt: string;
15396
15396
  fieldId: string;
15397
- estimatedCost: number | null;
15398
15397
  confidence: number | null;
15398
+ estimatedCost: number | null;
15399
15399
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15400
15400
  soilTestId: string | null;
15401
15401
  scheduleId: string | null;
@@ -15695,8 +15695,8 @@ export declare const fertigationRecommendationsRouter: {
15695
15695
  createdAt: string;
15696
15696
  updatedAt: string;
15697
15697
  fieldId: string;
15698
- estimatedCost: number | null;
15699
15698
  confidence: number | null;
15699
+ estimatedCost: number | null;
15700
15700
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15701
15701
  soilTestId: string | null;
15702
15702
  scheduleId: string | null;
@@ -15726,8 +15726,8 @@ export declare const fertigationRecommendationsRouter: {
15726
15726
  createdAt: string;
15727
15727
  updatedAt: string;
15728
15728
  fieldId: string;
15729
- estimatedCost: number | null;
15730
15729
  confidence: number | null;
15730
+ estimatedCost: number | null;
15731
15731
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15732
15732
  soilTestId: string | null;
15733
15733
  scheduleId: string | null;
@@ -15764,8 +15764,8 @@ export declare const fertigationRecommendationsRouter: {
15764
15764
  createdAt: string;
15765
15765
  updatedAt: string;
15766
15766
  fieldId: string;
15767
- estimatedCost: number | null;
15768
15767
  confidence: number | null;
15768
+ estimatedCost: number | null;
15769
15769
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15770
15770
  soilTestId: string | null;
15771
15771
  scheduleId: string | null;
@@ -15802,8 +15802,8 @@ export declare const fertigationRecommendationsRouter: {
15802
15802
  createdAt: string;
15803
15803
  updatedAt: string;
15804
15804
  fieldId: string;
15805
- estimatedCost: number | null;
15806
15805
  confidence: number | null;
15806
+ estimatedCost: number | null;
15807
15807
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15808
15808
  soilTestId: string | null;
15809
15809
  scheduleId: string | null;
@@ -15866,8 +15866,8 @@ export declare const fertigationRecommendationsRouter: {
15866
15866
  createdAt: string;
15867
15867
  updatedAt: string;
15868
15868
  fieldId: string;
15869
- estimatedCost: number | null;
15870
15869
  confidence: number | null;
15870
+ estimatedCost: number | null;
15871
15871
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15872
15872
  soilTestId: string | null;
15873
15873
  scheduleId: string | null;
@@ -15916,8 +15916,8 @@ export declare const fertigationRecommendationsRouter: {
15916
15916
  createdAt: string;
15917
15917
  updatedAt: string;
15918
15918
  fieldId: string;
15919
- estimatedCost: number | null;
15920
15919
  confidence: number | null;
15920
+ estimatedCost: number | null;
15921
15921
  applicationMethod: "fertigation" | "broadcast" | "foliar";
15922
15922
  soilTestId: string | null;
15923
15923
  scheduleId: string | null;
@@ -16227,8 +16227,8 @@ export declare const fertigationRecommendationsRouter: {
16227
16227
  createdAt: string;
16228
16228
  updatedAt: string;
16229
16229
  fieldId: string;
16230
- estimatedCost: number | null;
16231
16230
  confidence: number | null;
16231
+ estimatedCost: number | null;
16232
16232
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16233
16233
  soilTestId: string | null;
16234
16234
  scheduleId: string | null;
@@ -16258,8 +16258,8 @@ export declare const fertigationRecommendationsRouter: {
16258
16258
  createdAt: string;
16259
16259
  updatedAt: string;
16260
16260
  fieldId: string;
16261
- estimatedCost: number | null;
16262
16261
  confidence: number | null;
16262
+ estimatedCost: number | null;
16263
16263
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16264
16264
  soilTestId: string | null;
16265
16265
  scheduleId: string | null;
@@ -16296,8 +16296,8 @@ export declare const fertigationRecommendationsRouter: {
16296
16296
  createdAt: string;
16297
16297
  updatedAt: string;
16298
16298
  fieldId: string;
16299
- estimatedCost: number | null;
16300
16299
  confidence: number | null;
16300
+ estimatedCost: number | null;
16301
16301
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16302
16302
  soilTestId: string | null;
16303
16303
  scheduleId: string | null;
@@ -16334,8 +16334,8 @@ export declare const fertigationRecommendationsRouter: {
16334
16334
  createdAt: string;
16335
16335
  updatedAt: string;
16336
16336
  fieldId: string;
16337
- estimatedCost: number | null;
16338
16337
  confidence: number | null;
16338
+ estimatedCost: number | null;
16339
16339
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16340
16340
  soilTestId: string | null;
16341
16341
  scheduleId: string | null;
@@ -16427,6 +16427,7 @@ export declare const fertigationRecommendationsRouter: {
16427
16427
  fieldId: string;
16428
16428
  notes: string | null;
16429
16429
  cropName: string;
16430
+ estimatedTotalCost: number | null;
16430
16431
  cropNutrientProfileId: string;
16431
16432
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16432
16433
  baselineSoilTestId: string | null;
@@ -16443,7 +16444,6 @@ export declare const fertigationRecommendationsRouter: {
16443
16444
  applicationEfficiency: number;
16444
16445
  weeklyFrequency: number;
16445
16446
  totalWeeks: number | null;
16446
- estimatedTotalCost: number | null;
16447
16447
  actualTotalCost: number | null;
16448
16448
  fieldName?: string | undefined;
16449
16449
  pendingEvents?: number | undefined;
@@ -16460,6 +16460,7 @@ export declare const fertigationRecommendationsRouter: {
16460
16460
  fieldId: string;
16461
16461
  notes: string | null;
16462
16462
  cropName: string;
16463
+ estimatedTotalCost: number | null;
16463
16464
  cropNutrientProfileId: string;
16464
16465
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16465
16466
  baselineSoilTestId: string | null;
@@ -16476,7 +16477,6 @@ export declare const fertigationRecommendationsRouter: {
16476
16477
  applicationEfficiency: number;
16477
16478
  weeklyFrequency: number;
16478
16479
  totalWeeks: number | null;
16479
- estimatedTotalCost: number | null;
16480
16480
  actualTotalCost: number | null;
16481
16481
  fieldName?: string | undefined;
16482
16482
  pendingEvents?: number | undefined;
@@ -16500,6 +16500,7 @@ export declare const fertigationRecommendationsRouter: {
16500
16500
  fieldId: string;
16501
16501
  notes: string | null;
16502
16502
  cropName: string;
16503
+ estimatedTotalCost: number | null;
16503
16504
  cropNutrientProfileId: string;
16504
16505
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16505
16506
  baselineSoilTestId: string | null;
@@ -16516,7 +16517,6 @@ export declare const fertigationRecommendationsRouter: {
16516
16517
  applicationEfficiency: number;
16517
16518
  weeklyFrequency: number;
16518
16519
  totalWeeks: number | null;
16519
- estimatedTotalCost: number | null;
16520
16520
  actualTotalCost: number | null;
16521
16521
  fieldName?: string | undefined;
16522
16522
  pendingEvents?: number | undefined;
@@ -16540,6 +16540,7 @@ export declare const fertigationRecommendationsRouter: {
16540
16540
  fieldId: string;
16541
16541
  notes: string | null;
16542
16542
  cropName: string;
16543
+ estimatedTotalCost: number | null;
16543
16544
  cropNutrientProfileId: string;
16544
16545
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16545
16546
  baselineSoilTestId: string | null;
@@ -16556,7 +16557,6 @@ export declare const fertigationRecommendationsRouter: {
16556
16557
  applicationEfficiency: number;
16557
16558
  weeklyFrequency: number;
16558
16559
  totalWeeks: number | null;
16559
- estimatedTotalCost: number | null;
16560
16560
  actualTotalCost: number | null;
16561
16561
  fieldName?: string | undefined;
16562
16562
  pendingEvents?: number | undefined;
@@ -16576,8 +16576,8 @@ export declare const fertigationRecommendationsRouter: {
16576
16576
  createdAt: string;
16577
16577
  updatedAt: string;
16578
16578
  fieldId: string;
16579
- estimatedCost: number | null;
16580
16579
  confidence: number | null;
16580
+ estimatedCost: number | null;
16581
16581
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16582
16582
  soilTestId: string | null;
16583
16583
  scheduleId: string | null;
@@ -16621,6 +16621,7 @@ export declare const fertigationRecommendationsRouter: {
16621
16621
  fieldId: string;
16622
16622
  notes: string | null;
16623
16623
  cropName: string;
16624
+ estimatedTotalCost: number | null;
16624
16625
  cropNutrientProfileId: string;
16625
16626
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16626
16627
  baselineSoilTestId: string | null;
@@ -16637,7 +16638,6 @@ export declare const fertigationRecommendationsRouter: {
16637
16638
  applicationEfficiency: number;
16638
16639
  weeklyFrequency: number;
16639
16640
  totalWeeks: number | null;
16640
- estimatedTotalCost: number | null;
16641
16641
  actualTotalCost: number | null;
16642
16642
  fieldName?: string | undefined;
16643
16643
  pendingEvents?: number | undefined;
@@ -16657,8 +16657,8 @@ export declare const fertigationRecommendationsRouter: {
16657
16657
  createdAt: string;
16658
16658
  updatedAt: string;
16659
16659
  fieldId: string;
16660
- estimatedCost: number | null;
16661
16660
  confidence: number | null;
16661
+ estimatedCost: number | null;
16662
16662
  applicationMethod: "fertigation" | "broadcast" | "foliar";
16663
16663
  soilTestId: string | null;
16664
16664
  scheduleId: string | null;
@@ -16702,6 +16702,7 @@ export declare const fertigationRecommendationsRouter: {
16702
16702
  fieldId: string;
16703
16703
  notes: string | null;
16704
16704
  cropName: string;
16705
+ estimatedTotalCost: number | null;
16705
16706
  cropNutrientProfileId: string;
16706
16707
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
16707
16708
  baselineSoilTestId: string | null;
@@ -16718,7 +16719,6 @@ export declare const fertigationRecommendationsRouter: {
16718
16719
  applicationEfficiency: number;
16719
16720
  weeklyFrequency: number;
16720
16721
  totalWeeks: number | null;
16721
- estimatedTotalCost: number | null;
16722
16722
  actualTotalCost: number | null;
16723
16723
  fieldName?: string | undefined;
16724
16724
  pendingEvents?: number | undefined;
@@ -17086,8 +17086,8 @@ export declare const fertigationRecommendationsRouter: {
17086
17086
  createdAt: string;
17087
17087
  updatedAt: string;
17088
17088
  fieldId: string;
17089
- estimatedCost: number | null;
17090
17089
  confidence: number | null;
17090
+ estimatedCost: number | null;
17091
17091
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17092
17092
  soilTestId: string | null;
17093
17093
  scheduleId: string | null;
@@ -17117,8 +17117,8 @@ export declare const fertigationRecommendationsRouter: {
17117
17117
  createdAt: string;
17118
17118
  updatedAt: string;
17119
17119
  fieldId: string;
17120
- estimatedCost: number | null;
17121
17120
  confidence: number | null;
17121
+ estimatedCost: number | null;
17122
17122
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17123
17123
  soilTestId: string | null;
17124
17124
  scheduleId: string | null;
@@ -17155,8 +17155,8 @@ export declare const fertigationRecommendationsRouter: {
17155
17155
  createdAt: string;
17156
17156
  updatedAt: string;
17157
17157
  fieldId: string;
17158
- estimatedCost: number | null;
17159
17158
  confidence: number | null;
17159
+ estimatedCost: number | null;
17160
17160
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17161
17161
  soilTestId: string | null;
17162
17162
  scheduleId: string | null;
@@ -17193,8 +17193,8 @@ export declare const fertigationRecommendationsRouter: {
17193
17193
  createdAt: string;
17194
17194
  updatedAt: string;
17195
17195
  fieldId: string;
17196
- estimatedCost: number | null;
17197
17196
  confidence: number | null;
17197
+ estimatedCost: number | null;
17198
17198
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17199
17199
  soilTestId: string | null;
17200
17200
  scheduleId: string | null;
@@ -17257,8 +17257,8 @@ export declare const fertigationRecommendationsRouter: {
17257
17257
  createdAt: string;
17258
17258
  updatedAt: string;
17259
17259
  fieldId: string;
17260
- estimatedCost: number | null;
17261
17260
  confidence: number | null;
17261
+ estimatedCost: number | null;
17262
17262
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17263
17263
  soilTestId: string | null;
17264
17264
  scheduleId: string | null;
@@ -17307,8 +17307,8 @@ export declare const fertigationRecommendationsRouter: {
17307
17307
  createdAt: string;
17308
17308
  updatedAt: string;
17309
17309
  fieldId: string;
17310
- estimatedCost: number | null;
17311
17310
  confidence: number | null;
17311
+ estimatedCost: number | null;
17312
17312
  applicationMethod: "fertigation" | "broadcast" | "foliar";
17313
17313
  soilTestId: string | null;
17314
17314
  scheduleId: string | null;
@@ -23779,6 +23779,7 @@ export declare const fertigationRouter: {
23779
23779
  fieldId: string;
23780
23780
  notes: string | null;
23781
23781
  cropName: string;
23782
+ estimatedTotalCost: number | null;
23782
23783
  cropNutrientProfileId: string;
23783
23784
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
23784
23785
  baselineSoilTestId: string | null;
@@ -23795,7 +23796,6 @@ export declare const fertigationRouter: {
23795
23796
  applicationEfficiency: number;
23796
23797
  weeklyFrequency: number;
23797
23798
  totalWeeks: number | null;
23798
- estimatedTotalCost: number | null;
23799
23799
  actualTotalCost: number | null;
23800
23800
  fieldName?: string | undefined;
23801
23801
  pendingEvents?: number | undefined;
@@ -23812,6 +23812,7 @@ export declare const fertigationRouter: {
23812
23812
  fieldId: string;
23813
23813
  notes: string | null;
23814
23814
  cropName: string;
23815
+ estimatedTotalCost: number | null;
23815
23816
  cropNutrientProfileId: string;
23816
23817
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
23817
23818
  baselineSoilTestId: string | null;
@@ -23828,7 +23829,6 @@ export declare const fertigationRouter: {
23828
23829
  applicationEfficiency: number;
23829
23830
  weeklyFrequency: number;
23830
23831
  totalWeeks: number | null;
23831
- estimatedTotalCost: number | null;
23832
23832
  actualTotalCost: number | null;
23833
23833
  fieldName?: string | undefined;
23834
23834
  pendingEvents?: number | undefined;
@@ -23852,6 +23852,7 @@ export declare const fertigationRouter: {
23852
23852
  fieldId: string;
23853
23853
  notes: string | null;
23854
23854
  cropName: string;
23855
+ estimatedTotalCost: number | null;
23855
23856
  cropNutrientProfileId: string;
23856
23857
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
23857
23858
  baselineSoilTestId: string | null;
@@ -23868,7 +23869,6 @@ export declare const fertigationRouter: {
23868
23869
  applicationEfficiency: number;
23869
23870
  weeklyFrequency: number;
23870
23871
  totalWeeks: number | null;
23871
- estimatedTotalCost: number | null;
23872
23872
  actualTotalCost: number | null;
23873
23873
  fieldName?: string | undefined;
23874
23874
  pendingEvents?: number | undefined;
@@ -23892,6 +23892,7 @@ export declare const fertigationRouter: {
23892
23892
  fieldId: string;
23893
23893
  notes: string | null;
23894
23894
  cropName: string;
23895
+ estimatedTotalCost: number | null;
23895
23896
  cropNutrientProfileId: string;
23896
23897
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
23897
23898
  baselineSoilTestId: string | null;
@@ -23908,7 +23909,6 @@ export declare const fertigationRouter: {
23908
23909
  applicationEfficiency: number;
23909
23910
  weeklyFrequency: number;
23910
23911
  totalWeeks: number | null;
23911
- estimatedTotalCost: number | null;
23912
23912
  actualTotalCost: number | null;
23913
23913
  fieldName?: string | undefined;
23914
23914
  pendingEvents?: number | undefined;
@@ -23958,6 +23958,7 @@ export declare const fertigationRouter: {
23958
23958
  fieldId: string;
23959
23959
  notes: string | null;
23960
23960
  cropName: string;
23961
+ estimatedTotalCost: number | null;
23961
23962
  cropNutrientProfileId: string;
23962
23963
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
23963
23964
  baselineSoilTestId: string | null;
@@ -23974,7 +23975,6 @@ export declare const fertigationRouter: {
23974
23975
  applicationEfficiency: number;
23975
23976
  weeklyFrequency: number;
23976
23977
  totalWeeks: number | null;
23977
- estimatedTotalCost: number | null;
23978
23978
  actualTotalCost: number | null;
23979
23979
  fieldName?: string | undefined;
23980
23980
  pendingEvents?: number | undefined;
@@ -24010,6 +24010,7 @@ export declare const fertigationRouter: {
24010
24010
  fieldId: string;
24011
24011
  notes: string | null;
24012
24012
  cropName: string;
24013
+ estimatedTotalCost: number | null;
24013
24014
  cropNutrientProfileId: string;
24014
24015
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24015
24016
  baselineSoilTestId: string | null;
@@ -24026,7 +24027,6 @@ export declare const fertigationRouter: {
24026
24027
  applicationEfficiency: number;
24027
24028
  weeklyFrequency: number;
24028
24029
  totalWeeks: number | null;
24029
- estimatedTotalCost: number | null;
24030
24030
  actualTotalCost: number | null;
24031
24031
  fieldName?: string | undefined;
24032
24032
  pendingEvents?: number | undefined;
@@ -24316,6 +24316,7 @@ export declare const fertigationRouter: {
24316
24316
  fieldId: string;
24317
24317
  notes: string | null;
24318
24318
  cropName: string;
24319
+ estimatedTotalCost: number | null;
24319
24320
  cropNutrientProfileId: string;
24320
24321
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24321
24322
  baselineSoilTestId: string | null;
@@ -24332,7 +24333,6 @@ export declare const fertigationRouter: {
24332
24333
  applicationEfficiency: number;
24333
24334
  weeklyFrequency: number;
24334
24335
  totalWeeks: number | null;
24335
- estimatedTotalCost: number | null;
24336
24336
  actualTotalCost: number | null;
24337
24337
  fieldName?: string | undefined;
24338
24338
  pendingEvents?: number | undefined;
@@ -24349,6 +24349,7 @@ export declare const fertigationRouter: {
24349
24349
  fieldId: string;
24350
24350
  notes: string | null;
24351
24351
  cropName: string;
24352
+ estimatedTotalCost: number | null;
24352
24353
  cropNutrientProfileId: string;
24353
24354
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24354
24355
  baselineSoilTestId: string | null;
@@ -24365,7 +24366,6 @@ export declare const fertigationRouter: {
24365
24366
  applicationEfficiency: number;
24366
24367
  weeklyFrequency: number;
24367
24368
  totalWeeks: number | null;
24368
- estimatedTotalCost: number | null;
24369
24369
  actualTotalCost: number | null;
24370
24370
  fieldName?: string | undefined;
24371
24371
  pendingEvents?: number | undefined;
@@ -24389,6 +24389,7 @@ export declare const fertigationRouter: {
24389
24389
  fieldId: string;
24390
24390
  notes: string | null;
24391
24391
  cropName: string;
24392
+ estimatedTotalCost: number | null;
24392
24393
  cropNutrientProfileId: string;
24393
24394
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24394
24395
  baselineSoilTestId: string | null;
@@ -24405,7 +24406,6 @@ export declare const fertigationRouter: {
24405
24406
  applicationEfficiency: number;
24406
24407
  weeklyFrequency: number;
24407
24408
  totalWeeks: number | null;
24408
- estimatedTotalCost: number | null;
24409
24409
  actualTotalCost: number | null;
24410
24410
  fieldName?: string | undefined;
24411
24411
  pendingEvents?: number | undefined;
@@ -24429,6 +24429,7 @@ export declare const fertigationRouter: {
24429
24429
  fieldId: string;
24430
24430
  notes: string | null;
24431
24431
  cropName: string;
24432
+ estimatedTotalCost: number | null;
24432
24433
  cropNutrientProfileId: string;
24433
24434
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24434
24435
  baselineSoilTestId: string | null;
@@ -24445,7 +24446,6 @@ export declare const fertigationRouter: {
24445
24446
  applicationEfficiency: number;
24446
24447
  weeklyFrequency: number;
24447
24448
  totalWeeks: number | null;
24448
- estimatedTotalCost: number | null;
24449
24449
  actualTotalCost: number | null;
24450
24450
  fieldName?: string | undefined;
24451
24451
  pendingEvents?: number | undefined;
@@ -24495,6 +24495,7 @@ export declare const fertigationRouter: {
24495
24495
  fieldId: string;
24496
24496
  notes: string | null;
24497
24497
  cropName: string;
24498
+ estimatedTotalCost: number | null;
24498
24499
  cropNutrientProfileId: string;
24499
24500
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24500
24501
  baselineSoilTestId: string | null;
@@ -24511,7 +24512,6 @@ export declare const fertigationRouter: {
24511
24512
  applicationEfficiency: number;
24512
24513
  weeklyFrequency: number;
24513
24514
  totalWeeks: number | null;
24514
- estimatedTotalCost: number | null;
24515
24515
  actualTotalCost: number | null;
24516
24516
  fieldName?: string | undefined;
24517
24517
  pendingEvents?: number | undefined;
@@ -24547,6 +24547,7 @@ export declare const fertigationRouter: {
24547
24547
  fieldId: string;
24548
24548
  notes: string | null;
24549
24549
  cropName: string;
24550
+ estimatedTotalCost: number | null;
24550
24551
  cropNutrientProfileId: string;
24551
24552
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24552
24553
  baselineSoilTestId: string | null;
@@ -24563,7 +24564,6 @@ export declare const fertigationRouter: {
24563
24564
  applicationEfficiency: number;
24564
24565
  weeklyFrequency: number;
24565
24566
  totalWeeks: number | null;
24566
- estimatedTotalCost: number | null;
24567
24567
  actualTotalCost: number | null;
24568
24568
  fieldName?: string | undefined;
24569
24569
  pendingEvents?: number | undefined;
@@ -24956,6 +24956,7 @@ export declare const fertigationRouter: {
24956
24956
  fieldId: string;
24957
24957
  notes: string | null;
24958
24958
  cropName: string;
24959
+ estimatedTotalCost: number | null;
24959
24960
  cropNutrientProfileId: string;
24960
24961
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24961
24962
  baselineSoilTestId: string | null;
@@ -24972,7 +24973,6 @@ export declare const fertigationRouter: {
24972
24973
  applicationEfficiency: number;
24973
24974
  weeklyFrequency: number;
24974
24975
  totalWeeks: number | null;
24975
- estimatedTotalCost: number | null;
24976
24976
  actualTotalCost: number | null;
24977
24977
  fieldName?: string | undefined;
24978
24978
  pendingEvents?: number | undefined;
@@ -24989,6 +24989,7 @@ export declare const fertigationRouter: {
24989
24989
  fieldId: string;
24990
24990
  notes: string | null;
24991
24991
  cropName: string;
24992
+ estimatedTotalCost: number | null;
24992
24993
  cropNutrientProfileId: string;
24993
24994
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
24994
24995
  baselineSoilTestId: string | null;
@@ -25005,7 +25006,6 @@ export declare const fertigationRouter: {
25005
25006
  applicationEfficiency: number;
25006
25007
  weeklyFrequency: number;
25007
25008
  totalWeeks: number | null;
25008
- estimatedTotalCost: number | null;
25009
25009
  actualTotalCost: number | null;
25010
25010
  fieldName?: string | undefined;
25011
25011
  pendingEvents?: number | undefined;
@@ -25029,6 +25029,7 @@ export declare const fertigationRouter: {
25029
25029
  fieldId: string;
25030
25030
  notes: string | null;
25031
25031
  cropName: string;
25032
+ estimatedTotalCost: number | null;
25032
25033
  cropNutrientProfileId: string;
25033
25034
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25034
25035
  baselineSoilTestId: string | null;
@@ -25045,7 +25046,6 @@ export declare const fertigationRouter: {
25045
25046
  applicationEfficiency: number;
25046
25047
  weeklyFrequency: number;
25047
25048
  totalWeeks: number | null;
25048
- estimatedTotalCost: number | null;
25049
25049
  actualTotalCost: number | null;
25050
25050
  fieldName?: string | undefined;
25051
25051
  pendingEvents?: number | undefined;
@@ -25069,6 +25069,7 @@ export declare const fertigationRouter: {
25069
25069
  fieldId: string;
25070
25070
  notes: string | null;
25071
25071
  cropName: string;
25072
+ estimatedTotalCost: number | null;
25072
25073
  cropNutrientProfileId: string;
25073
25074
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25074
25075
  baselineSoilTestId: string | null;
@@ -25085,7 +25086,6 @@ export declare const fertigationRouter: {
25085
25086
  applicationEfficiency: number;
25086
25087
  weeklyFrequency: number;
25087
25088
  totalWeeks: number | null;
25088
- estimatedTotalCost: number | null;
25089
25089
  actualTotalCost: number | null;
25090
25090
  fieldName?: string | undefined;
25091
25091
  pendingEvents?: number | undefined;
@@ -25135,6 +25135,7 @@ export declare const fertigationRouter: {
25135
25135
  fieldId: string;
25136
25136
  notes: string | null;
25137
25137
  cropName: string;
25138
+ estimatedTotalCost: number | null;
25138
25139
  cropNutrientProfileId: string;
25139
25140
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25140
25141
  baselineSoilTestId: string | null;
@@ -25151,7 +25152,6 @@ export declare const fertigationRouter: {
25151
25152
  applicationEfficiency: number;
25152
25153
  weeklyFrequency: number;
25153
25154
  totalWeeks: number | null;
25154
- estimatedTotalCost: number | null;
25155
25155
  actualTotalCost: number | null;
25156
25156
  fieldName?: string | undefined;
25157
25157
  pendingEvents?: number | undefined;
@@ -25187,6 +25187,7 @@ export declare const fertigationRouter: {
25187
25187
  fieldId: string;
25188
25188
  notes: string | null;
25189
25189
  cropName: string;
25190
+ estimatedTotalCost: number | null;
25190
25191
  cropNutrientProfileId: string;
25191
25192
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25192
25193
  baselineSoilTestId: string | null;
@@ -25203,7 +25204,6 @@ export declare const fertigationRouter: {
25203
25204
  applicationEfficiency: number;
25204
25205
  weeklyFrequency: number;
25205
25206
  totalWeeks: number | null;
25206
- estimatedTotalCost: number | null;
25207
25207
  actualTotalCost: number | null;
25208
25208
  fieldName?: string | undefined;
25209
25209
  pendingEvents?: number | undefined;
@@ -25766,6 +25766,7 @@ export declare const fertigationRouter: {
25766
25766
  fieldId: string;
25767
25767
  notes: string | null;
25768
25768
  cropName: string;
25769
+ estimatedTotalCost: number | null;
25769
25770
  cropNutrientProfileId: string;
25770
25771
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25771
25772
  baselineSoilTestId: string | null;
@@ -25782,7 +25783,6 @@ export declare const fertigationRouter: {
25782
25783
  applicationEfficiency: number;
25783
25784
  weeklyFrequency: number;
25784
25785
  totalWeeks: number | null;
25785
- estimatedTotalCost: number | null;
25786
25786
  actualTotalCost: number | null;
25787
25787
  fieldName?: string | undefined;
25788
25788
  pendingEvents?: number | undefined;
@@ -25799,6 +25799,7 @@ export declare const fertigationRouter: {
25799
25799
  fieldId: string;
25800
25800
  notes: string | null;
25801
25801
  cropName: string;
25802
+ estimatedTotalCost: number | null;
25802
25803
  cropNutrientProfileId: string;
25803
25804
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25804
25805
  baselineSoilTestId: string | null;
@@ -25815,7 +25816,6 @@ export declare const fertigationRouter: {
25815
25816
  applicationEfficiency: number;
25816
25817
  weeklyFrequency: number;
25817
25818
  totalWeeks: number | null;
25818
- estimatedTotalCost: number | null;
25819
25819
  actualTotalCost: number | null;
25820
25820
  fieldName?: string | undefined;
25821
25821
  pendingEvents?: number | undefined;
@@ -25839,6 +25839,7 @@ export declare const fertigationRouter: {
25839
25839
  fieldId: string;
25840
25840
  notes: string | null;
25841
25841
  cropName: string;
25842
+ estimatedTotalCost: number | null;
25842
25843
  cropNutrientProfileId: string;
25843
25844
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25844
25845
  baselineSoilTestId: string | null;
@@ -25855,7 +25856,6 @@ export declare const fertigationRouter: {
25855
25856
  applicationEfficiency: number;
25856
25857
  weeklyFrequency: number;
25857
25858
  totalWeeks: number | null;
25858
- estimatedTotalCost: number | null;
25859
25859
  actualTotalCost: number | null;
25860
25860
  fieldName?: string | undefined;
25861
25861
  pendingEvents?: number | undefined;
@@ -25879,6 +25879,7 @@ export declare const fertigationRouter: {
25879
25879
  fieldId: string;
25880
25880
  notes: string | null;
25881
25881
  cropName: string;
25882
+ estimatedTotalCost: number | null;
25882
25883
  cropNutrientProfileId: string;
25883
25884
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25884
25885
  baselineSoilTestId: string | null;
@@ -25895,7 +25896,6 @@ export declare const fertigationRouter: {
25895
25896
  applicationEfficiency: number;
25896
25897
  weeklyFrequency: number;
25897
25898
  totalWeeks: number | null;
25898
- estimatedTotalCost: number | null;
25899
25899
  actualTotalCost: number | null;
25900
25900
  fieldName?: string | undefined;
25901
25901
  pendingEvents?: number | undefined;
@@ -25945,6 +25945,7 @@ export declare const fertigationRouter: {
25945
25945
  fieldId: string;
25946
25946
  notes: string | null;
25947
25947
  cropName: string;
25948
+ estimatedTotalCost: number | null;
25948
25949
  cropNutrientProfileId: string;
25949
25950
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
25950
25951
  baselineSoilTestId: string | null;
@@ -25961,7 +25962,6 @@ export declare const fertigationRouter: {
25961
25962
  applicationEfficiency: number;
25962
25963
  weeklyFrequency: number;
25963
25964
  totalWeeks: number | null;
25964
- estimatedTotalCost: number | null;
25965
25965
  actualTotalCost: number | null;
25966
25966
  fieldName?: string | undefined;
25967
25967
  pendingEvents?: number | undefined;
@@ -25997,6 +25997,7 @@ export declare const fertigationRouter: {
25997
25997
  fieldId: string;
25998
25998
  notes: string | null;
25999
25999
  cropName: string;
26000
+ estimatedTotalCost: number | null;
26000
26001
  cropNutrientProfileId: string;
26001
26002
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26002
26003
  baselineSoilTestId: string | null;
@@ -26013,7 +26014,6 @@ export declare const fertigationRouter: {
26013
26014
  applicationEfficiency: number;
26014
26015
  weeklyFrequency: number;
26015
26016
  totalWeeks: number | null;
26016
- estimatedTotalCost: number | null;
26017
26017
  actualTotalCost: number | null;
26018
26018
  fieldName?: string | undefined;
26019
26019
  pendingEvents?: number | undefined;
@@ -26483,6 +26483,7 @@ export declare const fertigationRouter: {
26483
26483
  fieldId: string;
26484
26484
  notes: string | null;
26485
26485
  cropName: string;
26486
+ estimatedTotalCost: number | null;
26486
26487
  cropNutrientProfileId: string;
26487
26488
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26488
26489
  baselineSoilTestId: string | null;
@@ -26499,7 +26500,6 @@ export declare const fertigationRouter: {
26499
26500
  applicationEfficiency: number;
26500
26501
  weeklyFrequency: number;
26501
26502
  totalWeeks: number | null;
26502
- estimatedTotalCost: number | null;
26503
26503
  actualTotalCost: number | null;
26504
26504
  fieldName?: string | undefined;
26505
26505
  pendingEvents?: number | undefined;
@@ -26516,6 +26516,7 @@ export declare const fertigationRouter: {
26516
26516
  fieldId: string;
26517
26517
  notes: string | null;
26518
26518
  cropName: string;
26519
+ estimatedTotalCost: number | null;
26519
26520
  cropNutrientProfileId: string;
26520
26521
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26521
26522
  baselineSoilTestId: string | null;
@@ -26532,7 +26533,6 @@ export declare const fertigationRouter: {
26532
26533
  applicationEfficiency: number;
26533
26534
  weeklyFrequency: number;
26534
26535
  totalWeeks: number | null;
26535
- estimatedTotalCost: number | null;
26536
26536
  actualTotalCost: number | null;
26537
26537
  fieldName?: string | undefined;
26538
26538
  pendingEvents?: number | undefined;
@@ -26556,6 +26556,7 @@ export declare const fertigationRouter: {
26556
26556
  fieldId: string;
26557
26557
  notes: string | null;
26558
26558
  cropName: string;
26559
+ estimatedTotalCost: number | null;
26559
26560
  cropNutrientProfileId: string;
26560
26561
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26561
26562
  baselineSoilTestId: string | null;
@@ -26572,7 +26573,6 @@ export declare const fertigationRouter: {
26572
26573
  applicationEfficiency: number;
26573
26574
  weeklyFrequency: number;
26574
26575
  totalWeeks: number | null;
26575
- estimatedTotalCost: number | null;
26576
26576
  actualTotalCost: number | null;
26577
26577
  fieldName?: string | undefined;
26578
26578
  pendingEvents?: number | undefined;
@@ -26596,6 +26596,7 @@ export declare const fertigationRouter: {
26596
26596
  fieldId: string;
26597
26597
  notes: string | null;
26598
26598
  cropName: string;
26599
+ estimatedTotalCost: number | null;
26599
26600
  cropNutrientProfileId: string;
26600
26601
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26601
26602
  baselineSoilTestId: string | null;
@@ -26612,7 +26613,6 @@ export declare const fertigationRouter: {
26612
26613
  applicationEfficiency: number;
26613
26614
  weeklyFrequency: number;
26614
26615
  totalWeeks: number | null;
26615
- estimatedTotalCost: number | null;
26616
26616
  actualTotalCost: number | null;
26617
26617
  fieldName?: string | undefined;
26618
26618
  pendingEvents?: number | undefined;
@@ -26662,6 +26662,7 @@ export declare const fertigationRouter: {
26662
26662
  fieldId: string;
26663
26663
  notes: string | null;
26664
26664
  cropName: string;
26665
+ estimatedTotalCost: number | null;
26665
26666
  cropNutrientProfileId: string;
26666
26667
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26667
26668
  baselineSoilTestId: string | null;
@@ -26678,7 +26679,6 @@ export declare const fertigationRouter: {
26678
26679
  applicationEfficiency: number;
26679
26680
  weeklyFrequency: number;
26680
26681
  totalWeeks: number | null;
26681
- estimatedTotalCost: number | null;
26682
26682
  actualTotalCost: number | null;
26683
26683
  fieldName?: string | undefined;
26684
26684
  pendingEvents?: number | undefined;
@@ -26714,6 +26714,7 @@ export declare const fertigationRouter: {
26714
26714
  fieldId: string;
26715
26715
  notes: string | null;
26716
26716
  cropName: string;
26717
+ estimatedTotalCost: number | null;
26717
26718
  cropNutrientProfileId: string;
26718
26719
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
26719
26720
  baselineSoilTestId: string | null;
@@ -26730,7 +26731,6 @@ export declare const fertigationRouter: {
26730
26731
  applicationEfficiency: number;
26731
26732
  weeklyFrequency: number;
26732
26733
  totalWeeks: number | null;
26733
- estimatedTotalCost: number | null;
26734
26734
  actualTotalCost: number | null;
26735
26735
  fieldName?: string | undefined;
26736
26736
  pendingEvents?: number | undefined;
@@ -27110,6 +27110,7 @@ export declare const fertigationRouter: {
27110
27110
  fieldId: string;
27111
27111
  notes: string | null;
27112
27112
  cropName: string;
27113
+ estimatedTotalCost: number | null;
27113
27114
  cropNutrientProfileId: string;
27114
27115
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27115
27116
  baselineSoilTestId: string | null;
@@ -27126,7 +27127,6 @@ export declare const fertigationRouter: {
27126
27127
  applicationEfficiency: number;
27127
27128
  weeklyFrequency: number;
27128
27129
  totalWeeks: number | null;
27129
- estimatedTotalCost: number | null;
27130
27130
  actualTotalCost: number | null;
27131
27131
  fieldName?: string | undefined;
27132
27132
  pendingEvents?: number | undefined;
@@ -27143,6 +27143,7 @@ export declare const fertigationRouter: {
27143
27143
  fieldId: string;
27144
27144
  notes: string | null;
27145
27145
  cropName: string;
27146
+ estimatedTotalCost: number | null;
27146
27147
  cropNutrientProfileId: string;
27147
27148
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27148
27149
  baselineSoilTestId: string | null;
@@ -27159,7 +27160,6 @@ export declare const fertigationRouter: {
27159
27160
  applicationEfficiency: number;
27160
27161
  weeklyFrequency: number;
27161
27162
  totalWeeks: number | null;
27162
- estimatedTotalCost: number | null;
27163
27163
  actualTotalCost: number | null;
27164
27164
  fieldName?: string | undefined;
27165
27165
  pendingEvents?: number | undefined;
@@ -27183,6 +27183,7 @@ export declare const fertigationRouter: {
27183
27183
  fieldId: string;
27184
27184
  notes: string | null;
27185
27185
  cropName: string;
27186
+ estimatedTotalCost: number | null;
27186
27187
  cropNutrientProfileId: string;
27187
27188
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27188
27189
  baselineSoilTestId: string | null;
@@ -27199,7 +27200,6 @@ export declare const fertigationRouter: {
27199
27200
  applicationEfficiency: number;
27200
27201
  weeklyFrequency: number;
27201
27202
  totalWeeks: number | null;
27202
- estimatedTotalCost: number | null;
27203
27203
  actualTotalCost: number | null;
27204
27204
  fieldName?: string | undefined;
27205
27205
  pendingEvents?: number | undefined;
@@ -27223,6 +27223,7 @@ export declare const fertigationRouter: {
27223
27223
  fieldId: string;
27224
27224
  notes: string | null;
27225
27225
  cropName: string;
27226
+ estimatedTotalCost: number | null;
27226
27227
  cropNutrientProfileId: string;
27227
27228
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27228
27229
  baselineSoilTestId: string | null;
@@ -27239,7 +27240,6 @@ export declare const fertigationRouter: {
27239
27240
  applicationEfficiency: number;
27240
27241
  weeklyFrequency: number;
27241
27242
  totalWeeks: number | null;
27242
- estimatedTotalCost: number | null;
27243
27243
  actualTotalCost: number | null;
27244
27244
  fieldName?: string | undefined;
27245
27245
  pendingEvents?: number | undefined;
@@ -27289,6 +27289,7 @@ export declare const fertigationRouter: {
27289
27289
  fieldId: string;
27290
27290
  notes: string | null;
27291
27291
  cropName: string;
27292
+ estimatedTotalCost: number | null;
27292
27293
  cropNutrientProfileId: string;
27293
27294
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27294
27295
  baselineSoilTestId: string | null;
@@ -27305,7 +27306,6 @@ export declare const fertigationRouter: {
27305
27306
  applicationEfficiency: number;
27306
27307
  weeklyFrequency: number;
27307
27308
  totalWeeks: number | null;
27308
- estimatedTotalCost: number | null;
27309
27309
  actualTotalCost: number | null;
27310
27310
  fieldName?: string | undefined;
27311
27311
  pendingEvents?: number | undefined;
@@ -27341,6 +27341,7 @@ export declare const fertigationRouter: {
27341
27341
  fieldId: string;
27342
27342
  notes: string | null;
27343
27343
  cropName: string;
27344
+ estimatedTotalCost: number | null;
27344
27345
  cropNutrientProfileId: string;
27345
27346
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
27346
27347
  baselineSoilTestId: string | null;
@@ -27357,7 +27358,6 @@ export declare const fertigationRouter: {
27357
27358
  applicationEfficiency: number;
27358
27359
  weeklyFrequency: number;
27359
27360
  totalWeeks: number | null;
27360
- estimatedTotalCost: number | null;
27361
27361
  actualTotalCost: number | null;
27362
27362
  fieldName?: string | undefined;
27363
27363
  pendingEvents?: number | undefined;
@@ -28498,11 +28498,11 @@ export declare const fertigationRouter: {
28498
28498
  days: z.ZodDefault<z.ZodNumber>;
28499
28499
  limit: z.ZodDefault<z.ZodNumber>;
28500
28500
  }, "strip", z.ZodTypeAny, {
28501
- limit: number;
28502
28501
  days: number;
28502
+ limit: number;
28503
28503
  }, {
28504
- limit?: number | undefined;
28505
28504
  days?: number | undefined;
28505
+ limit?: number | undefined;
28506
28506
  }>;
28507
28507
  summary: "Get upcoming events";
28508
28508
  description: "Get upcoming fertigation events across all schedules for dashboard";
@@ -32074,8 +32074,8 @@ export declare const fertigationRouter: {
32074
32074
  createdAt: string;
32075
32075
  updatedAt: string;
32076
32076
  fieldId: string;
32077
- estimatedCost: number | null;
32078
32077
  confidence: number | null;
32078
+ estimatedCost: number | null;
32079
32079
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32080
32080
  soilTestId: string | null;
32081
32081
  scheduleId: string | null;
@@ -32105,8 +32105,8 @@ export declare const fertigationRouter: {
32105
32105
  createdAt: string;
32106
32106
  updatedAt: string;
32107
32107
  fieldId: string;
32108
- estimatedCost: number | null;
32109
32108
  confidence: number | null;
32109
+ estimatedCost: number | null;
32110
32110
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32111
32111
  soilTestId: string | null;
32112
32112
  scheduleId: string | null;
@@ -32143,8 +32143,8 @@ export declare const fertigationRouter: {
32143
32143
  createdAt: string;
32144
32144
  updatedAt: string;
32145
32145
  fieldId: string;
32146
- estimatedCost: number | null;
32147
32146
  confidence: number | null;
32147
+ estimatedCost: number | null;
32148
32148
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32149
32149
  soilTestId: string | null;
32150
32150
  scheduleId: string | null;
@@ -32181,8 +32181,8 @@ export declare const fertigationRouter: {
32181
32181
  createdAt: string;
32182
32182
  updatedAt: string;
32183
32183
  fieldId: string;
32184
- estimatedCost: number | null;
32185
32184
  confidence: number | null;
32185
+ estimatedCost: number | null;
32186
32186
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32187
32187
  soilTestId: string | null;
32188
32188
  scheduleId: string | null;
@@ -32245,8 +32245,8 @@ export declare const fertigationRouter: {
32245
32245
  createdAt: string;
32246
32246
  updatedAt: string;
32247
32247
  fieldId: string;
32248
- estimatedCost: number | null;
32249
32248
  confidence: number | null;
32249
+ estimatedCost: number | null;
32250
32250
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32251
32251
  soilTestId: string | null;
32252
32252
  scheduleId: string | null;
@@ -32295,8 +32295,8 @@ export declare const fertigationRouter: {
32295
32295
  createdAt: string;
32296
32296
  updatedAt: string;
32297
32297
  fieldId: string;
32298
- estimatedCost: number | null;
32299
32298
  confidence: number | null;
32299
+ estimatedCost: number | null;
32300
32300
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32301
32301
  soilTestId: string | null;
32302
32302
  scheduleId: string | null;
@@ -32797,8 +32797,8 @@ export declare const fertigationRouter: {
32797
32797
  createdAt: string;
32798
32798
  updatedAt: string;
32799
32799
  fieldId: string;
32800
- estimatedCost: number | null;
32801
32800
  confidence: number | null;
32801
+ estimatedCost: number | null;
32802
32802
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32803
32803
  soilTestId: string | null;
32804
32804
  scheduleId: string | null;
@@ -32828,8 +32828,8 @@ export declare const fertigationRouter: {
32828
32828
  createdAt: string;
32829
32829
  updatedAt: string;
32830
32830
  fieldId: string;
32831
- estimatedCost: number | null;
32832
32831
  confidence: number | null;
32832
+ estimatedCost: number | null;
32833
32833
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32834
32834
  soilTestId: string | null;
32835
32835
  scheduleId: string | null;
@@ -32866,8 +32866,8 @@ export declare const fertigationRouter: {
32866
32866
  createdAt: string;
32867
32867
  updatedAt: string;
32868
32868
  fieldId: string;
32869
- estimatedCost: number | null;
32870
32869
  confidence: number | null;
32870
+ estimatedCost: number | null;
32871
32871
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32872
32872
  soilTestId: string | null;
32873
32873
  scheduleId: string | null;
@@ -32904,8 +32904,8 @@ export declare const fertigationRouter: {
32904
32904
  createdAt: string;
32905
32905
  updatedAt: string;
32906
32906
  fieldId: string;
32907
- estimatedCost: number | null;
32908
32907
  confidence: number | null;
32908
+ estimatedCost: number | null;
32909
32909
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32910
32910
  soilTestId: string | null;
32911
32911
  scheduleId: string | null;
@@ -32968,8 +32968,8 @@ export declare const fertigationRouter: {
32968
32968
  createdAt: string;
32969
32969
  updatedAt: string;
32970
32970
  fieldId: string;
32971
- estimatedCost: number | null;
32972
32971
  confidence: number | null;
32972
+ estimatedCost: number | null;
32973
32973
  applicationMethod: "fertigation" | "broadcast" | "foliar";
32974
32974
  soilTestId: string | null;
32975
32975
  scheduleId: string | null;
@@ -33018,8 +33018,8 @@ export declare const fertigationRouter: {
33018
33018
  createdAt: string;
33019
33019
  updatedAt: string;
33020
33020
  fieldId: string;
33021
- estimatedCost: number | null;
33022
33021
  confidence: number | null;
33022
+ estimatedCost: number | null;
33023
33023
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33024
33024
  soilTestId: string | null;
33025
33025
  scheduleId: string | null;
@@ -33319,8 +33319,8 @@ export declare const fertigationRouter: {
33319
33319
  createdAt: string;
33320
33320
  updatedAt: string;
33321
33321
  fieldId: string;
33322
- estimatedCost: number | null;
33323
33322
  confidence: number | null;
33323
+ estimatedCost: number | null;
33324
33324
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33325
33325
  soilTestId: string | null;
33326
33326
  scheduleId: string | null;
@@ -33350,8 +33350,8 @@ export declare const fertigationRouter: {
33350
33350
  createdAt: string;
33351
33351
  updatedAt: string;
33352
33352
  fieldId: string;
33353
- estimatedCost: number | null;
33354
33353
  confidence: number | null;
33354
+ estimatedCost: number | null;
33355
33355
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33356
33356
  soilTestId: string | null;
33357
33357
  scheduleId: string | null;
@@ -33388,8 +33388,8 @@ export declare const fertigationRouter: {
33388
33388
  createdAt: string;
33389
33389
  updatedAt: string;
33390
33390
  fieldId: string;
33391
- estimatedCost: number | null;
33392
33391
  confidence: number | null;
33392
+ estimatedCost: number | null;
33393
33393
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33394
33394
  soilTestId: string | null;
33395
33395
  scheduleId: string | null;
@@ -33426,8 +33426,8 @@ export declare const fertigationRouter: {
33426
33426
  createdAt: string;
33427
33427
  updatedAt: string;
33428
33428
  fieldId: string;
33429
- estimatedCost: number | null;
33430
33429
  confidence: number | null;
33430
+ estimatedCost: number | null;
33431
33431
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33432
33432
  soilTestId: string | null;
33433
33433
  scheduleId: string | null;
@@ -33490,8 +33490,8 @@ export declare const fertigationRouter: {
33490
33490
  createdAt: string;
33491
33491
  updatedAt: string;
33492
33492
  fieldId: string;
33493
- estimatedCost: number | null;
33494
33493
  confidence: number | null;
33494
+ estimatedCost: number | null;
33495
33495
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33496
33496
  soilTestId: string | null;
33497
33497
  scheduleId: string | null;
@@ -33540,8 +33540,8 @@ export declare const fertigationRouter: {
33540
33540
  createdAt: string;
33541
33541
  updatedAt: string;
33542
33542
  fieldId: string;
33543
- estimatedCost: number | null;
33544
33543
  confidence: number | null;
33544
+ estimatedCost: number | null;
33545
33545
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33546
33546
  soilTestId: string | null;
33547
33547
  scheduleId: string | null;
@@ -33851,8 +33851,8 @@ export declare const fertigationRouter: {
33851
33851
  createdAt: string;
33852
33852
  updatedAt: string;
33853
33853
  fieldId: string;
33854
- estimatedCost: number | null;
33855
33854
  confidence: number | null;
33855
+ estimatedCost: number | null;
33856
33856
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33857
33857
  soilTestId: string | null;
33858
33858
  scheduleId: string | null;
@@ -33882,8 +33882,8 @@ export declare const fertigationRouter: {
33882
33882
  createdAt: string;
33883
33883
  updatedAt: string;
33884
33884
  fieldId: string;
33885
- estimatedCost: number | null;
33886
33885
  confidence: number | null;
33886
+ estimatedCost: number | null;
33887
33887
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33888
33888
  soilTestId: string | null;
33889
33889
  scheduleId: string | null;
@@ -33920,8 +33920,8 @@ export declare const fertigationRouter: {
33920
33920
  createdAt: string;
33921
33921
  updatedAt: string;
33922
33922
  fieldId: string;
33923
- estimatedCost: number | null;
33924
33923
  confidence: number | null;
33924
+ estimatedCost: number | null;
33925
33925
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33926
33926
  soilTestId: string | null;
33927
33927
  scheduleId: string | null;
@@ -33958,8 +33958,8 @@ export declare const fertigationRouter: {
33958
33958
  createdAt: string;
33959
33959
  updatedAt: string;
33960
33960
  fieldId: string;
33961
- estimatedCost: number | null;
33962
33961
  confidence: number | null;
33962
+ estimatedCost: number | null;
33963
33963
  applicationMethod: "fertigation" | "broadcast" | "foliar";
33964
33964
  soilTestId: string | null;
33965
33965
  scheduleId: string | null;
@@ -34051,6 +34051,7 @@ export declare const fertigationRouter: {
34051
34051
  fieldId: string;
34052
34052
  notes: string | null;
34053
34053
  cropName: string;
34054
+ estimatedTotalCost: number | null;
34054
34055
  cropNutrientProfileId: string;
34055
34056
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34056
34057
  baselineSoilTestId: string | null;
@@ -34067,7 +34068,6 @@ export declare const fertigationRouter: {
34067
34068
  applicationEfficiency: number;
34068
34069
  weeklyFrequency: number;
34069
34070
  totalWeeks: number | null;
34070
- estimatedTotalCost: number | null;
34071
34071
  actualTotalCost: number | null;
34072
34072
  fieldName?: string | undefined;
34073
34073
  pendingEvents?: number | undefined;
@@ -34084,6 +34084,7 @@ export declare const fertigationRouter: {
34084
34084
  fieldId: string;
34085
34085
  notes: string | null;
34086
34086
  cropName: string;
34087
+ estimatedTotalCost: number | null;
34087
34088
  cropNutrientProfileId: string;
34088
34089
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34089
34090
  baselineSoilTestId: string | null;
@@ -34100,7 +34101,6 @@ export declare const fertigationRouter: {
34100
34101
  applicationEfficiency: number;
34101
34102
  weeklyFrequency: number;
34102
34103
  totalWeeks: number | null;
34103
- estimatedTotalCost: number | null;
34104
34104
  actualTotalCost: number | null;
34105
34105
  fieldName?: string | undefined;
34106
34106
  pendingEvents?: number | undefined;
@@ -34124,6 +34124,7 @@ export declare const fertigationRouter: {
34124
34124
  fieldId: string;
34125
34125
  notes: string | null;
34126
34126
  cropName: string;
34127
+ estimatedTotalCost: number | null;
34127
34128
  cropNutrientProfileId: string;
34128
34129
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34129
34130
  baselineSoilTestId: string | null;
@@ -34140,7 +34141,6 @@ export declare const fertigationRouter: {
34140
34141
  applicationEfficiency: number;
34141
34142
  weeklyFrequency: number;
34142
34143
  totalWeeks: number | null;
34143
- estimatedTotalCost: number | null;
34144
34144
  actualTotalCost: number | null;
34145
34145
  fieldName?: string | undefined;
34146
34146
  pendingEvents?: number | undefined;
@@ -34164,6 +34164,7 @@ export declare const fertigationRouter: {
34164
34164
  fieldId: string;
34165
34165
  notes: string | null;
34166
34166
  cropName: string;
34167
+ estimatedTotalCost: number | null;
34167
34168
  cropNutrientProfileId: string;
34168
34169
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34169
34170
  baselineSoilTestId: string | null;
@@ -34180,7 +34181,6 @@ export declare const fertigationRouter: {
34180
34181
  applicationEfficiency: number;
34181
34182
  weeklyFrequency: number;
34182
34183
  totalWeeks: number | null;
34183
- estimatedTotalCost: number | null;
34184
34184
  actualTotalCost: number | null;
34185
34185
  fieldName?: string | undefined;
34186
34186
  pendingEvents?: number | undefined;
@@ -34200,8 +34200,8 @@ export declare const fertigationRouter: {
34200
34200
  createdAt: string;
34201
34201
  updatedAt: string;
34202
34202
  fieldId: string;
34203
- estimatedCost: number | null;
34204
34203
  confidence: number | null;
34204
+ estimatedCost: number | null;
34205
34205
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34206
34206
  soilTestId: string | null;
34207
34207
  scheduleId: string | null;
@@ -34245,6 +34245,7 @@ export declare const fertigationRouter: {
34245
34245
  fieldId: string;
34246
34246
  notes: string | null;
34247
34247
  cropName: string;
34248
+ estimatedTotalCost: number | null;
34248
34249
  cropNutrientProfileId: string;
34249
34250
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34250
34251
  baselineSoilTestId: string | null;
@@ -34261,7 +34262,6 @@ export declare const fertigationRouter: {
34261
34262
  applicationEfficiency: number;
34262
34263
  weeklyFrequency: number;
34263
34264
  totalWeeks: number | null;
34264
- estimatedTotalCost: number | null;
34265
34265
  actualTotalCost: number | null;
34266
34266
  fieldName?: string | undefined;
34267
34267
  pendingEvents?: number | undefined;
@@ -34281,8 +34281,8 @@ export declare const fertigationRouter: {
34281
34281
  createdAt: string;
34282
34282
  updatedAt: string;
34283
34283
  fieldId: string;
34284
- estimatedCost: number | null;
34285
34284
  confidence: number | null;
34285
+ estimatedCost: number | null;
34286
34286
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34287
34287
  soilTestId: string | null;
34288
34288
  scheduleId: string | null;
@@ -34326,6 +34326,7 @@ export declare const fertigationRouter: {
34326
34326
  fieldId: string;
34327
34327
  notes: string | null;
34328
34328
  cropName: string;
34329
+ estimatedTotalCost: number | null;
34329
34330
  cropNutrientProfileId: string;
34330
34331
  currentStage: "flowering" | "harvest" | "vegetative" | "fruiting" | "transplant" | "ripening" | null;
34331
34332
  baselineSoilTestId: string | null;
@@ -34342,7 +34343,6 @@ export declare const fertigationRouter: {
34342
34343
  applicationEfficiency: number;
34343
34344
  weeklyFrequency: number;
34344
34345
  totalWeeks: number | null;
34345
- estimatedTotalCost: number | null;
34346
34346
  actualTotalCost: number | null;
34347
34347
  fieldName?: string | undefined;
34348
34348
  pendingEvents?: number | undefined;
@@ -34710,8 +34710,8 @@ export declare const fertigationRouter: {
34710
34710
  createdAt: string;
34711
34711
  updatedAt: string;
34712
34712
  fieldId: string;
34713
- estimatedCost: number | null;
34714
34713
  confidence: number | null;
34714
+ estimatedCost: number | null;
34715
34715
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34716
34716
  soilTestId: string | null;
34717
34717
  scheduleId: string | null;
@@ -34741,8 +34741,8 @@ export declare const fertigationRouter: {
34741
34741
  createdAt: string;
34742
34742
  updatedAt: string;
34743
34743
  fieldId: string;
34744
- estimatedCost: number | null;
34745
34744
  confidence: number | null;
34745
+ estimatedCost: number | null;
34746
34746
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34747
34747
  soilTestId: string | null;
34748
34748
  scheduleId: string | null;
@@ -34779,8 +34779,8 @@ export declare const fertigationRouter: {
34779
34779
  createdAt: string;
34780
34780
  updatedAt: string;
34781
34781
  fieldId: string;
34782
- estimatedCost: number | null;
34783
34782
  confidence: number | null;
34783
+ estimatedCost: number | null;
34784
34784
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34785
34785
  soilTestId: string | null;
34786
34786
  scheduleId: string | null;
@@ -34817,8 +34817,8 @@ export declare const fertigationRouter: {
34817
34817
  createdAt: string;
34818
34818
  updatedAt: string;
34819
34819
  fieldId: string;
34820
- estimatedCost: number | null;
34821
34820
  confidence: number | null;
34821
+ estimatedCost: number | null;
34822
34822
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34823
34823
  soilTestId: string | null;
34824
34824
  scheduleId: string | null;
@@ -34881,8 +34881,8 @@ export declare const fertigationRouter: {
34881
34881
  createdAt: string;
34882
34882
  updatedAt: string;
34883
34883
  fieldId: string;
34884
- estimatedCost: number | null;
34885
34884
  confidence: number | null;
34885
+ estimatedCost: number | null;
34886
34886
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34887
34887
  soilTestId: string | null;
34888
34888
  scheduleId: string | null;
@@ -34931,8 +34931,8 @@ export declare const fertigationRouter: {
34931
34931
  createdAt: string;
34932
34932
  updatedAt: string;
34933
34933
  fieldId: string;
34934
- estimatedCost: number | null;
34935
34934
  confidence: number | null;
34935
+ estimatedCost: number | null;
34936
34936
  applicationMethod: "fertigation" | "broadcast" | "foliar";
34937
34937
  soilTestId: string | null;
34938
34938
  scheduleId: string | null;