@deepintel-ltd/farmpro-contracts 1.19.1 → 1.20.1
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/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 +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/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/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
|
@@ -89,6 +89,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
89
89
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
90
90
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
91
91
|
availability: z.ZodOptional<z.ZodString>;
|
|
92
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
93
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
94
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
92
95
|
}, "strip", z.ZodTypeAny, {
|
|
93
96
|
name: string;
|
|
94
97
|
quantity: number;
|
|
@@ -97,6 +100,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
97
100
|
totalCost?: number | undefined;
|
|
98
101
|
costPerUnit?: number | undefined;
|
|
99
102
|
availability?: string | undefined;
|
|
103
|
+
inStock?: boolean | undefined;
|
|
104
|
+
stockQuantity?: number | undefined;
|
|
105
|
+
applicationMethod?: string | undefined;
|
|
100
106
|
}, {
|
|
101
107
|
name: string;
|
|
102
108
|
quantity: number;
|
|
@@ -105,6 +111,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
105
111
|
totalCost?: number | undefined;
|
|
106
112
|
costPerUnit?: number | undefined;
|
|
107
113
|
availability?: string | undefined;
|
|
114
|
+
inStock?: boolean | undefined;
|
|
115
|
+
stockQuantity?: number | undefined;
|
|
116
|
+
applicationMethod?: string | undefined;
|
|
108
117
|
}>, "many">>;
|
|
109
118
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
110
119
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -117,6 +126,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
117
126
|
details: string;
|
|
118
127
|
timing: string;
|
|
119
128
|
confidence?: number | undefined;
|
|
129
|
+
applicationMethod?: string | undefined;
|
|
120
130
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
121
131
|
materials?: {
|
|
122
132
|
name: string;
|
|
@@ -126,8 +136,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
126
136
|
totalCost?: number | undefined;
|
|
127
137
|
costPerUnit?: number | undefined;
|
|
128
138
|
availability?: string | undefined;
|
|
139
|
+
inStock?: boolean | undefined;
|
|
140
|
+
stockQuantity?: number | undefined;
|
|
141
|
+
applicationMethod?: string | undefined;
|
|
129
142
|
}[] | undefined;
|
|
130
|
-
applicationMethod?: string | undefined;
|
|
131
143
|
expectedOutcome?: string | undefined;
|
|
132
144
|
preventiveMeasures?: string[] | undefined;
|
|
133
145
|
estimatedTime?: string | undefined;
|
|
@@ -138,6 +150,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
138
150
|
details: string;
|
|
139
151
|
timing: string;
|
|
140
152
|
confidence?: number | undefined;
|
|
153
|
+
applicationMethod?: string | undefined;
|
|
141
154
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
142
155
|
materials?: {
|
|
143
156
|
name: string;
|
|
@@ -147,8 +160,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
147
160
|
totalCost?: number | undefined;
|
|
148
161
|
costPerUnit?: number | undefined;
|
|
149
162
|
availability?: string | undefined;
|
|
163
|
+
inStock?: boolean | undefined;
|
|
164
|
+
stockQuantity?: number | undefined;
|
|
165
|
+
applicationMethod?: string | undefined;
|
|
150
166
|
}[] | undefined;
|
|
151
|
-
applicationMethod?: string | undefined;
|
|
152
167
|
expectedOutcome?: string | undefined;
|
|
153
168
|
preventiveMeasures?: string[] | undefined;
|
|
154
169
|
estimatedTime?: string | undefined;
|
|
@@ -165,6 +180,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
165
180
|
details: string;
|
|
166
181
|
timing: string;
|
|
167
182
|
confidence?: number | undefined;
|
|
183
|
+
applicationMethod?: string | undefined;
|
|
168
184
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
169
185
|
materials?: {
|
|
170
186
|
name: string;
|
|
@@ -174,8 +190,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
174
190
|
totalCost?: number | undefined;
|
|
175
191
|
costPerUnit?: number | undefined;
|
|
176
192
|
availability?: string | undefined;
|
|
193
|
+
inStock?: boolean | undefined;
|
|
194
|
+
stockQuantity?: number | undefined;
|
|
195
|
+
applicationMethod?: string | undefined;
|
|
177
196
|
}[] | undefined;
|
|
178
|
-
applicationMethod?: string | undefined;
|
|
179
197
|
expectedOutcome?: string | undefined;
|
|
180
198
|
preventiveMeasures?: string[] | undefined;
|
|
181
199
|
estimatedTime?: string | undefined;
|
|
@@ -191,6 +209,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
191
209
|
details: string;
|
|
192
210
|
timing: string;
|
|
193
211
|
confidence?: number | undefined;
|
|
212
|
+
applicationMethod?: string | undefined;
|
|
194
213
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
195
214
|
materials?: {
|
|
196
215
|
name: string;
|
|
@@ -200,8 +219,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
200
219
|
totalCost?: number | undefined;
|
|
201
220
|
costPerUnit?: number | undefined;
|
|
202
221
|
availability?: string | undefined;
|
|
222
|
+
inStock?: boolean | undefined;
|
|
223
|
+
stockQuantity?: number | undefined;
|
|
224
|
+
applicationMethod?: string | undefined;
|
|
203
225
|
}[] | undefined;
|
|
204
|
-
applicationMethod?: string | undefined;
|
|
205
226
|
expectedOutcome?: string | undefined;
|
|
206
227
|
preventiveMeasures?: string[] | undefined;
|
|
207
228
|
estimatedTime?: string | undefined;
|
|
@@ -220,6 +241,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
220
241
|
details: string;
|
|
221
242
|
timing: string;
|
|
222
243
|
confidence?: number | undefined;
|
|
244
|
+
applicationMethod?: string | undefined;
|
|
223
245
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
224
246
|
materials?: {
|
|
225
247
|
name: string;
|
|
@@ -229,8 +251,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
229
251
|
totalCost?: number | undefined;
|
|
230
252
|
costPerUnit?: number | undefined;
|
|
231
253
|
availability?: string | undefined;
|
|
254
|
+
inStock?: boolean | undefined;
|
|
255
|
+
stockQuantity?: number | undefined;
|
|
256
|
+
applicationMethod?: string | undefined;
|
|
232
257
|
}[] | undefined;
|
|
233
|
-
applicationMethod?: string | undefined;
|
|
234
258
|
expectedOutcome?: string | undefined;
|
|
235
259
|
preventiveMeasures?: string[] | undefined;
|
|
236
260
|
estimatedTime?: string | undefined;
|
|
@@ -255,6 +279,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
255
279
|
details: string;
|
|
256
280
|
timing: string;
|
|
257
281
|
confidence?: number | undefined;
|
|
282
|
+
applicationMethod?: string | undefined;
|
|
258
283
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
259
284
|
materials?: {
|
|
260
285
|
name: string;
|
|
@@ -264,8 +289,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
264
289
|
totalCost?: number | undefined;
|
|
265
290
|
costPerUnit?: number | undefined;
|
|
266
291
|
availability?: string | undefined;
|
|
292
|
+
inStock?: boolean | undefined;
|
|
293
|
+
stockQuantity?: number | undefined;
|
|
294
|
+
applicationMethod?: string | undefined;
|
|
267
295
|
}[] | undefined;
|
|
268
|
-
applicationMethod?: string | undefined;
|
|
269
296
|
expectedOutcome?: string | undefined;
|
|
270
297
|
preventiveMeasures?: string[] | undefined;
|
|
271
298
|
estimatedTime?: string | undefined;
|
|
@@ -306,6 +333,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
306
333
|
details: string;
|
|
307
334
|
timing: string;
|
|
308
335
|
confidence?: number | undefined;
|
|
336
|
+
applicationMethod?: string | undefined;
|
|
309
337
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
310
338
|
materials?: {
|
|
311
339
|
name: string;
|
|
@@ -315,8 +343,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
315
343
|
totalCost?: number | undefined;
|
|
316
344
|
costPerUnit?: number | undefined;
|
|
317
345
|
availability?: string | undefined;
|
|
346
|
+
inStock?: boolean | undefined;
|
|
347
|
+
stockQuantity?: number | undefined;
|
|
348
|
+
applicationMethod?: string | undefined;
|
|
318
349
|
}[] | undefined;
|
|
319
|
-
applicationMethod?: string | undefined;
|
|
320
350
|
expectedOutcome?: string | undefined;
|
|
321
351
|
preventiveMeasures?: string[] | undefined;
|
|
322
352
|
estimatedTime?: string | undefined;
|
|
@@ -354,6 +384,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
354
384
|
details: string;
|
|
355
385
|
timing: string;
|
|
356
386
|
confidence?: number | undefined;
|
|
387
|
+
applicationMethod?: string | undefined;
|
|
357
388
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
358
389
|
materials?: {
|
|
359
390
|
name: string;
|
|
@@ -363,8 +394,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
363
394
|
totalCost?: number | undefined;
|
|
364
395
|
costPerUnit?: number | undefined;
|
|
365
396
|
availability?: string | undefined;
|
|
397
|
+
inStock?: boolean | undefined;
|
|
398
|
+
stockQuantity?: number | undefined;
|
|
399
|
+
applicationMethod?: string | undefined;
|
|
366
400
|
}[] | undefined;
|
|
367
|
-
applicationMethod?: string | undefined;
|
|
368
401
|
expectedOutcome?: string | undefined;
|
|
369
402
|
preventiveMeasures?: string[] | undefined;
|
|
370
403
|
estimatedTime?: string | undefined;
|
|
@@ -409,6 +442,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
409
442
|
details: string;
|
|
410
443
|
timing: string;
|
|
411
444
|
confidence?: number | undefined;
|
|
445
|
+
applicationMethod?: string | undefined;
|
|
412
446
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
413
447
|
materials?: {
|
|
414
448
|
name: string;
|
|
@@ -418,8 +452,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
418
452
|
totalCost?: number | undefined;
|
|
419
453
|
costPerUnit?: number | undefined;
|
|
420
454
|
availability?: string | undefined;
|
|
455
|
+
inStock?: boolean | undefined;
|
|
456
|
+
stockQuantity?: number | undefined;
|
|
457
|
+
applicationMethod?: string | undefined;
|
|
421
458
|
}[] | undefined;
|
|
422
|
-
applicationMethod?: string | undefined;
|
|
423
459
|
expectedOutcome?: string | undefined;
|
|
424
460
|
preventiveMeasures?: string[] | undefined;
|
|
425
461
|
estimatedTime?: string | undefined;
|
|
@@ -464,6 +500,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
464
500
|
details: string;
|
|
465
501
|
timing: string;
|
|
466
502
|
confidence?: number | undefined;
|
|
503
|
+
applicationMethod?: string | undefined;
|
|
467
504
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
468
505
|
materials?: {
|
|
469
506
|
name: string;
|
|
@@ -473,8 +510,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
473
510
|
totalCost?: number | undefined;
|
|
474
511
|
costPerUnit?: number | undefined;
|
|
475
512
|
availability?: string | undefined;
|
|
513
|
+
inStock?: boolean | undefined;
|
|
514
|
+
stockQuantity?: number | undefined;
|
|
515
|
+
applicationMethod?: string | undefined;
|
|
476
516
|
}[] | undefined;
|
|
477
|
-
applicationMethod?: string | undefined;
|
|
478
517
|
expectedOutcome?: string | undefined;
|
|
479
518
|
preventiveMeasures?: string[] | undefined;
|
|
480
519
|
estimatedTime?: string | undefined;
|
|
@@ -545,6 +584,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
545
584
|
details: string;
|
|
546
585
|
timing: string;
|
|
547
586
|
confidence?: number | undefined;
|
|
587
|
+
applicationMethod?: string | undefined;
|
|
548
588
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
549
589
|
materials?: {
|
|
550
590
|
name: string;
|
|
@@ -554,8 +594,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
554
594
|
totalCost?: number | undefined;
|
|
555
595
|
costPerUnit?: number | undefined;
|
|
556
596
|
availability?: string | undefined;
|
|
597
|
+
inStock?: boolean | undefined;
|
|
598
|
+
stockQuantity?: number | undefined;
|
|
599
|
+
applicationMethod?: string | undefined;
|
|
557
600
|
}[] | undefined;
|
|
558
|
-
applicationMethod?: string | undefined;
|
|
559
601
|
expectedOutcome?: string | undefined;
|
|
560
602
|
preventiveMeasures?: string[] | undefined;
|
|
561
603
|
estimatedTime?: string | undefined;
|
|
@@ -612,6 +654,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
612
654
|
details: string;
|
|
613
655
|
timing: string;
|
|
614
656
|
confidence?: number | undefined;
|
|
657
|
+
applicationMethod?: string | undefined;
|
|
615
658
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
616
659
|
materials?: {
|
|
617
660
|
name: string;
|
|
@@ -621,8 +664,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
621
664
|
totalCost?: number | undefined;
|
|
622
665
|
costPerUnit?: number | undefined;
|
|
623
666
|
availability?: string | undefined;
|
|
667
|
+
inStock?: boolean | undefined;
|
|
668
|
+
stockQuantity?: number | undefined;
|
|
669
|
+
applicationMethod?: string | undefined;
|
|
624
670
|
}[] | undefined;
|
|
625
|
-
applicationMethod?: string | undefined;
|
|
626
671
|
expectedOutcome?: string | undefined;
|
|
627
672
|
preventiveMeasures?: string[] | undefined;
|
|
628
673
|
estimatedTime?: string | undefined;
|
|
@@ -741,6 +786,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
741
786
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
742
787
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
743
788
|
availability: z.ZodOptional<z.ZodString>;
|
|
789
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
790
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
791
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
744
792
|
}, "strip", z.ZodTypeAny, {
|
|
745
793
|
name: string;
|
|
746
794
|
quantity: number;
|
|
@@ -749,6 +797,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
749
797
|
totalCost?: number | undefined;
|
|
750
798
|
costPerUnit?: number | undefined;
|
|
751
799
|
availability?: string | undefined;
|
|
800
|
+
inStock?: boolean | undefined;
|
|
801
|
+
stockQuantity?: number | undefined;
|
|
802
|
+
applicationMethod?: string | undefined;
|
|
752
803
|
}, {
|
|
753
804
|
name: string;
|
|
754
805
|
quantity: number;
|
|
@@ -757,6 +808,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
757
808
|
totalCost?: number | undefined;
|
|
758
809
|
costPerUnit?: number | undefined;
|
|
759
810
|
availability?: string | undefined;
|
|
811
|
+
inStock?: boolean | undefined;
|
|
812
|
+
stockQuantity?: number | undefined;
|
|
813
|
+
applicationMethod?: string | undefined;
|
|
760
814
|
}>, "many">>;
|
|
761
815
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
762
816
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -769,6 +823,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
769
823
|
details: string;
|
|
770
824
|
timing: string;
|
|
771
825
|
confidence?: number | undefined;
|
|
826
|
+
applicationMethod?: string | undefined;
|
|
772
827
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
773
828
|
materials?: {
|
|
774
829
|
name: string;
|
|
@@ -778,8 +833,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
778
833
|
totalCost?: number | undefined;
|
|
779
834
|
costPerUnit?: number | undefined;
|
|
780
835
|
availability?: string | undefined;
|
|
836
|
+
inStock?: boolean | undefined;
|
|
837
|
+
stockQuantity?: number | undefined;
|
|
838
|
+
applicationMethod?: string | undefined;
|
|
781
839
|
}[] | undefined;
|
|
782
|
-
applicationMethod?: string | undefined;
|
|
783
840
|
expectedOutcome?: string | undefined;
|
|
784
841
|
preventiveMeasures?: string[] | undefined;
|
|
785
842
|
estimatedTime?: string | undefined;
|
|
@@ -790,6 +847,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
790
847
|
details: string;
|
|
791
848
|
timing: string;
|
|
792
849
|
confidence?: number | undefined;
|
|
850
|
+
applicationMethod?: string | undefined;
|
|
793
851
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
794
852
|
materials?: {
|
|
795
853
|
name: string;
|
|
@@ -799,8 +857,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
799
857
|
totalCost?: number | undefined;
|
|
800
858
|
costPerUnit?: number | undefined;
|
|
801
859
|
availability?: string | undefined;
|
|
860
|
+
inStock?: boolean | undefined;
|
|
861
|
+
stockQuantity?: number | undefined;
|
|
862
|
+
applicationMethod?: string | undefined;
|
|
802
863
|
}[] | undefined;
|
|
803
|
-
applicationMethod?: string | undefined;
|
|
804
864
|
expectedOutcome?: string | undefined;
|
|
805
865
|
preventiveMeasures?: string[] | undefined;
|
|
806
866
|
estimatedTime?: string | undefined;
|
|
@@ -817,6 +877,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
817
877
|
details: string;
|
|
818
878
|
timing: string;
|
|
819
879
|
confidence?: number | undefined;
|
|
880
|
+
applicationMethod?: string | undefined;
|
|
820
881
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
821
882
|
materials?: {
|
|
822
883
|
name: string;
|
|
@@ -826,8 +887,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
826
887
|
totalCost?: number | undefined;
|
|
827
888
|
costPerUnit?: number | undefined;
|
|
828
889
|
availability?: string | undefined;
|
|
890
|
+
inStock?: boolean | undefined;
|
|
891
|
+
stockQuantity?: number | undefined;
|
|
892
|
+
applicationMethod?: string | undefined;
|
|
829
893
|
}[] | undefined;
|
|
830
|
-
applicationMethod?: string | undefined;
|
|
831
894
|
expectedOutcome?: string | undefined;
|
|
832
895
|
preventiveMeasures?: string[] | undefined;
|
|
833
896
|
estimatedTime?: string | undefined;
|
|
@@ -843,6 +906,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
843
906
|
details: string;
|
|
844
907
|
timing: string;
|
|
845
908
|
confidence?: number | undefined;
|
|
909
|
+
applicationMethod?: string | undefined;
|
|
846
910
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
847
911
|
materials?: {
|
|
848
912
|
name: string;
|
|
@@ -852,8 +916,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
852
916
|
totalCost?: number | undefined;
|
|
853
917
|
costPerUnit?: number | undefined;
|
|
854
918
|
availability?: string | undefined;
|
|
919
|
+
inStock?: boolean | undefined;
|
|
920
|
+
stockQuantity?: number | undefined;
|
|
921
|
+
applicationMethod?: string | undefined;
|
|
855
922
|
}[] | undefined;
|
|
856
|
-
applicationMethod?: string | undefined;
|
|
857
923
|
expectedOutcome?: string | undefined;
|
|
858
924
|
preventiveMeasures?: string[] | undefined;
|
|
859
925
|
estimatedTime?: string | undefined;
|
|
@@ -872,6 +938,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
872
938
|
details: string;
|
|
873
939
|
timing: string;
|
|
874
940
|
confidence?: number | undefined;
|
|
941
|
+
applicationMethod?: string | undefined;
|
|
875
942
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
876
943
|
materials?: {
|
|
877
944
|
name: string;
|
|
@@ -881,8 +948,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
881
948
|
totalCost?: number | undefined;
|
|
882
949
|
costPerUnit?: number | undefined;
|
|
883
950
|
availability?: string | undefined;
|
|
951
|
+
inStock?: boolean | undefined;
|
|
952
|
+
stockQuantity?: number | undefined;
|
|
953
|
+
applicationMethod?: string | undefined;
|
|
884
954
|
}[] | undefined;
|
|
885
|
-
applicationMethod?: string | undefined;
|
|
886
955
|
expectedOutcome?: string | undefined;
|
|
887
956
|
preventiveMeasures?: string[] | undefined;
|
|
888
957
|
estimatedTime?: string | undefined;
|
|
@@ -907,6 +976,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
907
976
|
details: string;
|
|
908
977
|
timing: string;
|
|
909
978
|
confidence?: number | undefined;
|
|
979
|
+
applicationMethod?: string | undefined;
|
|
910
980
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
911
981
|
materials?: {
|
|
912
982
|
name: string;
|
|
@@ -916,8 +986,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
916
986
|
totalCost?: number | undefined;
|
|
917
987
|
costPerUnit?: number | undefined;
|
|
918
988
|
availability?: string | undefined;
|
|
989
|
+
inStock?: boolean | undefined;
|
|
990
|
+
stockQuantity?: number | undefined;
|
|
991
|
+
applicationMethod?: string | undefined;
|
|
919
992
|
}[] | undefined;
|
|
920
|
-
applicationMethod?: string | undefined;
|
|
921
993
|
expectedOutcome?: string | undefined;
|
|
922
994
|
preventiveMeasures?: string[] | undefined;
|
|
923
995
|
estimatedTime?: string | undefined;
|
|
@@ -958,6 +1030,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
958
1030
|
details: string;
|
|
959
1031
|
timing: string;
|
|
960
1032
|
confidence?: number | undefined;
|
|
1033
|
+
applicationMethod?: string | undefined;
|
|
961
1034
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
962
1035
|
materials?: {
|
|
963
1036
|
name: string;
|
|
@@ -967,8 +1040,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
967
1040
|
totalCost?: number | undefined;
|
|
968
1041
|
costPerUnit?: number | undefined;
|
|
969
1042
|
availability?: string | undefined;
|
|
1043
|
+
inStock?: boolean | undefined;
|
|
1044
|
+
stockQuantity?: number | undefined;
|
|
1045
|
+
applicationMethod?: string | undefined;
|
|
970
1046
|
}[] | undefined;
|
|
971
|
-
applicationMethod?: string | undefined;
|
|
972
1047
|
expectedOutcome?: string | undefined;
|
|
973
1048
|
preventiveMeasures?: string[] | undefined;
|
|
974
1049
|
estimatedTime?: string | undefined;
|
|
@@ -1006,6 +1081,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1006
1081
|
details: string;
|
|
1007
1082
|
timing: string;
|
|
1008
1083
|
confidence?: number | undefined;
|
|
1084
|
+
applicationMethod?: string | undefined;
|
|
1009
1085
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1010
1086
|
materials?: {
|
|
1011
1087
|
name: string;
|
|
@@ -1015,8 +1091,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1015
1091
|
totalCost?: number | undefined;
|
|
1016
1092
|
costPerUnit?: number | undefined;
|
|
1017
1093
|
availability?: string | undefined;
|
|
1094
|
+
inStock?: boolean | undefined;
|
|
1095
|
+
stockQuantity?: number | undefined;
|
|
1096
|
+
applicationMethod?: string | undefined;
|
|
1018
1097
|
}[] | undefined;
|
|
1019
|
-
applicationMethod?: string | undefined;
|
|
1020
1098
|
expectedOutcome?: string | undefined;
|
|
1021
1099
|
preventiveMeasures?: string[] | undefined;
|
|
1022
1100
|
estimatedTime?: string | undefined;
|
|
@@ -1061,6 +1139,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1061
1139
|
details: string;
|
|
1062
1140
|
timing: string;
|
|
1063
1141
|
confidence?: number | undefined;
|
|
1142
|
+
applicationMethod?: string | undefined;
|
|
1064
1143
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1065
1144
|
materials?: {
|
|
1066
1145
|
name: string;
|
|
@@ -1070,8 +1149,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1070
1149
|
totalCost?: number | undefined;
|
|
1071
1150
|
costPerUnit?: number | undefined;
|
|
1072
1151
|
availability?: string | undefined;
|
|
1152
|
+
inStock?: boolean | undefined;
|
|
1153
|
+
stockQuantity?: number | undefined;
|
|
1154
|
+
applicationMethod?: string | undefined;
|
|
1073
1155
|
}[] | undefined;
|
|
1074
|
-
applicationMethod?: string | undefined;
|
|
1075
1156
|
expectedOutcome?: string | undefined;
|
|
1076
1157
|
preventiveMeasures?: string[] | undefined;
|
|
1077
1158
|
estimatedTime?: string | undefined;
|
|
@@ -1116,6 +1197,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1116
1197
|
details: string;
|
|
1117
1198
|
timing: string;
|
|
1118
1199
|
confidence?: number | undefined;
|
|
1200
|
+
applicationMethod?: string | undefined;
|
|
1119
1201
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1120
1202
|
materials?: {
|
|
1121
1203
|
name: string;
|
|
@@ -1125,8 +1207,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1125
1207
|
totalCost?: number | undefined;
|
|
1126
1208
|
costPerUnit?: number | undefined;
|
|
1127
1209
|
availability?: string | undefined;
|
|
1210
|
+
inStock?: boolean | undefined;
|
|
1211
|
+
stockQuantity?: number | undefined;
|
|
1212
|
+
applicationMethod?: string | undefined;
|
|
1128
1213
|
}[] | undefined;
|
|
1129
|
-
applicationMethod?: string | undefined;
|
|
1130
1214
|
expectedOutcome?: string | undefined;
|
|
1131
1215
|
preventiveMeasures?: string[] | undefined;
|
|
1132
1216
|
estimatedTime?: string | undefined;
|
|
@@ -1197,6 +1281,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1197
1281
|
details: string;
|
|
1198
1282
|
timing: string;
|
|
1199
1283
|
confidence?: number | undefined;
|
|
1284
|
+
applicationMethod?: string | undefined;
|
|
1200
1285
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1201
1286
|
materials?: {
|
|
1202
1287
|
name: string;
|
|
@@ -1206,8 +1291,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1206
1291
|
totalCost?: number | undefined;
|
|
1207
1292
|
costPerUnit?: number | undefined;
|
|
1208
1293
|
availability?: string | undefined;
|
|
1294
|
+
inStock?: boolean | undefined;
|
|
1295
|
+
stockQuantity?: number | undefined;
|
|
1296
|
+
applicationMethod?: string | undefined;
|
|
1209
1297
|
}[] | undefined;
|
|
1210
|
-
applicationMethod?: string | undefined;
|
|
1211
1298
|
expectedOutcome?: string | undefined;
|
|
1212
1299
|
preventiveMeasures?: string[] | undefined;
|
|
1213
1300
|
estimatedTime?: string | undefined;
|
|
@@ -1264,6 +1351,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1264
1351
|
details: string;
|
|
1265
1352
|
timing: string;
|
|
1266
1353
|
confidence?: number | undefined;
|
|
1354
|
+
applicationMethod?: string | undefined;
|
|
1267
1355
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1268
1356
|
materials?: {
|
|
1269
1357
|
name: string;
|
|
@@ -1273,8 +1361,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1273
1361
|
totalCost?: number | undefined;
|
|
1274
1362
|
costPerUnit?: number | undefined;
|
|
1275
1363
|
availability?: string | undefined;
|
|
1364
|
+
inStock?: boolean | undefined;
|
|
1365
|
+
stockQuantity?: number | undefined;
|
|
1366
|
+
applicationMethod?: string | undefined;
|
|
1276
1367
|
}[] | undefined;
|
|
1277
|
-
applicationMethod?: string | undefined;
|
|
1278
1368
|
expectedOutcome?: string | undefined;
|
|
1279
1369
|
preventiveMeasures?: string[] | undefined;
|
|
1280
1370
|
estimatedTime?: string | undefined;
|
|
@@ -1407,6 +1497,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
1407
1497
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1408
1498
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1409
1499
|
availability: z.ZodOptional<z.ZodString>;
|
|
1500
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1501
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1502
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1410
1503
|
}, "strip", z.ZodTypeAny, {
|
|
1411
1504
|
name: string;
|
|
1412
1505
|
quantity: number;
|
|
@@ -1415,6 +1508,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
1415
1508
|
totalCost?: number | undefined;
|
|
1416
1509
|
costPerUnit?: number | undefined;
|
|
1417
1510
|
availability?: string | undefined;
|
|
1511
|
+
inStock?: boolean | undefined;
|
|
1512
|
+
stockQuantity?: number | undefined;
|
|
1513
|
+
applicationMethod?: string | undefined;
|
|
1418
1514
|
}, {
|
|
1419
1515
|
name: string;
|
|
1420
1516
|
quantity: number;
|
|
@@ -1423,6 +1519,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
1423
1519
|
totalCost?: number | undefined;
|
|
1424
1520
|
costPerUnit?: number | undefined;
|
|
1425
1521
|
availability?: string | undefined;
|
|
1522
|
+
inStock?: boolean | undefined;
|
|
1523
|
+
stockQuantity?: number | undefined;
|
|
1524
|
+
applicationMethod?: string | undefined;
|
|
1426
1525
|
}>, "many">>;
|
|
1427
1526
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1428
1527
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1435,6 +1534,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1435
1534
|
details: string;
|
|
1436
1535
|
timing: string;
|
|
1437
1536
|
confidence?: number | undefined;
|
|
1537
|
+
applicationMethod?: string | undefined;
|
|
1438
1538
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1439
1539
|
materials?: {
|
|
1440
1540
|
name: string;
|
|
@@ -1444,8 +1544,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1444
1544
|
totalCost?: number | undefined;
|
|
1445
1545
|
costPerUnit?: number | undefined;
|
|
1446
1546
|
availability?: string | undefined;
|
|
1547
|
+
inStock?: boolean | undefined;
|
|
1548
|
+
stockQuantity?: number | undefined;
|
|
1549
|
+
applicationMethod?: string | undefined;
|
|
1447
1550
|
}[] | undefined;
|
|
1448
|
-
applicationMethod?: string | undefined;
|
|
1449
1551
|
expectedOutcome?: string | undefined;
|
|
1450
1552
|
preventiveMeasures?: string[] | undefined;
|
|
1451
1553
|
estimatedTime?: string | undefined;
|
|
@@ -1456,6 +1558,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1456
1558
|
details: string;
|
|
1457
1559
|
timing: string;
|
|
1458
1560
|
confidence?: number | undefined;
|
|
1561
|
+
applicationMethod?: string | undefined;
|
|
1459
1562
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1460
1563
|
materials?: {
|
|
1461
1564
|
name: string;
|
|
@@ -1465,8 +1568,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1465
1568
|
totalCost?: number | undefined;
|
|
1466
1569
|
costPerUnit?: number | undefined;
|
|
1467
1570
|
availability?: string | undefined;
|
|
1571
|
+
inStock?: boolean | undefined;
|
|
1572
|
+
stockQuantity?: number | undefined;
|
|
1573
|
+
applicationMethod?: string | undefined;
|
|
1468
1574
|
}[] | undefined;
|
|
1469
|
-
applicationMethod?: string | undefined;
|
|
1470
1575
|
expectedOutcome?: string | undefined;
|
|
1471
1576
|
preventiveMeasures?: string[] | undefined;
|
|
1472
1577
|
estimatedTime?: string | undefined;
|
|
@@ -1483,6 +1588,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1483
1588
|
details: string;
|
|
1484
1589
|
timing: string;
|
|
1485
1590
|
confidence?: number | undefined;
|
|
1591
|
+
applicationMethod?: string | undefined;
|
|
1486
1592
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1487
1593
|
materials?: {
|
|
1488
1594
|
name: string;
|
|
@@ -1492,8 +1598,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1492
1598
|
totalCost?: number | undefined;
|
|
1493
1599
|
costPerUnit?: number | undefined;
|
|
1494
1600
|
availability?: string | undefined;
|
|
1601
|
+
inStock?: boolean | undefined;
|
|
1602
|
+
stockQuantity?: number | undefined;
|
|
1603
|
+
applicationMethod?: string | undefined;
|
|
1495
1604
|
}[] | undefined;
|
|
1496
|
-
applicationMethod?: string | undefined;
|
|
1497
1605
|
expectedOutcome?: string | undefined;
|
|
1498
1606
|
preventiveMeasures?: string[] | undefined;
|
|
1499
1607
|
estimatedTime?: string | undefined;
|
|
@@ -1509,6 +1617,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1509
1617
|
details: string;
|
|
1510
1618
|
timing: string;
|
|
1511
1619
|
confidence?: number | undefined;
|
|
1620
|
+
applicationMethod?: string | undefined;
|
|
1512
1621
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1513
1622
|
materials?: {
|
|
1514
1623
|
name: string;
|
|
@@ -1518,8 +1627,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1518
1627
|
totalCost?: number | undefined;
|
|
1519
1628
|
costPerUnit?: number | undefined;
|
|
1520
1629
|
availability?: string | undefined;
|
|
1630
|
+
inStock?: boolean | undefined;
|
|
1631
|
+
stockQuantity?: number | undefined;
|
|
1632
|
+
applicationMethod?: string | undefined;
|
|
1521
1633
|
}[] | undefined;
|
|
1522
|
-
applicationMethod?: string | undefined;
|
|
1523
1634
|
expectedOutcome?: string | undefined;
|
|
1524
1635
|
preventiveMeasures?: string[] | undefined;
|
|
1525
1636
|
estimatedTime?: string | undefined;
|
|
@@ -1538,6 +1649,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1538
1649
|
details: string;
|
|
1539
1650
|
timing: string;
|
|
1540
1651
|
confidence?: number | undefined;
|
|
1652
|
+
applicationMethod?: string | undefined;
|
|
1541
1653
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1542
1654
|
materials?: {
|
|
1543
1655
|
name: string;
|
|
@@ -1547,8 +1659,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1547
1659
|
totalCost?: number | undefined;
|
|
1548
1660
|
costPerUnit?: number | undefined;
|
|
1549
1661
|
availability?: string | undefined;
|
|
1662
|
+
inStock?: boolean | undefined;
|
|
1663
|
+
stockQuantity?: number | undefined;
|
|
1664
|
+
applicationMethod?: string | undefined;
|
|
1550
1665
|
}[] | undefined;
|
|
1551
|
-
applicationMethod?: string | undefined;
|
|
1552
1666
|
expectedOutcome?: string | undefined;
|
|
1553
1667
|
preventiveMeasures?: string[] | undefined;
|
|
1554
1668
|
estimatedTime?: string | undefined;
|
|
@@ -1573,6 +1687,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1573
1687
|
details: string;
|
|
1574
1688
|
timing: string;
|
|
1575
1689
|
confidence?: number | undefined;
|
|
1690
|
+
applicationMethod?: string | undefined;
|
|
1576
1691
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1577
1692
|
materials?: {
|
|
1578
1693
|
name: string;
|
|
@@ -1582,8 +1697,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1582
1697
|
totalCost?: number | undefined;
|
|
1583
1698
|
costPerUnit?: number | undefined;
|
|
1584
1699
|
availability?: string | undefined;
|
|
1700
|
+
inStock?: boolean | undefined;
|
|
1701
|
+
stockQuantity?: number | undefined;
|
|
1702
|
+
applicationMethod?: string | undefined;
|
|
1585
1703
|
}[] | undefined;
|
|
1586
|
-
applicationMethod?: string | undefined;
|
|
1587
1704
|
expectedOutcome?: string | undefined;
|
|
1588
1705
|
preventiveMeasures?: string[] | undefined;
|
|
1589
1706
|
estimatedTime?: string | undefined;
|
|
@@ -1624,6 +1741,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1624
1741
|
details: string;
|
|
1625
1742
|
timing: string;
|
|
1626
1743
|
confidence?: number | undefined;
|
|
1744
|
+
applicationMethod?: string | undefined;
|
|
1627
1745
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1628
1746
|
materials?: {
|
|
1629
1747
|
name: string;
|
|
@@ -1633,8 +1751,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1633
1751
|
totalCost?: number | undefined;
|
|
1634
1752
|
costPerUnit?: number | undefined;
|
|
1635
1753
|
availability?: string | undefined;
|
|
1754
|
+
inStock?: boolean | undefined;
|
|
1755
|
+
stockQuantity?: number | undefined;
|
|
1756
|
+
applicationMethod?: string | undefined;
|
|
1636
1757
|
}[] | undefined;
|
|
1637
|
-
applicationMethod?: string | undefined;
|
|
1638
1758
|
expectedOutcome?: string | undefined;
|
|
1639
1759
|
preventiveMeasures?: string[] | undefined;
|
|
1640
1760
|
estimatedTime?: string | undefined;
|
|
@@ -1672,6 +1792,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1672
1792
|
details: string;
|
|
1673
1793
|
timing: string;
|
|
1674
1794
|
confidence?: number | undefined;
|
|
1795
|
+
applicationMethod?: string | undefined;
|
|
1675
1796
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1676
1797
|
materials?: {
|
|
1677
1798
|
name: string;
|
|
@@ -1681,8 +1802,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1681
1802
|
totalCost?: number | undefined;
|
|
1682
1803
|
costPerUnit?: number | undefined;
|
|
1683
1804
|
availability?: string | undefined;
|
|
1805
|
+
inStock?: boolean | undefined;
|
|
1806
|
+
stockQuantity?: number | undefined;
|
|
1807
|
+
applicationMethod?: string | undefined;
|
|
1684
1808
|
}[] | undefined;
|
|
1685
|
-
applicationMethod?: string | undefined;
|
|
1686
1809
|
expectedOutcome?: string | undefined;
|
|
1687
1810
|
preventiveMeasures?: string[] | undefined;
|
|
1688
1811
|
estimatedTime?: string | undefined;
|
|
@@ -1727,6 +1850,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1727
1850
|
details: string;
|
|
1728
1851
|
timing: string;
|
|
1729
1852
|
confidence?: number | undefined;
|
|
1853
|
+
applicationMethod?: string | undefined;
|
|
1730
1854
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1731
1855
|
materials?: {
|
|
1732
1856
|
name: string;
|
|
@@ -1736,8 +1860,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1736
1860
|
totalCost?: number | undefined;
|
|
1737
1861
|
costPerUnit?: number | undefined;
|
|
1738
1862
|
availability?: string | undefined;
|
|
1863
|
+
inStock?: boolean | undefined;
|
|
1864
|
+
stockQuantity?: number | undefined;
|
|
1865
|
+
applicationMethod?: string | undefined;
|
|
1739
1866
|
}[] | undefined;
|
|
1740
|
-
applicationMethod?: string | undefined;
|
|
1741
1867
|
expectedOutcome?: string | undefined;
|
|
1742
1868
|
preventiveMeasures?: string[] | undefined;
|
|
1743
1869
|
estimatedTime?: string | undefined;
|
|
@@ -1782,6 +1908,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1782
1908
|
details: string;
|
|
1783
1909
|
timing: string;
|
|
1784
1910
|
confidence?: number | undefined;
|
|
1911
|
+
applicationMethod?: string | undefined;
|
|
1785
1912
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1786
1913
|
materials?: {
|
|
1787
1914
|
name: string;
|
|
@@ -1791,8 +1918,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1791
1918
|
totalCost?: number | undefined;
|
|
1792
1919
|
costPerUnit?: number | undefined;
|
|
1793
1920
|
availability?: string | undefined;
|
|
1921
|
+
inStock?: boolean | undefined;
|
|
1922
|
+
stockQuantity?: number | undefined;
|
|
1923
|
+
applicationMethod?: string | undefined;
|
|
1794
1924
|
}[] | undefined;
|
|
1795
|
-
applicationMethod?: string | undefined;
|
|
1796
1925
|
expectedOutcome?: string | undefined;
|
|
1797
1926
|
preventiveMeasures?: string[] | undefined;
|
|
1798
1927
|
estimatedTime?: string | undefined;
|
|
@@ -1863,6 +1992,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1863
1992
|
details: string;
|
|
1864
1993
|
timing: string;
|
|
1865
1994
|
confidence?: number | undefined;
|
|
1995
|
+
applicationMethod?: string | undefined;
|
|
1866
1996
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1867
1997
|
materials?: {
|
|
1868
1998
|
name: string;
|
|
@@ -1872,8 +2002,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1872
2002
|
totalCost?: number | undefined;
|
|
1873
2003
|
costPerUnit?: number | undefined;
|
|
1874
2004
|
availability?: string | undefined;
|
|
2005
|
+
inStock?: boolean | undefined;
|
|
2006
|
+
stockQuantity?: number | undefined;
|
|
2007
|
+
applicationMethod?: string | undefined;
|
|
1875
2008
|
}[] | undefined;
|
|
1876
|
-
applicationMethod?: string | undefined;
|
|
1877
2009
|
expectedOutcome?: string | undefined;
|
|
1878
2010
|
preventiveMeasures?: string[] | undefined;
|
|
1879
2011
|
estimatedTime?: string | undefined;
|
|
@@ -1930,6 +2062,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
1930
2062
|
details: string;
|
|
1931
2063
|
timing: string;
|
|
1932
2064
|
confidence?: number | undefined;
|
|
2065
|
+
applicationMethod?: string | undefined;
|
|
1933
2066
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1934
2067
|
materials?: {
|
|
1935
2068
|
name: string;
|
|
@@ -1939,8 +2072,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
1939
2072
|
totalCost?: number | undefined;
|
|
1940
2073
|
costPerUnit?: number | undefined;
|
|
1941
2074
|
availability?: string | undefined;
|
|
2075
|
+
inStock?: boolean | undefined;
|
|
2076
|
+
stockQuantity?: number | undefined;
|
|
2077
|
+
applicationMethod?: string | undefined;
|
|
1942
2078
|
}[] | undefined;
|
|
1943
|
-
applicationMethod?: string | undefined;
|
|
1944
2079
|
expectedOutcome?: string | undefined;
|
|
1945
2080
|
preventiveMeasures?: string[] | undefined;
|
|
1946
2081
|
estimatedTime?: string | undefined;
|
|
@@ -2073,6 +2208,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
2073
2208
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
2074
2209
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
2075
2210
|
availability: z.ZodOptional<z.ZodString>;
|
|
2211
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
2212
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
2213
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
2076
2214
|
}, "strip", z.ZodTypeAny, {
|
|
2077
2215
|
name: string;
|
|
2078
2216
|
quantity: number;
|
|
@@ -2081,6 +2219,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
2081
2219
|
totalCost?: number | undefined;
|
|
2082
2220
|
costPerUnit?: number | undefined;
|
|
2083
2221
|
availability?: string | undefined;
|
|
2222
|
+
inStock?: boolean | undefined;
|
|
2223
|
+
stockQuantity?: number | undefined;
|
|
2224
|
+
applicationMethod?: string | undefined;
|
|
2084
2225
|
}, {
|
|
2085
2226
|
name: string;
|
|
2086
2227
|
quantity: number;
|
|
@@ -2089,6 +2230,9 @@ export declare const agentWorkflowsRouter: {
|
|
|
2089
2230
|
totalCost?: number | undefined;
|
|
2090
2231
|
costPerUnit?: number | undefined;
|
|
2091
2232
|
availability?: string | undefined;
|
|
2233
|
+
inStock?: boolean | undefined;
|
|
2234
|
+
stockQuantity?: number | undefined;
|
|
2235
|
+
applicationMethod?: string | undefined;
|
|
2092
2236
|
}>, "many">>;
|
|
2093
2237
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
2094
2238
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -2101,6 +2245,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2101
2245
|
details: string;
|
|
2102
2246
|
timing: string;
|
|
2103
2247
|
confidence?: number | undefined;
|
|
2248
|
+
applicationMethod?: string | undefined;
|
|
2104
2249
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2105
2250
|
materials?: {
|
|
2106
2251
|
name: string;
|
|
@@ -2110,8 +2255,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2110
2255
|
totalCost?: number | undefined;
|
|
2111
2256
|
costPerUnit?: number | undefined;
|
|
2112
2257
|
availability?: string | undefined;
|
|
2258
|
+
inStock?: boolean | undefined;
|
|
2259
|
+
stockQuantity?: number | undefined;
|
|
2260
|
+
applicationMethod?: string | undefined;
|
|
2113
2261
|
}[] | undefined;
|
|
2114
|
-
applicationMethod?: string | undefined;
|
|
2115
2262
|
expectedOutcome?: string | undefined;
|
|
2116
2263
|
preventiveMeasures?: string[] | undefined;
|
|
2117
2264
|
estimatedTime?: string | undefined;
|
|
@@ -2122,6 +2269,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2122
2269
|
details: string;
|
|
2123
2270
|
timing: string;
|
|
2124
2271
|
confidence?: number | undefined;
|
|
2272
|
+
applicationMethod?: string | undefined;
|
|
2125
2273
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2126
2274
|
materials?: {
|
|
2127
2275
|
name: string;
|
|
@@ -2131,8 +2279,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2131
2279
|
totalCost?: number | undefined;
|
|
2132
2280
|
costPerUnit?: number | undefined;
|
|
2133
2281
|
availability?: string | undefined;
|
|
2282
|
+
inStock?: boolean | undefined;
|
|
2283
|
+
stockQuantity?: number | undefined;
|
|
2284
|
+
applicationMethod?: string | undefined;
|
|
2134
2285
|
}[] | undefined;
|
|
2135
|
-
applicationMethod?: string | undefined;
|
|
2136
2286
|
expectedOutcome?: string | undefined;
|
|
2137
2287
|
preventiveMeasures?: string[] | undefined;
|
|
2138
2288
|
estimatedTime?: string | undefined;
|
|
@@ -2149,6 +2299,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2149
2299
|
details: string;
|
|
2150
2300
|
timing: string;
|
|
2151
2301
|
confidence?: number | undefined;
|
|
2302
|
+
applicationMethod?: string | undefined;
|
|
2152
2303
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2153
2304
|
materials?: {
|
|
2154
2305
|
name: string;
|
|
@@ -2158,8 +2309,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2158
2309
|
totalCost?: number | undefined;
|
|
2159
2310
|
costPerUnit?: number | undefined;
|
|
2160
2311
|
availability?: string | undefined;
|
|
2312
|
+
inStock?: boolean | undefined;
|
|
2313
|
+
stockQuantity?: number | undefined;
|
|
2314
|
+
applicationMethod?: string | undefined;
|
|
2161
2315
|
}[] | undefined;
|
|
2162
|
-
applicationMethod?: string | undefined;
|
|
2163
2316
|
expectedOutcome?: string | undefined;
|
|
2164
2317
|
preventiveMeasures?: string[] | undefined;
|
|
2165
2318
|
estimatedTime?: string | undefined;
|
|
@@ -2175,6 +2328,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2175
2328
|
details: string;
|
|
2176
2329
|
timing: string;
|
|
2177
2330
|
confidence?: number | undefined;
|
|
2331
|
+
applicationMethod?: string | undefined;
|
|
2178
2332
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2179
2333
|
materials?: {
|
|
2180
2334
|
name: string;
|
|
@@ -2184,8 +2338,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2184
2338
|
totalCost?: number | undefined;
|
|
2185
2339
|
costPerUnit?: number | undefined;
|
|
2186
2340
|
availability?: string | undefined;
|
|
2341
|
+
inStock?: boolean | undefined;
|
|
2342
|
+
stockQuantity?: number | undefined;
|
|
2343
|
+
applicationMethod?: string | undefined;
|
|
2187
2344
|
}[] | undefined;
|
|
2188
|
-
applicationMethod?: string | undefined;
|
|
2189
2345
|
expectedOutcome?: string | undefined;
|
|
2190
2346
|
preventiveMeasures?: string[] | undefined;
|
|
2191
2347
|
estimatedTime?: string | undefined;
|
|
@@ -2204,6 +2360,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2204
2360
|
details: string;
|
|
2205
2361
|
timing: string;
|
|
2206
2362
|
confidence?: number | undefined;
|
|
2363
|
+
applicationMethod?: string | undefined;
|
|
2207
2364
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2208
2365
|
materials?: {
|
|
2209
2366
|
name: string;
|
|
@@ -2213,8 +2370,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2213
2370
|
totalCost?: number | undefined;
|
|
2214
2371
|
costPerUnit?: number | undefined;
|
|
2215
2372
|
availability?: string | undefined;
|
|
2373
|
+
inStock?: boolean | undefined;
|
|
2374
|
+
stockQuantity?: number | undefined;
|
|
2375
|
+
applicationMethod?: string | undefined;
|
|
2216
2376
|
}[] | undefined;
|
|
2217
|
-
applicationMethod?: string | undefined;
|
|
2218
2377
|
expectedOutcome?: string | undefined;
|
|
2219
2378
|
preventiveMeasures?: string[] | undefined;
|
|
2220
2379
|
estimatedTime?: string | undefined;
|
|
@@ -2239,6 +2398,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2239
2398
|
details: string;
|
|
2240
2399
|
timing: string;
|
|
2241
2400
|
confidence?: number | undefined;
|
|
2401
|
+
applicationMethod?: string | undefined;
|
|
2242
2402
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2243
2403
|
materials?: {
|
|
2244
2404
|
name: string;
|
|
@@ -2248,8 +2408,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2248
2408
|
totalCost?: number | undefined;
|
|
2249
2409
|
costPerUnit?: number | undefined;
|
|
2250
2410
|
availability?: string | undefined;
|
|
2411
|
+
inStock?: boolean | undefined;
|
|
2412
|
+
stockQuantity?: number | undefined;
|
|
2413
|
+
applicationMethod?: string | undefined;
|
|
2251
2414
|
}[] | undefined;
|
|
2252
|
-
applicationMethod?: string | undefined;
|
|
2253
2415
|
expectedOutcome?: string | undefined;
|
|
2254
2416
|
preventiveMeasures?: string[] | undefined;
|
|
2255
2417
|
estimatedTime?: string | undefined;
|
|
@@ -2290,6 +2452,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2290
2452
|
details: string;
|
|
2291
2453
|
timing: string;
|
|
2292
2454
|
confidence?: number | undefined;
|
|
2455
|
+
applicationMethod?: string | undefined;
|
|
2293
2456
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2294
2457
|
materials?: {
|
|
2295
2458
|
name: string;
|
|
@@ -2299,8 +2462,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2299
2462
|
totalCost?: number | undefined;
|
|
2300
2463
|
costPerUnit?: number | undefined;
|
|
2301
2464
|
availability?: string | undefined;
|
|
2465
|
+
inStock?: boolean | undefined;
|
|
2466
|
+
stockQuantity?: number | undefined;
|
|
2467
|
+
applicationMethod?: string | undefined;
|
|
2302
2468
|
}[] | undefined;
|
|
2303
|
-
applicationMethod?: string | undefined;
|
|
2304
2469
|
expectedOutcome?: string | undefined;
|
|
2305
2470
|
preventiveMeasures?: string[] | undefined;
|
|
2306
2471
|
estimatedTime?: string | undefined;
|
|
@@ -2338,6 +2503,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2338
2503
|
details: string;
|
|
2339
2504
|
timing: string;
|
|
2340
2505
|
confidence?: number | undefined;
|
|
2506
|
+
applicationMethod?: string | undefined;
|
|
2341
2507
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2342
2508
|
materials?: {
|
|
2343
2509
|
name: string;
|
|
@@ -2347,8 +2513,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2347
2513
|
totalCost?: number | undefined;
|
|
2348
2514
|
costPerUnit?: number | undefined;
|
|
2349
2515
|
availability?: string | undefined;
|
|
2516
|
+
inStock?: boolean | undefined;
|
|
2517
|
+
stockQuantity?: number | undefined;
|
|
2518
|
+
applicationMethod?: string | undefined;
|
|
2350
2519
|
}[] | undefined;
|
|
2351
|
-
applicationMethod?: string | undefined;
|
|
2352
2520
|
expectedOutcome?: string | undefined;
|
|
2353
2521
|
preventiveMeasures?: string[] | undefined;
|
|
2354
2522
|
estimatedTime?: string | undefined;
|
|
@@ -2393,6 +2561,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2393
2561
|
details: string;
|
|
2394
2562
|
timing: string;
|
|
2395
2563
|
confidence?: number | undefined;
|
|
2564
|
+
applicationMethod?: string | undefined;
|
|
2396
2565
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2397
2566
|
materials?: {
|
|
2398
2567
|
name: string;
|
|
@@ -2402,8 +2571,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2402
2571
|
totalCost?: number | undefined;
|
|
2403
2572
|
costPerUnit?: number | undefined;
|
|
2404
2573
|
availability?: string | undefined;
|
|
2574
|
+
inStock?: boolean | undefined;
|
|
2575
|
+
stockQuantity?: number | undefined;
|
|
2576
|
+
applicationMethod?: string | undefined;
|
|
2405
2577
|
}[] | undefined;
|
|
2406
|
-
applicationMethod?: string | undefined;
|
|
2407
2578
|
expectedOutcome?: string | undefined;
|
|
2408
2579
|
preventiveMeasures?: string[] | undefined;
|
|
2409
2580
|
estimatedTime?: string | undefined;
|
|
@@ -2448,6 +2619,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2448
2619
|
details: string;
|
|
2449
2620
|
timing: string;
|
|
2450
2621
|
confidence?: number | undefined;
|
|
2622
|
+
applicationMethod?: string | undefined;
|
|
2451
2623
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2452
2624
|
materials?: {
|
|
2453
2625
|
name: string;
|
|
@@ -2457,8 +2629,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2457
2629
|
totalCost?: number | undefined;
|
|
2458
2630
|
costPerUnit?: number | undefined;
|
|
2459
2631
|
availability?: string | undefined;
|
|
2632
|
+
inStock?: boolean | undefined;
|
|
2633
|
+
stockQuantity?: number | undefined;
|
|
2634
|
+
applicationMethod?: string | undefined;
|
|
2460
2635
|
}[] | undefined;
|
|
2461
|
-
applicationMethod?: string | undefined;
|
|
2462
2636
|
expectedOutcome?: string | undefined;
|
|
2463
2637
|
preventiveMeasures?: string[] | undefined;
|
|
2464
2638
|
estimatedTime?: string | undefined;
|
|
@@ -2529,6 +2703,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2529
2703
|
details: string;
|
|
2530
2704
|
timing: string;
|
|
2531
2705
|
confidence?: number | undefined;
|
|
2706
|
+
applicationMethod?: string | undefined;
|
|
2532
2707
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2533
2708
|
materials?: {
|
|
2534
2709
|
name: string;
|
|
@@ -2538,8 +2713,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2538
2713
|
totalCost?: number | undefined;
|
|
2539
2714
|
costPerUnit?: number | undefined;
|
|
2540
2715
|
availability?: string | undefined;
|
|
2716
|
+
inStock?: boolean | undefined;
|
|
2717
|
+
stockQuantity?: number | undefined;
|
|
2718
|
+
applicationMethod?: string | undefined;
|
|
2541
2719
|
}[] | undefined;
|
|
2542
|
-
applicationMethod?: string | undefined;
|
|
2543
2720
|
expectedOutcome?: string | undefined;
|
|
2544
2721
|
preventiveMeasures?: string[] | undefined;
|
|
2545
2722
|
estimatedTime?: string | undefined;
|
|
@@ -2596,6 +2773,7 @@ export declare const agentWorkflowsRouter: {
|
|
|
2596
2773
|
details: string;
|
|
2597
2774
|
timing: string;
|
|
2598
2775
|
confidence?: number | undefined;
|
|
2776
|
+
applicationMethod?: string | undefined;
|
|
2599
2777
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2600
2778
|
materials?: {
|
|
2601
2779
|
name: string;
|
|
@@ -2605,8 +2783,10 @@ export declare const agentWorkflowsRouter: {
|
|
|
2605
2783
|
totalCost?: number | undefined;
|
|
2606
2784
|
costPerUnit?: number | undefined;
|
|
2607
2785
|
availability?: string | undefined;
|
|
2786
|
+
inStock?: boolean | undefined;
|
|
2787
|
+
stockQuantity?: number | undefined;
|
|
2788
|
+
applicationMethod?: string | undefined;
|
|
2608
2789
|
}[] | undefined;
|
|
2609
|
-
applicationMethod?: string | undefined;
|
|
2610
2790
|
expectedOutcome?: string | undefined;
|
|
2611
2791
|
preventiveMeasures?: string[] | undefined;
|
|
2612
2792
|
estimatedTime?: string | undefined;
|