@deepintel-ltd/farmpro-contracts 1.11.3 → 1.11.4
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/admin.routes.d.ts +2852 -36
- package/dist/routes/admin.routes.d.ts.map +1 -1
- package/dist/routes/admin.routes.js +78 -6
- package/dist/routes/agent-workflows.routes.d.ts +140 -140
- package/dist/routes/agents.routes.d.ts +6 -6
- package/dist/routes/analytics.routes.d.ts +6 -6
- package/dist/routes/auth.routes.d.ts +503 -0
- package/dist/routes/auth.routes.d.ts.map +1 -1
- package/dist/routes/auth.routes.js +15 -0
- package/dist/routes/crop-profile.routes.d.ts +18 -18
- package/dist/routes/documents.routes.d.ts +58 -58
- package/dist/routes/equipment.routes.d.ts +62 -62
- package/dist/routes/extension.routes.d.ts +6 -6
- package/dist/routes/farm-status.routes.d.ts +6 -6
- package/dist/routes/farms.routes.d.ts +35 -0
- package/dist/routes/farms.routes.d.ts.map +1 -1
- package/dist/routes/fertigation.routes.d.ts +76 -76
- package/dist/routes/field-monitoring.routes.d.ts +34 -34
- package/dist/routes/field-observations.routes.d.ts +170 -170
- package/dist/routes/finance.routes.d.ts +6 -6
- package/dist/routes/geofences.routes.d.ts +8 -8
- package/dist/routes/irrigation.routes.d.ts +22 -22
- package/dist/routes/live-monitor.routes.d.ts +2 -2
- package/dist/routes/livestock-groups.routes.d.ts +30 -30
- package/dist/routes/livestock.routes.d.ts +24 -24
- package/dist/routes/monitoring-visualization.routes.d.ts +4 -4
- package/dist/routes/pest-disease-risk.routes.d.ts +48 -48
- package/dist/routes/prescription-maps.routes.d.ts +2 -2
- package/dist/routes/seasonal-plans.routes.d.ts +6 -6
- package/dist/routes/soil-tests.routes.d.ts +30 -30
- package/dist/routes/subscriptions.routes.d.ts +2 -2
- package/dist/routes/team-payments.routes.d.ts +36 -36
- package/dist/routes/team.routes.d.ts +24 -24
- package/dist/routes/users.routes.d.ts +14 -0
- package/dist/routes/users.routes.d.ts.map +1 -1
- package/dist/routes/weather.routes.d.ts +14 -14
- package/dist/routes/yield-prediction.routes.d.ts +48 -48
- package/dist/schemas/admin.schemas.d.ts +431 -84
- package/dist/schemas/admin.schemas.d.ts.map +1 -1
- package/dist/schemas/admin.schemas.js +36 -0
- package/dist/schemas/agent-workflows.schemas.d.ts +111 -111
- package/dist/schemas/agents.schemas.d.ts +6 -6
- package/dist/schemas/analytics.schemas.d.ts +12 -12
- package/dist/schemas/crop-profile.schemas.d.ts +26 -26
- package/dist/schemas/documents.schemas.d.ts +48 -48
- package/dist/schemas/equipment.schemas.d.ts +48 -48
- package/dist/schemas/extension.schemas.d.ts +12 -12
- package/dist/schemas/farm-status.schemas.d.ts +8 -8
- package/dist/schemas/farms.schemas.d.ts +48 -0
- package/dist/schemas/farms.schemas.d.ts.map +1 -1
- package/dist/schemas/farms.schemas.js +3 -0
- package/dist/schemas/fertigation.schemas.d.ts +20 -20
- package/dist/schemas/field-monitoring.schemas.d.ts +26 -26
- package/dist/schemas/field-observations.schemas.d.ts +126 -126
- package/dist/schemas/finance.schemas.d.ts +6 -6
- package/dist/schemas/geofences.schemas.d.ts +6 -6
- package/dist/schemas/irrigation.schemas.d.ts +12 -12
- package/dist/schemas/live-monitor.schemas.d.ts +2 -2
- package/dist/schemas/livestock-groups.schemas.d.ts +18 -18
- package/dist/schemas/livestock.schemas.d.ts +18 -18
- package/dist/schemas/monitoring-visualization.schemas.d.ts +4 -4
- package/dist/schemas/pest-disease-risk.schemas.d.ts +32 -32
- package/dist/schemas/prescription-maps.schemas.d.ts +2 -2
- package/dist/schemas/seasonal-plans.schemas.d.ts +12 -12
- package/dist/schemas/soil-tests.schemas.d.ts +28 -28
- package/dist/schemas/team-payments.schemas.d.ts +24 -24
- package/dist/schemas/team.schemas.d.ts +18 -18
- package/dist/schemas/users.schemas.d.ts +15 -0
- package/dist/schemas/users.schemas.d.ts.map +1 -1
- package/dist/schemas/users.schemas.js +1 -0
- package/dist/schemas/weather.schemas.d.ts +28 -28
- package/dist/schemas/yield-prediction.schemas.d.ts +8 -8
- package/package.json +1 -1
|
@@ -117,7 +117,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
117
117
|
riskLevel?: string | undefined;
|
|
118
118
|
};
|
|
119
119
|
reason: string;
|
|
120
|
-
outcome: "
|
|
120
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
121
121
|
taskId?: string | undefined;
|
|
122
122
|
}, {
|
|
123
123
|
recommendation: {
|
|
@@ -143,7 +143,7 @@ export declare const agentRecommendationResultSchema: z.ZodObject<{
|
|
|
143
143
|
riskLevel?: string | undefined;
|
|
144
144
|
};
|
|
145
145
|
reason: string;
|
|
146
|
-
outcome: "
|
|
146
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
147
147
|
taskId?: string | undefined;
|
|
148
148
|
}>;
|
|
149
149
|
export declare const agentResultsSchema: z.ZodObject<{
|
|
@@ -153,15 +153,15 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
153
153
|
tasksUpdated: z.ZodNumber;
|
|
154
154
|
skipped: z.ZodNumber;
|
|
155
155
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
-
skipped: number;
|
|
157
|
-
sourceType: string;
|
|
158
156
|
tasksCreated: number;
|
|
159
157
|
tasksUpdated: number;
|
|
160
|
-
}, {
|
|
161
158
|
skipped: number;
|
|
162
159
|
sourceType: string;
|
|
160
|
+
}, {
|
|
163
161
|
tasksCreated: number;
|
|
164
162
|
tasksUpdated: number;
|
|
163
|
+
skipped: number;
|
|
164
|
+
sourceType: string;
|
|
165
165
|
}>;
|
|
166
166
|
results: z.ZodArray<z.ZodObject<{
|
|
167
167
|
recommendation: z.ZodObject<{
|
|
@@ -271,7 +271,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
271
271
|
riskLevel?: string | undefined;
|
|
272
272
|
};
|
|
273
273
|
reason: string;
|
|
274
|
-
outcome: "
|
|
274
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
275
275
|
taskId?: string | undefined;
|
|
276
276
|
}, {
|
|
277
277
|
recommendation: {
|
|
@@ -297,16 +297,16 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
297
297
|
riskLevel?: string | undefined;
|
|
298
298
|
};
|
|
299
299
|
reason: string;
|
|
300
|
-
outcome: "
|
|
300
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
301
301
|
taskId?: string | undefined;
|
|
302
302
|
}>, "many">;
|
|
303
303
|
taskReview: z.ZodOptional<z.ZodAny>;
|
|
304
304
|
}, "strip", z.ZodTypeAny, {
|
|
305
305
|
summary: {
|
|
306
|
-
skipped: number;
|
|
307
|
-
sourceType: string;
|
|
308
306
|
tasksCreated: number;
|
|
309
307
|
tasksUpdated: number;
|
|
308
|
+
skipped: number;
|
|
309
|
+
sourceType: string;
|
|
310
310
|
};
|
|
311
311
|
results: {
|
|
312
312
|
recommendation: {
|
|
@@ -332,16 +332,16 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
332
332
|
riskLevel?: string | undefined;
|
|
333
333
|
};
|
|
334
334
|
reason: string;
|
|
335
|
-
outcome: "
|
|
335
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
336
336
|
taskId?: string | undefined;
|
|
337
337
|
}[];
|
|
338
338
|
taskReview?: any;
|
|
339
339
|
}, {
|
|
340
340
|
summary: {
|
|
341
|
-
skipped: number;
|
|
342
|
-
sourceType: string;
|
|
343
341
|
tasksCreated: number;
|
|
344
342
|
tasksUpdated: number;
|
|
343
|
+
skipped: number;
|
|
344
|
+
sourceType: string;
|
|
345
345
|
};
|
|
346
346
|
results: {
|
|
347
347
|
recommendation: {
|
|
@@ -367,7 +367,7 @@ export declare const agentResultsSchema: z.ZodObject<{
|
|
|
367
367
|
riskLevel?: string | undefined;
|
|
368
368
|
};
|
|
369
369
|
reason: string;
|
|
370
|
-
outcome: "
|
|
370
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
371
371
|
taskId?: string | undefined;
|
|
372
372
|
}[];
|
|
373
373
|
taskReview?: any;
|
|
@@ -387,15 +387,15 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
387
387
|
tasksUpdated: z.ZodNumber;
|
|
388
388
|
skipped: z.ZodNumber;
|
|
389
389
|
}, "strip", z.ZodTypeAny, {
|
|
390
|
-
skipped: number;
|
|
391
|
-
sourceType: string;
|
|
392
390
|
tasksCreated: number;
|
|
393
391
|
tasksUpdated: number;
|
|
394
|
-
}, {
|
|
395
392
|
skipped: number;
|
|
396
393
|
sourceType: string;
|
|
394
|
+
}, {
|
|
397
395
|
tasksCreated: number;
|
|
398
396
|
tasksUpdated: number;
|
|
397
|
+
skipped: number;
|
|
398
|
+
sourceType: string;
|
|
399
399
|
}>;
|
|
400
400
|
results: z.ZodArray<z.ZodObject<{
|
|
401
401
|
recommendation: z.ZodObject<{
|
|
@@ -505,7 +505,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
505
505
|
riskLevel?: string | undefined;
|
|
506
506
|
};
|
|
507
507
|
reason: string;
|
|
508
|
-
outcome: "
|
|
508
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
509
509
|
taskId?: string | undefined;
|
|
510
510
|
}, {
|
|
511
511
|
recommendation: {
|
|
@@ -531,16 +531,16 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
531
531
|
riskLevel?: string | undefined;
|
|
532
532
|
};
|
|
533
533
|
reason: string;
|
|
534
|
-
outcome: "
|
|
534
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
535
535
|
taskId?: string | undefined;
|
|
536
536
|
}>, "many">;
|
|
537
537
|
taskReview: z.ZodOptional<z.ZodAny>;
|
|
538
538
|
}, "strip", z.ZodTypeAny, {
|
|
539
539
|
summary: {
|
|
540
|
-
skipped: number;
|
|
541
|
-
sourceType: string;
|
|
542
540
|
tasksCreated: number;
|
|
543
541
|
tasksUpdated: number;
|
|
542
|
+
skipped: number;
|
|
543
|
+
sourceType: string;
|
|
544
544
|
};
|
|
545
545
|
results: {
|
|
546
546
|
recommendation: {
|
|
@@ -566,16 +566,16 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
566
566
|
riskLevel?: string | undefined;
|
|
567
567
|
};
|
|
568
568
|
reason: string;
|
|
569
|
-
outcome: "
|
|
569
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
570
570
|
taskId?: string | undefined;
|
|
571
571
|
}[];
|
|
572
572
|
taskReview?: any;
|
|
573
573
|
}, {
|
|
574
574
|
summary: {
|
|
575
|
-
skipped: number;
|
|
576
|
-
sourceType: string;
|
|
577
575
|
tasksCreated: number;
|
|
578
576
|
tasksUpdated: number;
|
|
577
|
+
skipped: number;
|
|
578
|
+
sourceType: string;
|
|
579
579
|
};
|
|
580
580
|
results: {
|
|
581
581
|
recommendation: {
|
|
@@ -601,7 +601,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
601
601
|
riskLevel?: string | undefined;
|
|
602
602
|
};
|
|
603
603
|
reason: string;
|
|
604
|
-
outcome: "
|
|
604
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
605
605
|
taskId?: string | undefined;
|
|
606
606
|
}[];
|
|
607
607
|
taskReview?: any;
|
|
@@ -623,10 +623,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
623
623
|
triggerId: string;
|
|
624
624
|
agentResults: {
|
|
625
625
|
summary: {
|
|
626
|
-
skipped: number;
|
|
627
|
-
sourceType: string;
|
|
628
626
|
tasksCreated: number;
|
|
629
627
|
tasksUpdated: number;
|
|
628
|
+
skipped: number;
|
|
629
|
+
sourceType: string;
|
|
630
630
|
};
|
|
631
631
|
results: {
|
|
632
632
|
recommendation: {
|
|
@@ -652,7 +652,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
652
652
|
riskLevel?: string | undefined;
|
|
653
653
|
};
|
|
654
654
|
reason: string;
|
|
655
|
-
outcome: "
|
|
655
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
656
656
|
taskId?: string | undefined;
|
|
657
657
|
}[];
|
|
658
658
|
taskReview?: any;
|
|
@@ -671,10 +671,10 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
671
671
|
triggerId: string;
|
|
672
672
|
agentResults: {
|
|
673
673
|
summary: {
|
|
674
|
-
skipped: number;
|
|
675
|
-
sourceType: string;
|
|
676
674
|
tasksCreated: number;
|
|
677
675
|
tasksUpdated: number;
|
|
676
|
+
skipped: number;
|
|
677
|
+
sourceType: string;
|
|
678
678
|
};
|
|
679
679
|
results: {
|
|
680
680
|
recommendation: {
|
|
@@ -700,7 +700,7 @@ export declare const agentWorkflowAttributesSchema: z.ZodObject<{
|
|
|
700
700
|
riskLevel?: string | undefined;
|
|
701
701
|
};
|
|
702
702
|
reason: string;
|
|
703
|
-
outcome: "
|
|
703
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
704
704
|
taskId?: string | undefined;
|
|
705
705
|
}[];
|
|
706
706
|
taskReview?: any;
|
|
@@ -726,15 +726,15 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
726
726
|
tasksUpdated: z.ZodNumber;
|
|
727
727
|
skipped: z.ZodNumber;
|
|
728
728
|
}, "strip", z.ZodTypeAny, {
|
|
729
|
-
skipped: number;
|
|
730
|
-
sourceType: string;
|
|
731
729
|
tasksCreated: number;
|
|
732
730
|
tasksUpdated: number;
|
|
733
|
-
}, {
|
|
734
731
|
skipped: number;
|
|
735
732
|
sourceType: string;
|
|
733
|
+
}, {
|
|
736
734
|
tasksCreated: number;
|
|
737
735
|
tasksUpdated: number;
|
|
736
|
+
skipped: number;
|
|
737
|
+
sourceType: string;
|
|
738
738
|
}>;
|
|
739
739
|
results: z.ZodArray<z.ZodObject<{
|
|
740
740
|
recommendation: z.ZodObject<{
|
|
@@ -844,7 +844,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
844
844
|
riskLevel?: string | undefined;
|
|
845
845
|
};
|
|
846
846
|
reason: string;
|
|
847
|
-
outcome: "
|
|
847
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
848
848
|
taskId?: string | undefined;
|
|
849
849
|
}, {
|
|
850
850
|
recommendation: {
|
|
@@ -870,16 +870,16 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
870
870
|
riskLevel?: string | undefined;
|
|
871
871
|
};
|
|
872
872
|
reason: string;
|
|
873
|
-
outcome: "
|
|
873
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
874
874
|
taskId?: string | undefined;
|
|
875
875
|
}>, "many">;
|
|
876
876
|
taskReview: z.ZodOptional<z.ZodAny>;
|
|
877
877
|
}, "strip", z.ZodTypeAny, {
|
|
878
878
|
summary: {
|
|
879
|
-
skipped: number;
|
|
880
|
-
sourceType: string;
|
|
881
879
|
tasksCreated: number;
|
|
882
880
|
tasksUpdated: number;
|
|
881
|
+
skipped: number;
|
|
882
|
+
sourceType: string;
|
|
883
883
|
};
|
|
884
884
|
results: {
|
|
885
885
|
recommendation: {
|
|
@@ -905,16 +905,16 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
905
905
|
riskLevel?: string | undefined;
|
|
906
906
|
};
|
|
907
907
|
reason: string;
|
|
908
|
-
outcome: "
|
|
908
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
909
909
|
taskId?: string | undefined;
|
|
910
910
|
}[];
|
|
911
911
|
taskReview?: any;
|
|
912
912
|
}, {
|
|
913
913
|
summary: {
|
|
914
|
-
skipped: number;
|
|
915
|
-
sourceType: string;
|
|
916
914
|
tasksCreated: number;
|
|
917
915
|
tasksUpdated: number;
|
|
916
|
+
skipped: number;
|
|
917
|
+
sourceType: string;
|
|
918
918
|
};
|
|
919
919
|
results: {
|
|
920
920
|
recommendation: {
|
|
@@ -940,7 +940,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
940
940
|
riskLevel?: string | undefined;
|
|
941
941
|
};
|
|
942
942
|
reason: string;
|
|
943
|
-
outcome: "
|
|
943
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
944
944
|
taskId?: string | undefined;
|
|
945
945
|
}[];
|
|
946
946
|
taskReview?: any;
|
|
@@ -962,10 +962,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
962
962
|
triggerId: string;
|
|
963
963
|
agentResults: {
|
|
964
964
|
summary: {
|
|
965
|
-
skipped: number;
|
|
966
|
-
sourceType: string;
|
|
967
965
|
tasksCreated: number;
|
|
968
966
|
tasksUpdated: number;
|
|
967
|
+
skipped: number;
|
|
968
|
+
sourceType: string;
|
|
969
969
|
};
|
|
970
970
|
results: {
|
|
971
971
|
recommendation: {
|
|
@@ -991,7 +991,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
991
991
|
riskLevel?: string | undefined;
|
|
992
992
|
};
|
|
993
993
|
reason: string;
|
|
994
|
-
outcome: "
|
|
994
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
995
995
|
taskId?: string | undefined;
|
|
996
996
|
}[];
|
|
997
997
|
taskReview?: any;
|
|
@@ -1010,10 +1010,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1010
1010
|
triggerId: string;
|
|
1011
1011
|
agentResults: {
|
|
1012
1012
|
summary: {
|
|
1013
|
-
skipped: number;
|
|
1014
|
-
sourceType: string;
|
|
1015
1013
|
tasksCreated: number;
|
|
1016
1014
|
tasksUpdated: number;
|
|
1015
|
+
skipped: number;
|
|
1016
|
+
sourceType: string;
|
|
1017
1017
|
};
|
|
1018
1018
|
results: {
|
|
1019
1019
|
recommendation: {
|
|
@@ -1039,7 +1039,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1039
1039
|
riskLevel?: string | undefined;
|
|
1040
1040
|
};
|
|
1041
1041
|
reason: string;
|
|
1042
|
-
outcome: "
|
|
1042
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1043
1043
|
taskId?: string | undefined;
|
|
1044
1044
|
}[];
|
|
1045
1045
|
taskReview?: any;
|
|
@@ -1065,10 +1065,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1065
1065
|
triggerId: string;
|
|
1066
1066
|
agentResults: {
|
|
1067
1067
|
summary: {
|
|
1068
|
-
skipped: number;
|
|
1069
|
-
sourceType: string;
|
|
1070
1068
|
tasksCreated: number;
|
|
1071
1069
|
tasksUpdated: number;
|
|
1070
|
+
skipped: number;
|
|
1071
|
+
sourceType: string;
|
|
1072
1072
|
};
|
|
1073
1073
|
results: {
|
|
1074
1074
|
recommendation: {
|
|
@@ -1094,7 +1094,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1094
1094
|
riskLevel?: string | undefined;
|
|
1095
1095
|
};
|
|
1096
1096
|
reason: string;
|
|
1097
|
-
outcome: "
|
|
1097
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1098
1098
|
taskId?: string | undefined;
|
|
1099
1099
|
}[];
|
|
1100
1100
|
taskReview?: any;
|
|
@@ -1120,10 +1120,10 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1120
1120
|
triggerId: string;
|
|
1121
1121
|
agentResults: {
|
|
1122
1122
|
summary: {
|
|
1123
|
-
skipped: number;
|
|
1124
|
-
sourceType: string;
|
|
1125
1123
|
tasksCreated: number;
|
|
1126
1124
|
tasksUpdated: number;
|
|
1125
|
+
skipped: number;
|
|
1126
|
+
sourceType: string;
|
|
1127
1127
|
};
|
|
1128
1128
|
results: {
|
|
1129
1129
|
recommendation: {
|
|
@@ -1149,7 +1149,7 @@ export declare const agentWorkflowResourceSchema: z.ZodObject<{
|
|
|
1149
1149
|
riskLevel?: string | undefined;
|
|
1150
1150
|
};
|
|
1151
1151
|
reason: string;
|
|
1152
|
-
outcome: "
|
|
1152
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1153
1153
|
taskId?: string | undefined;
|
|
1154
1154
|
}[];
|
|
1155
1155
|
taskReview?: any;
|
|
@@ -1180,15 +1180,15 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1180
1180
|
tasksUpdated: z.ZodNumber;
|
|
1181
1181
|
skipped: z.ZodNumber;
|
|
1182
1182
|
}, "strip", z.ZodTypeAny, {
|
|
1183
|
-
skipped: number;
|
|
1184
|
-
sourceType: string;
|
|
1185
1183
|
tasksCreated: number;
|
|
1186
1184
|
tasksUpdated: number;
|
|
1187
|
-
}, {
|
|
1188
1185
|
skipped: number;
|
|
1189
1186
|
sourceType: string;
|
|
1187
|
+
}, {
|
|
1190
1188
|
tasksCreated: number;
|
|
1191
1189
|
tasksUpdated: number;
|
|
1190
|
+
skipped: number;
|
|
1191
|
+
sourceType: string;
|
|
1192
1192
|
}>;
|
|
1193
1193
|
results: z.ZodArray<z.ZodObject<{
|
|
1194
1194
|
recommendation: z.ZodObject<{
|
|
@@ -1298,7 +1298,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1298
1298
|
riskLevel?: string | undefined;
|
|
1299
1299
|
};
|
|
1300
1300
|
reason: string;
|
|
1301
|
-
outcome: "
|
|
1301
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1302
1302
|
taskId?: string | undefined;
|
|
1303
1303
|
}, {
|
|
1304
1304
|
recommendation: {
|
|
@@ -1324,16 +1324,16 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1324
1324
|
riskLevel?: string | undefined;
|
|
1325
1325
|
};
|
|
1326
1326
|
reason: string;
|
|
1327
|
-
outcome: "
|
|
1327
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1328
1328
|
taskId?: string | undefined;
|
|
1329
1329
|
}>, "many">;
|
|
1330
1330
|
taskReview: z.ZodOptional<z.ZodAny>;
|
|
1331
1331
|
}, "strip", z.ZodTypeAny, {
|
|
1332
1332
|
summary: {
|
|
1333
|
-
skipped: number;
|
|
1334
|
-
sourceType: string;
|
|
1335
1333
|
tasksCreated: number;
|
|
1336
1334
|
tasksUpdated: number;
|
|
1335
|
+
skipped: number;
|
|
1336
|
+
sourceType: string;
|
|
1337
1337
|
};
|
|
1338
1338
|
results: {
|
|
1339
1339
|
recommendation: {
|
|
@@ -1359,16 +1359,16 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1359
1359
|
riskLevel?: string | undefined;
|
|
1360
1360
|
};
|
|
1361
1361
|
reason: string;
|
|
1362
|
-
outcome: "
|
|
1362
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1363
1363
|
taskId?: string | undefined;
|
|
1364
1364
|
}[];
|
|
1365
1365
|
taskReview?: any;
|
|
1366
1366
|
}, {
|
|
1367
1367
|
summary: {
|
|
1368
|
-
skipped: number;
|
|
1369
|
-
sourceType: string;
|
|
1370
1368
|
tasksCreated: number;
|
|
1371
1369
|
tasksUpdated: number;
|
|
1370
|
+
skipped: number;
|
|
1371
|
+
sourceType: string;
|
|
1372
1372
|
};
|
|
1373
1373
|
results: {
|
|
1374
1374
|
recommendation: {
|
|
@@ -1394,7 +1394,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1394
1394
|
riskLevel?: string | undefined;
|
|
1395
1395
|
};
|
|
1396
1396
|
reason: string;
|
|
1397
|
-
outcome: "
|
|
1397
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1398
1398
|
taskId?: string | undefined;
|
|
1399
1399
|
}[];
|
|
1400
1400
|
taskReview?: any;
|
|
@@ -1416,10 +1416,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1416
1416
|
triggerId: string;
|
|
1417
1417
|
agentResults: {
|
|
1418
1418
|
summary: {
|
|
1419
|
-
skipped: number;
|
|
1420
|
-
sourceType: string;
|
|
1421
1419
|
tasksCreated: number;
|
|
1422
1420
|
tasksUpdated: number;
|
|
1421
|
+
skipped: number;
|
|
1422
|
+
sourceType: string;
|
|
1423
1423
|
};
|
|
1424
1424
|
results: {
|
|
1425
1425
|
recommendation: {
|
|
@@ -1445,7 +1445,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1445
1445
|
riskLevel?: string | undefined;
|
|
1446
1446
|
};
|
|
1447
1447
|
reason: string;
|
|
1448
|
-
outcome: "
|
|
1448
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1449
1449
|
taskId?: string | undefined;
|
|
1450
1450
|
}[];
|
|
1451
1451
|
taskReview?: any;
|
|
@@ -1464,10 +1464,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1464
1464
|
triggerId: string;
|
|
1465
1465
|
agentResults: {
|
|
1466
1466
|
summary: {
|
|
1467
|
-
skipped: number;
|
|
1468
|
-
sourceType: string;
|
|
1469
1467
|
tasksCreated: number;
|
|
1470
1468
|
tasksUpdated: number;
|
|
1469
|
+
skipped: number;
|
|
1470
|
+
sourceType: string;
|
|
1471
1471
|
};
|
|
1472
1472
|
results: {
|
|
1473
1473
|
recommendation: {
|
|
@@ -1493,7 +1493,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1493
1493
|
riskLevel?: string | undefined;
|
|
1494
1494
|
};
|
|
1495
1495
|
reason: string;
|
|
1496
|
-
outcome: "
|
|
1496
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1497
1497
|
taskId?: string | undefined;
|
|
1498
1498
|
}[];
|
|
1499
1499
|
taskReview?: any;
|
|
@@ -1519,10 +1519,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1519
1519
|
triggerId: string;
|
|
1520
1520
|
agentResults: {
|
|
1521
1521
|
summary: {
|
|
1522
|
-
skipped: number;
|
|
1523
|
-
sourceType: string;
|
|
1524
1522
|
tasksCreated: number;
|
|
1525
1523
|
tasksUpdated: number;
|
|
1524
|
+
skipped: number;
|
|
1525
|
+
sourceType: string;
|
|
1526
1526
|
};
|
|
1527
1527
|
results: {
|
|
1528
1528
|
recommendation: {
|
|
@@ -1548,7 +1548,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1548
1548
|
riskLevel?: string | undefined;
|
|
1549
1549
|
};
|
|
1550
1550
|
reason: string;
|
|
1551
|
-
outcome: "
|
|
1551
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1552
1552
|
taskId?: string | undefined;
|
|
1553
1553
|
}[];
|
|
1554
1554
|
taskReview?: any;
|
|
@@ -1574,10 +1574,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1574
1574
|
triggerId: string;
|
|
1575
1575
|
agentResults: {
|
|
1576
1576
|
summary: {
|
|
1577
|
-
skipped: number;
|
|
1578
|
-
sourceType: string;
|
|
1579
1577
|
tasksCreated: number;
|
|
1580
1578
|
tasksUpdated: number;
|
|
1579
|
+
skipped: number;
|
|
1580
|
+
sourceType: string;
|
|
1581
1581
|
};
|
|
1582
1582
|
results: {
|
|
1583
1583
|
recommendation: {
|
|
@@ -1603,7 +1603,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1603
1603
|
riskLevel?: string | undefined;
|
|
1604
1604
|
};
|
|
1605
1605
|
reason: string;
|
|
1606
|
-
outcome: "
|
|
1606
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1607
1607
|
taskId?: string | undefined;
|
|
1608
1608
|
}[];
|
|
1609
1609
|
taskReview?: any;
|
|
@@ -1655,10 +1655,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1655
1655
|
triggerId: string;
|
|
1656
1656
|
agentResults: {
|
|
1657
1657
|
summary: {
|
|
1658
|
-
skipped: number;
|
|
1659
|
-
sourceType: string;
|
|
1660
1658
|
tasksCreated: number;
|
|
1661
1659
|
tasksUpdated: number;
|
|
1660
|
+
skipped: number;
|
|
1661
|
+
sourceType: string;
|
|
1662
1662
|
};
|
|
1663
1663
|
results: {
|
|
1664
1664
|
recommendation: {
|
|
@@ -1684,7 +1684,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1684
1684
|
riskLevel?: string | undefined;
|
|
1685
1685
|
};
|
|
1686
1686
|
reason: string;
|
|
1687
|
-
outcome: "
|
|
1687
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1688
1688
|
taskId?: string | undefined;
|
|
1689
1689
|
}[];
|
|
1690
1690
|
taskReview?: any;
|
|
@@ -1722,10 +1722,10 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1722
1722
|
triggerId: string;
|
|
1723
1723
|
agentResults: {
|
|
1724
1724
|
summary: {
|
|
1725
|
-
skipped: number;
|
|
1726
|
-
sourceType: string;
|
|
1727
1725
|
tasksCreated: number;
|
|
1728
1726
|
tasksUpdated: number;
|
|
1727
|
+
skipped: number;
|
|
1728
|
+
sourceType: string;
|
|
1729
1729
|
};
|
|
1730
1730
|
results: {
|
|
1731
1731
|
recommendation: {
|
|
@@ -1751,7 +1751,7 @@ export declare const agentWorkflowResponseSchema: z.ZodObject<{
|
|
|
1751
1751
|
riskLevel?: string | undefined;
|
|
1752
1752
|
};
|
|
1753
1753
|
reason: string;
|
|
1754
|
-
outcome: "
|
|
1754
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1755
1755
|
taskId?: string | undefined;
|
|
1756
1756
|
}[];
|
|
1757
1757
|
taskReview?: any;
|
|
@@ -1793,15 +1793,15 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1793
1793
|
tasksUpdated: z.ZodNumber;
|
|
1794
1794
|
skipped: z.ZodNumber;
|
|
1795
1795
|
}, "strip", z.ZodTypeAny, {
|
|
1796
|
-
skipped: number;
|
|
1797
|
-
sourceType: string;
|
|
1798
1796
|
tasksCreated: number;
|
|
1799
1797
|
tasksUpdated: number;
|
|
1800
|
-
}, {
|
|
1801
1798
|
skipped: number;
|
|
1802
1799
|
sourceType: string;
|
|
1800
|
+
}, {
|
|
1803
1801
|
tasksCreated: number;
|
|
1804
1802
|
tasksUpdated: number;
|
|
1803
|
+
skipped: number;
|
|
1804
|
+
sourceType: string;
|
|
1805
1805
|
}>;
|
|
1806
1806
|
results: z.ZodArray<z.ZodObject<{
|
|
1807
1807
|
recommendation: z.ZodObject<{
|
|
@@ -1911,7 +1911,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1911
1911
|
riskLevel?: string | undefined;
|
|
1912
1912
|
};
|
|
1913
1913
|
reason: string;
|
|
1914
|
-
outcome: "
|
|
1914
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1915
1915
|
taskId?: string | undefined;
|
|
1916
1916
|
}, {
|
|
1917
1917
|
recommendation: {
|
|
@@ -1937,16 +1937,16 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1937
1937
|
riskLevel?: string | undefined;
|
|
1938
1938
|
};
|
|
1939
1939
|
reason: string;
|
|
1940
|
-
outcome: "
|
|
1940
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1941
1941
|
taskId?: string | undefined;
|
|
1942
1942
|
}>, "many">;
|
|
1943
1943
|
taskReview: z.ZodOptional<z.ZodAny>;
|
|
1944
1944
|
}, "strip", z.ZodTypeAny, {
|
|
1945
1945
|
summary: {
|
|
1946
|
-
skipped: number;
|
|
1947
|
-
sourceType: string;
|
|
1948
1946
|
tasksCreated: number;
|
|
1949
1947
|
tasksUpdated: number;
|
|
1948
|
+
skipped: number;
|
|
1949
|
+
sourceType: string;
|
|
1950
1950
|
};
|
|
1951
1951
|
results: {
|
|
1952
1952
|
recommendation: {
|
|
@@ -1972,16 +1972,16 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
1972
1972
|
riskLevel?: string | undefined;
|
|
1973
1973
|
};
|
|
1974
1974
|
reason: string;
|
|
1975
|
-
outcome: "
|
|
1975
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
1976
1976
|
taskId?: string | undefined;
|
|
1977
1977
|
}[];
|
|
1978
1978
|
taskReview?: any;
|
|
1979
1979
|
}, {
|
|
1980
1980
|
summary: {
|
|
1981
|
-
skipped: number;
|
|
1982
|
-
sourceType: string;
|
|
1983
1981
|
tasksCreated: number;
|
|
1984
1982
|
tasksUpdated: number;
|
|
1983
|
+
skipped: number;
|
|
1984
|
+
sourceType: string;
|
|
1985
1985
|
};
|
|
1986
1986
|
results: {
|
|
1987
1987
|
recommendation: {
|
|
@@ -2007,7 +2007,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2007
2007
|
riskLevel?: string | undefined;
|
|
2008
2008
|
};
|
|
2009
2009
|
reason: string;
|
|
2010
|
-
outcome: "
|
|
2010
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2011
2011
|
taskId?: string | undefined;
|
|
2012
2012
|
}[];
|
|
2013
2013
|
taskReview?: any;
|
|
@@ -2029,10 +2029,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2029
2029
|
triggerId: string;
|
|
2030
2030
|
agentResults: {
|
|
2031
2031
|
summary: {
|
|
2032
|
-
skipped: number;
|
|
2033
|
-
sourceType: string;
|
|
2034
2032
|
tasksCreated: number;
|
|
2035
2033
|
tasksUpdated: number;
|
|
2034
|
+
skipped: number;
|
|
2035
|
+
sourceType: string;
|
|
2036
2036
|
};
|
|
2037
2037
|
results: {
|
|
2038
2038
|
recommendation: {
|
|
@@ -2058,7 +2058,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2058
2058
|
riskLevel?: string | undefined;
|
|
2059
2059
|
};
|
|
2060
2060
|
reason: string;
|
|
2061
|
-
outcome: "
|
|
2061
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2062
2062
|
taskId?: string | undefined;
|
|
2063
2063
|
}[];
|
|
2064
2064
|
taskReview?: any;
|
|
@@ -2077,10 +2077,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2077
2077
|
triggerId: string;
|
|
2078
2078
|
agentResults: {
|
|
2079
2079
|
summary: {
|
|
2080
|
-
skipped: number;
|
|
2081
|
-
sourceType: string;
|
|
2082
2080
|
tasksCreated: number;
|
|
2083
2081
|
tasksUpdated: number;
|
|
2082
|
+
skipped: number;
|
|
2083
|
+
sourceType: string;
|
|
2084
2084
|
};
|
|
2085
2085
|
results: {
|
|
2086
2086
|
recommendation: {
|
|
@@ -2106,7 +2106,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2106
2106
|
riskLevel?: string | undefined;
|
|
2107
2107
|
};
|
|
2108
2108
|
reason: string;
|
|
2109
|
-
outcome: "
|
|
2109
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2110
2110
|
taskId?: string | undefined;
|
|
2111
2111
|
}[];
|
|
2112
2112
|
taskReview?: any;
|
|
@@ -2132,10 +2132,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2132
2132
|
triggerId: string;
|
|
2133
2133
|
agentResults: {
|
|
2134
2134
|
summary: {
|
|
2135
|
-
skipped: number;
|
|
2136
|
-
sourceType: string;
|
|
2137
2135
|
tasksCreated: number;
|
|
2138
2136
|
tasksUpdated: number;
|
|
2137
|
+
skipped: number;
|
|
2138
|
+
sourceType: string;
|
|
2139
2139
|
};
|
|
2140
2140
|
results: {
|
|
2141
2141
|
recommendation: {
|
|
@@ -2161,7 +2161,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2161
2161
|
riskLevel?: string | undefined;
|
|
2162
2162
|
};
|
|
2163
2163
|
reason: string;
|
|
2164
|
-
outcome: "
|
|
2164
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2165
2165
|
taskId?: string | undefined;
|
|
2166
2166
|
}[];
|
|
2167
2167
|
taskReview?: any;
|
|
@@ -2187,10 +2187,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2187
2187
|
triggerId: string;
|
|
2188
2188
|
agentResults: {
|
|
2189
2189
|
summary: {
|
|
2190
|
-
skipped: number;
|
|
2191
|
-
sourceType: string;
|
|
2192
2190
|
tasksCreated: number;
|
|
2193
2191
|
tasksUpdated: number;
|
|
2192
|
+
skipped: number;
|
|
2193
|
+
sourceType: string;
|
|
2194
2194
|
};
|
|
2195
2195
|
results: {
|
|
2196
2196
|
recommendation: {
|
|
@@ -2216,7 +2216,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2216
2216
|
riskLevel?: string | undefined;
|
|
2217
2217
|
};
|
|
2218
2218
|
reason: string;
|
|
2219
|
-
outcome: "
|
|
2219
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2220
2220
|
taskId?: string | undefined;
|
|
2221
2221
|
}[];
|
|
2222
2222
|
taskReview?: any;
|
|
@@ -2268,10 +2268,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2268
2268
|
triggerId: string;
|
|
2269
2269
|
agentResults: {
|
|
2270
2270
|
summary: {
|
|
2271
|
-
skipped: number;
|
|
2272
|
-
sourceType: string;
|
|
2273
2271
|
tasksCreated: number;
|
|
2274
2272
|
tasksUpdated: number;
|
|
2273
|
+
skipped: number;
|
|
2274
|
+
sourceType: string;
|
|
2275
2275
|
};
|
|
2276
2276
|
results: {
|
|
2277
2277
|
recommendation: {
|
|
@@ -2297,7 +2297,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2297
2297
|
riskLevel?: string | undefined;
|
|
2298
2298
|
};
|
|
2299
2299
|
reason: string;
|
|
2300
|
-
outcome: "
|
|
2300
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2301
2301
|
taskId?: string | undefined;
|
|
2302
2302
|
}[];
|
|
2303
2303
|
taskReview?: any;
|
|
@@ -2335,10 +2335,10 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2335
2335
|
triggerId: string;
|
|
2336
2336
|
agentResults: {
|
|
2337
2337
|
summary: {
|
|
2338
|
-
skipped: number;
|
|
2339
|
-
sourceType: string;
|
|
2340
2338
|
tasksCreated: number;
|
|
2341
2339
|
tasksUpdated: number;
|
|
2340
|
+
skipped: number;
|
|
2341
|
+
sourceType: string;
|
|
2342
2342
|
};
|
|
2343
2343
|
results: {
|
|
2344
2344
|
recommendation: {
|
|
@@ -2364,7 +2364,7 @@ export declare const agentWorkflowListResponseSchema: z.ZodObject<{
|
|
|
2364
2364
|
riskLevel?: string | undefined;
|
|
2365
2365
|
};
|
|
2366
2366
|
reason: string;
|
|
2367
|
-
outcome: "
|
|
2367
|
+
outcome: "skipped" | "error" | "created" | "updated";
|
|
2368
2368
|
taskId?: string | undefined;
|
|
2369
2369
|
}[];
|
|
2370
2370
|
taskReview?: any;
|