@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
|
@@ -142,8 +142,8 @@ export declare const irrigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
142
142
|
updatedAt: string;
|
|
143
143
|
name: string;
|
|
144
144
|
plantingDate: string;
|
|
145
|
-
soilType: string | null;
|
|
146
145
|
notes: string | null;
|
|
146
|
+
soilType: string | null;
|
|
147
147
|
fieldId: string;
|
|
148
148
|
cropType: string;
|
|
149
149
|
fieldCapacity: number;
|
|
@@ -165,8 +165,8 @@ export declare const irrigationScheduleAttributesSchema: z.ZodObject<{
|
|
|
165
165
|
updatedAt: string;
|
|
166
166
|
name: string;
|
|
167
167
|
plantingDate: string;
|
|
168
|
-
soilType: string | null;
|
|
169
168
|
notes: string | null;
|
|
169
|
+
soilType: string | null;
|
|
170
170
|
fieldId: string;
|
|
171
171
|
cropType: string;
|
|
172
172
|
fieldCapacity: number;
|
|
@@ -214,8 +214,8 @@ export declare const createIrrigationScheduleSchema: z.ZodObject<{
|
|
|
214
214
|
adjustForWeather: boolean;
|
|
215
215
|
adjustForGrowthStage: boolean;
|
|
216
216
|
systemEfficiency: number;
|
|
217
|
-
soilType?: string | undefined;
|
|
218
217
|
notes?: string | undefined;
|
|
218
|
+
soilType?: string | undefined;
|
|
219
219
|
flowRateLPH?: number | undefined;
|
|
220
220
|
}, {
|
|
221
221
|
name: string;
|
|
@@ -223,8 +223,8 @@ export declare const createIrrigationScheduleSchema: z.ZodObject<{
|
|
|
223
223
|
fieldId: string;
|
|
224
224
|
cropType: string;
|
|
225
225
|
irrigationMethod: "manual" | "drip" | "sprinkler" | "surface" | "pivot";
|
|
226
|
-
soilType?: string | undefined;
|
|
227
226
|
notes?: string | undefined;
|
|
227
|
+
soilType?: string | undefined;
|
|
228
228
|
autoGenerateEvents?: boolean | undefined;
|
|
229
229
|
fieldCapacity?: number | undefined;
|
|
230
230
|
wiltingPoint?: number | undefined;
|
|
@@ -255,8 +255,8 @@ export declare const updateIrrigationScheduleSchema: z.ZodObject<{
|
|
|
255
255
|
}, "strip", z.ZodTypeAny, {
|
|
256
256
|
name?: string | undefined;
|
|
257
257
|
plantingDate?: string | undefined;
|
|
258
|
-
soilType?: string | undefined;
|
|
259
258
|
notes?: string | undefined;
|
|
259
|
+
soilType?: string | undefined;
|
|
260
260
|
fieldId?: string | undefined;
|
|
261
261
|
autoGenerateEvents?: boolean | undefined;
|
|
262
262
|
cropType?: string | undefined;
|
|
@@ -272,8 +272,8 @@ export declare const updateIrrigationScheduleSchema: z.ZodObject<{
|
|
|
272
272
|
}, {
|
|
273
273
|
name?: string | undefined;
|
|
274
274
|
plantingDate?: string | undefined;
|
|
275
|
-
soilType?: string | undefined;
|
|
276
275
|
notes?: string | undefined;
|
|
276
|
+
soilType?: string | undefined;
|
|
277
277
|
fieldId?: string | undefined;
|
|
278
278
|
autoGenerateEvents?: boolean | undefined;
|
|
279
279
|
cropType?: string | undefined;
|
|
@@ -427,8 +427,8 @@ export declare const irrigationScheduleResponseSchema: z.ZodObject<{
|
|
|
427
427
|
updatedAt: string;
|
|
428
428
|
name: string;
|
|
429
429
|
plantingDate: string;
|
|
430
|
-
soilType: string | null;
|
|
431
430
|
notes: string | null;
|
|
431
|
+
soilType: string | null;
|
|
432
432
|
fieldId: string;
|
|
433
433
|
cropType: string;
|
|
434
434
|
fieldCapacity: number;
|
|
@@ -450,8 +450,8 @@ export declare const irrigationScheduleResponseSchema: z.ZodObject<{
|
|
|
450
450
|
updatedAt: string;
|
|
451
451
|
name: string;
|
|
452
452
|
plantingDate: string;
|
|
453
|
-
soilType: string | null;
|
|
454
453
|
notes: string | null;
|
|
454
|
+
soilType: string | null;
|
|
455
455
|
fieldId: string;
|
|
456
456
|
cropType: string;
|
|
457
457
|
fieldCapacity: number;
|
|
@@ -477,8 +477,8 @@ export declare const irrigationScheduleResponseSchema: z.ZodObject<{
|
|
|
477
477
|
updatedAt: string;
|
|
478
478
|
name: string;
|
|
479
479
|
plantingDate: string;
|
|
480
|
-
soilType: string | null;
|
|
481
480
|
notes: string | null;
|
|
481
|
+
soilType: string | null;
|
|
482
482
|
fieldId: string;
|
|
483
483
|
cropType: string;
|
|
484
484
|
fieldCapacity: number;
|
|
@@ -504,8 +504,8 @@ export declare const irrigationScheduleResponseSchema: z.ZodObject<{
|
|
|
504
504
|
updatedAt: string;
|
|
505
505
|
name: string;
|
|
506
506
|
plantingDate: string;
|
|
507
|
-
soilType: string | null;
|
|
508
507
|
notes: string | null;
|
|
508
|
+
soilType: string | null;
|
|
509
509
|
fieldId: string;
|
|
510
510
|
cropType: string;
|
|
511
511
|
fieldCapacity: number;
|
|
@@ -556,8 +556,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
556
556
|
updatedAt: string;
|
|
557
557
|
name: string;
|
|
558
558
|
plantingDate: string;
|
|
559
|
-
soilType: string | null;
|
|
560
559
|
notes: string | null;
|
|
560
|
+
soilType: string | null;
|
|
561
561
|
fieldId: string;
|
|
562
562
|
cropType: string;
|
|
563
563
|
fieldCapacity: number;
|
|
@@ -579,8 +579,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
579
579
|
updatedAt: string;
|
|
580
580
|
name: string;
|
|
581
581
|
plantingDate: string;
|
|
582
|
-
soilType: string | null;
|
|
583
582
|
notes: string | null;
|
|
583
|
+
soilType: string | null;
|
|
584
584
|
fieldId: string;
|
|
585
585
|
cropType: string;
|
|
586
586
|
fieldCapacity: number;
|
|
@@ -606,8 +606,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
606
606
|
updatedAt: string;
|
|
607
607
|
name: string;
|
|
608
608
|
plantingDate: string;
|
|
609
|
-
soilType: string | null;
|
|
610
609
|
notes: string | null;
|
|
610
|
+
soilType: string | null;
|
|
611
611
|
fieldId: string;
|
|
612
612
|
cropType: string;
|
|
613
613
|
fieldCapacity: number;
|
|
@@ -633,8 +633,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
633
633
|
updatedAt: string;
|
|
634
634
|
name: string;
|
|
635
635
|
plantingDate: string;
|
|
636
|
-
soilType: string | null;
|
|
637
636
|
notes: string | null;
|
|
637
|
+
soilType: string | null;
|
|
638
638
|
fieldId: string;
|
|
639
639
|
cropType: string;
|
|
640
640
|
fieldCapacity: number;
|
|
@@ -669,8 +669,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
669
669
|
updatedAt: string;
|
|
670
670
|
name: string;
|
|
671
671
|
plantingDate: string;
|
|
672
|
-
soilType: string | null;
|
|
673
672
|
notes: string | null;
|
|
673
|
+
soilType: string | null;
|
|
674
674
|
fieldId: string;
|
|
675
675
|
cropType: string;
|
|
676
676
|
fieldCapacity: number;
|
|
@@ -701,8 +701,8 @@ export declare const irrigationScheduleListResponseSchema: z.ZodObject<{
|
|
|
701
701
|
updatedAt: string;
|
|
702
702
|
name: string;
|
|
703
703
|
plantingDate: string;
|
|
704
|
-
soilType: string | null;
|
|
705
704
|
notes: string | null;
|
|
705
|
+
soilType: string | null;
|
|
706
706
|
fieldId: string;
|
|
707
707
|
cropType: string;
|
|
708
708
|
fieldCapacity: number;
|