@deepintel-ltd/farmpro-contracts 1.19.1 → 1.20.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.
@@ -103,6 +103,9 @@ export declare const fieldAlertSchema: z.ZodObject<{
103
103
  costPerUnit: z.ZodOptional<z.ZodNumber>;
104
104
  totalCost: z.ZodOptional<z.ZodNumber>;
105
105
  availability: z.ZodOptional<z.ZodString>;
106
+ inStock: z.ZodOptional<z.ZodBoolean>;
107
+ stockQuantity: z.ZodOptional<z.ZodNumber>;
108
+ applicationMethod: z.ZodOptional<z.ZodString>;
106
109
  }, "strip", z.ZodTypeAny, {
107
110
  name: string;
108
111
  quantity: number;
@@ -111,6 +114,9 @@ export declare const fieldAlertSchema: z.ZodObject<{
111
114
  totalCost?: number | undefined;
112
115
  costPerUnit?: number | undefined;
113
116
  availability?: string | undefined;
117
+ inStock?: boolean | undefined;
118
+ stockQuantity?: number | undefined;
119
+ applicationMethod?: string | undefined;
114
120
  }, {
115
121
  name: string;
116
122
  quantity: number;
@@ -119,6 +125,9 @@ export declare const fieldAlertSchema: z.ZodObject<{
119
125
  totalCost?: number | undefined;
120
126
  costPerUnit?: number | undefined;
121
127
  availability?: string | undefined;
128
+ inStock?: boolean | undefined;
129
+ stockQuantity?: number | undefined;
130
+ applicationMethod?: string | undefined;
122
131
  }>, "many">>;
123
132
  applicationMethod: z.ZodOptional<z.ZodString>;
124
133
  expectedOutcome: z.ZodOptional<z.ZodString>;
@@ -131,6 +140,7 @@ export declare const fieldAlertSchema: z.ZodObject<{
131
140
  details: string;
132
141
  timing: string;
133
142
  confidence?: number | undefined;
143
+ applicationMethod?: string | undefined;
134
144
  severity?: "critical" | "low" | "medium" | "high" | undefined;
135
145
  materials?: {
136
146
  name: string;
@@ -140,8 +150,10 @@ export declare const fieldAlertSchema: z.ZodObject<{
140
150
  totalCost?: number | undefined;
141
151
  costPerUnit?: number | undefined;
142
152
  availability?: string | undefined;
153
+ inStock?: boolean | undefined;
154
+ stockQuantity?: number | undefined;
155
+ applicationMethod?: string | undefined;
143
156
  }[] | undefined;
144
- applicationMethod?: string | undefined;
145
157
  expectedOutcome?: string | undefined;
146
158
  preventiveMeasures?: string[] | undefined;
147
159
  estimatedTime?: string | undefined;
@@ -152,6 +164,7 @@ export declare const fieldAlertSchema: z.ZodObject<{
152
164
  details: string;
153
165
  timing: string;
154
166
  confidence?: number | undefined;
167
+ applicationMethod?: string | undefined;
155
168
  severity?: "critical" | "low" | "medium" | "high" | undefined;
156
169
  materials?: {
157
170
  name: string;
@@ -161,8 +174,10 @@ export declare const fieldAlertSchema: z.ZodObject<{
161
174
  totalCost?: number | undefined;
162
175
  costPerUnit?: number | undefined;
163
176
  availability?: string | undefined;
177
+ inStock?: boolean | undefined;
178
+ stockQuantity?: number | undefined;
179
+ applicationMethod?: string | undefined;
164
180
  }[] | undefined;
165
- applicationMethod?: string | undefined;
166
181
  expectedOutcome?: string | undefined;
167
182
  preventiveMeasures?: string[] | undefined;
168
183
  estimatedTime?: string | undefined;
@@ -194,6 +209,7 @@ export declare const fieldAlertSchema: z.ZodObject<{
194
209
  details: string;
195
210
  timing: string;
196
211
  confidence?: number | undefined;
212
+ applicationMethod?: string | undefined;
197
213
  severity?: "critical" | "low" | "medium" | "high" | undefined;
198
214
  materials?: {
199
215
  name: string;
@@ -203,8 +219,10 @@ export declare const fieldAlertSchema: z.ZodObject<{
203
219
  totalCost?: number | undefined;
204
220
  costPerUnit?: number | undefined;
205
221
  availability?: string | undefined;
222
+ inStock?: boolean | undefined;
223
+ stockQuantity?: number | undefined;
224
+ applicationMethod?: string | undefined;
206
225
  }[] | undefined;
207
- applicationMethod?: string | undefined;
208
226
  expectedOutcome?: string | undefined;
209
227
  preventiveMeasures?: string[] | undefined;
210
228
  estimatedTime?: string | undefined;
@@ -235,6 +253,7 @@ export declare const fieldAlertSchema: z.ZodObject<{
235
253
  details: string;
236
254
  timing: string;
237
255
  confidence?: number | undefined;
256
+ applicationMethod?: string | undefined;
238
257
  severity?: "critical" | "low" | "medium" | "high" | undefined;
239
258
  materials?: {
240
259
  name: string;
@@ -244,8 +263,10 @@ export declare const fieldAlertSchema: z.ZodObject<{
244
263
  totalCost?: number | undefined;
245
264
  costPerUnit?: number | undefined;
246
265
  availability?: string | undefined;
266
+ inStock?: boolean | undefined;
267
+ stockQuantity?: number | undefined;
268
+ applicationMethod?: string | undefined;
247
269
  }[] | undefined;
248
- applicationMethod?: string | undefined;
249
270
  expectedOutcome?: string | undefined;
250
271
  preventiveMeasures?: string[] | undefined;
251
272
  estimatedTime?: string | undefined;
@@ -359,6 +380,9 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
359
380
  costPerUnit: z.ZodOptional<z.ZodNumber>;
360
381
  totalCost: z.ZodOptional<z.ZodNumber>;
361
382
  availability: z.ZodOptional<z.ZodString>;
383
+ inStock: z.ZodOptional<z.ZodBoolean>;
384
+ stockQuantity: z.ZodOptional<z.ZodNumber>;
385
+ applicationMethod: z.ZodOptional<z.ZodString>;
362
386
  }, "strip", z.ZodTypeAny, {
363
387
  name: string;
364
388
  quantity: number;
@@ -367,6 +391,9 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
367
391
  totalCost?: number | undefined;
368
392
  costPerUnit?: number | undefined;
369
393
  availability?: string | undefined;
394
+ inStock?: boolean | undefined;
395
+ stockQuantity?: number | undefined;
396
+ applicationMethod?: string | undefined;
370
397
  }, {
371
398
  name: string;
372
399
  quantity: number;
@@ -375,6 +402,9 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
375
402
  totalCost?: number | undefined;
376
403
  costPerUnit?: number | undefined;
377
404
  availability?: string | undefined;
405
+ inStock?: boolean | undefined;
406
+ stockQuantity?: number | undefined;
407
+ applicationMethod?: string | undefined;
378
408
  }>, "many">>;
379
409
  applicationMethod: z.ZodOptional<z.ZodString>;
380
410
  expectedOutcome: z.ZodOptional<z.ZodString>;
@@ -387,6 +417,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
387
417
  details: string;
388
418
  timing: string;
389
419
  confidence?: number | undefined;
420
+ applicationMethod?: string | undefined;
390
421
  severity?: "critical" | "low" | "medium" | "high" | undefined;
391
422
  materials?: {
392
423
  name: string;
@@ -396,8 +427,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
396
427
  totalCost?: number | undefined;
397
428
  costPerUnit?: number | undefined;
398
429
  availability?: string | undefined;
430
+ inStock?: boolean | undefined;
431
+ stockQuantity?: number | undefined;
432
+ applicationMethod?: string | undefined;
399
433
  }[] | undefined;
400
- applicationMethod?: string | undefined;
401
434
  expectedOutcome?: string | undefined;
402
435
  preventiveMeasures?: string[] | undefined;
403
436
  estimatedTime?: string | undefined;
@@ -408,6 +441,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
408
441
  details: string;
409
442
  timing: string;
410
443
  confidence?: number | undefined;
444
+ applicationMethod?: string | undefined;
411
445
  severity?: "critical" | "low" | "medium" | "high" | undefined;
412
446
  materials?: {
413
447
  name: string;
@@ -417,8 +451,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
417
451
  totalCost?: number | undefined;
418
452
  costPerUnit?: number | undefined;
419
453
  availability?: string | undefined;
454
+ inStock?: boolean | undefined;
455
+ stockQuantity?: number | undefined;
456
+ applicationMethod?: string | undefined;
420
457
  }[] | undefined;
421
- applicationMethod?: string | undefined;
422
458
  expectedOutcome?: string | undefined;
423
459
  preventiveMeasures?: string[] | undefined;
424
460
  estimatedTime?: string | undefined;
@@ -450,6 +486,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
450
486
  details: string;
451
487
  timing: string;
452
488
  confidence?: number | undefined;
489
+ applicationMethod?: string | undefined;
453
490
  severity?: "critical" | "low" | "medium" | "high" | undefined;
454
491
  materials?: {
455
492
  name: string;
@@ -459,8 +496,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
459
496
  totalCost?: number | undefined;
460
497
  costPerUnit?: number | undefined;
461
498
  availability?: string | undefined;
499
+ inStock?: boolean | undefined;
500
+ stockQuantity?: number | undefined;
501
+ applicationMethod?: string | undefined;
462
502
  }[] | undefined;
463
- applicationMethod?: string | undefined;
464
503
  expectedOutcome?: string | undefined;
465
504
  preventiveMeasures?: string[] | undefined;
466
505
  estimatedTime?: string | undefined;
@@ -491,6 +530,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
491
530
  details: string;
492
531
  timing: string;
493
532
  confidence?: number | undefined;
533
+ applicationMethod?: string | undefined;
494
534
  severity?: "critical" | "low" | "medium" | "high" | undefined;
495
535
  materials?: {
496
536
  name: string;
@@ -500,8 +540,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
500
540
  totalCost?: number | undefined;
501
541
  costPerUnit?: number | undefined;
502
542
  availability?: string | undefined;
543
+ inStock?: boolean | undefined;
544
+ stockQuantity?: number | undefined;
545
+ applicationMethod?: string | undefined;
503
546
  }[] | undefined;
504
- applicationMethod?: string | undefined;
505
547
  expectedOutcome?: string | undefined;
506
548
  preventiveMeasures?: string[] | undefined;
507
549
  estimatedTime?: string | undefined;
@@ -556,6 +598,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
556
598
  details: string;
557
599
  timing: string;
558
600
  confidence?: number | undefined;
601
+ applicationMethod?: string | undefined;
559
602
  severity?: "critical" | "low" | "medium" | "high" | undefined;
560
603
  materials?: {
561
604
  name: string;
@@ -565,8 +608,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
565
608
  totalCost?: number | undefined;
566
609
  costPerUnit?: number | undefined;
567
610
  availability?: string | undefined;
611
+ inStock?: boolean | undefined;
612
+ stockQuantity?: number | undefined;
613
+ applicationMethod?: string | undefined;
568
614
  }[] | undefined;
569
- applicationMethod?: string | undefined;
570
615
  expectedOutcome?: string | undefined;
571
616
  preventiveMeasures?: string[] | undefined;
572
617
  estimatedTime?: string | undefined;
@@ -605,6 +650,7 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
605
650
  details: string;
606
651
  timing: string;
607
652
  confidence?: number | undefined;
653
+ applicationMethod?: string | undefined;
608
654
  severity?: "critical" | "low" | "medium" | "high" | undefined;
609
655
  materials?: {
610
656
  name: string;
@@ -614,8 +660,10 @@ export declare const fieldAlertListResponseSchema: z.ZodObject<{
614
660
  totalCost?: number | undefined;
615
661
  costPerUnit?: number | undefined;
616
662
  availability?: string | undefined;
663
+ inStock?: boolean | undefined;
664
+ stockQuantity?: number | undefined;
665
+ applicationMethod?: string | undefined;
617
666
  }[] | undefined;
618
- applicationMethod?: string | undefined;
619
667
  expectedOutcome?: string | undefined;
620
668
  preventiveMeasures?: string[] | undefined;
621
669
  estimatedTime?: string | undefined;
@@ -668,6 +716,9 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
668
716
  costPerUnit: z.ZodOptional<z.ZodNumber>;
669
717
  totalCost: z.ZodOptional<z.ZodNumber>;
670
718
  availability: z.ZodOptional<z.ZodString>;
719
+ inStock: z.ZodOptional<z.ZodBoolean>;
720
+ stockQuantity: z.ZodOptional<z.ZodNumber>;
721
+ applicationMethod: z.ZodOptional<z.ZodString>;
671
722
  }, "strip", z.ZodTypeAny, {
672
723
  name: string;
673
724
  quantity: number;
@@ -676,6 +727,9 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
676
727
  totalCost?: number | undefined;
677
728
  costPerUnit?: number | undefined;
678
729
  availability?: string | undefined;
730
+ inStock?: boolean | undefined;
731
+ stockQuantity?: number | undefined;
732
+ applicationMethod?: string | undefined;
679
733
  }, {
680
734
  name: string;
681
735
  quantity: number;
@@ -684,6 +738,9 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
684
738
  totalCost?: number | undefined;
685
739
  costPerUnit?: number | undefined;
686
740
  availability?: string | undefined;
741
+ inStock?: boolean | undefined;
742
+ stockQuantity?: number | undefined;
743
+ applicationMethod?: string | undefined;
687
744
  }>, "many">>;
688
745
  applicationMethod: z.ZodOptional<z.ZodString>;
689
746
  expectedOutcome: z.ZodOptional<z.ZodString>;
@@ -696,6 +753,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
696
753
  details: string;
697
754
  timing: string;
698
755
  confidence?: number | undefined;
756
+ applicationMethod?: string | undefined;
699
757
  severity?: "critical" | "low" | "medium" | "high" | undefined;
700
758
  materials?: {
701
759
  name: string;
@@ -705,8 +763,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
705
763
  totalCost?: number | undefined;
706
764
  costPerUnit?: number | undefined;
707
765
  availability?: string | undefined;
766
+ inStock?: boolean | undefined;
767
+ stockQuantity?: number | undefined;
768
+ applicationMethod?: string | undefined;
708
769
  }[] | undefined;
709
- applicationMethod?: string | undefined;
710
770
  expectedOutcome?: string | undefined;
711
771
  preventiveMeasures?: string[] | undefined;
712
772
  estimatedTime?: string | undefined;
@@ -717,6 +777,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
717
777
  details: string;
718
778
  timing: string;
719
779
  confidence?: number | undefined;
780
+ applicationMethod?: string | undefined;
720
781
  severity?: "critical" | "low" | "medium" | "high" | undefined;
721
782
  materials?: {
722
783
  name: string;
@@ -726,8 +787,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
726
787
  totalCost?: number | undefined;
727
788
  costPerUnit?: number | undefined;
728
789
  availability?: string | undefined;
790
+ inStock?: boolean | undefined;
791
+ stockQuantity?: number | undefined;
792
+ applicationMethod?: string | undefined;
729
793
  }[] | undefined;
730
- applicationMethod?: string | undefined;
731
794
  expectedOutcome?: string | undefined;
732
795
  preventiveMeasures?: string[] | undefined;
733
796
  estimatedTime?: string | undefined;
@@ -759,6 +822,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
759
822
  details: string;
760
823
  timing: string;
761
824
  confidence?: number | undefined;
825
+ applicationMethod?: string | undefined;
762
826
  severity?: "critical" | "low" | "medium" | "high" | undefined;
763
827
  materials?: {
764
828
  name: string;
@@ -768,8 +832,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
768
832
  totalCost?: number | undefined;
769
833
  costPerUnit?: number | undefined;
770
834
  availability?: string | undefined;
835
+ inStock?: boolean | undefined;
836
+ stockQuantity?: number | undefined;
837
+ applicationMethod?: string | undefined;
771
838
  }[] | undefined;
772
- applicationMethod?: string | undefined;
773
839
  expectedOutcome?: string | undefined;
774
840
  preventiveMeasures?: string[] | undefined;
775
841
  estimatedTime?: string | undefined;
@@ -800,6 +866,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
800
866
  details: string;
801
867
  timing: string;
802
868
  confidence?: number | undefined;
869
+ applicationMethod?: string | undefined;
803
870
  severity?: "critical" | "low" | "medium" | "high" | undefined;
804
871
  materials?: {
805
872
  name: string;
@@ -809,8 +876,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
809
876
  totalCost?: number | undefined;
810
877
  costPerUnit?: number | undefined;
811
878
  availability?: string | undefined;
879
+ inStock?: boolean | undefined;
880
+ stockQuantity?: number | undefined;
881
+ applicationMethod?: string | undefined;
812
882
  }[] | undefined;
813
- applicationMethod?: string | undefined;
814
883
  expectedOutcome?: string | undefined;
815
884
  preventiveMeasures?: string[] | undefined;
816
885
  estimatedTime?: string | undefined;
@@ -843,6 +912,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
843
912
  details: string;
844
913
  timing: string;
845
914
  confidence?: number | undefined;
915
+ applicationMethod?: string | undefined;
846
916
  severity?: "critical" | "low" | "medium" | "high" | undefined;
847
917
  materials?: {
848
918
  name: string;
@@ -852,8 +922,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
852
922
  totalCost?: number | undefined;
853
923
  costPerUnit?: number | undefined;
854
924
  availability?: string | undefined;
925
+ inStock?: boolean | undefined;
926
+ stockQuantity?: number | undefined;
927
+ applicationMethod?: string | undefined;
855
928
  }[] | undefined;
856
- applicationMethod?: string | undefined;
857
929
  expectedOutcome?: string | undefined;
858
930
  preventiveMeasures?: string[] | undefined;
859
931
  estimatedTime?: string | undefined;
@@ -887,6 +959,7 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
887
959
  details: string;
888
960
  timing: string;
889
961
  confidence?: number | undefined;
962
+ applicationMethod?: string | undefined;
890
963
  severity?: "critical" | "low" | "medium" | "high" | undefined;
891
964
  materials?: {
892
965
  name: string;
@@ -896,8 +969,10 @@ export declare const bulkReadAlertsResponseSchema: z.ZodObject<{
896
969
  totalCost?: number | undefined;
897
970
  costPerUnit?: number | undefined;
898
971
  availability?: string | undefined;
972
+ inStock?: boolean | undefined;
973
+ stockQuantity?: number | undefined;
974
+ applicationMethod?: string | undefined;
899
975
  }[] | undefined;
900
- applicationMethod?: string | undefined;
901
976
  expectedOutcome?: string | undefined;
902
977
  preventiveMeasures?: string[] | undefined;
903
978
  estimatedTime?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"field-monitoring.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/field-monitoring.schemas.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+FvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"}
1
+ {"version":3,"file":"field-monitoring.schemas.d.ts","sourceRoot":"","sources":["../../src/schemas/field-monitoring.schemas.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+FvC,CAAC;AAEH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC"}