@deepintel-ltd/farmpro-contracts 1.7.13 → 1.7.19
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/index.d.ts +3 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/routes/agent-workflows.routes.d.ts +88 -88
- package/dist/routes/agents.routes.d.ts +3260 -0
- package/dist/routes/agents.routes.d.ts.map +1 -1
- package/dist/routes/agents.routes.js +130 -1
- package/dist/routes/analytics.routes.d.ts +20 -20
- package/dist/routes/documents.routes.d.ts +855 -58
- package/dist/routes/documents.routes.d.ts.map +1 -1
- package/dist/routes/documents.routes.js +43 -1
- package/dist/routes/equipment.routes.d.ts +38 -38
- package/dist/routes/farm-status.routes.d.ts +315 -0
- package/dist/routes/farm-status.routes.d.ts.map +1 -0
- package/dist/routes/farm-status.routes.js +26 -0
- package/dist/routes/fertigation.routes.d.ts +148 -148
- package/dist/routes/field-monitoring.routes.d.ts +52 -52
- package/dist/routes/field-observations.routes.d.ts +56 -56
- package/dist/routes/finance.routes.d.ts +3493 -0
- package/dist/routes/finance.routes.d.ts.map +1 -1
- package/dist/routes/finance.routes.js +158 -1
- package/dist/routes/geofences.routes.d.ts.map +1 -1
- package/dist/routes/index.d.ts +3 -0
- package/dist/routes/index.d.ts.map +1 -1
- package/dist/routes/index.js +2 -0
- package/dist/routes/irrigation.routes.d.ts +6 -6
- package/dist/routes/measurements.routes.d.ts +13 -4
- package/dist/routes/measurements.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.d.ts +43 -36
- package/dist/routes/monitoring-visualization.routes.d.ts.map +1 -1
- package/dist/routes/monitoring-visualization.routes.js +7 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +20 -20
- package/dist/routes/prescription-maps.routes.d.ts +570 -23
- package/dist/routes/prescription-maps.routes.d.ts.map +1 -1
- package/dist/routes/prescription-maps.routes.js +18 -1
- package/dist/routes/soil-tests.routes.d.ts +30 -30
- package/dist/routes/subscriptions.routes.d.ts +14 -14
- package/dist/routes/weather.routes.d.ts +545 -52
- package/dist/routes/weather.routes.d.ts.map +1 -1
- package/dist/routes/weather.routes.js +13 -1
- package/dist/routes/yield-prediction.routes.d.ts +30 -30
- package/dist/schemas/agent-workflows.schemas.d.ts +92 -92
- package/dist/schemas/agents.schemas.d.ts +1120 -0
- package/dist/schemas/agents.schemas.d.ts.map +1 -1
- package/dist/schemas/agents.schemas.js +181 -0
- package/dist/schemas/analytics.schemas.d.ts +56 -56
- package/dist/schemas/documents.schemas.d.ts +248 -48
- package/dist/schemas/documents.schemas.d.ts.map +1 -1
- package/dist/schemas/documents.schemas.js +38 -0
- package/dist/schemas/equipment.schemas.d.ts +30 -30
- package/dist/schemas/farm-status.schemas.d.ts +451 -0
- package/dist/schemas/farm-status.schemas.d.ts.map +1 -0
- package/dist/schemas/farm-status.schemas.js +44 -0
- package/dist/schemas/fertigation.schemas.d.ts +50 -50
- package/dist/schemas/field-monitoring.schemas.d.ts +42 -42
- package/dist/schemas/field-observations.schemas.d.ts +44 -44
- package/dist/schemas/finance.schemas.d.ts +1057 -0
- package/dist/schemas/finance.schemas.d.ts.map +1 -1
- package/dist/schemas/finance.schemas.js +170 -0
- package/dist/schemas/irrigation.schemas.d.ts +8 -8
- package/dist/schemas/measurements.schemas.d.ts +21 -8
- package/dist/schemas/measurements.schemas.d.ts.map +1 -1
- package/dist/schemas/measurements.schemas.js +13 -6
- package/dist/schemas/monitoring-visualization.schemas.d.ts +50 -43
- package/dist/schemas/monitoring-visualization.schemas.d.ts.map +1 -1
- package/dist/schemas/monitoring-visualization.schemas.js +27 -17
- package/dist/schemas/pest-disease-risk.schemas.d.ts +18 -18
- package/dist/schemas/prescription-maps.schemas.d.ts +45 -22
- package/dist/schemas/prescription-maps.schemas.d.ts.map +1 -1
- package/dist/schemas/prescription-maps.schemas.js +9 -1
- package/dist/schemas/recommendations.schemas.d.ts +2 -2
- package/dist/schemas/soil-tests.schemas.d.ts +28 -28
- package/dist/schemas/subscriptions.schemas.d.ts +22 -22
- package/dist/schemas/weather.schemas.d.ts +789 -112
- package/dist/schemas/weather.schemas.d.ts.map +1 -1
- package/dist/schemas/weather.schemas.js +37 -0
- package/dist/schemas/yield-prediction.schemas.d.ts +12 -12
- package/package.json +1 -1
|
@@ -52,8 +52,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
52
52
|
action: string;
|
|
53
53
|
details: string;
|
|
54
54
|
timing: string;
|
|
55
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
56
55
|
confidence?: number | undefined;
|
|
56
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
57
57
|
materials?: {
|
|
58
58
|
name: string;
|
|
59
59
|
unit: string;
|
|
@@ -73,8 +73,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
73
73
|
action: string;
|
|
74
74
|
details: string;
|
|
75
75
|
timing: string;
|
|
76
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
77
76
|
confidence?: number | undefined;
|
|
77
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
78
78
|
materials?: {
|
|
79
79
|
name: string;
|
|
80
80
|
unit: string;
|
|
@@ -94,14 +94,13 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
94
94
|
taskId: z.ZodOptional<z.ZodString>;
|
|
95
95
|
reason: z.ZodString;
|
|
96
96
|
}, "strip", z.ZodTypeAny, {
|
|
97
|
-
reason: string;
|
|
98
97
|
recommendation: {
|
|
99
98
|
priority: number;
|
|
100
99
|
action: string;
|
|
101
100
|
details: string;
|
|
102
101
|
timing: string;
|
|
103
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
104
102
|
confidence?: number | undefined;
|
|
103
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
105
104
|
materials?: {
|
|
106
105
|
name: string;
|
|
107
106
|
unit: string;
|
|
@@ -117,17 +116,17 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
117
116
|
estimatedTime?: string | undefined;
|
|
118
117
|
riskLevel?: string | undefined;
|
|
119
118
|
};
|
|
119
|
+
reason: string;
|
|
120
120
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
121
121
|
taskId?: string | undefined;
|
|
122
122
|
}, {
|
|
123
|
-
reason: string;
|
|
124
123
|
recommendation: {
|
|
125
124
|
priority: number;
|
|
126
125
|
action: string;
|
|
127
126
|
details: string;
|
|
128
127
|
timing: string;
|
|
129
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
130
128
|
confidence?: number | undefined;
|
|
129
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
131
130
|
materials?: {
|
|
132
131
|
name: string;
|
|
133
132
|
unit: string;
|
|
@@ -143,6 +142,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
143
142
|
estimatedTime?: string | undefined;
|
|
144
143
|
riskLevel?: string | undefined;
|
|
145
144
|
};
|
|
145
|
+
reason: string;
|
|
146
146
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
147
147
|
taskId?: string | undefined;
|
|
148
148
|
}>;
|
|
@@ -206,8 +206,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
206
206
|
action: string;
|
|
207
207
|
details: string;
|
|
208
208
|
timing: string;
|
|
209
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
210
209
|
confidence?: number | undefined;
|
|
210
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
211
211
|
materials?: {
|
|
212
212
|
name: string;
|
|
213
213
|
unit: string;
|
|
@@ -227,8 +227,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
227
227
|
action: string;
|
|
228
228
|
details: string;
|
|
229
229
|
timing: string;
|
|
230
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
231
230
|
confidence?: number | undefined;
|
|
231
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
232
232
|
materials?: {
|
|
233
233
|
name: string;
|
|
234
234
|
unit: string;
|
|
@@ -248,14 +248,13 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
248
248
|
taskId: z.ZodOptional<z.ZodString>;
|
|
249
249
|
reason: z.ZodString;
|
|
250
250
|
}, "strip", z.ZodTypeAny, {
|
|
251
|
-
reason: string;
|
|
252
251
|
recommendation: {
|
|
253
252
|
priority: number;
|
|
254
253
|
action: string;
|
|
255
254
|
details: string;
|
|
256
255
|
timing: string;
|
|
257
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
258
256
|
confidence?: number | undefined;
|
|
257
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
259
258
|
materials?: {
|
|
260
259
|
name: string;
|
|
261
260
|
unit: string;
|
|
@@ -271,17 +270,17 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
271
270
|
estimatedTime?: string | undefined;
|
|
272
271
|
riskLevel?: string | undefined;
|
|
273
272
|
};
|
|
273
|
+
reason: string;
|
|
274
274
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
275
275
|
taskId?: string | undefined;
|
|
276
276
|
}, {
|
|
277
|
-
reason: string;
|
|
278
277
|
recommendation: {
|
|
279
278
|
priority: number;
|
|
280
279
|
action: string;
|
|
281
280
|
details: string;
|
|
282
281
|
timing: string;
|
|
283
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
284
282
|
confidence?: number | undefined;
|
|
283
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
285
284
|
materials?: {
|
|
286
285
|
name: string;
|
|
287
286
|
unit: string;
|
|
@@ -297,6 +296,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
297
296
|
estimatedTime?: string | undefined;
|
|
298
297
|
riskLevel?: string | undefined;
|
|
299
298
|
};
|
|
299
|
+
reason: string;
|
|
300
300
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
301
301
|
taskId?: string | undefined;
|
|
302
302
|
}>, "many">;
|
|
@@ -309,14 +309,13 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
309
309
|
tasksUpdated: number;
|
|
310
310
|
};
|
|
311
311
|
results: {
|
|
312
|
-
reason: string;
|
|
313
312
|
recommendation: {
|
|
314
313
|
priority: number;
|
|
315
314
|
action: string;
|
|
316
315
|
details: string;
|
|
317
316
|
timing: string;
|
|
318
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
319
317
|
confidence?: number | undefined;
|
|
318
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
320
319
|
materials?: {
|
|
321
320
|
name: string;
|
|
322
321
|
unit: string;
|
|
@@ -332,6 +331,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
332
331
|
estimatedTime?: string | undefined;
|
|
333
332
|
riskLevel?: string | undefined;
|
|
334
333
|
};
|
|
334
|
+
reason: string;
|
|
335
335
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
336
336
|
taskId?: string | undefined;
|
|
337
337
|
}[];
|
|
@@ -344,14 +344,13 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
344
344
|
tasksUpdated: number;
|
|
345
345
|
};
|
|
346
346
|
results: {
|
|
347
|
-
reason: string;
|
|
348
347
|
recommendation: {
|
|
349
348
|
priority: number;
|
|
350
349
|
action: string;
|
|
351
350
|
details: string;
|
|
352
351
|
timing: string;
|
|
353
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
354
352
|
confidence?: number | undefined;
|
|
353
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
355
354
|
materials?: {
|
|
356
355
|
name: string;
|
|
357
356
|
unit: string;
|
|
@@ -367,6 +366,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
367
366
|
estimatedTime?: string | undefined;
|
|
368
367
|
riskLevel?: string | undefined;
|
|
369
368
|
};
|
|
369
|
+
reason: string;
|
|
370
370
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
371
371
|
taskId?: string | undefined;
|
|
372
372
|
}[];
|
|
@@ -440,8 +440,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
440
440
|
action: string;
|
|
441
441
|
details: string;
|
|
442
442
|
timing: string;
|
|
443
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
444
443
|
confidence?: number | undefined;
|
|
444
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
445
445
|
materials?: {
|
|
446
446
|
name: string;
|
|
447
447
|
unit: string;
|
|
@@ -461,8 +461,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
461
461
|
action: string;
|
|
462
462
|
details: string;
|
|
463
463
|
timing: string;
|
|
464
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
465
464
|
confidence?: number | undefined;
|
|
465
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
466
466
|
materials?: {
|
|
467
467
|
name: string;
|
|
468
468
|
unit: string;
|
|
@@ -482,14 +482,13 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
482
482
|
taskId: z.ZodOptional<z.ZodString>;
|
|
483
483
|
reason: z.ZodString;
|
|
484
484
|
}, "strip", z.ZodTypeAny, {
|
|
485
|
-
reason: string;
|
|
486
485
|
recommendation: {
|
|
487
486
|
priority: number;
|
|
488
487
|
action: string;
|
|
489
488
|
details: string;
|
|
490
489
|
timing: string;
|
|
491
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
492
490
|
confidence?: number | undefined;
|
|
491
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
493
492
|
materials?: {
|
|
494
493
|
name: string;
|
|
495
494
|
unit: string;
|
|
@@ -505,17 +504,17 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
505
504
|
estimatedTime?: string | undefined;
|
|
506
505
|
riskLevel?: string | undefined;
|
|
507
506
|
};
|
|
507
|
+
reason: string;
|
|
508
508
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
509
509
|
taskId?: string | undefined;
|
|
510
510
|
}, {
|
|
511
|
-
reason: string;
|
|
512
511
|
recommendation: {
|
|
513
512
|
priority: number;
|
|
514
513
|
action: string;
|
|
515
514
|
details: string;
|
|
516
515
|
timing: string;
|
|
517
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
518
516
|
confidence?: number | undefined;
|
|
517
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
519
518
|
materials?: {
|
|
520
519
|
name: string;
|
|
521
520
|
unit: string;
|
|
@@ -531,6 +530,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
531
530
|
estimatedTime?: string | undefined;
|
|
532
531
|
riskLevel?: string | undefined;
|
|
533
532
|
};
|
|
533
|
+
reason: string;
|
|
534
534
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
535
535
|
taskId?: string | undefined;
|
|
536
536
|
}>, "many">;
|
|
@@ -543,14 +543,13 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
543
543
|
tasksUpdated: number;
|
|
544
544
|
};
|
|
545
545
|
results: {
|
|
546
|
-
reason: string;
|
|
547
546
|
recommendation: {
|
|
548
547
|
priority: number;
|
|
549
548
|
action: string;
|
|
550
549
|
details: string;
|
|
551
550
|
timing: string;
|
|
552
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
553
551
|
confidence?: number | undefined;
|
|
552
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
554
553
|
materials?: {
|
|
555
554
|
name: string;
|
|
556
555
|
unit: string;
|
|
@@ -566,6 +565,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
566
565
|
estimatedTime?: string | undefined;
|
|
567
566
|
riskLevel?: string | undefined;
|
|
568
567
|
};
|
|
568
|
+
reason: string;
|
|
569
569
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
570
570
|
taskId?: string | undefined;
|
|
571
571
|
}[];
|
|
@@ -578,14 +578,13 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
578
578
|
tasksUpdated: number;
|
|
579
579
|
};
|
|
580
580
|
results: {
|
|
581
|
-
reason: string;
|
|
582
581
|
recommendation: {
|
|
583
582
|
priority: number;
|
|
584
583
|
action: string;
|
|
585
584
|
details: string;
|
|
586
585
|
timing: string;
|
|
587
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
588
586
|
confidence?: number | undefined;
|
|
587
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
589
588
|
materials?: {
|
|
590
589
|
name: string;
|
|
591
590
|
unit: string;
|
|
@@ -601,6 +600,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
601
600
|
estimatedTime?: string | undefined;
|
|
602
601
|
riskLevel?: string | undefined;
|
|
603
602
|
};
|
|
603
|
+
reason: string;
|
|
604
604
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
605
605
|
taskId?: string | undefined;
|
|
606
606
|
}[];
|
|
@@ -629,14 +629,13 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
629
629
|
tasksUpdated: number;
|
|
630
630
|
};
|
|
631
631
|
results: {
|
|
632
|
-
reason: string;
|
|
633
632
|
recommendation: {
|
|
634
633
|
priority: number;
|
|
635
634
|
action: string;
|
|
636
635
|
details: string;
|
|
637
636
|
timing: string;
|
|
638
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
639
637
|
confidence?: number | undefined;
|
|
638
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
640
639
|
materials?: {
|
|
641
640
|
name: string;
|
|
642
641
|
unit: string;
|
|
@@ -652,6 +651,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
652
651
|
estimatedTime?: string | undefined;
|
|
653
652
|
riskLevel?: string | undefined;
|
|
654
653
|
};
|
|
654
|
+
reason: string;
|
|
655
655
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
656
656
|
taskId?: string | undefined;
|
|
657
657
|
}[];
|
|
@@ -677,14 +677,13 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
677
677
|
tasksUpdated: number;
|
|
678
678
|
};
|
|
679
679
|
results: {
|
|
680
|
-
reason: string;
|
|
681
680
|
recommendation: {
|
|
682
681
|
priority: number;
|
|
683
682
|
action: string;
|
|
684
683
|
details: string;
|
|
685
684
|
timing: string;
|
|
686
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
687
685
|
confidence?: number | undefined;
|
|
686
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
688
687
|
materials?: {
|
|
689
688
|
name: string;
|
|
690
689
|
unit: string;
|
|
@@ -700,6 +699,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
700
699
|
estimatedTime?: string | undefined;
|
|
701
700
|
riskLevel?: string | undefined;
|
|
702
701
|
};
|
|
702
|
+
reason: string;
|
|
703
703
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
704
704
|
taskId?: string | undefined;
|
|
705
705
|
}[];
|
|
@@ -779,8 +779,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
779
779
|
action: string;
|
|
780
780
|
details: string;
|
|
781
781
|
timing: string;
|
|
782
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
783
782
|
confidence?: number | undefined;
|
|
783
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
784
784
|
materials?: {
|
|
785
785
|
name: string;
|
|
786
786
|
unit: string;
|
|
@@ -800,8 +800,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
800
800
|
action: string;
|
|
801
801
|
details: string;
|
|
802
802
|
timing: string;
|
|
803
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
804
803
|
confidence?: number | undefined;
|
|
804
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
805
805
|
materials?: {
|
|
806
806
|
name: string;
|
|
807
807
|
unit: string;
|
|
@@ -821,14 +821,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
821
821
|
taskId: z.ZodOptional<z.ZodString>;
|
|
822
822
|
reason: z.ZodString;
|
|
823
823
|
}, "strip", z.ZodTypeAny, {
|
|
824
|
-
reason: string;
|
|
825
824
|
recommendation: {
|
|
826
825
|
priority: number;
|
|
827
826
|
action: string;
|
|
828
827
|
details: string;
|
|
829
828
|
timing: string;
|
|
830
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
831
829
|
confidence?: number | undefined;
|
|
830
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
832
831
|
materials?: {
|
|
833
832
|
name: string;
|
|
834
833
|
unit: string;
|
|
@@ -844,17 +843,17 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
844
843
|
estimatedTime?: string | undefined;
|
|
845
844
|
riskLevel?: string | undefined;
|
|
846
845
|
};
|
|
846
|
+
reason: string;
|
|
847
847
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
848
848
|
taskId?: string | undefined;
|
|
849
849
|
}, {
|
|
850
|
-
reason: string;
|
|
851
850
|
recommendation: {
|
|
852
851
|
priority: number;
|
|
853
852
|
action: string;
|
|
854
853
|
details: string;
|
|
855
854
|
timing: string;
|
|
856
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
857
855
|
confidence?: number | undefined;
|
|
856
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
858
857
|
materials?: {
|
|
859
858
|
name: string;
|
|
860
859
|
unit: string;
|
|
@@ -870,6 +869,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
870
869
|
estimatedTime?: string | undefined;
|
|
871
870
|
riskLevel?: string | undefined;
|
|
872
871
|
};
|
|
872
|
+
reason: string;
|
|
873
873
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
874
874
|
taskId?: string | undefined;
|
|
875
875
|
}>, "many">;
|
|
@@ -882,14 +882,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
882
882
|
tasksUpdated: number;
|
|
883
883
|
};
|
|
884
884
|
results: {
|
|
885
|
-
reason: string;
|
|
886
885
|
recommendation: {
|
|
887
886
|
priority: number;
|
|
888
887
|
action: string;
|
|
889
888
|
details: string;
|
|
890
889
|
timing: string;
|
|
891
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
892
890
|
confidence?: number | undefined;
|
|
891
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
893
892
|
materials?: {
|
|
894
893
|
name: string;
|
|
895
894
|
unit: string;
|
|
@@ -905,6 +904,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
905
904
|
estimatedTime?: string | undefined;
|
|
906
905
|
riskLevel?: string | undefined;
|
|
907
906
|
};
|
|
907
|
+
reason: string;
|
|
908
908
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
909
909
|
taskId?: string | undefined;
|
|
910
910
|
}[];
|
|
@@ -917,14 +917,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
917
917
|
tasksUpdated: number;
|
|
918
918
|
};
|
|
919
919
|
results: {
|
|
920
|
-
reason: string;
|
|
921
920
|
recommendation: {
|
|
922
921
|
priority: number;
|
|
923
922
|
action: string;
|
|
924
923
|
details: string;
|
|
925
924
|
timing: string;
|
|
926
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
927
925
|
confidence?: number | undefined;
|
|
926
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
928
927
|
materials?: {
|
|
929
928
|
name: string;
|
|
930
929
|
unit: string;
|
|
@@ -940,6 +939,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
940
939
|
estimatedTime?: string | undefined;
|
|
941
940
|
riskLevel?: string | undefined;
|
|
942
941
|
};
|
|
942
|
+
reason: string;
|
|
943
943
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
944
944
|
taskId?: string | undefined;
|
|
945
945
|
}[];
|
|
@@ -968,14 +968,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
968
968
|
tasksUpdated: number;
|
|
969
969
|
};
|
|
970
970
|
results: {
|
|
971
|
-
reason: string;
|
|
972
971
|
recommendation: {
|
|
973
972
|
priority: number;
|
|
974
973
|
action: string;
|
|
975
974
|
details: string;
|
|
976
975
|
timing: string;
|
|
977
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
978
976
|
confidence?: number | undefined;
|
|
977
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
979
978
|
materials?: {
|
|
980
979
|
name: string;
|
|
981
980
|
unit: string;
|
|
@@ -991,6 +990,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
991
990
|
estimatedTime?: string | undefined;
|
|
992
991
|
riskLevel?: string | undefined;
|
|
993
992
|
};
|
|
993
|
+
reason: string;
|
|
994
994
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
995
995
|
taskId?: string | undefined;
|
|
996
996
|
}[];
|
|
@@ -1016,14 +1016,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1016
1016
|
tasksUpdated: number;
|
|
1017
1017
|
};
|
|
1018
1018
|
results: {
|
|
1019
|
-
reason: string;
|
|
1020
1019
|
recommendation: {
|
|
1021
1020
|
priority: number;
|
|
1022
1021
|
action: string;
|
|
1023
1022
|
details: string;
|
|
1024
1023
|
timing: string;
|
|
1025
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1026
1024
|
confidence?: number | undefined;
|
|
1025
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1027
1026
|
materials?: {
|
|
1028
1027
|
name: string;
|
|
1029
1028
|
unit: string;
|
|
@@ -1039,6 +1038,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1039
1038
|
estimatedTime?: string | undefined;
|
|
1040
1039
|
riskLevel?: string | undefined;
|
|
1041
1040
|
};
|
|
1041
|
+
reason: string;
|
|
1042
1042
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1043
1043
|
taskId?: string | undefined;
|
|
1044
1044
|
}[];
|
|
@@ -1071,14 +1071,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1071
1071
|
tasksUpdated: number;
|
|
1072
1072
|
};
|
|
1073
1073
|
results: {
|
|
1074
|
-
reason: string;
|
|
1075
1074
|
recommendation: {
|
|
1076
1075
|
priority: number;
|
|
1077
1076
|
action: string;
|
|
1078
1077
|
details: string;
|
|
1079
1078
|
timing: string;
|
|
1080
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1081
1079
|
confidence?: number | undefined;
|
|
1080
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1082
1081
|
materials?: {
|
|
1083
1082
|
name: string;
|
|
1084
1083
|
unit: string;
|
|
@@ -1094,6 +1093,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1094
1093
|
estimatedTime?: string | undefined;
|
|
1095
1094
|
riskLevel?: string | undefined;
|
|
1096
1095
|
};
|
|
1096
|
+
reason: string;
|
|
1097
1097
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1098
1098
|
taskId?: string | undefined;
|
|
1099
1099
|
}[];
|
|
@@ -1126,14 +1126,13 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1126
1126
|
tasksUpdated: number;
|
|
1127
1127
|
};
|
|
1128
1128
|
results: {
|
|
1129
|
-
reason: string;
|
|
1130
1129
|
recommendation: {
|
|
1131
1130
|
priority: number;
|
|
1132
1131
|
action: string;
|
|
1133
1132
|
details: string;
|
|
1134
1133
|
timing: string;
|
|
1135
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1136
1134
|
confidence?: number | undefined;
|
|
1135
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1137
1136
|
materials?: {
|
|
1138
1137
|
name: string;
|
|
1139
1138
|
unit: string;
|
|
@@ -1149,6 +1148,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1149
1148
|
estimatedTime?: string | undefined;
|
|
1150
1149
|
riskLevel?: string | undefined;
|
|
1151
1150
|
};
|
|
1151
|
+
reason: string;
|
|
1152
1152
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1153
1153
|
taskId?: string | undefined;
|
|
1154
1154
|
}[];
|
|
@@ -1233,8 +1233,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1233
1233
|
action: string;
|
|
1234
1234
|
details: string;
|
|
1235
1235
|
timing: string;
|
|
1236
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1237
1236
|
confidence?: number | undefined;
|
|
1237
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1238
1238
|
materials?: {
|
|
1239
1239
|
name: string;
|
|
1240
1240
|
unit: string;
|
|
@@ -1254,8 +1254,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1254
1254
|
action: string;
|
|
1255
1255
|
details: string;
|
|
1256
1256
|
timing: string;
|
|
1257
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1258
1257
|
confidence?: number | undefined;
|
|
1258
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1259
1259
|
materials?: {
|
|
1260
1260
|
name: string;
|
|
1261
1261
|
unit: string;
|
|
@@ -1275,14 +1275,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1275
1275
|
taskId: z.ZodOptional<z.ZodString>;
|
|
1276
1276
|
reason: z.ZodString;
|
|
1277
1277
|
}, "strip", z.ZodTypeAny, {
|
|
1278
|
-
reason: string;
|
|
1279
1278
|
recommendation: {
|
|
1280
1279
|
priority: number;
|
|
1281
1280
|
action: string;
|
|
1282
1281
|
details: string;
|
|
1283
1282
|
timing: string;
|
|
1284
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1285
1283
|
confidence?: number | undefined;
|
|
1284
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1286
1285
|
materials?: {
|
|
1287
1286
|
name: string;
|
|
1288
1287
|
unit: string;
|
|
@@ -1298,17 +1297,17 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1298
1297
|
estimatedTime?: string | undefined;
|
|
1299
1298
|
riskLevel?: string | undefined;
|
|
1300
1299
|
};
|
|
1300
|
+
reason: string;
|
|
1301
1301
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1302
1302
|
taskId?: string | undefined;
|
|
1303
1303
|
}, {
|
|
1304
|
-
reason: string;
|
|
1305
1304
|
recommendation: {
|
|
1306
1305
|
priority: number;
|
|
1307
1306
|
action: string;
|
|
1308
1307
|
details: string;
|
|
1309
1308
|
timing: string;
|
|
1310
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1311
1309
|
confidence?: number | undefined;
|
|
1310
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1312
1311
|
materials?: {
|
|
1313
1312
|
name: string;
|
|
1314
1313
|
unit: string;
|
|
@@ -1324,6 +1323,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1324
1323
|
estimatedTime?: string | undefined;
|
|
1325
1324
|
riskLevel?: string | undefined;
|
|
1326
1325
|
};
|
|
1326
|
+
reason: string;
|
|
1327
1327
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1328
1328
|
taskId?: string | undefined;
|
|
1329
1329
|
}>, "many">;
|
|
@@ -1336,14 +1336,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1336
1336
|
tasksUpdated: number;
|
|
1337
1337
|
};
|
|
1338
1338
|
results: {
|
|
1339
|
-
reason: string;
|
|
1340
1339
|
recommendation: {
|
|
1341
1340
|
priority: number;
|
|
1342
1341
|
action: string;
|
|
1343
1342
|
details: string;
|
|
1344
1343
|
timing: string;
|
|
1345
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1346
1344
|
confidence?: number | undefined;
|
|
1345
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1347
1346
|
materials?: {
|
|
1348
1347
|
name: string;
|
|
1349
1348
|
unit: string;
|
|
@@ -1359,6 +1358,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1359
1358
|
estimatedTime?: string | undefined;
|
|
1360
1359
|
riskLevel?: string | undefined;
|
|
1361
1360
|
};
|
|
1361
|
+
reason: string;
|
|
1362
1362
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1363
1363
|
taskId?: string | undefined;
|
|
1364
1364
|
}[];
|
|
@@ -1371,14 +1371,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1371
1371
|
tasksUpdated: number;
|
|
1372
1372
|
};
|
|
1373
1373
|
results: {
|
|
1374
|
-
reason: string;
|
|
1375
1374
|
recommendation: {
|
|
1376
1375
|
priority: number;
|
|
1377
1376
|
action: string;
|
|
1378
1377
|
details: string;
|
|
1379
1378
|
timing: string;
|
|
1380
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1381
1379
|
confidence?: number | undefined;
|
|
1380
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1382
1381
|
materials?: {
|
|
1383
1382
|
name: string;
|
|
1384
1383
|
unit: string;
|
|
@@ -1394,6 +1393,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1394
1393
|
estimatedTime?: string | undefined;
|
|
1395
1394
|
riskLevel?: string | undefined;
|
|
1396
1395
|
};
|
|
1396
|
+
reason: string;
|
|
1397
1397
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1398
1398
|
taskId?: string | undefined;
|
|
1399
1399
|
}[];
|
|
@@ -1422,14 +1422,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1422
1422
|
tasksUpdated: number;
|
|
1423
1423
|
};
|
|
1424
1424
|
results: {
|
|
1425
|
-
reason: string;
|
|
1426
1425
|
recommendation: {
|
|
1427
1426
|
priority: number;
|
|
1428
1427
|
action: string;
|
|
1429
1428
|
details: string;
|
|
1430
1429
|
timing: string;
|
|
1431
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1432
1430
|
confidence?: number | undefined;
|
|
1431
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1433
1432
|
materials?: {
|
|
1434
1433
|
name: string;
|
|
1435
1434
|
unit: string;
|
|
@@ -1445,6 +1444,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1445
1444
|
estimatedTime?: string | undefined;
|
|
1446
1445
|
riskLevel?: string | undefined;
|
|
1447
1446
|
};
|
|
1447
|
+
reason: string;
|
|
1448
1448
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1449
1449
|
taskId?: string | undefined;
|
|
1450
1450
|
}[];
|
|
@@ -1470,14 +1470,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1470
1470
|
tasksUpdated: number;
|
|
1471
1471
|
};
|
|
1472
1472
|
results: {
|
|
1473
|
-
reason: string;
|
|
1474
1473
|
recommendation: {
|
|
1475
1474
|
priority: number;
|
|
1476
1475
|
action: string;
|
|
1477
1476
|
details: string;
|
|
1478
1477
|
timing: string;
|
|
1479
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1480
1478
|
confidence?: number | undefined;
|
|
1479
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1481
1480
|
materials?: {
|
|
1482
1481
|
name: string;
|
|
1483
1482
|
unit: string;
|
|
@@ -1493,6 +1492,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1493
1492
|
estimatedTime?: string | undefined;
|
|
1494
1493
|
riskLevel?: string | undefined;
|
|
1495
1494
|
};
|
|
1495
|
+
reason: string;
|
|
1496
1496
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1497
1497
|
taskId?: string | undefined;
|
|
1498
1498
|
}[];
|
|
@@ -1525,14 +1525,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1525
1525
|
tasksUpdated: number;
|
|
1526
1526
|
};
|
|
1527
1527
|
results: {
|
|
1528
|
-
reason: string;
|
|
1529
1528
|
recommendation: {
|
|
1530
1529
|
priority: number;
|
|
1531
1530
|
action: string;
|
|
1532
1531
|
details: string;
|
|
1533
1532
|
timing: string;
|
|
1534
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1535
1533
|
confidence?: number | undefined;
|
|
1534
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1536
1535
|
materials?: {
|
|
1537
1536
|
name: string;
|
|
1538
1537
|
unit: string;
|
|
@@ -1548,6 +1547,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1548
1547
|
estimatedTime?: string | undefined;
|
|
1549
1548
|
riskLevel?: string | undefined;
|
|
1550
1549
|
};
|
|
1550
|
+
reason: string;
|
|
1551
1551
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1552
1552
|
taskId?: string | undefined;
|
|
1553
1553
|
}[];
|
|
@@ -1580,14 +1580,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1580
1580
|
tasksUpdated: number;
|
|
1581
1581
|
};
|
|
1582
1582
|
results: {
|
|
1583
|
-
reason: string;
|
|
1584
1583
|
recommendation: {
|
|
1585
1584
|
priority: number;
|
|
1586
1585
|
action: string;
|
|
1587
1586
|
details: string;
|
|
1588
1587
|
timing: string;
|
|
1589
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1590
1588
|
confidence?: number | undefined;
|
|
1589
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1591
1590
|
materials?: {
|
|
1592
1591
|
name: string;
|
|
1593
1592
|
unit: string;
|
|
@@ -1603,6 +1602,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1603
1602
|
estimatedTime?: string | undefined;
|
|
1604
1603
|
riskLevel?: string | undefined;
|
|
1605
1604
|
};
|
|
1605
|
+
reason: string;
|
|
1606
1606
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1607
1607
|
taskId?: string | undefined;
|
|
1608
1608
|
}[];
|
|
@@ -1661,14 +1661,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1661
1661
|
tasksUpdated: number;
|
|
1662
1662
|
};
|
|
1663
1663
|
results: {
|
|
1664
|
-
reason: string;
|
|
1665
1664
|
recommendation: {
|
|
1666
1665
|
priority: number;
|
|
1667
1666
|
action: string;
|
|
1668
1667
|
details: string;
|
|
1669
1668
|
timing: string;
|
|
1670
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1671
1669
|
confidence?: number | undefined;
|
|
1670
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1672
1671
|
materials?: {
|
|
1673
1672
|
name: string;
|
|
1674
1673
|
unit: string;
|
|
@@ -1684,6 +1683,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1684
1683
|
estimatedTime?: string | undefined;
|
|
1685
1684
|
riskLevel?: string | undefined;
|
|
1686
1685
|
};
|
|
1686
|
+
reason: string;
|
|
1687
1687
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1688
1688
|
taskId?: string | undefined;
|
|
1689
1689
|
}[];
|
|
@@ -1728,14 +1728,13 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1728
1728
|
tasksUpdated: number;
|
|
1729
1729
|
};
|
|
1730
1730
|
results: {
|
|
1731
|
-
reason: string;
|
|
1732
1731
|
recommendation: {
|
|
1733
1732
|
priority: number;
|
|
1734
1733
|
action: string;
|
|
1735
1734
|
details: string;
|
|
1736
1735
|
timing: string;
|
|
1737
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1738
1736
|
confidence?: number | undefined;
|
|
1737
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1739
1738
|
materials?: {
|
|
1740
1739
|
name: string;
|
|
1741
1740
|
unit: string;
|
|
@@ -1751,6 +1750,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1751
1750
|
estimatedTime?: string | undefined;
|
|
1752
1751
|
riskLevel?: string | undefined;
|
|
1753
1752
|
};
|
|
1753
|
+
reason: string;
|
|
1754
1754
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1755
1755
|
taskId?: string | undefined;
|
|
1756
1756
|
}[];
|
|
@@ -1846,8 +1846,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1846
1846
|
action: string;
|
|
1847
1847
|
details: string;
|
|
1848
1848
|
timing: string;
|
|
1849
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1850
1849
|
confidence?: number | undefined;
|
|
1850
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1851
1851
|
materials?: {
|
|
1852
1852
|
name: string;
|
|
1853
1853
|
unit: string;
|
|
@@ -1867,8 +1867,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1867
1867
|
action: string;
|
|
1868
1868
|
details: string;
|
|
1869
1869
|
timing: string;
|
|
1870
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1871
1870
|
confidence?: number | undefined;
|
|
1871
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1872
1872
|
materials?: {
|
|
1873
1873
|
name: string;
|
|
1874
1874
|
unit: string;
|
|
@@ -1888,14 +1888,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1888
1888
|
taskId: z.ZodOptional<z.ZodString>;
|
|
1889
1889
|
reason: z.ZodString;
|
|
1890
1890
|
}, "strip", z.ZodTypeAny, {
|
|
1891
|
-
reason: string;
|
|
1892
1891
|
recommendation: {
|
|
1893
1892
|
priority: number;
|
|
1894
1893
|
action: string;
|
|
1895
1894
|
details: string;
|
|
1896
1895
|
timing: string;
|
|
1897
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1898
1896
|
confidence?: number | undefined;
|
|
1897
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1899
1898
|
materials?: {
|
|
1900
1899
|
name: string;
|
|
1901
1900
|
unit: string;
|
|
@@ -1911,17 +1910,17 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1911
1910
|
estimatedTime?: string | undefined;
|
|
1912
1911
|
riskLevel?: string | undefined;
|
|
1913
1912
|
};
|
|
1913
|
+
reason: string;
|
|
1914
1914
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1915
1915
|
taskId?: string | undefined;
|
|
1916
1916
|
}, {
|
|
1917
|
-
reason: string;
|
|
1918
1917
|
recommendation: {
|
|
1919
1918
|
priority: number;
|
|
1920
1919
|
action: string;
|
|
1921
1920
|
details: string;
|
|
1922
1921
|
timing: string;
|
|
1923
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1924
1922
|
confidence?: number | undefined;
|
|
1923
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1925
1924
|
materials?: {
|
|
1926
1925
|
name: string;
|
|
1927
1926
|
unit: string;
|
|
@@ -1937,6 +1936,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1937
1936
|
estimatedTime?: string | undefined;
|
|
1938
1937
|
riskLevel?: string | undefined;
|
|
1939
1938
|
};
|
|
1939
|
+
reason: string;
|
|
1940
1940
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1941
1941
|
taskId?: string | undefined;
|
|
1942
1942
|
}>, "many">;
|
|
@@ -1949,14 +1949,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1949
1949
|
tasksUpdated: number;
|
|
1950
1950
|
};
|
|
1951
1951
|
results: {
|
|
1952
|
-
reason: string;
|
|
1953
1952
|
recommendation: {
|
|
1954
1953
|
priority: number;
|
|
1955
1954
|
action: string;
|
|
1956
1955
|
details: string;
|
|
1957
1956
|
timing: string;
|
|
1958
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1959
1957
|
confidence?: number | undefined;
|
|
1958
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1960
1959
|
materials?: {
|
|
1961
1960
|
name: string;
|
|
1962
1961
|
unit: string;
|
|
@@ -1972,6 +1971,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1972
1971
|
estimatedTime?: string | undefined;
|
|
1973
1972
|
riskLevel?: string | undefined;
|
|
1974
1973
|
};
|
|
1974
|
+
reason: string;
|
|
1975
1975
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
1976
1976
|
taskId?: string | undefined;
|
|
1977
1977
|
}[];
|
|
@@ -1984,14 +1984,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1984
1984
|
tasksUpdated: number;
|
|
1985
1985
|
};
|
|
1986
1986
|
results: {
|
|
1987
|
-
reason: string;
|
|
1988
1987
|
recommendation: {
|
|
1989
1988
|
priority: number;
|
|
1990
1989
|
action: string;
|
|
1991
1990
|
details: string;
|
|
1992
1991
|
timing: string;
|
|
1993
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1994
1992
|
confidence?: number | undefined;
|
|
1993
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1995
1994
|
materials?: {
|
|
1996
1995
|
name: string;
|
|
1997
1996
|
unit: string;
|
|
@@ -2007,6 +2006,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2007
2006
|
estimatedTime?: string | undefined;
|
|
2008
2007
|
riskLevel?: string | undefined;
|
|
2009
2008
|
};
|
|
2009
|
+
reason: string;
|
|
2010
2010
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2011
2011
|
taskId?: string | undefined;
|
|
2012
2012
|
}[];
|
|
@@ -2035,14 +2035,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2035
2035
|
tasksUpdated: number;
|
|
2036
2036
|
};
|
|
2037
2037
|
results: {
|
|
2038
|
-
reason: string;
|
|
2039
2038
|
recommendation: {
|
|
2040
2039
|
priority: number;
|
|
2041
2040
|
action: string;
|
|
2042
2041
|
details: string;
|
|
2043
2042
|
timing: string;
|
|
2044
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2045
2043
|
confidence?: number | undefined;
|
|
2044
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2046
2045
|
materials?: {
|
|
2047
2046
|
name: string;
|
|
2048
2047
|
unit: string;
|
|
@@ -2058,6 +2057,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2058
2057
|
estimatedTime?: string | undefined;
|
|
2059
2058
|
riskLevel?: string | undefined;
|
|
2060
2059
|
};
|
|
2060
|
+
reason: string;
|
|
2061
2061
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2062
2062
|
taskId?: string | undefined;
|
|
2063
2063
|
}[];
|
|
@@ -2083,14 +2083,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2083
2083
|
tasksUpdated: number;
|
|
2084
2084
|
};
|
|
2085
2085
|
results: {
|
|
2086
|
-
reason: string;
|
|
2087
2086
|
recommendation: {
|
|
2088
2087
|
priority: number;
|
|
2089
2088
|
action: string;
|
|
2090
2089
|
details: string;
|
|
2091
2090
|
timing: string;
|
|
2092
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2093
2091
|
confidence?: number | undefined;
|
|
2092
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2094
2093
|
materials?: {
|
|
2095
2094
|
name: string;
|
|
2096
2095
|
unit: string;
|
|
@@ -2106,6 +2105,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2106
2105
|
estimatedTime?: string | undefined;
|
|
2107
2106
|
riskLevel?: string | undefined;
|
|
2108
2107
|
};
|
|
2108
|
+
reason: string;
|
|
2109
2109
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2110
2110
|
taskId?: string | undefined;
|
|
2111
2111
|
}[];
|
|
@@ -2138,14 +2138,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2138
2138
|
tasksUpdated: number;
|
|
2139
2139
|
};
|
|
2140
2140
|
results: {
|
|
2141
|
-
reason: string;
|
|
2142
2141
|
recommendation: {
|
|
2143
2142
|
priority: number;
|
|
2144
2143
|
action: string;
|
|
2145
2144
|
details: string;
|
|
2146
2145
|
timing: string;
|
|
2147
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2148
2146
|
confidence?: number | undefined;
|
|
2147
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2149
2148
|
materials?: {
|
|
2150
2149
|
name: string;
|
|
2151
2150
|
unit: string;
|
|
@@ -2161,6 +2160,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2161
2160
|
estimatedTime?: string | undefined;
|
|
2162
2161
|
riskLevel?: string | undefined;
|
|
2163
2162
|
};
|
|
2163
|
+
reason: string;
|
|
2164
2164
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2165
2165
|
taskId?: string | undefined;
|
|
2166
2166
|
}[];
|
|
@@ -2193,14 +2193,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2193
2193
|
tasksUpdated: number;
|
|
2194
2194
|
};
|
|
2195
2195
|
results: {
|
|
2196
|
-
reason: string;
|
|
2197
2196
|
recommendation: {
|
|
2198
2197
|
priority: number;
|
|
2199
2198
|
action: string;
|
|
2200
2199
|
details: string;
|
|
2201
2200
|
timing: string;
|
|
2202
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2203
2201
|
confidence?: number | undefined;
|
|
2202
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2204
2203
|
materials?: {
|
|
2205
2204
|
name: string;
|
|
2206
2205
|
unit: string;
|
|
@@ -2216,6 +2215,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2216
2215
|
estimatedTime?: string | undefined;
|
|
2217
2216
|
riskLevel?: string | undefined;
|
|
2218
2217
|
};
|
|
2218
|
+
reason: string;
|
|
2219
2219
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2220
2220
|
taskId?: string | undefined;
|
|
2221
2221
|
}[];
|
|
@@ -2274,14 +2274,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2274
2274
|
tasksUpdated: number;
|
|
2275
2275
|
};
|
|
2276
2276
|
results: {
|
|
2277
|
-
reason: string;
|
|
2278
2277
|
recommendation: {
|
|
2279
2278
|
priority: number;
|
|
2280
2279
|
action: string;
|
|
2281
2280
|
details: string;
|
|
2282
2281
|
timing: string;
|
|
2283
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2284
2282
|
confidence?: number | undefined;
|
|
2283
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2285
2284
|
materials?: {
|
|
2286
2285
|
name: string;
|
|
2287
2286
|
unit: string;
|
|
@@ -2297,6 +2296,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2297
2296
|
estimatedTime?: string | undefined;
|
|
2298
2297
|
riskLevel?: string | undefined;
|
|
2299
2298
|
};
|
|
2299
|
+
reason: string;
|
|
2300
2300
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2301
2301
|
taskId?: string | undefined;
|
|
2302
2302
|
}[];
|
|
@@ -2341,14 +2341,13 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2341
2341
|
tasksUpdated: number;
|
|
2342
2342
|
};
|
|
2343
2343
|
results: {
|
|
2344
|
-
reason: string;
|
|
2345
2344
|
recommendation: {
|
|
2346
2345
|
priority: number;
|
|
2347
2346
|
action: string;
|
|
2348
2347
|
details: string;
|
|
2349
2348
|
timing: string;
|
|
2350
|
-
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2351
2349
|
confidence?: number | undefined;
|
|
2350
|
+
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2352
2351
|
materials?: {
|
|
2353
2352
|
name: string;
|
|
2354
2353
|
unit: string;
|
|
@@ -2364,6 +2363,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2364
2363
|
estimatedTime?: string | undefined;
|
|
2365
2364
|
riskLevel?: string | undefined;
|
|
2366
2365
|
};
|
|
2366
|
+
reason: string;
|
|
2367
2367
|
outcome: "error" | "created" | "updated" | "skipped";
|
|
2368
2368
|
taskId?: string | undefined;
|
|
2369
2369
|
}[];
|