@tangle-network/agent-interface 0.35.0 → 0.37.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-outcome-schema.d.ts +26 -0
- package/dist/agent-candidate-outcome-schema.js +8 -1
- package/dist/agent-candidate-profile-schema.d.ts +336 -0
- package/dist/agent-candidate-promotion-schema.d.ts +2199 -20
- package/dist/agent-candidate-promotion-schema.js +24 -1
- package/dist/agent-candidate-receipt-schema.d.ts +6 -0
- package/dist/agent-candidate-schema-common.js +1 -1
- package/dist/agent-candidate-schema.d.ts +336 -0
- package/dist/agent-candidate.d.ts +40 -11
- package/dist/agent-execution-limits.d.ts +4 -0
- package/dist/agent-improvement-measurement-schema.d.ts +40 -7
- package/dist/agent-improvement-measurement-schema.js +55 -14
- package/dist/agent-improvement-source.d.ts +61 -3
- package/dist/agent-improvement-source.js +122 -8
- package/dist/agent-profile-improvement-schema.d.ts +133 -10
- package/dist/agent-profile-improvement-schema.js +33 -1
- package/dist/agent-profile-improvement.d.ts +6 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +3 -1
|
@@ -129,6 +129,34 @@ export declare const agentCandidateInlineResourceSchema: z.ZodObject<{
|
|
|
129
129
|
content: z.ZodString;
|
|
130
130
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
131
131
|
byteLength: z.ZodNumber;
|
|
132
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
133
|
+
kind: z.ZodString;
|
|
134
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
135
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
136
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
137
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
138
|
+
kind: z.ZodLiteral<"spdx">;
|
|
139
|
+
expression: z.ZodString;
|
|
140
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
141
|
+
kind: z.ZodLiteral<"custom">;
|
|
142
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
143
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
144
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
145
|
+
}, z.core.$strict>], "kind">>;
|
|
146
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
147
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
148
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
149
|
+
kind: z.ZodEnum<{
|
|
150
|
+
normalization: "normalization";
|
|
151
|
+
transformation: "transformation";
|
|
152
|
+
}>;
|
|
153
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
154
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
155
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
156
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
157
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
158
|
+
}, z.core.$strict>>>;
|
|
159
|
+
}, z.core.$strict>>;
|
|
132
160
|
}, z.core.$strict>;
|
|
133
161
|
export declare const agentCandidateGitHubResourceSchema: z.ZodObject<{
|
|
134
162
|
kind: z.ZodLiteral<"github">;
|
|
@@ -142,6 +170,34 @@ export declare const agentCandidateGitHubResourceSchema: z.ZodObject<{
|
|
|
142
170
|
name: z.ZodOptional<z.ZodString>;
|
|
143
171
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
144
172
|
byteLength: z.ZodNumber;
|
|
173
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
174
|
+
kind: z.ZodString;
|
|
175
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
176
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
177
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
178
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
179
|
+
kind: z.ZodLiteral<"spdx">;
|
|
180
|
+
expression: z.ZodString;
|
|
181
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
182
|
+
kind: z.ZodLiteral<"custom">;
|
|
183
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
184
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
185
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
186
|
+
}, z.core.$strict>], "kind">>;
|
|
187
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
188
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
189
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
190
|
+
kind: z.ZodEnum<{
|
|
191
|
+
normalization: "normalization";
|
|
192
|
+
transformation: "transformation";
|
|
193
|
+
}>;
|
|
194
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
195
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
196
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
197
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
198
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
199
|
+
}, z.core.$strict>>>;
|
|
200
|
+
}, z.core.$strict>>;
|
|
145
201
|
}, z.core.$strict>;
|
|
146
202
|
export declare const agentCandidateResourceRefSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
147
203
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -149,6 +205,34 @@ export declare const agentCandidateResourceRefSchema: z.ZodDiscriminatedUnion<[z
|
|
|
149
205
|
content: z.ZodString;
|
|
150
206
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
151
207
|
byteLength: z.ZodNumber;
|
|
208
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
209
|
+
kind: z.ZodString;
|
|
210
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
211
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
212
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
213
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
214
|
+
kind: z.ZodLiteral<"spdx">;
|
|
215
|
+
expression: z.ZodString;
|
|
216
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
217
|
+
kind: z.ZodLiteral<"custom">;
|
|
218
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
219
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
220
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
221
|
+
}, z.core.$strict>], "kind">>;
|
|
222
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
223
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
224
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
225
|
+
kind: z.ZodEnum<{
|
|
226
|
+
normalization: "normalization";
|
|
227
|
+
transformation: "transformation";
|
|
228
|
+
}>;
|
|
229
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
230
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
231
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
232
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
233
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
234
|
+
}, z.core.$strict>>>;
|
|
235
|
+
}, z.core.$strict>>;
|
|
152
236
|
}, z.core.$strict>, z.ZodObject<{
|
|
153
237
|
kind: z.ZodLiteral<"github">;
|
|
154
238
|
repository: z.ZodObject<{
|
|
@@ -161,6 +245,34 @@ export declare const agentCandidateResourceRefSchema: z.ZodDiscriminatedUnion<[z
|
|
|
161
245
|
name: z.ZodOptional<z.ZodString>;
|
|
162
246
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
163
247
|
byteLength: z.ZodNumber;
|
|
248
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
249
|
+
kind: z.ZodString;
|
|
250
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
251
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
252
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
253
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
254
|
+
kind: z.ZodLiteral<"spdx">;
|
|
255
|
+
expression: z.ZodString;
|
|
256
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
257
|
+
kind: z.ZodLiteral<"custom">;
|
|
258
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
259
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
260
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
261
|
+
}, z.core.$strict>], "kind">>;
|
|
262
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
263
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
264
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
265
|
+
kind: z.ZodEnum<{
|
|
266
|
+
normalization: "normalization";
|
|
267
|
+
transformation: "transformation";
|
|
268
|
+
}>;
|
|
269
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
270
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
271
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
272
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
273
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
274
|
+
}, z.core.$strict>>>;
|
|
275
|
+
}, z.core.$strict>>;
|
|
164
276
|
}, z.core.$strict>], "kind">;
|
|
165
277
|
export declare const agentCandidateFileMountSchema: z.ZodObject<{
|
|
166
278
|
path: z.ZodString;
|
|
@@ -170,6 +282,34 @@ export declare const agentCandidateFileMountSchema: z.ZodObject<{
|
|
|
170
282
|
content: z.ZodString;
|
|
171
283
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
172
284
|
byteLength: z.ZodNumber;
|
|
285
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
286
|
+
kind: z.ZodString;
|
|
287
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
288
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
289
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
290
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
291
|
+
kind: z.ZodLiteral<"spdx">;
|
|
292
|
+
expression: z.ZodString;
|
|
293
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
294
|
+
kind: z.ZodLiteral<"custom">;
|
|
295
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
296
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
297
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
298
|
+
}, z.core.$strict>], "kind">>;
|
|
299
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
300
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
301
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
302
|
+
kind: z.ZodEnum<{
|
|
303
|
+
normalization: "normalization";
|
|
304
|
+
transformation: "transformation";
|
|
305
|
+
}>;
|
|
306
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
307
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
308
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
309
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
310
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
311
|
+
}, z.core.$strict>>>;
|
|
312
|
+
}, z.core.$strict>>;
|
|
173
313
|
}, z.core.$strict>, z.ZodObject<{
|
|
174
314
|
kind: z.ZodLiteral<"github">;
|
|
175
315
|
repository: z.ZodObject<{
|
|
@@ -182,6 +322,34 @@ export declare const agentCandidateFileMountSchema: z.ZodObject<{
|
|
|
182
322
|
name: z.ZodOptional<z.ZodString>;
|
|
183
323
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
184
324
|
byteLength: z.ZodNumber;
|
|
325
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
326
|
+
kind: z.ZodString;
|
|
327
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
328
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
329
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
330
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
331
|
+
kind: z.ZodLiteral<"spdx">;
|
|
332
|
+
expression: z.ZodString;
|
|
333
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
334
|
+
kind: z.ZodLiteral<"custom">;
|
|
335
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
336
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
337
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
338
|
+
}, z.core.$strict>], "kind">>;
|
|
339
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
340
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
341
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
342
|
+
kind: z.ZodEnum<{
|
|
343
|
+
normalization: "normalization";
|
|
344
|
+
transformation: "transformation";
|
|
345
|
+
}>;
|
|
346
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
347
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
348
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
349
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
350
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
351
|
+
}, z.core.$strict>>>;
|
|
352
|
+
}, z.core.$strict>>;
|
|
185
353
|
}, z.core.$strict>], "kind">;
|
|
186
354
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
187
355
|
}, z.core.$strict>;
|
|
@@ -194,6 +362,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
194
362
|
content: z.ZodString;
|
|
195
363
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
196
364
|
byteLength: z.ZodNumber;
|
|
365
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
366
|
+
kind: z.ZodString;
|
|
367
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
368
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
369
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
370
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
371
|
+
kind: z.ZodLiteral<"spdx">;
|
|
372
|
+
expression: z.ZodString;
|
|
373
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
374
|
+
kind: z.ZodLiteral<"custom">;
|
|
375
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
376
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
377
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
378
|
+
}, z.core.$strict>], "kind">>;
|
|
379
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
380
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
381
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
382
|
+
kind: z.ZodEnum<{
|
|
383
|
+
normalization: "normalization";
|
|
384
|
+
transformation: "transformation";
|
|
385
|
+
}>;
|
|
386
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
387
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
388
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
389
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
390
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
391
|
+
}, z.core.$strict>>>;
|
|
392
|
+
}, z.core.$strict>>;
|
|
197
393
|
}, z.core.$strict>, z.ZodObject<{
|
|
198
394
|
kind: z.ZodLiteral<"github">;
|
|
199
395
|
repository: z.ZodObject<{
|
|
@@ -206,6 +402,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
206
402
|
name: z.ZodOptional<z.ZodString>;
|
|
207
403
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
208
404
|
byteLength: z.ZodNumber;
|
|
405
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
406
|
+
kind: z.ZodString;
|
|
407
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
408
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
409
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
410
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
411
|
+
kind: z.ZodLiteral<"spdx">;
|
|
412
|
+
expression: z.ZodString;
|
|
413
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
414
|
+
kind: z.ZodLiteral<"custom">;
|
|
415
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
416
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
417
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
418
|
+
}, z.core.$strict>], "kind">>;
|
|
419
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
420
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
421
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
422
|
+
kind: z.ZodEnum<{
|
|
423
|
+
normalization: "normalization";
|
|
424
|
+
transformation: "transformation";
|
|
425
|
+
}>;
|
|
426
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
427
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
428
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
429
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
430
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
431
|
+
}, z.core.$strict>>>;
|
|
432
|
+
}, z.core.$strict>>;
|
|
209
433
|
}, z.core.$strict>], "kind">;
|
|
210
434
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
211
435
|
}, z.core.$strict>>>;
|
|
@@ -215,6 +439,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
215
439
|
content: z.ZodString;
|
|
216
440
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
217
441
|
byteLength: z.ZodNumber;
|
|
442
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
443
|
+
kind: z.ZodString;
|
|
444
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
445
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
446
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
447
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
448
|
+
kind: z.ZodLiteral<"spdx">;
|
|
449
|
+
expression: z.ZodString;
|
|
450
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
451
|
+
kind: z.ZodLiteral<"custom">;
|
|
452
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
453
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
454
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
455
|
+
}, z.core.$strict>], "kind">>;
|
|
456
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
457
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
458
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
459
|
+
kind: z.ZodEnum<{
|
|
460
|
+
normalization: "normalization";
|
|
461
|
+
transformation: "transformation";
|
|
462
|
+
}>;
|
|
463
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
464
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
465
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
466
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
467
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
468
|
+
}, z.core.$strict>>>;
|
|
469
|
+
}, z.core.$strict>>;
|
|
218
470
|
}, z.core.$strict>, z.ZodObject<{
|
|
219
471
|
kind: z.ZodLiteral<"github">;
|
|
220
472
|
repository: z.ZodObject<{
|
|
@@ -227,6 +479,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
227
479
|
name: z.ZodOptional<z.ZodString>;
|
|
228
480
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
229
481
|
byteLength: z.ZodNumber;
|
|
482
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
483
|
+
kind: z.ZodString;
|
|
484
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
485
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
486
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
487
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
488
|
+
kind: z.ZodLiteral<"spdx">;
|
|
489
|
+
expression: z.ZodString;
|
|
490
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
491
|
+
kind: z.ZodLiteral<"custom">;
|
|
492
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
493
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
494
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
495
|
+
}, z.core.$strict>], "kind">>;
|
|
496
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
497
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
498
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
499
|
+
kind: z.ZodEnum<{
|
|
500
|
+
normalization: "normalization";
|
|
501
|
+
transformation: "transformation";
|
|
502
|
+
}>;
|
|
503
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
504
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
505
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
506
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
507
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
508
|
+
}, z.core.$strict>>>;
|
|
509
|
+
}, z.core.$strict>>;
|
|
230
510
|
}, z.core.$strict>], "kind">>>;
|
|
231
511
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
232
512
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -234,6 +514,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
234
514
|
content: z.ZodString;
|
|
235
515
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
236
516
|
byteLength: z.ZodNumber;
|
|
517
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
518
|
+
kind: z.ZodString;
|
|
519
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
520
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
521
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
522
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
523
|
+
kind: z.ZodLiteral<"spdx">;
|
|
524
|
+
expression: z.ZodString;
|
|
525
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
526
|
+
kind: z.ZodLiteral<"custom">;
|
|
527
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
528
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
529
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
530
|
+
}, z.core.$strict>], "kind">>;
|
|
531
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
532
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
533
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
534
|
+
kind: z.ZodEnum<{
|
|
535
|
+
normalization: "normalization";
|
|
536
|
+
transformation: "transformation";
|
|
537
|
+
}>;
|
|
538
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
539
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
540
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
541
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
542
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
543
|
+
}, z.core.$strict>>>;
|
|
544
|
+
}, z.core.$strict>>;
|
|
237
545
|
}, z.core.$strict>, z.ZodObject<{
|
|
238
546
|
kind: z.ZodLiteral<"github">;
|
|
239
547
|
repository: z.ZodObject<{
|
|
@@ -246,6 +554,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
246
554
|
name: z.ZodOptional<z.ZodString>;
|
|
247
555
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
248
556
|
byteLength: z.ZodNumber;
|
|
557
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
558
|
+
kind: z.ZodString;
|
|
559
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
560
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
561
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
562
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
563
|
+
kind: z.ZodLiteral<"spdx">;
|
|
564
|
+
expression: z.ZodString;
|
|
565
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
566
|
+
kind: z.ZodLiteral<"custom">;
|
|
567
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
568
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
569
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
570
|
+
}, z.core.$strict>], "kind">>;
|
|
571
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
572
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
573
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
574
|
+
kind: z.ZodEnum<{
|
|
575
|
+
normalization: "normalization";
|
|
576
|
+
transformation: "transformation";
|
|
577
|
+
}>;
|
|
578
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
579
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
580
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
581
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
582
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
583
|
+
}, z.core.$strict>>>;
|
|
584
|
+
}, z.core.$strict>>;
|
|
249
585
|
}, z.core.$strict>], "kind">>>;
|
|
250
586
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
251
587
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -253,6 +589,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
253
589
|
content: z.ZodString;
|
|
254
590
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
255
591
|
byteLength: z.ZodNumber;
|
|
592
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
593
|
+
kind: z.ZodString;
|
|
594
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
595
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
596
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
597
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
598
|
+
kind: z.ZodLiteral<"spdx">;
|
|
599
|
+
expression: z.ZodString;
|
|
600
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
601
|
+
kind: z.ZodLiteral<"custom">;
|
|
602
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
603
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
604
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
605
|
+
}, z.core.$strict>], "kind">>;
|
|
606
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
607
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
608
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
609
|
+
kind: z.ZodEnum<{
|
|
610
|
+
normalization: "normalization";
|
|
611
|
+
transformation: "transformation";
|
|
612
|
+
}>;
|
|
613
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
614
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
615
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
616
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
617
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
618
|
+
}, z.core.$strict>>>;
|
|
619
|
+
}, z.core.$strict>>;
|
|
256
620
|
}, z.core.$strict>, z.ZodObject<{
|
|
257
621
|
kind: z.ZodLiteral<"github">;
|
|
258
622
|
repository: z.ZodObject<{
|
|
@@ -265,6 +629,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
265
629
|
name: z.ZodOptional<z.ZodString>;
|
|
266
630
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
267
631
|
byteLength: z.ZodNumber;
|
|
632
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
633
|
+
kind: z.ZodString;
|
|
634
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
635
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
636
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
637
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
638
|
+
kind: z.ZodLiteral<"spdx">;
|
|
639
|
+
expression: z.ZodString;
|
|
640
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
641
|
+
kind: z.ZodLiteral<"custom">;
|
|
642
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
643
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
644
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
645
|
+
}, z.core.$strict>], "kind">>;
|
|
646
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
647
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
648
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
649
|
+
kind: z.ZodEnum<{
|
|
650
|
+
normalization: "normalization";
|
|
651
|
+
transformation: "transformation";
|
|
652
|
+
}>;
|
|
653
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
654
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
655
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
656
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
657
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
658
|
+
}, z.core.$strict>>>;
|
|
659
|
+
}, z.core.$strict>>;
|
|
268
660
|
}, z.core.$strict>], "kind">>>;
|
|
269
661
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
270
662
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -272,6 +664,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
272
664
|
content: z.ZodString;
|
|
273
665
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
274
666
|
byteLength: z.ZodNumber;
|
|
667
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
668
|
+
kind: z.ZodString;
|
|
669
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
670
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
671
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
672
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
673
|
+
kind: z.ZodLiteral<"spdx">;
|
|
674
|
+
expression: z.ZodString;
|
|
675
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
676
|
+
kind: z.ZodLiteral<"custom">;
|
|
677
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
678
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
679
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
680
|
+
}, z.core.$strict>], "kind">>;
|
|
681
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
682
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
683
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
684
|
+
kind: z.ZodEnum<{
|
|
685
|
+
normalization: "normalization";
|
|
686
|
+
transformation: "transformation";
|
|
687
|
+
}>;
|
|
688
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
689
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
690
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
691
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
692
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
693
|
+
}, z.core.$strict>>>;
|
|
694
|
+
}, z.core.$strict>>;
|
|
275
695
|
}, z.core.$strict>, z.ZodObject<{
|
|
276
696
|
kind: z.ZodLiteral<"github">;
|
|
277
697
|
repository: z.ZodObject<{
|
|
@@ -284,6 +704,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
284
704
|
name: z.ZodOptional<z.ZodString>;
|
|
285
705
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
286
706
|
byteLength: z.ZodNumber;
|
|
707
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
708
|
+
kind: z.ZodString;
|
|
709
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
710
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
711
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
712
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
713
|
+
kind: z.ZodLiteral<"spdx">;
|
|
714
|
+
expression: z.ZodString;
|
|
715
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
716
|
+
kind: z.ZodLiteral<"custom">;
|
|
717
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
718
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
719
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
720
|
+
}, z.core.$strict>], "kind">>;
|
|
721
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
722
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
723
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
724
|
+
kind: z.ZodEnum<{
|
|
725
|
+
normalization: "normalization";
|
|
726
|
+
transformation: "transformation";
|
|
727
|
+
}>;
|
|
728
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
729
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
730
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
731
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
732
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
733
|
+
}, z.core.$strict>>>;
|
|
734
|
+
}, z.core.$strict>>;
|
|
287
735
|
}, z.core.$strict>], "kind">>>;
|
|
288
736
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
289
737
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -291,6 +739,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
291
739
|
content: z.ZodString;
|
|
292
740
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
293
741
|
byteLength: z.ZodNumber;
|
|
742
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
743
|
+
kind: z.ZodString;
|
|
744
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
745
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
746
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
747
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
748
|
+
kind: z.ZodLiteral<"spdx">;
|
|
749
|
+
expression: z.ZodString;
|
|
750
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
751
|
+
kind: z.ZodLiteral<"custom">;
|
|
752
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
753
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
754
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
755
|
+
}, z.core.$strict>], "kind">>;
|
|
756
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
757
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
758
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
759
|
+
kind: z.ZodEnum<{
|
|
760
|
+
normalization: "normalization";
|
|
761
|
+
transformation: "transformation";
|
|
762
|
+
}>;
|
|
763
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
764
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
765
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
766
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
767
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
768
|
+
}, z.core.$strict>>>;
|
|
769
|
+
}, z.core.$strict>>;
|
|
294
770
|
}, z.core.$strict>, z.ZodObject<{
|
|
295
771
|
kind: z.ZodLiteral<"github">;
|
|
296
772
|
repository: z.ZodObject<{
|
|
@@ -303,6 +779,34 @@ export declare const agentCandidateResourcesSchema: z.ZodObject<{
|
|
|
303
779
|
name: z.ZodOptional<z.ZodString>;
|
|
304
780
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
305
781
|
byteLength: z.ZodNumber;
|
|
782
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
kind: z.ZodString;
|
|
784
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
785
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
786
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
787
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
788
|
+
kind: z.ZodLiteral<"spdx">;
|
|
789
|
+
expression: z.ZodString;
|
|
790
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
791
|
+
kind: z.ZodLiteral<"custom">;
|
|
792
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
793
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
794
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
795
|
+
}, z.core.$strict>], "kind">>;
|
|
796
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
797
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
798
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
799
|
+
kind: z.ZodEnum<{
|
|
800
|
+
normalization: "normalization";
|
|
801
|
+
transformation: "transformation";
|
|
802
|
+
}>;
|
|
803
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
804
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
805
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
806
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
807
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
808
|
+
}, z.core.$strict>>>;
|
|
809
|
+
}, z.core.$strict>>;
|
|
306
810
|
}, z.core.$strict>], "kind">]>>;
|
|
307
811
|
failOnError: z.ZodLiteral<true>;
|
|
308
812
|
}, z.core.$strict>;
|