@agent-vm/controller-execution-contracts 0.0.123 → 0.0.124
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.
|
@@ -31,14 +31,14 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
31
31
|
completion: z.ZodLiteral<"succeeded">;
|
|
32
32
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
33
33
|
code: z.ZodEnum<{
|
|
34
|
-
provider_unavailable: "provider_unavailable";
|
|
35
|
-
capability_denied: "capability_denied";
|
|
36
34
|
approval_required: "approval_required";
|
|
35
|
+
capability_denied: "capability_denied";
|
|
37
36
|
validation_failed: "validation_failed";
|
|
37
|
+
provider_unavailable: "provider_unavailable";
|
|
38
38
|
execution_failed: "execution_failed";
|
|
39
|
-
output_truncated: "output_truncated";
|
|
40
|
-
timeout: "timeout";
|
|
41
39
|
cancelled: "cancelled";
|
|
40
|
+
timeout: "timeout";
|
|
41
|
+
output_truncated: "output_truncated";
|
|
42
42
|
artifact_unavailable: "artifact_unavailable";
|
|
43
43
|
}>;
|
|
44
44
|
level: z.ZodEnum<{
|
|
@@ -61,14 +61,14 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
61
61
|
certainty: z.ZodLiteral<"proven">;
|
|
62
62
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
63
63
|
code: z.ZodEnum<{
|
|
64
|
-
provider_unavailable: "provider_unavailable";
|
|
65
|
-
capability_denied: "capability_denied";
|
|
66
64
|
approval_required: "approval_required";
|
|
65
|
+
capability_denied: "capability_denied";
|
|
67
66
|
validation_failed: "validation_failed";
|
|
67
|
+
provider_unavailable: "provider_unavailable";
|
|
68
68
|
execution_failed: "execution_failed";
|
|
69
|
-
output_truncated: "output_truncated";
|
|
70
|
-
timeout: "timeout";
|
|
71
69
|
cancelled: "cancelled";
|
|
70
|
+
timeout: "timeout";
|
|
71
|
+
output_truncated: "output_truncated";
|
|
72
72
|
artifact_unavailable: "artifact_unavailable";
|
|
73
73
|
}>;
|
|
74
74
|
level: z.ZodEnum<{
|
|
@@ -82,29 +82,29 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
82
82
|
}, z.core.$strict>>>;
|
|
83
83
|
error: z.ZodObject<{
|
|
84
84
|
code: z.ZodEnum<{
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
invalid_request: "invalid_request";
|
|
86
|
+
not_found: "not_found";
|
|
87
|
+
not_authorized: "not_authorized";
|
|
87
88
|
approval_required: "approval_required";
|
|
89
|
+
capability_denied: "capability_denied";
|
|
88
90
|
validation_failed: "validation_failed";
|
|
91
|
+
provider_unavailable: "provider_unavailable";
|
|
89
92
|
execution_failed: "execution_failed";
|
|
90
|
-
timeout: "timeout";
|
|
91
93
|
cancelled: "cancelled";
|
|
92
|
-
|
|
93
|
-
not_found: "not_found";
|
|
94
|
-
not_authorized: "not_authorized";
|
|
94
|
+
timeout: "timeout";
|
|
95
95
|
}>;
|
|
96
96
|
message: z.ZodString;
|
|
97
97
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
98
98
|
safeDiagnostic: z.ZodOptional<z.ZodObject<{
|
|
99
99
|
code: z.ZodEnum<{
|
|
100
|
-
provider_unavailable: "provider_unavailable";
|
|
101
|
-
capability_denied: "capability_denied";
|
|
102
100
|
approval_required: "approval_required";
|
|
101
|
+
capability_denied: "capability_denied";
|
|
103
102
|
validation_failed: "validation_failed";
|
|
103
|
+
provider_unavailable: "provider_unavailable";
|
|
104
104
|
execution_failed: "execution_failed";
|
|
105
|
-
output_truncated: "output_truncated";
|
|
106
|
-
timeout: "timeout";
|
|
107
105
|
cancelled: "cancelled";
|
|
106
|
+
timeout: "timeout";
|
|
107
|
+
output_truncated: "output_truncated";
|
|
108
108
|
artifact_unavailable: "artifact_unavailable";
|
|
109
109
|
}>;
|
|
110
110
|
level: z.ZodEnum<{
|
|
@@ -137,14 +137,14 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
137
137
|
certainty: z.ZodLiteral<"side-effects-and-termination-unknown">;
|
|
138
138
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
139
139
|
code: z.ZodEnum<{
|
|
140
|
-
provider_unavailable: "provider_unavailable";
|
|
141
|
-
capability_denied: "capability_denied";
|
|
142
140
|
approval_required: "approval_required";
|
|
141
|
+
capability_denied: "capability_denied";
|
|
143
142
|
validation_failed: "validation_failed";
|
|
143
|
+
provider_unavailable: "provider_unavailable";
|
|
144
144
|
execution_failed: "execution_failed";
|
|
145
|
-
output_truncated: "output_truncated";
|
|
146
|
-
timeout: "timeout";
|
|
147
145
|
cancelled: "cancelled";
|
|
146
|
+
timeout: "timeout";
|
|
147
|
+
output_truncated: "output_truncated";
|
|
148
148
|
artifact_unavailable: "artifact_unavailable";
|
|
149
149
|
}>;
|
|
150
150
|
level: z.ZodEnum<{
|
|
@@ -158,29 +158,29 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
158
158
|
}, z.core.$strict>>>;
|
|
159
159
|
error: z.ZodObject<{
|
|
160
160
|
code: z.ZodEnum<{
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
invalid_request: "invalid_request";
|
|
162
|
+
not_found: "not_found";
|
|
163
|
+
not_authorized: "not_authorized";
|
|
163
164
|
approval_required: "approval_required";
|
|
165
|
+
capability_denied: "capability_denied";
|
|
164
166
|
validation_failed: "validation_failed";
|
|
167
|
+
provider_unavailable: "provider_unavailable";
|
|
165
168
|
execution_failed: "execution_failed";
|
|
166
|
-
timeout: "timeout";
|
|
167
169
|
cancelled: "cancelled";
|
|
168
|
-
|
|
169
|
-
not_found: "not_found";
|
|
170
|
-
not_authorized: "not_authorized";
|
|
170
|
+
timeout: "timeout";
|
|
171
171
|
}>;
|
|
172
172
|
message: z.ZodString;
|
|
173
173
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
174
174
|
safeDiagnostic: z.ZodOptional<z.ZodObject<{
|
|
175
175
|
code: z.ZodEnum<{
|
|
176
|
-
provider_unavailable: "provider_unavailable";
|
|
177
|
-
capability_denied: "capability_denied";
|
|
178
176
|
approval_required: "approval_required";
|
|
177
|
+
capability_denied: "capability_denied";
|
|
179
178
|
validation_failed: "validation_failed";
|
|
179
|
+
provider_unavailable: "provider_unavailable";
|
|
180
180
|
execution_failed: "execution_failed";
|
|
181
|
-
output_truncated: "output_truncated";
|
|
182
|
-
timeout: "timeout";
|
|
183
181
|
cancelled: "cancelled";
|
|
182
|
+
timeout: "timeout";
|
|
183
|
+
output_truncated: "output_truncated";
|
|
184
184
|
artifact_unavailable: "artifact_unavailable";
|
|
185
185
|
}>;
|
|
186
186
|
level: z.ZodEnum<{
|
|
@@ -33,14 +33,14 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
33
33
|
completion: _$zod.ZodLiteral<"succeeded">;
|
|
34
34
|
diagnostics: _$zod.ZodDefault<_$zod.ZodArray<_$zod.ZodObject<{
|
|
35
35
|
code: _$zod.ZodEnum<{
|
|
36
|
-
provider_unavailable: "provider_unavailable";
|
|
37
|
-
capability_denied: "capability_denied";
|
|
38
36
|
approval_required: "approval_required";
|
|
37
|
+
capability_denied: "capability_denied";
|
|
39
38
|
validation_failed: "validation_failed";
|
|
39
|
+
provider_unavailable: "provider_unavailable";
|
|
40
40
|
execution_failed: "execution_failed";
|
|
41
|
-
output_truncated: "output_truncated";
|
|
42
|
-
timeout: "timeout";
|
|
43
41
|
cancelled: "cancelled";
|
|
42
|
+
timeout: "timeout";
|
|
43
|
+
output_truncated: "output_truncated";
|
|
44
44
|
artifact_unavailable: "artifact_unavailable";
|
|
45
45
|
}>;
|
|
46
46
|
level: _$zod.ZodEnum<{
|
|
@@ -63,14 +63,14 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
63
63
|
certainty: _$zod.ZodLiteral<"proven">;
|
|
64
64
|
diagnostics: _$zod.ZodDefault<_$zod.ZodArray<_$zod.ZodObject<{
|
|
65
65
|
code: _$zod.ZodEnum<{
|
|
66
|
-
provider_unavailable: "provider_unavailable";
|
|
67
|
-
capability_denied: "capability_denied";
|
|
68
66
|
approval_required: "approval_required";
|
|
67
|
+
capability_denied: "capability_denied";
|
|
69
68
|
validation_failed: "validation_failed";
|
|
69
|
+
provider_unavailable: "provider_unavailable";
|
|
70
70
|
execution_failed: "execution_failed";
|
|
71
|
-
output_truncated: "output_truncated";
|
|
72
|
-
timeout: "timeout";
|
|
73
71
|
cancelled: "cancelled";
|
|
72
|
+
timeout: "timeout";
|
|
73
|
+
output_truncated: "output_truncated";
|
|
74
74
|
artifact_unavailable: "artifact_unavailable";
|
|
75
75
|
}>;
|
|
76
76
|
level: _$zod.ZodEnum<{
|
|
@@ -84,29 +84,29 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
84
84
|
}, _$zod_v4_core0.$strict>>>;
|
|
85
85
|
error: _$zod.ZodObject<{
|
|
86
86
|
code: _$zod.ZodEnum<{
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
invalid_request: "invalid_request";
|
|
88
|
+
not_found: "not_found";
|
|
89
|
+
not_authorized: "not_authorized";
|
|
89
90
|
approval_required: "approval_required";
|
|
91
|
+
capability_denied: "capability_denied";
|
|
90
92
|
validation_failed: "validation_failed";
|
|
93
|
+
provider_unavailable: "provider_unavailable";
|
|
91
94
|
execution_failed: "execution_failed";
|
|
92
|
-
timeout: "timeout";
|
|
93
95
|
cancelled: "cancelled";
|
|
94
|
-
|
|
95
|
-
not_found: "not_found";
|
|
96
|
-
not_authorized: "not_authorized";
|
|
96
|
+
timeout: "timeout";
|
|
97
97
|
}>;
|
|
98
98
|
message: _$zod.ZodString;
|
|
99
99
|
retryable: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
100
100
|
safeDiagnostic: _$zod.ZodOptional<_$zod.ZodObject<{
|
|
101
101
|
code: _$zod.ZodEnum<{
|
|
102
|
-
provider_unavailable: "provider_unavailable";
|
|
103
|
-
capability_denied: "capability_denied";
|
|
104
102
|
approval_required: "approval_required";
|
|
103
|
+
capability_denied: "capability_denied";
|
|
105
104
|
validation_failed: "validation_failed";
|
|
105
|
+
provider_unavailable: "provider_unavailable";
|
|
106
106
|
execution_failed: "execution_failed";
|
|
107
|
-
output_truncated: "output_truncated";
|
|
108
|
-
timeout: "timeout";
|
|
109
107
|
cancelled: "cancelled";
|
|
108
|
+
timeout: "timeout";
|
|
109
|
+
output_truncated: "output_truncated";
|
|
110
110
|
artifact_unavailable: "artifact_unavailable";
|
|
111
111
|
}>;
|
|
112
112
|
level: _$zod.ZodEnum<{
|
|
@@ -139,14 +139,14 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
139
139
|
certainty: _$zod.ZodLiteral<"side-effects-and-termination-unknown">;
|
|
140
140
|
diagnostics: _$zod.ZodDefault<_$zod.ZodArray<_$zod.ZodObject<{
|
|
141
141
|
code: _$zod.ZodEnum<{
|
|
142
|
-
provider_unavailable: "provider_unavailable";
|
|
143
|
-
capability_denied: "capability_denied";
|
|
144
142
|
approval_required: "approval_required";
|
|
143
|
+
capability_denied: "capability_denied";
|
|
145
144
|
validation_failed: "validation_failed";
|
|
145
|
+
provider_unavailable: "provider_unavailable";
|
|
146
146
|
execution_failed: "execution_failed";
|
|
147
|
-
output_truncated: "output_truncated";
|
|
148
|
-
timeout: "timeout";
|
|
149
147
|
cancelled: "cancelled";
|
|
148
|
+
timeout: "timeout";
|
|
149
|
+
output_truncated: "output_truncated";
|
|
150
150
|
artifact_unavailable: "artifact_unavailable";
|
|
151
151
|
}>;
|
|
152
152
|
level: _$zod.ZodEnum<{
|
|
@@ -160,29 +160,29 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
160
160
|
}, _$zod_v4_core0.$strict>>>;
|
|
161
161
|
error: _$zod.ZodObject<{
|
|
162
162
|
code: _$zod.ZodEnum<{
|
|
163
|
-
|
|
164
|
-
|
|
163
|
+
invalid_request: "invalid_request";
|
|
164
|
+
not_found: "not_found";
|
|
165
|
+
not_authorized: "not_authorized";
|
|
165
166
|
approval_required: "approval_required";
|
|
167
|
+
capability_denied: "capability_denied";
|
|
166
168
|
validation_failed: "validation_failed";
|
|
169
|
+
provider_unavailable: "provider_unavailable";
|
|
167
170
|
execution_failed: "execution_failed";
|
|
168
|
-
timeout: "timeout";
|
|
169
171
|
cancelled: "cancelled";
|
|
170
|
-
|
|
171
|
-
not_found: "not_found";
|
|
172
|
-
not_authorized: "not_authorized";
|
|
172
|
+
timeout: "timeout";
|
|
173
173
|
}>;
|
|
174
174
|
message: _$zod.ZodString;
|
|
175
175
|
retryable: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
176
176
|
safeDiagnostic: _$zod.ZodOptional<_$zod.ZodObject<{
|
|
177
177
|
code: _$zod.ZodEnum<{
|
|
178
|
-
provider_unavailable: "provider_unavailable";
|
|
179
|
-
capability_denied: "capability_denied";
|
|
180
178
|
approval_required: "approval_required";
|
|
179
|
+
capability_denied: "capability_denied";
|
|
181
180
|
validation_failed: "validation_failed";
|
|
181
|
+
provider_unavailable: "provider_unavailable";
|
|
182
182
|
execution_failed: "execution_failed";
|
|
183
|
-
output_truncated: "output_truncated";
|
|
184
|
-
timeout: "timeout";
|
|
185
183
|
cancelled: "cancelled";
|
|
184
|
+
timeout: "timeout";
|
|
185
|
+
output_truncated: "output_truncated";
|
|
186
186
|
artifact_unavailable: "artifact_unavailable";
|
|
187
187
|
}>;
|
|
188
188
|
level: _$zod.ZodEnum<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-vm/controller-execution-contracts",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.124",
|
|
4
4
|
"description": "Zod contracts for controller-owned portal execution boundaries.",
|
|
5
5
|
"homepage": "https://github.com/ShravanSunder/agent-vm#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"zod": "^4.4.3",
|
|
53
|
-
"@agent-vm/agent-portal-sdk": "0.0.
|
|
53
|
+
"@agent-vm/agent-portal-sdk": "0.0.124"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"vitest": "^4.1.5"
|