@deepintel-ltd/farmpro-contracts 1.18.0 → 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/accounting.routes.d.ts +295 -0
- package/dist/routes/accounting.routes.d.ts.map +1 -1
- package/dist/routes/accounting.routes.js +13 -1
- 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/accounting.schemas.d.ts +100 -0
- package/dist/schemas/accounting.schemas.d.ts.map +1 -1
- package/dist/schemas/accounting.schemas.js +3 -0
- 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
|
@@ -25,6 +25,9 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
25
25
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
26
26
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
27
27
|
availability: z.ZodOptional<z.ZodString>;
|
|
28
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
30
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
28
31
|
}, "strip", z.ZodTypeAny, {
|
|
29
32
|
name: string;
|
|
30
33
|
quantity: number;
|
|
@@ -33,6 +36,9 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
33
36
|
totalCost?: number | undefined;
|
|
34
37
|
costPerUnit?: number | undefined;
|
|
35
38
|
availability?: string | undefined;
|
|
39
|
+
inStock?: boolean | undefined;
|
|
40
|
+
stockQuantity?: number | undefined;
|
|
41
|
+
applicationMethod?: string | undefined;
|
|
36
42
|
}, {
|
|
37
43
|
name: string;
|
|
38
44
|
quantity: number;
|
|
@@ -41,6 +47,9 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
41
47
|
totalCost?: number | undefined;
|
|
42
48
|
costPerUnit?: number | undefined;
|
|
43
49
|
availability?: string | undefined;
|
|
50
|
+
inStock?: boolean | undefined;
|
|
51
|
+
stockQuantity?: number | undefined;
|
|
52
|
+
applicationMethod?: string | undefined;
|
|
44
53
|
}>, "many">>;
|
|
45
54
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
46
55
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -53,6 +62,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
53
62
|
details: string;
|
|
54
63
|
timing: string;
|
|
55
64
|
confidence?: number | undefined;
|
|
65
|
+
applicationMethod?: string | undefined;
|
|
56
66
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
57
67
|
materials?: {
|
|
58
68
|
name: string;
|
|
@@ -62,8 +72,10 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
62
72
|
totalCost?: number | undefined;
|
|
63
73
|
costPerUnit?: number | undefined;
|
|
64
74
|
availability?: string | undefined;
|
|
75
|
+
inStock?: boolean | undefined;
|
|
76
|
+
stockQuantity?: number | undefined;
|
|
77
|
+
applicationMethod?: string | undefined;
|
|
65
78
|
}[] | undefined;
|
|
66
|
-
applicationMethod?: string | undefined;
|
|
67
79
|
expectedOutcome?: string | undefined;
|
|
68
80
|
preventiveMeasures?: string[] | undefined;
|
|
69
81
|
estimatedTime?: string | undefined;
|
|
@@ -74,6 +86,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
74
86
|
details: string;
|
|
75
87
|
timing: string;
|
|
76
88
|
confidence?: number | undefined;
|
|
89
|
+
applicationMethod?: string | undefined;
|
|
77
90
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
78
91
|
materials?: {
|
|
79
92
|
name: string;
|
|
@@ -83,8 +96,10 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
83
96
|
totalCost?: number | undefined;
|
|
84
97
|
costPerUnit?: number | undefined;
|
|
85
98
|
availability?: string | undefined;
|
|
99
|
+
inStock?: boolean | undefined;
|
|
100
|
+
stockQuantity?: number | undefined;
|
|
101
|
+
applicationMethod?: string | undefined;
|
|
86
102
|
}[] | undefined;
|
|
87
|
-
applicationMethod?: string | undefined;
|
|
88
103
|
expectedOutcome?: string | undefined;
|
|
89
104
|
preventiveMeasures?: string[] | undefined;
|
|
90
105
|
estimatedTime?: string | undefined;
|
|
@@ -101,6 +116,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
101
116
|
details: string;
|
|
102
117
|
timing: string;
|
|
103
118
|
confidence?: number | undefined;
|
|
119
|
+
applicationMethod?: string | undefined;
|
|
104
120
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
105
121
|
materials?: {
|
|
106
122
|
name: string;
|
|
@@ -110,8 +126,10 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
110
126
|
totalCost?: number | undefined;
|
|
111
127
|
costPerUnit?: number | undefined;
|
|
112
128
|
availability?: string | undefined;
|
|
129
|
+
inStock?: boolean | undefined;
|
|
130
|
+
stockQuantity?: number | undefined;
|
|
131
|
+
applicationMethod?: string | undefined;
|
|
113
132
|
}[] | undefined;
|
|
114
|
-
applicationMethod?: string | undefined;
|
|
115
133
|
expectedOutcome?: string | undefined;
|
|
116
134
|
preventiveMeasures?: string[] | undefined;
|
|
117
135
|
estimatedTime?: string | undefined;
|
|
@@ -127,6 +145,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
127
145
|
details: string;
|
|
128
146
|
timing: string;
|
|
129
147
|
confidence?: number | undefined;
|
|
148
|
+
applicationMethod?: string | undefined;
|
|
130
149
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
131
150
|
materials?: {
|
|
132
151
|
name: string;
|
|
@@ -136,8 +155,10 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
136
155
|
totalCost?: number | undefined;
|
|
137
156
|
costPerUnit?: number | undefined;
|
|
138
157
|
availability?: string | undefined;
|
|
158
|
+
inStock?: boolean | undefined;
|
|
159
|
+
stockQuantity?: number | undefined;
|
|
160
|
+
applicationMethod?: string | undefined;
|
|
139
161
|
}[] | undefined;
|
|
140
|
-
applicationMethod?: string | undefined;
|
|
141
162
|
expectedOutcome?: string | undefined;
|
|
142
163
|
preventiveMeasures?: string[] | undefined;
|
|
143
164
|
estimatedTime?: string | undefined;
|
|
@@ -179,6 +200,9 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
179
200
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
180
201
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
181
202
|
availability: z.ZodOptional<z.ZodString>;
|
|
203
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
204
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
205
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
182
206
|
}, "strip", z.ZodTypeAny, {
|
|
183
207
|
name: string;
|
|
184
208
|
quantity: number;
|
|
@@ -187,6 +211,9 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
187
211
|
totalCost?: number | undefined;
|
|
188
212
|
costPerUnit?: number | undefined;
|
|
189
213
|
availability?: string | undefined;
|
|
214
|
+
inStock?: boolean | undefined;
|
|
215
|
+
stockQuantity?: number | undefined;
|
|
216
|
+
applicationMethod?: string | undefined;
|
|
190
217
|
}, {
|
|
191
218
|
name: string;
|
|
192
219
|
quantity: number;
|
|
@@ -195,6 +222,9 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
195
222
|
totalCost?: number | undefined;
|
|
196
223
|
costPerUnit?: number | undefined;
|
|
197
224
|
availability?: string | undefined;
|
|
225
|
+
inStock?: boolean | undefined;
|
|
226
|
+
stockQuantity?: number | undefined;
|
|
227
|
+
applicationMethod?: string | undefined;
|
|
198
228
|
}>, "many">>;
|
|
199
229
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
200
230
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -207,6 +237,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
207
237
|
details: string;
|
|
208
238
|
timing: string;
|
|
209
239
|
confidence?: number | undefined;
|
|
240
|
+
applicationMethod?: string | undefined;
|
|
210
241
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
211
242
|
materials?: {
|
|
212
243
|
name: string;
|
|
@@ -216,8 +247,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
216
247
|
totalCost?: number | undefined;
|
|
217
248
|
costPerUnit?: number | undefined;
|
|
218
249
|
availability?: string | undefined;
|
|
250
|
+
inStock?: boolean | undefined;
|
|
251
|
+
stockQuantity?: number | undefined;
|
|
252
|
+
applicationMethod?: string | undefined;
|
|
219
253
|
}[] | undefined;
|
|
220
|
-
applicationMethod?: string | undefined;
|
|
221
254
|
expectedOutcome?: string | undefined;
|
|
222
255
|
preventiveMeasures?: string[] | undefined;
|
|
223
256
|
estimatedTime?: string | undefined;
|
|
@@ -228,6 +261,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
228
261
|
details: string;
|
|
229
262
|
timing: string;
|
|
230
263
|
confidence?: number | undefined;
|
|
264
|
+
applicationMethod?: string | undefined;
|
|
231
265
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
232
266
|
materials?: {
|
|
233
267
|
name: string;
|
|
@@ -237,8 +271,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
237
271
|
totalCost?: number | undefined;
|
|
238
272
|
costPerUnit?: number | undefined;
|
|
239
273
|
availability?: string | undefined;
|
|
274
|
+
inStock?: boolean | undefined;
|
|
275
|
+
stockQuantity?: number | undefined;
|
|
276
|
+
applicationMethod?: string | undefined;
|
|
240
277
|
}[] | undefined;
|
|
241
|
-
applicationMethod?: string | undefined;
|
|
242
278
|
expectedOutcome?: string | undefined;
|
|
243
279
|
preventiveMeasures?: string[] | undefined;
|
|
244
280
|
estimatedTime?: string | undefined;
|
|
@@ -255,6 +291,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
255
291
|
details: string;
|
|
256
292
|
timing: string;
|
|
257
293
|
confidence?: number | undefined;
|
|
294
|
+
applicationMethod?: string | undefined;
|
|
258
295
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
259
296
|
materials?: {
|
|
260
297
|
name: string;
|
|
@@ -264,8 +301,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
264
301
|
totalCost?: number | undefined;
|
|
265
302
|
costPerUnit?: number | undefined;
|
|
266
303
|
availability?: string | undefined;
|
|
304
|
+
inStock?: boolean | undefined;
|
|
305
|
+
stockQuantity?: number | undefined;
|
|
306
|
+
applicationMethod?: string | undefined;
|
|
267
307
|
}[] | undefined;
|
|
268
|
-
applicationMethod?: string | undefined;
|
|
269
308
|
expectedOutcome?: string | undefined;
|
|
270
309
|
preventiveMeasures?: string[] | undefined;
|
|
271
310
|
estimatedTime?: string | undefined;
|
|
@@ -281,6 +320,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
281
320
|
details: string;
|
|
282
321
|
timing: string;
|
|
283
322
|
confidence?: number | undefined;
|
|
323
|
+
applicationMethod?: string | undefined;
|
|
284
324
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
285
325
|
materials?: {
|
|
286
326
|
name: string;
|
|
@@ -290,8 +330,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
290
330
|
totalCost?: number | undefined;
|
|
291
331
|
costPerUnit?: number | undefined;
|
|
292
332
|
availability?: string | undefined;
|
|
333
|
+
inStock?: boolean | undefined;
|
|
334
|
+
stockQuantity?: number | undefined;
|
|
335
|
+
applicationMethod?: string | undefined;
|
|
293
336
|
}[] | undefined;
|
|
294
|
-
applicationMethod?: string | undefined;
|
|
295
337
|
expectedOutcome?: string | undefined;
|
|
296
338
|
preventiveMeasures?: string[] | undefined;
|
|
297
339
|
estimatedTime?: string | undefined;
|
|
@@ -310,6 +352,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
310
352
|
details: string;
|
|
311
353
|
timing: string;
|
|
312
354
|
confidence?: number | undefined;
|
|
355
|
+
applicationMethod?: string | undefined;
|
|
313
356
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
314
357
|
materials?: {
|
|
315
358
|
name: string;
|
|
@@ -319,8 +362,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
319
362
|
totalCost?: number | undefined;
|
|
320
363
|
costPerUnit?: number | undefined;
|
|
321
364
|
availability?: string | undefined;
|
|
365
|
+
inStock?: boolean | undefined;
|
|
366
|
+
stockQuantity?: number | undefined;
|
|
367
|
+
applicationMethod?: string | undefined;
|
|
322
368
|
}[] | undefined;
|
|
323
|
-
applicationMethod?: string | undefined;
|
|
324
369
|
expectedOutcome?: string | undefined;
|
|
325
370
|
preventiveMeasures?: string[] | undefined;
|
|
326
371
|
estimatedTime?: string | undefined;
|
|
@@ -345,6 +390,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
345
390
|
details: string;
|
|
346
391
|
timing: string;
|
|
347
392
|
confidence?: number | undefined;
|
|
393
|
+
applicationMethod?: string | undefined;
|
|
348
394
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
349
395
|
materials?: {
|
|
350
396
|
name: string;
|
|
@@ -354,8 +400,10 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
354
400
|
totalCost?: number | undefined;
|
|
355
401
|
costPerUnit?: number | undefined;
|
|
356
402
|
availability?: string | undefined;
|
|
403
|
+
inStock?: boolean | undefined;
|
|
404
|
+
stockQuantity?: number | undefined;
|
|
405
|
+
applicationMethod?: string | undefined;
|
|
357
406
|
}[] | undefined;
|
|
358
|
-
applicationMethod?: string | undefined;
|
|
359
407
|
expectedOutcome?: string | undefined;
|
|
360
408
|
preventiveMeasures?: string[] | undefined;
|
|
361
409
|
estimatedTime?: string | undefined;
|
|
@@ -413,6 +461,9 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
413
461
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
414
462
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
415
463
|
availability: z.ZodOptional<z.ZodString>;
|
|
464
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
465
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
466
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
416
467
|
}, "strip", z.ZodTypeAny, {
|
|
417
468
|
name: string;
|
|
418
469
|
quantity: number;
|
|
@@ -421,6 +472,9 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
421
472
|
totalCost?: number | undefined;
|
|
422
473
|
costPerUnit?: number | undefined;
|
|
423
474
|
availability?: string | undefined;
|
|
475
|
+
inStock?: boolean | undefined;
|
|
476
|
+
stockQuantity?: number | undefined;
|
|
477
|
+
applicationMethod?: string | undefined;
|
|
424
478
|
}, {
|
|
425
479
|
name: string;
|
|
426
480
|
quantity: number;
|
|
@@ -429,6 +483,9 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
429
483
|
totalCost?: number | undefined;
|
|
430
484
|
costPerUnit?: number | undefined;
|
|
431
485
|
availability?: string | undefined;
|
|
486
|
+
inStock?: boolean | undefined;
|
|
487
|
+
stockQuantity?: number | undefined;
|
|
488
|
+
applicationMethod?: string | undefined;
|
|
432
489
|
}>, "many">>;
|
|
433
490
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
434
491
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -441,6 +498,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
441
498
|
details: string;
|
|
442
499
|
timing: string;
|
|
443
500
|
confidence?: number | undefined;
|
|
501
|
+
applicationMethod?: string | undefined;
|
|
444
502
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
445
503
|
materials?: {
|
|
446
504
|
name: string;
|
|
@@ -450,8 +508,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
450
508
|
totalCost?: number | undefined;
|
|
451
509
|
costPerUnit?: number | undefined;
|
|
452
510
|
availability?: string | undefined;
|
|
511
|
+
inStock?: boolean | undefined;
|
|
512
|
+
stockQuantity?: number | undefined;
|
|
513
|
+
applicationMethod?: string | undefined;
|
|
453
514
|
}[] | undefined;
|
|
454
|
-
applicationMethod?: string | undefined;
|
|
455
515
|
expectedOutcome?: string | undefined;
|
|
456
516
|
preventiveMeasures?: string[] | undefined;
|
|
457
517
|
estimatedTime?: string | undefined;
|
|
@@ -462,6 +522,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
462
522
|
details: string;
|
|
463
523
|
timing: string;
|
|
464
524
|
confidence?: number | undefined;
|
|
525
|
+
applicationMethod?: string | undefined;
|
|
465
526
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
466
527
|
materials?: {
|
|
467
528
|
name: string;
|
|
@@ -471,8 +532,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
471
532
|
totalCost?: number | undefined;
|
|
472
533
|
costPerUnit?: number | undefined;
|
|
473
534
|
availability?: string | undefined;
|
|
535
|
+
inStock?: boolean | undefined;
|
|
536
|
+
stockQuantity?: number | undefined;
|
|
537
|
+
applicationMethod?: string | undefined;
|
|
474
538
|
}[] | undefined;
|
|
475
|
-
applicationMethod?: string | undefined;
|
|
476
539
|
expectedOutcome?: string | undefined;
|
|
477
540
|
preventiveMeasures?: string[] | undefined;
|
|
478
541
|
estimatedTime?: string | undefined;
|
|
@@ -489,6 +552,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
489
552
|
details: string;
|
|
490
553
|
timing: string;
|
|
491
554
|
confidence?: number | undefined;
|
|
555
|
+
applicationMethod?: string | undefined;
|
|
492
556
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
493
557
|
materials?: {
|
|
494
558
|
name: string;
|
|
@@ -498,8 +562,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
498
562
|
totalCost?: number | undefined;
|
|
499
563
|
costPerUnit?: number | undefined;
|
|
500
564
|
availability?: string | undefined;
|
|
565
|
+
inStock?: boolean | undefined;
|
|
566
|
+
stockQuantity?: number | undefined;
|
|
567
|
+
applicationMethod?: string | undefined;
|
|
501
568
|
}[] | undefined;
|
|
502
|
-
applicationMethod?: string | undefined;
|
|
503
569
|
expectedOutcome?: string | undefined;
|
|
504
570
|
preventiveMeasures?: string[] | undefined;
|
|
505
571
|
estimatedTime?: string | undefined;
|
|
@@ -515,6 +581,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
515
581
|
details: string;
|
|
516
582
|
timing: string;
|
|
517
583
|
confidence?: number | undefined;
|
|
584
|
+
applicationMethod?: string | undefined;
|
|
518
585
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
519
586
|
materials?: {
|
|
520
587
|
name: string;
|
|
@@ -524,8 +591,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
524
591
|
totalCost?: number | undefined;
|
|
525
592
|
costPerUnit?: number | undefined;
|
|
526
593
|
availability?: string | undefined;
|
|
594
|
+
inStock?: boolean | undefined;
|
|
595
|
+
stockQuantity?: number | undefined;
|
|
596
|
+
applicationMethod?: string | undefined;
|
|
527
597
|
}[] | undefined;
|
|
528
|
-
applicationMethod?: string | undefined;
|
|
529
598
|
expectedOutcome?: string | undefined;
|
|
530
599
|
preventiveMeasures?: string[] | undefined;
|
|
531
600
|
estimatedTime?: string | undefined;
|
|
@@ -544,6 +613,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
544
613
|
details: string;
|
|
545
614
|
timing: string;
|
|
546
615
|
confidence?: number | undefined;
|
|
616
|
+
applicationMethod?: string | undefined;
|
|
547
617
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
548
618
|
materials?: {
|
|
549
619
|
name: string;
|
|
@@ -553,8 +623,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
553
623
|
totalCost?: number | undefined;
|
|
554
624
|
costPerUnit?: number | undefined;
|
|
555
625
|
availability?: string | undefined;
|
|
626
|
+
inStock?: boolean | undefined;
|
|
627
|
+
stockQuantity?: number | undefined;
|
|
628
|
+
applicationMethod?: string | undefined;
|
|
556
629
|
}[] | undefined;
|
|
557
|
-
applicationMethod?: string | undefined;
|
|
558
630
|
expectedOutcome?: string | undefined;
|
|
559
631
|
preventiveMeasures?: string[] | undefined;
|
|
560
632
|
estimatedTime?: string | undefined;
|
|
@@ -579,6 +651,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
579
651
|
details: string;
|
|
580
652
|
timing: string;
|
|
581
653
|
confidence?: number | undefined;
|
|
654
|
+
applicationMethod?: string | undefined;
|
|
582
655
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
583
656
|
materials?: {
|
|
584
657
|
name: string;
|
|
@@ -588,8 +661,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
588
661
|
totalCost?: number | undefined;
|
|
589
662
|
costPerUnit?: number | undefined;
|
|
590
663
|
availability?: string | undefined;
|
|
664
|
+
inStock?: boolean | undefined;
|
|
665
|
+
stockQuantity?: number | undefined;
|
|
666
|
+
applicationMethod?: string | undefined;
|
|
591
667
|
}[] | undefined;
|
|
592
|
-
applicationMethod?: string | undefined;
|
|
593
668
|
expectedOutcome?: string | undefined;
|
|
594
669
|
preventiveMeasures?: string[] | undefined;
|
|
595
670
|
estimatedTime?: string | undefined;
|
|
@@ -630,6 +705,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
630
705
|
details: string;
|
|
631
706
|
timing: string;
|
|
632
707
|
confidence?: number | undefined;
|
|
708
|
+
applicationMethod?: string | undefined;
|
|
633
709
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
634
710
|
materials?: {
|
|
635
711
|
name: string;
|
|
@@ -639,8 +715,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
639
715
|
totalCost?: number | undefined;
|
|
640
716
|
costPerUnit?: number | undefined;
|
|
641
717
|
availability?: string | undefined;
|
|
718
|
+
inStock?: boolean | undefined;
|
|
719
|
+
stockQuantity?: number | undefined;
|
|
720
|
+
applicationMethod?: string | undefined;
|
|
642
721
|
}[] | undefined;
|
|
643
|
-
applicationMethod?: string | undefined;
|
|
644
722
|
expectedOutcome?: string | undefined;
|
|
645
723
|
preventiveMeasures?: string[] | undefined;
|
|
646
724
|
estimatedTime?: string | undefined;
|
|
@@ -678,6 +756,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
678
756
|
details: string;
|
|
679
757
|
timing: string;
|
|
680
758
|
confidence?: number | undefined;
|
|
759
|
+
applicationMethod?: string | undefined;
|
|
681
760
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
682
761
|
materials?: {
|
|
683
762
|
name: string;
|
|
@@ -687,8 +766,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
687
766
|
totalCost?: number | undefined;
|
|
688
767
|
costPerUnit?: number | undefined;
|
|
689
768
|
availability?: string | undefined;
|
|
769
|
+
inStock?: boolean | undefined;
|
|
770
|
+
stockQuantity?: number | undefined;
|
|
771
|
+
applicationMethod?: string | undefined;
|
|
690
772
|
}[] | undefined;
|
|
691
|
-
applicationMethod?: string | undefined;
|
|
692
773
|
expectedOutcome?: string | undefined;
|
|
693
774
|
preventiveMeasures?: string[] | undefined;
|
|
694
775
|
estimatedTime?: string | undefined;
|
|
@@ -752,6 +833,9 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
752
833
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
753
834
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
754
835
|
availability: z.ZodOptional<z.ZodString>;
|
|
836
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
837
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
838
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
755
839
|
}, "strip", z.ZodTypeAny, {
|
|
756
840
|
name: string;
|
|
757
841
|
quantity: number;
|
|
@@ -760,6 +844,9 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
760
844
|
totalCost?: number | undefined;
|
|
761
845
|
costPerUnit?: number | undefined;
|
|
762
846
|
availability?: string | undefined;
|
|
847
|
+
inStock?: boolean | undefined;
|
|
848
|
+
stockQuantity?: number | undefined;
|
|
849
|
+
applicationMethod?: string | undefined;
|
|
763
850
|
}, {
|
|
764
851
|
name: string;
|
|
765
852
|
quantity: number;
|
|
@@ -768,6 +855,9 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
768
855
|
totalCost?: number | undefined;
|
|
769
856
|
costPerUnit?: number | undefined;
|
|
770
857
|
availability?: string | undefined;
|
|
858
|
+
inStock?: boolean | undefined;
|
|
859
|
+
stockQuantity?: number | undefined;
|
|
860
|
+
applicationMethod?: string | undefined;
|
|
771
861
|
}>, "many">>;
|
|
772
862
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
773
863
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -780,6 +870,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
780
870
|
details: string;
|
|
781
871
|
timing: string;
|
|
782
872
|
confidence?: number | undefined;
|
|
873
|
+
applicationMethod?: string | undefined;
|
|
783
874
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
784
875
|
materials?: {
|
|
785
876
|
name: string;
|
|
@@ -789,8 +880,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
789
880
|
totalCost?: number | undefined;
|
|
790
881
|
costPerUnit?: number | undefined;
|
|
791
882
|
availability?: string | undefined;
|
|
883
|
+
inStock?: boolean | undefined;
|
|
884
|
+
stockQuantity?: number | undefined;
|
|
885
|
+
applicationMethod?: string | undefined;
|
|
792
886
|
}[] | undefined;
|
|
793
|
-
applicationMethod?: string | undefined;
|
|
794
887
|
expectedOutcome?: string | undefined;
|
|
795
888
|
preventiveMeasures?: string[] | undefined;
|
|
796
889
|
estimatedTime?: string | undefined;
|
|
@@ -801,6 +894,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
801
894
|
details: string;
|
|
802
895
|
timing: string;
|
|
803
896
|
confidence?: number | undefined;
|
|
897
|
+
applicationMethod?: string | undefined;
|
|
804
898
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
805
899
|
materials?: {
|
|
806
900
|
name: string;
|
|
@@ -810,8 +904,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
810
904
|
totalCost?: number | undefined;
|
|
811
905
|
costPerUnit?: number | undefined;
|
|
812
906
|
availability?: string | undefined;
|
|
907
|
+
inStock?: boolean | undefined;
|
|
908
|
+
stockQuantity?: number | undefined;
|
|
909
|
+
applicationMethod?: string | undefined;
|
|
813
910
|
}[] | undefined;
|
|
814
|
-
applicationMethod?: string | undefined;
|
|
815
911
|
expectedOutcome?: string | undefined;
|
|
816
912
|
preventiveMeasures?: string[] | undefined;
|
|
817
913
|
estimatedTime?: string | undefined;
|
|
@@ -828,6 +924,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
828
924
|
details: string;
|
|
829
925
|
timing: string;
|
|
830
926
|
confidence?: number | undefined;
|
|
927
|
+
applicationMethod?: string | undefined;
|
|
831
928
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
832
929
|
materials?: {
|
|
833
930
|
name: string;
|
|
@@ -837,8 +934,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
837
934
|
totalCost?: number | undefined;
|
|
838
935
|
costPerUnit?: number | undefined;
|
|
839
936
|
availability?: string | undefined;
|
|
937
|
+
inStock?: boolean | undefined;
|
|
938
|
+
stockQuantity?: number | undefined;
|
|
939
|
+
applicationMethod?: string | undefined;
|
|
840
940
|
}[] | undefined;
|
|
841
|
-
applicationMethod?: string | undefined;
|
|
842
941
|
expectedOutcome?: string | undefined;
|
|
843
942
|
preventiveMeasures?: string[] | undefined;
|
|
844
943
|
estimatedTime?: string | undefined;
|
|
@@ -854,6 +953,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
854
953
|
details: string;
|
|
855
954
|
timing: string;
|
|
856
955
|
confidence?: number | undefined;
|
|
956
|
+
applicationMethod?: string | undefined;
|
|
857
957
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
858
958
|
materials?: {
|
|
859
959
|
name: string;
|
|
@@ -863,8 +963,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
863
963
|
totalCost?: number | undefined;
|
|
864
964
|
costPerUnit?: number | undefined;
|
|
865
965
|
availability?: string | undefined;
|
|
966
|
+
inStock?: boolean | undefined;
|
|
967
|
+
stockQuantity?: number | undefined;
|
|
968
|
+
applicationMethod?: string | undefined;
|
|
866
969
|
}[] | undefined;
|
|
867
|
-
applicationMethod?: string | undefined;
|
|
868
970
|
expectedOutcome?: string | undefined;
|
|
869
971
|
preventiveMeasures?: string[] | undefined;
|
|
870
972
|
estimatedTime?: string | undefined;
|
|
@@ -883,6 +985,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
883
985
|
details: string;
|
|
884
986
|
timing: string;
|
|
885
987
|
confidence?: number | undefined;
|
|
988
|
+
applicationMethod?: string | undefined;
|
|
886
989
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
887
990
|
materials?: {
|
|
888
991
|
name: string;
|
|
@@ -892,8 +995,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
892
995
|
totalCost?: number | undefined;
|
|
893
996
|
costPerUnit?: number | undefined;
|
|
894
997
|
availability?: string | undefined;
|
|
998
|
+
inStock?: boolean | undefined;
|
|
999
|
+
stockQuantity?: number | undefined;
|
|
1000
|
+
applicationMethod?: string | undefined;
|
|
895
1001
|
}[] | undefined;
|
|
896
|
-
applicationMethod?: string | undefined;
|
|
897
1002
|
expectedOutcome?: string | undefined;
|
|
898
1003
|
preventiveMeasures?: string[] | undefined;
|
|
899
1004
|
estimatedTime?: string | undefined;
|
|
@@ -918,6 +1023,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
918
1023
|
details: string;
|
|
919
1024
|
timing: string;
|
|
920
1025
|
confidence?: number | undefined;
|
|
1026
|
+
applicationMethod?: string | undefined;
|
|
921
1027
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
922
1028
|
materials?: {
|
|
923
1029
|
name: string;
|
|
@@ -927,8 +1033,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
927
1033
|
totalCost?: number | undefined;
|
|
928
1034
|
costPerUnit?: number | undefined;
|
|
929
1035
|
availability?: string | undefined;
|
|
1036
|
+
inStock?: boolean | undefined;
|
|
1037
|
+
stockQuantity?: number | undefined;
|
|
1038
|
+
applicationMethod?: string | undefined;
|
|
930
1039
|
}[] | undefined;
|
|
931
|
-
applicationMethod?: string | undefined;
|
|
932
1040
|
expectedOutcome?: string | undefined;
|
|
933
1041
|
preventiveMeasures?: string[] | undefined;
|
|
934
1042
|
estimatedTime?: string | undefined;
|
|
@@ -969,6 +1077,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
969
1077
|
details: string;
|
|
970
1078
|
timing: string;
|
|
971
1079
|
confidence?: number | undefined;
|
|
1080
|
+
applicationMethod?: string | undefined;
|
|
972
1081
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
973
1082
|
materials?: {
|
|
974
1083
|
name: string;
|
|
@@ -978,8 +1087,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
978
1087
|
totalCost?: number | undefined;
|
|
979
1088
|
costPerUnit?: number | undefined;
|
|
980
1089
|
availability?: string | undefined;
|
|
1090
|
+
inStock?: boolean | undefined;
|
|
1091
|
+
stockQuantity?: number | undefined;
|
|
1092
|
+
applicationMethod?: string | undefined;
|
|
981
1093
|
}[] | undefined;
|
|
982
|
-
applicationMethod?: string | undefined;
|
|
983
1094
|
expectedOutcome?: string | undefined;
|
|
984
1095
|
preventiveMeasures?: string[] | undefined;
|
|
985
1096
|
estimatedTime?: string | undefined;
|
|
@@ -1017,6 +1128,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1017
1128
|
details: string;
|
|
1018
1129
|
timing: string;
|
|
1019
1130
|
confidence?: number | undefined;
|
|
1131
|
+
applicationMethod?: string | undefined;
|
|
1020
1132
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1021
1133
|
materials?: {
|
|
1022
1134
|
name: string;
|
|
@@ -1026,8 +1138,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1026
1138
|
totalCost?: number | undefined;
|
|
1027
1139
|
costPerUnit?: number | undefined;
|
|
1028
1140
|
availability?: string | undefined;
|
|
1141
|
+
inStock?: boolean | undefined;
|
|
1142
|
+
stockQuantity?: number | undefined;
|
|
1143
|
+
applicationMethod?: string | undefined;
|
|
1029
1144
|
}[] | undefined;
|
|
1030
|
-
applicationMethod?: string | undefined;
|
|
1031
1145
|
expectedOutcome?: string | undefined;
|
|
1032
1146
|
preventiveMeasures?: string[] | undefined;
|
|
1033
1147
|
estimatedTime?: string | undefined;
|
|
@@ -1072,6 +1186,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1072
1186
|
details: string;
|
|
1073
1187
|
timing: string;
|
|
1074
1188
|
confidence?: number | undefined;
|
|
1189
|
+
applicationMethod?: string | undefined;
|
|
1075
1190
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1076
1191
|
materials?: {
|
|
1077
1192
|
name: string;
|
|
@@ -1081,8 +1196,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1081
1196
|
totalCost?: number | undefined;
|
|
1082
1197
|
costPerUnit?: number | undefined;
|
|
1083
1198
|
availability?: string | undefined;
|
|
1199
|
+
inStock?: boolean | undefined;
|
|
1200
|
+
stockQuantity?: number | undefined;
|
|
1201
|
+
applicationMethod?: string | undefined;
|
|
1084
1202
|
}[] | undefined;
|
|
1085
|
-
applicationMethod?: string | undefined;
|
|
1086
1203
|
expectedOutcome?: string | undefined;
|
|
1087
1204
|
preventiveMeasures?: string[] | undefined;
|
|
1088
1205
|
estimatedTime?: string | undefined;
|
|
@@ -1127,6 +1244,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1127
1244
|
details: string;
|
|
1128
1245
|
timing: string;
|
|
1129
1246
|
confidence?: number | undefined;
|
|
1247
|
+
applicationMethod?: string | undefined;
|
|
1130
1248
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1131
1249
|
materials?: {
|
|
1132
1250
|
name: string;
|
|
@@ -1136,8 +1254,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1136
1254
|
totalCost?: number | undefined;
|
|
1137
1255
|
costPerUnit?: number | undefined;
|
|
1138
1256
|
availability?: string | undefined;
|
|
1257
|
+
inStock?: boolean | undefined;
|
|
1258
|
+
stockQuantity?: number | undefined;
|
|
1259
|
+
applicationMethod?: string | undefined;
|
|
1139
1260
|
}[] | undefined;
|
|
1140
|
-
applicationMethod?: string | undefined;
|
|
1141
1261
|
expectedOutcome?: string | undefined;
|
|
1142
1262
|
preventiveMeasures?: string[] | undefined;
|
|
1143
1263
|
estimatedTime?: string | undefined;
|
|
@@ -1206,6 +1326,9 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1206
1326
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1207
1327
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1208
1328
|
availability: z.ZodOptional<z.ZodString>;
|
|
1329
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1330
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1331
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1209
1332
|
}, "strip", z.ZodTypeAny, {
|
|
1210
1333
|
name: string;
|
|
1211
1334
|
quantity: number;
|
|
@@ -1214,6 +1337,9 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1214
1337
|
totalCost?: number | undefined;
|
|
1215
1338
|
costPerUnit?: number | undefined;
|
|
1216
1339
|
availability?: string | undefined;
|
|
1340
|
+
inStock?: boolean | undefined;
|
|
1341
|
+
stockQuantity?: number | undefined;
|
|
1342
|
+
applicationMethod?: string | undefined;
|
|
1217
1343
|
}, {
|
|
1218
1344
|
name: string;
|
|
1219
1345
|
quantity: number;
|
|
@@ -1222,6 +1348,9 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1222
1348
|
totalCost?: number | undefined;
|
|
1223
1349
|
costPerUnit?: number | undefined;
|
|
1224
1350
|
availability?: string | undefined;
|
|
1351
|
+
inStock?: boolean | undefined;
|
|
1352
|
+
stockQuantity?: number | undefined;
|
|
1353
|
+
applicationMethod?: string | undefined;
|
|
1225
1354
|
}>, "many">>;
|
|
1226
1355
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1227
1356
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1234,6 +1363,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1234
1363
|
details: string;
|
|
1235
1364
|
timing: string;
|
|
1236
1365
|
confidence?: number | undefined;
|
|
1366
|
+
applicationMethod?: string | undefined;
|
|
1237
1367
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1238
1368
|
materials?: {
|
|
1239
1369
|
name: string;
|
|
@@ -1243,8 +1373,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1243
1373
|
totalCost?: number | undefined;
|
|
1244
1374
|
costPerUnit?: number | undefined;
|
|
1245
1375
|
availability?: string | undefined;
|
|
1376
|
+
inStock?: boolean | undefined;
|
|
1377
|
+
stockQuantity?: number | undefined;
|
|
1378
|
+
applicationMethod?: string | undefined;
|
|
1246
1379
|
}[] | undefined;
|
|
1247
|
-
applicationMethod?: string | undefined;
|
|
1248
1380
|
expectedOutcome?: string | undefined;
|
|
1249
1381
|
preventiveMeasures?: string[] | undefined;
|
|
1250
1382
|
estimatedTime?: string | undefined;
|
|
@@ -1255,6 +1387,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1255
1387
|
details: string;
|
|
1256
1388
|
timing: string;
|
|
1257
1389
|
confidence?: number | undefined;
|
|
1390
|
+
applicationMethod?: string | undefined;
|
|
1258
1391
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1259
1392
|
materials?: {
|
|
1260
1393
|
name: string;
|
|
@@ -1264,8 +1397,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1264
1397
|
totalCost?: number | undefined;
|
|
1265
1398
|
costPerUnit?: number | undefined;
|
|
1266
1399
|
availability?: string | undefined;
|
|
1400
|
+
inStock?: boolean | undefined;
|
|
1401
|
+
stockQuantity?: number | undefined;
|
|
1402
|
+
applicationMethod?: string | undefined;
|
|
1267
1403
|
}[] | undefined;
|
|
1268
|
-
applicationMethod?: string | undefined;
|
|
1269
1404
|
expectedOutcome?: string | undefined;
|
|
1270
1405
|
preventiveMeasures?: string[] | undefined;
|
|
1271
1406
|
estimatedTime?: string | undefined;
|
|
@@ -1282,6 +1417,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1282
1417
|
details: string;
|
|
1283
1418
|
timing: string;
|
|
1284
1419
|
confidence?: number | undefined;
|
|
1420
|
+
applicationMethod?: string | undefined;
|
|
1285
1421
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1286
1422
|
materials?: {
|
|
1287
1423
|
name: string;
|
|
@@ -1291,8 +1427,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1291
1427
|
totalCost?: number | undefined;
|
|
1292
1428
|
costPerUnit?: number | undefined;
|
|
1293
1429
|
availability?: string | undefined;
|
|
1430
|
+
inStock?: boolean | undefined;
|
|
1431
|
+
stockQuantity?: number | undefined;
|
|
1432
|
+
applicationMethod?: string | undefined;
|
|
1294
1433
|
}[] | undefined;
|
|
1295
|
-
applicationMethod?: string | undefined;
|
|
1296
1434
|
expectedOutcome?: string | undefined;
|
|
1297
1435
|
preventiveMeasures?: string[] | undefined;
|
|
1298
1436
|
estimatedTime?: string | undefined;
|
|
@@ -1308,6 +1446,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1308
1446
|
details: string;
|
|
1309
1447
|
timing: string;
|
|
1310
1448
|
confidence?: number | undefined;
|
|
1449
|
+
applicationMethod?: string | undefined;
|
|
1311
1450
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1312
1451
|
materials?: {
|
|
1313
1452
|
name: string;
|
|
@@ -1317,8 +1456,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1317
1456
|
totalCost?: number | undefined;
|
|
1318
1457
|
costPerUnit?: number | undefined;
|
|
1319
1458
|
availability?: string | undefined;
|
|
1459
|
+
inStock?: boolean | undefined;
|
|
1460
|
+
stockQuantity?: number | undefined;
|
|
1461
|
+
applicationMethod?: string | undefined;
|
|
1320
1462
|
}[] | undefined;
|
|
1321
|
-
applicationMethod?: string | undefined;
|
|
1322
1463
|
expectedOutcome?: string | undefined;
|
|
1323
1464
|
preventiveMeasures?: string[] | undefined;
|
|
1324
1465
|
estimatedTime?: string | undefined;
|
|
@@ -1337,6 +1478,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1337
1478
|
details: string;
|
|
1338
1479
|
timing: string;
|
|
1339
1480
|
confidence?: number | undefined;
|
|
1481
|
+
applicationMethod?: string | undefined;
|
|
1340
1482
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1341
1483
|
materials?: {
|
|
1342
1484
|
name: string;
|
|
@@ -1346,8 +1488,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1346
1488
|
totalCost?: number | undefined;
|
|
1347
1489
|
costPerUnit?: number | undefined;
|
|
1348
1490
|
availability?: string | undefined;
|
|
1491
|
+
inStock?: boolean | undefined;
|
|
1492
|
+
stockQuantity?: number | undefined;
|
|
1493
|
+
applicationMethod?: string | undefined;
|
|
1349
1494
|
}[] | undefined;
|
|
1350
|
-
applicationMethod?: string | undefined;
|
|
1351
1495
|
expectedOutcome?: string | undefined;
|
|
1352
1496
|
preventiveMeasures?: string[] | undefined;
|
|
1353
1497
|
estimatedTime?: string | undefined;
|
|
@@ -1372,6 +1516,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1372
1516
|
details: string;
|
|
1373
1517
|
timing: string;
|
|
1374
1518
|
confidence?: number | undefined;
|
|
1519
|
+
applicationMethod?: string | undefined;
|
|
1375
1520
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1376
1521
|
materials?: {
|
|
1377
1522
|
name: string;
|
|
@@ -1381,8 +1526,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1381
1526
|
totalCost?: number | undefined;
|
|
1382
1527
|
costPerUnit?: number | undefined;
|
|
1383
1528
|
availability?: string | undefined;
|
|
1529
|
+
inStock?: boolean | undefined;
|
|
1530
|
+
stockQuantity?: number | undefined;
|
|
1531
|
+
applicationMethod?: string | undefined;
|
|
1384
1532
|
}[] | undefined;
|
|
1385
|
-
applicationMethod?: string | undefined;
|
|
1386
1533
|
expectedOutcome?: string | undefined;
|
|
1387
1534
|
preventiveMeasures?: string[] | undefined;
|
|
1388
1535
|
estimatedTime?: string | undefined;
|
|
@@ -1423,6 +1570,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1423
1570
|
details: string;
|
|
1424
1571
|
timing: string;
|
|
1425
1572
|
confidence?: number | undefined;
|
|
1573
|
+
applicationMethod?: string | undefined;
|
|
1426
1574
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1427
1575
|
materials?: {
|
|
1428
1576
|
name: string;
|
|
@@ -1432,8 +1580,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1432
1580
|
totalCost?: number | undefined;
|
|
1433
1581
|
costPerUnit?: number | undefined;
|
|
1434
1582
|
availability?: string | undefined;
|
|
1583
|
+
inStock?: boolean | undefined;
|
|
1584
|
+
stockQuantity?: number | undefined;
|
|
1585
|
+
applicationMethod?: string | undefined;
|
|
1435
1586
|
}[] | undefined;
|
|
1436
|
-
applicationMethod?: string | undefined;
|
|
1437
1587
|
expectedOutcome?: string | undefined;
|
|
1438
1588
|
preventiveMeasures?: string[] | undefined;
|
|
1439
1589
|
estimatedTime?: string | undefined;
|
|
@@ -1471,6 +1621,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1471
1621
|
details: string;
|
|
1472
1622
|
timing: string;
|
|
1473
1623
|
confidence?: number | undefined;
|
|
1624
|
+
applicationMethod?: string | undefined;
|
|
1474
1625
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1475
1626
|
materials?: {
|
|
1476
1627
|
name: string;
|
|
@@ -1480,8 +1631,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1480
1631
|
totalCost?: number | undefined;
|
|
1481
1632
|
costPerUnit?: number | undefined;
|
|
1482
1633
|
availability?: string | undefined;
|
|
1634
|
+
inStock?: boolean | undefined;
|
|
1635
|
+
stockQuantity?: number | undefined;
|
|
1636
|
+
applicationMethod?: string | undefined;
|
|
1483
1637
|
}[] | undefined;
|
|
1484
|
-
applicationMethod?: string | undefined;
|
|
1485
1638
|
expectedOutcome?: string | undefined;
|
|
1486
1639
|
preventiveMeasures?: string[] | undefined;
|
|
1487
1640
|
estimatedTime?: string | undefined;
|
|
@@ -1526,6 +1679,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1526
1679
|
details: string;
|
|
1527
1680
|
timing: string;
|
|
1528
1681
|
confidence?: number | undefined;
|
|
1682
|
+
applicationMethod?: string | undefined;
|
|
1529
1683
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1530
1684
|
materials?: {
|
|
1531
1685
|
name: string;
|
|
@@ -1535,8 +1689,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1535
1689
|
totalCost?: number | undefined;
|
|
1536
1690
|
costPerUnit?: number | undefined;
|
|
1537
1691
|
availability?: string | undefined;
|
|
1692
|
+
inStock?: boolean | undefined;
|
|
1693
|
+
stockQuantity?: number | undefined;
|
|
1694
|
+
applicationMethod?: string | undefined;
|
|
1538
1695
|
}[] | undefined;
|
|
1539
|
-
applicationMethod?: string | undefined;
|
|
1540
1696
|
expectedOutcome?: string | undefined;
|
|
1541
1697
|
preventiveMeasures?: string[] | undefined;
|
|
1542
1698
|
estimatedTime?: string | undefined;
|
|
@@ -1581,6 +1737,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1581
1737
|
details: string;
|
|
1582
1738
|
timing: string;
|
|
1583
1739
|
confidence?: number | undefined;
|
|
1740
|
+
applicationMethod?: string | undefined;
|
|
1584
1741
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1585
1742
|
materials?: {
|
|
1586
1743
|
name: string;
|
|
@@ -1590,8 +1747,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1590
1747
|
totalCost?: number | undefined;
|
|
1591
1748
|
costPerUnit?: number | undefined;
|
|
1592
1749
|
availability?: string | undefined;
|
|
1750
|
+
inStock?: boolean | undefined;
|
|
1751
|
+
stockQuantity?: number | undefined;
|
|
1752
|
+
applicationMethod?: string | undefined;
|
|
1593
1753
|
}[] | undefined;
|
|
1594
|
-
applicationMethod?: string | undefined;
|
|
1595
1754
|
expectedOutcome?: string | undefined;
|
|
1596
1755
|
preventiveMeasures?: string[] | undefined;
|
|
1597
1756
|
estimatedTime?: string | undefined;
|
|
@@ -1662,6 +1821,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1662
1821
|
details: string;
|
|
1663
1822
|
timing: string;
|
|
1664
1823
|
confidence?: number | undefined;
|
|
1824
|
+
applicationMethod?: string | undefined;
|
|
1665
1825
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1666
1826
|
materials?: {
|
|
1667
1827
|
name: string;
|
|
@@ -1671,8 +1831,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1671
1831
|
totalCost?: number | undefined;
|
|
1672
1832
|
costPerUnit?: number | undefined;
|
|
1673
1833
|
availability?: string | undefined;
|
|
1834
|
+
inStock?: boolean | undefined;
|
|
1835
|
+
stockQuantity?: number | undefined;
|
|
1836
|
+
applicationMethod?: string | undefined;
|
|
1674
1837
|
}[] | undefined;
|
|
1675
|
-
applicationMethod?: string | undefined;
|
|
1676
1838
|
expectedOutcome?: string | undefined;
|
|
1677
1839
|
preventiveMeasures?: string[] | undefined;
|
|
1678
1840
|
estimatedTime?: string | undefined;
|
|
@@ -1729,6 +1891,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1729
1891
|
details: string;
|
|
1730
1892
|
timing: string;
|
|
1731
1893
|
confidence?: number | undefined;
|
|
1894
|
+
applicationMethod?: string | undefined;
|
|
1732
1895
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1733
1896
|
materials?: {
|
|
1734
1897
|
name: string;
|
|
@@ -1738,8 +1901,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1738
1901
|
totalCost?: number | undefined;
|
|
1739
1902
|
costPerUnit?: number | undefined;
|
|
1740
1903
|
availability?: string | undefined;
|
|
1904
|
+
inStock?: boolean | undefined;
|
|
1905
|
+
stockQuantity?: number | undefined;
|
|
1906
|
+
applicationMethod?: string | undefined;
|
|
1741
1907
|
}[] | undefined;
|
|
1742
|
-
applicationMethod?: string | undefined;
|
|
1743
1908
|
expectedOutcome?: string | undefined;
|
|
1744
1909
|
preventiveMeasures?: string[] | undefined;
|
|
1745
1910
|
estimatedTime?: string | undefined;
|
|
@@ -1819,6 +1984,9 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1819
1984
|
costPerUnit: z.ZodOptional<z.ZodNumber>;
|
|
1820
1985
|
totalCost: z.ZodOptional<z.ZodNumber>;
|
|
1821
1986
|
availability: z.ZodOptional<z.ZodString>;
|
|
1987
|
+
inStock: z.ZodOptional<z.ZodBoolean>;
|
|
1988
|
+
stockQuantity: z.ZodOptional<z.ZodNumber>;
|
|
1989
|
+
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1822
1990
|
}, "strip", z.ZodTypeAny, {
|
|
1823
1991
|
name: string;
|
|
1824
1992
|
quantity: number;
|
|
@@ -1827,6 +1995,9 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1827
1995
|
totalCost?: number | undefined;
|
|
1828
1996
|
costPerUnit?: number | undefined;
|
|
1829
1997
|
availability?: string | undefined;
|
|
1998
|
+
inStock?: boolean | undefined;
|
|
1999
|
+
stockQuantity?: number | undefined;
|
|
2000
|
+
applicationMethod?: string | undefined;
|
|
1830
2001
|
}, {
|
|
1831
2002
|
name: string;
|
|
1832
2003
|
quantity: number;
|
|
@@ -1835,6 +2006,9 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1835
2006
|
totalCost?: number | undefined;
|
|
1836
2007
|
costPerUnit?: number | undefined;
|
|
1837
2008
|
availability?: string | undefined;
|
|
2009
|
+
inStock?: boolean | undefined;
|
|
2010
|
+
stockQuantity?: number | undefined;
|
|
2011
|
+
applicationMethod?: string | undefined;
|
|
1838
2012
|
}>, "many">>;
|
|
1839
2013
|
applicationMethod: z.ZodOptional<z.ZodString>;
|
|
1840
2014
|
expectedOutcome: z.ZodOptional<z.ZodString>;
|
|
@@ -1847,6 +2021,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1847
2021
|
details: string;
|
|
1848
2022
|
timing: string;
|
|
1849
2023
|
confidence?: number | undefined;
|
|
2024
|
+
applicationMethod?: string | undefined;
|
|
1850
2025
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1851
2026
|
materials?: {
|
|
1852
2027
|
name: string;
|
|
@@ -1856,8 +2031,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1856
2031
|
totalCost?: number | undefined;
|
|
1857
2032
|
costPerUnit?: number | undefined;
|
|
1858
2033
|
availability?: string | undefined;
|
|
2034
|
+
inStock?: boolean | undefined;
|
|
2035
|
+
stockQuantity?: number | undefined;
|
|
2036
|
+
applicationMethod?: string | undefined;
|
|
1859
2037
|
}[] | undefined;
|
|
1860
|
-
applicationMethod?: string | undefined;
|
|
1861
2038
|
expectedOutcome?: string | undefined;
|
|
1862
2039
|
preventiveMeasures?: string[] | undefined;
|
|
1863
2040
|
estimatedTime?: string | undefined;
|
|
@@ -1868,6 +2045,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1868
2045
|
details: string;
|
|
1869
2046
|
timing: string;
|
|
1870
2047
|
confidence?: number | undefined;
|
|
2048
|
+
applicationMethod?: string | undefined;
|
|
1871
2049
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1872
2050
|
materials?: {
|
|
1873
2051
|
name: string;
|
|
@@ -1877,8 +2055,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1877
2055
|
totalCost?: number | undefined;
|
|
1878
2056
|
costPerUnit?: number | undefined;
|
|
1879
2057
|
availability?: string | undefined;
|
|
2058
|
+
inStock?: boolean | undefined;
|
|
2059
|
+
stockQuantity?: number | undefined;
|
|
2060
|
+
applicationMethod?: string | undefined;
|
|
1880
2061
|
}[] | undefined;
|
|
1881
|
-
applicationMethod?: string | undefined;
|
|
1882
2062
|
expectedOutcome?: string | undefined;
|
|
1883
2063
|
preventiveMeasures?: string[] | undefined;
|
|
1884
2064
|
estimatedTime?: string | undefined;
|
|
@@ -1895,6 +2075,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1895
2075
|
details: string;
|
|
1896
2076
|
timing: string;
|
|
1897
2077
|
confidence?: number | undefined;
|
|
2078
|
+
applicationMethod?: string | undefined;
|
|
1898
2079
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1899
2080
|
materials?: {
|
|
1900
2081
|
name: string;
|
|
@@ -1904,8 +2085,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1904
2085
|
totalCost?: number | undefined;
|
|
1905
2086
|
costPerUnit?: number | undefined;
|
|
1906
2087
|
availability?: string | undefined;
|
|
2088
|
+
inStock?: boolean | undefined;
|
|
2089
|
+
stockQuantity?: number | undefined;
|
|
2090
|
+
applicationMethod?: string | undefined;
|
|
1907
2091
|
}[] | undefined;
|
|
1908
|
-
applicationMethod?: string | undefined;
|
|
1909
2092
|
expectedOutcome?: string | undefined;
|
|
1910
2093
|
preventiveMeasures?: string[] | undefined;
|
|
1911
2094
|
estimatedTime?: string | undefined;
|
|
@@ -1921,6 +2104,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1921
2104
|
details: string;
|
|
1922
2105
|
timing: string;
|
|
1923
2106
|
confidence?: number | undefined;
|
|
2107
|
+
applicationMethod?: string | undefined;
|
|
1924
2108
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1925
2109
|
materials?: {
|
|
1926
2110
|
name: string;
|
|
@@ -1930,8 +2114,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1930
2114
|
totalCost?: number | undefined;
|
|
1931
2115
|
costPerUnit?: number | undefined;
|
|
1932
2116
|
availability?: string | undefined;
|
|
2117
|
+
inStock?: boolean | undefined;
|
|
2118
|
+
stockQuantity?: number | undefined;
|
|
2119
|
+
applicationMethod?: string | undefined;
|
|
1933
2120
|
}[] | undefined;
|
|
1934
|
-
applicationMethod?: string | undefined;
|
|
1935
2121
|
expectedOutcome?: string | undefined;
|
|
1936
2122
|
preventiveMeasures?: string[] | undefined;
|
|
1937
2123
|
estimatedTime?: string | undefined;
|
|
@@ -1950,6 +2136,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1950
2136
|
details: string;
|
|
1951
2137
|
timing: string;
|
|
1952
2138
|
confidence?: number | undefined;
|
|
2139
|
+
applicationMethod?: string | undefined;
|
|
1953
2140
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1954
2141
|
materials?: {
|
|
1955
2142
|
name: string;
|
|
@@ -1959,8 +2146,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1959
2146
|
totalCost?: number | undefined;
|
|
1960
2147
|
costPerUnit?: number | undefined;
|
|
1961
2148
|
availability?: string | undefined;
|
|
2149
|
+
inStock?: boolean | undefined;
|
|
2150
|
+
stockQuantity?: number | undefined;
|
|
2151
|
+
applicationMethod?: string | undefined;
|
|
1962
2152
|
}[] | undefined;
|
|
1963
|
-
applicationMethod?: string | undefined;
|
|
1964
2153
|
expectedOutcome?: string | undefined;
|
|
1965
2154
|
preventiveMeasures?: string[] | undefined;
|
|
1966
2155
|
estimatedTime?: string | undefined;
|
|
@@ -1985,6 +2174,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1985
2174
|
details: string;
|
|
1986
2175
|
timing: string;
|
|
1987
2176
|
confidence?: number | undefined;
|
|
2177
|
+
applicationMethod?: string | undefined;
|
|
1988
2178
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1989
2179
|
materials?: {
|
|
1990
2180
|
name: string;
|
|
@@ -1994,8 +2184,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1994
2184
|
totalCost?: number | undefined;
|
|
1995
2185
|
costPerUnit?: number | undefined;
|
|
1996
2186
|
availability?: string | undefined;
|
|
2187
|
+
inStock?: boolean | undefined;
|
|
2188
|
+
stockQuantity?: number | undefined;
|
|
2189
|
+
applicationMethod?: string | undefined;
|
|
1997
2190
|
}[] | undefined;
|
|
1998
|
-
applicationMethod?: string | undefined;
|
|
1999
2191
|
expectedOutcome?: string | undefined;
|
|
2000
2192
|
preventiveMeasures?: string[] | undefined;
|
|
2001
2193
|
estimatedTime?: string | undefined;
|
|
@@ -2036,6 +2228,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2036
2228
|
details: string;
|
|
2037
2229
|
timing: string;
|
|
2038
2230
|
confidence?: number | undefined;
|
|
2231
|
+
applicationMethod?: string | undefined;
|
|
2039
2232
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2040
2233
|
materials?: {
|
|
2041
2234
|
name: string;
|
|
@@ -2045,8 +2238,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2045
2238
|
totalCost?: number | undefined;
|
|
2046
2239
|
costPerUnit?: number | undefined;
|
|
2047
2240
|
availability?: string | undefined;
|
|
2241
|
+
inStock?: boolean | undefined;
|
|
2242
|
+
stockQuantity?: number | undefined;
|
|
2243
|
+
applicationMethod?: string | undefined;
|
|
2048
2244
|
}[] | undefined;
|
|
2049
|
-
applicationMethod?: string | undefined;
|
|
2050
2245
|
expectedOutcome?: string | undefined;
|
|
2051
2246
|
preventiveMeasures?: string[] | undefined;
|
|
2052
2247
|
estimatedTime?: string | undefined;
|
|
@@ -2084,6 +2279,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2084
2279
|
details: string;
|
|
2085
2280
|
timing: string;
|
|
2086
2281
|
confidence?: number | undefined;
|
|
2282
|
+
applicationMethod?: string | undefined;
|
|
2087
2283
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2088
2284
|
materials?: {
|
|
2089
2285
|
name: string;
|
|
@@ -2093,8 +2289,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2093
2289
|
totalCost?: number | undefined;
|
|
2094
2290
|
costPerUnit?: number | undefined;
|
|
2095
2291
|
availability?: string | undefined;
|
|
2292
|
+
inStock?: boolean | undefined;
|
|
2293
|
+
stockQuantity?: number | undefined;
|
|
2294
|
+
applicationMethod?: string | undefined;
|
|
2096
2295
|
}[] | undefined;
|
|
2097
|
-
applicationMethod?: string | undefined;
|
|
2098
2296
|
expectedOutcome?: string | undefined;
|
|
2099
2297
|
preventiveMeasures?: string[] | undefined;
|
|
2100
2298
|
estimatedTime?: string | undefined;
|
|
@@ -2139,6 +2337,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2139
2337
|
details: string;
|
|
2140
2338
|
timing: string;
|
|
2141
2339
|
confidence?: number | undefined;
|
|
2340
|
+
applicationMethod?: string | undefined;
|
|
2142
2341
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2143
2342
|
materials?: {
|
|
2144
2343
|
name: string;
|
|
@@ -2148,8 +2347,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2148
2347
|
totalCost?: number | undefined;
|
|
2149
2348
|
costPerUnit?: number | undefined;
|
|
2150
2349
|
availability?: string | undefined;
|
|
2350
|
+
inStock?: boolean | undefined;
|
|
2351
|
+
stockQuantity?: number | undefined;
|
|
2352
|
+
applicationMethod?: string | undefined;
|
|
2151
2353
|
}[] | undefined;
|
|
2152
|
-
applicationMethod?: string | undefined;
|
|
2153
2354
|
expectedOutcome?: string | undefined;
|
|
2154
2355
|
preventiveMeasures?: string[] | undefined;
|
|
2155
2356
|
estimatedTime?: string | undefined;
|
|
@@ -2194,6 +2395,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2194
2395
|
details: string;
|
|
2195
2396
|
timing: string;
|
|
2196
2397
|
confidence?: number | undefined;
|
|
2398
|
+
applicationMethod?: string | undefined;
|
|
2197
2399
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2198
2400
|
materials?: {
|
|
2199
2401
|
name: string;
|
|
@@ -2203,8 +2405,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2203
2405
|
totalCost?: number | undefined;
|
|
2204
2406
|
costPerUnit?: number | undefined;
|
|
2205
2407
|
availability?: string | undefined;
|
|
2408
|
+
inStock?: boolean | undefined;
|
|
2409
|
+
stockQuantity?: number | undefined;
|
|
2410
|
+
applicationMethod?: string | undefined;
|
|
2206
2411
|
}[] | undefined;
|
|
2207
|
-
applicationMethod?: string | undefined;
|
|
2208
2412
|
expectedOutcome?: string | undefined;
|
|
2209
2413
|
preventiveMeasures?: string[] | undefined;
|
|
2210
2414
|
estimatedTime?: string | undefined;
|
|
@@ -2275,6 +2479,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2275
2479
|
details: string;
|
|
2276
2480
|
timing: string;
|
|
2277
2481
|
confidence?: number | undefined;
|
|
2482
|
+
applicationMethod?: string | undefined;
|
|
2278
2483
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2279
2484
|
materials?: {
|
|
2280
2485
|
name: string;
|
|
@@ -2284,8 +2489,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2284
2489
|
totalCost?: number | undefined;
|
|
2285
2490
|
costPerUnit?: number | undefined;
|
|
2286
2491
|
availability?: string | undefined;
|
|
2492
|
+
inStock?: boolean | undefined;
|
|
2493
|
+
stockQuantity?: number | undefined;
|
|
2494
|
+
applicationMethod?: string | undefined;
|
|
2287
2495
|
}[] | undefined;
|
|
2288
|
-
applicationMethod?: string | undefined;
|
|
2289
2496
|
expectedOutcome?: string | undefined;
|
|
2290
2497
|
preventiveMeasures?: string[] | undefined;
|
|
2291
2498
|
estimatedTime?: string | undefined;
|
|
@@ -2342,6 +2549,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2342
2549
|
details: string;
|
|
2343
2550
|
timing: string;
|
|
2344
2551
|
confidence?: number | undefined;
|
|
2552
|
+
applicationMethod?: string | undefined;
|
|
2345
2553
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2346
2554
|
materials?: {
|
|
2347
2555
|
name: string;
|
|
@@ -2351,8 +2559,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2351
2559
|
totalCost?: number | undefined;
|
|
2352
2560
|
costPerUnit?: number | undefined;
|
|
2353
2561
|
availability?: string | undefined;
|
|
2562
|
+
inStock?: boolean | undefined;
|
|
2563
|
+
stockQuantity?: number | undefined;
|
|
2564
|
+
applicationMethod?: string | undefined;
|
|
2354
2565
|
}[] | undefined;
|
|
2355
|
-
applicationMethod?: string | undefined;
|
|
2356
2566
|
expectedOutcome?: string | undefined;
|
|
2357
2567
|
preventiveMeasures?: string[] | undefined;
|
|
2358
2568
|
estimatedTime?: string | undefined;
|