@evalops/sdk-ts 0.1.101 → 0.1.103

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.
@@ -0,0 +1,1185 @@
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.EvaluationControlPolicy
86
+ */
87
+ export type EvaluationControlPolicy = Message<"evalcontrol.v1.EvaluationControlPolicy"> & {
88
+ /**
89
+ * @generated from field: string organization_id = 1;
90
+ */
91
+ organizationId: string;
92
+ /**
93
+ * @generated from field: string workspace_id = 2;
94
+ */
95
+ workspaceId: string;
96
+ /**
97
+ * @generated from field: string pack_id = 3;
98
+ */
99
+ packId: string;
100
+ /**
101
+ * @generated from field: evalcontrol.v1.EvaluationSourceKind source_kind = 4;
102
+ */
103
+ sourceKind: EvaluationSourceKind;
104
+ /**
105
+ * @generated from field: string service = 5;
106
+ */
107
+ service: string;
108
+ /**
109
+ * @generated from field: string environment = 6;
110
+ */
111
+ environment: string;
112
+ /**
113
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode applied_enforcement_mode = 7;
114
+ */
115
+ appliedEnforcementMode: EvaluationEnforcementMode;
116
+ /**
117
+ * @generated from field: string updated_by = 8;
118
+ */
119
+ updatedBy: string;
120
+ /**
121
+ * @generated from field: google.protobuf.Struct metadata = 9;
122
+ */
123
+ metadata?: JsonObject | undefined;
124
+ /**
125
+ * @generated from field: google.protobuf.Timestamp created_at = 10;
126
+ */
127
+ createdAt?: Timestamp | undefined;
128
+ /**
129
+ * @generated from field: google.protobuf.Timestamp updated_at = 11;
130
+ */
131
+ updatedAt?: Timestamp | undefined;
132
+ };
133
+ /**
134
+ * Describes the message evalcontrol.v1.EvaluationControlPolicy.
135
+ * Use `create(EvaluationControlPolicySchema)` to create a new message.
136
+ */
137
+ export declare const EvaluationControlPolicySchema: GenMessage<EvaluationControlPolicy>;
138
+ /**
139
+ * @generated from message evalcontrol.v1.EvaluationPackRun
140
+ */
141
+ export type EvaluationPackRun = Message<"evalcontrol.v1.EvaluationPackRun"> & {
142
+ /**
143
+ * @generated from field: string id = 1;
144
+ */
145
+ id: string;
146
+ /**
147
+ * @generated from field: string organization_id = 2;
148
+ */
149
+ organizationId: string;
150
+ /**
151
+ * @generated from field: string workspace_id = 3;
152
+ */
153
+ workspaceId: string;
154
+ /**
155
+ * @generated from field: string pack_id = 4;
156
+ */
157
+ packId: string;
158
+ /**
159
+ * @generated from field: evalcontrol.v1.EvaluationSource source = 5;
160
+ */
161
+ source?: EvaluationSource | undefined;
162
+ /**
163
+ * @generated from field: string suite_id = 6;
164
+ */
165
+ suiteId: string;
166
+ /**
167
+ * @generated from field: string suite_name = 7;
168
+ */
169
+ suiteName: string;
170
+ /**
171
+ * @generated from field: string fermata_evaluation_id = 8;
172
+ */
173
+ fermataEvaluationId: string;
174
+ /**
175
+ * @generated from field: string lineage_id = 9;
176
+ */
177
+ lineageId: string;
178
+ /**
179
+ * @generated from field: string baseline_id = 10;
180
+ */
181
+ baselineId: string;
182
+ /**
183
+ * @generated from field: string candidate_id = 11;
184
+ */
185
+ candidateId: string;
186
+ /**
187
+ * @generated from field: string model = 12;
188
+ */
189
+ model: string;
190
+ /**
191
+ * @generated from field: llmgateway.v1.ProviderRef provider_ref = 13;
192
+ */
193
+ providerRef?: ProviderRef | undefined;
194
+ /**
195
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 14;
196
+ */
197
+ enforcementMode: EvaluationEnforcementMode;
198
+ /**
199
+ * @generated from field: evalcontrol.v1.EvaluationPackRunStatus status = 15;
200
+ */
201
+ status: EvaluationPackRunStatus;
202
+ /**
203
+ * @generated from field: bool passed = 16;
204
+ */
205
+ passed: boolean;
206
+ /**
207
+ * @generated from field: double score = 17;
208
+ */
209
+ score: number;
210
+ /**
211
+ * @generated from field: int32 total_cases = 18;
212
+ */
213
+ totalCases: number;
214
+ /**
215
+ * @generated from field: int32 passed_cases = 19;
216
+ */
217
+ passedCases: number;
218
+ /**
219
+ * @generated from field: int32 failed_cases = 20;
220
+ */
221
+ failedCases: number;
222
+ /**
223
+ * @generated from field: fermata.v1.QualityGateResult quality_gate_result = 21;
224
+ */
225
+ qualityGateResult?: QualityGateResult | undefined;
226
+ /**
227
+ * @generated from field: repeated fermata.v1.EvaluationPackJudgeContract judge_contracts = 22;
228
+ */
229
+ judgeContracts: EvaluationPackJudgeContract[];
230
+ /**
231
+ * @generated from field: repeated common.v1.EvidenceRef evidence = 23;
232
+ */
233
+ evidence: EvidenceRef[];
234
+ /**
235
+ * @generated from field: google.protobuf.Struct metadata = 24;
236
+ */
237
+ metadata?: JsonObject | undefined;
238
+ /**
239
+ * @generated from field: google.protobuf.Timestamp created_at = 25;
240
+ */
241
+ createdAt?: Timestamp | undefined;
242
+ /**
243
+ * @generated from field: google.protobuf.Timestamp updated_at = 26;
244
+ */
245
+ updatedAt?: Timestamp | undefined;
246
+ /**
247
+ * @generated from field: fermata.v1.RunTestSuiteResponse suite_result = 27;
248
+ */
249
+ suiteResult?: RunTestSuiteResponse | undefined;
250
+ /**
251
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode requested_enforcement_mode = 28;
252
+ */
253
+ requestedEnforcementMode: EvaluationEnforcementMode;
254
+ };
255
+ /**
256
+ * Describes the message evalcontrol.v1.EvaluationPackRun.
257
+ * Use `create(EvaluationPackRunSchema)` to create a new message.
258
+ */
259
+ export declare const EvaluationPackRunSchema: GenMessage<EvaluationPackRun>;
260
+ /**
261
+ * @generated from message evalcontrol.v1.EvaluationDecision
262
+ */
263
+ export type EvaluationDecision = Message<"evalcontrol.v1.EvaluationDecision"> & {
264
+ /**
265
+ * @generated from field: string id = 1;
266
+ */
267
+ id: string;
268
+ /**
269
+ * @generated from field: string organization_id = 2;
270
+ */
271
+ organizationId: string;
272
+ /**
273
+ * @generated from field: string workspace_id = 3;
274
+ */
275
+ workspaceId: string;
276
+ /**
277
+ * @generated from field: string pack_run_id = 4;
278
+ */
279
+ packRunId: string;
280
+ /**
281
+ * @generated from field: evalcontrol.v1.EvaluationDecisionAction action = 5;
282
+ */
283
+ action: EvaluationDecisionAction;
284
+ /**
285
+ * @generated from field: evalcontrol.v1.EvaluationDecisionAction would_block_action = 6;
286
+ */
287
+ wouldBlockAction: EvaluationDecisionAction;
288
+ /**
289
+ * @generated from field: bool would_block = 7;
290
+ */
291
+ wouldBlock: boolean;
292
+ /**
293
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 8;
294
+ */
295
+ enforcementMode: EvaluationEnforcementMode;
296
+ /**
297
+ * @generated from field: string summary = 9;
298
+ */
299
+ summary: string;
300
+ /**
301
+ * @generated from field: string recommended_action = 10;
302
+ */
303
+ recommendedAction: string;
304
+ /**
305
+ * @generated from field: repeated evalcontrol.v1.ProductActuator actuators = 11;
306
+ */
307
+ actuators: ProductActuator[];
308
+ /**
309
+ * @generated from field: repeated string finding_ids = 12;
310
+ */
311
+ findingIds: string[];
312
+ /**
313
+ * @generated from field: repeated common.v1.EvidenceRef evidence = 13;
314
+ */
315
+ evidence: EvidenceRef[];
316
+ /**
317
+ * @generated from field: google.protobuf.Struct metadata = 14;
318
+ */
319
+ metadata?: JsonObject | undefined;
320
+ /**
321
+ * @generated from field: google.protobuf.Timestamp created_at = 15;
322
+ */
323
+ createdAt?: Timestamp | undefined;
324
+ /**
325
+ * @generated from field: google.protobuf.Timestamp updated_at = 16;
326
+ */
327
+ updatedAt?: Timestamp | undefined;
328
+ /**
329
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode requested_enforcement_mode = 17;
330
+ */
331
+ requestedEnforcementMode: EvaluationEnforcementMode;
332
+ };
333
+ /**
334
+ * Describes the message evalcontrol.v1.EvaluationDecision.
335
+ * Use `create(EvaluationDecisionSchema)` to create a new message.
336
+ */
337
+ export declare const EvaluationDecisionSchema: GenMessage<EvaluationDecision>;
338
+ /**
339
+ * @generated from message evalcontrol.v1.EvaluationFinding
340
+ */
341
+ export type EvaluationFinding = Message<"evalcontrol.v1.EvaluationFinding"> & {
342
+ /**
343
+ * @generated from field: string id = 1;
344
+ */
345
+ id: string;
346
+ /**
347
+ * @generated from field: string organization_id = 2;
348
+ */
349
+ organizationId: string;
350
+ /**
351
+ * @generated from field: string workspace_id = 3;
352
+ */
353
+ workspaceId: string;
354
+ /**
355
+ * @generated from field: string decision_id = 4;
356
+ */
357
+ decisionId: string;
358
+ /**
359
+ * @generated from field: string pack_run_id = 5;
360
+ */
361
+ packRunId: string;
362
+ /**
363
+ * @generated from field: evalcontrol.v1.EvaluationSource source = 6;
364
+ */
365
+ source?: EvaluationSource | undefined;
366
+ /**
367
+ * @generated from field: string owner = 7;
368
+ */
369
+ owner: string;
370
+ /**
371
+ * @generated from field: string service = 8;
372
+ */
373
+ service: string;
374
+ /**
375
+ * @generated from field: evalcontrol.v1.EvaluationFindingSeverity severity = 9;
376
+ */
377
+ severity: EvaluationFindingSeverity;
378
+ /**
379
+ * @generated from field: evalcontrol.v1.EvaluationFindingStatus status = 10;
380
+ */
381
+ status: EvaluationFindingStatus;
382
+ /**
383
+ * @generated from field: bool would_block = 11;
384
+ */
385
+ wouldBlock: boolean;
386
+ /**
387
+ * @generated from field: string title = 12;
388
+ */
389
+ title: string;
390
+ /**
391
+ * @generated from field: string details = 13;
392
+ */
393
+ details: string;
394
+ /**
395
+ * @generated from field: string recommended_action = 14;
396
+ */
397
+ recommendedAction: string;
398
+ /**
399
+ * @generated from field: string rerun_command = 15;
400
+ */
401
+ rerunCommand: string;
402
+ /**
403
+ * @generated from field: repeated common.v1.EvidenceRef evidence = 16;
404
+ */
405
+ evidence: EvidenceRef[];
406
+ /**
407
+ * @generated from field: google.protobuf.Struct metadata = 17;
408
+ */
409
+ metadata?: JsonObject | undefined;
410
+ /**
411
+ * @generated from field: google.protobuf.Timestamp created_at = 18;
412
+ */
413
+ createdAt?: Timestamp | undefined;
414
+ /**
415
+ * @generated from field: google.protobuf.Timestamp updated_at = 19;
416
+ */
417
+ updatedAt?: Timestamp | undefined;
418
+ /**
419
+ * @generated from field: google.protobuf.Timestamp acknowledged_at = 20;
420
+ */
421
+ acknowledgedAt?: Timestamp | undefined;
422
+ /**
423
+ * @generated from field: string acknowledged_by = 21;
424
+ */
425
+ acknowledgedBy: string;
426
+ };
427
+ /**
428
+ * Describes the message evalcontrol.v1.EvaluationFinding.
429
+ * Use `create(EvaluationFindingSchema)` to create a new message.
430
+ */
431
+ export declare const EvaluationFindingSchema: GenMessage<EvaluationFinding>;
432
+ /**
433
+ * @generated from message evalcontrol.v1.RunEvaluationPackRequest
434
+ */
435
+ export type RunEvaluationPackRequest = Message<"evalcontrol.v1.RunEvaluationPackRequest"> & {
436
+ /**
437
+ * @generated from field: string organization_id = 1;
438
+ */
439
+ organizationId: string;
440
+ /**
441
+ * @generated from field: string workspace_id = 2;
442
+ */
443
+ workspaceId: string;
444
+ /**
445
+ * @generated from field: string pack_id = 3;
446
+ */
447
+ packId: string;
448
+ /**
449
+ * @generated from field: evalcontrol.v1.EvaluationSource source = 4;
450
+ */
451
+ source?: EvaluationSource | undefined;
452
+ /**
453
+ * @generated from field: string suite_name = 5;
454
+ */
455
+ suiteName: string;
456
+ /**
457
+ * @generated from field: string created_by = 6;
458
+ */
459
+ createdBy: string;
460
+ /**
461
+ * @generated from field: string baseline_id = 7;
462
+ */
463
+ baselineId: string;
464
+ /**
465
+ * @generated from field: string candidate_id = 8;
466
+ */
467
+ candidateId: string;
468
+ /**
469
+ * @generated from field: string model = 9;
470
+ */
471
+ model: string;
472
+ /**
473
+ * @generated from field: llmgateway.v1.ProviderRef provider_ref = 10;
474
+ */
475
+ providerRef?: ProviderRef | undefined;
476
+ /**
477
+ * @generated from field: evalcontrol.v1.EvaluationEnforcementMode enforcement_mode = 11;
478
+ */
479
+ enforcementMode: EvaluationEnforcementMode;
480
+ /**
481
+ * @generated from field: int32 limit = 12;
482
+ */
483
+ limit: number;
484
+ /**
485
+ * @generated from field: int32 max_concurrency = 13;
486
+ */
487
+ maxConcurrency: number;
488
+ /**
489
+ * @generated from field: google.protobuf.Struct run_context = 14;
490
+ */
491
+ runContext?: JsonObject | undefined;
492
+ /**
493
+ * @generated from field: google.protobuf.Struct metadata = 15;
494
+ */
495
+ metadata?: JsonObject | undefined;
496
+ /**
497
+ * @generated from field: string idempotency_key = 16;
498
+ */
499
+ idempotencyKey: string;
500
+ };
501
+ /**
502
+ * Describes the message evalcontrol.v1.RunEvaluationPackRequest.
503
+ * Use `create(RunEvaluationPackRequestSchema)` to create a new message.
504
+ */
505
+ export declare const RunEvaluationPackRequestSchema: GenMessage<RunEvaluationPackRequest>;
506
+ /**
507
+ * @generated from message evalcontrol.v1.RunEvaluationPackResponse
508
+ */
509
+ export type RunEvaluationPackResponse = Message<"evalcontrol.v1.RunEvaluationPackResponse"> & {
510
+ /**
511
+ * @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 1;
512
+ */
513
+ packRun?: EvaluationPackRun | undefined;
514
+ /**
515
+ * @generated from field: evalcontrol.v1.EvaluationDecision decision = 2;
516
+ */
517
+ decision?: EvaluationDecision | undefined;
518
+ /**
519
+ * @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
520
+ */
521
+ findings: EvaluationFinding[];
522
+ };
523
+ /**
524
+ * Describes the message evalcontrol.v1.RunEvaluationPackResponse.
525
+ * Use `create(RunEvaluationPackResponseSchema)` to create a new message.
526
+ */
527
+ export declare const RunEvaluationPackResponseSchema: GenMessage<RunEvaluationPackResponse>;
528
+ /**
529
+ * @generated from message evalcontrol.v1.GetEvaluationDecisionRequest
530
+ */
531
+ export type GetEvaluationDecisionRequest = Message<"evalcontrol.v1.GetEvaluationDecisionRequest"> & {
532
+ /**
533
+ * @generated from field: string organization_id = 1;
534
+ */
535
+ organizationId: string;
536
+ /**
537
+ * @generated from field: string workspace_id = 2;
538
+ */
539
+ workspaceId: string;
540
+ /**
541
+ * @generated from field: string decision_id = 3;
542
+ */
543
+ decisionId: string;
544
+ };
545
+ /**
546
+ * Describes the message evalcontrol.v1.GetEvaluationDecisionRequest.
547
+ * Use `create(GetEvaluationDecisionRequestSchema)` to create a new message.
548
+ */
549
+ export declare const GetEvaluationDecisionRequestSchema: GenMessage<GetEvaluationDecisionRequest>;
550
+ /**
551
+ * @generated from message evalcontrol.v1.GetEvaluationDecisionResponse
552
+ */
553
+ export type GetEvaluationDecisionResponse = Message<"evalcontrol.v1.GetEvaluationDecisionResponse"> & {
554
+ /**
555
+ * @generated from field: evalcontrol.v1.EvaluationDecision decision = 1;
556
+ */
557
+ decision?: EvaluationDecision | undefined;
558
+ /**
559
+ * @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 2;
560
+ */
561
+ packRun?: EvaluationPackRun | undefined;
562
+ /**
563
+ * @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
564
+ */
565
+ findings: EvaluationFinding[];
566
+ };
567
+ /**
568
+ * Describes the message evalcontrol.v1.GetEvaluationDecisionResponse.
569
+ * Use `create(GetEvaluationDecisionResponseSchema)` to create a new message.
570
+ */
571
+ export declare const GetEvaluationDecisionResponseSchema: GenMessage<GetEvaluationDecisionResponse>;
572
+ /**
573
+ * @generated from message evalcontrol.v1.ListEvaluationFindingsRequest
574
+ */
575
+ export type ListEvaluationFindingsRequest = Message<"evalcontrol.v1.ListEvaluationFindingsRequest"> & {
576
+ /**
577
+ * @generated from field: string organization_id = 1;
578
+ */
579
+ organizationId: string;
580
+ /**
581
+ * @generated from field: string workspace_id = 2;
582
+ */
583
+ workspaceId: string;
584
+ /**
585
+ * @generated from field: evalcontrol.v1.EvaluationFindingStatus status = 3;
586
+ */
587
+ status: EvaluationFindingStatus;
588
+ /**
589
+ * @generated from field: evalcontrol.v1.EvaluationFindingSeverity severity = 4;
590
+ */
591
+ severity: EvaluationFindingSeverity;
592
+ /**
593
+ * @generated from field: evalcontrol.v1.EvaluationSourceKind source_kind = 5;
594
+ */
595
+ sourceKind: EvaluationSourceKind;
596
+ /**
597
+ * @generated from field: string service = 6;
598
+ */
599
+ service: string;
600
+ /**
601
+ * @generated from field: bool only_would_block = 7;
602
+ */
603
+ onlyWouldBlock: boolean;
604
+ /**
605
+ * @generated from field: int32 page_size = 8;
606
+ */
607
+ pageSize: number;
608
+ /**
609
+ * @generated from field: string page_token = 9;
610
+ */
611
+ pageToken: string;
612
+ };
613
+ /**
614
+ * Describes the message evalcontrol.v1.ListEvaluationFindingsRequest.
615
+ * Use `create(ListEvaluationFindingsRequestSchema)` to create a new message.
616
+ */
617
+ export declare const ListEvaluationFindingsRequestSchema: GenMessage<ListEvaluationFindingsRequest>;
618
+ /**
619
+ * @generated from message evalcontrol.v1.ListEvaluationFindingsResponse
620
+ */
621
+ export type ListEvaluationFindingsResponse = Message<"evalcontrol.v1.ListEvaluationFindingsResponse"> & {
622
+ /**
623
+ * @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 1;
624
+ */
625
+ findings: EvaluationFinding[];
626
+ /**
627
+ * @generated from field: string next_page_token = 2;
628
+ */
629
+ nextPageToken: string;
630
+ };
631
+ /**
632
+ * Describes the message evalcontrol.v1.ListEvaluationFindingsResponse.
633
+ * Use `create(ListEvaluationFindingsResponseSchema)` to create a new message.
634
+ */
635
+ export declare const ListEvaluationFindingsResponseSchema: GenMessage<ListEvaluationFindingsResponse>;
636
+ /**
637
+ * @generated from message evalcontrol.v1.AcknowledgeEvaluationFindingRequest
638
+ */
639
+ export type AcknowledgeEvaluationFindingRequest = Message<"evalcontrol.v1.AcknowledgeEvaluationFindingRequest"> & {
640
+ /**
641
+ * @generated from field: string organization_id = 1;
642
+ */
643
+ organizationId: string;
644
+ /**
645
+ * @generated from field: string workspace_id = 2;
646
+ */
647
+ workspaceId: string;
648
+ /**
649
+ * @generated from field: string finding_id = 3;
650
+ */
651
+ findingId: string;
652
+ /**
653
+ * @generated from field: string acknowledged_by = 4;
654
+ */
655
+ acknowledgedBy: string;
656
+ /**
657
+ * @generated from field: string note = 5;
658
+ */
659
+ note: string;
660
+ };
661
+ /**
662
+ * Describes the message evalcontrol.v1.AcknowledgeEvaluationFindingRequest.
663
+ * Use `create(AcknowledgeEvaluationFindingRequestSchema)` to create a new message.
664
+ */
665
+ export declare const AcknowledgeEvaluationFindingRequestSchema: GenMessage<AcknowledgeEvaluationFindingRequest>;
666
+ /**
667
+ * @generated from message evalcontrol.v1.AcknowledgeEvaluationFindingResponse
668
+ */
669
+ export type AcknowledgeEvaluationFindingResponse = Message<"evalcontrol.v1.AcknowledgeEvaluationFindingResponse"> & {
670
+ /**
671
+ * @generated from field: evalcontrol.v1.EvaluationFinding finding = 1;
672
+ */
673
+ finding?: EvaluationFinding | undefined;
674
+ };
675
+ /**
676
+ * Describes the message evalcontrol.v1.AcknowledgeEvaluationFindingResponse.
677
+ * Use `create(AcknowledgeEvaluationFindingResponseSchema)` to create a new message.
678
+ */
679
+ export declare const AcknowledgeEvaluationFindingResponseSchema: GenMessage<AcknowledgeEvaluationFindingResponse>;
680
+ /**
681
+ * @generated from message evalcontrol.v1.RerunEvaluationDecisionRequest
682
+ */
683
+ export type RerunEvaluationDecisionRequest = Message<"evalcontrol.v1.RerunEvaluationDecisionRequest"> & {
684
+ /**
685
+ * @generated from field: string organization_id = 1;
686
+ */
687
+ organizationId: string;
688
+ /**
689
+ * @generated from field: string workspace_id = 2;
690
+ */
691
+ workspaceId: string;
692
+ /**
693
+ * @generated from field: string decision_id = 3;
694
+ */
695
+ decisionId: string;
696
+ /**
697
+ * @generated from field: string created_by = 4;
698
+ */
699
+ createdBy: string;
700
+ /**
701
+ * @generated from field: string reason = 5;
702
+ */
703
+ reason: string;
704
+ };
705
+ /**
706
+ * Describes the message evalcontrol.v1.RerunEvaluationDecisionRequest.
707
+ * Use `create(RerunEvaluationDecisionRequestSchema)` to create a new message.
708
+ */
709
+ export declare const RerunEvaluationDecisionRequestSchema: GenMessage<RerunEvaluationDecisionRequest>;
710
+ /**
711
+ * @generated from message evalcontrol.v1.RerunEvaluationDecisionResponse
712
+ */
713
+ export type RerunEvaluationDecisionResponse = Message<"evalcontrol.v1.RerunEvaluationDecisionResponse"> & {
714
+ /**
715
+ * @generated from field: evalcontrol.v1.EvaluationPackRun pack_run = 1;
716
+ */
717
+ packRun?: EvaluationPackRun | undefined;
718
+ /**
719
+ * @generated from field: evalcontrol.v1.EvaluationDecision decision = 2;
720
+ */
721
+ decision?: EvaluationDecision | undefined;
722
+ /**
723
+ * @generated from field: repeated evalcontrol.v1.EvaluationFinding findings = 3;
724
+ */
725
+ findings: EvaluationFinding[];
726
+ /**
727
+ * @generated from field: string previous_decision_id = 4;
728
+ */
729
+ previousDecisionId: string;
730
+ };
731
+ /**
732
+ * Describes the message evalcontrol.v1.RerunEvaluationDecisionResponse.
733
+ * Use `create(RerunEvaluationDecisionResponseSchema)` to create a new message.
734
+ */
735
+ export declare const RerunEvaluationDecisionResponseSchema: GenMessage<RerunEvaluationDecisionResponse>;
736
+ /**
737
+ * @generated from message evalcontrol.v1.GetEvaluationControlPolicyRequest
738
+ */
739
+ export type GetEvaluationControlPolicyRequest = Message<"evalcontrol.v1.GetEvaluationControlPolicyRequest"> & {
740
+ /**
741
+ * @generated from field: string organization_id = 1;
742
+ */
743
+ organizationId: string;
744
+ /**
745
+ * @generated from field: string workspace_id = 2;
746
+ */
747
+ workspaceId: string;
748
+ /**
749
+ * @generated from field: string pack_id = 3;
750
+ */
751
+ packId: string;
752
+ /**
753
+ * @generated from field: evalcontrol.v1.EvaluationSourceKind source_kind = 4;
754
+ */
755
+ sourceKind: EvaluationSourceKind;
756
+ /**
757
+ * @generated from field: string service = 5;
758
+ */
759
+ service: string;
760
+ /**
761
+ * @generated from field: string environment = 6;
762
+ */
763
+ environment: string;
764
+ };
765
+ /**
766
+ * Describes the message evalcontrol.v1.GetEvaluationControlPolicyRequest.
767
+ * Use `create(GetEvaluationControlPolicyRequestSchema)` to create a new message.
768
+ */
769
+ export declare const GetEvaluationControlPolicyRequestSchema: GenMessage<GetEvaluationControlPolicyRequest>;
770
+ /**
771
+ * @generated from message evalcontrol.v1.GetEvaluationControlPolicyResponse
772
+ */
773
+ export type GetEvaluationControlPolicyResponse = Message<"evalcontrol.v1.GetEvaluationControlPolicyResponse"> & {
774
+ /**
775
+ * @generated from field: evalcontrol.v1.EvaluationControlPolicy policy = 1;
776
+ */
777
+ policy?: EvaluationControlPolicy | undefined;
778
+ /**
779
+ * @generated from field: bool defaulted = 2;
780
+ */
781
+ defaulted: boolean;
782
+ };
783
+ /**
784
+ * Describes the message evalcontrol.v1.GetEvaluationControlPolicyResponse.
785
+ * Use `create(GetEvaluationControlPolicyResponseSchema)` to create a new message.
786
+ */
787
+ export declare const GetEvaluationControlPolicyResponseSchema: GenMessage<GetEvaluationControlPolicyResponse>;
788
+ /**
789
+ * @generated from message evalcontrol.v1.UpsertEvaluationControlPolicyRequest
790
+ */
791
+ export type UpsertEvaluationControlPolicyRequest = Message<"evalcontrol.v1.UpsertEvaluationControlPolicyRequest"> & {
792
+ /**
793
+ * @generated from field: evalcontrol.v1.EvaluationControlPolicy policy = 1;
794
+ */
795
+ policy?: EvaluationControlPolicy | undefined;
796
+ };
797
+ /**
798
+ * Describes the message evalcontrol.v1.UpsertEvaluationControlPolicyRequest.
799
+ * Use `create(UpsertEvaluationControlPolicyRequestSchema)` to create a new message.
800
+ */
801
+ export declare const UpsertEvaluationControlPolicyRequestSchema: GenMessage<UpsertEvaluationControlPolicyRequest>;
802
+ /**
803
+ * @generated from message evalcontrol.v1.UpsertEvaluationControlPolicyResponse
804
+ */
805
+ export type UpsertEvaluationControlPolicyResponse = Message<"evalcontrol.v1.UpsertEvaluationControlPolicyResponse"> & {
806
+ /**
807
+ * @generated from field: evalcontrol.v1.EvaluationControlPolicy policy = 1;
808
+ */
809
+ policy?: EvaluationControlPolicy | undefined;
810
+ };
811
+ /**
812
+ * Describes the message evalcontrol.v1.UpsertEvaluationControlPolicyResponse.
813
+ * Use `create(UpsertEvaluationControlPolicyResponseSchema)` to create a new message.
814
+ */
815
+ export declare const UpsertEvaluationControlPolicyResponseSchema: GenMessage<UpsertEvaluationControlPolicyResponse>;
816
+ /**
817
+ * @generated from message evalcontrol.v1.ListEvaluationControlPoliciesRequest
818
+ */
819
+ export type ListEvaluationControlPoliciesRequest = Message<"evalcontrol.v1.ListEvaluationControlPoliciesRequest"> & {
820
+ /**
821
+ * @generated from field: string organization_id = 1;
822
+ */
823
+ organizationId: string;
824
+ /**
825
+ * @generated from field: string workspace_id = 2;
826
+ */
827
+ workspaceId: string;
828
+ /**
829
+ * @generated from field: string pack_id = 3;
830
+ */
831
+ packId: string;
832
+ /**
833
+ * @generated from field: evalcontrol.v1.EvaluationSourceKind source_kind = 4;
834
+ */
835
+ sourceKind: EvaluationSourceKind;
836
+ /**
837
+ * @generated from field: string service = 5;
838
+ */
839
+ service: string;
840
+ /**
841
+ * @generated from field: string environment = 6;
842
+ */
843
+ environment: string;
844
+ /**
845
+ * @generated from field: int32 page_size = 7;
846
+ */
847
+ pageSize: number;
848
+ /**
849
+ * @generated from field: string page_token = 8;
850
+ */
851
+ pageToken: string;
852
+ };
853
+ /**
854
+ * Describes the message evalcontrol.v1.ListEvaluationControlPoliciesRequest.
855
+ * Use `create(ListEvaluationControlPoliciesRequestSchema)` to create a new message.
856
+ */
857
+ export declare const ListEvaluationControlPoliciesRequestSchema: GenMessage<ListEvaluationControlPoliciesRequest>;
858
+ /**
859
+ * @generated from message evalcontrol.v1.ListEvaluationControlPoliciesResponse
860
+ */
861
+ export type ListEvaluationControlPoliciesResponse = Message<"evalcontrol.v1.ListEvaluationControlPoliciesResponse"> & {
862
+ /**
863
+ * @generated from field: repeated evalcontrol.v1.EvaluationControlPolicy policies = 1;
864
+ */
865
+ policies: EvaluationControlPolicy[];
866
+ /**
867
+ * @generated from field: string next_page_token = 2;
868
+ */
869
+ nextPageToken: string;
870
+ };
871
+ /**
872
+ * Describes the message evalcontrol.v1.ListEvaluationControlPoliciesResponse.
873
+ * Use `create(ListEvaluationControlPoliciesResponseSchema)` to create a new message.
874
+ */
875
+ export declare const ListEvaluationControlPoliciesResponseSchema: GenMessage<ListEvaluationControlPoliciesResponse>;
876
+ /**
877
+ * @generated from enum evalcontrol.v1.EvaluationSourceKind
878
+ */
879
+ export declare enum EvaluationSourceKind {
880
+ /**
881
+ * @generated from enum value: EVALUATION_SOURCE_KIND_UNSPECIFIED = 0;
882
+ */
883
+ UNSPECIFIED = 0,
884
+ /**
885
+ * @generated from enum value: EVALUATION_SOURCE_KIND_TRACE = 1;
886
+ */
887
+ TRACE = 1,
888
+ /**
889
+ * @generated from enum value: EVALUATION_SOURCE_KIND_SCENARIO_FIXTURE = 2;
890
+ */
891
+ SCENARIO_FIXTURE = 2,
892
+ /**
893
+ * @generated from enum value: EVALUATION_SOURCE_KIND_RELEASE_TRAIN = 3;
894
+ */
895
+ RELEASE_TRAIN = 3,
896
+ /**
897
+ * @generated from enum value: EVALUATION_SOURCE_KIND_PROMPT_VERSION = 4;
898
+ */
899
+ PROMPT_VERSION = 4,
900
+ /**
901
+ * @generated from enum value: EVALUATION_SOURCE_KIND_ROUTING_RECOMMENDATION = 5;
902
+ */
903
+ ROUTING_RECOMMENDATION = 5,
904
+ /**
905
+ * @generated from enum value: EVALUATION_SOURCE_KIND_EXPERIMENT_EXPOSURE = 6;
906
+ */
907
+ EXPERIMENT_EXPOSURE = 6,
908
+ /**
909
+ * @generated from enum value: EVALUATION_SOURCE_KIND_CEREBRO_FINDING_EVALUATION_RUN = 7;
910
+ */
911
+ CEREBRO_FINDING_EVALUATION_RUN = 7
912
+ }
913
+ /**
914
+ * Describes the enum evalcontrol.v1.EvaluationSourceKind.
915
+ */
916
+ export declare const EvaluationSourceKindSchema: GenEnum<EvaluationSourceKind>;
917
+ /**
918
+ * @generated from enum evalcontrol.v1.EvaluationEnforcementMode
919
+ */
920
+ export declare enum EvaluationEnforcementMode {
921
+ /**
922
+ * @generated from enum value: EVALUATION_ENFORCEMENT_MODE_UNSPECIFIED = 0;
923
+ */
924
+ UNSPECIFIED = 0,
925
+ /**
926
+ * @generated from enum value: EVALUATION_ENFORCEMENT_MODE_OBSERVE = 1;
927
+ */
928
+ OBSERVE = 1,
929
+ /**
930
+ * @generated from enum value: EVALUATION_ENFORCEMENT_MODE_ADVISORY = 2;
931
+ */
932
+ ADVISORY = 2,
933
+ /**
934
+ * @generated from enum value: EVALUATION_ENFORCEMENT_MODE_ENFORCING = 3;
935
+ */
936
+ ENFORCING = 3
937
+ }
938
+ /**
939
+ * Describes the enum evalcontrol.v1.EvaluationEnforcementMode.
940
+ */
941
+ export declare const EvaluationEnforcementModeSchema: GenEnum<EvaluationEnforcementMode>;
942
+ /**
943
+ * @generated from enum evalcontrol.v1.EvaluationPackRunStatus
944
+ */
945
+ export declare enum EvaluationPackRunStatus {
946
+ /**
947
+ * @generated from enum value: EVALUATION_PACK_RUN_STATUS_UNSPECIFIED = 0;
948
+ */
949
+ UNSPECIFIED = 0,
950
+ /**
951
+ * @generated from enum value: EVALUATION_PACK_RUN_STATUS_RUNNING = 1;
952
+ */
953
+ RUNNING = 1,
954
+ /**
955
+ * @generated from enum value: EVALUATION_PACK_RUN_STATUS_SUCCEEDED = 2;
956
+ */
957
+ SUCCEEDED = 2,
958
+ /**
959
+ * @generated from enum value: EVALUATION_PACK_RUN_STATUS_FAILED = 3;
960
+ */
961
+ FAILED = 3
962
+ }
963
+ /**
964
+ * Describes the enum evalcontrol.v1.EvaluationPackRunStatus.
965
+ */
966
+ export declare const EvaluationPackRunStatusSchema: GenEnum<EvaluationPackRunStatus>;
967
+ /**
968
+ * @generated from enum evalcontrol.v1.EvaluationDecisionAction
969
+ */
970
+ export declare enum EvaluationDecisionAction {
971
+ /**
972
+ * @generated from enum value: EVALUATION_DECISION_ACTION_UNSPECIFIED = 0;
973
+ */
974
+ UNSPECIFIED = 0,
975
+ /**
976
+ * @generated from enum value: EVALUATION_DECISION_ACTION_OBSERVE = 1;
977
+ */
978
+ OBSERVE = 1,
979
+ /**
980
+ * @generated from enum value: EVALUATION_DECISION_ACTION_ADVISE = 2;
981
+ */
982
+ ADVISE = 2,
983
+ /**
984
+ * @generated from enum value: EVALUATION_DECISION_ACTION_REQUIRE_APPROVAL = 3;
985
+ */
986
+ REQUIRE_APPROVAL = 3,
987
+ /**
988
+ * @generated from enum value: EVALUATION_DECISION_ACTION_CANARY_ONLY = 4;
989
+ */
990
+ CANARY_ONLY = 4,
991
+ /**
992
+ * @generated from enum value: EVALUATION_DECISION_ACTION_HOLD = 5;
993
+ */
994
+ HOLD = 5,
995
+ /**
996
+ * @generated from enum value: EVALUATION_DECISION_ACTION_BLOCK = 6;
997
+ */
998
+ BLOCK = 6
999
+ }
1000
+ /**
1001
+ * Describes the enum evalcontrol.v1.EvaluationDecisionAction.
1002
+ */
1003
+ export declare const EvaluationDecisionActionSchema: GenEnum<EvaluationDecisionAction>;
1004
+ /**
1005
+ * @generated from enum evalcontrol.v1.EvaluationFindingSeverity
1006
+ */
1007
+ export declare enum EvaluationFindingSeverity {
1008
+ /**
1009
+ * @generated from enum value: EVALUATION_FINDING_SEVERITY_UNSPECIFIED = 0;
1010
+ */
1011
+ UNSPECIFIED = 0,
1012
+ /**
1013
+ * @generated from enum value: EVALUATION_FINDING_SEVERITY_INFO = 1;
1014
+ */
1015
+ INFO = 1,
1016
+ /**
1017
+ * @generated from enum value: EVALUATION_FINDING_SEVERITY_WARNING = 2;
1018
+ */
1019
+ WARNING = 2,
1020
+ /**
1021
+ * @generated from enum value: EVALUATION_FINDING_SEVERITY_BLOCKING = 3;
1022
+ */
1023
+ BLOCKING = 3,
1024
+ /**
1025
+ * @generated from enum value: EVALUATION_FINDING_SEVERITY_CRITICAL = 4;
1026
+ */
1027
+ CRITICAL = 4
1028
+ }
1029
+ /**
1030
+ * Describes the enum evalcontrol.v1.EvaluationFindingSeverity.
1031
+ */
1032
+ export declare const EvaluationFindingSeveritySchema: GenEnum<EvaluationFindingSeverity>;
1033
+ /**
1034
+ * @generated from enum evalcontrol.v1.EvaluationFindingStatus
1035
+ */
1036
+ export declare enum EvaluationFindingStatus {
1037
+ /**
1038
+ * @generated from enum value: EVALUATION_FINDING_STATUS_UNSPECIFIED = 0;
1039
+ */
1040
+ UNSPECIFIED = 0,
1041
+ /**
1042
+ * @generated from enum value: EVALUATION_FINDING_STATUS_OPEN = 1;
1043
+ */
1044
+ OPEN = 1,
1045
+ /**
1046
+ * @generated from enum value: EVALUATION_FINDING_STATUS_ACKNOWLEDGED = 2;
1047
+ */
1048
+ ACKNOWLEDGED = 2,
1049
+ /**
1050
+ * @generated from enum value: EVALUATION_FINDING_STATUS_RESOLVED = 3;
1051
+ */
1052
+ RESOLVED = 3
1053
+ }
1054
+ /**
1055
+ * Describes the enum evalcontrol.v1.EvaluationFindingStatus.
1056
+ */
1057
+ export declare const EvaluationFindingStatusSchema: GenEnum<EvaluationFindingStatus>;
1058
+ /**
1059
+ * @generated from enum evalcontrol.v1.ProductActuatorKind
1060
+ */
1061
+ export declare enum ProductActuatorKind {
1062
+ /**
1063
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_UNSPECIFIED = 0;
1064
+ */
1065
+ UNSPECIFIED = 0,
1066
+ /**
1067
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_ROUTE_TRAFFIC = 1;
1068
+ */
1069
+ ROUTE_TRAFFIC = 1,
1070
+ /**
1071
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_EXPERIMENT_ANALYSIS = 2;
1072
+ */
1073
+ EXPERIMENT_ANALYSIS = 2,
1074
+ /**
1075
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_REQUIRE_APPROVAL = 3;
1076
+ */
1077
+ REQUIRE_APPROVAL = 3,
1078
+ /**
1079
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_RELEASE_TRAIN_PROMOTION = 4;
1080
+ */
1081
+ RELEASE_TRAIN_PROMOTION = 4,
1082
+ /**
1083
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_CAPABILITY_ANNOTATION = 5;
1084
+ */
1085
+ CAPABILITY_ANNOTATION = 5,
1086
+ /**
1087
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_CEREBRO_FINDING = 6;
1088
+ */
1089
+ CEREBRO_FINDING = 6,
1090
+ /**
1091
+ * @generated from enum value: PRODUCT_ACTUATOR_KIND_REGRESSION_CORPUS_PROMOTION = 7;
1092
+ */
1093
+ REGRESSION_CORPUS_PROMOTION = 7
1094
+ }
1095
+ /**
1096
+ * Describes the enum evalcontrol.v1.ProductActuatorKind.
1097
+ */
1098
+ export declare const ProductActuatorKindSchema: GenEnum<ProductActuatorKind>;
1099
+ /**
1100
+ * EvalControlService turns Fermata evaluation output into product decisions and findings.
1101
+ *
1102
+ * @generated from service evalcontrol.v1.EvalControlService
1103
+ */
1104
+ export declare const EvalControlService: GenService<{
1105
+ /**
1106
+ * RunEvaluationPack builds a native Fermata pack from real sources, runs it, and records an advisory decision.
1107
+ *
1108
+ * @generated from rpc evalcontrol.v1.EvalControlService.RunEvaluationPack
1109
+ */
1110
+ runEvaluationPack: {
1111
+ methodKind: "unary";
1112
+ input: typeof RunEvaluationPackRequestSchema;
1113
+ output: typeof RunEvaluationPackResponseSchema;
1114
+ };
1115
+ /**
1116
+ * GetEvaluationDecision returns the persisted decision, pack run, and findings.
1117
+ *
1118
+ * @generated from rpc evalcontrol.v1.EvalControlService.GetEvaluationDecision
1119
+ */
1120
+ getEvaluationDecision: {
1121
+ methodKind: "unary";
1122
+ input: typeof GetEvaluationDecisionRequestSchema;
1123
+ output: typeof GetEvaluationDecisionResponseSchema;
1124
+ };
1125
+ /**
1126
+ * ListEvaluationFindings lists actionable eval findings for product surfaces.
1127
+ *
1128
+ * @generated from rpc evalcontrol.v1.EvalControlService.ListEvaluationFindings
1129
+ */
1130
+ listEvaluationFindings: {
1131
+ methodKind: "unary";
1132
+ input: typeof ListEvaluationFindingsRequestSchema;
1133
+ output: typeof ListEvaluationFindingsResponseSchema;
1134
+ };
1135
+ /**
1136
+ * AcknowledgeEvaluationFinding records operator acknowledgement without removing the finding.
1137
+ *
1138
+ * @generated from rpc evalcontrol.v1.EvalControlService.AcknowledgeEvaluationFinding
1139
+ */
1140
+ acknowledgeEvaluationFinding: {
1141
+ methodKind: "unary";
1142
+ input: typeof AcknowledgeEvaluationFindingRequestSchema;
1143
+ output: typeof AcknowledgeEvaluationFindingResponseSchema;
1144
+ };
1145
+ /**
1146
+ * RerunEvaluationDecision reruns the original pack/source pair and links the new decision to the old one.
1147
+ *
1148
+ * @generated from rpc evalcontrol.v1.EvalControlService.RerunEvaluationDecision
1149
+ */
1150
+ rerunEvaluationDecision: {
1151
+ methodKind: "unary";
1152
+ input: typeof RerunEvaluationDecisionRequestSchema;
1153
+ output: typeof RerunEvaluationDecisionResponseSchema;
1154
+ };
1155
+ /**
1156
+ * GetEvaluationControlPolicy returns the server-owned enforcement policy for a pack/source selector.
1157
+ *
1158
+ * @generated from rpc evalcontrol.v1.EvalControlService.GetEvaluationControlPolicy
1159
+ */
1160
+ getEvaluationControlPolicy: {
1161
+ methodKind: "unary";
1162
+ input: typeof GetEvaluationControlPolicyRequestSchema;
1163
+ output: typeof GetEvaluationControlPolicyResponseSchema;
1164
+ };
1165
+ /**
1166
+ * UpsertEvaluationControlPolicy graduates or demotes the server-owned enforcement policy for a pack/source selector.
1167
+ *
1168
+ * @generated from rpc evalcontrol.v1.EvalControlService.UpsertEvaluationControlPolicy
1169
+ */
1170
+ upsertEvaluationControlPolicy: {
1171
+ methodKind: "unary";
1172
+ input: typeof UpsertEvaluationControlPolicyRequestSchema;
1173
+ output: typeof UpsertEvaluationControlPolicyResponseSchema;
1174
+ };
1175
+ /**
1176
+ * ListEvaluationControlPolicies lists server-owned enforcement policies for an organization/workspace.
1177
+ *
1178
+ * @generated from rpc evalcontrol.v1.EvalControlService.ListEvaluationControlPolicies
1179
+ */
1180
+ listEvaluationControlPolicies: {
1181
+ methodKind: "unary";
1182
+ input: typeof ListEvaluationControlPoliciesRequestSchema;
1183
+ output: typeof ListEvaluationControlPoliciesResponseSchema;
1184
+ };
1185
+ }>;