@evalops/sdk-ts 0.1.100 → 0.1.102
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/dist/agentruntime/v1/runtime_pb.d.ts +1931 -195
- package/dist/agentruntime/v1/runtime_pb.js +421 -93
- package/dist/evalcontrol/v1/evalcontrol_pb.d.ts +949 -0
- package/dist/evalcontrol/v1/evalcontrol_pb.js +326 -0
- package/dist/fermata/v1/fermata_pb.d.ts +822 -1
- package/dist/fermata/v1/fermata_pb.js +397 -275
- package/dist/fermata/v1/worker_pb.d.ts +73 -1
- package/dist/fermata/v1/worker_pb.js +35 -2
- package/dist/vfs/v1/filesystem_pb.d.ts +9 -1
- package/dist/vfs/v1/filesystem_pb.js +5 -1
- package/package.json +5 -1
|
@@ -0,0 +1,949 @@
|
|
|
1
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { EvidenceRef } from "../../common/v1/analytics_pb.js";
|
|
3
|
+
import type { EvaluationPackJudgeContract, QualityGateResult } from "../../fermata/v1/fermata_pb.js";
|
|
4
|
+
import type { RunTestSuiteResponse } from "../../fermata/v1/worker_pb.js";
|
|
5
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
import type { ProviderRef } from "../../llmgateway/v1/gateway_pb.js";
|
|
7
|
+
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file evalcontrol/v1/evalcontrol.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_evalcontrol_v1_evalcontrol: GenFile;
|
|
12
|
+
/**
|
|
13
|
+
* @generated from message evalcontrol.v1.EvaluationSource
|
|
14
|
+
*/
|
|
15
|
+
export type EvaluationSource = Message<"evalcontrol.v1.EvaluationSource"> & {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: evalcontrol.v1.EvaluationSourceKind kind = 1;
|
|
18
|
+
*/
|
|
19
|
+
kind: EvaluationSourceKind;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: string service = 2;
|
|
22
|
+
*/
|
|
23
|
+
service: string;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: string source_id = 3;
|
|
26
|
+
*/
|
|
27
|
+
sourceId: string;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: string environment = 4;
|
|
30
|
+
*/
|
|
31
|
+
environment: string;
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: repeated string trace_ids = 5;
|
|
34
|
+
*/
|
|
35
|
+
traceIds: string[];
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: repeated string source_suite_ids = 6;
|
|
38
|
+
*/
|
|
39
|
+
sourceSuiteIds: string[];
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: bool synthetic = 7;
|
|
42
|
+
*/
|
|
43
|
+
synthetic: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: google.protobuf.Struct metadata = 8;
|
|
46
|
+
*/
|
|
47
|
+
metadata?: JsonObject | undefined;
|
|
48
|
+
};
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message evalcontrol.v1.EvaluationSource.
|
|
51
|
+
* Use `create(EvaluationSourceSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export declare const EvaluationSourceSchema: GenMessage<EvaluationSource>;
|
|
54
|
+
/**
|
|
55
|
+
* @generated from message evalcontrol.v1.ProductActuator
|
|
56
|
+
*/
|
|
57
|
+
export type ProductActuator = Message<"evalcontrol.v1.ProductActuator"> & {
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: evalcontrol.v1.ProductActuatorKind kind = 1;
|
|
60
|
+
*/
|
|
61
|
+
kind: ProductActuatorKind;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: string target_id = 2;
|
|
64
|
+
*/
|
|
65
|
+
targetId: string;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: evalcontrol.v1.EvaluationDecisionAction action = 3;
|
|
68
|
+
*/
|
|
69
|
+
action: EvaluationDecisionAction;
|
|
70
|
+
/**
|
|
71
|
+
* @generated from field: string description = 4;
|
|
72
|
+
*/
|
|
73
|
+
description: string;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: google.protobuf.Struct metadata = 5;
|
|
76
|
+
*/
|
|
77
|
+
metadata?: JsonObject | undefined;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* Describes the message evalcontrol.v1.ProductActuator.
|
|
81
|
+
* Use `create(ProductActuatorSchema)` to create a new message.
|
|
82
|
+
*/
|
|
83
|
+
export declare const ProductActuatorSchema: GenMessage<ProductActuator>;
|
|
84
|
+
/**
|
|
85
|
+
* @generated from message evalcontrol.v1.EvaluationPackRun
|
|
86
|
+
*/
|
|
87
|
+
export type EvaluationPackRun = Message<"evalcontrol.v1.EvaluationPackRun"> & {
|
|
88
|
+
/**
|
|
89
|
+
* @generated from field: string id = 1;
|
|
90
|
+
*/
|
|
91
|
+
id: string;
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: string organization_id = 2;
|
|
94
|
+
*/
|
|
95
|
+
organizationId: string;
|
|
96
|
+
/**
|
|
97
|
+
* @generated from field: string workspace_id = 3;
|
|
98
|
+
*/
|
|
99
|
+
workspaceId: string;
|
|
100
|
+
/**
|
|
101
|
+
* @generated from field: string pack_id = 4;
|
|
102
|
+
*/
|
|
103
|
+
packId: string;
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: evalcontrol.v1.EvaluationSource source = 5;
|
|
106
|
+
*/
|
|
107
|
+
source?: EvaluationSource | undefined;
|
|
108
|
+
/**
|
|
109
|
+
* @generated from field: string suite_id = 6;
|
|
110
|
+
*/
|
|
111
|
+
suiteId: string;
|
|
112
|
+
/**
|
|
113
|
+
* @generated from field: string suite_name = 7;
|
|
114
|
+
*/
|
|
115
|
+
suiteName: string;
|
|
116
|
+
/**
|
|
117
|
+
* @generated from field: string fermata_evaluation_id = 8;
|
|
118
|
+
*/
|
|
119
|
+
fermataEvaluationId: string;
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: string lineage_id = 9;
|
|
122
|
+
*/
|
|
123
|
+
lineageId: string;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: string baseline_id = 10;
|
|
126
|
+
*/
|
|
127
|
+
baselineId: string;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: string candidate_id = 11;
|
|
130
|
+
*/
|
|
131
|
+
candidateId: string;
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: string model = 12;
|
|
134
|
+
*/
|
|
135
|
+
model: string;
|
|
136
|
+
/**
|
|
137
|
+
* @generated from field: llmgateway.v1.ProviderRef provider_ref = 13;
|
|
138
|
+
*/
|
|
139
|
+
providerRef?: ProviderRef | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 14;
|
|
142
|
+
*/
|
|
143
|
+
enforcementMode: EvaluationEnforcementMode;
|
|
144
|
+
/**
|
|
145
|
+
* @generated from field: evalcontrol.v1.EvaluationPackRunStatus status = 15;
|
|
146
|
+
*/
|
|
147
|
+
status: EvaluationPackRunStatus;
|
|
148
|
+
/**
|
|
149
|
+
* @generated from field: bool passed = 16;
|
|
150
|
+
*/
|
|
151
|
+
passed: boolean;
|
|
152
|
+
/**
|
|
153
|
+
* @generated from field: double score = 17;
|
|
154
|
+
*/
|
|
155
|
+
score: number;
|
|
156
|
+
/**
|
|
157
|
+
* @generated from field: int32 total_cases = 18;
|
|
158
|
+
*/
|
|
159
|
+
totalCases: number;
|
|
160
|
+
/**
|
|
161
|
+
* @generated from field: int32 passed_cases = 19;
|
|
162
|
+
*/
|
|
163
|
+
passedCases: number;
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: int32 failed_cases = 20;
|
|
166
|
+
*/
|
|
167
|
+
failedCases: number;
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: fermata.v1.QualityGateResult quality_gate_result = 21;
|
|
170
|
+
*/
|
|
171
|
+
qualityGateResult?: QualityGateResult | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* @generated from field: repeated fermata.v1.EvaluationPackJudgeContract judge_contracts = 22;
|
|
174
|
+
*/
|
|
175
|
+
judgeContracts: EvaluationPackJudgeContract[];
|
|
176
|
+
/**
|
|
177
|
+
* @generated from field: repeated common.v1.EvidenceRef evidence = 23;
|
|
178
|
+
*/
|
|
179
|
+
evidence: EvidenceRef[];
|
|
180
|
+
/**
|
|
181
|
+
* @generated from field: google.protobuf.Struct metadata = 24;
|
|
182
|
+
*/
|
|
183
|
+
metadata?: JsonObject | undefined;
|
|
184
|
+
/**
|
|
185
|
+
* @generated from field: google.protobuf.Timestamp created_at = 25;
|
|
186
|
+
*/
|
|
187
|
+
createdAt?: Timestamp | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 26;
|
|
190
|
+
*/
|
|
191
|
+
updatedAt?: Timestamp | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* @generated from field: fermata.v1.RunTestSuiteResponse suite_result = 27;
|
|
194
|
+
*/
|
|
195
|
+
suiteResult?: RunTestSuiteResponse | undefined;
|
|
196
|
+
};
|
|
197
|
+
/**
|
|
198
|
+
* Describes the message evalcontrol.v1.EvaluationPackRun.
|
|
199
|
+
* Use `create(EvaluationPackRunSchema)` to create a new message.
|
|
200
|
+
*/
|
|
201
|
+
export declare const EvaluationPackRunSchema: GenMessage<EvaluationPackRun>;
|
|
202
|
+
/**
|
|
203
|
+
* @generated from message evalcontrol.v1.EvaluationDecision
|
|
204
|
+
*/
|
|
205
|
+
export type EvaluationDecision = Message<"evalcontrol.v1.EvaluationDecision"> & {
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: string id = 1;
|
|
208
|
+
*/
|
|
209
|
+
id: string;
|
|
210
|
+
/**
|
|
211
|
+
* @generated from field: string organization_id = 2;
|
|
212
|
+
*/
|
|
213
|
+
organizationId: string;
|
|
214
|
+
/**
|
|
215
|
+
* @generated from field: string workspace_id = 3;
|
|
216
|
+
*/
|
|
217
|
+
workspaceId: string;
|
|
218
|
+
/**
|
|
219
|
+
* @generated from field: string pack_run_id = 4;
|
|
220
|
+
*/
|
|
221
|
+
packRunId: string;
|
|
222
|
+
/**
|
|
223
|
+
* @generated from field: evalcontrol.v1.EvaluationDecisionAction action = 5;
|
|
224
|
+
*/
|
|
225
|
+
action: EvaluationDecisionAction;
|
|
226
|
+
/**
|
|
227
|
+
* @generated from field: evalcontrol.v1.EvaluationDecisionAction would_block_action = 6;
|
|
228
|
+
*/
|
|
229
|
+
wouldBlockAction: EvaluationDecisionAction;
|
|
230
|
+
/**
|
|
231
|
+
* @generated from field: bool would_block = 7;
|
|
232
|
+
*/
|
|
233
|
+
wouldBlock: boolean;
|
|
234
|
+
/**
|
|
235
|
+
* @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 8;
|
|
236
|
+
*/
|
|
237
|
+
enforcementMode: EvaluationEnforcementMode;
|
|
238
|
+
/**
|
|
239
|
+
* @generated from field: string summary = 9;
|
|
240
|
+
*/
|
|
241
|
+
summary: string;
|
|
242
|
+
/**
|
|
243
|
+
* @generated from field: string recommended_action = 10;
|
|
244
|
+
*/
|
|
245
|
+
recommendedAction: string;
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: repeated evalcontrol.v1.ProductActuator actuators = 11;
|
|
248
|
+
*/
|
|
249
|
+
actuators: ProductActuator[];
|
|
250
|
+
/**
|
|
251
|
+
* @generated from field: repeated string finding_ids = 12;
|
|
252
|
+
*/
|
|
253
|
+
findingIds: string[];
|
|
254
|
+
/**
|
|
255
|
+
* @generated from field: repeated common.v1.EvidenceRef evidence = 13;
|
|
256
|
+
*/
|
|
257
|
+
evidence: EvidenceRef[];
|
|
258
|
+
/**
|
|
259
|
+
* @generated from field: google.protobuf.Struct metadata = 14;
|
|
260
|
+
*/
|
|
261
|
+
metadata?: JsonObject | undefined;
|
|
262
|
+
/**
|
|
263
|
+
* @generated from field: google.protobuf.Timestamp created_at = 15;
|
|
264
|
+
*/
|
|
265
|
+
createdAt?: Timestamp | undefined;
|
|
266
|
+
/**
|
|
267
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 16;
|
|
268
|
+
*/
|
|
269
|
+
updatedAt?: Timestamp | undefined;
|
|
270
|
+
};
|
|
271
|
+
/**
|
|
272
|
+
* Describes the message evalcontrol.v1.EvaluationDecision.
|
|
273
|
+
* Use `create(EvaluationDecisionSchema)` to create a new message.
|
|
274
|
+
*/
|
|
275
|
+
export declare const EvaluationDecisionSchema: GenMessage<EvaluationDecision>;
|
|
276
|
+
/**
|
|
277
|
+
* @generated from message evalcontrol.v1.EvaluationFinding
|
|
278
|
+
*/
|
|
279
|
+
export type EvaluationFinding = Message<"evalcontrol.v1.EvaluationFinding"> & {
|
|
280
|
+
/**
|
|
281
|
+
* @generated from field: string id = 1;
|
|
282
|
+
*/
|
|
283
|
+
id: string;
|
|
284
|
+
/**
|
|
285
|
+
* @generated from field: string organization_id = 2;
|
|
286
|
+
*/
|
|
287
|
+
organizationId: string;
|
|
288
|
+
/**
|
|
289
|
+
* @generated from field: string workspace_id = 3;
|
|
290
|
+
*/
|
|
291
|
+
workspaceId: string;
|
|
292
|
+
/**
|
|
293
|
+
* @generated from field: string decision_id = 4;
|
|
294
|
+
*/
|
|
295
|
+
decisionId: string;
|
|
296
|
+
/**
|
|
297
|
+
* @generated from field: string pack_run_id = 5;
|
|
298
|
+
*/
|
|
299
|
+
packRunId: string;
|
|
300
|
+
/**
|
|
301
|
+
* @generated from field: evalcontrol.v1.EvaluationSource source = 6;
|
|
302
|
+
*/
|
|
303
|
+
source?: EvaluationSource | undefined;
|
|
304
|
+
/**
|
|
305
|
+
* @generated from field: string owner = 7;
|
|
306
|
+
*/
|
|
307
|
+
owner: string;
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: string service = 8;
|
|
310
|
+
*/
|
|
311
|
+
service: string;
|
|
312
|
+
/**
|
|
313
|
+
* @generated from field: evalcontrol.v1.EvaluationFindingSeverity severity = 9;
|
|
314
|
+
*/
|
|
315
|
+
severity: EvaluationFindingSeverity;
|
|
316
|
+
/**
|
|
317
|
+
* @generated from field: evalcontrol.v1.EvaluationFindingStatus status = 10;
|
|
318
|
+
*/
|
|
319
|
+
status: EvaluationFindingStatus;
|
|
320
|
+
/**
|
|
321
|
+
* @generated from field: bool would_block = 11;
|
|
322
|
+
*/
|
|
323
|
+
wouldBlock: boolean;
|
|
324
|
+
/**
|
|
325
|
+
* @generated from field: string title = 12;
|
|
326
|
+
*/
|
|
327
|
+
title: string;
|
|
328
|
+
/**
|
|
329
|
+
* @generated from field: string details = 13;
|
|
330
|
+
*/
|
|
331
|
+
details: string;
|
|
332
|
+
/**
|
|
333
|
+
* @generated from field: string recommended_action = 14;
|
|
334
|
+
*/
|
|
335
|
+
recommendedAction: string;
|
|
336
|
+
/**
|
|
337
|
+
* @generated from field: string rerun_command = 15;
|
|
338
|
+
*/
|
|
339
|
+
rerunCommand: string;
|
|
340
|
+
/**
|
|
341
|
+
* @generated from field: repeated common.v1.EvidenceRef evidence = 16;
|
|
342
|
+
*/
|
|
343
|
+
evidence: EvidenceRef[];
|
|
344
|
+
/**
|
|
345
|
+
* @generated from field: google.protobuf.Struct metadata = 17;
|
|
346
|
+
*/
|
|
347
|
+
metadata?: JsonObject | undefined;
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: google.protobuf.Timestamp created_at = 18;
|
|
350
|
+
*/
|
|
351
|
+
createdAt?: Timestamp | undefined;
|
|
352
|
+
/**
|
|
353
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 19;
|
|
354
|
+
*/
|
|
355
|
+
updatedAt?: Timestamp | undefined;
|
|
356
|
+
/**
|
|
357
|
+
* @generated from field: google.protobuf.Timestamp acknowledged_at = 20;
|
|
358
|
+
*/
|
|
359
|
+
acknowledgedAt?: Timestamp | undefined;
|
|
360
|
+
/**
|
|
361
|
+
* @generated from field: string acknowledged_by = 21;
|
|
362
|
+
*/
|
|
363
|
+
acknowledgedBy: string;
|
|
364
|
+
};
|
|
365
|
+
/**
|
|
366
|
+
* Describes the message evalcontrol.v1.EvaluationFinding.
|
|
367
|
+
* Use `create(EvaluationFindingSchema)` to create a new message.
|
|
368
|
+
*/
|
|
369
|
+
export declare const EvaluationFindingSchema: GenMessage<EvaluationFinding>;
|
|
370
|
+
/**
|
|
371
|
+
* @generated from message evalcontrol.v1.RunEvaluationPackRequest
|
|
372
|
+
*/
|
|
373
|
+
export type RunEvaluationPackRequest = Message<"evalcontrol.v1.RunEvaluationPackRequest"> & {
|
|
374
|
+
/**
|
|
375
|
+
* @generated from field: string organization_id = 1;
|
|
376
|
+
*/
|
|
377
|
+
organizationId: string;
|
|
378
|
+
/**
|
|
379
|
+
* @generated from field: string workspace_id = 2;
|
|
380
|
+
*/
|
|
381
|
+
workspaceId: string;
|
|
382
|
+
/**
|
|
383
|
+
* @generated from field: string pack_id = 3;
|
|
384
|
+
*/
|
|
385
|
+
packId: string;
|
|
386
|
+
/**
|
|
387
|
+
* @generated from field: evalcontrol.v1.EvaluationSource source = 4;
|
|
388
|
+
*/
|
|
389
|
+
source?: EvaluationSource | undefined;
|
|
390
|
+
/**
|
|
391
|
+
* @generated from field: string suite_name = 5;
|
|
392
|
+
*/
|
|
393
|
+
suiteName: string;
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: string created_by = 6;
|
|
396
|
+
*/
|
|
397
|
+
createdBy: string;
|
|
398
|
+
/**
|
|
399
|
+
* @generated from field: string baseline_id = 7;
|
|
400
|
+
*/
|
|
401
|
+
baselineId: string;
|
|
402
|
+
/**
|
|
403
|
+
* @generated from field: string candidate_id = 8;
|
|
404
|
+
*/
|
|
405
|
+
candidateId: string;
|
|
406
|
+
/**
|
|
407
|
+
* @generated from field: string model = 9;
|
|
408
|
+
*/
|
|
409
|
+
model: string;
|
|
410
|
+
/**
|
|
411
|
+
* @generated from field: llmgateway.v1.ProviderRef provider_ref = 10;
|
|
412
|
+
*/
|
|
413
|
+
providerRef?: ProviderRef | undefined;
|
|
414
|
+
/**
|
|
415
|
+
* @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 11;
|
|
416
|
+
*/
|
|
417
|
+
enforcementMode: EvaluationEnforcementMode;
|
|
418
|
+
/**
|
|
419
|
+
* @generated from field: int32 limit = 12;
|
|
420
|
+
*/
|
|
421
|
+
limit: number;
|
|
422
|
+
/**
|
|
423
|
+
* @generated from field: int32 max_concurrency = 13;
|
|
424
|
+
*/
|
|
425
|
+
maxConcurrency: number;
|
|
426
|
+
/**
|
|
427
|
+
* @generated from field: google.protobuf.Struct run_context = 14;
|
|
428
|
+
*/
|
|
429
|
+
runContext?: JsonObject | undefined;
|
|
430
|
+
/**
|
|
431
|
+
* @generated from field: google.protobuf.Struct metadata = 15;
|
|
432
|
+
*/
|
|
433
|
+
metadata?: JsonObject | undefined;
|
|
434
|
+
};
|
|
435
|
+
/**
|
|
436
|
+
* Describes the message evalcontrol.v1.RunEvaluationPackRequest.
|
|
437
|
+
* Use `create(RunEvaluationPackRequestSchema)` to create a new message.
|
|
438
|
+
*/
|
|
439
|
+
export declare const RunEvaluationPackRequestSchema: GenMessage<RunEvaluationPackRequest>;
|
|
440
|
+
/**
|
|
441
|
+
* @generated from message evalcontrol.v1.RunEvaluationPackResponse
|
|
442
|
+
*/
|
|
443
|
+
export type RunEvaluationPackResponse = Message<"evalcontrol.v1.RunEvaluationPackResponse"> & {
|
|
444
|
+
/**
|
|
445
|
+
* @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 1;
|
|
446
|
+
*/
|
|
447
|
+
packRun?: EvaluationPackRun | undefined;
|
|
448
|
+
/**
|
|
449
|
+
* @generated from field: evalcontrol.v1.EvaluationDecision decision = 2;
|
|
450
|
+
*/
|
|
451
|
+
decision?: EvaluationDecision | undefined;
|
|
452
|
+
/**
|
|
453
|
+
* @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
|
|
454
|
+
*/
|
|
455
|
+
findings: EvaluationFinding[];
|
|
456
|
+
};
|
|
457
|
+
/**
|
|
458
|
+
* Describes the message evalcontrol.v1.RunEvaluationPackResponse.
|
|
459
|
+
* Use `create(RunEvaluationPackResponseSchema)` to create a new message.
|
|
460
|
+
*/
|
|
461
|
+
export declare const RunEvaluationPackResponseSchema: GenMessage<RunEvaluationPackResponse>;
|
|
462
|
+
/**
|
|
463
|
+
* @generated from message evalcontrol.v1.GetEvaluationDecisionRequest
|
|
464
|
+
*/
|
|
465
|
+
export type GetEvaluationDecisionRequest = Message<"evalcontrol.v1.GetEvaluationDecisionRequest"> & {
|
|
466
|
+
/**
|
|
467
|
+
* @generated from field: string organization_id = 1;
|
|
468
|
+
*/
|
|
469
|
+
organizationId: string;
|
|
470
|
+
/**
|
|
471
|
+
* @generated from field: string workspace_id = 2;
|
|
472
|
+
*/
|
|
473
|
+
workspaceId: string;
|
|
474
|
+
/**
|
|
475
|
+
* @generated from field: string decision_id = 3;
|
|
476
|
+
*/
|
|
477
|
+
decisionId: string;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* Describes the message evalcontrol.v1.GetEvaluationDecisionRequest.
|
|
481
|
+
* Use `create(GetEvaluationDecisionRequestSchema)` to create a new message.
|
|
482
|
+
*/
|
|
483
|
+
export declare const GetEvaluationDecisionRequestSchema: GenMessage<GetEvaluationDecisionRequest>;
|
|
484
|
+
/**
|
|
485
|
+
* @generated from message evalcontrol.v1.GetEvaluationDecisionResponse
|
|
486
|
+
*/
|
|
487
|
+
export type GetEvaluationDecisionResponse = Message<"evalcontrol.v1.GetEvaluationDecisionResponse"> & {
|
|
488
|
+
/**
|
|
489
|
+
* @generated from field: evalcontrol.v1.EvaluationDecision decision = 1;
|
|
490
|
+
*/
|
|
491
|
+
decision?: EvaluationDecision | undefined;
|
|
492
|
+
/**
|
|
493
|
+
* @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 2;
|
|
494
|
+
*/
|
|
495
|
+
packRun?: EvaluationPackRun | undefined;
|
|
496
|
+
/**
|
|
497
|
+
* @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
|
|
498
|
+
*/
|
|
499
|
+
findings: EvaluationFinding[];
|
|
500
|
+
};
|
|
501
|
+
/**
|
|
502
|
+
* Describes the message evalcontrol.v1.GetEvaluationDecisionResponse.
|
|
503
|
+
* Use `create(GetEvaluationDecisionResponseSchema)` to create a new message.
|
|
504
|
+
*/
|
|
505
|
+
export declare const GetEvaluationDecisionResponseSchema: GenMessage<GetEvaluationDecisionResponse>;
|
|
506
|
+
/**
|
|
507
|
+
* @generated from message evalcontrol.v1.ListEvaluationFindingsRequest
|
|
508
|
+
*/
|
|
509
|
+
export type ListEvaluationFindingsRequest = Message<"evalcontrol.v1.ListEvaluationFindingsRequest"> & {
|
|
510
|
+
/**
|
|
511
|
+
* @generated from field: string organization_id = 1;
|
|
512
|
+
*/
|
|
513
|
+
organizationId: string;
|
|
514
|
+
/**
|
|
515
|
+
* @generated from field: string workspace_id = 2;
|
|
516
|
+
*/
|
|
517
|
+
workspaceId: string;
|
|
518
|
+
/**
|
|
519
|
+
* @generated from field: evalcontrol.v1.EvaluationFindingStatus status = 3;
|
|
520
|
+
*/
|
|
521
|
+
status: EvaluationFindingStatus;
|
|
522
|
+
/**
|
|
523
|
+
* @generated from field: evalcontrol.v1.EvaluationFindingSeverity severity = 4;
|
|
524
|
+
*/
|
|
525
|
+
severity: EvaluationFindingSeverity;
|
|
526
|
+
/**
|
|
527
|
+
* @generated from field: evalcontrol.v1.EvaluationSourceKind source_kind = 5;
|
|
528
|
+
*/
|
|
529
|
+
sourceKind: EvaluationSourceKind;
|
|
530
|
+
/**
|
|
531
|
+
* @generated from field: string service = 6;
|
|
532
|
+
*/
|
|
533
|
+
service: string;
|
|
534
|
+
/**
|
|
535
|
+
* @generated from field: bool only_would_block = 7;
|
|
536
|
+
*/
|
|
537
|
+
onlyWouldBlock: boolean;
|
|
538
|
+
/**
|
|
539
|
+
* @generated from field: int32 page_size = 8;
|
|
540
|
+
*/
|
|
541
|
+
pageSize: number;
|
|
542
|
+
/**
|
|
543
|
+
* @generated from field: string page_token = 9;
|
|
544
|
+
*/
|
|
545
|
+
pageToken: string;
|
|
546
|
+
};
|
|
547
|
+
/**
|
|
548
|
+
* Describes the message evalcontrol.v1.ListEvaluationFindingsRequest.
|
|
549
|
+
* Use `create(ListEvaluationFindingsRequestSchema)` to create a new message.
|
|
550
|
+
*/
|
|
551
|
+
export declare const ListEvaluationFindingsRequestSchema: GenMessage<ListEvaluationFindingsRequest>;
|
|
552
|
+
/**
|
|
553
|
+
* @generated from message evalcontrol.v1.ListEvaluationFindingsResponse
|
|
554
|
+
*/
|
|
555
|
+
export type ListEvaluationFindingsResponse = Message<"evalcontrol.v1.ListEvaluationFindingsResponse"> & {
|
|
556
|
+
/**
|
|
557
|
+
* @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 1;
|
|
558
|
+
*/
|
|
559
|
+
findings: EvaluationFinding[];
|
|
560
|
+
/**
|
|
561
|
+
* @generated from field: string next_page_token = 2;
|
|
562
|
+
*/
|
|
563
|
+
nextPageToken: string;
|
|
564
|
+
};
|
|
565
|
+
/**
|
|
566
|
+
* Describes the message evalcontrol.v1.ListEvaluationFindingsResponse.
|
|
567
|
+
* Use `create(ListEvaluationFindingsResponseSchema)` to create a new message.
|
|
568
|
+
*/
|
|
569
|
+
export declare const ListEvaluationFindingsResponseSchema: GenMessage<ListEvaluationFindingsResponse>;
|
|
570
|
+
/**
|
|
571
|
+
* @generated from message evalcontrol.v1.AcknowledgeEvaluationFindingRequest
|
|
572
|
+
*/
|
|
573
|
+
export type AcknowledgeEvaluationFindingRequest = Message<"evalcontrol.v1.AcknowledgeEvaluationFindingRequest"> & {
|
|
574
|
+
/**
|
|
575
|
+
* @generated from field: string organization_id = 1;
|
|
576
|
+
*/
|
|
577
|
+
organizationId: string;
|
|
578
|
+
/**
|
|
579
|
+
* @generated from field: string workspace_id = 2;
|
|
580
|
+
*/
|
|
581
|
+
workspaceId: string;
|
|
582
|
+
/**
|
|
583
|
+
* @generated from field: string finding_id = 3;
|
|
584
|
+
*/
|
|
585
|
+
findingId: string;
|
|
586
|
+
/**
|
|
587
|
+
* @generated from field: string acknowledged_by = 4;
|
|
588
|
+
*/
|
|
589
|
+
acknowledgedBy: string;
|
|
590
|
+
/**
|
|
591
|
+
* @generated from field: string note = 5;
|
|
592
|
+
*/
|
|
593
|
+
note: string;
|
|
594
|
+
};
|
|
595
|
+
/**
|
|
596
|
+
* Describes the message evalcontrol.v1.AcknowledgeEvaluationFindingRequest.
|
|
597
|
+
* Use `create(AcknowledgeEvaluationFindingRequestSchema)` to create a new message.
|
|
598
|
+
*/
|
|
599
|
+
export declare const AcknowledgeEvaluationFindingRequestSchema: GenMessage<AcknowledgeEvaluationFindingRequest>;
|
|
600
|
+
/**
|
|
601
|
+
* @generated from message evalcontrol.v1.AcknowledgeEvaluationFindingResponse
|
|
602
|
+
*/
|
|
603
|
+
export type AcknowledgeEvaluationFindingResponse = Message<"evalcontrol.v1.AcknowledgeEvaluationFindingResponse"> & {
|
|
604
|
+
/**
|
|
605
|
+
* @generated from field: evalcontrol.v1.EvaluationFinding finding = 1;
|
|
606
|
+
*/
|
|
607
|
+
finding?: EvaluationFinding | undefined;
|
|
608
|
+
};
|
|
609
|
+
/**
|
|
610
|
+
* Describes the message evalcontrol.v1.AcknowledgeEvaluationFindingResponse.
|
|
611
|
+
* Use `create(AcknowledgeEvaluationFindingResponseSchema)` to create a new message.
|
|
612
|
+
*/
|
|
613
|
+
export declare const AcknowledgeEvaluationFindingResponseSchema: GenMessage<AcknowledgeEvaluationFindingResponse>;
|
|
614
|
+
/**
|
|
615
|
+
* @generated from message evalcontrol.v1.RerunEvaluationDecisionRequest
|
|
616
|
+
*/
|
|
617
|
+
export type RerunEvaluationDecisionRequest = Message<"evalcontrol.v1.RerunEvaluationDecisionRequest"> & {
|
|
618
|
+
/**
|
|
619
|
+
* @generated from field: string organization_id = 1;
|
|
620
|
+
*/
|
|
621
|
+
organizationId: string;
|
|
622
|
+
/**
|
|
623
|
+
* @generated from field: string workspace_id = 2;
|
|
624
|
+
*/
|
|
625
|
+
workspaceId: string;
|
|
626
|
+
/**
|
|
627
|
+
* @generated from field: string decision_id = 3;
|
|
628
|
+
*/
|
|
629
|
+
decisionId: string;
|
|
630
|
+
/**
|
|
631
|
+
* @generated from field: string created_by = 4;
|
|
632
|
+
*/
|
|
633
|
+
createdBy: string;
|
|
634
|
+
/**
|
|
635
|
+
* @generated from field: string reason = 5;
|
|
636
|
+
*/
|
|
637
|
+
reason: string;
|
|
638
|
+
};
|
|
639
|
+
/**
|
|
640
|
+
* Describes the message evalcontrol.v1.RerunEvaluationDecisionRequest.
|
|
641
|
+
* Use `create(RerunEvaluationDecisionRequestSchema)` to create a new message.
|
|
642
|
+
*/
|
|
643
|
+
export declare const RerunEvaluationDecisionRequestSchema: GenMessage<RerunEvaluationDecisionRequest>;
|
|
644
|
+
/**
|
|
645
|
+
* @generated from message evalcontrol.v1.RerunEvaluationDecisionResponse
|
|
646
|
+
*/
|
|
647
|
+
export type RerunEvaluationDecisionResponse = Message<"evalcontrol.v1.RerunEvaluationDecisionResponse"> & {
|
|
648
|
+
/**
|
|
649
|
+
* @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 1;
|
|
650
|
+
*/
|
|
651
|
+
packRun?: EvaluationPackRun | undefined;
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: evalcontrol.v1.EvaluationDecision decision = 2;
|
|
654
|
+
*/
|
|
655
|
+
decision?: EvaluationDecision | undefined;
|
|
656
|
+
/**
|
|
657
|
+
* @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
|
|
658
|
+
*/
|
|
659
|
+
findings: EvaluationFinding[];
|
|
660
|
+
/**
|
|
661
|
+
* @generated from field: string previous_decision_id = 4;
|
|
662
|
+
*/
|
|
663
|
+
previousDecisionId: string;
|
|
664
|
+
};
|
|
665
|
+
/**
|
|
666
|
+
* Describes the message evalcontrol.v1.RerunEvaluationDecisionResponse.
|
|
667
|
+
* Use `create(RerunEvaluationDecisionResponseSchema)` to create a new message.
|
|
668
|
+
*/
|
|
669
|
+
export declare const RerunEvaluationDecisionResponseSchema: GenMessage<RerunEvaluationDecisionResponse>;
|
|
670
|
+
/**
|
|
671
|
+
* @generated from enum evalcontrol.v1.EvaluationSourceKind
|
|
672
|
+
*/
|
|
673
|
+
export declare enum EvaluationSourceKind {
|
|
674
|
+
/**
|
|
675
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_UNSPECIFIED = 0;
|
|
676
|
+
*/
|
|
677
|
+
UNSPECIFIED = 0,
|
|
678
|
+
/**
|
|
679
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_TRACE = 1;
|
|
680
|
+
*/
|
|
681
|
+
TRACE = 1,
|
|
682
|
+
/**
|
|
683
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_SCENARIO_FIXTURE = 2;
|
|
684
|
+
*/
|
|
685
|
+
SCENARIO_FIXTURE = 2,
|
|
686
|
+
/**
|
|
687
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_RELEASE_TRAIN = 3;
|
|
688
|
+
*/
|
|
689
|
+
RELEASE_TRAIN = 3,
|
|
690
|
+
/**
|
|
691
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_PROMPT_VERSION = 4;
|
|
692
|
+
*/
|
|
693
|
+
PROMPT_VERSION = 4,
|
|
694
|
+
/**
|
|
695
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_ROUTING_RECOMMENDATION = 5;
|
|
696
|
+
*/
|
|
697
|
+
ROUTING_RECOMMENDATION = 5,
|
|
698
|
+
/**
|
|
699
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_EXPERIMENT_EXPOSURE = 6;
|
|
700
|
+
*/
|
|
701
|
+
EXPERIMENT_EXPOSURE = 6,
|
|
702
|
+
/**
|
|
703
|
+
* @generated from enum value: EVALUATION_SOURCE_KIND_CEREBRO_FINDING_EVALUATION_RUN = 7;
|
|
704
|
+
*/
|
|
705
|
+
CEREBRO_FINDING_EVALUATION_RUN = 7
|
|
706
|
+
}
|
|
707
|
+
/**
|
|
708
|
+
* Describes the enum evalcontrol.v1.EvaluationSourceKind.
|
|
709
|
+
*/
|
|
710
|
+
export declare const EvaluationSourceKindSchema: GenEnum<EvaluationSourceKind>;
|
|
711
|
+
/**
|
|
712
|
+
* @generated from enum evalcontrol.v1.EvaluationEnforcementMode
|
|
713
|
+
*/
|
|
714
|
+
export declare enum EvaluationEnforcementMode {
|
|
715
|
+
/**
|
|
716
|
+
* @generated from enum value: EVALUATION_ENFORCEMENT_MODE_UNSPECIFIED = 0;
|
|
717
|
+
*/
|
|
718
|
+
UNSPECIFIED = 0,
|
|
719
|
+
/**
|
|
720
|
+
* @generated from enum value: EVALUATION_ENFORCEMENT_MODE_OBSERVE = 1;
|
|
721
|
+
*/
|
|
722
|
+
OBSERVE = 1,
|
|
723
|
+
/**
|
|
724
|
+
* @generated from enum value: EVALUATION_ENFORCEMENT_MODE_ADVISORY = 2;
|
|
725
|
+
*/
|
|
726
|
+
ADVISORY = 2,
|
|
727
|
+
/**
|
|
728
|
+
* @generated from enum value: EVALUATION_ENFORCEMENT_MODE_ENFORCING = 3;
|
|
729
|
+
*/
|
|
730
|
+
ENFORCING = 3
|
|
731
|
+
}
|
|
732
|
+
/**
|
|
733
|
+
* Describes the enum evalcontrol.v1.EvaluationEnforcementMode.
|
|
734
|
+
*/
|
|
735
|
+
export declare const EvaluationEnforcementModeSchema: GenEnum<EvaluationEnforcementMode>;
|
|
736
|
+
/**
|
|
737
|
+
* @generated from enum evalcontrol.v1.EvaluationPackRunStatus
|
|
738
|
+
*/
|
|
739
|
+
export declare enum EvaluationPackRunStatus {
|
|
740
|
+
/**
|
|
741
|
+
* @generated from enum value: EVALUATION_PACK_RUN_STATUS_UNSPECIFIED = 0;
|
|
742
|
+
*/
|
|
743
|
+
UNSPECIFIED = 0,
|
|
744
|
+
/**
|
|
745
|
+
* @generated from enum value: EVALUATION_PACK_RUN_STATUS_RUNNING = 1;
|
|
746
|
+
*/
|
|
747
|
+
RUNNING = 1,
|
|
748
|
+
/**
|
|
749
|
+
* @generated from enum value: EVALUATION_PACK_RUN_STATUS_SUCCEEDED = 2;
|
|
750
|
+
*/
|
|
751
|
+
SUCCEEDED = 2,
|
|
752
|
+
/**
|
|
753
|
+
* @generated from enum value: EVALUATION_PACK_RUN_STATUS_FAILED = 3;
|
|
754
|
+
*/
|
|
755
|
+
FAILED = 3
|
|
756
|
+
}
|
|
757
|
+
/**
|
|
758
|
+
* Describes the enum evalcontrol.v1.EvaluationPackRunStatus.
|
|
759
|
+
*/
|
|
760
|
+
export declare const EvaluationPackRunStatusSchema: GenEnum<EvaluationPackRunStatus>;
|
|
761
|
+
/**
|
|
762
|
+
* @generated from enum evalcontrol.v1.EvaluationDecisionAction
|
|
763
|
+
*/
|
|
764
|
+
export declare enum EvaluationDecisionAction {
|
|
765
|
+
/**
|
|
766
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_UNSPECIFIED = 0;
|
|
767
|
+
*/
|
|
768
|
+
UNSPECIFIED = 0,
|
|
769
|
+
/**
|
|
770
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_OBSERVE = 1;
|
|
771
|
+
*/
|
|
772
|
+
OBSERVE = 1,
|
|
773
|
+
/**
|
|
774
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_ADVISE = 2;
|
|
775
|
+
*/
|
|
776
|
+
ADVISE = 2,
|
|
777
|
+
/**
|
|
778
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_REQUIRE_APPROVAL = 3;
|
|
779
|
+
*/
|
|
780
|
+
REQUIRE_APPROVAL = 3,
|
|
781
|
+
/**
|
|
782
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_CANARY_ONLY = 4;
|
|
783
|
+
*/
|
|
784
|
+
CANARY_ONLY = 4,
|
|
785
|
+
/**
|
|
786
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_HOLD = 5;
|
|
787
|
+
*/
|
|
788
|
+
HOLD = 5,
|
|
789
|
+
/**
|
|
790
|
+
* @generated from enum value: EVALUATION_DECISION_ACTION_BLOCK = 6;
|
|
791
|
+
*/
|
|
792
|
+
BLOCK = 6
|
|
793
|
+
}
|
|
794
|
+
/**
|
|
795
|
+
* Describes the enum evalcontrol.v1.EvaluationDecisionAction.
|
|
796
|
+
*/
|
|
797
|
+
export declare const EvaluationDecisionActionSchema: GenEnum<EvaluationDecisionAction>;
|
|
798
|
+
/**
|
|
799
|
+
* @generated from enum evalcontrol.v1.EvaluationFindingSeverity
|
|
800
|
+
*/
|
|
801
|
+
export declare enum EvaluationFindingSeverity {
|
|
802
|
+
/**
|
|
803
|
+
* @generated from enum value: EVALUATION_FINDING_SEVERITY_UNSPECIFIED = 0;
|
|
804
|
+
*/
|
|
805
|
+
UNSPECIFIED = 0,
|
|
806
|
+
/**
|
|
807
|
+
* @generated from enum value: EVALUATION_FINDING_SEVERITY_INFO = 1;
|
|
808
|
+
*/
|
|
809
|
+
INFO = 1,
|
|
810
|
+
/**
|
|
811
|
+
* @generated from enum value: EVALUATION_FINDING_SEVERITY_WARNING = 2;
|
|
812
|
+
*/
|
|
813
|
+
WARNING = 2,
|
|
814
|
+
/**
|
|
815
|
+
* @generated from enum value: EVALUATION_FINDING_SEVERITY_BLOCKING = 3;
|
|
816
|
+
*/
|
|
817
|
+
BLOCKING = 3,
|
|
818
|
+
/**
|
|
819
|
+
* @generated from enum value: EVALUATION_FINDING_SEVERITY_CRITICAL = 4;
|
|
820
|
+
*/
|
|
821
|
+
CRITICAL = 4
|
|
822
|
+
}
|
|
823
|
+
/**
|
|
824
|
+
* Describes the enum evalcontrol.v1.EvaluationFindingSeverity.
|
|
825
|
+
*/
|
|
826
|
+
export declare const EvaluationFindingSeveritySchema: GenEnum<EvaluationFindingSeverity>;
|
|
827
|
+
/**
|
|
828
|
+
* @generated from enum evalcontrol.v1.EvaluationFindingStatus
|
|
829
|
+
*/
|
|
830
|
+
export declare enum EvaluationFindingStatus {
|
|
831
|
+
/**
|
|
832
|
+
* @generated from enum value: EVALUATION_FINDING_STATUS_UNSPECIFIED = 0;
|
|
833
|
+
*/
|
|
834
|
+
UNSPECIFIED = 0,
|
|
835
|
+
/**
|
|
836
|
+
* @generated from enum value: EVALUATION_FINDING_STATUS_OPEN = 1;
|
|
837
|
+
*/
|
|
838
|
+
OPEN = 1,
|
|
839
|
+
/**
|
|
840
|
+
* @generated from enum value: EVALUATION_FINDING_STATUS_ACKNOWLEDGED = 2;
|
|
841
|
+
*/
|
|
842
|
+
ACKNOWLEDGED = 2,
|
|
843
|
+
/**
|
|
844
|
+
* @generated from enum value: EVALUATION_FINDING_STATUS_RESOLVED = 3;
|
|
845
|
+
*/
|
|
846
|
+
RESOLVED = 3
|
|
847
|
+
}
|
|
848
|
+
/**
|
|
849
|
+
* Describes the enum evalcontrol.v1.EvaluationFindingStatus.
|
|
850
|
+
*/
|
|
851
|
+
export declare const EvaluationFindingStatusSchema: GenEnum<EvaluationFindingStatus>;
|
|
852
|
+
/**
|
|
853
|
+
* @generated from enum evalcontrol.v1.ProductActuatorKind
|
|
854
|
+
*/
|
|
855
|
+
export declare enum ProductActuatorKind {
|
|
856
|
+
/**
|
|
857
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_UNSPECIFIED = 0;
|
|
858
|
+
*/
|
|
859
|
+
UNSPECIFIED = 0,
|
|
860
|
+
/**
|
|
861
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_ROUTE_TRAFFIC = 1;
|
|
862
|
+
*/
|
|
863
|
+
ROUTE_TRAFFIC = 1,
|
|
864
|
+
/**
|
|
865
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_EXPERIMENT_ANALYSIS = 2;
|
|
866
|
+
*/
|
|
867
|
+
EXPERIMENT_ANALYSIS = 2,
|
|
868
|
+
/**
|
|
869
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_REQUIRE_APPROVAL = 3;
|
|
870
|
+
*/
|
|
871
|
+
REQUIRE_APPROVAL = 3,
|
|
872
|
+
/**
|
|
873
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_RELEASE_TRAIN_PROMOTION = 4;
|
|
874
|
+
*/
|
|
875
|
+
RELEASE_TRAIN_PROMOTION = 4,
|
|
876
|
+
/**
|
|
877
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_CAPABILITY_ANNOTATION = 5;
|
|
878
|
+
*/
|
|
879
|
+
CAPABILITY_ANNOTATION = 5,
|
|
880
|
+
/**
|
|
881
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_CEREBRO_FINDING = 6;
|
|
882
|
+
*/
|
|
883
|
+
CEREBRO_FINDING = 6,
|
|
884
|
+
/**
|
|
885
|
+
* @generated from enum value: PRODUCT_ACTUATOR_KIND_REGRESSION_CORPUS_PROMOTION = 7;
|
|
886
|
+
*/
|
|
887
|
+
REGRESSION_CORPUS_PROMOTION = 7
|
|
888
|
+
}
|
|
889
|
+
/**
|
|
890
|
+
* Describes the enum evalcontrol.v1.ProductActuatorKind.
|
|
891
|
+
*/
|
|
892
|
+
export declare const ProductActuatorKindSchema: GenEnum<ProductActuatorKind>;
|
|
893
|
+
/**
|
|
894
|
+
* EvalControlService turns Fermata evaluation output into product decisions and findings.
|
|
895
|
+
*
|
|
896
|
+
* @generated from service evalcontrol.v1.EvalControlService
|
|
897
|
+
*/
|
|
898
|
+
export declare const EvalControlService: GenService<{
|
|
899
|
+
/**
|
|
900
|
+
* RunEvaluationPack builds a native Fermata pack from real sources, runs it, and records an advisory decision.
|
|
901
|
+
*
|
|
902
|
+
* @generated from rpc evalcontrol.v1.EvalControlService.RunEvaluationPack
|
|
903
|
+
*/
|
|
904
|
+
runEvaluationPack: {
|
|
905
|
+
methodKind: "unary";
|
|
906
|
+
input: typeof RunEvaluationPackRequestSchema;
|
|
907
|
+
output: typeof RunEvaluationPackResponseSchema;
|
|
908
|
+
};
|
|
909
|
+
/**
|
|
910
|
+
* GetEvaluationDecision returns the persisted decision, pack run, and findings.
|
|
911
|
+
*
|
|
912
|
+
* @generated from rpc evalcontrol.v1.EvalControlService.GetEvaluationDecision
|
|
913
|
+
*/
|
|
914
|
+
getEvaluationDecision: {
|
|
915
|
+
methodKind: "unary";
|
|
916
|
+
input: typeof GetEvaluationDecisionRequestSchema;
|
|
917
|
+
output: typeof GetEvaluationDecisionResponseSchema;
|
|
918
|
+
};
|
|
919
|
+
/**
|
|
920
|
+
* ListEvaluationFindings lists actionable eval findings for product surfaces.
|
|
921
|
+
*
|
|
922
|
+
* @generated from rpc evalcontrol.v1.EvalControlService.ListEvaluationFindings
|
|
923
|
+
*/
|
|
924
|
+
listEvaluationFindings: {
|
|
925
|
+
methodKind: "unary";
|
|
926
|
+
input: typeof ListEvaluationFindingsRequestSchema;
|
|
927
|
+
output: typeof ListEvaluationFindingsResponseSchema;
|
|
928
|
+
};
|
|
929
|
+
/**
|
|
930
|
+
* AcknowledgeEvaluationFinding records operator acknowledgement without removing the finding.
|
|
931
|
+
*
|
|
932
|
+
* @generated from rpc evalcontrol.v1.EvalControlService.AcknowledgeEvaluationFinding
|
|
933
|
+
*/
|
|
934
|
+
acknowledgeEvaluationFinding: {
|
|
935
|
+
methodKind: "unary";
|
|
936
|
+
input: typeof AcknowledgeEvaluationFindingRequestSchema;
|
|
937
|
+
output: typeof AcknowledgeEvaluationFindingResponseSchema;
|
|
938
|
+
};
|
|
939
|
+
/**
|
|
940
|
+
* RerunEvaluationDecision reruns the original pack/source pair and links the new decision to the old one.
|
|
941
|
+
*
|
|
942
|
+
* @generated from rpc evalcontrol.v1.EvalControlService.RerunEvaluationDecision
|
|
943
|
+
*/
|
|
944
|
+
rerunEvaluationDecision: {
|
|
945
|
+
methodKind: "unary";
|
|
946
|
+
input: typeof RerunEvaluationDecisionRequestSchema;
|
|
947
|
+
output: typeof RerunEvaluationDecisionResponseSchema;
|
|
948
|
+
};
|
|
949
|
+
}>;
|