@agent-vm/controller-execution-contracts 0.0.112 → 0.0.113
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.
|
@@ -7,14 +7,14 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
7
7
|
auditCorrelationId: z.ZodString;
|
|
8
8
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
9
9
|
code: z.ZodEnum<{
|
|
10
|
-
provider_unavailable: "provider_unavailable";
|
|
11
|
-
capability_denied: "capability_denied";
|
|
12
10
|
approval_required: "approval_required";
|
|
11
|
+
capability_denied: "capability_denied";
|
|
13
12
|
validation_failed: "validation_failed";
|
|
13
|
+
provider_unavailable: "provider_unavailable";
|
|
14
14
|
execution_failed: "execution_failed";
|
|
15
|
-
output_truncated: "output_truncated";
|
|
16
|
-
timeout: "timeout";
|
|
17
15
|
cancelled: "cancelled";
|
|
16
|
+
timeout: "timeout";
|
|
17
|
+
output_truncated: "output_truncated";
|
|
18
18
|
artifact_unavailable: "artifact_unavailable";
|
|
19
19
|
}>;
|
|
20
20
|
level: z.ZodEnum<{
|
|
@@ -32,14 +32,14 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
32
32
|
auditCorrelationId: z.ZodOptional<z.ZodString>;
|
|
33
33
|
diagnostics: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
34
34
|
code: z.ZodEnum<{
|
|
35
|
-
provider_unavailable: "provider_unavailable";
|
|
36
|
-
capability_denied: "capability_denied";
|
|
37
35
|
approval_required: "approval_required";
|
|
36
|
+
capability_denied: "capability_denied";
|
|
38
37
|
validation_failed: "validation_failed";
|
|
38
|
+
provider_unavailable: "provider_unavailable";
|
|
39
39
|
execution_failed: "execution_failed";
|
|
40
|
-
output_truncated: "output_truncated";
|
|
41
|
-
timeout: "timeout";
|
|
42
40
|
cancelled: "cancelled";
|
|
41
|
+
timeout: "timeout";
|
|
42
|
+
output_truncated: "output_truncated";
|
|
43
43
|
artifact_unavailable: "artifact_unavailable";
|
|
44
44
|
}>;
|
|
45
45
|
level: z.ZodEnum<{
|
|
@@ -53,29 +53,29 @@ declare const ControllerExecutionResultSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
53
53
|
}, z.core.$strict>>>;
|
|
54
54
|
error: z.ZodObject<{
|
|
55
55
|
code: z.ZodEnum<{
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
invalid_request: "invalid_request";
|
|
57
|
+
not_found: "not_found";
|
|
58
|
+
not_authorized: "not_authorized";
|
|
58
59
|
approval_required: "approval_required";
|
|
60
|
+
capability_denied: "capability_denied";
|
|
59
61
|
validation_failed: "validation_failed";
|
|
62
|
+
provider_unavailable: "provider_unavailable";
|
|
60
63
|
execution_failed: "execution_failed";
|
|
61
|
-
timeout: "timeout";
|
|
62
64
|
cancelled: "cancelled";
|
|
63
|
-
|
|
64
|
-
not_found: "not_found";
|
|
65
|
-
not_authorized: "not_authorized";
|
|
65
|
+
timeout: "timeout";
|
|
66
66
|
}>;
|
|
67
67
|
message: z.ZodString;
|
|
68
68
|
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
69
69
|
safeDiagnostic: z.ZodOptional<z.ZodObject<{
|
|
70
70
|
code: z.ZodEnum<{
|
|
71
|
-
provider_unavailable: "provider_unavailable";
|
|
72
|
-
capability_denied: "capability_denied";
|
|
73
71
|
approval_required: "approval_required";
|
|
72
|
+
capability_denied: "capability_denied";
|
|
74
73
|
validation_failed: "validation_failed";
|
|
74
|
+
provider_unavailable: "provider_unavailable";
|
|
75
75
|
execution_failed: "execution_failed";
|
|
76
|
-
output_truncated: "output_truncated";
|
|
77
|
-
timeout: "timeout";
|
|
78
76
|
cancelled: "cancelled";
|
|
77
|
+
timeout: "timeout";
|
|
78
|
+
output_truncated: "output_truncated";
|
|
79
79
|
artifact_unavailable: "artifact_unavailable";
|
|
80
80
|
}>;
|
|
81
81
|
level: z.ZodEnum<{
|
|
@@ -28,14 +28,14 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
28
28
|
auditCorrelationId: _$zod.ZodString;
|
|
29
29
|
diagnostics: _$zod.ZodDefault<_$zod.ZodArray<_$zod.ZodObject<{
|
|
30
30
|
code: _$zod.ZodEnum<{
|
|
31
|
-
provider_unavailable: "provider_unavailable";
|
|
32
|
-
capability_denied: "capability_denied";
|
|
33
31
|
approval_required: "approval_required";
|
|
32
|
+
capability_denied: "capability_denied";
|
|
34
33
|
validation_failed: "validation_failed";
|
|
34
|
+
provider_unavailable: "provider_unavailable";
|
|
35
35
|
execution_failed: "execution_failed";
|
|
36
|
-
output_truncated: "output_truncated";
|
|
37
|
-
timeout: "timeout";
|
|
38
36
|
cancelled: "cancelled";
|
|
37
|
+
timeout: "timeout";
|
|
38
|
+
output_truncated: "output_truncated";
|
|
39
39
|
artifact_unavailable: "artifact_unavailable";
|
|
40
40
|
}>;
|
|
41
41
|
level: _$zod.ZodEnum<{
|
|
@@ -53,14 +53,14 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
53
53
|
auditCorrelationId: _$zod.ZodOptional<_$zod.ZodString>;
|
|
54
54
|
diagnostics: _$zod.ZodDefault<_$zod.ZodArray<_$zod.ZodObject<{
|
|
55
55
|
code: _$zod.ZodEnum<{
|
|
56
|
-
provider_unavailable: "provider_unavailable";
|
|
57
|
-
capability_denied: "capability_denied";
|
|
58
56
|
approval_required: "approval_required";
|
|
57
|
+
capability_denied: "capability_denied";
|
|
59
58
|
validation_failed: "validation_failed";
|
|
59
|
+
provider_unavailable: "provider_unavailable";
|
|
60
60
|
execution_failed: "execution_failed";
|
|
61
|
-
output_truncated: "output_truncated";
|
|
62
|
-
timeout: "timeout";
|
|
63
61
|
cancelled: "cancelled";
|
|
62
|
+
timeout: "timeout";
|
|
63
|
+
output_truncated: "output_truncated";
|
|
64
64
|
artifact_unavailable: "artifact_unavailable";
|
|
65
65
|
}>;
|
|
66
66
|
level: _$zod.ZodEnum<{
|
|
@@ -74,29 +74,29 @@ declare const ControllerHostActionResultSchema: _$zod.ZodDiscriminatedUnion<[_$z
|
|
|
74
74
|
}, _$zod_v4_core0.$strict>>>;
|
|
75
75
|
error: _$zod.ZodObject<{
|
|
76
76
|
code: _$zod.ZodEnum<{
|
|
77
|
-
|
|
78
|
-
|
|
77
|
+
invalid_request: "invalid_request";
|
|
78
|
+
not_found: "not_found";
|
|
79
|
+
not_authorized: "not_authorized";
|
|
79
80
|
approval_required: "approval_required";
|
|
81
|
+
capability_denied: "capability_denied";
|
|
80
82
|
validation_failed: "validation_failed";
|
|
83
|
+
provider_unavailable: "provider_unavailable";
|
|
81
84
|
execution_failed: "execution_failed";
|
|
82
|
-
timeout: "timeout";
|
|
83
85
|
cancelled: "cancelled";
|
|
84
|
-
|
|
85
|
-
not_found: "not_found";
|
|
86
|
-
not_authorized: "not_authorized";
|
|
86
|
+
timeout: "timeout";
|
|
87
87
|
}>;
|
|
88
88
|
message: _$zod.ZodString;
|
|
89
89
|
retryable: _$zod.ZodOptional<_$zod.ZodBoolean>;
|
|
90
90
|
safeDiagnostic: _$zod.ZodOptional<_$zod.ZodObject<{
|
|
91
91
|
code: _$zod.ZodEnum<{
|
|
92
|
-
provider_unavailable: "provider_unavailable";
|
|
93
|
-
capability_denied: "capability_denied";
|
|
94
92
|
approval_required: "approval_required";
|
|
93
|
+
capability_denied: "capability_denied";
|
|
95
94
|
validation_failed: "validation_failed";
|
|
95
|
+
provider_unavailable: "provider_unavailable";
|
|
96
96
|
execution_failed: "execution_failed";
|
|
97
|
-
output_truncated: "output_truncated";
|
|
98
|
-
timeout: "timeout";
|
|
99
97
|
cancelled: "cancelled";
|
|
98
|
+
timeout: "timeout";
|
|
99
|
+
output_truncated: "output_truncated";
|
|
100
100
|
artifact_unavailable: "artifact_unavailable";
|
|
101
101
|
}>;
|
|
102
102
|
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.113",
|
|
4
4
|
"description": "Zod contracts for controller-owned portal execution boundaries.",
|
|
5
5
|
"homepage": "https://github.com/ShravanSunder/agent-vm#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"zod": "^4.4.3",
|
|
49
|
-
"@agent-vm/agent-portal-sdk": "0.0.
|
|
49
|
+
"@agent-vm/agent-portal-sdk": "0.0.113"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"vitest": "^4.1.5"
|