@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
|
@@ -80,6 +80,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
80
80
|
content: z.ZodString;
|
|
81
81
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
82
82
|
byteLength: z.ZodNumber;
|
|
83
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
84
|
+
kind: z.ZodString;
|
|
85
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
86
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
87
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
88
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
89
|
+
kind: z.ZodLiteral<"spdx">;
|
|
90
|
+
expression: z.ZodString;
|
|
91
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
92
|
+
kind: z.ZodLiteral<"custom">;
|
|
93
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
94
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
95
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
96
|
+
}, z.core.$strict>], "kind">>;
|
|
97
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
98
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
99
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
100
|
+
kind: z.ZodEnum<{
|
|
101
|
+
normalization: "normalization";
|
|
102
|
+
transformation: "transformation";
|
|
103
|
+
}>;
|
|
104
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
105
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
106
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
107
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
108
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
109
|
+
}, z.core.$strict>>>;
|
|
110
|
+
}, z.core.$strict>>;
|
|
83
111
|
}, z.core.$strict>, z.ZodObject<{
|
|
84
112
|
kind: z.ZodLiteral<"github">;
|
|
85
113
|
repository: z.ZodObject<{
|
|
@@ -92,6 +120,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
92
120
|
name: z.ZodOptional<z.ZodString>;
|
|
93
121
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
94
122
|
byteLength: z.ZodNumber;
|
|
123
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
124
|
+
kind: z.ZodString;
|
|
125
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
126
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
127
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
128
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
129
|
+
kind: z.ZodLiteral<"spdx">;
|
|
130
|
+
expression: z.ZodString;
|
|
131
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
132
|
+
kind: z.ZodLiteral<"custom">;
|
|
133
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
134
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
135
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
136
|
+
}, z.core.$strict>], "kind">>;
|
|
137
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
138
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
139
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
140
|
+
kind: z.ZodEnum<{
|
|
141
|
+
normalization: "normalization";
|
|
142
|
+
transformation: "transformation";
|
|
143
|
+
}>;
|
|
144
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
145
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
146
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
147
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
148
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
149
|
+
}, z.core.$strict>>>;
|
|
150
|
+
}, z.core.$strict>>;
|
|
95
151
|
}, z.core.$strict>], "kind">;
|
|
96
152
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
97
153
|
}, z.core.$strict>>>;
|
|
@@ -101,6 +157,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
101
157
|
content: z.ZodString;
|
|
102
158
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
103
159
|
byteLength: z.ZodNumber;
|
|
160
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
161
|
+
kind: z.ZodString;
|
|
162
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
163
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
164
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
165
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
166
|
+
kind: z.ZodLiteral<"spdx">;
|
|
167
|
+
expression: z.ZodString;
|
|
168
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
169
|
+
kind: z.ZodLiteral<"custom">;
|
|
170
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
171
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
172
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
173
|
+
}, z.core.$strict>], "kind">>;
|
|
174
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
175
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
176
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
177
|
+
kind: z.ZodEnum<{
|
|
178
|
+
normalization: "normalization";
|
|
179
|
+
transformation: "transformation";
|
|
180
|
+
}>;
|
|
181
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
182
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
183
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
184
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
185
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
186
|
+
}, z.core.$strict>>>;
|
|
187
|
+
}, z.core.$strict>>;
|
|
104
188
|
}, z.core.$strict>, z.ZodObject<{
|
|
105
189
|
kind: z.ZodLiteral<"github">;
|
|
106
190
|
repository: z.ZodObject<{
|
|
@@ -113,6 +197,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
113
197
|
name: z.ZodOptional<z.ZodString>;
|
|
114
198
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
115
199
|
byteLength: z.ZodNumber;
|
|
200
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
201
|
+
kind: z.ZodString;
|
|
202
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
203
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
204
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
205
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
206
|
+
kind: z.ZodLiteral<"spdx">;
|
|
207
|
+
expression: z.ZodString;
|
|
208
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
209
|
+
kind: z.ZodLiteral<"custom">;
|
|
210
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
211
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
212
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
213
|
+
}, z.core.$strict>], "kind">>;
|
|
214
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
215
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
216
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
217
|
+
kind: z.ZodEnum<{
|
|
218
|
+
normalization: "normalization";
|
|
219
|
+
transformation: "transformation";
|
|
220
|
+
}>;
|
|
221
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
222
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
223
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
224
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
225
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
226
|
+
}, z.core.$strict>>>;
|
|
227
|
+
}, z.core.$strict>>;
|
|
116
228
|
}, z.core.$strict>], "kind">>>;
|
|
117
229
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
118
230
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -120,6 +232,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
120
232
|
content: z.ZodString;
|
|
121
233
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
122
234
|
byteLength: z.ZodNumber;
|
|
235
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
236
|
+
kind: z.ZodString;
|
|
237
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
238
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
239
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
240
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
241
|
+
kind: z.ZodLiteral<"spdx">;
|
|
242
|
+
expression: z.ZodString;
|
|
243
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
244
|
+
kind: z.ZodLiteral<"custom">;
|
|
245
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
246
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
247
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
248
|
+
}, z.core.$strict>], "kind">>;
|
|
249
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
250
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
251
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
252
|
+
kind: z.ZodEnum<{
|
|
253
|
+
normalization: "normalization";
|
|
254
|
+
transformation: "transformation";
|
|
255
|
+
}>;
|
|
256
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
257
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
258
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
259
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
260
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
261
|
+
}, z.core.$strict>>>;
|
|
262
|
+
}, z.core.$strict>>;
|
|
123
263
|
}, z.core.$strict>, z.ZodObject<{
|
|
124
264
|
kind: z.ZodLiteral<"github">;
|
|
125
265
|
repository: z.ZodObject<{
|
|
@@ -132,6 +272,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
132
272
|
name: z.ZodOptional<z.ZodString>;
|
|
133
273
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
134
274
|
byteLength: z.ZodNumber;
|
|
275
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
276
|
+
kind: z.ZodString;
|
|
277
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
278
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
279
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
280
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
281
|
+
kind: z.ZodLiteral<"spdx">;
|
|
282
|
+
expression: z.ZodString;
|
|
283
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
284
|
+
kind: z.ZodLiteral<"custom">;
|
|
285
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
286
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
287
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
288
|
+
}, z.core.$strict>], "kind">>;
|
|
289
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
290
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
291
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
292
|
+
kind: z.ZodEnum<{
|
|
293
|
+
normalization: "normalization";
|
|
294
|
+
transformation: "transformation";
|
|
295
|
+
}>;
|
|
296
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
297
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
298
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
299
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
300
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
301
|
+
}, z.core.$strict>>>;
|
|
302
|
+
}, z.core.$strict>>;
|
|
135
303
|
}, z.core.$strict>], "kind">>>;
|
|
136
304
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
137
305
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -139,6 +307,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
139
307
|
content: z.ZodString;
|
|
140
308
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
141
309
|
byteLength: z.ZodNumber;
|
|
310
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
311
|
+
kind: z.ZodString;
|
|
312
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
313
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
314
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
315
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
316
|
+
kind: z.ZodLiteral<"spdx">;
|
|
317
|
+
expression: z.ZodString;
|
|
318
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
319
|
+
kind: z.ZodLiteral<"custom">;
|
|
320
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
321
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
322
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
323
|
+
}, z.core.$strict>], "kind">>;
|
|
324
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
325
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
326
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
327
|
+
kind: z.ZodEnum<{
|
|
328
|
+
normalization: "normalization";
|
|
329
|
+
transformation: "transformation";
|
|
330
|
+
}>;
|
|
331
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
332
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
333
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
334
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
335
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
336
|
+
}, z.core.$strict>>>;
|
|
337
|
+
}, z.core.$strict>>;
|
|
142
338
|
}, z.core.$strict>, z.ZodObject<{
|
|
143
339
|
kind: z.ZodLiteral<"github">;
|
|
144
340
|
repository: z.ZodObject<{
|
|
@@ -151,6 +347,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
151
347
|
name: z.ZodOptional<z.ZodString>;
|
|
152
348
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
153
349
|
byteLength: z.ZodNumber;
|
|
350
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
351
|
+
kind: z.ZodString;
|
|
352
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
353
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
354
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
355
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
356
|
+
kind: z.ZodLiteral<"spdx">;
|
|
357
|
+
expression: z.ZodString;
|
|
358
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
359
|
+
kind: z.ZodLiteral<"custom">;
|
|
360
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
361
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
362
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
363
|
+
}, z.core.$strict>], "kind">>;
|
|
364
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
365
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
366
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
367
|
+
kind: z.ZodEnum<{
|
|
368
|
+
normalization: "normalization";
|
|
369
|
+
transformation: "transformation";
|
|
370
|
+
}>;
|
|
371
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
372
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
373
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
374
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
375
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
376
|
+
}, z.core.$strict>>>;
|
|
377
|
+
}, z.core.$strict>>;
|
|
154
378
|
}, z.core.$strict>], "kind">>>;
|
|
155
379
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
156
380
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -158,6 +382,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
158
382
|
content: z.ZodString;
|
|
159
383
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
160
384
|
byteLength: z.ZodNumber;
|
|
385
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
386
|
+
kind: z.ZodString;
|
|
387
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
388
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
389
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
390
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
391
|
+
kind: z.ZodLiteral<"spdx">;
|
|
392
|
+
expression: z.ZodString;
|
|
393
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
394
|
+
kind: z.ZodLiteral<"custom">;
|
|
395
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
396
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
397
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
398
|
+
}, z.core.$strict>], "kind">>;
|
|
399
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
400
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
401
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
402
|
+
kind: z.ZodEnum<{
|
|
403
|
+
normalization: "normalization";
|
|
404
|
+
transformation: "transformation";
|
|
405
|
+
}>;
|
|
406
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
407
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
408
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
409
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
410
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
411
|
+
}, z.core.$strict>>>;
|
|
412
|
+
}, z.core.$strict>>;
|
|
161
413
|
}, z.core.$strict>, z.ZodObject<{
|
|
162
414
|
kind: z.ZodLiteral<"github">;
|
|
163
415
|
repository: z.ZodObject<{
|
|
@@ -170,6 +422,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
170
422
|
name: z.ZodOptional<z.ZodString>;
|
|
171
423
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
172
424
|
byteLength: z.ZodNumber;
|
|
425
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
426
|
+
kind: z.ZodString;
|
|
427
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
428
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
429
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
430
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
431
|
+
kind: z.ZodLiteral<"spdx">;
|
|
432
|
+
expression: z.ZodString;
|
|
433
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
434
|
+
kind: z.ZodLiteral<"custom">;
|
|
435
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
436
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
437
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
438
|
+
}, z.core.$strict>], "kind">>;
|
|
439
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
440
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
441
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
442
|
+
kind: z.ZodEnum<{
|
|
443
|
+
normalization: "normalization";
|
|
444
|
+
transformation: "transformation";
|
|
445
|
+
}>;
|
|
446
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
447
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
448
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
449
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
450
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
451
|
+
}, z.core.$strict>>>;
|
|
452
|
+
}, z.core.$strict>>;
|
|
173
453
|
}, z.core.$strict>], "kind">>>;
|
|
174
454
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
175
455
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -177,6 +457,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
177
457
|
content: z.ZodString;
|
|
178
458
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
179
459
|
byteLength: z.ZodNumber;
|
|
460
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
461
|
+
kind: z.ZodString;
|
|
462
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
463
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
464
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
465
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
466
|
+
kind: z.ZodLiteral<"spdx">;
|
|
467
|
+
expression: z.ZodString;
|
|
468
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
469
|
+
kind: z.ZodLiteral<"custom">;
|
|
470
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
471
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
472
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
473
|
+
}, z.core.$strict>], "kind">>;
|
|
474
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
475
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
476
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
477
|
+
kind: z.ZodEnum<{
|
|
478
|
+
normalization: "normalization";
|
|
479
|
+
transformation: "transformation";
|
|
480
|
+
}>;
|
|
481
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
482
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
483
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
484
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
485
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
486
|
+
}, z.core.$strict>>>;
|
|
487
|
+
}, z.core.$strict>>;
|
|
180
488
|
}, z.core.$strict>, z.ZodObject<{
|
|
181
489
|
kind: z.ZodLiteral<"github">;
|
|
182
490
|
repository: z.ZodObject<{
|
|
@@ -189,6 +497,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
189
497
|
name: z.ZodOptional<z.ZodString>;
|
|
190
498
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
191
499
|
byteLength: z.ZodNumber;
|
|
500
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
501
|
+
kind: z.ZodString;
|
|
502
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
503
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
504
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
505
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
506
|
+
kind: z.ZodLiteral<"spdx">;
|
|
507
|
+
expression: z.ZodString;
|
|
508
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
509
|
+
kind: z.ZodLiteral<"custom">;
|
|
510
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
511
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
512
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
513
|
+
}, z.core.$strict>], "kind">>;
|
|
514
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
515
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
516
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
517
|
+
kind: z.ZodEnum<{
|
|
518
|
+
normalization: "normalization";
|
|
519
|
+
transformation: "transformation";
|
|
520
|
+
}>;
|
|
521
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
522
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
523
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
524
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
525
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
526
|
+
}, z.core.$strict>>>;
|
|
527
|
+
}, z.core.$strict>>;
|
|
192
528
|
}, z.core.$strict>], "kind">]>>;
|
|
193
529
|
failOnError: z.ZodLiteral<true>;
|
|
194
530
|
}, z.core.$strict>>;
|
|
@@ -587,6 +923,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
587
923
|
content: z.ZodString;
|
|
588
924
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
589
925
|
byteLength: z.ZodNumber;
|
|
926
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
927
|
+
kind: z.ZodString;
|
|
928
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
929
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
930
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
931
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
932
|
+
kind: z.ZodLiteral<"spdx">;
|
|
933
|
+
expression: z.ZodString;
|
|
934
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
935
|
+
kind: z.ZodLiteral<"custom">;
|
|
936
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
937
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
938
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
939
|
+
}, z.core.$strict>], "kind">>;
|
|
940
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
941
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
942
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
943
|
+
kind: z.ZodEnum<{
|
|
944
|
+
normalization: "normalization";
|
|
945
|
+
transformation: "transformation";
|
|
946
|
+
}>;
|
|
947
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
948
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
949
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
950
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
951
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
952
|
+
}, z.core.$strict>>>;
|
|
953
|
+
}, z.core.$strict>>;
|
|
590
954
|
}, z.core.$strict>, z.ZodObject<{
|
|
591
955
|
kind: z.ZodLiteral<"github">;
|
|
592
956
|
repository: z.ZodObject<{
|
|
@@ -599,6 +963,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
599
963
|
name: z.ZodOptional<z.ZodString>;
|
|
600
964
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
601
965
|
byteLength: z.ZodNumber;
|
|
966
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
967
|
+
kind: z.ZodString;
|
|
968
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
969
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
970
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
971
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
972
|
+
kind: z.ZodLiteral<"spdx">;
|
|
973
|
+
expression: z.ZodString;
|
|
974
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
975
|
+
kind: z.ZodLiteral<"custom">;
|
|
976
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
977
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
978
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
979
|
+
}, z.core.$strict>], "kind">>;
|
|
980
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
981
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
982
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
983
|
+
kind: z.ZodEnum<{
|
|
984
|
+
normalization: "normalization";
|
|
985
|
+
transformation: "transformation";
|
|
986
|
+
}>;
|
|
987
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
988
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
989
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
990
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
991
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
992
|
+
}, z.core.$strict>>>;
|
|
993
|
+
}, z.core.$strict>>;
|
|
602
994
|
}, z.core.$strict>], "kind">;
|
|
603
995
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
604
996
|
}, z.core.$strict>>>;
|
|
@@ -608,6 +1000,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
608
1000
|
content: z.ZodString;
|
|
609
1001
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
610
1002
|
byteLength: z.ZodNumber;
|
|
1003
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1004
|
+
kind: z.ZodString;
|
|
1005
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1006
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1007
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1008
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1009
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1010
|
+
expression: z.ZodString;
|
|
1011
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1012
|
+
kind: z.ZodLiteral<"custom">;
|
|
1013
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1014
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1015
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1016
|
+
}, z.core.$strict>], "kind">>;
|
|
1017
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1018
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1019
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1020
|
+
kind: z.ZodEnum<{
|
|
1021
|
+
normalization: "normalization";
|
|
1022
|
+
transformation: "transformation";
|
|
1023
|
+
}>;
|
|
1024
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1025
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1026
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1027
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1028
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1029
|
+
}, z.core.$strict>>>;
|
|
1030
|
+
}, z.core.$strict>>;
|
|
611
1031
|
}, z.core.$strict>, z.ZodObject<{
|
|
612
1032
|
kind: z.ZodLiteral<"github">;
|
|
613
1033
|
repository: z.ZodObject<{
|
|
@@ -620,6 +1040,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
620
1040
|
name: z.ZodOptional<z.ZodString>;
|
|
621
1041
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
622
1042
|
byteLength: z.ZodNumber;
|
|
1043
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1044
|
+
kind: z.ZodString;
|
|
1045
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1046
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1047
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1048
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1049
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1050
|
+
expression: z.ZodString;
|
|
1051
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1052
|
+
kind: z.ZodLiteral<"custom">;
|
|
1053
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1054
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1055
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1056
|
+
}, z.core.$strict>], "kind">>;
|
|
1057
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1058
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1059
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1060
|
+
kind: z.ZodEnum<{
|
|
1061
|
+
normalization: "normalization";
|
|
1062
|
+
transformation: "transformation";
|
|
1063
|
+
}>;
|
|
1064
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1065
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1066
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1067
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1068
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1069
|
+
}, z.core.$strict>>>;
|
|
1070
|
+
}, z.core.$strict>>;
|
|
623
1071
|
}, z.core.$strict>], "kind">>>;
|
|
624
1072
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
625
1073
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -627,6 +1075,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
627
1075
|
content: z.ZodString;
|
|
628
1076
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
629
1077
|
byteLength: z.ZodNumber;
|
|
1078
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1079
|
+
kind: z.ZodString;
|
|
1080
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1081
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1082
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1083
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1084
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1085
|
+
expression: z.ZodString;
|
|
1086
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1087
|
+
kind: z.ZodLiteral<"custom">;
|
|
1088
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1089
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1090
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1091
|
+
}, z.core.$strict>], "kind">>;
|
|
1092
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1093
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1094
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1095
|
+
kind: z.ZodEnum<{
|
|
1096
|
+
normalization: "normalization";
|
|
1097
|
+
transformation: "transformation";
|
|
1098
|
+
}>;
|
|
1099
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1100
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1101
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1102
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1103
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1104
|
+
}, z.core.$strict>>>;
|
|
1105
|
+
}, z.core.$strict>>;
|
|
630
1106
|
}, z.core.$strict>, z.ZodObject<{
|
|
631
1107
|
kind: z.ZodLiteral<"github">;
|
|
632
1108
|
repository: z.ZodObject<{
|
|
@@ -639,6 +1115,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
639
1115
|
name: z.ZodOptional<z.ZodString>;
|
|
640
1116
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
641
1117
|
byteLength: z.ZodNumber;
|
|
1118
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1119
|
+
kind: z.ZodString;
|
|
1120
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1121
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1122
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1123
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1124
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1125
|
+
expression: z.ZodString;
|
|
1126
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1127
|
+
kind: z.ZodLiteral<"custom">;
|
|
1128
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1129
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1130
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1131
|
+
}, z.core.$strict>], "kind">>;
|
|
1132
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1133
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1134
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1135
|
+
kind: z.ZodEnum<{
|
|
1136
|
+
normalization: "normalization";
|
|
1137
|
+
transformation: "transformation";
|
|
1138
|
+
}>;
|
|
1139
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1140
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1141
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1142
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1143
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1144
|
+
}, z.core.$strict>>>;
|
|
1145
|
+
}, z.core.$strict>>;
|
|
642
1146
|
}, z.core.$strict>], "kind">>>;
|
|
643
1147
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
644
1148
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -646,6 +1150,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
646
1150
|
content: z.ZodString;
|
|
647
1151
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
648
1152
|
byteLength: z.ZodNumber;
|
|
1153
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1154
|
+
kind: z.ZodString;
|
|
1155
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1156
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1157
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1158
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1159
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1160
|
+
expression: z.ZodString;
|
|
1161
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1162
|
+
kind: z.ZodLiteral<"custom">;
|
|
1163
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1164
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1165
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1166
|
+
}, z.core.$strict>], "kind">>;
|
|
1167
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1168
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1169
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1170
|
+
kind: z.ZodEnum<{
|
|
1171
|
+
normalization: "normalization";
|
|
1172
|
+
transformation: "transformation";
|
|
1173
|
+
}>;
|
|
1174
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1175
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1176
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1177
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1178
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1179
|
+
}, z.core.$strict>>>;
|
|
1180
|
+
}, z.core.$strict>>;
|
|
649
1181
|
}, z.core.$strict>, z.ZodObject<{
|
|
650
1182
|
kind: z.ZodLiteral<"github">;
|
|
651
1183
|
repository: z.ZodObject<{
|
|
@@ -658,6 +1190,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
658
1190
|
name: z.ZodOptional<z.ZodString>;
|
|
659
1191
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
660
1192
|
byteLength: z.ZodNumber;
|
|
1193
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1194
|
+
kind: z.ZodString;
|
|
1195
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1196
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1197
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1198
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1199
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1200
|
+
expression: z.ZodString;
|
|
1201
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1202
|
+
kind: z.ZodLiteral<"custom">;
|
|
1203
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1204
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1205
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1206
|
+
}, z.core.$strict>], "kind">>;
|
|
1207
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1208
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1209
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1210
|
+
kind: z.ZodEnum<{
|
|
1211
|
+
normalization: "normalization";
|
|
1212
|
+
transformation: "transformation";
|
|
1213
|
+
}>;
|
|
1214
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1215
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1216
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1217
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1218
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1219
|
+
}, z.core.$strict>>>;
|
|
1220
|
+
}, z.core.$strict>>;
|
|
661
1221
|
}, z.core.$strict>], "kind">>>;
|
|
662
1222
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
663
1223
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -665,6 +1225,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
665
1225
|
content: z.ZodString;
|
|
666
1226
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
667
1227
|
byteLength: z.ZodNumber;
|
|
1228
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1229
|
+
kind: z.ZodString;
|
|
1230
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1231
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1232
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1233
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1234
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1235
|
+
expression: z.ZodString;
|
|
1236
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1237
|
+
kind: z.ZodLiteral<"custom">;
|
|
1238
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1239
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1240
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1241
|
+
}, z.core.$strict>], "kind">>;
|
|
1242
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1243
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1244
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1245
|
+
kind: z.ZodEnum<{
|
|
1246
|
+
normalization: "normalization";
|
|
1247
|
+
transformation: "transformation";
|
|
1248
|
+
}>;
|
|
1249
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1250
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1251
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1252
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1253
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1254
|
+
}, z.core.$strict>>>;
|
|
1255
|
+
}, z.core.$strict>>;
|
|
668
1256
|
}, z.core.$strict>, z.ZodObject<{
|
|
669
1257
|
kind: z.ZodLiteral<"github">;
|
|
670
1258
|
repository: z.ZodObject<{
|
|
@@ -677,6 +1265,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
677
1265
|
name: z.ZodOptional<z.ZodString>;
|
|
678
1266
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
679
1267
|
byteLength: z.ZodNumber;
|
|
1268
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1269
|
+
kind: z.ZodString;
|
|
1270
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1271
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1272
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1273
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1274
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1275
|
+
expression: z.ZodString;
|
|
1276
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1277
|
+
kind: z.ZodLiteral<"custom">;
|
|
1278
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1279
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1280
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1281
|
+
}, z.core.$strict>], "kind">>;
|
|
1282
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1283
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1284
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1285
|
+
kind: z.ZodEnum<{
|
|
1286
|
+
normalization: "normalization";
|
|
1287
|
+
transformation: "transformation";
|
|
1288
|
+
}>;
|
|
1289
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1290
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1291
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1292
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1293
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1294
|
+
}, z.core.$strict>>>;
|
|
1295
|
+
}, z.core.$strict>>;
|
|
680
1296
|
}, z.core.$strict>], "kind">>>;
|
|
681
1297
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
682
1298
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -684,6 +1300,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
684
1300
|
content: z.ZodString;
|
|
685
1301
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
686
1302
|
byteLength: z.ZodNumber;
|
|
1303
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1304
|
+
kind: z.ZodString;
|
|
1305
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1306
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1307
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1308
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1309
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1310
|
+
expression: z.ZodString;
|
|
1311
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1312
|
+
kind: z.ZodLiteral<"custom">;
|
|
1313
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1314
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1315
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1316
|
+
}, z.core.$strict>], "kind">>;
|
|
1317
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1318
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1319
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1320
|
+
kind: z.ZodEnum<{
|
|
1321
|
+
normalization: "normalization";
|
|
1322
|
+
transformation: "transformation";
|
|
1323
|
+
}>;
|
|
1324
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1325
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1326
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1327
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1328
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1329
|
+
}, z.core.$strict>>>;
|
|
1330
|
+
}, z.core.$strict>>;
|
|
687
1331
|
}, z.core.$strict>, z.ZodObject<{
|
|
688
1332
|
kind: z.ZodLiteral<"github">;
|
|
689
1333
|
repository: z.ZodObject<{
|
|
@@ -696,6 +1340,34 @@ export declare const agentCandidateExperimentSchema: z.ZodObject<{
|
|
|
696
1340
|
name: z.ZodOptional<z.ZodString>;
|
|
697
1341
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
698
1342
|
byteLength: z.ZodNumber;
|
|
1343
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
1344
|
+
kind: z.ZodString;
|
|
1345
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1346
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1347
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1348
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1349
|
+
kind: z.ZodLiteral<"spdx">;
|
|
1350
|
+
expression: z.ZodString;
|
|
1351
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1352
|
+
kind: z.ZodLiteral<"custom">;
|
|
1353
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1354
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1355
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1356
|
+
}, z.core.$strict>], "kind">>;
|
|
1357
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1358
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1359
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1360
|
+
kind: z.ZodEnum<{
|
|
1361
|
+
normalization: "normalization";
|
|
1362
|
+
transformation: "transformation";
|
|
1363
|
+
}>;
|
|
1364
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
1365
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
1366
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1367
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1368
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
1369
|
+
}, z.core.$strict>>>;
|
|
1370
|
+
}, z.core.$strict>>;
|
|
699
1371
|
}, z.core.$strict>], "kind">]>>;
|
|
700
1372
|
failOnError: z.ZodLiteral<true>;
|
|
701
1373
|
}, z.core.$strict>>;
|
|
@@ -2251,6 +2923,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2251
2923
|
cachedInputTokens: number;
|
|
2252
2924
|
reasoningTokens: number;
|
|
2253
2925
|
costUsdNanos: number;
|
|
2926
|
+
costProvenance: "observed" | "estimated";
|
|
2254
2927
|
}[];
|
|
2255
2928
|
kind: "agent-candidate-model-settlement-material";
|
|
2256
2929
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -2271,6 +2944,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2271
2944
|
reasoningTokens: number;
|
|
2272
2945
|
modelCalls: number;
|
|
2273
2946
|
costUsdNanos: number;
|
|
2947
|
+
costProvenance: "observed" | "estimated";
|
|
2274
2948
|
};
|
|
2275
2949
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
2276
2950
|
calls: {
|
|
@@ -2286,6 +2960,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2286
2960
|
cachedInputTokens: number;
|
|
2287
2961
|
reasoningTokens: number;
|
|
2288
2962
|
costUsdNanos: number;
|
|
2963
|
+
costProvenance: "observed" | "estimated";
|
|
2289
2964
|
}[];
|
|
2290
2965
|
kind: "agent-candidate-model-settlement-material";
|
|
2291
2966
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -2306,6 +2981,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2306
2981
|
reasoningTokens: number;
|
|
2307
2982
|
modelCalls: number;
|
|
2308
2983
|
costUsdNanos: number;
|
|
2984
|
+
costProvenance: "observed" | "estimated";
|
|
2309
2985
|
};
|
|
2310
2986
|
}, unknown>>;
|
|
2311
2987
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -2612,6 +3288,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2612
3288
|
reasoningTokens: number;
|
|
2613
3289
|
modelCalls: number;
|
|
2614
3290
|
costUsdNanos: number;
|
|
3291
|
+
costProvenance: "observed" | "estimated";
|
|
2615
3292
|
};
|
|
2616
3293
|
timing: {
|
|
2617
3294
|
startedAtMs: number;
|
|
@@ -2670,6 +3347,7 @@ export declare const candidateExecutionEvidenceSchema: z.ZodObject<{
|
|
|
2670
3347
|
reasoningTokens: number;
|
|
2671
3348
|
modelCalls: number;
|
|
2672
3349
|
costUsdNanos: number;
|
|
3350
|
+
costProvenance: "observed" | "estimated";
|
|
2673
3351
|
};
|
|
2674
3352
|
timing: {
|
|
2675
3353
|
startedAtMs: number;
|
|
@@ -2853,12 +3531,37 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2853
3531
|
diff: z.ZodString;
|
|
2854
3532
|
evaluation: z.ZodObject<{
|
|
2855
3533
|
generationsExplored: z.ZodNumber;
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
3534
|
+
preparation: z.ZodObject<{
|
|
3535
|
+
wallDurationMs: z.ZodNumber;
|
|
3536
|
+
cost: z.ZodObject<{
|
|
3537
|
+
usd: z.ZodNumber;
|
|
3538
|
+
provenance: z.ZodEnum<{
|
|
3539
|
+
observed: "observed";
|
|
3540
|
+
estimated: "estimated";
|
|
3541
|
+
}>;
|
|
3542
|
+
}, z.core.$strict>;
|
|
3543
|
+
}, z.core.$strict>;
|
|
3544
|
+
measurement: z.ZodObject<{
|
|
3545
|
+
wallDurationMs: z.ZodNumber;
|
|
3546
|
+
workDurationMs: z.ZodNumber;
|
|
3547
|
+
cost: z.ZodObject<{
|
|
3548
|
+
usd: z.ZodNumber;
|
|
3549
|
+
provenance: z.ZodEnum<{
|
|
3550
|
+
observed: "observed";
|
|
3551
|
+
estimated: "estimated";
|
|
3552
|
+
}>;
|
|
3553
|
+
}, z.core.$strict>;
|
|
3554
|
+
}, z.core.$strict>;
|
|
3555
|
+
total: z.ZodObject<{
|
|
3556
|
+
wallDurationMs: z.ZodNumber;
|
|
3557
|
+
cost: z.ZodObject<{
|
|
3558
|
+
usd: z.ZodNumber;
|
|
3559
|
+
provenance: z.ZodEnum<{
|
|
3560
|
+
observed: "observed";
|
|
3561
|
+
estimated: "estimated";
|
|
3562
|
+
}>;
|
|
3563
|
+
}, z.core.$strict>;
|
|
3564
|
+
}, z.core.$strict>;
|
|
2862
3565
|
}, z.core.$strict>;
|
|
2863
3566
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<AgentCandidateJsonValue, AgentCandidateJsonValue>>>;
|
|
2864
3567
|
kind: z.ZodLiteral<"agent-improvement-measured-comparison">;
|
|
@@ -2942,6 +3645,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2942
3645
|
content: z.ZodString;
|
|
2943
3646
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2944
3647
|
byteLength: z.ZodNumber;
|
|
3648
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3649
|
+
kind: z.ZodString;
|
|
3650
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3651
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3652
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3653
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3654
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3655
|
+
expression: z.ZodString;
|
|
3656
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3657
|
+
kind: z.ZodLiteral<"custom">;
|
|
3658
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3659
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3660
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3661
|
+
}, z.core.$strict>], "kind">>;
|
|
3662
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3663
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3664
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3665
|
+
kind: z.ZodEnum<{
|
|
3666
|
+
normalization: "normalization";
|
|
3667
|
+
transformation: "transformation";
|
|
3668
|
+
}>;
|
|
3669
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3670
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3671
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3672
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3673
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3674
|
+
}, z.core.$strict>>>;
|
|
3675
|
+
}, z.core.$strict>>;
|
|
2945
3676
|
}, z.core.$strict>, z.ZodObject<{
|
|
2946
3677
|
kind: z.ZodLiteral<"github">;
|
|
2947
3678
|
repository: z.ZodObject<{
|
|
@@ -2954,6 +3685,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2954
3685
|
name: z.ZodOptional<z.ZodString>;
|
|
2955
3686
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2956
3687
|
byteLength: z.ZodNumber;
|
|
3688
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3689
|
+
kind: z.ZodString;
|
|
3690
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3691
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3692
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3693
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3694
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3695
|
+
expression: z.ZodString;
|
|
3696
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3697
|
+
kind: z.ZodLiteral<"custom">;
|
|
3698
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3699
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3700
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3701
|
+
}, z.core.$strict>], "kind">>;
|
|
3702
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3703
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3704
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3705
|
+
kind: z.ZodEnum<{
|
|
3706
|
+
normalization: "normalization";
|
|
3707
|
+
transformation: "transformation";
|
|
3708
|
+
}>;
|
|
3709
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3710
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3711
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3712
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3713
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3714
|
+
}, z.core.$strict>>>;
|
|
3715
|
+
}, z.core.$strict>>;
|
|
2957
3716
|
}, z.core.$strict>], "kind">;
|
|
2958
3717
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
2959
3718
|
}, z.core.$strict>>>;
|
|
@@ -2963,6 +3722,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2963
3722
|
content: z.ZodString;
|
|
2964
3723
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2965
3724
|
byteLength: z.ZodNumber;
|
|
3725
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3726
|
+
kind: z.ZodString;
|
|
3727
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3728
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3729
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3730
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3731
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3732
|
+
expression: z.ZodString;
|
|
3733
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3734
|
+
kind: z.ZodLiteral<"custom">;
|
|
3735
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3736
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3737
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3738
|
+
}, z.core.$strict>], "kind">>;
|
|
3739
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3740
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3741
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3742
|
+
kind: z.ZodEnum<{
|
|
3743
|
+
normalization: "normalization";
|
|
3744
|
+
transformation: "transformation";
|
|
3745
|
+
}>;
|
|
3746
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3747
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3748
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3749
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3750
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3751
|
+
}, z.core.$strict>>>;
|
|
3752
|
+
}, z.core.$strict>>;
|
|
2966
3753
|
}, z.core.$strict>, z.ZodObject<{
|
|
2967
3754
|
kind: z.ZodLiteral<"github">;
|
|
2968
3755
|
repository: z.ZodObject<{
|
|
@@ -2975,6 +3762,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2975
3762
|
name: z.ZodOptional<z.ZodString>;
|
|
2976
3763
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2977
3764
|
byteLength: z.ZodNumber;
|
|
3765
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3766
|
+
kind: z.ZodString;
|
|
3767
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3768
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3769
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3770
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3771
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3772
|
+
expression: z.ZodString;
|
|
3773
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3774
|
+
kind: z.ZodLiteral<"custom">;
|
|
3775
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3776
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3777
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3778
|
+
}, z.core.$strict>], "kind">>;
|
|
3779
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3780
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3781
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3782
|
+
kind: z.ZodEnum<{
|
|
3783
|
+
normalization: "normalization";
|
|
3784
|
+
transformation: "transformation";
|
|
3785
|
+
}>;
|
|
3786
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3787
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3788
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3789
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3790
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3791
|
+
}, z.core.$strict>>>;
|
|
3792
|
+
}, z.core.$strict>>;
|
|
2978
3793
|
}, z.core.$strict>], "kind">>>;
|
|
2979
3794
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2980
3795
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -2982,6 +3797,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2982
3797
|
content: z.ZodString;
|
|
2983
3798
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2984
3799
|
byteLength: z.ZodNumber;
|
|
3800
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3801
|
+
kind: z.ZodString;
|
|
3802
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3803
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3804
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3805
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3806
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3807
|
+
expression: z.ZodString;
|
|
3808
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3809
|
+
kind: z.ZodLiteral<"custom">;
|
|
3810
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3811
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3812
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3813
|
+
}, z.core.$strict>], "kind">>;
|
|
3814
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3815
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3816
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3817
|
+
kind: z.ZodEnum<{
|
|
3818
|
+
normalization: "normalization";
|
|
3819
|
+
transformation: "transformation";
|
|
3820
|
+
}>;
|
|
3821
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3822
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3823
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3824
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3825
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3826
|
+
}, z.core.$strict>>>;
|
|
3827
|
+
}, z.core.$strict>>;
|
|
2985
3828
|
}, z.core.$strict>, z.ZodObject<{
|
|
2986
3829
|
kind: z.ZodLiteral<"github">;
|
|
2987
3830
|
repository: z.ZodObject<{
|
|
@@ -2994,6 +3837,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
2994
3837
|
name: z.ZodOptional<z.ZodString>;
|
|
2995
3838
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
2996
3839
|
byteLength: z.ZodNumber;
|
|
3840
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3841
|
+
kind: z.ZodString;
|
|
3842
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3843
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3844
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3845
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3846
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3847
|
+
expression: z.ZodString;
|
|
3848
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3849
|
+
kind: z.ZodLiteral<"custom">;
|
|
3850
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3851
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3852
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3853
|
+
}, z.core.$strict>], "kind">>;
|
|
3854
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3855
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3856
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3857
|
+
kind: z.ZodEnum<{
|
|
3858
|
+
normalization: "normalization";
|
|
3859
|
+
transformation: "transformation";
|
|
3860
|
+
}>;
|
|
3861
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3862
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3863
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3864
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3865
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3866
|
+
}, z.core.$strict>>>;
|
|
3867
|
+
}, z.core.$strict>>;
|
|
2997
3868
|
}, z.core.$strict>], "kind">>>;
|
|
2998
3869
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
2999
3870
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3001,6 +3872,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3001
3872
|
content: z.ZodString;
|
|
3002
3873
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3003
3874
|
byteLength: z.ZodNumber;
|
|
3875
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3876
|
+
kind: z.ZodString;
|
|
3877
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3878
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3879
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3880
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3881
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3882
|
+
expression: z.ZodString;
|
|
3883
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3884
|
+
kind: z.ZodLiteral<"custom">;
|
|
3885
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3886
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3887
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3888
|
+
}, z.core.$strict>], "kind">>;
|
|
3889
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3890
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3891
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3892
|
+
kind: z.ZodEnum<{
|
|
3893
|
+
normalization: "normalization";
|
|
3894
|
+
transformation: "transformation";
|
|
3895
|
+
}>;
|
|
3896
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3897
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3898
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3899
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3900
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3901
|
+
}, z.core.$strict>>>;
|
|
3902
|
+
}, z.core.$strict>>;
|
|
3004
3903
|
}, z.core.$strict>, z.ZodObject<{
|
|
3005
3904
|
kind: z.ZodLiteral<"github">;
|
|
3006
3905
|
repository: z.ZodObject<{
|
|
@@ -3013,6 +3912,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3013
3912
|
name: z.ZodOptional<z.ZodString>;
|
|
3014
3913
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3015
3914
|
byteLength: z.ZodNumber;
|
|
3915
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3916
|
+
kind: z.ZodString;
|
|
3917
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3918
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3919
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3920
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3921
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3922
|
+
expression: z.ZodString;
|
|
3923
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3924
|
+
kind: z.ZodLiteral<"custom">;
|
|
3925
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3926
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3927
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3928
|
+
}, z.core.$strict>], "kind">>;
|
|
3929
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3930
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3931
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3932
|
+
kind: z.ZodEnum<{
|
|
3933
|
+
normalization: "normalization";
|
|
3934
|
+
transformation: "transformation";
|
|
3935
|
+
}>;
|
|
3936
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3937
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3938
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3939
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3940
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3941
|
+
}, z.core.$strict>>>;
|
|
3942
|
+
}, z.core.$strict>>;
|
|
3016
3943
|
}, z.core.$strict>], "kind">>>;
|
|
3017
3944
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3018
3945
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3020,6 +3947,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3020
3947
|
content: z.ZodString;
|
|
3021
3948
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3022
3949
|
byteLength: z.ZodNumber;
|
|
3950
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3951
|
+
kind: z.ZodString;
|
|
3952
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3953
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3954
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3955
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3956
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3957
|
+
expression: z.ZodString;
|
|
3958
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3959
|
+
kind: z.ZodLiteral<"custom">;
|
|
3960
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3961
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3962
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3963
|
+
}, z.core.$strict>], "kind">>;
|
|
3964
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3965
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3966
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3967
|
+
kind: z.ZodEnum<{
|
|
3968
|
+
normalization: "normalization";
|
|
3969
|
+
transformation: "transformation";
|
|
3970
|
+
}>;
|
|
3971
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3972
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3973
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3974
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3975
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3976
|
+
}, z.core.$strict>>>;
|
|
3977
|
+
}, z.core.$strict>>;
|
|
3023
3978
|
}, z.core.$strict>, z.ZodObject<{
|
|
3024
3979
|
kind: z.ZodLiteral<"github">;
|
|
3025
3980
|
repository: z.ZodObject<{
|
|
@@ -3032,6 +3987,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3032
3987
|
name: z.ZodOptional<z.ZodString>;
|
|
3033
3988
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3034
3989
|
byteLength: z.ZodNumber;
|
|
3990
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
3991
|
+
kind: z.ZodString;
|
|
3992
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
3993
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3994
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
3995
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3996
|
+
kind: z.ZodLiteral<"spdx">;
|
|
3997
|
+
expression: z.ZodString;
|
|
3998
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
3999
|
+
kind: z.ZodLiteral<"custom">;
|
|
4000
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4001
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4002
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4003
|
+
}, z.core.$strict>], "kind">>;
|
|
4004
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4005
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4006
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4007
|
+
kind: z.ZodEnum<{
|
|
4008
|
+
normalization: "normalization";
|
|
4009
|
+
transformation: "transformation";
|
|
4010
|
+
}>;
|
|
4011
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4012
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4013
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4014
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4015
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4016
|
+
}, z.core.$strict>>>;
|
|
4017
|
+
}, z.core.$strict>>;
|
|
3035
4018
|
}, z.core.$strict>], "kind">>>;
|
|
3036
4019
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3037
4020
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3039,6 +4022,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3039
4022
|
content: z.ZodString;
|
|
3040
4023
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3041
4024
|
byteLength: z.ZodNumber;
|
|
4025
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4026
|
+
kind: z.ZodString;
|
|
4027
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4028
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4029
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4030
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4031
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4032
|
+
expression: z.ZodString;
|
|
4033
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4034
|
+
kind: z.ZodLiteral<"custom">;
|
|
4035
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4036
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4037
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4038
|
+
}, z.core.$strict>], "kind">>;
|
|
4039
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4040
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4041
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4042
|
+
kind: z.ZodEnum<{
|
|
4043
|
+
normalization: "normalization";
|
|
4044
|
+
transformation: "transformation";
|
|
4045
|
+
}>;
|
|
4046
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4047
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4048
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4049
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4050
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4051
|
+
}, z.core.$strict>>>;
|
|
4052
|
+
}, z.core.$strict>>;
|
|
3042
4053
|
}, z.core.$strict>, z.ZodObject<{
|
|
3043
4054
|
kind: z.ZodLiteral<"github">;
|
|
3044
4055
|
repository: z.ZodObject<{
|
|
@@ -3051,6 +4062,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3051
4062
|
name: z.ZodOptional<z.ZodString>;
|
|
3052
4063
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3053
4064
|
byteLength: z.ZodNumber;
|
|
4065
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4066
|
+
kind: z.ZodString;
|
|
4067
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4068
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4069
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4070
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4071
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4072
|
+
expression: z.ZodString;
|
|
4073
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4074
|
+
kind: z.ZodLiteral<"custom">;
|
|
4075
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4076
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4077
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4078
|
+
}, z.core.$strict>], "kind">>;
|
|
4079
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4080
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4081
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4082
|
+
kind: z.ZodEnum<{
|
|
4083
|
+
normalization: "normalization";
|
|
4084
|
+
transformation: "transformation";
|
|
4085
|
+
}>;
|
|
4086
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4087
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4088
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4089
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4090
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4091
|
+
}, z.core.$strict>>>;
|
|
4092
|
+
}, z.core.$strict>>;
|
|
3054
4093
|
}, z.core.$strict>], "kind">]>>;
|
|
3055
4094
|
failOnError: z.ZodLiteral<true>;
|
|
3056
4095
|
}, z.core.$strict>>;
|
|
@@ -3449,6 +4488,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3449
4488
|
content: z.ZodString;
|
|
3450
4489
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3451
4490
|
byteLength: z.ZodNumber;
|
|
4491
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4492
|
+
kind: z.ZodString;
|
|
4493
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4494
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4495
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4496
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4497
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4498
|
+
expression: z.ZodString;
|
|
4499
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4500
|
+
kind: z.ZodLiteral<"custom">;
|
|
4501
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4502
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4503
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4504
|
+
}, z.core.$strict>], "kind">>;
|
|
4505
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4506
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4507
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4508
|
+
kind: z.ZodEnum<{
|
|
4509
|
+
normalization: "normalization";
|
|
4510
|
+
transformation: "transformation";
|
|
4511
|
+
}>;
|
|
4512
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4513
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4514
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4515
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4516
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4517
|
+
}, z.core.$strict>>>;
|
|
4518
|
+
}, z.core.$strict>>;
|
|
3452
4519
|
}, z.core.$strict>, z.ZodObject<{
|
|
3453
4520
|
kind: z.ZodLiteral<"github">;
|
|
3454
4521
|
repository: z.ZodObject<{
|
|
@@ -3461,6 +4528,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3461
4528
|
name: z.ZodOptional<z.ZodString>;
|
|
3462
4529
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3463
4530
|
byteLength: z.ZodNumber;
|
|
4531
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4532
|
+
kind: z.ZodString;
|
|
4533
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4534
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4535
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4536
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4537
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4538
|
+
expression: z.ZodString;
|
|
4539
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4540
|
+
kind: z.ZodLiteral<"custom">;
|
|
4541
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4542
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4543
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4544
|
+
}, z.core.$strict>], "kind">>;
|
|
4545
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4546
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4547
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4548
|
+
kind: z.ZodEnum<{
|
|
4549
|
+
normalization: "normalization";
|
|
4550
|
+
transformation: "transformation";
|
|
4551
|
+
}>;
|
|
4552
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4553
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4554
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4555
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4556
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4557
|
+
}, z.core.$strict>>>;
|
|
4558
|
+
}, z.core.$strict>>;
|
|
3464
4559
|
}, z.core.$strict>], "kind">;
|
|
3465
4560
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
3466
4561
|
}, z.core.$strict>>>;
|
|
@@ -3470,6 +4565,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3470
4565
|
content: z.ZodString;
|
|
3471
4566
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3472
4567
|
byteLength: z.ZodNumber;
|
|
4568
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4569
|
+
kind: z.ZodString;
|
|
4570
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4571
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4572
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4573
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4574
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4575
|
+
expression: z.ZodString;
|
|
4576
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4577
|
+
kind: z.ZodLiteral<"custom">;
|
|
4578
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4579
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4580
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4581
|
+
}, z.core.$strict>], "kind">>;
|
|
4582
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4583
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4584
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4585
|
+
kind: z.ZodEnum<{
|
|
4586
|
+
normalization: "normalization";
|
|
4587
|
+
transformation: "transformation";
|
|
4588
|
+
}>;
|
|
4589
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4590
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4591
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4592
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4593
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4594
|
+
}, z.core.$strict>>>;
|
|
4595
|
+
}, z.core.$strict>>;
|
|
3473
4596
|
}, z.core.$strict>, z.ZodObject<{
|
|
3474
4597
|
kind: z.ZodLiteral<"github">;
|
|
3475
4598
|
repository: z.ZodObject<{
|
|
@@ -3482,6 +4605,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3482
4605
|
name: z.ZodOptional<z.ZodString>;
|
|
3483
4606
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3484
4607
|
byteLength: z.ZodNumber;
|
|
4608
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4609
|
+
kind: z.ZodString;
|
|
4610
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4611
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4612
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4613
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4614
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4615
|
+
expression: z.ZodString;
|
|
4616
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4617
|
+
kind: z.ZodLiteral<"custom">;
|
|
4618
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4619
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4620
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4621
|
+
}, z.core.$strict>], "kind">>;
|
|
4622
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4623
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4624
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4625
|
+
kind: z.ZodEnum<{
|
|
4626
|
+
normalization: "normalization";
|
|
4627
|
+
transformation: "transformation";
|
|
4628
|
+
}>;
|
|
4629
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4630
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4631
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4632
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4633
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4634
|
+
}, z.core.$strict>>>;
|
|
4635
|
+
}, z.core.$strict>>;
|
|
3485
4636
|
}, z.core.$strict>], "kind">>>;
|
|
3486
4637
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3487
4638
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3489,6 +4640,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3489
4640
|
content: z.ZodString;
|
|
3490
4641
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3491
4642
|
byteLength: z.ZodNumber;
|
|
4643
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4644
|
+
kind: z.ZodString;
|
|
4645
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4646
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4647
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4648
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4649
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4650
|
+
expression: z.ZodString;
|
|
4651
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4652
|
+
kind: z.ZodLiteral<"custom">;
|
|
4653
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4654
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4655
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4656
|
+
}, z.core.$strict>], "kind">>;
|
|
4657
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4658
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4659
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4660
|
+
kind: z.ZodEnum<{
|
|
4661
|
+
normalization: "normalization";
|
|
4662
|
+
transformation: "transformation";
|
|
4663
|
+
}>;
|
|
4664
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4665
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4666
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4667
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4668
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4669
|
+
}, z.core.$strict>>>;
|
|
4670
|
+
}, z.core.$strict>>;
|
|
3492
4671
|
}, z.core.$strict>, z.ZodObject<{
|
|
3493
4672
|
kind: z.ZodLiteral<"github">;
|
|
3494
4673
|
repository: z.ZodObject<{
|
|
@@ -3501,6 +4680,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3501
4680
|
name: z.ZodOptional<z.ZodString>;
|
|
3502
4681
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3503
4682
|
byteLength: z.ZodNumber;
|
|
4683
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4684
|
+
kind: z.ZodString;
|
|
4685
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4686
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4687
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4688
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4689
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4690
|
+
expression: z.ZodString;
|
|
4691
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4692
|
+
kind: z.ZodLiteral<"custom">;
|
|
4693
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4694
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4695
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4696
|
+
}, z.core.$strict>], "kind">>;
|
|
4697
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4698
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4699
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4700
|
+
kind: z.ZodEnum<{
|
|
4701
|
+
normalization: "normalization";
|
|
4702
|
+
transformation: "transformation";
|
|
4703
|
+
}>;
|
|
4704
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4705
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4706
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4707
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4708
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4709
|
+
}, z.core.$strict>>>;
|
|
4710
|
+
}, z.core.$strict>>;
|
|
3504
4711
|
}, z.core.$strict>], "kind">>>;
|
|
3505
4712
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3506
4713
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3508,6 +4715,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3508
4715
|
content: z.ZodString;
|
|
3509
4716
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3510
4717
|
byteLength: z.ZodNumber;
|
|
4718
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4719
|
+
kind: z.ZodString;
|
|
4720
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4721
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4722
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4723
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4724
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4725
|
+
expression: z.ZodString;
|
|
4726
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4727
|
+
kind: z.ZodLiteral<"custom">;
|
|
4728
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4729
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4730
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4731
|
+
}, z.core.$strict>], "kind">>;
|
|
4732
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4733
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4734
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4735
|
+
kind: z.ZodEnum<{
|
|
4736
|
+
normalization: "normalization";
|
|
4737
|
+
transformation: "transformation";
|
|
4738
|
+
}>;
|
|
4739
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4740
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4741
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4742
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4743
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4744
|
+
}, z.core.$strict>>>;
|
|
4745
|
+
}, z.core.$strict>>;
|
|
3511
4746
|
}, z.core.$strict>, z.ZodObject<{
|
|
3512
4747
|
kind: z.ZodLiteral<"github">;
|
|
3513
4748
|
repository: z.ZodObject<{
|
|
@@ -3520,6 +4755,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3520
4755
|
name: z.ZodOptional<z.ZodString>;
|
|
3521
4756
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3522
4757
|
byteLength: z.ZodNumber;
|
|
4758
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4759
|
+
kind: z.ZodString;
|
|
4760
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4761
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4762
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4763
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4764
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4765
|
+
expression: z.ZodString;
|
|
4766
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4767
|
+
kind: z.ZodLiteral<"custom">;
|
|
4768
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4769
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4770
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4771
|
+
}, z.core.$strict>], "kind">>;
|
|
4772
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4773
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4774
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4775
|
+
kind: z.ZodEnum<{
|
|
4776
|
+
normalization: "normalization";
|
|
4777
|
+
transformation: "transformation";
|
|
4778
|
+
}>;
|
|
4779
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4780
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4781
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4782
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4783
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4784
|
+
}, z.core.$strict>>>;
|
|
4785
|
+
}, z.core.$strict>>;
|
|
3523
4786
|
}, z.core.$strict>], "kind">>>;
|
|
3524
4787
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3525
4788
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3527,6 +4790,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3527
4790
|
content: z.ZodString;
|
|
3528
4791
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3529
4792
|
byteLength: z.ZodNumber;
|
|
4793
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4794
|
+
kind: z.ZodString;
|
|
4795
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4796
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4797
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4798
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4799
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4800
|
+
expression: z.ZodString;
|
|
4801
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4802
|
+
kind: z.ZodLiteral<"custom">;
|
|
4803
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4804
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4805
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4806
|
+
}, z.core.$strict>], "kind">>;
|
|
4807
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4808
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4809
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4810
|
+
kind: z.ZodEnum<{
|
|
4811
|
+
normalization: "normalization";
|
|
4812
|
+
transformation: "transformation";
|
|
4813
|
+
}>;
|
|
4814
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4815
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4816
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4817
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4818
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4819
|
+
}, z.core.$strict>>>;
|
|
4820
|
+
}, z.core.$strict>>;
|
|
3530
4821
|
}, z.core.$strict>, z.ZodObject<{
|
|
3531
4822
|
kind: z.ZodLiteral<"github">;
|
|
3532
4823
|
repository: z.ZodObject<{
|
|
@@ -3539,6 +4830,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3539
4830
|
name: z.ZodOptional<z.ZodString>;
|
|
3540
4831
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3541
4832
|
byteLength: z.ZodNumber;
|
|
4833
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4834
|
+
kind: z.ZodString;
|
|
4835
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4836
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4837
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4838
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4839
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4840
|
+
expression: z.ZodString;
|
|
4841
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4842
|
+
kind: z.ZodLiteral<"custom">;
|
|
4843
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4844
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4845
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4846
|
+
}, z.core.$strict>], "kind">>;
|
|
4847
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4848
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4849
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4850
|
+
kind: z.ZodEnum<{
|
|
4851
|
+
normalization: "normalization";
|
|
4852
|
+
transformation: "transformation";
|
|
4853
|
+
}>;
|
|
4854
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4855
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4856
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4857
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4858
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4859
|
+
}, z.core.$strict>>>;
|
|
4860
|
+
}, z.core.$strict>>;
|
|
3542
4861
|
}, z.core.$strict>], "kind">>>;
|
|
3543
4862
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
3544
4863
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -3546,6 +4865,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3546
4865
|
content: z.ZodString;
|
|
3547
4866
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3548
4867
|
byteLength: z.ZodNumber;
|
|
4868
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4869
|
+
kind: z.ZodString;
|
|
4870
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4871
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4872
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4873
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4874
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4875
|
+
expression: z.ZodString;
|
|
4876
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4877
|
+
kind: z.ZodLiteral<"custom">;
|
|
4878
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4879
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4880
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4881
|
+
}, z.core.$strict>], "kind">>;
|
|
4882
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4883
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4884
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4885
|
+
kind: z.ZodEnum<{
|
|
4886
|
+
normalization: "normalization";
|
|
4887
|
+
transformation: "transformation";
|
|
4888
|
+
}>;
|
|
4889
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4890
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4891
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4892
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4893
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4894
|
+
}, z.core.$strict>>>;
|
|
4895
|
+
}, z.core.$strict>>;
|
|
3549
4896
|
}, z.core.$strict>, z.ZodObject<{
|
|
3550
4897
|
kind: z.ZodLiteral<"github">;
|
|
3551
4898
|
repository: z.ZodObject<{
|
|
@@ -3558,6 +4905,34 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
3558
4905
|
name: z.ZodOptional<z.ZodString>;
|
|
3559
4906
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
3560
4907
|
byteLength: z.ZodNumber;
|
|
4908
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
4909
|
+
kind: z.ZodString;
|
|
4910
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4911
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4912
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4913
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
4914
|
+
kind: z.ZodLiteral<"spdx">;
|
|
4915
|
+
expression: z.ZodString;
|
|
4916
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
4917
|
+
kind: z.ZodLiteral<"custom">;
|
|
4918
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4919
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4920
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4921
|
+
}, z.core.$strict>], "kind">>;
|
|
4922
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4923
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4924
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4925
|
+
kind: z.ZodEnum<{
|
|
4926
|
+
normalization: "normalization";
|
|
4927
|
+
transformation: "transformation";
|
|
4928
|
+
}>;
|
|
4929
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
4930
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
4931
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4932
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4933
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
4934
|
+
}, z.core.$strict>>>;
|
|
4935
|
+
}, z.core.$strict>>;
|
|
3561
4936
|
}, z.core.$strict>], "kind">]>>;
|
|
3562
4937
|
failOnError: z.ZodLiteral<true>;
|
|
3563
4938
|
}, z.core.$strict>>;
|
|
@@ -5114,6 +6489,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5114
6489
|
cachedInputTokens: number;
|
|
5115
6490
|
reasoningTokens: number;
|
|
5116
6491
|
costUsdNanos: number;
|
|
6492
|
+
costProvenance: "observed" | "estimated";
|
|
5117
6493
|
}[];
|
|
5118
6494
|
kind: "agent-candidate-model-settlement-material";
|
|
5119
6495
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -5134,6 +6510,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5134
6510
|
reasoningTokens: number;
|
|
5135
6511
|
modelCalls: number;
|
|
5136
6512
|
costUsdNanos: number;
|
|
6513
|
+
costProvenance: "observed" | "estimated";
|
|
5137
6514
|
};
|
|
5138
6515
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
5139
6516
|
calls: {
|
|
@@ -5149,6 +6526,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5149
6526
|
cachedInputTokens: number;
|
|
5150
6527
|
reasoningTokens: number;
|
|
5151
6528
|
costUsdNanos: number;
|
|
6529
|
+
costProvenance: "observed" | "estimated";
|
|
5152
6530
|
}[];
|
|
5153
6531
|
kind: "agent-candidate-model-settlement-material";
|
|
5154
6532
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -5169,6 +6547,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5169
6547
|
reasoningTokens: number;
|
|
5170
6548
|
modelCalls: number;
|
|
5171
6549
|
costUsdNanos: number;
|
|
6550
|
+
costProvenance: "observed" | "estimated";
|
|
5172
6551
|
};
|
|
5173
6552
|
}, unknown>>;
|
|
5174
6553
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -5475,6 +6854,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5475
6854
|
reasoningTokens: number;
|
|
5476
6855
|
modelCalls: number;
|
|
5477
6856
|
costUsdNanos: number;
|
|
6857
|
+
costProvenance: "observed" | "estimated";
|
|
5478
6858
|
};
|
|
5479
6859
|
timing: {
|
|
5480
6860
|
startedAtMs: number;
|
|
@@ -5533,6 +6913,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
5533
6913
|
reasoningTokens: number;
|
|
5534
6914
|
modelCalls: number;
|
|
5535
6915
|
costUsdNanos: number;
|
|
6916
|
+
costProvenance: "observed" | "estimated";
|
|
5536
6917
|
};
|
|
5537
6918
|
timing: {
|
|
5538
6919
|
startedAtMs: number;
|
|
@@ -6463,6 +7844,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6463
7844
|
cachedInputTokens: number;
|
|
6464
7845
|
reasoningTokens: number;
|
|
6465
7846
|
costUsdNanos: number;
|
|
7847
|
+
costProvenance: "observed" | "estimated";
|
|
6466
7848
|
}[];
|
|
6467
7849
|
kind: "agent-candidate-model-settlement-material";
|
|
6468
7850
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -6483,6 +7865,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6483
7865
|
reasoningTokens: number;
|
|
6484
7866
|
modelCalls: number;
|
|
6485
7867
|
costUsdNanos: number;
|
|
7868
|
+
costProvenance: "observed" | "estimated";
|
|
6486
7869
|
};
|
|
6487
7870
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
6488
7871
|
calls: {
|
|
@@ -6498,6 +7881,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6498
7881
|
cachedInputTokens: number;
|
|
6499
7882
|
reasoningTokens: number;
|
|
6500
7883
|
costUsdNanos: number;
|
|
7884
|
+
costProvenance: "observed" | "estimated";
|
|
6501
7885
|
}[];
|
|
6502
7886
|
kind: "agent-candidate-model-settlement-material";
|
|
6503
7887
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -6518,6 +7902,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6518
7902
|
reasoningTokens: number;
|
|
6519
7903
|
modelCalls: number;
|
|
6520
7904
|
costUsdNanos: number;
|
|
7905
|
+
costProvenance: "observed" | "estimated";
|
|
6521
7906
|
};
|
|
6522
7907
|
}, unknown>>;
|
|
6523
7908
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -6824,6 +8209,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6824
8209
|
reasoningTokens: number;
|
|
6825
8210
|
modelCalls: number;
|
|
6826
8211
|
costUsdNanos: number;
|
|
8212
|
+
costProvenance: "observed" | "estimated";
|
|
6827
8213
|
};
|
|
6828
8214
|
timing: {
|
|
6829
8215
|
startedAtMs: number;
|
|
@@ -6882,6 +8268,7 @@ export declare const agentImprovementMeasuredComparisonSchema: z.ZodObject<{
|
|
|
6882
8268
|
reasoningTokens: number;
|
|
6883
8269
|
modelCalls: number;
|
|
6884
8270
|
costUsdNanos: number;
|
|
8271
|
+
costProvenance: "observed" | "estimated";
|
|
6885
8272
|
};
|
|
6886
8273
|
timing: {
|
|
6887
8274
|
startedAtMs: number;
|
|
@@ -7095,12 +8482,37 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7095
8482
|
diff: z.ZodString;
|
|
7096
8483
|
evaluation: z.ZodObject<{
|
|
7097
8484
|
generationsExplored: z.ZodNumber;
|
|
7098
|
-
|
|
7099
|
-
|
|
7100
|
-
|
|
7101
|
-
|
|
7102
|
-
|
|
7103
|
-
|
|
8485
|
+
preparation: z.ZodObject<{
|
|
8486
|
+
wallDurationMs: z.ZodNumber;
|
|
8487
|
+
cost: z.ZodObject<{
|
|
8488
|
+
usd: z.ZodNumber;
|
|
8489
|
+
provenance: z.ZodEnum<{
|
|
8490
|
+
observed: "observed";
|
|
8491
|
+
estimated: "estimated";
|
|
8492
|
+
}>;
|
|
8493
|
+
}, z.core.$strict>;
|
|
8494
|
+
}, z.core.$strict>;
|
|
8495
|
+
measurement: z.ZodObject<{
|
|
8496
|
+
wallDurationMs: z.ZodNumber;
|
|
8497
|
+
workDurationMs: z.ZodNumber;
|
|
8498
|
+
cost: z.ZodObject<{
|
|
8499
|
+
usd: z.ZodNumber;
|
|
8500
|
+
provenance: z.ZodEnum<{
|
|
8501
|
+
observed: "observed";
|
|
8502
|
+
estimated: "estimated";
|
|
8503
|
+
}>;
|
|
8504
|
+
}, z.core.$strict>;
|
|
8505
|
+
}, z.core.$strict>;
|
|
8506
|
+
total: z.ZodObject<{
|
|
8507
|
+
wallDurationMs: z.ZodNumber;
|
|
8508
|
+
cost: z.ZodObject<{
|
|
8509
|
+
usd: z.ZodNumber;
|
|
8510
|
+
provenance: z.ZodEnum<{
|
|
8511
|
+
observed: "observed";
|
|
8512
|
+
estimated: "estimated";
|
|
8513
|
+
}>;
|
|
8514
|
+
}, z.core.$strict>;
|
|
8515
|
+
}, z.core.$strict>;
|
|
7104
8516
|
}, z.core.$strict>;
|
|
7105
8517
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<AgentCandidateJsonValue, AgentCandidateJsonValue>>>;
|
|
7106
8518
|
kind: z.ZodLiteral<"agent-improvement-measured-comparison">;
|
|
@@ -7184,6 +8596,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7184
8596
|
content: z.ZodString;
|
|
7185
8597
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7186
8598
|
byteLength: z.ZodNumber;
|
|
8599
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8600
|
+
kind: z.ZodString;
|
|
8601
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8602
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8603
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8604
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8605
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8606
|
+
expression: z.ZodString;
|
|
8607
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8608
|
+
kind: z.ZodLiteral<"custom">;
|
|
8609
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8610
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8611
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8612
|
+
}, z.core.$strict>], "kind">>;
|
|
8613
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8614
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8615
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8616
|
+
kind: z.ZodEnum<{
|
|
8617
|
+
normalization: "normalization";
|
|
8618
|
+
transformation: "transformation";
|
|
8619
|
+
}>;
|
|
8620
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8621
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8622
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8623
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8624
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8625
|
+
}, z.core.$strict>>>;
|
|
8626
|
+
}, z.core.$strict>>;
|
|
7187
8627
|
}, z.core.$strict>, z.ZodObject<{
|
|
7188
8628
|
kind: z.ZodLiteral<"github">;
|
|
7189
8629
|
repository: z.ZodObject<{
|
|
@@ -7196,6 +8636,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7196
8636
|
name: z.ZodOptional<z.ZodString>;
|
|
7197
8637
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7198
8638
|
byteLength: z.ZodNumber;
|
|
8639
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8640
|
+
kind: z.ZodString;
|
|
8641
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8642
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8643
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8644
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8645
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8646
|
+
expression: z.ZodString;
|
|
8647
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8648
|
+
kind: z.ZodLiteral<"custom">;
|
|
8649
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8650
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8651
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8652
|
+
}, z.core.$strict>], "kind">>;
|
|
8653
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8654
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8655
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8656
|
+
kind: z.ZodEnum<{
|
|
8657
|
+
normalization: "normalization";
|
|
8658
|
+
transformation: "transformation";
|
|
8659
|
+
}>;
|
|
8660
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8661
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8662
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8663
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8664
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8665
|
+
}, z.core.$strict>>>;
|
|
8666
|
+
}, z.core.$strict>>;
|
|
7199
8667
|
}, z.core.$strict>], "kind">;
|
|
7200
8668
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
7201
8669
|
}, z.core.$strict>>>;
|
|
@@ -7205,6 +8673,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7205
8673
|
content: z.ZodString;
|
|
7206
8674
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7207
8675
|
byteLength: z.ZodNumber;
|
|
8676
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8677
|
+
kind: z.ZodString;
|
|
8678
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8679
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8680
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8681
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8682
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8683
|
+
expression: z.ZodString;
|
|
8684
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8685
|
+
kind: z.ZodLiteral<"custom">;
|
|
8686
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8687
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8688
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8689
|
+
}, z.core.$strict>], "kind">>;
|
|
8690
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8691
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8692
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8693
|
+
kind: z.ZodEnum<{
|
|
8694
|
+
normalization: "normalization";
|
|
8695
|
+
transformation: "transformation";
|
|
8696
|
+
}>;
|
|
8697
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8698
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8699
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8700
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8701
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8702
|
+
}, z.core.$strict>>>;
|
|
8703
|
+
}, z.core.$strict>>;
|
|
7208
8704
|
}, z.core.$strict>, z.ZodObject<{
|
|
7209
8705
|
kind: z.ZodLiteral<"github">;
|
|
7210
8706
|
repository: z.ZodObject<{
|
|
@@ -7217,6 +8713,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7217
8713
|
name: z.ZodOptional<z.ZodString>;
|
|
7218
8714
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7219
8715
|
byteLength: z.ZodNumber;
|
|
8716
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8717
|
+
kind: z.ZodString;
|
|
8718
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8719
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8720
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8721
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8722
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8723
|
+
expression: z.ZodString;
|
|
8724
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8725
|
+
kind: z.ZodLiteral<"custom">;
|
|
8726
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8727
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8728
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8729
|
+
}, z.core.$strict>], "kind">>;
|
|
8730
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8731
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8732
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8733
|
+
kind: z.ZodEnum<{
|
|
8734
|
+
normalization: "normalization";
|
|
8735
|
+
transformation: "transformation";
|
|
8736
|
+
}>;
|
|
8737
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8738
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8739
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8740
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8741
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8742
|
+
}, z.core.$strict>>>;
|
|
8743
|
+
}, z.core.$strict>>;
|
|
7220
8744
|
}, z.core.$strict>], "kind">>>;
|
|
7221
8745
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7222
8746
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7224,6 +8748,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7224
8748
|
content: z.ZodString;
|
|
7225
8749
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7226
8750
|
byteLength: z.ZodNumber;
|
|
8751
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8752
|
+
kind: z.ZodString;
|
|
8753
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8754
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8755
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8756
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8757
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8758
|
+
expression: z.ZodString;
|
|
8759
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8760
|
+
kind: z.ZodLiteral<"custom">;
|
|
8761
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8762
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8763
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8764
|
+
}, z.core.$strict>], "kind">>;
|
|
8765
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8766
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8767
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8768
|
+
kind: z.ZodEnum<{
|
|
8769
|
+
normalization: "normalization";
|
|
8770
|
+
transformation: "transformation";
|
|
8771
|
+
}>;
|
|
8772
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8773
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8774
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8775
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8776
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8777
|
+
}, z.core.$strict>>>;
|
|
8778
|
+
}, z.core.$strict>>;
|
|
7227
8779
|
}, z.core.$strict>, z.ZodObject<{
|
|
7228
8780
|
kind: z.ZodLiteral<"github">;
|
|
7229
8781
|
repository: z.ZodObject<{
|
|
@@ -7236,6 +8788,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7236
8788
|
name: z.ZodOptional<z.ZodString>;
|
|
7237
8789
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7238
8790
|
byteLength: z.ZodNumber;
|
|
8791
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8792
|
+
kind: z.ZodString;
|
|
8793
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8794
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8795
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8796
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8797
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8798
|
+
expression: z.ZodString;
|
|
8799
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8800
|
+
kind: z.ZodLiteral<"custom">;
|
|
8801
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8802
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8803
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8804
|
+
}, z.core.$strict>], "kind">>;
|
|
8805
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8806
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8807
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8808
|
+
kind: z.ZodEnum<{
|
|
8809
|
+
normalization: "normalization";
|
|
8810
|
+
transformation: "transformation";
|
|
8811
|
+
}>;
|
|
8812
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8813
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8814
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8815
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8816
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8817
|
+
}, z.core.$strict>>>;
|
|
8818
|
+
}, z.core.$strict>>;
|
|
7239
8819
|
}, z.core.$strict>], "kind">>>;
|
|
7240
8820
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7241
8821
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7243,6 +8823,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7243
8823
|
content: z.ZodString;
|
|
7244
8824
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7245
8825
|
byteLength: z.ZodNumber;
|
|
8826
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8827
|
+
kind: z.ZodString;
|
|
8828
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8829
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8830
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8831
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8832
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8833
|
+
expression: z.ZodString;
|
|
8834
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8835
|
+
kind: z.ZodLiteral<"custom">;
|
|
8836
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8837
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8838
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8839
|
+
}, z.core.$strict>], "kind">>;
|
|
8840
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8841
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8842
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8843
|
+
kind: z.ZodEnum<{
|
|
8844
|
+
normalization: "normalization";
|
|
8845
|
+
transformation: "transformation";
|
|
8846
|
+
}>;
|
|
8847
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8848
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8849
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8850
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8851
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8852
|
+
}, z.core.$strict>>>;
|
|
8853
|
+
}, z.core.$strict>>;
|
|
7246
8854
|
}, z.core.$strict>, z.ZodObject<{
|
|
7247
8855
|
kind: z.ZodLiteral<"github">;
|
|
7248
8856
|
repository: z.ZodObject<{
|
|
@@ -7255,6 +8863,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7255
8863
|
name: z.ZodOptional<z.ZodString>;
|
|
7256
8864
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7257
8865
|
byteLength: z.ZodNumber;
|
|
8866
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8867
|
+
kind: z.ZodString;
|
|
8868
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8869
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8870
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8871
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8872
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8873
|
+
expression: z.ZodString;
|
|
8874
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8875
|
+
kind: z.ZodLiteral<"custom">;
|
|
8876
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8877
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8878
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8879
|
+
}, z.core.$strict>], "kind">>;
|
|
8880
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8881
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8882
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8883
|
+
kind: z.ZodEnum<{
|
|
8884
|
+
normalization: "normalization";
|
|
8885
|
+
transformation: "transformation";
|
|
8886
|
+
}>;
|
|
8887
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8888
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8889
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8890
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8891
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8892
|
+
}, z.core.$strict>>>;
|
|
8893
|
+
}, z.core.$strict>>;
|
|
7258
8894
|
}, z.core.$strict>], "kind">>>;
|
|
7259
8895
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7260
8896
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7262,6 +8898,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7262
8898
|
content: z.ZodString;
|
|
7263
8899
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7264
8900
|
byteLength: z.ZodNumber;
|
|
8901
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8902
|
+
kind: z.ZodString;
|
|
8903
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8904
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8905
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8906
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8907
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8908
|
+
expression: z.ZodString;
|
|
8909
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8910
|
+
kind: z.ZodLiteral<"custom">;
|
|
8911
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8912
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8913
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8914
|
+
}, z.core.$strict>], "kind">>;
|
|
8915
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8916
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8917
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8918
|
+
kind: z.ZodEnum<{
|
|
8919
|
+
normalization: "normalization";
|
|
8920
|
+
transformation: "transformation";
|
|
8921
|
+
}>;
|
|
8922
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8923
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8924
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8925
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8926
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8927
|
+
}, z.core.$strict>>>;
|
|
8928
|
+
}, z.core.$strict>>;
|
|
7265
8929
|
}, z.core.$strict>, z.ZodObject<{
|
|
7266
8930
|
kind: z.ZodLiteral<"github">;
|
|
7267
8931
|
repository: z.ZodObject<{
|
|
@@ -7274,6 +8938,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7274
8938
|
name: z.ZodOptional<z.ZodString>;
|
|
7275
8939
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7276
8940
|
byteLength: z.ZodNumber;
|
|
8941
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8942
|
+
kind: z.ZodString;
|
|
8943
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8944
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8945
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8946
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8947
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8948
|
+
expression: z.ZodString;
|
|
8949
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8950
|
+
kind: z.ZodLiteral<"custom">;
|
|
8951
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8952
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8953
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8954
|
+
}, z.core.$strict>], "kind">>;
|
|
8955
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8956
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8957
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8958
|
+
kind: z.ZodEnum<{
|
|
8959
|
+
normalization: "normalization";
|
|
8960
|
+
transformation: "transformation";
|
|
8961
|
+
}>;
|
|
8962
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8963
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8964
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8965
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8966
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8967
|
+
}, z.core.$strict>>>;
|
|
8968
|
+
}, z.core.$strict>>;
|
|
7277
8969
|
}, z.core.$strict>], "kind">>>;
|
|
7278
8970
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7279
8971
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7281,6 +8973,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7281
8973
|
content: z.ZodString;
|
|
7282
8974
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7283
8975
|
byteLength: z.ZodNumber;
|
|
8976
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
8977
|
+
kind: z.ZodString;
|
|
8978
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8979
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8980
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8981
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8982
|
+
kind: z.ZodLiteral<"spdx">;
|
|
8983
|
+
expression: z.ZodString;
|
|
8984
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
8985
|
+
kind: z.ZodLiteral<"custom">;
|
|
8986
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8987
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8988
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
8989
|
+
}, z.core.$strict>], "kind">>;
|
|
8990
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8991
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
8992
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
8993
|
+
kind: z.ZodEnum<{
|
|
8994
|
+
normalization: "normalization";
|
|
8995
|
+
transformation: "transformation";
|
|
8996
|
+
}>;
|
|
8997
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
8998
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
8999
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9000
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9001
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9002
|
+
}, z.core.$strict>>>;
|
|
9003
|
+
}, z.core.$strict>>;
|
|
7284
9004
|
}, z.core.$strict>, z.ZodObject<{
|
|
7285
9005
|
kind: z.ZodLiteral<"github">;
|
|
7286
9006
|
repository: z.ZodObject<{
|
|
@@ -7293,6 +9013,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7293
9013
|
name: z.ZodOptional<z.ZodString>;
|
|
7294
9014
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7295
9015
|
byteLength: z.ZodNumber;
|
|
9016
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9017
|
+
kind: z.ZodString;
|
|
9018
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9019
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9020
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9021
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9022
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9023
|
+
expression: z.ZodString;
|
|
9024
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9025
|
+
kind: z.ZodLiteral<"custom">;
|
|
9026
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9027
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9028
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9029
|
+
}, z.core.$strict>], "kind">>;
|
|
9030
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9031
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9032
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9033
|
+
kind: z.ZodEnum<{
|
|
9034
|
+
normalization: "normalization";
|
|
9035
|
+
transformation: "transformation";
|
|
9036
|
+
}>;
|
|
9037
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9038
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9039
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9040
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9041
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9042
|
+
}, z.core.$strict>>>;
|
|
9043
|
+
}, z.core.$strict>>;
|
|
7296
9044
|
}, z.core.$strict>], "kind">]>>;
|
|
7297
9045
|
failOnError: z.ZodLiteral<true>;
|
|
7298
9046
|
}, z.core.$strict>>;
|
|
@@ -7691,6 +9439,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7691
9439
|
content: z.ZodString;
|
|
7692
9440
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7693
9441
|
byteLength: z.ZodNumber;
|
|
9442
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9443
|
+
kind: z.ZodString;
|
|
9444
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9445
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9446
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9447
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9448
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9449
|
+
expression: z.ZodString;
|
|
9450
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9451
|
+
kind: z.ZodLiteral<"custom">;
|
|
9452
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9453
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9454
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9455
|
+
}, z.core.$strict>], "kind">>;
|
|
9456
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9457
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9458
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9459
|
+
kind: z.ZodEnum<{
|
|
9460
|
+
normalization: "normalization";
|
|
9461
|
+
transformation: "transformation";
|
|
9462
|
+
}>;
|
|
9463
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9464
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9465
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9466
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9467
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9468
|
+
}, z.core.$strict>>>;
|
|
9469
|
+
}, z.core.$strict>>;
|
|
7694
9470
|
}, z.core.$strict>, z.ZodObject<{
|
|
7695
9471
|
kind: z.ZodLiteral<"github">;
|
|
7696
9472
|
repository: z.ZodObject<{
|
|
@@ -7703,6 +9479,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7703
9479
|
name: z.ZodOptional<z.ZodString>;
|
|
7704
9480
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7705
9481
|
byteLength: z.ZodNumber;
|
|
9482
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9483
|
+
kind: z.ZodString;
|
|
9484
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9485
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9486
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9487
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9488
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9489
|
+
expression: z.ZodString;
|
|
9490
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9491
|
+
kind: z.ZodLiteral<"custom">;
|
|
9492
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9493
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9494
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9495
|
+
}, z.core.$strict>], "kind">>;
|
|
9496
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9497
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9498
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9499
|
+
kind: z.ZodEnum<{
|
|
9500
|
+
normalization: "normalization";
|
|
9501
|
+
transformation: "transformation";
|
|
9502
|
+
}>;
|
|
9503
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9504
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9505
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9506
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9507
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9508
|
+
}, z.core.$strict>>>;
|
|
9509
|
+
}, z.core.$strict>>;
|
|
7706
9510
|
}, z.core.$strict>], "kind">;
|
|
7707
9511
|
executable: z.ZodOptional<z.ZodBoolean>;
|
|
7708
9512
|
}, z.core.$strict>>>;
|
|
@@ -7712,6 +9516,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7712
9516
|
content: z.ZodString;
|
|
7713
9517
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7714
9518
|
byteLength: z.ZodNumber;
|
|
9519
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9520
|
+
kind: z.ZodString;
|
|
9521
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9522
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9523
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9524
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9525
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9526
|
+
expression: z.ZodString;
|
|
9527
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9528
|
+
kind: z.ZodLiteral<"custom">;
|
|
9529
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9530
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9531
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9532
|
+
}, z.core.$strict>], "kind">>;
|
|
9533
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9534
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9535
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9536
|
+
kind: z.ZodEnum<{
|
|
9537
|
+
normalization: "normalization";
|
|
9538
|
+
transformation: "transformation";
|
|
9539
|
+
}>;
|
|
9540
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9541
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9542
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9543
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9544
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9545
|
+
}, z.core.$strict>>>;
|
|
9546
|
+
}, z.core.$strict>>;
|
|
7715
9547
|
}, z.core.$strict>, z.ZodObject<{
|
|
7716
9548
|
kind: z.ZodLiteral<"github">;
|
|
7717
9549
|
repository: z.ZodObject<{
|
|
@@ -7724,6 +9556,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7724
9556
|
name: z.ZodOptional<z.ZodString>;
|
|
7725
9557
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7726
9558
|
byteLength: z.ZodNumber;
|
|
9559
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9560
|
+
kind: z.ZodString;
|
|
9561
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9562
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9563
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9564
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9565
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9566
|
+
expression: z.ZodString;
|
|
9567
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9568
|
+
kind: z.ZodLiteral<"custom">;
|
|
9569
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9570
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9571
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9572
|
+
}, z.core.$strict>], "kind">>;
|
|
9573
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9574
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9575
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9576
|
+
kind: z.ZodEnum<{
|
|
9577
|
+
normalization: "normalization";
|
|
9578
|
+
transformation: "transformation";
|
|
9579
|
+
}>;
|
|
9580
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9581
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9582
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9583
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9584
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9585
|
+
}, z.core.$strict>>>;
|
|
9586
|
+
}, z.core.$strict>>;
|
|
7727
9587
|
}, z.core.$strict>], "kind">>>;
|
|
7728
9588
|
skills: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7729
9589
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7731,6 +9591,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7731
9591
|
content: z.ZodString;
|
|
7732
9592
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7733
9593
|
byteLength: z.ZodNumber;
|
|
9594
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9595
|
+
kind: z.ZodString;
|
|
9596
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9597
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9598
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9599
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9600
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9601
|
+
expression: z.ZodString;
|
|
9602
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9603
|
+
kind: z.ZodLiteral<"custom">;
|
|
9604
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9605
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9606
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9607
|
+
}, z.core.$strict>], "kind">>;
|
|
9608
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9609
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9610
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9611
|
+
kind: z.ZodEnum<{
|
|
9612
|
+
normalization: "normalization";
|
|
9613
|
+
transformation: "transformation";
|
|
9614
|
+
}>;
|
|
9615
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9616
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9617
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9618
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9619
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9620
|
+
}, z.core.$strict>>>;
|
|
9621
|
+
}, z.core.$strict>>;
|
|
7734
9622
|
}, z.core.$strict>, z.ZodObject<{
|
|
7735
9623
|
kind: z.ZodLiteral<"github">;
|
|
7736
9624
|
repository: z.ZodObject<{
|
|
@@ -7743,6 +9631,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7743
9631
|
name: z.ZodOptional<z.ZodString>;
|
|
7744
9632
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7745
9633
|
byteLength: z.ZodNumber;
|
|
9634
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9635
|
+
kind: z.ZodString;
|
|
9636
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9637
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9638
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9639
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9640
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9641
|
+
expression: z.ZodString;
|
|
9642
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9643
|
+
kind: z.ZodLiteral<"custom">;
|
|
9644
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9645
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9646
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9647
|
+
}, z.core.$strict>], "kind">>;
|
|
9648
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9649
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9650
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9651
|
+
kind: z.ZodEnum<{
|
|
9652
|
+
normalization: "normalization";
|
|
9653
|
+
transformation: "transformation";
|
|
9654
|
+
}>;
|
|
9655
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9656
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9657
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9658
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9659
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9660
|
+
}, z.core.$strict>>>;
|
|
9661
|
+
}, z.core.$strict>>;
|
|
7746
9662
|
}, z.core.$strict>], "kind">>>;
|
|
7747
9663
|
agents: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7748
9664
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7750,6 +9666,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7750
9666
|
content: z.ZodString;
|
|
7751
9667
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7752
9668
|
byteLength: z.ZodNumber;
|
|
9669
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9670
|
+
kind: z.ZodString;
|
|
9671
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9672
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9673
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9674
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9675
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9676
|
+
expression: z.ZodString;
|
|
9677
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9678
|
+
kind: z.ZodLiteral<"custom">;
|
|
9679
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9680
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9681
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9682
|
+
}, z.core.$strict>], "kind">>;
|
|
9683
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9684
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9685
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9686
|
+
kind: z.ZodEnum<{
|
|
9687
|
+
normalization: "normalization";
|
|
9688
|
+
transformation: "transformation";
|
|
9689
|
+
}>;
|
|
9690
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9691
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9692
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9693
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9694
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9695
|
+
}, z.core.$strict>>>;
|
|
9696
|
+
}, z.core.$strict>>;
|
|
7753
9697
|
}, z.core.$strict>, z.ZodObject<{
|
|
7754
9698
|
kind: z.ZodLiteral<"github">;
|
|
7755
9699
|
repository: z.ZodObject<{
|
|
@@ -7762,6 +9706,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7762
9706
|
name: z.ZodOptional<z.ZodString>;
|
|
7763
9707
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7764
9708
|
byteLength: z.ZodNumber;
|
|
9709
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9710
|
+
kind: z.ZodString;
|
|
9711
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9712
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9713
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9714
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9715
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9716
|
+
expression: z.ZodString;
|
|
9717
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9718
|
+
kind: z.ZodLiteral<"custom">;
|
|
9719
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9720
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9721
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9722
|
+
}, z.core.$strict>], "kind">>;
|
|
9723
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9724
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9725
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9726
|
+
kind: z.ZodEnum<{
|
|
9727
|
+
normalization: "normalization";
|
|
9728
|
+
transformation: "transformation";
|
|
9729
|
+
}>;
|
|
9730
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9731
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9732
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9733
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9734
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9735
|
+
}, z.core.$strict>>>;
|
|
9736
|
+
}, z.core.$strict>>;
|
|
7765
9737
|
}, z.core.$strict>], "kind">>>;
|
|
7766
9738
|
commands: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7767
9739
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7769,6 +9741,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7769
9741
|
content: z.ZodString;
|
|
7770
9742
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7771
9743
|
byteLength: z.ZodNumber;
|
|
9744
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9745
|
+
kind: z.ZodString;
|
|
9746
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9747
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9748
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9749
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9750
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9751
|
+
expression: z.ZodString;
|
|
9752
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9753
|
+
kind: z.ZodLiteral<"custom">;
|
|
9754
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9755
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9756
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9757
|
+
}, z.core.$strict>], "kind">>;
|
|
9758
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9759
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9760
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9761
|
+
kind: z.ZodEnum<{
|
|
9762
|
+
normalization: "normalization";
|
|
9763
|
+
transformation: "transformation";
|
|
9764
|
+
}>;
|
|
9765
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9766
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9767
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9768
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9769
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9770
|
+
}, z.core.$strict>>>;
|
|
9771
|
+
}, z.core.$strict>>;
|
|
7772
9772
|
}, z.core.$strict>, z.ZodObject<{
|
|
7773
9773
|
kind: z.ZodLiteral<"github">;
|
|
7774
9774
|
repository: z.ZodObject<{
|
|
@@ -7781,6 +9781,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7781
9781
|
name: z.ZodOptional<z.ZodString>;
|
|
7782
9782
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7783
9783
|
byteLength: z.ZodNumber;
|
|
9784
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9785
|
+
kind: z.ZodString;
|
|
9786
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9787
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9788
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9789
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9790
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9791
|
+
expression: z.ZodString;
|
|
9792
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9793
|
+
kind: z.ZodLiteral<"custom">;
|
|
9794
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9795
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9796
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9797
|
+
}, z.core.$strict>], "kind">>;
|
|
9798
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9799
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9800
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9801
|
+
kind: z.ZodEnum<{
|
|
9802
|
+
normalization: "normalization";
|
|
9803
|
+
transformation: "transformation";
|
|
9804
|
+
}>;
|
|
9805
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9806
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9807
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9808
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9809
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9810
|
+
}, z.core.$strict>>>;
|
|
9811
|
+
}, z.core.$strict>>;
|
|
7784
9812
|
}, z.core.$strict>], "kind">>>;
|
|
7785
9813
|
instructions: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7786
9814
|
kind: z.ZodLiteral<"inline">;
|
|
@@ -7788,6 +9816,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7788
9816
|
content: z.ZodString;
|
|
7789
9817
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7790
9818
|
byteLength: z.ZodNumber;
|
|
9819
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9820
|
+
kind: z.ZodString;
|
|
9821
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9822
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9823
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9824
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9825
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9826
|
+
expression: z.ZodString;
|
|
9827
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9828
|
+
kind: z.ZodLiteral<"custom">;
|
|
9829
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9830
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9831
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9832
|
+
}, z.core.$strict>], "kind">>;
|
|
9833
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9834
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9835
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9836
|
+
kind: z.ZodEnum<{
|
|
9837
|
+
normalization: "normalization";
|
|
9838
|
+
transformation: "transformation";
|
|
9839
|
+
}>;
|
|
9840
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9841
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9842
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9843
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9844
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9845
|
+
}, z.core.$strict>>>;
|
|
9846
|
+
}, z.core.$strict>>;
|
|
7791
9847
|
}, z.core.$strict>, z.ZodObject<{
|
|
7792
9848
|
kind: z.ZodLiteral<"github">;
|
|
7793
9849
|
repository: z.ZodObject<{
|
|
@@ -7800,6 +9856,34 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
7800
9856
|
name: z.ZodOptional<z.ZodString>;
|
|
7801
9857
|
sha256: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
7802
9858
|
byteLength: z.ZodNumber;
|
|
9859
|
+
source: z.ZodOptional<z.ZodObject<{
|
|
9860
|
+
kind: z.ZodString;
|
|
9861
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9862
|
+
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9863
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9864
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9865
|
+
kind: z.ZodLiteral<"spdx">;
|
|
9866
|
+
expression: z.ZodString;
|
|
9867
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
9868
|
+
kind: z.ZodLiteral<"custom">;
|
|
9869
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9870
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9871
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9872
|
+
}, z.core.$strict>], "kind">>;
|
|
9873
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9874
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
9875
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
9876
|
+
kind: z.ZodEnum<{
|
|
9877
|
+
normalization: "normalization";
|
|
9878
|
+
transformation: "transformation";
|
|
9879
|
+
}>;
|
|
9880
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
9881
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
9882
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9883
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9884
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
9885
|
+
}, z.core.$strict>>>;
|
|
9886
|
+
}, z.core.$strict>>;
|
|
7803
9887
|
}, z.core.$strict>], "kind">]>>;
|
|
7804
9888
|
failOnError: z.ZodLiteral<true>;
|
|
7805
9889
|
}, z.core.$strict>>;
|
|
@@ -9356,6 +11440,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9356
11440
|
cachedInputTokens: number;
|
|
9357
11441
|
reasoningTokens: number;
|
|
9358
11442
|
costUsdNanos: number;
|
|
11443
|
+
costProvenance: "observed" | "estimated";
|
|
9359
11444
|
}[];
|
|
9360
11445
|
kind: "agent-candidate-model-settlement-material";
|
|
9361
11446
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -9376,6 +11461,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9376
11461
|
reasoningTokens: number;
|
|
9377
11462
|
modelCalls: number;
|
|
9378
11463
|
costUsdNanos: number;
|
|
11464
|
+
costProvenance: "observed" | "estimated";
|
|
9379
11465
|
};
|
|
9380
11466
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
9381
11467
|
calls: {
|
|
@@ -9391,6 +11477,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9391
11477
|
cachedInputTokens: number;
|
|
9392
11478
|
reasoningTokens: number;
|
|
9393
11479
|
costUsdNanos: number;
|
|
11480
|
+
costProvenance: "observed" | "estimated";
|
|
9394
11481
|
}[];
|
|
9395
11482
|
kind: "agent-candidate-model-settlement-material";
|
|
9396
11483
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -9411,6 +11498,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9411
11498
|
reasoningTokens: number;
|
|
9412
11499
|
modelCalls: number;
|
|
9413
11500
|
costUsdNanos: number;
|
|
11501
|
+
costProvenance: "observed" | "estimated";
|
|
9414
11502
|
};
|
|
9415
11503
|
}, unknown>>;
|
|
9416
11504
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -9717,6 +11805,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9717
11805
|
reasoningTokens: number;
|
|
9718
11806
|
modelCalls: number;
|
|
9719
11807
|
costUsdNanos: number;
|
|
11808
|
+
costProvenance: "observed" | "estimated";
|
|
9720
11809
|
};
|
|
9721
11810
|
timing: {
|
|
9722
11811
|
startedAtMs: number;
|
|
@@ -9775,6 +11864,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
9775
11864
|
reasoningTokens: number;
|
|
9776
11865
|
modelCalls: number;
|
|
9777
11866
|
costUsdNanos: number;
|
|
11867
|
+
costProvenance: "observed" | "estimated";
|
|
9778
11868
|
};
|
|
9779
11869
|
timing: {
|
|
9780
11870
|
startedAtMs: number;
|
|
@@ -10705,6 +12795,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10705
12795
|
cachedInputTokens: number;
|
|
10706
12796
|
reasoningTokens: number;
|
|
10707
12797
|
costUsdNanos: number;
|
|
12798
|
+
costProvenance: "observed" | "estimated";
|
|
10708
12799
|
}[];
|
|
10709
12800
|
kind: "agent-candidate-model-settlement-material";
|
|
10710
12801
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -10725,6 +12816,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10725
12816
|
reasoningTokens: number;
|
|
10726
12817
|
modelCalls: number;
|
|
10727
12818
|
costUsdNanos: number;
|
|
12819
|
+
costProvenance: "observed" | "estimated";
|
|
10728
12820
|
};
|
|
10729
12821
|
}, unknown, z.core.$ZodTypeInternals<{
|
|
10730
12822
|
calls: {
|
|
@@ -10740,6 +12832,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10740
12832
|
cachedInputTokens: number;
|
|
10741
12833
|
reasoningTokens: number;
|
|
10742
12834
|
costUsdNanos: number;
|
|
12835
|
+
costProvenance: "observed" | "estimated";
|
|
10743
12836
|
}[];
|
|
10744
12837
|
kind: "agent-candidate-model-settlement-material";
|
|
10745
12838
|
executionPlanDigest: `sha256:${string}`;
|
|
@@ -10760,6 +12853,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
10760
12853
|
reasoningTokens: number;
|
|
10761
12854
|
modelCalls: number;
|
|
10762
12855
|
costUsdNanos: number;
|
|
12856
|
+
costProvenance: "observed" | "estimated";
|
|
10763
12857
|
};
|
|
10764
12858
|
}, unknown>>;
|
|
10765
12859
|
artifact: z.ZodUnion<readonly [z.ZodObject<{
|
|
@@ -11066,6 +13160,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11066
13160
|
reasoningTokens: number;
|
|
11067
13161
|
modelCalls: number;
|
|
11068
13162
|
costUsdNanos: number;
|
|
13163
|
+
costProvenance: "observed" | "estimated";
|
|
11069
13164
|
};
|
|
11070
13165
|
timing: {
|
|
11071
13166
|
startedAtMs: number;
|
|
@@ -11124,6 +13219,7 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11124
13219
|
reasoningTokens: number;
|
|
11125
13220
|
modelCalls: number;
|
|
11126
13221
|
costUsdNanos: number;
|
|
13222
|
+
costProvenance: "observed" | "estimated";
|
|
11127
13223
|
};
|
|
11128
13224
|
timing: {
|
|
11129
13225
|
startedAtMs: number;
|
|
@@ -11308,12 +13404,37 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11308
13404
|
diff: z.ZodString;
|
|
11309
13405
|
evaluation: z.ZodObject<{
|
|
11310
13406
|
generationsExplored: z.ZodNumber;
|
|
11311
|
-
|
|
11312
|
-
|
|
11313
|
-
|
|
11314
|
-
|
|
11315
|
-
|
|
11316
|
-
|
|
13407
|
+
preparation: z.ZodObject<{
|
|
13408
|
+
wallDurationMs: z.ZodNumber;
|
|
13409
|
+
cost: z.ZodObject<{
|
|
13410
|
+
usd: z.ZodNumber;
|
|
13411
|
+
provenance: z.ZodEnum<{
|
|
13412
|
+
observed: "observed";
|
|
13413
|
+
estimated: "estimated";
|
|
13414
|
+
}>;
|
|
13415
|
+
}, z.core.$strict>;
|
|
13416
|
+
}, z.core.$strict>;
|
|
13417
|
+
measurement: z.ZodObject<{
|
|
13418
|
+
wallDurationMs: z.ZodNumber;
|
|
13419
|
+
workDurationMs: z.ZodNumber;
|
|
13420
|
+
cost: z.ZodObject<{
|
|
13421
|
+
usd: z.ZodNumber;
|
|
13422
|
+
provenance: z.ZodEnum<{
|
|
13423
|
+
observed: "observed";
|
|
13424
|
+
estimated: "estimated";
|
|
13425
|
+
}>;
|
|
13426
|
+
}, z.core.$strict>;
|
|
13427
|
+
}, z.core.$strict>;
|
|
13428
|
+
total: z.ZodObject<{
|
|
13429
|
+
wallDurationMs: z.ZodNumber;
|
|
13430
|
+
cost: z.ZodObject<{
|
|
13431
|
+
usd: z.ZodNumber;
|
|
13432
|
+
provenance: z.ZodEnum<{
|
|
13433
|
+
observed: "observed";
|
|
13434
|
+
estimated: "estimated";
|
|
13435
|
+
}>;
|
|
13436
|
+
}, z.core.$strict>;
|
|
13437
|
+
}, z.core.$strict>;
|
|
11317
13438
|
}, z.core.$strict>;
|
|
11318
13439
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodCustom<AgentCandidateJsonValue, AgentCandidateJsonValue>>>;
|
|
11319
13440
|
kind: z.ZodLiteral<"agent-profile-improvement-measured-comparison">;
|
|
@@ -11322,9 +13443,36 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11322
13443
|
digestAlgorithm: z.ZodLiteral<"rfc8785-sha256">;
|
|
11323
13444
|
source: z.ZodObject<{
|
|
11324
13445
|
kind: z.ZodString;
|
|
11325
|
-
sourceIdentity: z.ZodString
|
|
13446
|
+
sourceIdentity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
11326
13447
|
sourceDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
11327
|
-
sourceRevision: z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>;
|
|
13448
|
+
sourceRevision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
13449
|
+
license: z.ZodOptional<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13450
|
+
kind: z.ZodLiteral<"spdx">;
|
|
13451
|
+
expression: z.ZodString;
|
|
13452
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
13453
|
+
kind: z.ZodLiteral<"custom">;
|
|
13454
|
+
name: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13455
|
+
reference: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13456
|
+
termsDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13457
|
+
}, z.core.$strict>], "kind">>;
|
|
13458
|
+
attribution: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13459
|
+
notices: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
13460
|
+
transformations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
13461
|
+
kind: z.ZodEnum<{
|
|
13462
|
+
normalization: "normalization";
|
|
13463
|
+
transformation: "transformation";
|
|
13464
|
+
}>;
|
|
13465
|
+
identity: z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>;
|
|
13466
|
+
revision: z.ZodUnion<readonly [z.ZodPipe<z.ZodPipe<z.ZodString, z.ZodTransform<string, string>>, z.ZodString>, z.ZodNumber]>;
|
|
13467
|
+
procedureDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13468
|
+
inputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13469
|
+
outputDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13470
|
+
}, z.core.$strict>>>;
|
|
13471
|
+
}, z.core.$strict>;
|
|
13472
|
+
executionRef: z.ZodObject<{
|
|
13473
|
+
identity: z.ZodString;
|
|
13474
|
+
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13475
|
+
kind: z.ZodLiteral<"agent-profile-improvement-execution-ref">;
|
|
11328
13476
|
}, z.core.$strict>;
|
|
11329
13477
|
baseline: z.ZodObject<{
|
|
11330
13478
|
stateDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
@@ -11477,6 +13625,11 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11477
13625
|
kind: z.ZodLiteral<"agent-profile-improvement-run">;
|
|
11478
13626
|
digestAlgorithm: z.ZodLiteral<"rfc8785-sha256">;
|
|
11479
13627
|
executionId: z.ZodString;
|
|
13628
|
+
executionRef: z.ZodObject<{
|
|
13629
|
+
identity: z.ZodString;
|
|
13630
|
+
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13631
|
+
kind: z.ZodLiteral<"agent-profile-improvement-execution-ref">;
|
|
13632
|
+
}, z.core.$strict>;
|
|
11480
13633
|
runCell: z.ZodObject<{
|
|
11481
13634
|
kind: z.ZodLiteral<"agent-profile-improvement-run-cell">;
|
|
11482
13635
|
experimentDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
@@ -11543,6 +13696,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11543
13696
|
reasoningTokens: z.ZodNumber;
|
|
11544
13697
|
modelCalls: z.ZodNumber;
|
|
11545
13698
|
costUsdNanos: z.ZodNumber;
|
|
13699
|
+
costProvenance: z.ZodEnum<{
|
|
13700
|
+
observed: "observed";
|
|
13701
|
+
estimated: "estimated";
|
|
13702
|
+
}>;
|
|
11546
13703
|
}, z.core.$strict>;
|
|
11547
13704
|
trace: z.ZodObject<{
|
|
11548
13705
|
evidence: z.ZodObject<{
|
|
@@ -11602,6 +13759,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11602
13759
|
reasoningTokens: z.ZodNumber;
|
|
11603
13760
|
modelCalls: z.ZodNumber;
|
|
11604
13761
|
costUsdNanos: z.ZodNumber;
|
|
13762
|
+
costProvenance: z.ZodEnum<{
|
|
13763
|
+
observed: "observed";
|
|
13764
|
+
estimated: "estimated";
|
|
13765
|
+
}>;
|
|
11605
13766
|
}, z.core.$strict>;
|
|
11606
13767
|
score: z.ZodNumber;
|
|
11607
13768
|
passed: z.ZodBoolean;
|
|
@@ -11616,6 +13777,11 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11616
13777
|
kind: z.ZodLiteral<"agent-profile-improvement-run">;
|
|
11617
13778
|
digestAlgorithm: z.ZodLiteral<"rfc8785-sha256">;
|
|
11618
13779
|
executionId: z.ZodString;
|
|
13780
|
+
executionRef: z.ZodObject<{
|
|
13781
|
+
identity: z.ZodString;
|
|
13782
|
+
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13783
|
+
kind: z.ZodLiteral<"agent-profile-improvement-execution-ref">;
|
|
13784
|
+
}, z.core.$strict>;
|
|
11619
13785
|
runCell: z.ZodObject<{
|
|
11620
13786
|
kind: z.ZodLiteral<"agent-profile-improvement-run-cell">;
|
|
11621
13787
|
experimentDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
@@ -11682,6 +13848,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11682
13848
|
reasoningTokens: z.ZodNumber;
|
|
11683
13849
|
modelCalls: z.ZodNumber;
|
|
11684
13850
|
costUsdNanos: z.ZodNumber;
|
|
13851
|
+
costProvenance: z.ZodEnum<{
|
|
13852
|
+
observed: "observed";
|
|
13853
|
+
estimated: "estimated";
|
|
13854
|
+
}>;
|
|
11685
13855
|
}, z.core.$strict>;
|
|
11686
13856
|
trace: z.ZodObject<{
|
|
11687
13857
|
evidence: z.ZodObject<{
|
|
@@ -11741,6 +13911,10 @@ export declare const agentImprovementProposalSchema: z.ZodObject<{
|
|
|
11741
13911
|
reasoningTokens: z.ZodNumber;
|
|
11742
13912
|
modelCalls: z.ZodNumber;
|
|
11743
13913
|
costUsdNanos: z.ZodNumber;
|
|
13914
|
+
costProvenance: z.ZodEnum<{
|
|
13915
|
+
observed: "observed";
|
|
13916
|
+
estimated: "estimated";
|
|
13917
|
+
}>;
|
|
11744
13918
|
}, z.core.$strict>;
|
|
11745
13919
|
score: z.ZodNumber;
|
|
11746
13920
|
passed: z.ZodBoolean;
|
|
@@ -11775,6 +13949,11 @@ export declare const agentImprovementActivationSchema: z.ZodObject<{
|
|
|
11775
13949
|
reviewDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
11776
13950
|
experimentDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
11777
13951
|
candidateDigest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13952
|
+
executionRef: z.ZodOptional<z.ZodObject<{
|
|
13953
|
+
identity: z.ZodString;
|
|
13954
|
+
digest: z.ZodType<`sha256:${string}`, unknown, z.core.$ZodTypeInternals<`sha256:${string}`, unknown>>;
|
|
13955
|
+
kind: z.ZodLiteral<"agent-profile-improvement-execution-ref">;
|
|
13956
|
+
}, z.core.$strict>>;
|
|
11778
13957
|
intent: z.ZodEnum<{
|
|
11779
13958
|
"activate-candidate": "activate-candidate";
|
|
11780
13959
|
"restore-baseline": "restore-baseline";
|