@tangle-network/agent-interface 0.36.0 → 0.38.0
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/README.md +2 -2
- package/dist/agent-candidate-artifact-schema.d.ts +504 -0
- package/dist/agent-candidate-artifact-schema.js +16 -1
- package/dist/agent-candidate-execution-plan-schema.d.ts +50 -27
- package/dist/agent-candidate-execution-plan-schema.js +4 -16
- package/dist/agent-candidate-profile-schema.d.ts +341 -25
- package/dist/agent-candidate-promotion-schema.d.ts +2320 -287
- package/dist/agent-candidate-receipt-schema.d.ts +50 -27
- package/dist/agent-candidate-schema-common.js +1 -1
- package/dist/agent-candidate-schema.d.ts +341 -25
- package/dist/agent-candidate.d.ts +7 -8
- package/dist/agent-execution-preparation.d.ts +366 -0
- package/dist/agent-execution-preparation.js +793 -0
- package/dist/agent-improvement-source.d.ts +61 -3
- package/dist/agent-improvement-source.js +122 -8
- package/dist/agent-profile-activation.d.ts +41 -0
- package/dist/agent-profile-activation.js +24 -0
- package/dist/agent-profile-improvement-schema.d.ts +48 -4
- package/dist/agent-profile-materialization.d.ts +34 -0
- package/dist/agent-profile-materialization.js +243 -0
- package/dist/agent-profile.d.ts +44 -7
- package/dist/agent-profile.js +39 -2
- package/dist/agent-workspace-lease.d.ts +138 -0
- package/dist/agent-workspace-lease.js +203 -0
- package/dist/harness-capabilities.d.ts +1 -1
- package/dist/harness-capabilities.js +2 -9
- package/dist/index.d.ts +4 -0
- package/dist/index.js +4 -0
- package/dist/profile-schema.d.ts +142 -84
- package/dist/profile-schema.js +152 -41
- package/package.json +3 -1
|
@@ -57,25 +57,13 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
57
57
|
allow: "allow";
|
|
58
58
|
ask: "ask";
|
|
59
59
|
deny: "deny";
|
|
60
|
-
}>, z.
|
|
61
|
-
allow: "allow";
|
|
62
|
-
ask: "ask";
|
|
63
|
-
deny: "deny";
|
|
64
|
-
}>>]>>>;
|
|
60
|
+
}>, z.ZodType<Record<string, "allow" | "ask" | "deny">, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny">, unknown>>]>>>;
|
|
65
61
|
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
66
62
|
mcp: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodType<AgentCandidateMcpServer, unknown, z.core.$ZodTypeInternals<AgentCandidateMcpServer, unknown>>>>;
|
|
67
63
|
subagents: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
68
64
|
prompt: z.ZodOptional<z.ZodString>;
|
|
69
|
-
permissions: z.ZodOptional<z.
|
|
70
|
-
|
|
71
|
-
ask: "ask";
|
|
72
|
-
deny: "deny";
|
|
73
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
74
|
-
allow: "allow";
|
|
75
|
-
ask: "ask";
|
|
76
|
-
deny: "deny";
|
|
77
|
-
}>>]>>>;
|
|
78
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
65
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
66
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
79
67
|
description: z.ZodOptional<z.ZodString>;
|
|
80
68
|
model: z.ZodOptional<z.ZodString>;
|
|
81
69
|
maxSteps: z.ZodOptional<z.ZodNumber>;
|
|
@@ -89,6 +77,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
89
77
|
content: z.ZodString;
|
|
90
78
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
91
79
|
byteLength: z.ZodNumber;
|
|
80
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
81
|
+
kind: z.ZodString;
|
|
82
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
83
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
84
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
85
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
86
|
+
kind: z.ZodLiteral<"spdx">;
|
|
87
|
+
expression: z.ZodString;
|
|
88
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
89
|
+
kind: z.ZodLiteral<"custom">;
|
|
90
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
91
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
92
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
93
|
+
}, z.core.$strict>], "kind">>;
|
|
94
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
95
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
96
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
97
|
+
kind: z.ZodEnum<{
|
|
98
|
+
normalization: "normalization";
|
|
99
|
+
transformation: "transformation";
|
|
100
|
+
}>;
|
|
101
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
102
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
103
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
104
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
105
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
106
|
+
}, z.core.$strict>>>;
|
|
107
|
+
}, z.core.$strict>>;
|
|
92
108
|
}, z.core.$strict>, z.ZodObject<{
|
|
93
109
|
kind: z.ZodLiteral<"github">;
|
|
94
110
|
repository: z.ZodObject<{
|
|
@@ -101,6 +117,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
101
117
|
name: z.ZodOptional<z.ZodString>;
|
|
102
118
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
103
119
|
byteLength: z.ZodNumber;
|
|
120
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
121
|
+
kind: z.ZodString;
|
|
122
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
123
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
124
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
125
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
126
|
+
kind: z.ZodLiteral<"spdx">;
|
|
127
|
+
expression: z.ZodString;
|
|
128
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
129
|
+
kind: z.ZodLiteral<"custom">;
|
|
130
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
131
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
132
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
133
|
+
}, z.core.$strict>], "kind">>;
|
|
134
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
135
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
136
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
137
|
+
kind: z.ZodEnum<{
|
|
138
|
+
normalization: "normalization";
|
|
139
|
+
transformation: "transformation";
|
|
140
|
+
}>;
|
|
141
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
142
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
143
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
144
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
145
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
146
|
+
}, z.core.$strict>>>;
|
|
147
|
+
}, z.core.$strict>>;
|
|
104
148
|
}, z.core.$strict>], "kind">;
|
|
105
149
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
106
150
|
}, z.core.$strict>>>;
|
|
@@ -110,6 +154,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
110
154
|
content: z.ZodString;
|
|
111
155
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
112
156
|
byteLength: z.ZodNumber;
|
|
157
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
158
|
+
kind: z.ZodString;
|
|
159
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
160
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
161
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
162
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
163
|
+
kind: z.ZodLiteral<"spdx">;
|
|
164
|
+
expression: z.ZodString;
|
|
165
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
166
|
+
kind: z.ZodLiteral<"custom">;
|
|
167
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
168
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
169
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
170
|
+
}, z.core.$strict>], "kind">>;
|
|
171
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
172
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
173
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
174
|
+
kind: z.ZodEnum<{
|
|
175
|
+
normalization: "normalization";
|
|
176
|
+
transformation: "transformation";
|
|
177
|
+
}>;
|
|
178
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
179
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
180
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
181
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
182
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
183
|
+
}, z.core.$strict>>>;
|
|
184
|
+
}, z.core.$strict>>;
|
|
113
185
|
}, z.core.$strict>, z.ZodObject<{
|
|
114
186
|
kind: z.ZodLiteral<"github">;
|
|
115
187
|
repository: z.ZodObject<{
|
|
@@ -122,6 +194,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
122
194
|
name: z.ZodOptional<z.ZodString>;
|
|
123
195
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
124
196
|
byteLength: z.ZodNumber;
|
|
197
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
198
|
+
kind: z.ZodString;
|
|
199
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
200
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
201
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
202
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
203
|
+
kind: z.ZodLiteral<"spdx">;
|
|
204
|
+
expression: z.ZodString;
|
|
205
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
206
|
+
kind: z.ZodLiteral<"custom">;
|
|
207
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
208
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
209
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
210
|
+
}, z.core.$strict>], "kind">>;
|
|
211
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
212
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
213
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
214
|
+
kind: z.ZodEnum<{
|
|
215
|
+
normalization: "normalization";
|
|
216
|
+
transformation: "transformation";
|
|
217
|
+
}>;
|
|
218
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
219
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
220
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
221
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
222
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
223
|
+
}, z.core.$strict>>>;
|
|
224
|
+
}, z.core.$strict>>;
|
|
125
225
|
}, z.core.$strict>], "kind">>>;
|
|
126
226
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
127
227
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -129,6 +229,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
129
229
|
content: z.ZodString;
|
|
130
230
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
131
231
|
byteLength: z.ZodNumber;
|
|
232
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
233
|
+
kind: z.ZodString;
|
|
234
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
235
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
236
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
237
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
238
|
+
kind: z.ZodLiteral<"spdx">;
|
|
239
|
+
expression: z.ZodString;
|
|
240
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
241
|
+
kind: z.ZodLiteral<"custom">;
|
|
242
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
243
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
244
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
245
|
+
}, z.core.$strict>], "kind">>;
|
|
246
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
247
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
248
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
249
|
+
kind: z.ZodEnum<{
|
|
250
|
+
normalization: "normalization";
|
|
251
|
+
transformation: "transformation";
|
|
252
|
+
}>;
|
|
253
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
254
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
255
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
256
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
257
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
258
|
+
}, z.core.$strict>>>;
|
|
259
|
+
}, z.core.$strict>>;
|
|
132
260
|
}, z.core.$strict>, z.ZodObject<{
|
|
133
261
|
kind: z.ZodLiteral<"github">;
|
|
134
262
|
repository: z.ZodObject<{
|
|
@@ -141,6 +269,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
141
269
|
name: z.ZodOptional<z.ZodString>;
|
|
142
270
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
143
271
|
byteLength: z.ZodNumber;
|
|
272
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
273
|
+
kind: z.ZodString;
|
|
274
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
275
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
276
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
277
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
278
|
+
kind: z.ZodLiteral<"spdx">;
|
|
279
|
+
expression: z.ZodString;
|
|
280
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
281
|
+
kind: z.ZodLiteral<"custom">;
|
|
282
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
283
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
284
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
285
|
+
}, z.core.$strict>], "kind">>;
|
|
286
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
287
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
288
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
289
|
+
kind: z.ZodEnum<{
|
|
290
|
+
normalization: "normalization";
|
|
291
|
+
transformation: "transformation";
|
|
292
|
+
}>;
|
|
293
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
294
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
295
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
296
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
297
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
298
|
+
}, z.core.$strict>>>;
|
|
299
|
+
}, z.core.$strict>>;
|
|
144
300
|
}, z.core.$strict>], "kind">>>;
|
|
145
301
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
146
302
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -148,6 +304,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
148
304
|
content: z.ZodString;
|
|
149
305
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
150
306
|
byteLength: z.ZodNumber;
|
|
307
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
308
|
+
kind: z.ZodString;
|
|
309
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
310
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
311
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
312
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
313
|
+
kind: z.ZodLiteral<"spdx">;
|
|
314
|
+
expression: z.ZodString;
|
|
315
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
316
|
+
kind: z.ZodLiteral<"custom">;
|
|
317
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
318
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
319
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
320
|
+
}, z.core.$strict>], "kind">>;
|
|
321
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
322
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
323
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
324
|
+
kind: z.ZodEnum<{
|
|
325
|
+
normalization: "normalization";
|
|
326
|
+
transformation: "transformation";
|
|
327
|
+
}>;
|
|
328
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
329
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
330
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
331
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
332
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
333
|
+
}, z.core.$strict>>>;
|
|
334
|
+
}, z.core.$strict>>;
|
|
151
335
|
}, z.core.$strict>, z.ZodObject<{
|
|
152
336
|
kind: z.ZodLiteral<"github">;
|
|
153
337
|
repository: z.ZodObject<{
|
|
@@ -160,6 +344,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
160
344
|
name: z.ZodOptional<z.ZodString>;
|
|
161
345
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
162
346
|
byteLength: z.ZodNumber;
|
|
347
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
348
|
+
kind: z.ZodString;
|
|
349
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
350
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
351
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
352
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
353
|
+
kind: z.ZodLiteral<"spdx">;
|
|
354
|
+
expression: z.ZodString;
|
|
355
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
356
|
+
kind: z.ZodLiteral<"custom">;
|
|
357
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
358
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
359
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
360
|
+
}, z.core.$strict>], "kind">>;
|
|
361
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
362
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
363
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
364
|
+
kind: z.ZodEnum<{
|
|
365
|
+
normalization: "normalization";
|
|
366
|
+
transformation: "transformation";
|
|
367
|
+
}>;
|
|
368
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
369
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
370
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
371
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
372
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
373
|
+
}, z.core.$strict>>>;
|
|
374
|
+
}, z.core.$strict>>;
|
|
163
375
|
}, z.core.$strict>], "kind">>>;
|
|
164
376
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
165
377
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -167,6 +379,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
167
379
|
content: z.ZodString;
|
|
168
380
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
169
381
|
byteLength: z.ZodNumber;
|
|
382
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
383
|
+
kind: z.ZodString;
|
|
384
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
385
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
386
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
387
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
388
|
+
kind: z.ZodLiteral<"spdx">;
|
|
389
|
+
expression: z.ZodString;
|
|
390
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
391
|
+
kind: z.ZodLiteral<"custom">;
|
|
392
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
393
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
394
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
395
|
+
}, z.core.$strict>], "kind">>;
|
|
396
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
397
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
398
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
399
|
+
kind: z.ZodEnum<{
|
|
400
|
+
normalization: "normalization";
|
|
401
|
+
transformation: "transformation";
|
|
402
|
+
}>;
|
|
403
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
404
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
405
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
406
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
407
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
408
|
+
}, z.core.$strict>>>;
|
|
409
|
+
}, z.core.$strict>>;
|
|
170
410
|
}, z.core.$strict>, z.ZodObject<{
|
|
171
411
|
kind: z.ZodLiteral<"github">;
|
|
172
412
|
repository: z.ZodObject<{
|
|
@@ -179,6 +419,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
179
419
|
name: z.ZodOptional<z.ZodString>;
|
|
180
420
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
181
421
|
byteLength: z.ZodNumber;
|
|
422
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
423
|
+
kind: z.ZodString;
|
|
424
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
425
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
426
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
427
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
428
|
+
kind: z.ZodLiteral<"spdx">;
|
|
429
|
+
expression: z.ZodString;
|
|
430
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
431
|
+
kind: z.ZodLiteral<"custom">;
|
|
432
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
433
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
434
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
435
|
+
}, z.core.$strict>], "kind">>;
|
|
436
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
437
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
438
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
439
|
+
kind: z.ZodEnum<{
|
|
440
|
+
normalization: "normalization";
|
|
441
|
+
transformation: "transformation";
|
|
442
|
+
}>;
|
|
443
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
444
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
445
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
446
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
447
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
448
|
+
}, z.core.$strict>>>;
|
|
449
|
+
}, z.core.$strict>>;
|
|
182
450
|
}, z.core.$strict>], "kind">>>;
|
|
183
451
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
184
452
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -186,6 +454,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
186
454
|
content: z.ZodString;
|
|
187
455
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
188
456
|
byteLength: z.ZodNumber;
|
|
457
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
458
|
+
kind: z.ZodString;
|
|
459
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
460
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
461
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
462
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
463
|
+
kind: z.ZodLiteral<"spdx">;
|
|
464
|
+
expression: z.ZodString;
|
|
465
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
466
|
+
kind: z.ZodLiteral<"custom">;
|
|
467
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
468
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
469
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
470
|
+
}, z.core.$strict>], "kind">>;
|
|
471
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
472
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
473
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
474
|
+
kind: z.ZodEnum<{
|
|
475
|
+
normalization: "normalization";
|
|
476
|
+
transformation: "transformation";
|
|
477
|
+
}>;
|
|
478
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
479
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
480
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
481
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
482
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
483
|
+
}, z.core.$strict>>>;
|
|
484
|
+
}, z.core.$strict>>;
|
|
189
485
|
}, z.core.$strict>, z.ZodObject<{
|
|
190
486
|
kind: z.ZodLiteral<"github">;
|
|
191
487
|
repository: z.ZodObject<{
|
|
@@ -198,6 +494,34 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
198
494
|
name: z.ZodOptional<z.ZodString>;
|
|
199
495
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
200
496
|
byteLength: z.ZodNumber;
|
|
497
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
498
|
+
kind: z.ZodString;
|
|
499
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
500
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
501
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
502
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
503
|
+
kind: z.ZodLiteral<"spdx">;
|
|
504
|
+
expression: z.ZodString;
|
|
505
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
506
|
+
kind: z.ZodLiteral<"custom">;
|
|
507
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
508
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
509
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
510
|
+
}, z.core.$strict>], "kind">>;
|
|
511
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
512
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
513
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
514
|
+
kind: z.ZodEnum<{
|
|
515
|
+
normalization: "normalization";
|
|
516
|
+
transformation: "transformation";
|
|
517
|
+
}>;
|
|
518
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
519
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
520
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
521
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
522
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
523
|
+
}, z.core.$strict>>>;
|
|
524
|
+
}, z.core.$strict>>;
|
|
201
525
|
}, z.core.$strict>], "kind">]>>;
|
|
202
526
|
failOnError: z.ZodLiteral<true>;
|
|
203
527
|
}, z.core.$strict>>;
|
|
@@ -217,16 +541,8 @@ export declare const agentCandidateProfileSchema: z.ZodObject<{
|
|
|
217
541
|
}, z.core.$strict>>>>;
|
|
218
542
|
modes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
219
543
|
prompt: z.ZodOptional<z.ZodString>;
|
|
220
|
-
permissions: z.ZodOptional<z.
|
|
221
|
-
|
|
222
|
-
ask: "ask";
|
|
223
|
-
deny: "deny";
|
|
224
|
-
}>, z.ZodRecord<z.ZodString, z.ZodEnum<{
|
|
225
|
-
allow: "allow";
|
|
226
|
-
ask: "ask";
|
|
227
|
-
deny: "deny";
|
|
228
|
-
}>>]>>>;
|
|
229
|
-
tools: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodBoolean>>;
|
|
544
|
+
permissions: z.ZodOptional<z.ZodType<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown, z.core.$ZodTypeInternals<Record<string, "allow" | "ask" | "deny" | Record<string, "allow" | "ask" | "deny">>, unknown>>>;
|
|
545
|
+
tools: z.ZodOptional<z.ZodType<Record<string, boolean>, unknown, z.core.$ZodTypeInternals<Record<string, boolean>, unknown>>>;
|
|
230
546
|
description: z.ZodOptional<z.ZodString>;
|
|
231
547
|
model: z.ZodOptional<z.ZodString>;
|
|
232
548
|
}, z.core.$strict>>>;
|