@deepintel-ltd/farmpro-contracts 1.20.0 → 1.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/routes/agents.routes.d.ts +18 -18
- package/dist/routes/commodity-deals.routes.d.ts +307 -0
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
- package/dist/routes/commodity-deals.routes.js +16 -1
- package/dist/routes/fertigation.routes.d.ts +108 -108
- package/dist/routes/fields.routes.d.ts +852 -6
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +20 -1
- package/dist/routes/irrigation.routes.d.ts +22 -22
- package/dist/schemas/agents.schemas.d.ts +21 -21
- package/dist/schemas/agents.schemas.d.ts.map +1 -1
- package/dist/schemas/agents.schemas.js +1 -0
- package/dist/schemas/commodity-deals.schemas.d.ts +34 -0
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +8 -0
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/fields.schemas.d.ts +103 -5
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +10 -0
- package/dist/schemas/irrigation.schemas.d.ts +16 -16
- package/package.json +1 -1
|
@@ -3224,8 +3224,8 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3224
3224
|
name: string;
|
|
3225
3225
|
description: string | null;
|
|
3226
3226
|
plantingDate: string;
|
|
3227
|
-
expectedHarvestDate: string | null;
|
|
3228
3227
|
notes: string | null;
|
|
3228
|
+
expectedHarvestDate: string | null;
|
|
3229
3229
|
fieldId: string;
|
|
3230
3230
|
cropName: string;
|
|
3231
3231
|
estimatedTotalCost: number | null;
|
|
@@ -3257,8 +3257,8 @@ export declare const fertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3257
3257
|
name: string;
|
|
3258
3258
|
description: string | null;
|
|
3259
3259
|
plantingDate: string;
|
|
3260
|
-
expectedHarvestDate: string | null;
|
|
3261
3260
|
notes: string | null;
|
|
3261
|
+
expectedHarvestDate: string | null;
|
|
3262
3262
|
fieldId: string;
|
|
3263
3263
|
cropName: string;
|
|
3264
3264
|
estimatedTotalCost: number | null;
|
|
@@ -3307,8 +3307,8 @@ export declare const createFertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3307
3307
|
weeklyFrequency: number;
|
|
3308
3308
|
autoGenerateEvents: boolean;
|
|
3309
3309
|
description?: string | undefined;
|
|
3310
|
-
expectedHarvestDate?: string | undefined;
|
|
3311
3310
|
notes?: string | undefined;
|
|
3311
|
+
expectedHarvestDate?: string | undefined;
|
|
3312
3312
|
baselineSoilTestId?: string | undefined;
|
|
3313
3313
|
}, {
|
|
3314
3314
|
name: string;
|
|
@@ -3316,8 +3316,8 @@ export declare const createFertigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
3316
3316
|
fieldId: string;
|
|
3317
3317
|
cropNutrientProfileId: string;
|
|
3318
3318
|
description?: string | undefined;
|
|
3319
|
-
expectedHarvestDate?: string | undefined;
|
|
3320
3319
|
notes?: string | undefined;
|
|
3320
|
+
expectedHarvestDate?: string | undefined;
|
|
3321
3321
|
baselineSoilTestId?: string | undefined;
|
|
3322
3322
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3323
3323
|
applicationEfficiency?: number | undefined;
|
|
@@ -3341,8 +3341,8 @@ export declare const updateFertigationScheduleAttributesSchema: z.ZodObject<Omit
|
|
|
3341
3341
|
name?: string | undefined;
|
|
3342
3342
|
description?: string | undefined;
|
|
3343
3343
|
plantingDate?: string | undefined;
|
|
3344
|
-
expectedHarvestDate?: string | undefined;
|
|
3345
3344
|
notes?: string | undefined;
|
|
3345
|
+
expectedHarvestDate?: string | undefined;
|
|
3346
3346
|
baselineSoilTestId?: string | undefined;
|
|
3347
3347
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3348
3348
|
applicationEfficiency?: number | undefined;
|
|
@@ -3351,8 +3351,8 @@ export declare const updateFertigationScheduleAttributesSchema: z.ZodObject<Omit
|
|
|
3351
3351
|
name?: string | undefined;
|
|
3352
3352
|
description?: string | undefined;
|
|
3353
3353
|
plantingDate?: string | undefined;
|
|
3354
|
-
expectedHarvestDate?: string | undefined;
|
|
3355
3354
|
notes?: string | undefined;
|
|
3355
|
+
expectedHarvestDate?: string | undefined;
|
|
3356
3356
|
baselineSoilTestId?: string | undefined;
|
|
3357
3357
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3358
3358
|
applicationEfficiency?: number | undefined;
|
|
@@ -3397,8 +3397,8 @@ export declare const createFertigationScheduleSchema: z.ZodObject<{
|
|
|
3397
3397
|
weeklyFrequency: number;
|
|
3398
3398
|
autoGenerateEvents: boolean;
|
|
3399
3399
|
description?: string | undefined;
|
|
3400
|
-
expectedHarvestDate?: string | undefined;
|
|
3401
3400
|
notes?: string | undefined;
|
|
3401
|
+
expectedHarvestDate?: string | undefined;
|
|
3402
3402
|
baselineSoilTestId?: string | undefined;
|
|
3403
3403
|
}, {
|
|
3404
3404
|
name: string;
|
|
@@ -3406,8 +3406,8 @@ export declare const createFertigationScheduleSchema: z.ZodObject<{
|
|
|
3406
3406
|
fieldId: string;
|
|
3407
3407
|
cropNutrientProfileId: string;
|
|
3408
3408
|
description?: string | undefined;
|
|
3409
|
-
expectedHarvestDate?: string | undefined;
|
|
3410
3409
|
notes?: string | undefined;
|
|
3410
|
+
expectedHarvestDate?: string | undefined;
|
|
3411
3411
|
baselineSoilTestId?: string | undefined;
|
|
3412
3412
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3413
3413
|
applicationEfficiency?: number | undefined;
|
|
@@ -3426,8 +3426,8 @@ export declare const createFertigationScheduleSchema: z.ZodObject<{
|
|
|
3426
3426
|
weeklyFrequency: number;
|
|
3427
3427
|
autoGenerateEvents: boolean;
|
|
3428
3428
|
description?: string | undefined;
|
|
3429
|
-
expectedHarvestDate?: string | undefined;
|
|
3430
3429
|
notes?: string | undefined;
|
|
3430
|
+
expectedHarvestDate?: string | undefined;
|
|
3431
3431
|
baselineSoilTestId?: string | undefined;
|
|
3432
3432
|
};
|
|
3433
3433
|
}, {
|
|
@@ -3438,8 +3438,8 @@ export declare const createFertigationScheduleSchema: z.ZodObject<{
|
|
|
3438
3438
|
fieldId: string;
|
|
3439
3439
|
cropNutrientProfileId: string;
|
|
3440
3440
|
description?: string | undefined;
|
|
3441
|
-
expectedHarvestDate?: string | undefined;
|
|
3442
3441
|
notes?: string | undefined;
|
|
3442
|
+
expectedHarvestDate?: string | undefined;
|
|
3443
3443
|
baselineSoilTestId?: string | undefined;
|
|
3444
3444
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3445
3445
|
applicationEfficiency?: number | undefined;
|
|
@@ -3467,8 +3467,8 @@ export declare const updateFertigationScheduleSchema: z.ZodObject<{
|
|
|
3467
3467
|
name?: string | undefined;
|
|
3468
3468
|
description?: string | undefined;
|
|
3469
3469
|
plantingDate?: string | undefined;
|
|
3470
|
-
expectedHarvestDate?: string | undefined;
|
|
3471
3470
|
notes?: string | undefined;
|
|
3471
|
+
expectedHarvestDate?: string | undefined;
|
|
3472
3472
|
baselineSoilTestId?: string | undefined;
|
|
3473
3473
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3474
3474
|
applicationEfficiency?: number | undefined;
|
|
@@ -3477,8 +3477,8 @@ export declare const updateFertigationScheduleSchema: z.ZodObject<{
|
|
|
3477
3477
|
name?: string | undefined;
|
|
3478
3478
|
description?: string | undefined;
|
|
3479
3479
|
plantingDate?: string | undefined;
|
|
3480
|
-
expectedHarvestDate?: string | undefined;
|
|
3481
3480
|
notes?: string | undefined;
|
|
3481
|
+
expectedHarvestDate?: string | undefined;
|
|
3482
3482
|
baselineSoilTestId?: string | undefined;
|
|
3483
3483
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3484
3484
|
applicationEfficiency?: number | undefined;
|
|
@@ -3491,8 +3491,8 @@ export declare const updateFertigationScheduleSchema: z.ZodObject<{
|
|
|
3491
3491
|
name?: string | undefined;
|
|
3492
3492
|
description?: string | undefined;
|
|
3493
3493
|
plantingDate?: string | undefined;
|
|
3494
|
-
expectedHarvestDate?: string | undefined;
|
|
3495
3494
|
notes?: string | undefined;
|
|
3495
|
+
expectedHarvestDate?: string | undefined;
|
|
3496
3496
|
baselineSoilTestId?: string | undefined;
|
|
3497
3497
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3498
3498
|
applicationEfficiency?: number | undefined;
|
|
@@ -3505,8 +3505,8 @@ export declare const updateFertigationScheduleSchema: z.ZodObject<{
|
|
|
3505
3505
|
name?: string | undefined;
|
|
3506
3506
|
description?: string | undefined;
|
|
3507
3507
|
plantingDate?: string | undefined;
|
|
3508
|
-
expectedHarvestDate?: string | undefined;
|
|
3509
3508
|
notes?: string | undefined;
|
|
3509
|
+
expectedHarvestDate?: string | undefined;
|
|
3510
3510
|
baselineSoilTestId?: string | undefined;
|
|
3511
3511
|
primaryApplicationMethod?: "fertigation" | "broadcast" | "foliar" | undefined;
|
|
3512
3512
|
applicationEfficiency?: number | undefined;
|
|
@@ -3571,8 +3571,8 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3571
3571
|
name: string;
|
|
3572
3572
|
description: string | null;
|
|
3573
3573
|
plantingDate: string;
|
|
3574
|
-
expectedHarvestDate: string | null;
|
|
3575
3574
|
notes: string | null;
|
|
3575
|
+
expectedHarvestDate: string | null;
|
|
3576
3576
|
fieldId: string;
|
|
3577
3577
|
cropName: string;
|
|
3578
3578
|
estimatedTotalCost: number | null;
|
|
@@ -3604,8 +3604,8 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3604
3604
|
name: string;
|
|
3605
3605
|
description: string | null;
|
|
3606
3606
|
plantingDate: string;
|
|
3607
|
-
expectedHarvestDate: string | null;
|
|
3608
3607
|
notes: string | null;
|
|
3608
|
+
expectedHarvestDate: string | null;
|
|
3609
3609
|
fieldId: string;
|
|
3610
3610
|
cropName: string;
|
|
3611
3611
|
estimatedTotalCost: number | null;
|
|
@@ -3644,8 +3644,8 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3644
3644
|
name: string;
|
|
3645
3645
|
description: string | null;
|
|
3646
3646
|
plantingDate: string;
|
|
3647
|
-
expectedHarvestDate: string | null;
|
|
3648
3647
|
notes: string | null;
|
|
3648
|
+
expectedHarvestDate: string | null;
|
|
3649
3649
|
fieldId: string;
|
|
3650
3650
|
cropName: string;
|
|
3651
3651
|
estimatedTotalCost: number | null;
|
|
@@ -3684,8 +3684,8 @@ export declare const fertigationScheduleResourceSchema: z.ZodObject<{
|
|
|
3684
3684
|
name: string;
|
|
3685
3685
|
description: string | null;
|
|
3686
3686
|
plantingDate: string;
|
|
3687
|
-
expectedHarvestDate: string | null;
|
|
3688
3687
|
notes: string | null;
|
|
3688
|
+
expectedHarvestDate: string | null;
|
|
3689
3689
|
fieldId: string;
|
|
3690
3690
|
cropName: string;
|
|
3691
3691
|
estimatedTotalCost: number | null;
|
|
@@ -3774,8 +3774,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3774
3774
|
name: string;
|
|
3775
3775
|
description: string | null;
|
|
3776
3776
|
plantingDate: string;
|
|
3777
|
-
expectedHarvestDate: string | null;
|
|
3778
3777
|
notes: string | null;
|
|
3778
|
+
expectedHarvestDate: string | null;
|
|
3779
3779
|
fieldId: string;
|
|
3780
3780
|
cropName: string;
|
|
3781
3781
|
estimatedTotalCost: number | null;
|
|
@@ -3807,8 +3807,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3807
3807
|
name: string;
|
|
3808
3808
|
description: string | null;
|
|
3809
3809
|
plantingDate: string;
|
|
3810
|
-
expectedHarvestDate: string | null;
|
|
3811
3810
|
notes: string | null;
|
|
3811
|
+
expectedHarvestDate: string | null;
|
|
3812
3812
|
fieldId: string;
|
|
3813
3813
|
cropName: string;
|
|
3814
3814
|
estimatedTotalCost: number | null;
|
|
@@ -3847,8 +3847,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3847
3847
|
name: string;
|
|
3848
3848
|
description: string | null;
|
|
3849
3849
|
plantingDate: string;
|
|
3850
|
-
expectedHarvestDate: string | null;
|
|
3851
3850
|
notes: string | null;
|
|
3851
|
+
expectedHarvestDate: string | null;
|
|
3852
3852
|
fieldId: string;
|
|
3853
3853
|
cropName: string;
|
|
3854
3854
|
estimatedTotalCost: number | null;
|
|
@@ -3887,8 +3887,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3887
3887
|
name: string;
|
|
3888
3888
|
description: string | null;
|
|
3889
3889
|
plantingDate: string;
|
|
3890
|
-
expectedHarvestDate: string | null;
|
|
3891
3890
|
notes: string | null;
|
|
3891
|
+
expectedHarvestDate: string | null;
|
|
3892
3892
|
fieldId: string;
|
|
3893
3893
|
cropName: string;
|
|
3894
3894
|
estimatedTotalCost: number | null;
|
|
@@ -3953,8 +3953,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
3953
3953
|
name: string;
|
|
3954
3954
|
description: string | null;
|
|
3955
3955
|
plantingDate: string;
|
|
3956
|
-
expectedHarvestDate: string | null;
|
|
3957
3956
|
notes: string | null;
|
|
3957
|
+
expectedHarvestDate: string | null;
|
|
3958
3958
|
fieldId: string;
|
|
3959
3959
|
cropName: string;
|
|
3960
3960
|
estimatedTotalCost: number | null;
|
|
@@ -4005,8 +4005,8 @@ export declare const fertigationScheduleResponseSchema: z.ZodObject<{
|
|
|
4005
4005
|
name: string;
|
|
4006
4006
|
description: string | null;
|
|
4007
4007
|
plantingDate: string;
|
|
4008
|
-
expectedHarvestDate: string | null;
|
|
4009
4008
|
notes: string | null;
|
|
4009
|
+
expectedHarvestDate: string | null;
|
|
4010
4010
|
fieldId: string;
|
|
4011
4011
|
cropName: string;
|
|
4012
4012
|
estimatedTotalCost: number | null;
|
|
@@ -4106,8 +4106,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4106
4106
|
name: string;
|
|
4107
4107
|
description: string | null;
|
|
4108
4108
|
plantingDate: string;
|
|
4109
|
-
expectedHarvestDate: string | null;
|
|
4110
4109
|
notes: string | null;
|
|
4110
|
+
expectedHarvestDate: string | null;
|
|
4111
4111
|
fieldId: string;
|
|
4112
4112
|
cropName: string;
|
|
4113
4113
|
estimatedTotalCost: number | null;
|
|
@@ -4139,8 +4139,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4139
4139
|
name: string;
|
|
4140
4140
|
description: string | null;
|
|
4141
4141
|
plantingDate: string;
|
|
4142
|
-
expectedHarvestDate: string | null;
|
|
4143
4142
|
notes: string | null;
|
|
4143
|
+
expectedHarvestDate: string | null;
|
|
4144
4144
|
fieldId: string;
|
|
4145
4145
|
cropName: string;
|
|
4146
4146
|
estimatedTotalCost: number | null;
|
|
@@ -4179,8 +4179,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4179
4179
|
name: string;
|
|
4180
4180
|
description: string | null;
|
|
4181
4181
|
plantingDate: string;
|
|
4182
|
-
expectedHarvestDate: string | null;
|
|
4183
4182
|
notes: string | null;
|
|
4183
|
+
expectedHarvestDate: string | null;
|
|
4184
4184
|
fieldId: string;
|
|
4185
4185
|
cropName: string;
|
|
4186
4186
|
estimatedTotalCost: number | null;
|
|
@@ -4219,8 +4219,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4219
4219
|
name: string;
|
|
4220
4220
|
description: string | null;
|
|
4221
4221
|
plantingDate: string;
|
|
4222
|
-
expectedHarvestDate: string | null;
|
|
4223
4222
|
notes: string | null;
|
|
4223
|
+
expectedHarvestDate: string | null;
|
|
4224
4224
|
fieldId: string;
|
|
4225
4225
|
cropName: string;
|
|
4226
4226
|
estimatedTotalCost: number | null;
|
|
@@ -4285,8 +4285,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4285
4285
|
name: string;
|
|
4286
4286
|
description: string | null;
|
|
4287
4287
|
plantingDate: string;
|
|
4288
|
-
expectedHarvestDate: string | null;
|
|
4289
4288
|
notes: string | null;
|
|
4289
|
+
expectedHarvestDate: string | null;
|
|
4290
4290
|
fieldId: string;
|
|
4291
4291
|
cropName: string;
|
|
4292
4292
|
estimatedTotalCost: number | null;
|
|
@@ -4337,8 +4337,8 @@ export declare const fertigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
4337
4337
|
name: string;
|
|
4338
4338
|
description: string | null;
|
|
4339
4339
|
plantingDate: string;
|
|
4340
|
-
expectedHarvestDate: string | null;
|
|
4341
4340
|
notes: string | null;
|
|
4341
|
+
expectedHarvestDate: string | null;
|
|
4342
4342
|
fieldId: string;
|
|
4343
4343
|
cropName: string;
|
|
4344
4344
|
estimatedTotalCost: number | null;
|
|
@@ -7023,8 +7023,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7023
7023
|
name: string;
|
|
7024
7024
|
description: string | null;
|
|
7025
7025
|
plantingDate: string;
|
|
7026
|
-
expectedHarvestDate: string | null;
|
|
7027
7026
|
notes: string | null;
|
|
7027
|
+
expectedHarvestDate: string | null;
|
|
7028
7028
|
fieldId: string;
|
|
7029
7029
|
cropName: string;
|
|
7030
7030
|
estimatedTotalCost: number | null;
|
|
@@ -7056,8 +7056,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7056
7056
|
name: string;
|
|
7057
7057
|
description: string | null;
|
|
7058
7058
|
plantingDate: string;
|
|
7059
|
-
expectedHarvestDate: string | null;
|
|
7060
7059
|
notes: string | null;
|
|
7060
|
+
expectedHarvestDate: string | null;
|
|
7061
7061
|
fieldId: string;
|
|
7062
7062
|
cropName: string;
|
|
7063
7063
|
estimatedTotalCost: number | null;
|
|
@@ -7096,8 +7096,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7096
7096
|
name: string;
|
|
7097
7097
|
description: string | null;
|
|
7098
7098
|
plantingDate: string;
|
|
7099
|
-
expectedHarvestDate: string | null;
|
|
7100
7099
|
notes: string | null;
|
|
7100
|
+
expectedHarvestDate: string | null;
|
|
7101
7101
|
fieldId: string;
|
|
7102
7102
|
cropName: string;
|
|
7103
7103
|
estimatedTotalCost: number | null;
|
|
@@ -7136,8 +7136,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7136
7136
|
name: string;
|
|
7137
7137
|
description: string | null;
|
|
7138
7138
|
plantingDate: string;
|
|
7139
|
-
expectedHarvestDate: string | null;
|
|
7140
7139
|
notes: string | null;
|
|
7140
|
+
expectedHarvestDate: string | null;
|
|
7141
7141
|
fieldId: string;
|
|
7142
7142
|
cropName: string;
|
|
7143
7143
|
estimatedTotalCost: number | null;
|
|
@@ -7217,8 +7217,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7217
7217
|
name: string;
|
|
7218
7218
|
description: string | null;
|
|
7219
7219
|
plantingDate: string;
|
|
7220
|
-
expectedHarvestDate: string | null;
|
|
7221
7220
|
notes: string | null;
|
|
7221
|
+
expectedHarvestDate: string | null;
|
|
7222
7222
|
fieldId: string;
|
|
7223
7223
|
cropName: string;
|
|
7224
7224
|
estimatedTotalCost: number | null;
|
|
@@ -7298,8 +7298,8 @@ export declare const acceptRecommendationResponseSchema: z.ZodObject<{
|
|
|
7298
7298
|
name: string;
|
|
7299
7299
|
description: string | null;
|
|
7300
7300
|
plantingDate: string;
|
|
7301
|
-
expectedHarvestDate: string | null;
|
|
7302
7301
|
notes: string | null;
|
|
7302
|
+
expectedHarvestDate: string | null;
|
|
7303
7303
|
fieldId: string;
|
|
7304
7304
|
cropName: string;
|
|
7305
7305
|
estimatedTotalCost: number | null;
|