@deepintel-ltd/farmpro-contracts 1.15.4 → 1.15.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/routes/agent-workflows.routes.d.ts +56 -56
- package/dist/routes/commodity-deals.routes.d.ts +561 -6
- package/dist/routes/commodity-deals.routes.d.ts.map +1 -1
- package/dist/routes/commodity-deals.routes.js +17 -1
- package/dist/routes/fertigation.routes.d.ts +160 -160
- package/dist/routes/field-activities.routes.d.ts +172 -172
- package/dist/routes/field-monitoring.routes.d.ts +50 -50
- package/dist/routes/field-observations.routes.d.ts +40 -40
- package/dist/routes/fields.routes.d.ts +461 -0
- package/dist/routes/fields.routes.d.ts.map +1 -1
- package/dist/routes/fields.routes.js +19 -1
- package/dist/routes/finance.routes.d.ts +78 -78
- package/dist/routes/harvest.routes.d.ts +72 -72
- package/dist/routes/inventory.routes.d.ts +42 -42
- package/dist/routes/live-monitor.routes.d.ts +6 -6
- package/dist/routes/measurements.routes.d.ts +6 -6
- package/dist/routes/monitoring-visualization.routes.d.ts +12 -12
- package/dist/routes/prescription-maps.routes.d.ts +28 -28
- package/dist/routes/soil-tests.routes.d.ts +80 -80
- package/dist/routes/suppliers.routes.d.ts +80 -80
- package/dist/routes/waybills.routes.d.ts +56 -56
- package/dist/routes/weather.routes.d.ts +24 -24
- package/dist/routes/yield-prediction.routes.d.ts +36 -36
- package/dist/schemas/agent-workflows.schemas.d.ts +64 -64
- package/dist/schemas/commodity-deals.schemas.d.ts +728 -13
- package/dist/schemas/commodity-deals.schemas.d.ts.map +1 -1
- package/dist/schemas/commodity-deals.schemas.js +68 -1
- package/dist/schemas/fertigation.schemas.d.ts +72 -72
- package/dist/schemas/field-activities.schemas.d.ts +148 -148
- package/dist/schemas/field-monitoring.schemas.d.ts +30 -30
- package/dist/schemas/field-observations.schemas.d.ts +34 -34
- package/dist/schemas/fields.schemas.d.ts +286 -0
- package/dist/schemas/fields.schemas.d.ts.map +1 -1
- package/dist/schemas/fields.schemas.js +26 -0
- package/dist/schemas/finance.schemas.d.ts +94 -94
- package/dist/schemas/harvest.schemas.d.ts +80 -80
- package/dist/schemas/inventory.schemas.d.ts +46 -46
- package/dist/schemas/live-monitor.schemas.d.ts +10 -10
- package/dist/schemas/measurements.schemas.d.ts +6 -6
- package/dist/schemas/monitoring-visualization.schemas.d.ts +14 -14
- package/dist/schemas/prescription-maps.schemas.d.ts +22 -22
- package/dist/schemas/recommendations.schemas.d.ts +6 -6
- package/dist/schemas/soil-tests.schemas.d.ts +84 -84
- package/dist/schemas/suppliers.schemas.d.ts +84 -84
- package/dist/schemas/waybills.schemas.d.ts +48 -48
- package/dist/schemas/weather.schemas.d.ts +68 -68
- package/dist/schemas/yield-prediction.schemas.d.ts +24 -24
- package/package.json +1 -1
|
@@ -27,16 +27,16 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
27
27
|
availability: z.ZodOptional<z.ZodString>;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
29
|
name: string;
|
|
30
|
-
unit: string;
|
|
31
30
|
quantity: number;
|
|
31
|
+
unit: string;
|
|
32
32
|
inventoryItemId?: string | undefined;
|
|
33
33
|
totalCost?: number | undefined;
|
|
34
34
|
costPerUnit?: number | undefined;
|
|
35
35
|
availability?: string | undefined;
|
|
36
36
|
}, {
|
|
37
37
|
name: string;
|
|
38
|
-
unit: string;
|
|
39
38
|
quantity: number;
|
|
39
|
+
unit: string;
|
|
40
40
|
inventoryItemId?: string | undefined;
|
|
41
41
|
totalCost?: number | undefined;
|
|
42
42
|
costPerUnit?: number | undefined;
|
|
@@ -56,8 +56,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
56
56
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
57
57
|
materials?: {
|
|
58
58
|
name: string;
|
|
59
|
-
unit: string;
|
|
60
59
|
quantity: number;
|
|
60
|
+
unit: string;
|
|
61
61
|
inventoryItemId?: string | undefined;
|
|
62
62
|
totalCost?: number | undefined;
|
|
63
63
|
costPerUnit?: number | undefined;
|
|
@@ -77,8 +77,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
77
77
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
78
78
|
materials?: {
|
|
79
79
|
name: string;
|
|
80
|
-
unit: string;
|
|
81
80
|
quantity: number;
|
|
81
|
+
unit: string;
|
|
82
82
|
inventoryItemId?: string | undefined;
|
|
83
83
|
totalCost?: number | undefined;
|
|
84
84
|
costPerUnit?: number | undefined;
|
|
@@ -103,8 +103,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
103
103
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
104
104
|
materials?: {
|
|
105
105
|
name: string;
|
|
106
|
-
unit: string;
|
|
107
106
|
quantity: number;
|
|
107
|
+
unit: string;
|
|
108
108
|
inventoryItemId?: string | undefined;
|
|
109
109
|
totalCost?: number | undefined;
|
|
110
110
|
costPerUnit?: number | undefined;
|
|
@@ -129,8 +129,8 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
129
129
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
130
130
|
materials?: {
|
|
131
131
|
name: string;
|
|
132
|
-
unit: string;
|
|
133
132
|
quantity: number;
|
|
133
|
+
unit: string;
|
|
134
134
|
inventoryItemId?: string | undefined;
|
|
135
135
|
totalCost?: number | undefined;
|
|
136
136
|
costPerUnit?: number | undefined;
|
|
@@ -181,16 +181,16 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
181
181
|
availability: z.ZodOptional<z.ZodString>;
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
183
|
name: string;
|
|
184
|
-
unit: string;
|
|
185
184
|
quantity: number;
|
|
185
|
+
unit: string;
|
|
186
186
|
inventoryItemId?: string | undefined;
|
|
187
187
|
totalCost?: number | undefined;
|
|
188
188
|
costPerUnit?: number | undefined;
|
|
189
189
|
availability?: string | undefined;
|
|
190
190
|
}, {
|
|
191
191
|
name: string;
|
|
192
|
-
unit: string;
|
|
193
192
|
quantity: number;
|
|
193
|
+
unit: string;
|
|
194
194
|
inventoryItemId?: string | undefined;
|
|
195
195
|
totalCost?: number | undefined;
|
|
196
196
|
costPerUnit?: number | undefined;
|
|
@@ -210,8 +210,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
210
210
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
211
211
|
materials?: {
|
|
212
212
|
name: string;
|
|
213
|
-
unit: string;
|
|
214
213
|
quantity: number;
|
|
214
|
+
unit: string;
|
|
215
215
|
inventoryItemId?: string | undefined;
|
|
216
216
|
totalCost?: number | undefined;
|
|
217
217
|
costPerUnit?: number | undefined;
|
|
@@ -231,8 +231,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
231
231
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
232
232
|
materials?: {
|
|
233
233
|
name: string;
|
|
234
|
-
unit: string;
|
|
235
234
|
quantity: number;
|
|
235
|
+
unit: string;
|
|
236
236
|
inventoryItemId?: string | undefined;
|
|
237
237
|
totalCost?: number | undefined;
|
|
238
238
|
costPerUnit?: number | undefined;
|
|
@@ -257,8 +257,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
257
257
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
258
258
|
materials?: {
|
|
259
259
|
name: string;
|
|
260
|
-
unit: string;
|
|
261
260
|
quantity: number;
|
|
261
|
+
unit: string;
|
|
262
262
|
inventoryItemId?: string | undefined;
|
|
263
263
|
totalCost?: number | undefined;
|
|
264
264
|
costPerUnit?: number | undefined;
|
|
@@ -283,8 +283,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
283
283
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
284
284
|
materials?: {
|
|
285
285
|
name: string;
|
|
286
|
-
unit: string;
|
|
287
286
|
quantity: number;
|
|
287
|
+
unit: string;
|
|
288
288
|
inventoryItemId?: string | undefined;
|
|
289
289
|
totalCost?: number | undefined;
|
|
290
290
|
costPerUnit?: number | undefined;
|
|
@@ -318,8 +318,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
318
318
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
319
319
|
materials?: {
|
|
320
320
|
name: string;
|
|
321
|
-
unit: string;
|
|
322
321
|
quantity: number;
|
|
322
|
+
unit: string;
|
|
323
323
|
inventoryItemId?: string | undefined;
|
|
324
324
|
totalCost?: number | undefined;
|
|
325
325
|
costPerUnit?: number | undefined;
|
|
@@ -353,8 +353,8 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
353
353
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
354
354
|
materials?: {
|
|
355
355
|
name: string;
|
|
356
|
-
unit: string;
|
|
357
356
|
quantity: number;
|
|
357
|
+
unit: string;
|
|
358
358
|
inventoryItemId?: string | undefined;
|
|
359
359
|
totalCost?: number | undefined;
|
|
360
360
|
costPerUnit?: number | undefined;
|
|
@@ -415,16 +415,16 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
415
415
|
availability: z.ZodOptional<z.ZodString>;
|
|
416
416
|
}, "strip", z.ZodTypeAny, {
|
|
417
417
|
name: string;
|
|
418
|
-
unit: string;
|
|
419
418
|
quantity: number;
|
|
419
|
+
unit: string;
|
|
420
420
|
inventoryItemId?: string | undefined;
|
|
421
421
|
totalCost?: number | undefined;
|
|
422
422
|
costPerUnit?: number | undefined;
|
|
423
423
|
availability?: string | undefined;
|
|
424
424
|
}, {
|
|
425
425
|
name: string;
|
|
426
|
-
unit: string;
|
|
427
426
|
quantity: number;
|
|
427
|
+
unit: string;
|
|
428
428
|
inventoryItemId?: string | undefined;
|
|
429
429
|
totalCost?: number | undefined;
|
|
430
430
|
costPerUnit?: number | undefined;
|
|
@@ -444,8 +444,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
444
444
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
445
445
|
materials?: {
|
|
446
446
|
name: string;
|
|
447
|
-
unit: string;
|
|
448
447
|
quantity: number;
|
|
448
|
+
unit: string;
|
|
449
449
|
inventoryItemId?: string | undefined;
|
|
450
450
|
totalCost?: number | undefined;
|
|
451
451
|
costPerUnit?: number | undefined;
|
|
@@ -465,8 +465,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
465
465
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
466
466
|
materials?: {
|
|
467
467
|
name: string;
|
|
468
|
-
unit: string;
|
|
469
468
|
quantity: number;
|
|
469
|
+
unit: string;
|
|
470
470
|
inventoryItemId?: string | undefined;
|
|
471
471
|
totalCost?: number | undefined;
|
|
472
472
|
costPerUnit?: number | undefined;
|
|
@@ -491,8 +491,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
491
491
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
492
492
|
materials?: {
|
|
493
493
|
name: string;
|
|
494
|
-
unit: string;
|
|
495
494
|
quantity: number;
|
|
495
|
+
unit: string;
|
|
496
496
|
inventoryItemId?: string | undefined;
|
|
497
497
|
totalCost?: number | undefined;
|
|
498
498
|
costPerUnit?: number | undefined;
|
|
@@ -517,8 +517,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
517
517
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
518
518
|
materials?: {
|
|
519
519
|
name: string;
|
|
520
|
-
unit: string;
|
|
521
520
|
quantity: number;
|
|
521
|
+
unit: string;
|
|
522
522
|
inventoryItemId?: string | undefined;
|
|
523
523
|
totalCost?: number | undefined;
|
|
524
524
|
costPerUnit?: number | undefined;
|
|
@@ -552,8 +552,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
552
552
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
553
553
|
materials?: {
|
|
554
554
|
name: string;
|
|
555
|
-
unit: string;
|
|
556
555
|
quantity: number;
|
|
556
|
+
unit: string;
|
|
557
557
|
inventoryItemId?: string | undefined;
|
|
558
558
|
totalCost?: number | undefined;
|
|
559
559
|
costPerUnit?: number | undefined;
|
|
@@ -587,8 +587,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
587
587
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
588
588
|
materials?: {
|
|
589
589
|
name: string;
|
|
590
|
-
unit: string;
|
|
591
590
|
quantity: number;
|
|
591
|
+
unit: string;
|
|
592
592
|
inventoryItemId?: string | undefined;
|
|
593
593
|
totalCost?: number | undefined;
|
|
594
594
|
costPerUnit?: number | undefined;
|
|
@@ -638,8 +638,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
638
638
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
639
639
|
materials?: {
|
|
640
640
|
name: string;
|
|
641
|
-
unit: string;
|
|
642
641
|
quantity: number;
|
|
642
|
+
unit: string;
|
|
643
643
|
inventoryItemId?: string | undefined;
|
|
644
644
|
totalCost?: number | undefined;
|
|
645
645
|
costPerUnit?: number | undefined;
|
|
@@ -686,8 +686,8 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
686
686
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
687
687
|
materials?: {
|
|
688
688
|
name: string;
|
|
689
|
-
unit: string;
|
|
690
689
|
quantity: number;
|
|
690
|
+
unit: string;
|
|
691
691
|
inventoryItemId?: string | undefined;
|
|
692
692
|
totalCost?: number | undefined;
|
|
693
693
|
costPerUnit?: number | undefined;
|
|
@@ -754,16 +754,16 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
754
754
|
availability: z.ZodOptional<z.ZodString>;
|
|
755
755
|
}, "strip", z.ZodTypeAny, {
|
|
756
756
|
name: string;
|
|
757
|
-
unit: string;
|
|
758
757
|
quantity: number;
|
|
758
|
+
unit: string;
|
|
759
759
|
inventoryItemId?: string | undefined;
|
|
760
760
|
totalCost?: number | undefined;
|
|
761
761
|
costPerUnit?: number | undefined;
|
|
762
762
|
availability?: string | undefined;
|
|
763
763
|
}, {
|
|
764
764
|
name: string;
|
|
765
|
-
unit: string;
|
|
766
765
|
quantity: number;
|
|
766
|
+
unit: string;
|
|
767
767
|
inventoryItemId?: string | undefined;
|
|
768
768
|
totalCost?: number | undefined;
|
|
769
769
|
costPerUnit?: number | undefined;
|
|
@@ -783,8 +783,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
783
783
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
784
784
|
materials?: {
|
|
785
785
|
name: string;
|
|
786
|
-
unit: string;
|
|
787
786
|
quantity: number;
|
|
787
|
+
unit: string;
|
|
788
788
|
inventoryItemId?: string | undefined;
|
|
789
789
|
totalCost?: number | undefined;
|
|
790
790
|
costPerUnit?: number | undefined;
|
|
@@ -804,8 +804,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
804
804
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
805
805
|
materials?: {
|
|
806
806
|
name: string;
|
|
807
|
-
unit: string;
|
|
808
807
|
quantity: number;
|
|
808
|
+
unit: string;
|
|
809
809
|
inventoryItemId?: string | undefined;
|
|
810
810
|
totalCost?: number | undefined;
|
|
811
811
|
costPerUnit?: number | undefined;
|
|
@@ -830,8 +830,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
830
830
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
831
831
|
materials?: {
|
|
832
832
|
name: string;
|
|
833
|
-
unit: string;
|
|
834
833
|
quantity: number;
|
|
834
|
+
unit: string;
|
|
835
835
|
inventoryItemId?: string | undefined;
|
|
836
836
|
totalCost?: number | undefined;
|
|
837
837
|
costPerUnit?: number | undefined;
|
|
@@ -856,8 +856,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
856
856
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
857
857
|
materials?: {
|
|
858
858
|
name: string;
|
|
859
|
-
unit: string;
|
|
860
859
|
quantity: number;
|
|
860
|
+
unit: string;
|
|
861
861
|
inventoryItemId?: string | undefined;
|
|
862
862
|
totalCost?: number | undefined;
|
|
863
863
|
costPerUnit?: number | undefined;
|
|
@@ -891,8 +891,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
891
891
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
892
892
|
materials?: {
|
|
893
893
|
name: string;
|
|
894
|
-
unit: string;
|
|
895
894
|
quantity: number;
|
|
895
|
+
unit: string;
|
|
896
896
|
inventoryItemId?: string | undefined;
|
|
897
897
|
totalCost?: number | undefined;
|
|
898
898
|
costPerUnit?: number | undefined;
|
|
@@ -926,8 +926,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
926
926
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
927
927
|
materials?: {
|
|
928
928
|
name: string;
|
|
929
|
-
unit: string;
|
|
930
929
|
quantity: number;
|
|
930
|
+
unit: string;
|
|
931
931
|
inventoryItemId?: string | undefined;
|
|
932
932
|
totalCost?: number | undefined;
|
|
933
933
|
costPerUnit?: number | undefined;
|
|
@@ -977,8 +977,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
977
977
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
978
978
|
materials?: {
|
|
979
979
|
name: string;
|
|
980
|
-
unit: string;
|
|
981
980
|
quantity: number;
|
|
981
|
+
unit: string;
|
|
982
982
|
inventoryItemId?: string | undefined;
|
|
983
983
|
totalCost?: number | undefined;
|
|
984
984
|
costPerUnit?: number | undefined;
|
|
@@ -1025,8 +1025,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1025
1025
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1026
1026
|
materials?: {
|
|
1027
1027
|
name: string;
|
|
1028
|
-
unit: string;
|
|
1029
1028
|
quantity: number;
|
|
1029
|
+
unit: string;
|
|
1030
1030
|
inventoryItemId?: string | undefined;
|
|
1031
1031
|
totalCost?: number | undefined;
|
|
1032
1032
|
costPerUnit?: number | undefined;
|
|
@@ -1080,8 +1080,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1080
1080
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1081
1081
|
materials?: {
|
|
1082
1082
|
name: string;
|
|
1083
|
-
unit: string;
|
|
1084
1083
|
quantity: number;
|
|
1084
|
+
unit: string;
|
|
1085
1085
|
inventoryItemId?: string | undefined;
|
|
1086
1086
|
totalCost?: number | undefined;
|
|
1087
1087
|
costPerUnit?: number | undefined;
|
|
@@ -1135,8 +1135,8 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1135
1135
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1136
1136
|
materials?: {
|
|
1137
1137
|
name: string;
|
|
1138
|
-
unit: string;
|
|
1139
1138
|
quantity: number;
|
|
1139
|
+
unit: string;
|
|
1140
1140
|
inventoryItemId?: string | undefined;
|
|
1141
1141
|
totalCost?: number | undefined;
|
|
1142
1142
|
costPerUnit?: number | undefined;
|
|
@@ -1208,16 +1208,16 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1208
1208
|
availability: z.ZodOptional<z.ZodString>;
|
|
1209
1209
|
}, "strip", z.ZodTypeAny, {
|
|
1210
1210
|
name: string;
|
|
1211
|
-
unit: string;
|
|
1212
1211
|
quantity: number;
|
|
1212
|
+
unit: string;
|
|
1213
1213
|
inventoryItemId?: string | undefined;
|
|
1214
1214
|
totalCost?: number | undefined;
|
|
1215
1215
|
costPerUnit?: number | undefined;
|
|
1216
1216
|
availability?: string | undefined;
|
|
1217
1217
|
}, {
|
|
1218
1218
|
name: string;
|
|
1219
|
-
unit: string;
|
|
1220
1219
|
quantity: number;
|
|
1220
|
+
unit: string;
|
|
1221
1221
|
inventoryItemId?: string | undefined;
|
|
1222
1222
|
totalCost?: number | undefined;
|
|
1223
1223
|
costPerUnit?: number | undefined;
|
|
@@ -1237,8 +1237,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1237
1237
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1238
1238
|
materials?: {
|
|
1239
1239
|
name: string;
|
|
1240
|
-
unit: string;
|
|
1241
1240
|
quantity: number;
|
|
1241
|
+
unit: string;
|
|
1242
1242
|
inventoryItemId?: string | undefined;
|
|
1243
1243
|
totalCost?: number | undefined;
|
|
1244
1244
|
costPerUnit?: number | undefined;
|
|
@@ -1258,8 +1258,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1258
1258
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1259
1259
|
materials?: {
|
|
1260
1260
|
name: string;
|
|
1261
|
-
unit: string;
|
|
1262
1261
|
quantity: number;
|
|
1262
|
+
unit: string;
|
|
1263
1263
|
inventoryItemId?: string | undefined;
|
|
1264
1264
|
totalCost?: number | undefined;
|
|
1265
1265
|
costPerUnit?: number | undefined;
|
|
@@ -1284,8 +1284,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1284
1284
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1285
1285
|
materials?: {
|
|
1286
1286
|
name: string;
|
|
1287
|
-
unit: string;
|
|
1288
1287
|
quantity: number;
|
|
1288
|
+
unit: string;
|
|
1289
1289
|
inventoryItemId?: string | undefined;
|
|
1290
1290
|
totalCost?: number | undefined;
|
|
1291
1291
|
costPerUnit?: number | undefined;
|
|
@@ -1310,8 +1310,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1310
1310
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1311
1311
|
materials?: {
|
|
1312
1312
|
name: string;
|
|
1313
|
-
unit: string;
|
|
1314
1313
|
quantity: number;
|
|
1314
|
+
unit: string;
|
|
1315
1315
|
inventoryItemId?: string | undefined;
|
|
1316
1316
|
totalCost?: number | undefined;
|
|
1317
1317
|
costPerUnit?: number | undefined;
|
|
@@ -1345,8 +1345,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1345
1345
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1346
1346
|
materials?: {
|
|
1347
1347
|
name: string;
|
|
1348
|
-
unit: string;
|
|
1349
1348
|
quantity: number;
|
|
1349
|
+
unit: string;
|
|
1350
1350
|
inventoryItemId?: string | undefined;
|
|
1351
1351
|
totalCost?: number | undefined;
|
|
1352
1352
|
costPerUnit?: number | undefined;
|
|
@@ -1380,8 +1380,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1380
1380
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1381
1381
|
materials?: {
|
|
1382
1382
|
name: string;
|
|
1383
|
-
unit: string;
|
|
1384
1383
|
quantity: number;
|
|
1384
|
+
unit: string;
|
|
1385
1385
|
inventoryItemId?: string | undefined;
|
|
1386
1386
|
totalCost?: number | undefined;
|
|
1387
1387
|
costPerUnit?: number | undefined;
|
|
@@ -1431,8 +1431,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1431
1431
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1432
1432
|
materials?: {
|
|
1433
1433
|
name: string;
|
|
1434
|
-
unit: string;
|
|
1435
1434
|
quantity: number;
|
|
1435
|
+
unit: string;
|
|
1436
1436
|
inventoryItemId?: string | undefined;
|
|
1437
1437
|
totalCost?: number | undefined;
|
|
1438
1438
|
costPerUnit?: number | undefined;
|
|
@@ -1479,8 +1479,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1479
1479
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1480
1480
|
materials?: {
|
|
1481
1481
|
name: string;
|
|
1482
|
-
unit: string;
|
|
1483
1482
|
quantity: number;
|
|
1483
|
+
unit: string;
|
|
1484
1484
|
inventoryItemId?: string | undefined;
|
|
1485
1485
|
totalCost?: number | undefined;
|
|
1486
1486
|
costPerUnit?: number | undefined;
|
|
@@ -1534,8 +1534,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1534
1534
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1535
1535
|
materials?: {
|
|
1536
1536
|
name: string;
|
|
1537
|
-
unit: string;
|
|
1538
1537
|
quantity: number;
|
|
1538
|
+
unit: string;
|
|
1539
1539
|
inventoryItemId?: string | undefined;
|
|
1540
1540
|
totalCost?: number | undefined;
|
|
1541
1541
|
costPerUnit?: number | undefined;
|
|
@@ -1589,8 +1589,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1589
1589
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1590
1590
|
materials?: {
|
|
1591
1591
|
name: string;
|
|
1592
|
-
unit: string;
|
|
1593
1592
|
quantity: number;
|
|
1593
|
+
unit: string;
|
|
1594
1594
|
inventoryItemId?: string | undefined;
|
|
1595
1595
|
totalCost?: number | undefined;
|
|
1596
1596
|
costPerUnit?: number | undefined;
|
|
@@ -1670,8 +1670,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1670
1670
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1671
1671
|
materials?: {
|
|
1672
1672
|
name: string;
|
|
1673
|
-
unit: string;
|
|
1674
1673
|
quantity: number;
|
|
1674
|
+
unit: string;
|
|
1675
1675
|
inventoryItemId?: string | undefined;
|
|
1676
1676
|
totalCost?: number | undefined;
|
|
1677
1677
|
costPerUnit?: number | undefined;
|
|
@@ -1737,8 +1737,8 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1737
1737
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1738
1738
|
materials?: {
|
|
1739
1739
|
name: string;
|
|
1740
|
-
unit: string;
|
|
1741
1740
|
quantity: number;
|
|
1741
|
+
unit: string;
|
|
1742
1742
|
inventoryItemId?: string | undefined;
|
|
1743
1743
|
totalCost?: number | undefined;
|
|
1744
1744
|
costPerUnit?: number | undefined;
|
|
@@ -1821,16 +1821,16 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1821
1821
|
availability: z.ZodOptional<z.ZodString>;
|
|
1822
1822
|
}, "strip", z.ZodTypeAny, {
|
|
1823
1823
|
name: string;
|
|
1824
|
-
unit: string;
|
|
1825
1824
|
quantity: number;
|
|
1825
|
+
unit: string;
|
|
1826
1826
|
inventoryItemId?: string | undefined;
|
|
1827
1827
|
totalCost?: number | undefined;
|
|
1828
1828
|
costPerUnit?: number | undefined;
|
|
1829
1829
|
availability?: string | undefined;
|
|
1830
1830
|
}, {
|
|
1831
1831
|
name: string;
|
|
1832
|
-
unit: string;
|
|
1833
1832
|
quantity: number;
|
|
1833
|
+
unit: string;
|
|
1834
1834
|
inventoryItemId?: string | undefined;
|
|
1835
1835
|
totalCost?: number | undefined;
|
|
1836
1836
|
costPerUnit?: number | undefined;
|
|
@@ -1850,8 +1850,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1850
1850
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1851
1851
|
materials?: {
|
|
1852
1852
|
name: string;
|
|
1853
|
-
unit: string;
|
|
1854
1853
|
quantity: number;
|
|
1854
|
+
unit: string;
|
|
1855
1855
|
inventoryItemId?: string | undefined;
|
|
1856
1856
|
totalCost?: number | undefined;
|
|
1857
1857
|
costPerUnit?: number | undefined;
|
|
@@ -1871,8 +1871,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1871
1871
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1872
1872
|
materials?: {
|
|
1873
1873
|
name: string;
|
|
1874
|
-
unit: string;
|
|
1875
1874
|
quantity: number;
|
|
1875
|
+
unit: string;
|
|
1876
1876
|
inventoryItemId?: string | undefined;
|
|
1877
1877
|
totalCost?: number | undefined;
|
|
1878
1878
|
costPerUnit?: number | undefined;
|
|
@@ -1897,8 +1897,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1897
1897
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1898
1898
|
materials?: {
|
|
1899
1899
|
name: string;
|
|
1900
|
-
unit: string;
|
|
1901
1900
|
quantity: number;
|
|
1901
|
+
unit: string;
|
|
1902
1902
|
inventoryItemId?: string | undefined;
|
|
1903
1903
|
totalCost?: number | undefined;
|
|
1904
1904
|
costPerUnit?: number | undefined;
|
|
@@ -1923,8 +1923,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1923
1923
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1924
1924
|
materials?: {
|
|
1925
1925
|
name: string;
|
|
1926
|
-
unit: string;
|
|
1927
1926
|
quantity: number;
|
|
1927
|
+
unit: string;
|
|
1928
1928
|
inventoryItemId?: string | undefined;
|
|
1929
1929
|
totalCost?: number | undefined;
|
|
1930
1930
|
costPerUnit?: number | undefined;
|
|
@@ -1958,8 +1958,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1958
1958
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1959
1959
|
materials?: {
|
|
1960
1960
|
name: string;
|
|
1961
|
-
unit: string;
|
|
1962
1961
|
quantity: number;
|
|
1962
|
+
unit: string;
|
|
1963
1963
|
inventoryItemId?: string | undefined;
|
|
1964
1964
|
totalCost?: number | undefined;
|
|
1965
1965
|
costPerUnit?: number | undefined;
|
|
@@ -1993,8 +1993,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1993
1993
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
1994
1994
|
materials?: {
|
|
1995
1995
|
name: string;
|
|
1996
|
-
unit: string;
|
|
1997
1996
|
quantity: number;
|
|
1997
|
+
unit: string;
|
|
1998
1998
|
inventoryItemId?: string | undefined;
|
|
1999
1999
|
totalCost?: number | undefined;
|
|
2000
2000
|
costPerUnit?: number | undefined;
|
|
@@ -2044,8 +2044,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2044
2044
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2045
2045
|
materials?: {
|
|
2046
2046
|
name: string;
|
|
2047
|
-
unit: string;
|
|
2048
2047
|
quantity: number;
|
|
2048
|
+
unit: string;
|
|
2049
2049
|
inventoryItemId?: string | undefined;
|
|
2050
2050
|
totalCost?: number | undefined;
|
|
2051
2051
|
costPerUnit?: number | undefined;
|
|
@@ -2092,8 +2092,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2092
2092
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2093
2093
|
materials?: {
|
|
2094
2094
|
name: string;
|
|
2095
|
-
unit: string;
|
|
2096
2095
|
quantity: number;
|
|
2096
|
+
unit: string;
|
|
2097
2097
|
inventoryItemId?: string | undefined;
|
|
2098
2098
|
totalCost?: number | undefined;
|
|
2099
2099
|
costPerUnit?: number | undefined;
|
|
@@ -2147,8 +2147,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2147
2147
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2148
2148
|
materials?: {
|
|
2149
2149
|
name: string;
|
|
2150
|
-
unit: string;
|
|
2151
2150
|
quantity: number;
|
|
2151
|
+
unit: string;
|
|
2152
2152
|
inventoryItemId?: string | undefined;
|
|
2153
2153
|
totalCost?: number | undefined;
|
|
2154
2154
|
costPerUnit?: number | undefined;
|
|
@@ -2202,8 +2202,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2202
2202
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2203
2203
|
materials?: {
|
|
2204
2204
|
name: string;
|
|
2205
|
-
unit: string;
|
|
2206
2205
|
quantity: number;
|
|
2206
|
+
unit: string;
|
|
2207
2207
|
inventoryItemId?: string | undefined;
|
|
2208
2208
|
totalCost?: number | undefined;
|
|
2209
2209
|
costPerUnit?: number | undefined;
|
|
@@ -2283,8 +2283,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2283
2283
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2284
2284
|
materials?: {
|
|
2285
2285
|
name: string;
|
|
2286
|
-
unit: string;
|
|
2287
2286
|
quantity: number;
|
|
2287
|
+
unit: string;
|
|
2288
2288
|
inventoryItemId?: string | undefined;
|
|
2289
2289
|
totalCost?: number | undefined;
|
|
2290
2290
|
costPerUnit?: number | undefined;
|
|
@@ -2350,8 +2350,8 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2350
2350
|
severity?: "critical" | "low" | "medium" | "high" | undefined;
|
|
2351
2351
|
materials?: {
|
|
2352
2352
|
name: string;
|
|
2353
|
-
unit: string;
|
|
2354
2353
|
quantity: number;
|
|
2354
|
+
unit: string;
|
|
2355
2355
|
inventoryItemId?: string | undefined;
|
|
2356
2356
|
totalCost?: number | undefined;
|
|
2357
2357
|
costPerUnit?: number | undefined;
|