@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.
- package/dist/routes/agent-workflows.routes.d.ts +228 -48
- package/dist/routes/agent-workflows.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +80 -80
- package/dist/routes/field-monitoring.routes.d.ts +174 -30
- package/dist/routes/field-monitoring.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.d.ts +1690 -156
- package/dist/routes/field-observations.routes.d.ts.map +1 -1
- package/dist/routes/field-observations.routes.js +13 -1
- package/dist/routes/weather.routes.d.ts +49 -10
- package/dist/routes/weather.routes.d.ts.map +1 -1
- package/dist/schemas/agent-workflows.schemas.d.ts +262 -52
- package/dist/schemas/agent-workflows.schemas.d.ts.map +1 -1
- package/dist/schemas/fertigation.schemas.d.ts +36 -36
- package/dist/schemas/field-monitoring.schemas.d.ts +91 -16
- package/dist/schemas/field-monitoring.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.d.ts +623 -132
- package/dist/schemas/field-observations.schemas.d.ts.map +1 -1
- package/dist/schemas/field-observations.schemas.js +32 -4
- package/dist/schemas/recommendations.schemas.d.ts +26 -2
- package/dist/schemas/recommendations.schemas.d.ts.map +1 -1
- package/dist/schemas/recommendations.schemas.js +3 -0
- package/dist/schemas/weather.schemas.d.ts +148 -28
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -167,6 +167,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
167
167
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
168
168
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
169
169
|
availability: z.ZodOptional<z.ZodString>;
|
|
170
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
171
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
172
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
170
173
|
}, "strip", z.ZodTypeAny, {
|
|
171
174
|
name: string;
|
|
172
175
|
quantity: number;
|
|
@@ -175,6 +178,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
175
178
|
totalCost?: number | undefined;
|
|
176
179
|
costPerUnit?: number | undefined;
|
|
177
180
|
availability?: string | undefined;
|
|
181
|
+
inStock?: boolean | undefined;
|
|
182
|
+
stockQuantity?: number | undefined;
|
|
183
|
+
applicationMethod?: string | undefined;
|
|
178
184
|
}, {
|
|
179
185
|
name: string;
|
|
180
186
|
quantity: number;
|
|
@@ -183,6 +189,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
183
189
|
totalCost?: number | undefined;
|
|
184
190
|
costPerUnit?: number | undefined;
|
|
185
191
|
availability?: string | undefined;
|
|
192
|
+
inStock?: boolean | undefined;
|
|
193
|
+
stockQuantity?: number | undefined;
|
|
194
|
+
applicationMethod?: string | undefined;
|
|
186
195
|
}>, "many">>;
|
|
187
196
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
188
197
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -195,6 +204,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
195
204
|
details: string;
|
|
196
205
|
timing: string;
|
|
197
206
|
confidence?: number | undefined;
|
|
207
|
+
applicationMethod?: string | undefined;
|
|
198
208
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
199
209
|
materials?: {
|
|
200
210
|
name: string;
|
|
@@ -204,8 +214,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
204
214
|
totalCost?: number | undefined;
|
|
205
215
|
costPerUnit?: number | undefined;
|
|
206
216
|
availability?: string | undefined;
|
|
217
|
+
inStock?: boolean | undefined;
|
|
218
|
+
stockQuantity?: number | undefined;
|
|
219
|
+
applicationMethod?: string | undefined;
|
|
207
220
|
}[] | undefined;
|
|
208
|
-
applicationMethod?: string | undefined;
|
|
209
221
|
expectedOutcome?: string | undefined;
|
|
210
222
|
preventiveMeasures?: string[] | undefined;
|
|
211
223
|
estimatedTime?: string | undefined;
|
|
@@ -216,6 +228,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
216
228
|
details: string;
|
|
217
229
|
timing: string;
|
|
218
230
|
confidence?: number | undefined;
|
|
231
|
+
applicationMethod?: string | undefined;
|
|
219
232
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
220
233
|
materials?: {
|
|
221
234
|
name: string;
|
|
@@ -225,8 +238,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
225
238
|
totalCost?: number | undefined;
|
|
226
239
|
costPerUnit?: number | undefined;
|
|
227
240
|
availability?: string | undefined;
|
|
241
|
+
inStock?: boolean | undefined;
|
|
242
|
+
stockQuantity?: number | undefined;
|
|
243
|
+
applicationMethod?: string | undefined;
|
|
228
244
|
}[] | undefined;
|
|
229
|
-
applicationMethod?: string | undefined;
|
|
230
245
|
expectedOutcome?: string | undefined;
|
|
231
246
|
preventiveMeasures?: string[] | undefined;
|
|
232
247
|
estimatedTime?: string | undefined;
|
|
@@ -256,6 +271,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
256
271
|
details: string;
|
|
257
272
|
timing: string;
|
|
258
273
|
confidence?: number | undefined;
|
|
274
|
+
applicationMethod?: string | undefined;
|
|
259
275
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
260
276
|
materials?: {
|
|
261
277
|
name: string;
|
|
@@ -265,8 +281,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
265
281
|
totalCost?: number | undefined;
|
|
266
282
|
costPerUnit?: number | undefined;
|
|
267
283
|
availability?: string | undefined;
|
|
284
|
+
inStock?: boolean | undefined;
|
|
285
|
+
stockQuantity?: number | undefined;
|
|
286
|
+
applicationMethod?: string | undefined;
|
|
268
287
|
}[] | undefined;
|
|
269
|
-
applicationMethod?: string | undefined;
|
|
270
288
|
expectedOutcome?: string | undefined;
|
|
271
289
|
preventiveMeasures?: string[] | undefined;
|
|
272
290
|
estimatedTime?: string | undefined;
|
|
@@ -297,6 +315,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
297
315
|
details: string;
|
|
298
316
|
timing: string;
|
|
299
317
|
confidence?: number | undefined;
|
|
318
|
+
applicationMethod?: string | undefined;
|
|
300
319
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
301
320
|
materials?: {
|
|
302
321
|
name: string;
|
|
@@ -306,8 +325,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
306
325
|
totalCost?: number | undefined;
|
|
307
326
|
costPerUnit?: number | undefined;
|
|
308
327
|
availability?: string | undefined;
|
|
328
|
+
inStock?: boolean | undefined;
|
|
329
|
+
stockQuantity?: number | undefined;
|
|
330
|
+
applicationMethod?: string | undefined;
|
|
309
331
|
}[] | undefined;
|
|
310
|
-
applicationMethod?: string | undefined;
|
|
311
332
|
expectedOutcome?: string | undefined;
|
|
312
333
|
preventiveMeasures?: string[] | undefined;
|
|
313
334
|
estimatedTime?: string | undefined;
|
|
@@ -362,6 +383,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
362
383
|
details: string;
|
|
363
384
|
timing: string;
|
|
364
385
|
confidence?: number | undefined;
|
|
386
|
+
applicationMethod?: string | undefined;
|
|
365
387
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
366
388
|
materials?: {
|
|
367
389
|
name: string;
|
|
@@ -371,8 +393,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
371
393
|
totalCost?: number | undefined;
|
|
372
394
|
costPerUnit?: number | undefined;
|
|
373
395
|
availability?: string | undefined;
|
|
396
|
+
inStock?: boolean | undefined;
|
|
397
|
+
stockQuantity?: number | undefined;
|
|
398
|
+
applicationMethod?: string | undefined;
|
|
374
399
|
}[] | undefined;
|
|
375
|
-
applicationMethod?: string | undefined;
|
|
376
400
|
expectedOutcome?: string | undefined;
|
|
377
401
|
preventiveMeasures?: string[] | undefined;
|
|
378
402
|
estimatedTime?: string | undefined;
|
|
@@ -411,6 +435,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
411
435
|
details: string;
|
|
412
436
|
timing: string;
|
|
413
437
|
confidence?: number | undefined;
|
|
438
|
+
applicationMethod?: string | undefined;
|
|
414
439
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
415
440
|
materials?: {
|
|
416
441
|
name: string;
|
|
@@ -420,8 +445,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
420
445
|
totalCost?: number | undefined;
|
|
421
446
|
costPerUnit?: number | undefined;
|
|
422
447
|
availability?: string | undefined;
|
|
448
|
+
inStock?: boolean | undefined;
|
|
449
|
+
stockQuantity?: number | undefined;
|
|
450
|
+
applicationMethod?: string | undefined;
|
|
423
451
|
}[] | undefined;
|
|
424
|
-
applicationMethod?: string | undefined;
|
|
425
452
|
expectedOutcome?: string | undefined;
|
|
426
453
|
preventiveMeasures?: string[] | undefined;
|
|
427
454
|
estimatedTime?: string | undefined;
|
|
@@ -486,6 +513,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
486
513
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
487
514
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
488
515
|
availability: z.ZodOptional<z.ZodString>;
|
|
516
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
517
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
518
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
489
519
|
}, "strip", z.ZodTypeAny, {
|
|
490
520
|
name: string;
|
|
491
521
|
quantity: number;
|
|
@@ -494,6 +524,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
494
524
|
totalCost?: number | undefined;
|
|
495
525
|
costPerUnit?: number | undefined;
|
|
496
526
|
availability?: string | undefined;
|
|
527
|
+
inStock?: boolean | undefined;
|
|
528
|
+
stockQuantity?: number | undefined;
|
|
529
|
+
applicationMethod?: string | undefined;
|
|
497
530
|
}, {
|
|
498
531
|
name: string;
|
|
499
532
|
quantity: number;
|
|
@@ -502,6 +535,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
502
535
|
totalCost?: number | undefined;
|
|
503
536
|
costPerUnit?: number | undefined;
|
|
504
537
|
availability?: string | undefined;
|
|
538
|
+
inStock?: boolean | undefined;
|
|
539
|
+
stockQuantity?: number | undefined;
|
|
540
|
+
applicationMethod?: string | undefined;
|
|
505
541
|
}>, "many">>;
|
|
506
542
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
507
543
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -514,6 +550,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
514
550
|
details: string;
|
|
515
551
|
timing: string;
|
|
516
552
|
confidence?: number | undefined;
|
|
553
|
+
applicationMethod?: string | undefined;
|
|
517
554
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
518
555
|
materials?: {
|
|
519
556
|
name: string;
|
|
@@ -523,8 +560,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
523
560
|
totalCost?: number | undefined;
|
|
524
561
|
costPerUnit?: number | undefined;
|
|
525
562
|
availability?: string | undefined;
|
|
563
|
+
inStock?: boolean | undefined;
|
|
564
|
+
stockQuantity?: number | undefined;
|
|
565
|
+
applicationMethod?: string | undefined;
|
|
526
566
|
}[] | undefined;
|
|
527
|
-
applicationMethod?: string | undefined;
|
|
528
567
|
expectedOutcome?: string | undefined;
|
|
529
568
|
preventiveMeasures?: string[] | undefined;
|
|
530
569
|
estimatedTime?: string | undefined;
|
|
@@ -535,6 +574,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
535
574
|
details: string;
|
|
536
575
|
timing: string;
|
|
537
576
|
confidence?: number | undefined;
|
|
577
|
+
applicationMethod?: string | undefined;
|
|
538
578
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
539
579
|
materials?: {
|
|
540
580
|
name: string;
|
|
@@ -544,8 +584,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
544
584
|
totalCost?: number | undefined;
|
|
545
585
|
costPerUnit?: number | undefined;
|
|
546
586
|
availability?: string | undefined;
|
|
587
|
+
inStock?: boolean | undefined;
|
|
588
|
+
stockQuantity?: number | undefined;
|
|
589
|
+
applicationMethod?: string | undefined;
|
|
547
590
|
}[] | undefined;
|
|
548
|
-
applicationMethod?: string | undefined;
|
|
549
591
|
expectedOutcome?: string | undefined;
|
|
550
592
|
preventiveMeasures?: string[] | undefined;
|
|
551
593
|
estimatedTime?: string | undefined;
|
|
@@ -575,6 +617,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
575
617
|
details: string;
|
|
576
618
|
timing: string;
|
|
577
619
|
confidence?: number | undefined;
|
|
620
|
+
applicationMethod?: string | undefined;
|
|
578
621
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
579
622
|
materials?: {
|
|
580
623
|
name: string;
|
|
@@ -584,8 +627,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
584
627
|
totalCost?: number | undefined;
|
|
585
628
|
costPerUnit?: number | undefined;
|
|
586
629
|
availability?: string | undefined;
|
|
630
|
+
inStock?: boolean | undefined;
|
|
631
|
+
stockQuantity?: number | undefined;
|
|
632
|
+
applicationMethod?: string | undefined;
|
|
587
633
|
}[] | undefined;
|
|
588
|
-
applicationMethod?: string | undefined;
|
|
589
634
|
expectedOutcome?: string | undefined;
|
|
590
635
|
preventiveMeasures?: string[] | undefined;
|
|
591
636
|
estimatedTime?: string | undefined;
|
|
@@ -616,6 +661,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
616
661
|
details: string;
|
|
617
662
|
timing: string;
|
|
618
663
|
confidence?: number | undefined;
|
|
664
|
+
applicationMethod?: string | undefined;
|
|
619
665
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
620
666
|
materials?: {
|
|
621
667
|
name: string;
|
|
@@ -625,8 +671,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
625
671
|
totalCost?: number | undefined;
|
|
626
672
|
costPerUnit?: number | undefined;
|
|
627
673
|
availability?: string | undefined;
|
|
674
|
+
inStock?: boolean | undefined;
|
|
675
|
+
stockQuantity?: number | undefined;
|
|
676
|
+
applicationMethod?: string | undefined;
|
|
628
677
|
}[] | undefined;
|
|
629
|
-
applicationMethod?: string | undefined;
|
|
630
678
|
expectedOutcome?: string | undefined;
|
|
631
679
|
preventiveMeasures?: string[] | undefined;
|
|
632
680
|
estimatedTime?: string | undefined;
|
|
@@ -681,6 +729,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
681
729
|
details: string;
|
|
682
730
|
timing: string;
|
|
683
731
|
confidence?: number | undefined;
|
|
732
|
+
applicationMethod?: string | undefined;
|
|
684
733
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
685
734
|
materials?: {
|
|
686
735
|
name: string;
|
|
@@ -690,8 +739,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
690
739
|
totalCost?: number | undefined;
|
|
691
740
|
costPerUnit?: number | undefined;
|
|
692
741
|
availability?: string | undefined;
|
|
742
|
+
inStock?: boolean | undefined;
|
|
743
|
+
stockQuantity?: number | undefined;
|
|
744
|
+
applicationMethod?: string | undefined;
|
|
693
745
|
}[] | undefined;
|
|
694
|
-
applicationMethod?: string | undefined;
|
|
695
746
|
expectedOutcome?: string | undefined;
|
|
696
747
|
preventiveMeasures?: string[] | undefined;
|
|
697
748
|
estimatedTime?: string | undefined;
|
|
@@ -730,6 +781,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
730
781
|
details: string;
|
|
731
782
|
timing: string;
|
|
732
783
|
confidence?: number | undefined;
|
|
784
|
+
applicationMethod?: string | undefined;
|
|
733
785
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
734
786
|
materials?: {
|
|
735
787
|
name: string;
|
|
@@ -739,8 +791,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
739
791
|
totalCost?: number | undefined;
|
|
740
792
|
costPerUnit?: number | undefined;
|
|
741
793
|
availability?: string | undefined;
|
|
794
|
+
inStock?: boolean | undefined;
|
|
795
|
+
stockQuantity?: number | undefined;
|
|
796
|
+
applicationMethod?: string | undefined;
|
|
742
797
|
}[] | undefined;
|
|
743
|
-
applicationMethod?: string | undefined;
|
|
744
798
|
expectedOutcome?: string | undefined;
|
|
745
799
|
preventiveMeasures?: string[] | undefined;
|
|
746
800
|
estimatedTime?: string | undefined;
|
|
@@ -846,6 +900,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
846
900
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
847
901
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
848
902
|
availability: z.ZodOptional<z.ZodString>;
|
|
903
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
904
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
905
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
849
906
|
}, "strip", z.ZodTypeAny, {
|
|
850
907
|
name: string;
|
|
851
908
|
quantity: number;
|
|
@@ -854,6 +911,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
854
911
|
totalCost?: number | undefined;
|
|
855
912
|
costPerUnit?: number | undefined;
|
|
856
913
|
availability?: string | undefined;
|
|
914
|
+
inStock?: boolean | undefined;
|
|
915
|
+
stockQuantity?: number | undefined;
|
|
916
|
+
applicationMethod?: string | undefined;
|
|
857
917
|
}, {
|
|
858
918
|
name: string;
|
|
859
919
|
quantity: number;
|
|
@@ -862,6 +922,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
862
922
|
totalCost?: number | undefined;
|
|
863
923
|
costPerUnit?: number | undefined;
|
|
864
924
|
availability?: string | undefined;
|
|
925
|
+
inStock?: boolean | undefined;
|
|
926
|
+
stockQuantity?: number | undefined;
|
|
927
|
+
applicationMethod?: string | undefined;
|
|
865
928
|
}>, "many">>;
|
|
866
929
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
867
930
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -874,6 +937,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
874
937
|
details: string;
|
|
875
938
|
timing: string;
|
|
876
939
|
confidence?: number | undefined;
|
|
940
|
+
applicationMethod?: string | undefined;
|
|
877
941
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
878
942
|
materials?: {
|
|
879
943
|
name: string;
|
|
@@ -883,8 +947,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
883
947
|
totalCost?: number | undefined;
|
|
884
948
|
costPerUnit?: number | undefined;
|
|
885
949
|
availability?: string | undefined;
|
|
950
|
+
inStock?: boolean | undefined;
|
|
951
|
+
stockQuantity?: number | undefined;
|
|
952
|
+
applicationMethod?: string | undefined;
|
|
886
953
|
}[] | undefined;
|
|
887
|
-
applicationMethod?: string | undefined;
|
|
888
954
|
expectedOutcome?: string | undefined;
|
|
889
955
|
preventiveMeasures?: string[] | undefined;
|
|
890
956
|
estimatedTime?: string | undefined;
|
|
@@ -895,6 +961,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
895
961
|
details: string;
|
|
896
962
|
timing: string;
|
|
897
963
|
confidence?: number | undefined;
|
|
964
|
+
applicationMethod?: string | undefined;
|
|
898
965
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
899
966
|
materials?: {
|
|
900
967
|
name: string;
|
|
@@ -904,8 +971,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
904
971
|
totalCost?: number | undefined;
|
|
905
972
|
costPerUnit?: number | undefined;
|
|
906
973
|
availability?: string | undefined;
|
|
974
|
+
inStock?: boolean | undefined;
|
|
975
|
+
stockQuantity?: number | undefined;
|
|
976
|
+
applicationMethod?: string | undefined;
|
|
907
977
|
}[] | undefined;
|
|
908
|
-
applicationMethod?: string | undefined;
|
|
909
978
|
expectedOutcome?: string | undefined;
|
|
910
979
|
preventiveMeasures?: string[] | undefined;
|
|
911
980
|
estimatedTime?: string | undefined;
|
|
@@ -935,6 +1004,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
935
1004
|
details: string;
|
|
936
1005
|
timing: string;
|
|
937
1006
|
confidence?: number | undefined;
|
|
1007
|
+
applicationMethod?: string | undefined;
|
|
938
1008
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
939
1009
|
materials?: {
|
|
940
1010
|
name: string;
|
|
@@ -944,8 +1014,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
944
1014
|
totalCost?: number | undefined;
|
|
945
1015
|
costPerUnit?: number | undefined;
|
|
946
1016
|
availability?: string | undefined;
|
|
1017
|
+
inStock?: boolean | undefined;
|
|
1018
|
+
stockQuantity?: number | undefined;
|
|
1019
|
+
applicationMethod?: string | undefined;
|
|
947
1020
|
}[] | undefined;
|
|
948
|
-
applicationMethod?: string | undefined;
|
|
949
1021
|
expectedOutcome?: string | undefined;
|
|
950
1022
|
preventiveMeasures?: string[] | undefined;
|
|
951
1023
|
estimatedTime?: string | undefined;
|
|
@@ -976,6 +1048,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
976
1048
|
details: string;
|
|
977
1049
|
timing: string;
|
|
978
1050
|
confidence?: number | undefined;
|
|
1051
|
+
applicationMethod?: string | undefined;
|
|
979
1052
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
980
1053
|
materials?: {
|
|
981
1054
|
name: string;
|
|
@@ -985,8 +1058,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
985
1058
|
totalCost?: number | undefined;
|
|
986
1059
|
costPerUnit?: number | undefined;
|
|
987
1060
|
availability?: string | undefined;
|
|
1061
|
+
inStock?: boolean | undefined;
|
|
1062
|
+
stockQuantity?: number | undefined;
|
|
1063
|
+
applicationMethod?: string | undefined;
|
|
988
1064
|
}[] | undefined;
|
|
989
|
-
applicationMethod?: string | undefined;
|
|
990
1065
|
expectedOutcome?: string | undefined;
|
|
991
1066
|
preventiveMeasures?: string[] | undefined;
|
|
992
1067
|
estimatedTime?: string | undefined;
|
|
@@ -1054,6 +1129,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1054
1129
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1055
1130
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1056
1131
|
availability: z.ZodOptional<z.ZodString>;
|
|
1132
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1133
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1134
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1057
1135
|
}, "strip", z.ZodTypeAny, {
|
|
1058
1136
|
name: string;
|
|
1059
1137
|
quantity: number;
|
|
@@ -1062,6 +1140,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1062
1140
|
totalCost?: number | undefined;
|
|
1063
1141
|
costPerUnit?: number | undefined;
|
|
1064
1142
|
availability?: string | undefined;
|
|
1143
|
+
inStock?: boolean | undefined;
|
|
1144
|
+
stockQuantity?: number | undefined;
|
|
1145
|
+
applicationMethod?: string | undefined;
|
|
1065
1146
|
}, {
|
|
1066
1147
|
name: string;
|
|
1067
1148
|
quantity: number;
|
|
@@ -1070,6 +1151,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1070
1151
|
totalCost?: number | undefined;
|
|
1071
1152
|
costPerUnit?: number | undefined;
|
|
1072
1153
|
availability?: string | undefined;
|
|
1154
|
+
inStock?: boolean | undefined;
|
|
1155
|
+
stockQuantity?: number | undefined;
|
|
1156
|
+
applicationMethod?: string | undefined;
|
|
1073
1157
|
}>, "many">>;
|
|
1074
1158
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1075
1159
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1082,6 +1166,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1082
1166
|
details: string;
|
|
1083
1167
|
timing: string;
|
|
1084
1168
|
confidence?: number | undefined;
|
|
1169
|
+
applicationMethod?: string | undefined;
|
|
1085
1170
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1086
1171
|
materials?: {
|
|
1087
1172
|
name: string;
|
|
@@ -1091,8 +1176,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1091
1176
|
totalCost?: number | undefined;
|
|
1092
1177
|
costPerUnit?: number | undefined;
|
|
1093
1178
|
availability?: string | undefined;
|
|
1179
|
+
inStock?: boolean | undefined;
|
|
1180
|
+
stockQuantity?: number | undefined;
|
|
1181
|
+
applicationMethod?: string | undefined;
|
|
1094
1182
|
}[] | undefined;
|
|
1095
|
-
applicationMethod?: string | undefined;
|
|
1096
1183
|
expectedOutcome?: string | undefined;
|
|
1097
1184
|
preventiveMeasures?: string[] | undefined;
|
|
1098
1185
|
estimatedTime?: string | undefined;
|
|
@@ -1103,6 +1190,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1103
1190
|
details: string;
|
|
1104
1191
|
timing: string;
|
|
1105
1192
|
confidence?: number | undefined;
|
|
1193
|
+
applicationMethod?: string | undefined;
|
|
1106
1194
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1107
1195
|
materials?: {
|
|
1108
1196
|
name: string;
|
|
@@ -1112,8 +1200,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1112
1200
|
totalCost?: number | undefined;
|
|
1113
1201
|
costPerUnit?: number | undefined;
|
|
1114
1202
|
availability?: string | undefined;
|
|
1203
|
+
inStock?: boolean | undefined;
|
|
1204
|
+
stockQuantity?: number | undefined;
|
|
1205
|
+
applicationMethod?: string | undefined;
|
|
1115
1206
|
}[] | undefined;
|
|
1116
|
-
applicationMethod?: string | undefined;
|
|
1117
1207
|
expectedOutcome?: string | undefined;
|
|
1118
1208
|
preventiveMeasures?: string[] | undefined;
|
|
1119
1209
|
estimatedTime?: string | undefined;
|
|
@@ -1143,6 +1233,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1143
1233
|
details: string;
|
|
1144
1234
|
timing: string;
|
|
1145
1235
|
confidence?: number | undefined;
|
|
1236
|
+
applicationMethod?: string | undefined;
|
|
1146
1237
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1147
1238
|
materials?: {
|
|
1148
1239
|
name: string;
|
|
@@ -1152,8 +1243,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1152
1243
|
totalCost?: number | undefined;
|
|
1153
1244
|
costPerUnit?: number | undefined;
|
|
1154
1245
|
availability?: string | undefined;
|
|
1246
|
+
inStock?: boolean | undefined;
|
|
1247
|
+
stockQuantity?: number | undefined;
|
|
1248
|
+
applicationMethod?: string | undefined;
|
|
1155
1249
|
}[] | undefined;
|
|
1156
|
-
applicationMethod?: string | undefined;
|
|
1157
1250
|
expectedOutcome?: string | undefined;
|
|
1158
1251
|
preventiveMeasures?: string[] | undefined;
|
|
1159
1252
|
estimatedTime?: string | undefined;
|
|
@@ -1184,6 +1277,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1184
1277
|
details: string;
|
|
1185
1278
|
timing: string;
|
|
1186
1279
|
confidence?: number | undefined;
|
|
1280
|
+
applicationMethod?: string | undefined;
|
|
1187
1281
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1188
1282
|
materials?: {
|
|
1189
1283
|
name: string;
|
|
@@ -1193,8 +1287,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1193
1287
|
totalCost?: number | undefined;
|
|
1194
1288
|
costPerUnit?: number | undefined;
|
|
1195
1289
|
availability?: string | undefined;
|
|
1290
|
+
inStock?: boolean | undefined;
|
|
1291
|
+
stockQuantity?: number | undefined;
|
|
1292
|
+
applicationMethod?: string | undefined;
|
|
1196
1293
|
}[] | undefined;
|
|
1197
|
-
applicationMethod?: string | undefined;
|
|
1198
1294
|
expectedOutcome?: string | undefined;
|
|
1199
1295
|
preventiveMeasures?: string[] | undefined;
|
|
1200
1296
|
estimatedTime?: string | undefined;
|
|
@@ -1227,6 +1323,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1227
1323
|
details: string;
|
|
1228
1324
|
timing: string;
|
|
1229
1325
|
confidence?: number | undefined;
|
|
1326
|
+
applicationMethod?: string | undefined;
|
|
1230
1327
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1231
1328
|
materials?: {
|
|
1232
1329
|
name: string;
|
|
@@ -1236,8 +1333,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1236
1333
|
totalCost?: number | undefined;
|
|
1237
1334
|
costPerUnit?: number | undefined;
|
|
1238
1335
|
availability?: string | undefined;
|
|
1336
|
+
inStock?: boolean | undefined;
|
|
1337
|
+
stockQuantity?: number | undefined;
|
|
1338
|
+
applicationMethod?: string | undefined;
|
|
1239
1339
|
}[] | undefined;
|
|
1240
|
-
applicationMethod?: string | undefined;
|
|
1241
1340
|
expectedOutcome?: string | undefined;
|
|
1242
1341
|
preventiveMeasures?: string[] | undefined;
|
|
1243
1342
|
estimatedTime?: string | undefined;
|
|
@@ -1271,6 +1370,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1271
1370
|
details: string;
|
|
1272
1371
|
timing: string;
|
|
1273
1372
|
confidence?: number | undefined;
|
|
1373
|
+
applicationMethod?: string | undefined;
|
|
1274
1374
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1275
1375
|
materials?: {
|
|
1276
1376
|
name: string;
|
|
@@ -1280,8 +1380,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1280
1380
|
totalCost?: number | undefined;
|
|
1281
1381
|
costPerUnit?: number | undefined;
|
|
1282
1382
|
availability?: string | undefined;
|
|
1383
|
+
inStock?: boolean | undefined;
|
|
1384
|
+
stockQuantity?: number | undefined;
|
|
1385
|
+
applicationMethod?: string | undefined;
|
|
1283
1386
|
}[] | undefined;
|
|
1284
|
-
applicationMethod?: string | undefined;
|
|
1285
1387
|
expectedOutcome?: string | undefined;
|
|
1286
1388
|
preventiveMeasures?: string[] | undefined;
|
|
1287
1389
|
estimatedTime?: string | undefined;
|
|
@@ -1343,6 +1445,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1343
1445
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1344
1446
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1345
1447
|
availability: z.ZodOptional<z.ZodString>;
|
|
1448
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1449
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1450
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1346
1451
|
}, "strip", z.ZodTypeAny, {
|
|
1347
1452
|
name: string;
|
|
1348
1453
|
quantity: number;
|
|
@@ -1351,6 +1456,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1351
1456
|
totalCost?: number | undefined;
|
|
1352
1457
|
costPerUnit?: number | undefined;
|
|
1353
1458
|
availability?: string | undefined;
|
|
1459
|
+
inStock?: boolean | undefined;
|
|
1460
|
+
stockQuantity?: number | undefined;
|
|
1461
|
+
applicationMethod?: string | undefined;
|
|
1354
1462
|
}, {
|
|
1355
1463
|
name: string;
|
|
1356
1464
|
quantity: number;
|
|
@@ -1359,6 +1467,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1359
1467
|
totalCost?: number | undefined;
|
|
1360
1468
|
costPerUnit?: number | undefined;
|
|
1361
1469
|
availability?: string | undefined;
|
|
1470
|
+
inStock?: boolean | undefined;
|
|
1471
|
+
stockQuantity?: number | undefined;
|
|
1472
|
+
applicationMethod?: string | undefined;
|
|
1362
1473
|
}>, "many">>;
|
|
1363
1474
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1364
1475
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1371,6 +1482,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1371
1482
|
details: string;
|
|
1372
1483
|
timing: string;
|
|
1373
1484
|
confidence?: number | undefined;
|
|
1485
|
+
applicationMethod?: string | undefined;
|
|
1374
1486
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1375
1487
|
materials?: {
|
|
1376
1488
|
name: string;
|
|
@@ -1380,8 +1492,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1380
1492
|
totalCost?: number | undefined;
|
|
1381
1493
|
costPerUnit?: number | undefined;
|
|
1382
1494
|
availability?: string | undefined;
|
|
1495
|
+
inStock?: boolean | undefined;
|
|
1496
|
+
stockQuantity?: number | undefined;
|
|
1497
|
+
applicationMethod?: string | undefined;
|
|
1383
1498
|
}[] | undefined;
|
|
1384
|
-
applicationMethod?: string | undefined;
|
|
1385
1499
|
expectedOutcome?: string | undefined;
|
|
1386
1500
|
preventiveMeasures?: string[] | undefined;
|
|
1387
1501
|
estimatedTime?: string | undefined;
|
|
@@ -1392,6 +1506,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1392
1506
|
details: string;
|
|
1393
1507
|
timing: string;
|
|
1394
1508
|
confidence?: number | undefined;
|
|
1509
|
+
applicationMethod?: string | undefined;
|
|
1395
1510
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1396
1511
|
materials?: {
|
|
1397
1512
|
name: string;
|
|
@@ -1401,8 +1516,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1401
1516
|
totalCost?: number | undefined;
|
|
1402
1517
|
costPerUnit?: number | undefined;
|
|
1403
1518
|
availability?: string | undefined;
|
|
1519
|
+
inStock?: boolean | undefined;
|
|
1520
|
+
stockQuantity?: number | undefined;
|
|
1521
|
+
applicationMethod?: string | undefined;
|
|
1404
1522
|
}[] | undefined;
|
|
1405
|
-
applicationMethod?: string | undefined;
|
|
1406
1523
|
expectedOutcome?: string | undefined;
|
|
1407
1524
|
preventiveMeasures?: string[] | undefined;
|
|
1408
1525
|
estimatedTime?: string | undefined;
|
|
@@ -1432,6 +1549,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1432
1549
|
details: string;
|
|
1433
1550
|
timing: string;
|
|
1434
1551
|
confidence?: number | undefined;
|
|
1552
|
+
applicationMethod?: string | undefined;
|
|
1435
1553
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1436
1554
|
materials?: {
|
|
1437
1555
|
name: string;
|
|
@@ -1441,8 +1559,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1441
1559
|
totalCost?: number | undefined;
|
|
1442
1560
|
costPerUnit?: number | undefined;
|
|
1443
1561
|
availability?: string | undefined;
|
|
1562
|
+
inStock?: boolean | undefined;
|
|
1563
|
+
stockQuantity?: number | undefined;
|
|
1564
|
+
applicationMethod?: string | undefined;
|
|
1444
1565
|
}[] | undefined;
|
|
1445
|
-
applicationMethod?: string | undefined;
|
|
1446
1566
|
expectedOutcome?: string | undefined;
|
|
1447
1567
|
preventiveMeasures?: string[] | undefined;
|
|
1448
1568
|
estimatedTime?: string | undefined;
|
|
@@ -1473,6 +1593,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1473
1593
|
details: string;
|
|
1474
1594
|
timing: string;
|
|
1475
1595
|
confidence?: number | undefined;
|
|
1596
|
+
applicationMethod?: string | undefined;
|
|
1476
1597
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1477
1598
|
materials?: {
|
|
1478
1599
|
name: string;
|
|
@@ -1482,8 +1603,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1482
1603
|
totalCost?: number | undefined;
|
|
1483
1604
|
costPerUnit?: number | undefined;
|
|
1484
1605
|
availability?: string | undefined;
|
|
1606
|
+
inStock?: boolean | undefined;
|
|
1607
|
+
stockQuantity?: number | undefined;
|
|
1608
|
+
applicationMethod?: string | undefined;
|
|
1485
1609
|
}[] | undefined;
|
|
1486
|
-
applicationMethod?: string | undefined;
|
|
1487
1610
|
expectedOutcome?: string | undefined;
|
|
1488
1611
|
preventiveMeasures?: string[] | undefined;
|
|
1489
1612
|
estimatedTime?: string | undefined;
|
|
@@ -1543,6 +1666,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1543
1666
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1544
1667
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1545
1668
|
availability: z.ZodOptional<z.ZodString>;
|
|
1669
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1670
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1671
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1546
1672
|
}, "strip", z.ZodTypeAny, {
|
|
1547
1673
|
name: string;
|
|
1548
1674
|
quantity: number;
|
|
@@ -1551,6 +1677,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1551
1677
|
totalCost?: number | undefined;
|
|
1552
1678
|
costPerUnit?: number | undefined;
|
|
1553
1679
|
availability?: string | undefined;
|
|
1680
|
+
inStock?: boolean | undefined;
|
|
1681
|
+
stockQuantity?: number | undefined;
|
|
1682
|
+
applicationMethod?: string | undefined;
|
|
1554
1683
|
}, {
|
|
1555
1684
|
name: string;
|
|
1556
1685
|
quantity: number;
|
|
@@ -1559,6 +1688,9 @@ export declare const fieldMonitoringRouter: {
|
|
|
1559
1688
|
totalCost?: number | undefined;
|
|
1560
1689
|
costPerUnit?: number | undefined;
|
|
1561
1690
|
availability?: string | undefined;
|
|
1691
|
+
inStock?: boolean | undefined;
|
|
1692
|
+
stockQuantity?: number | undefined;
|
|
1693
|
+
applicationMethod?: string | undefined;
|
|
1562
1694
|
}>, "many">>;
|
|
1563
1695
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1564
1696
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1571,6 +1703,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1571
1703
|
details: string;
|
|
1572
1704
|
timing: string;
|
|
1573
1705
|
confidence?: number | undefined;
|
|
1706
|
+
applicationMethod?: string | undefined;
|
|
1574
1707
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1575
1708
|
materials?: {
|
|
1576
1709
|
name: string;
|
|
@@ -1580,8 +1713,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1580
1713
|
totalCost?: number | undefined;
|
|
1581
1714
|
costPerUnit?: number | undefined;
|
|
1582
1715
|
availability?: string | undefined;
|
|
1716
|
+
inStock?: boolean | undefined;
|
|
1717
|
+
stockQuantity?: number | undefined;
|
|
1718
|
+
applicationMethod?: string | undefined;
|
|
1583
1719
|
}[] | undefined;
|
|
1584
|
-
applicationMethod?: string | undefined;
|
|
1585
1720
|
expectedOutcome?: string | undefined;
|
|
1586
1721
|
preventiveMeasures?: string[] | undefined;
|
|
1587
1722
|
estimatedTime?: string | undefined;
|
|
@@ -1592,6 +1727,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1592
1727
|
details: string;
|
|
1593
1728
|
timing: string;
|
|
1594
1729
|
confidence?: number | undefined;
|
|
1730
|
+
applicationMethod?: string | undefined;
|
|
1595
1731
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1596
1732
|
materials?: {
|
|
1597
1733
|
name: string;
|
|
@@ -1601,8 +1737,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1601
1737
|
totalCost?: number | undefined;
|
|
1602
1738
|
costPerUnit?: number | undefined;
|
|
1603
1739
|
availability?: string | undefined;
|
|
1740
|
+
inStock?: boolean | undefined;
|
|
1741
|
+
stockQuantity?: number | undefined;
|
|
1742
|
+
applicationMethod?: string | undefined;
|
|
1604
1743
|
}[] | undefined;
|
|
1605
|
-
applicationMethod?: string | undefined;
|
|
1606
1744
|
expectedOutcome?: string | undefined;
|
|
1607
1745
|
preventiveMeasures?: string[] | undefined;
|
|
1608
1746
|
estimatedTime?: string | undefined;
|
|
@@ -1632,6 +1770,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1632
1770
|
details: string;
|
|
1633
1771
|
timing: string;
|
|
1634
1772
|
confidence?: number | undefined;
|
|
1773
|
+
applicationMethod?: string | undefined;
|
|
1635
1774
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1636
1775
|
materials?: {
|
|
1637
1776
|
name: string;
|
|
@@ -1641,8 +1780,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1641
1780
|
totalCost?: number | undefined;
|
|
1642
1781
|
costPerUnit?: number | undefined;
|
|
1643
1782
|
availability?: string | undefined;
|
|
1783
|
+
inStock?: boolean | undefined;
|
|
1784
|
+
stockQuantity?: number | undefined;
|
|
1785
|
+
applicationMethod?: string | undefined;
|
|
1644
1786
|
}[] | undefined;
|
|
1645
|
-
applicationMethod?: string | undefined;
|
|
1646
1787
|
expectedOutcome?: string | undefined;
|
|
1647
1788
|
preventiveMeasures?: string[] | undefined;
|
|
1648
1789
|
estimatedTime?: string | undefined;
|
|
@@ -1673,6 +1814,7 @@ export declare const fieldMonitoringRouter: {
|
|
|
1673
1814
|
details: string;
|
|
1674
1815
|
timing: string;
|
|
1675
1816
|
confidence?: number | undefined;
|
|
1817
|
+
applicationMethod?: string | undefined;
|
|
1676
1818
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1677
1819
|
materials?: {
|
|
1678
1820
|
name: string;
|
|
@@ -1682,8 +1824,10 @@ export declare const fieldMonitoringRouter: {
|
|
|
1682
1824
|
totalCost?: number | undefined;
|
|
1683
1825
|
costPerUnit?: number | undefined;
|
|
1684
1826
|
availability?: string | undefined;
|
|
1827
|
+
inStock?: boolean | undefined;
|
|
1828
|
+
stockQuantity?: number | undefined;
|
|
1829
|
+
applicationMethod?: string | undefined;
|
|
1685
1830
|
}[] | undefined;
|
|
1686
|
-
applicationMethod?: string | undefined;
|
|
1687
1831
|
expectedOutcome?: string | undefined;
|
|
1688
1832
|
preventiveMeasures?: string[] | undefined;
|
|
1689
1833
|
estimatedTime?: string | undefined;
|