@evalops/sdk-ts 0.1.94 → 0.1.95
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/console/v1/console_pb.d.ts +1162 -0
- package/dist/console/v1/console_pb.js +185 -0
- package/package.json +5 -1
|
@@ -0,0 +1,1162 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { RiskLevel } from "../../common/v1/risk_pb.js";
|
|
3
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file console/v1/console.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_console_v1_console: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* TimeRange bounds console queries.
|
|
11
|
+
*
|
|
12
|
+
* @generated from message console.v1.TimeRange
|
|
13
|
+
*/
|
|
14
|
+
export type TimeRange = Message<"console.v1.TimeRange"> & {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: google.protobuf.Timestamp start_time = 1;
|
|
17
|
+
*/
|
|
18
|
+
startTime?: Timestamp | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: google.protobuf.Timestamp end_time = 2;
|
|
21
|
+
*/
|
|
22
|
+
endTime?: Timestamp | undefined;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message console.v1.TimeRange.
|
|
26
|
+
* Use `create(TimeRangeSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export declare const TimeRangeSchema: GenMessage<TimeRange>;
|
|
29
|
+
/**
|
|
30
|
+
* ConsoleQuery is shared by read endpoints.
|
|
31
|
+
*
|
|
32
|
+
* @generated from message console.v1.ConsoleQuery
|
|
33
|
+
*/
|
|
34
|
+
export type ConsoleQuery = Message<"console.v1.ConsoleQuery"> & {
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: string workspace_id = 1;
|
|
37
|
+
*/
|
|
38
|
+
workspaceId: string;
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: console.v1.TimeRange time_range = 2;
|
|
41
|
+
*/
|
|
42
|
+
timeRange?: TimeRange | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: string environment = 3;
|
|
45
|
+
*/
|
|
46
|
+
environment: string;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from field: string team_id = 4;
|
|
49
|
+
*/
|
|
50
|
+
teamId: string;
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: string owner = 5;
|
|
53
|
+
*/
|
|
54
|
+
owner: string;
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: common.v1.RiskLevel risk_level = 6;
|
|
57
|
+
*/
|
|
58
|
+
riskLevel: RiskLevel;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: string asset_type = 7;
|
|
61
|
+
*/
|
|
62
|
+
assetType: string;
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: string status = 8;
|
|
65
|
+
*/
|
|
66
|
+
status: string;
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: int32 limit = 9;
|
|
69
|
+
*/
|
|
70
|
+
limit: number;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: int32 offset = 10;
|
|
73
|
+
*/
|
|
74
|
+
offset: number;
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: string search = 11;
|
|
77
|
+
*/
|
|
78
|
+
search: string;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Describes the message console.v1.ConsoleQuery.
|
|
82
|
+
* Use `create(ConsoleQuerySchema)` to create a new message.
|
|
83
|
+
*/
|
|
84
|
+
export declare const ConsoleQuerySchema: GenMessage<ConsoleQuery>;
|
|
85
|
+
/**
|
|
86
|
+
* @generated from message console.v1.GetOverviewRequest
|
|
87
|
+
*/
|
|
88
|
+
export type GetOverviewRequest = Message<"console.v1.GetOverviewRequest"> & {
|
|
89
|
+
/**
|
|
90
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
91
|
+
*/
|
|
92
|
+
query?: ConsoleQuery | undefined;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Describes the message console.v1.GetOverviewRequest.
|
|
96
|
+
* Use `create(GetOverviewRequestSchema)` to create a new message.
|
|
97
|
+
*/
|
|
98
|
+
export declare const GetOverviewRequestSchema: GenMessage<GetOverviewRequest>;
|
|
99
|
+
/**
|
|
100
|
+
* @generated from message console.v1.GetOverviewResponse
|
|
101
|
+
*/
|
|
102
|
+
export type GetOverviewResponse = Message<"console.v1.GetOverviewResponse"> & {
|
|
103
|
+
/**
|
|
104
|
+
* @generated from field: google.protobuf.Timestamp generated_at = 1;
|
|
105
|
+
*/
|
|
106
|
+
generatedAt?: Timestamp | undefined;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from field: repeated console.v1.ConsoleMetric metrics = 2;
|
|
109
|
+
*/
|
|
110
|
+
metrics: ConsoleMetric[];
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: repeated console.v1.AiAsset top_assets = 3;
|
|
113
|
+
*/
|
|
114
|
+
topAssets: AiAsset[];
|
|
115
|
+
/**
|
|
116
|
+
* @generated from field: repeated console.v1.RiskFinding top_findings = 4;
|
|
117
|
+
*/
|
|
118
|
+
topFindings: RiskFinding[];
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: repeated console.v1.ActivityEvent recent_activity = 5;
|
|
121
|
+
*/
|
|
122
|
+
recentActivity: ActivityEvent[];
|
|
123
|
+
/**
|
|
124
|
+
* @generated from field: repeated console.v1.IntegrationTile integration_tiles = 6;
|
|
125
|
+
*/
|
|
126
|
+
integrationTiles: IntegrationTile[];
|
|
127
|
+
/**
|
|
128
|
+
* @generated from field: repeated console.v1.OnboardingTask onboarding_tasks = 7;
|
|
129
|
+
*/
|
|
130
|
+
onboardingTasks: OnboardingTask[];
|
|
131
|
+
/**
|
|
132
|
+
* @generated from field: repeated string warnings = 8;
|
|
133
|
+
*/
|
|
134
|
+
warnings: string[];
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* Describes the message console.v1.GetOverviewResponse.
|
|
138
|
+
* Use `create(GetOverviewResponseSchema)` to create a new message.
|
|
139
|
+
*/
|
|
140
|
+
export declare const GetOverviewResponseSchema: GenMessage<GetOverviewResponse>;
|
|
141
|
+
/**
|
|
142
|
+
* @generated from message console.v1.ListAssetsRequest
|
|
143
|
+
*/
|
|
144
|
+
export type ListAssetsRequest = Message<"console.v1.ListAssetsRequest"> & {
|
|
145
|
+
/**
|
|
146
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
147
|
+
*/
|
|
148
|
+
query?: ConsoleQuery | undefined;
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Describes the message console.v1.ListAssetsRequest.
|
|
152
|
+
* Use `create(ListAssetsRequestSchema)` to create a new message.
|
|
153
|
+
*/
|
|
154
|
+
export declare const ListAssetsRequestSchema: GenMessage<ListAssetsRequest>;
|
|
155
|
+
/**
|
|
156
|
+
* @generated from message console.v1.ListAssetsResponse
|
|
157
|
+
*/
|
|
158
|
+
export type ListAssetsResponse = Message<"console.v1.ListAssetsResponse"> & {
|
|
159
|
+
/**
|
|
160
|
+
* @generated from field: repeated console.v1.AiAsset assets = 1;
|
|
161
|
+
*/
|
|
162
|
+
assets: AiAsset[];
|
|
163
|
+
/**
|
|
164
|
+
* @generated from field: int32 total = 2;
|
|
165
|
+
*/
|
|
166
|
+
total: number;
|
|
167
|
+
/**
|
|
168
|
+
* @generated from field: bool has_more = 3;
|
|
169
|
+
*/
|
|
170
|
+
hasMore: boolean;
|
|
171
|
+
};
|
|
172
|
+
/**
|
|
173
|
+
* Describes the message console.v1.ListAssetsResponse.
|
|
174
|
+
* Use `create(ListAssetsResponseSchema)` to create a new message.
|
|
175
|
+
*/
|
|
176
|
+
export declare const ListAssetsResponseSchema: GenMessage<ListAssetsResponse>;
|
|
177
|
+
/**
|
|
178
|
+
* @generated from message console.v1.GetAssetRequest
|
|
179
|
+
*/
|
|
180
|
+
export type GetAssetRequest = Message<"console.v1.GetAssetRequest"> & {
|
|
181
|
+
/**
|
|
182
|
+
* @generated from field: string workspace_id = 1;
|
|
183
|
+
*/
|
|
184
|
+
workspaceId: string;
|
|
185
|
+
/**
|
|
186
|
+
* @generated from field: string asset_id = 2;
|
|
187
|
+
*/
|
|
188
|
+
assetId: string;
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* Describes the message console.v1.GetAssetRequest.
|
|
192
|
+
* Use `create(GetAssetRequestSchema)` to create a new message.
|
|
193
|
+
*/
|
|
194
|
+
export declare const GetAssetRequestSchema: GenMessage<GetAssetRequest>;
|
|
195
|
+
/**
|
|
196
|
+
* @generated from message console.v1.GetAssetResponse
|
|
197
|
+
*/
|
|
198
|
+
export type GetAssetResponse = Message<"console.v1.GetAssetResponse"> & {
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: console.v1.AiAsset asset = 1;
|
|
201
|
+
*/
|
|
202
|
+
asset?: AiAsset | undefined;
|
|
203
|
+
/**
|
|
204
|
+
* @generated from field: repeated console.v1.RelatedResource related_resources = 2;
|
|
205
|
+
*/
|
|
206
|
+
relatedResources: RelatedResource[];
|
|
207
|
+
/**
|
|
208
|
+
* @generated from field: repeated console.v1.ActivityEvent recent_activity = 3;
|
|
209
|
+
*/
|
|
210
|
+
recentActivity: ActivityEvent[];
|
|
211
|
+
/**
|
|
212
|
+
* @generated from field: repeated console.v1.RiskFinding findings = 4;
|
|
213
|
+
*/
|
|
214
|
+
findings: RiskFinding[];
|
|
215
|
+
};
|
|
216
|
+
/**
|
|
217
|
+
* Describes the message console.v1.GetAssetResponse.
|
|
218
|
+
* Use `create(GetAssetResponseSchema)` to create a new message.
|
|
219
|
+
*/
|
|
220
|
+
export declare const GetAssetResponseSchema: GenMessage<GetAssetResponse>;
|
|
221
|
+
/**
|
|
222
|
+
* @generated from message console.v1.ListActivityRequest
|
|
223
|
+
*/
|
|
224
|
+
export type ListActivityRequest = Message<"console.v1.ListActivityRequest"> & {
|
|
225
|
+
/**
|
|
226
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
227
|
+
*/
|
|
228
|
+
query?: ConsoleQuery | undefined;
|
|
229
|
+
};
|
|
230
|
+
/**
|
|
231
|
+
* Describes the message console.v1.ListActivityRequest.
|
|
232
|
+
* Use `create(ListActivityRequestSchema)` to create a new message.
|
|
233
|
+
*/
|
|
234
|
+
export declare const ListActivityRequestSchema: GenMessage<ListActivityRequest>;
|
|
235
|
+
/**
|
|
236
|
+
* @generated from message console.v1.ListActivityResponse
|
|
237
|
+
*/
|
|
238
|
+
export type ListActivityResponse = Message<"console.v1.ListActivityResponse"> & {
|
|
239
|
+
/**
|
|
240
|
+
* @generated from field: repeated console.v1.ActivityEvent events = 1;
|
|
241
|
+
*/
|
|
242
|
+
events: ActivityEvent[];
|
|
243
|
+
/**
|
|
244
|
+
* @generated from field: int32 total = 2;
|
|
245
|
+
*/
|
|
246
|
+
total: number;
|
|
247
|
+
/**
|
|
248
|
+
* @generated from field: bool has_more = 3;
|
|
249
|
+
*/
|
|
250
|
+
hasMore: boolean;
|
|
251
|
+
};
|
|
252
|
+
/**
|
|
253
|
+
* Describes the message console.v1.ListActivityResponse.
|
|
254
|
+
* Use `create(ListActivityResponseSchema)` to create a new message.
|
|
255
|
+
*/
|
|
256
|
+
export declare const ListActivityResponseSchema: GenMessage<ListActivityResponse>;
|
|
257
|
+
/**
|
|
258
|
+
* @generated from message console.v1.ListEvalResultsRequest
|
|
259
|
+
*/
|
|
260
|
+
export type ListEvalResultsRequest = Message<"console.v1.ListEvalResultsRequest"> & {
|
|
261
|
+
/**
|
|
262
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
263
|
+
*/
|
|
264
|
+
query?: ConsoleQuery | undefined;
|
|
265
|
+
};
|
|
266
|
+
/**
|
|
267
|
+
* Describes the message console.v1.ListEvalResultsRequest.
|
|
268
|
+
* Use `create(ListEvalResultsRequestSchema)` to create a new message.
|
|
269
|
+
*/
|
|
270
|
+
export declare const ListEvalResultsRequestSchema: GenMessage<ListEvalResultsRequest>;
|
|
271
|
+
/**
|
|
272
|
+
* @generated from message console.v1.ListEvalResultsResponse
|
|
273
|
+
*/
|
|
274
|
+
export type ListEvalResultsResponse = Message<"console.v1.ListEvalResultsResponse"> & {
|
|
275
|
+
/**
|
|
276
|
+
* @generated from field: repeated console.v1.EvalResult results = 1;
|
|
277
|
+
*/
|
|
278
|
+
results: EvalResult[];
|
|
279
|
+
/**
|
|
280
|
+
* @generated from field: int32 total = 2;
|
|
281
|
+
*/
|
|
282
|
+
total: number;
|
|
283
|
+
/**
|
|
284
|
+
* @generated from field: bool has_more = 3;
|
|
285
|
+
*/
|
|
286
|
+
hasMore: boolean;
|
|
287
|
+
};
|
|
288
|
+
/**
|
|
289
|
+
* Describes the message console.v1.ListEvalResultsResponse.
|
|
290
|
+
* Use `create(ListEvalResultsResponseSchema)` to create a new message.
|
|
291
|
+
*/
|
|
292
|
+
export declare const ListEvalResultsResponseSchema: GenMessage<ListEvalResultsResponse>;
|
|
293
|
+
/**
|
|
294
|
+
* @generated from message console.v1.ListCostUsageRequest
|
|
295
|
+
*/
|
|
296
|
+
export type ListCostUsageRequest = Message<"console.v1.ListCostUsageRequest"> & {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
299
|
+
*/
|
|
300
|
+
query?: ConsoleQuery | undefined;
|
|
301
|
+
};
|
|
302
|
+
/**
|
|
303
|
+
* Describes the message console.v1.ListCostUsageRequest.
|
|
304
|
+
* Use `create(ListCostUsageRequestSchema)` to create a new message.
|
|
305
|
+
*/
|
|
306
|
+
export declare const ListCostUsageRequestSchema: GenMessage<ListCostUsageRequest>;
|
|
307
|
+
/**
|
|
308
|
+
* @generated from message console.v1.ListCostUsageResponse
|
|
309
|
+
*/
|
|
310
|
+
export type ListCostUsageResponse = Message<"console.v1.ListCostUsageResponse"> & {
|
|
311
|
+
/**
|
|
312
|
+
* @generated from field: repeated console.v1.CostUsage rows = 1;
|
|
313
|
+
*/
|
|
314
|
+
rows: CostUsage[];
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: int32 total = 2;
|
|
317
|
+
*/
|
|
318
|
+
total: number;
|
|
319
|
+
/**
|
|
320
|
+
* @generated from field: bool has_more = 3;
|
|
321
|
+
*/
|
|
322
|
+
hasMore: boolean;
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* Describes the message console.v1.ListCostUsageResponse.
|
|
326
|
+
* Use `create(ListCostUsageResponseSchema)` to create a new message.
|
|
327
|
+
*/
|
|
328
|
+
export declare const ListCostUsageResponseSchema: GenMessage<ListCostUsageResponse>;
|
|
329
|
+
/**
|
|
330
|
+
* @generated from message console.v1.ListFindingsRequest
|
|
331
|
+
*/
|
|
332
|
+
export type ListFindingsRequest = Message<"console.v1.ListFindingsRequest"> & {
|
|
333
|
+
/**
|
|
334
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
335
|
+
*/
|
|
336
|
+
query?: ConsoleQuery | undefined;
|
|
337
|
+
};
|
|
338
|
+
/**
|
|
339
|
+
* Describes the message console.v1.ListFindingsRequest.
|
|
340
|
+
* Use `create(ListFindingsRequestSchema)` to create a new message.
|
|
341
|
+
*/
|
|
342
|
+
export declare const ListFindingsRequestSchema: GenMessage<ListFindingsRequest>;
|
|
343
|
+
/**
|
|
344
|
+
* @generated from message console.v1.ListFindingsResponse
|
|
345
|
+
*/
|
|
346
|
+
export type ListFindingsResponse = Message<"console.v1.ListFindingsResponse"> & {
|
|
347
|
+
/**
|
|
348
|
+
* @generated from field: repeated console.v1.RiskFinding findings = 1;
|
|
349
|
+
*/
|
|
350
|
+
findings: RiskFinding[];
|
|
351
|
+
/**
|
|
352
|
+
* @generated from field: int32 total = 2;
|
|
353
|
+
*/
|
|
354
|
+
total: number;
|
|
355
|
+
/**
|
|
356
|
+
* @generated from field: bool has_more = 3;
|
|
357
|
+
*/
|
|
358
|
+
hasMore: boolean;
|
|
359
|
+
};
|
|
360
|
+
/**
|
|
361
|
+
* Describes the message console.v1.ListFindingsResponse.
|
|
362
|
+
* Use `create(ListFindingsResponseSchema)` to create a new message.
|
|
363
|
+
*/
|
|
364
|
+
export declare const ListFindingsResponseSchema: GenMessage<ListFindingsResponse>;
|
|
365
|
+
/**
|
|
366
|
+
* @generated from message console.v1.GetTraceDrilldownRequest
|
|
367
|
+
*/
|
|
368
|
+
export type GetTraceDrilldownRequest = Message<"console.v1.GetTraceDrilldownRequest"> & {
|
|
369
|
+
/**
|
|
370
|
+
* @generated from field: string workspace_id = 1;
|
|
371
|
+
*/
|
|
372
|
+
workspaceId: string;
|
|
373
|
+
/**
|
|
374
|
+
* @generated from field: string trace_id = 2;
|
|
375
|
+
*/
|
|
376
|
+
traceId: string;
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* Describes the message console.v1.GetTraceDrilldownRequest.
|
|
380
|
+
* Use `create(GetTraceDrilldownRequestSchema)` to create a new message.
|
|
381
|
+
*/
|
|
382
|
+
export declare const GetTraceDrilldownRequestSchema: GenMessage<GetTraceDrilldownRequest>;
|
|
383
|
+
/**
|
|
384
|
+
* @generated from message console.v1.GetTraceDrilldownResponse
|
|
385
|
+
*/
|
|
386
|
+
export type GetTraceDrilldownResponse = Message<"console.v1.GetTraceDrilldownResponse"> & {
|
|
387
|
+
/**
|
|
388
|
+
* @generated from field: console.v1.TraceDrilldown trace = 1;
|
|
389
|
+
*/
|
|
390
|
+
trace?: TraceDrilldown | undefined;
|
|
391
|
+
};
|
|
392
|
+
/**
|
|
393
|
+
* Describes the message console.v1.GetTraceDrilldownResponse.
|
|
394
|
+
* Use `create(GetTraceDrilldownResponseSchema)` to create a new message.
|
|
395
|
+
*/
|
|
396
|
+
export declare const GetTraceDrilldownResponseSchema: GenMessage<GetTraceDrilldownResponse>;
|
|
397
|
+
/**
|
|
398
|
+
* @generated from message console.v1.ListIntegrationTilesRequest
|
|
399
|
+
*/
|
|
400
|
+
export type ListIntegrationTilesRequest = Message<"console.v1.ListIntegrationTilesRequest"> & {
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
403
|
+
*/
|
|
404
|
+
query?: ConsoleQuery | undefined;
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* Describes the message console.v1.ListIntegrationTilesRequest.
|
|
408
|
+
* Use `create(ListIntegrationTilesRequestSchema)` to create a new message.
|
|
409
|
+
*/
|
|
410
|
+
export declare const ListIntegrationTilesRequestSchema: GenMessage<ListIntegrationTilesRequest>;
|
|
411
|
+
/**
|
|
412
|
+
* @generated from message console.v1.ListIntegrationTilesResponse
|
|
413
|
+
*/
|
|
414
|
+
export type ListIntegrationTilesResponse = Message<"console.v1.ListIntegrationTilesResponse"> & {
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: repeated console.v1.IntegrationTile tiles = 1;
|
|
417
|
+
*/
|
|
418
|
+
tiles: IntegrationTile[];
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: int32 total = 2;
|
|
421
|
+
*/
|
|
422
|
+
total: number;
|
|
423
|
+
};
|
|
424
|
+
/**
|
|
425
|
+
* Describes the message console.v1.ListIntegrationTilesResponse.
|
|
426
|
+
* Use `create(ListIntegrationTilesResponseSchema)` to create a new message.
|
|
427
|
+
*/
|
|
428
|
+
export declare const ListIntegrationTilesResponseSchema: GenMessage<ListIntegrationTilesResponse>;
|
|
429
|
+
/**
|
|
430
|
+
* @generated from message console.v1.GetOnboardingPlanRequest
|
|
431
|
+
*/
|
|
432
|
+
export type GetOnboardingPlanRequest = Message<"console.v1.GetOnboardingPlanRequest"> & {
|
|
433
|
+
/**
|
|
434
|
+
* @generated from field: string workspace_id = 1;
|
|
435
|
+
*/
|
|
436
|
+
workspaceId: string;
|
|
437
|
+
/**
|
|
438
|
+
* @generated from field: string environment = 2;
|
|
439
|
+
*/
|
|
440
|
+
environment: string;
|
|
441
|
+
};
|
|
442
|
+
/**
|
|
443
|
+
* Describes the message console.v1.GetOnboardingPlanRequest.
|
|
444
|
+
* Use `create(GetOnboardingPlanRequestSchema)` to create a new message.
|
|
445
|
+
*/
|
|
446
|
+
export declare const GetOnboardingPlanRequestSchema: GenMessage<GetOnboardingPlanRequest>;
|
|
447
|
+
/**
|
|
448
|
+
* @generated from message console.v1.GetOnboardingPlanResponse
|
|
449
|
+
*/
|
|
450
|
+
export type GetOnboardingPlanResponse = Message<"console.v1.GetOnboardingPlanResponse"> & {
|
|
451
|
+
/**
|
|
452
|
+
* @generated from field: repeated console.v1.OnboardingTask tasks = 1;
|
|
453
|
+
*/
|
|
454
|
+
tasks: OnboardingTask[];
|
|
455
|
+
};
|
|
456
|
+
/**
|
|
457
|
+
* Describes the message console.v1.GetOnboardingPlanResponse.
|
|
458
|
+
* Use `create(GetOnboardingPlanResponseSchema)` to create a new message.
|
|
459
|
+
*/
|
|
460
|
+
export declare const GetOnboardingPlanResponseSchema: GenMessage<GetOnboardingPlanResponse>;
|
|
461
|
+
/**
|
|
462
|
+
* @generated from message console.v1.ConsoleMetric
|
|
463
|
+
*/
|
|
464
|
+
export type ConsoleMetric = Message<"console.v1.ConsoleMetric"> & {
|
|
465
|
+
/**
|
|
466
|
+
* @generated from field: string id = 1;
|
|
467
|
+
*/
|
|
468
|
+
id: string;
|
|
469
|
+
/**
|
|
470
|
+
* @generated from field: string label = 2;
|
|
471
|
+
*/
|
|
472
|
+
label: string;
|
|
473
|
+
/**
|
|
474
|
+
* @generated from field: string value = 3;
|
|
475
|
+
*/
|
|
476
|
+
value: string;
|
|
477
|
+
/**
|
|
478
|
+
* @generated from field: string unit = 4;
|
|
479
|
+
*/
|
|
480
|
+
unit: string;
|
|
481
|
+
/**
|
|
482
|
+
* @generated from field: string detail = 5;
|
|
483
|
+
*/
|
|
484
|
+
detail: string;
|
|
485
|
+
/**
|
|
486
|
+
* @generated from field: string trend = 6;
|
|
487
|
+
*/
|
|
488
|
+
trend: string;
|
|
489
|
+
/**
|
|
490
|
+
* @generated from field: string tone = 7;
|
|
491
|
+
*/
|
|
492
|
+
tone: string;
|
|
493
|
+
};
|
|
494
|
+
/**
|
|
495
|
+
* Describes the message console.v1.ConsoleMetric.
|
|
496
|
+
* Use `create(ConsoleMetricSchema)` to create a new message.
|
|
497
|
+
*/
|
|
498
|
+
export declare const ConsoleMetricSchema: GenMessage<ConsoleMetric>;
|
|
499
|
+
/**
|
|
500
|
+
* @generated from message console.v1.AiAsset
|
|
501
|
+
*/
|
|
502
|
+
export type AiAsset = Message<"console.v1.AiAsset"> & {
|
|
503
|
+
/**
|
|
504
|
+
* @generated from field: string id = 1;
|
|
505
|
+
*/
|
|
506
|
+
id: string;
|
|
507
|
+
/**
|
|
508
|
+
* @generated from field: string name = 2;
|
|
509
|
+
*/
|
|
510
|
+
name: string;
|
|
511
|
+
/**
|
|
512
|
+
* @generated from field: string asset_type = 3;
|
|
513
|
+
*/
|
|
514
|
+
assetType: string;
|
|
515
|
+
/**
|
|
516
|
+
* @generated from field: string owner = 4;
|
|
517
|
+
*/
|
|
518
|
+
owner: string;
|
|
519
|
+
/**
|
|
520
|
+
* @generated from field: string team_id = 5;
|
|
521
|
+
*/
|
|
522
|
+
teamId: string;
|
|
523
|
+
/**
|
|
524
|
+
* @generated from field: string environment = 6;
|
|
525
|
+
*/
|
|
526
|
+
environment: string;
|
|
527
|
+
/**
|
|
528
|
+
* @generated from field: string source = 7;
|
|
529
|
+
*/
|
|
530
|
+
source: string;
|
|
531
|
+
/**
|
|
532
|
+
* @generated from field: string status = 8;
|
|
533
|
+
*/
|
|
534
|
+
status: string;
|
|
535
|
+
/**
|
|
536
|
+
* @generated from field: common.v1.RiskLevel risk_level = 9;
|
|
537
|
+
*/
|
|
538
|
+
riskLevel: RiskLevel;
|
|
539
|
+
/**
|
|
540
|
+
* @generated from field: string policy_state = 10;
|
|
541
|
+
*/
|
|
542
|
+
policyState: string;
|
|
543
|
+
/**
|
|
544
|
+
* @generated from field: double spend_usd = 11;
|
|
545
|
+
*/
|
|
546
|
+
spendUsd: number;
|
|
547
|
+
/**
|
|
548
|
+
* @generated from field: int64 request_count = 12;
|
|
549
|
+
*/
|
|
550
|
+
requestCount: bigint;
|
|
551
|
+
/**
|
|
552
|
+
* @generated from field: int64 error_count = 13;
|
|
553
|
+
*/
|
|
554
|
+
errorCount: bigint;
|
|
555
|
+
/**
|
|
556
|
+
* @generated from field: int64 latency_p95_ms = 14;
|
|
557
|
+
*/
|
|
558
|
+
latencyP95Ms: bigint;
|
|
559
|
+
/**
|
|
560
|
+
* @generated from field: google.protobuf.Timestamp last_seen_at = 15;
|
|
561
|
+
*/
|
|
562
|
+
lastSeenAt?: Timestamp | undefined;
|
|
563
|
+
/**
|
|
564
|
+
* @generated from field: repeated string tags = 16;
|
|
565
|
+
*/
|
|
566
|
+
tags: string[];
|
|
567
|
+
/**
|
|
568
|
+
* @generated from field: repeated console.v1.RelatedResource related_resources = 17;
|
|
569
|
+
*/
|
|
570
|
+
relatedResources: RelatedResource[];
|
|
571
|
+
};
|
|
572
|
+
/**
|
|
573
|
+
* Describes the message console.v1.AiAsset.
|
|
574
|
+
* Use `create(AiAssetSchema)` to create a new message.
|
|
575
|
+
*/
|
|
576
|
+
export declare const AiAssetSchema: GenMessage<AiAsset>;
|
|
577
|
+
/**
|
|
578
|
+
* @generated from message console.v1.ActivityEvent
|
|
579
|
+
*/
|
|
580
|
+
export type ActivityEvent = Message<"console.v1.ActivityEvent"> & {
|
|
581
|
+
/**
|
|
582
|
+
* @generated from field: string id = 1;
|
|
583
|
+
*/
|
|
584
|
+
id: string;
|
|
585
|
+
/**
|
|
586
|
+
* @generated from field: string event_type = 2;
|
|
587
|
+
*/
|
|
588
|
+
eventType: string;
|
|
589
|
+
/**
|
|
590
|
+
* @generated from field: string title = 3;
|
|
591
|
+
*/
|
|
592
|
+
title: string;
|
|
593
|
+
/**
|
|
594
|
+
* @generated from field: string detail = 4;
|
|
595
|
+
*/
|
|
596
|
+
detail: string;
|
|
597
|
+
/**
|
|
598
|
+
* @generated from field: string asset_id = 5;
|
|
599
|
+
*/
|
|
600
|
+
assetId: string;
|
|
601
|
+
/**
|
|
602
|
+
* @generated from field: string agent_id = 6;
|
|
603
|
+
*/
|
|
604
|
+
agentId: string;
|
|
605
|
+
/**
|
|
606
|
+
* @generated from field: string trace_id = 7;
|
|
607
|
+
*/
|
|
608
|
+
traceId: string;
|
|
609
|
+
/**
|
|
610
|
+
* @generated from field: string approval_id = 8;
|
|
611
|
+
*/
|
|
612
|
+
approvalId: string;
|
|
613
|
+
/**
|
|
614
|
+
* @generated from field: string actor = 9;
|
|
615
|
+
*/
|
|
616
|
+
actor: string;
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: string status = 10;
|
|
619
|
+
*/
|
|
620
|
+
status: string;
|
|
621
|
+
/**
|
|
622
|
+
* @generated from field: common.v1.RiskLevel risk_level = 11;
|
|
623
|
+
*/
|
|
624
|
+
riskLevel: RiskLevel;
|
|
625
|
+
/**
|
|
626
|
+
* @generated from field: double cost_usd = 12;
|
|
627
|
+
*/
|
|
628
|
+
costUsd: number;
|
|
629
|
+
/**
|
|
630
|
+
* @generated from field: google.protobuf.Timestamp occurred_at = 13;
|
|
631
|
+
*/
|
|
632
|
+
occurredAt?: Timestamp | undefined;
|
|
633
|
+
/**
|
|
634
|
+
* @generated from field: repeated console.v1.RelatedResource related_resources = 14;
|
|
635
|
+
*/
|
|
636
|
+
relatedResources: RelatedResource[];
|
|
637
|
+
};
|
|
638
|
+
/**
|
|
639
|
+
* Describes the message console.v1.ActivityEvent.
|
|
640
|
+
* Use `create(ActivityEventSchema)` to create a new message.
|
|
641
|
+
*/
|
|
642
|
+
export declare const ActivityEventSchema: GenMessage<ActivityEvent>;
|
|
643
|
+
/**
|
|
644
|
+
* @generated from message console.v1.EvalResult
|
|
645
|
+
*/
|
|
646
|
+
export type EvalResult = Message<"console.v1.EvalResult"> & {
|
|
647
|
+
/**
|
|
648
|
+
* @generated from field: string id = 1;
|
|
649
|
+
*/
|
|
650
|
+
id: string;
|
|
651
|
+
/**
|
|
652
|
+
* @generated from field: string trace_id = 2;
|
|
653
|
+
*/
|
|
654
|
+
traceId: string;
|
|
655
|
+
/**
|
|
656
|
+
* @generated from field: string asset_id = 3;
|
|
657
|
+
*/
|
|
658
|
+
assetId: string;
|
|
659
|
+
/**
|
|
660
|
+
* @generated from field: string suite_id = 4;
|
|
661
|
+
*/
|
|
662
|
+
suiteId: string;
|
|
663
|
+
/**
|
|
664
|
+
* @generated from field: string scorer = 5;
|
|
665
|
+
*/
|
|
666
|
+
scorer: string;
|
|
667
|
+
/**
|
|
668
|
+
* @generated from field: double score = 6;
|
|
669
|
+
*/
|
|
670
|
+
score: number;
|
|
671
|
+
/**
|
|
672
|
+
* @generated from field: double threshold = 7;
|
|
673
|
+
*/
|
|
674
|
+
threshold: number;
|
|
675
|
+
/**
|
|
676
|
+
* @generated from field: string status = 8;
|
|
677
|
+
*/
|
|
678
|
+
status: string;
|
|
679
|
+
/**
|
|
680
|
+
* @generated from field: common.v1.RiskLevel risk_level = 9;
|
|
681
|
+
*/
|
|
682
|
+
riskLevel: RiskLevel;
|
|
683
|
+
/**
|
|
684
|
+
* @generated from field: string model = 10;
|
|
685
|
+
*/
|
|
686
|
+
model: string;
|
|
687
|
+
/**
|
|
688
|
+
* @generated from field: string provider = 11;
|
|
689
|
+
*/
|
|
690
|
+
provider: string;
|
|
691
|
+
/**
|
|
692
|
+
* @generated from field: double quality_per_dollar = 12;
|
|
693
|
+
*/
|
|
694
|
+
qualityPerDollar: number;
|
|
695
|
+
/**
|
|
696
|
+
* @generated from field: string detail = 13;
|
|
697
|
+
*/
|
|
698
|
+
detail: string;
|
|
699
|
+
/**
|
|
700
|
+
* @generated from field: google.protobuf.Timestamp occurred_at = 14;
|
|
701
|
+
*/
|
|
702
|
+
occurredAt?: Timestamp | undefined;
|
|
703
|
+
/**
|
|
704
|
+
* @generated from field: repeated console.v1.RelatedResource related_resources = 15;
|
|
705
|
+
*/
|
|
706
|
+
relatedResources: RelatedResource[];
|
|
707
|
+
};
|
|
708
|
+
/**
|
|
709
|
+
* Describes the message console.v1.EvalResult.
|
|
710
|
+
* Use `create(EvalResultSchema)` to create a new message.
|
|
711
|
+
*/
|
|
712
|
+
export declare const EvalResultSchema: GenMessage<EvalResult>;
|
|
713
|
+
/**
|
|
714
|
+
* @generated from message console.v1.CostUsage
|
|
715
|
+
*/
|
|
716
|
+
export type CostUsage = Message<"console.v1.CostUsage"> & {
|
|
717
|
+
/**
|
|
718
|
+
* @generated from field: string id = 1;
|
|
719
|
+
*/
|
|
720
|
+
id: string;
|
|
721
|
+
/**
|
|
722
|
+
* @generated from field: string trace_id = 2;
|
|
723
|
+
*/
|
|
724
|
+
traceId: string;
|
|
725
|
+
/**
|
|
726
|
+
* @generated from field: string asset_id = 3;
|
|
727
|
+
*/
|
|
728
|
+
assetId: string;
|
|
729
|
+
/**
|
|
730
|
+
* @generated from field: string provider = 4;
|
|
731
|
+
*/
|
|
732
|
+
provider: string;
|
|
733
|
+
/**
|
|
734
|
+
* @generated from field: string model = 5;
|
|
735
|
+
*/
|
|
736
|
+
model: string;
|
|
737
|
+
/**
|
|
738
|
+
* @generated from field: double spend_usd = 6;
|
|
739
|
+
*/
|
|
740
|
+
spendUsd: number;
|
|
741
|
+
/**
|
|
742
|
+
* @generated from field: int64 input_tokens = 7;
|
|
743
|
+
*/
|
|
744
|
+
inputTokens: bigint;
|
|
745
|
+
/**
|
|
746
|
+
* @generated from field: int64 output_tokens = 8;
|
|
747
|
+
*/
|
|
748
|
+
outputTokens: bigint;
|
|
749
|
+
/**
|
|
750
|
+
* @generated from field: int64 request_count = 9;
|
|
751
|
+
*/
|
|
752
|
+
requestCount: bigint;
|
|
753
|
+
/**
|
|
754
|
+
* @generated from field: int64 latency_ms = 10;
|
|
755
|
+
*/
|
|
756
|
+
latencyMs: bigint;
|
|
757
|
+
/**
|
|
758
|
+
* @generated from field: string status = 11;
|
|
759
|
+
*/
|
|
760
|
+
status: string;
|
|
761
|
+
/**
|
|
762
|
+
* @generated from field: common.v1.RiskLevel risk_level = 12;
|
|
763
|
+
*/
|
|
764
|
+
riskLevel: RiskLevel;
|
|
765
|
+
/**
|
|
766
|
+
* @generated from field: string detail = 13;
|
|
767
|
+
*/
|
|
768
|
+
detail: string;
|
|
769
|
+
/**
|
|
770
|
+
* @generated from field: google.protobuf.Timestamp occurred_at = 14;
|
|
771
|
+
*/
|
|
772
|
+
occurredAt?: Timestamp | undefined;
|
|
773
|
+
/**
|
|
774
|
+
* @generated from field: repeated console.v1.RelatedResource related_resources = 15;
|
|
775
|
+
*/
|
|
776
|
+
relatedResources: RelatedResource[];
|
|
777
|
+
};
|
|
778
|
+
/**
|
|
779
|
+
* Describes the message console.v1.CostUsage.
|
|
780
|
+
* Use `create(CostUsageSchema)` to create a new message.
|
|
781
|
+
*/
|
|
782
|
+
export declare const CostUsageSchema: GenMessage<CostUsage>;
|
|
783
|
+
/**
|
|
784
|
+
* @generated from message console.v1.RiskFinding
|
|
785
|
+
*/
|
|
786
|
+
export type RiskFinding = Message<"console.v1.RiskFinding"> & {
|
|
787
|
+
/**
|
|
788
|
+
* @generated from field: string id = 1;
|
|
789
|
+
*/
|
|
790
|
+
id: string;
|
|
791
|
+
/**
|
|
792
|
+
* @generated from field: string title = 2;
|
|
793
|
+
*/
|
|
794
|
+
title: string;
|
|
795
|
+
/**
|
|
796
|
+
* @generated from field: string detail = 3;
|
|
797
|
+
*/
|
|
798
|
+
detail: string;
|
|
799
|
+
/**
|
|
800
|
+
* @generated from field: string source = 4;
|
|
801
|
+
*/
|
|
802
|
+
source: string;
|
|
803
|
+
/**
|
|
804
|
+
* @generated from field: string asset_id = 5;
|
|
805
|
+
*/
|
|
806
|
+
assetId: string;
|
|
807
|
+
/**
|
|
808
|
+
* @generated from field: string status = 6;
|
|
809
|
+
*/
|
|
810
|
+
status: string;
|
|
811
|
+
/**
|
|
812
|
+
* @generated from field: common.v1.RiskLevel risk_level = 7;
|
|
813
|
+
*/
|
|
814
|
+
riskLevel: RiskLevel;
|
|
815
|
+
/**
|
|
816
|
+
* @generated from field: string policy = 8;
|
|
817
|
+
*/
|
|
818
|
+
policy: string;
|
|
819
|
+
/**
|
|
820
|
+
* @generated from field: string next_action = 9;
|
|
821
|
+
*/
|
|
822
|
+
nextAction: string;
|
|
823
|
+
/**
|
|
824
|
+
* @generated from field: google.protobuf.Timestamp detected_at = 10;
|
|
825
|
+
*/
|
|
826
|
+
detectedAt?: Timestamp | undefined;
|
|
827
|
+
};
|
|
828
|
+
/**
|
|
829
|
+
* Describes the message console.v1.RiskFinding.
|
|
830
|
+
* Use `create(RiskFindingSchema)` to create a new message.
|
|
831
|
+
*/
|
|
832
|
+
export declare const RiskFindingSchema: GenMessage<RiskFinding>;
|
|
833
|
+
/**
|
|
834
|
+
* @generated from message console.v1.IntegrationTile
|
|
835
|
+
*/
|
|
836
|
+
export type IntegrationTile = Message<"console.v1.IntegrationTile"> & {
|
|
837
|
+
/**
|
|
838
|
+
* @generated from field: string id = 1;
|
|
839
|
+
*/
|
|
840
|
+
id: string;
|
|
841
|
+
/**
|
|
842
|
+
* @generated from field: string name = 2;
|
|
843
|
+
*/
|
|
844
|
+
name: string;
|
|
845
|
+
/**
|
|
846
|
+
* @generated from field: string provider = 3;
|
|
847
|
+
*/
|
|
848
|
+
provider: string;
|
|
849
|
+
/**
|
|
850
|
+
* @generated from field: string category = 4;
|
|
851
|
+
*/
|
|
852
|
+
category: string;
|
|
853
|
+
/**
|
|
854
|
+
* @generated from field: string status = 5;
|
|
855
|
+
*/
|
|
856
|
+
status: string;
|
|
857
|
+
/**
|
|
858
|
+
* @generated from field: string detail = 6;
|
|
859
|
+
*/
|
|
860
|
+
detail: string;
|
|
861
|
+
/**
|
|
862
|
+
* @generated from field: string setup_command = 7;
|
|
863
|
+
*/
|
|
864
|
+
setupCommand: string;
|
|
865
|
+
/**
|
|
866
|
+
* @generated from field: repeated string scopes = 8;
|
|
867
|
+
*/
|
|
868
|
+
scopes: string[];
|
|
869
|
+
/**
|
|
870
|
+
* @generated from field: repeated string capabilities = 9;
|
|
871
|
+
*/
|
|
872
|
+
capabilities: string[];
|
|
873
|
+
/**
|
|
874
|
+
* @generated from field: google.protobuf.Timestamp last_seen_at = 10;
|
|
875
|
+
*/
|
|
876
|
+
lastSeenAt?: Timestamp | undefined;
|
|
877
|
+
};
|
|
878
|
+
/**
|
|
879
|
+
* Describes the message console.v1.IntegrationTile.
|
|
880
|
+
* Use `create(IntegrationTileSchema)` to create a new message.
|
|
881
|
+
*/
|
|
882
|
+
export declare const IntegrationTileSchema: GenMessage<IntegrationTile>;
|
|
883
|
+
/**
|
|
884
|
+
* @generated from message console.v1.OnboardingTask
|
|
885
|
+
*/
|
|
886
|
+
export type OnboardingTask = Message<"console.v1.OnboardingTask"> & {
|
|
887
|
+
/**
|
|
888
|
+
* @generated from field: string id = 1;
|
|
889
|
+
*/
|
|
890
|
+
id: string;
|
|
891
|
+
/**
|
|
892
|
+
* @generated from field: string title = 2;
|
|
893
|
+
*/
|
|
894
|
+
title: string;
|
|
895
|
+
/**
|
|
896
|
+
* @generated from field: string detail = 3;
|
|
897
|
+
*/
|
|
898
|
+
detail: string;
|
|
899
|
+
/**
|
|
900
|
+
* @generated from field: string status = 4;
|
|
901
|
+
*/
|
|
902
|
+
status: string;
|
|
903
|
+
/**
|
|
904
|
+
* @generated from field: string cta_label = 5;
|
|
905
|
+
*/
|
|
906
|
+
ctaLabel: string;
|
|
907
|
+
/**
|
|
908
|
+
* @generated from field: string command = 6;
|
|
909
|
+
*/
|
|
910
|
+
command: string;
|
|
911
|
+
/**
|
|
912
|
+
* @generated from field: repeated string required_integrations = 7;
|
|
913
|
+
*/
|
|
914
|
+
requiredIntegrations: string[];
|
|
915
|
+
};
|
|
916
|
+
/**
|
|
917
|
+
* Describes the message console.v1.OnboardingTask.
|
|
918
|
+
* Use `create(OnboardingTaskSchema)` to create a new message.
|
|
919
|
+
*/
|
|
920
|
+
export declare const OnboardingTaskSchema: GenMessage<OnboardingTask>;
|
|
921
|
+
/**
|
|
922
|
+
* @generated from message console.v1.TraceDrilldown
|
|
923
|
+
*/
|
|
924
|
+
export type TraceDrilldown = Message<"console.v1.TraceDrilldown"> & {
|
|
925
|
+
/**
|
|
926
|
+
* @generated from field: string trace_id = 1;
|
|
927
|
+
*/
|
|
928
|
+
traceId: string;
|
|
929
|
+
/**
|
|
930
|
+
* @generated from field: string root_name = 2;
|
|
931
|
+
*/
|
|
932
|
+
rootName: string;
|
|
933
|
+
/**
|
|
934
|
+
* @generated from field: string asset_id = 3;
|
|
935
|
+
*/
|
|
936
|
+
assetId: string;
|
|
937
|
+
/**
|
|
938
|
+
* @generated from field: string status = 4;
|
|
939
|
+
*/
|
|
940
|
+
status: string;
|
|
941
|
+
/**
|
|
942
|
+
* @generated from field: int64 total_latency_ms = 5;
|
|
943
|
+
*/
|
|
944
|
+
totalLatencyMs: bigint;
|
|
945
|
+
/**
|
|
946
|
+
* @generated from field: int64 input_tokens = 6;
|
|
947
|
+
*/
|
|
948
|
+
inputTokens: bigint;
|
|
949
|
+
/**
|
|
950
|
+
* @generated from field: int64 output_tokens = 7;
|
|
951
|
+
*/
|
|
952
|
+
outputTokens: bigint;
|
|
953
|
+
/**
|
|
954
|
+
* @generated from field: double cost_usd = 8;
|
|
955
|
+
*/
|
|
956
|
+
costUsd: number;
|
|
957
|
+
/**
|
|
958
|
+
* @generated from field: double eval_score = 9;
|
|
959
|
+
*/
|
|
960
|
+
evalScore: number;
|
|
961
|
+
/**
|
|
962
|
+
* @generated from field: common.v1.RiskLevel risk_level = 10;
|
|
963
|
+
*/
|
|
964
|
+
riskLevel: RiskLevel;
|
|
965
|
+
/**
|
|
966
|
+
* @generated from field: repeated console.v1.TraceSpan spans = 11;
|
|
967
|
+
*/
|
|
968
|
+
spans: TraceSpan[];
|
|
969
|
+
/**
|
|
970
|
+
* @generated from field: google.protobuf.Timestamp occurred_at = 12;
|
|
971
|
+
*/
|
|
972
|
+
occurredAt?: Timestamp | undefined;
|
|
973
|
+
};
|
|
974
|
+
/**
|
|
975
|
+
* Describes the message console.v1.TraceDrilldown.
|
|
976
|
+
* Use `create(TraceDrilldownSchema)` to create a new message.
|
|
977
|
+
*/
|
|
978
|
+
export declare const TraceDrilldownSchema: GenMessage<TraceDrilldown>;
|
|
979
|
+
/**
|
|
980
|
+
* @generated from message console.v1.TraceSpan
|
|
981
|
+
*/
|
|
982
|
+
export type TraceSpan = Message<"console.v1.TraceSpan"> & {
|
|
983
|
+
/**
|
|
984
|
+
* @generated from field: string span_id = 1;
|
|
985
|
+
*/
|
|
986
|
+
spanId: string;
|
|
987
|
+
/**
|
|
988
|
+
* @generated from field: string parent_span_id = 2;
|
|
989
|
+
*/
|
|
990
|
+
parentSpanId: string;
|
|
991
|
+
/**
|
|
992
|
+
* @generated from field: string name = 3;
|
|
993
|
+
*/
|
|
994
|
+
name: string;
|
|
995
|
+
/**
|
|
996
|
+
* @generated from field: string kind = 4;
|
|
997
|
+
*/
|
|
998
|
+
kind: string;
|
|
999
|
+
/**
|
|
1000
|
+
* @generated from field: string model = 5;
|
|
1001
|
+
*/
|
|
1002
|
+
model: string;
|
|
1003
|
+
/**
|
|
1004
|
+
* @generated from field: string provider = 6;
|
|
1005
|
+
*/
|
|
1006
|
+
provider: string;
|
|
1007
|
+
/**
|
|
1008
|
+
* @generated from field: string status = 7;
|
|
1009
|
+
*/
|
|
1010
|
+
status: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* @generated from field: int64 latency_ms = 8;
|
|
1013
|
+
*/
|
|
1014
|
+
latencyMs: bigint;
|
|
1015
|
+
/**
|
|
1016
|
+
* @generated from field: double cost_usd = 9;
|
|
1017
|
+
*/
|
|
1018
|
+
costUsd: number;
|
|
1019
|
+
};
|
|
1020
|
+
/**
|
|
1021
|
+
* Describes the message console.v1.TraceSpan.
|
|
1022
|
+
* Use `create(TraceSpanSchema)` to create a new message.
|
|
1023
|
+
*/
|
|
1024
|
+
export declare const TraceSpanSchema: GenMessage<TraceSpan>;
|
|
1025
|
+
/**
|
|
1026
|
+
* @generated from message console.v1.RelatedResource
|
|
1027
|
+
*/
|
|
1028
|
+
export type RelatedResource = Message<"console.v1.RelatedResource"> & {
|
|
1029
|
+
/**
|
|
1030
|
+
* @generated from field: string id = 1;
|
|
1031
|
+
*/
|
|
1032
|
+
id: string;
|
|
1033
|
+
/**
|
|
1034
|
+
* @generated from field: string resource_type = 2;
|
|
1035
|
+
*/
|
|
1036
|
+
resourceType: string;
|
|
1037
|
+
/**
|
|
1038
|
+
* @generated from field: string label = 3;
|
|
1039
|
+
*/
|
|
1040
|
+
label: string;
|
|
1041
|
+
/**
|
|
1042
|
+
* @generated from field: string url = 4;
|
|
1043
|
+
*/
|
|
1044
|
+
url: string;
|
|
1045
|
+
};
|
|
1046
|
+
/**
|
|
1047
|
+
* Describes the message console.v1.RelatedResource.
|
|
1048
|
+
* Use `create(RelatedResourceSchema)` to create a new message.
|
|
1049
|
+
*/
|
|
1050
|
+
export declare const RelatedResourceSchema: GenMessage<RelatedResource>;
|
|
1051
|
+
/**
|
|
1052
|
+
* ConsoleService provides the product-facing AI operations read model for the
|
|
1053
|
+
* EvalOps web console. It composes agent inventory, traces, approvals,
|
|
1054
|
+
* governance, usage, integrations, and posture without exposing protocol
|
|
1055
|
+
* details such as MCP as the primary product contract.
|
|
1056
|
+
*
|
|
1057
|
+
* @generated from service console.v1.ConsoleService
|
|
1058
|
+
*/
|
|
1059
|
+
export declare const ConsoleService: GenService<{
|
|
1060
|
+
/**
|
|
1061
|
+
* GetOverview returns the first-screen AI operations summary.
|
|
1062
|
+
*
|
|
1063
|
+
* @generated from rpc console.v1.ConsoleService.GetOverview
|
|
1064
|
+
*/
|
|
1065
|
+
getOverview: {
|
|
1066
|
+
methodKind: "unary";
|
|
1067
|
+
input: typeof GetOverviewRequestSchema;
|
|
1068
|
+
output: typeof GetOverviewResponseSchema;
|
|
1069
|
+
};
|
|
1070
|
+
/**
|
|
1071
|
+
* ListAssets returns AI agents, provider keys, model surfaces, and
|
|
1072
|
+
* integrations visible to the current workspace.
|
|
1073
|
+
*
|
|
1074
|
+
* @generated from rpc console.v1.ConsoleService.ListAssets
|
|
1075
|
+
*/
|
|
1076
|
+
listAssets: {
|
|
1077
|
+
methodKind: "unary";
|
|
1078
|
+
input: typeof ListAssetsRequestSchema;
|
|
1079
|
+
output: typeof ListAssetsResponseSchema;
|
|
1080
|
+
};
|
|
1081
|
+
/**
|
|
1082
|
+
* GetAsset returns a single AI estate asset and related resources.
|
|
1083
|
+
*
|
|
1084
|
+
* @generated from rpc console.v1.ConsoleService.GetAsset
|
|
1085
|
+
*/
|
|
1086
|
+
getAsset: {
|
|
1087
|
+
methodKind: "unary";
|
|
1088
|
+
input: typeof GetAssetRequestSchema;
|
|
1089
|
+
output: typeof GetAssetResponseSchema;
|
|
1090
|
+
};
|
|
1091
|
+
/**
|
|
1092
|
+
* ListActivity returns normalized run, trace, approval, eval, risk, and cost
|
|
1093
|
+
* events for the console timeline.
|
|
1094
|
+
*
|
|
1095
|
+
* @generated from rpc console.v1.ConsoleService.ListActivity
|
|
1096
|
+
*/
|
|
1097
|
+
listActivity: {
|
|
1098
|
+
methodKind: "unary";
|
|
1099
|
+
input: typeof ListActivityRequestSchema;
|
|
1100
|
+
output: typeof ListActivityResponseSchema;
|
|
1101
|
+
};
|
|
1102
|
+
/**
|
|
1103
|
+
* ListEvalResults returns online quality and eval outcomes for traced runs.
|
|
1104
|
+
*
|
|
1105
|
+
* @generated from rpc console.v1.ConsoleService.ListEvalResults
|
|
1106
|
+
*/
|
|
1107
|
+
listEvalResults: {
|
|
1108
|
+
methodKind: "unary";
|
|
1109
|
+
input: typeof ListEvalResultsRequestSchema;
|
|
1110
|
+
output: typeof ListEvalResultsResponseSchema;
|
|
1111
|
+
};
|
|
1112
|
+
/**
|
|
1113
|
+
* ListCostUsage returns spend and token usage for traced AI work.
|
|
1114
|
+
*
|
|
1115
|
+
* @generated from rpc console.v1.ConsoleService.ListCostUsage
|
|
1116
|
+
*/
|
|
1117
|
+
listCostUsage: {
|
|
1118
|
+
methodKind: "unary";
|
|
1119
|
+
input: typeof ListCostUsageRequestSchema;
|
|
1120
|
+
output: typeof ListCostUsageResponseSchema;
|
|
1121
|
+
};
|
|
1122
|
+
/**
|
|
1123
|
+
* ListFindings returns open risk and posture findings.
|
|
1124
|
+
*
|
|
1125
|
+
* @generated from rpc console.v1.ConsoleService.ListFindings
|
|
1126
|
+
*/
|
|
1127
|
+
listFindings: {
|
|
1128
|
+
methodKind: "unary";
|
|
1129
|
+
input: typeof ListFindingsRequestSchema;
|
|
1130
|
+
output: typeof ListFindingsResponseSchema;
|
|
1131
|
+
};
|
|
1132
|
+
/**
|
|
1133
|
+
* GetTraceDrilldown returns a trace summary and span tree for debugging.
|
|
1134
|
+
*
|
|
1135
|
+
* @generated from rpc console.v1.ConsoleService.GetTraceDrilldown
|
|
1136
|
+
*/
|
|
1137
|
+
getTraceDrilldown: {
|
|
1138
|
+
methodKind: "unary";
|
|
1139
|
+
input: typeof GetTraceDrilldownRequestSchema;
|
|
1140
|
+
output: typeof GetTraceDrilldownResponseSchema;
|
|
1141
|
+
};
|
|
1142
|
+
/**
|
|
1143
|
+
* ListIntegrationTiles returns setup and health tiles for onboarding.
|
|
1144
|
+
*
|
|
1145
|
+
* @generated from rpc console.v1.ConsoleService.ListIntegrationTiles
|
|
1146
|
+
*/
|
|
1147
|
+
listIntegrationTiles: {
|
|
1148
|
+
methodKind: "unary";
|
|
1149
|
+
input: typeof ListIntegrationTilesRequestSchema;
|
|
1150
|
+
output: typeof ListIntegrationTilesResponseSchema;
|
|
1151
|
+
};
|
|
1152
|
+
/**
|
|
1153
|
+
* GetOnboardingPlan returns the recommended setup path for this workspace.
|
|
1154
|
+
*
|
|
1155
|
+
* @generated from rpc console.v1.ConsoleService.GetOnboardingPlan
|
|
1156
|
+
*/
|
|
1157
|
+
getOnboardingPlan: {
|
|
1158
|
+
methodKind: "unary";
|
|
1159
|
+
input: typeof GetOnboardingPlanRequestSchema;
|
|
1160
|
+
output: typeof GetOnboardingPlanResponseSchema;
|
|
1161
|
+
};
|
|
1162
|
+
}>;
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts,import_extension=.js"
|
|
2
|
+
// @generated from file console/v1/console.proto (package console.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_buf_validate_validate } from "../../buf/validate/validate_pb.js";
|
|
6
|
+
import { file_common_v1_risk } from "../../common/v1/risk_pb.js";
|
|
7
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file console/v1/console.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_console_v1_console = /*@__PURE__*/ fileDesc("Chhjb25zb2xlL3YxL2NvbnNvbGUucHJvdG8SCmNvbnNvbGUudjEiaQoJVGltZVJhbmdlEi4KCnN0YXJ0X3RpbWUYASABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEiwKCGVuZF90aW1lGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCKfAgoMQ29uc29sZVF1ZXJ5Eh0KDHdvcmtzcGFjZV9pZBgBIAEoCUIHukgEcgIQARIpCgp0aW1lX3JhbmdlGAIgASgLMhUuY29uc29sZS52MS5UaW1lUmFuZ2USEwoLZW52aXJvbm1lbnQYAyABKAkSDwoHdGVhbV9pZBgEIAEoCRINCgVvd25lchgFIAEoCRIoCgpyaXNrX2xldmVsGAYgASgOMhQuY29tbW9uLnYxLlJpc2tMZXZlbBISCgphc3NldF90eXBlGAcgASgJEg4KBnN0YXR1cxgIIAEoCRIZCgVsaW1pdBgJIAEoBUIKukgHGgUY9AMoABIXCgZvZmZzZXQYCiABKAVCB7pIBBoCKAASDgoGc2VhcmNoGAsgASgJIkUKEkdldE92ZXJ2aWV3UmVxdWVzdBIvCgVxdWVyeRgBIAEoCzIYLmNvbnNvbGUudjEuQ29uc29sZVF1ZXJ5Qga6SAPIAQEi/wIKE0dldE92ZXJ2aWV3UmVzcG9uc2USMAoMZ2VuZXJhdGVkX2F0GAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIqCgdtZXRyaWNzGAIgAygLMhkuY29uc29sZS52MS5Db25zb2xlTWV0cmljEicKCnRvcF9hc3NldHMYAyADKAsyEy5jb25zb2xlLnYxLkFpQXNzZXQSLQoMdG9wX2ZpbmRpbmdzGAQgAygLMhcuY29uc29sZS52MS5SaXNrRmluZGluZxIyCg9yZWNlbnRfYWN0aXZpdHkYBSADKAsyGS5jb25zb2xlLnYxLkFjdGl2aXR5RXZlbnQSNgoRaW50ZWdyYXRpb25fdGlsZXMYBiADKAsyGy5jb25zb2xlLnYxLkludGVncmF0aW9uVGlsZRI0ChBvbmJvYXJkaW5nX3Rhc2tzGAcgAygLMhouY29uc29sZS52MS5PbmJvYXJkaW5nVGFzaxIQCgh3YXJuaW5ncxgIIAMoCSJEChFMaXN0QXNzZXRzUmVxdWVzdBIvCgVxdWVyeRgBIAEoCzIYLmNvbnNvbGUudjEuQ29uc29sZVF1ZXJ5Qga6SAPIAQEiYwoSTGlzdEFzc2V0c1Jlc3BvbnNlEiMKBmFzc2V0cxgBIAMoCzITLmNvbnNvbGUudjEuQWlBc3NldBIWCgV0b3RhbBgCIAEoBUIHukgEGgIoABIQCghoYXNfbW9yZRgDIAEoCCJLCg9HZXRBc3NldFJlcXVlc3QSHQoMd29ya3NwYWNlX2lkGAEgASgJQge6SARyAhABEhkKCGFzc2V0X2lkGAIgASgJQge6SARyAhABIs0BChBHZXRBc3NldFJlc3BvbnNlEiIKBWFzc2V0GAEgASgLMhMuY29uc29sZS52MS5BaUFzc2V0EjYKEXJlbGF0ZWRfcmVzb3VyY2VzGAIgAygLMhsuY29uc29sZS52MS5SZWxhdGVkUmVzb3VyY2USMgoPcmVjZW50X2FjdGl2aXR5GAMgAygLMhkuY29uc29sZS52MS5BY3Rpdml0eUV2ZW50EikKCGZpbmRpbmdzGAQgAygLMhcuY29uc29sZS52MS5SaXNrRmluZGluZyJGChNMaXN0QWN0aXZpdHlSZXF1ZXN0Ei8KBXF1ZXJ5GAEgASgLMhguY29uc29sZS52MS5Db25zb2xlUXVlcnlCBrpIA8gBASJrChRMaXN0QWN0aXZpdHlSZXNwb25zZRIpCgZldmVudHMYASADKAsyGS5jb25zb2xlLnYxLkFjdGl2aXR5RXZlbnQSFgoFdG90YWwYAiABKAVCB7pIBBoCKAASEAoIaGFzX21vcmUYAyABKAgiSQoWTGlzdEV2YWxSZXN1bHRzUmVxdWVzdBIvCgVxdWVyeRgBIAEoCzIYLmNvbnNvbGUudjEuQ29uc29sZVF1ZXJ5Qga6SAPIAQEibAoXTGlzdEV2YWxSZXN1bHRzUmVzcG9uc2USJwoHcmVzdWx0cxgBIAMoCzIWLmNvbnNvbGUudjEuRXZhbFJlc3VsdBIWCgV0b3RhbBgCIAEoBUIHukgEGgIoABIQCghoYXNfbW9yZRgDIAEoCCJHChRMaXN0Q29zdFVzYWdlUmVxdWVzdBIvCgVxdWVyeRgBIAEoCzIYLmNvbnNvbGUudjEuQ29uc29sZVF1ZXJ5Qga6SAPIAQEiZgoVTGlzdENvc3RVc2FnZVJlc3BvbnNlEiMKBHJvd3MYASADKAsyFS5jb25zb2xlLnYxLkNvc3RVc2FnZRIWCgV0b3RhbBgCIAEoBUIHukgEGgIoABIQCghoYXNfbW9yZRgDIAEoCCJGChNMaXN0RmluZGluZ3NSZXF1ZXN0Ei8KBXF1ZXJ5GAEgASgLMhguY29uc29sZS52MS5Db25zb2xlUXVlcnlCBrpIA8gBASJrChRMaXN0RmluZGluZ3NSZXNwb25zZRIpCghmaW5kaW5ncxgBIAMoCzIXLmNvbnNvbGUudjEuUmlza0ZpbmRpbmcSFgoFdG90YWwYAiABKAVCB7pIBBoCKAASEAoIaGFzX21vcmUYAyABKAgiVAoYR2V0VHJhY2VEcmlsbGRvd25SZXF1ZXN0Eh0KDHdvcmtzcGFjZV9pZBgBIAEoCUIHukgEcgIQARIZCgh0cmFjZV9pZBgCIAEoCUIHukgEcgIQASJGChlHZXRUcmFjZURyaWxsZG93blJlc3BvbnNlEikKBXRyYWNlGAEgASgLMhouY29uc29sZS52MS5UcmFjZURyaWxsZG93biJOChtMaXN0SW50ZWdyYXRpb25UaWxlc1JlcXVlc3QSLwoFcXVlcnkYASABKAsyGC5jb25zb2xlLnYxLkNvbnNvbGVRdWVyeUIGukgDyAEBImIKHExpc3RJbnRlZ3JhdGlvblRpbGVzUmVzcG9uc2USKgoFdGlsZXMYASADKAsyGy5jb25zb2xlLnYxLkludGVncmF0aW9uVGlsZRIWCgV0b3RhbBgCIAEoBUIHukgEGgIoACJOChhHZXRPbmJvYXJkaW5nUGxhblJlcXVlc3QSHQoMd29ya3NwYWNlX2lkGAEgASgJQge6SARyAhABEhMKC2Vudmlyb25tZW50GAIgASgJIkYKGUdldE9uYm9hcmRpbmdQbGFuUmVzcG9uc2USKQoFdGFza3MYASADKAsyGi5jb25zb2xlLnYxLk9uYm9hcmRpbmdUYXNrInQKDUNvbnNvbGVNZXRyaWMSCgoCaWQYASABKAkSDQoFbGFiZWwYAiABKAkSDQoFdmFsdWUYAyABKAkSDAoEdW5pdBgEIAEoCRIOCgZkZXRhaWwYBSABKAkSDQoFdHJlbmQYBiABKAkSDAoEdG9uZRgHIAEoCSLGAwoHQWlBc3NldBIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJEhIKCmFzc2V0X3R5cGUYAyABKAkSDQoFb3duZXIYBCABKAkSDwoHdGVhbV9pZBgFIAEoCRITCgtlbnZpcm9ubWVudBgGIAEoCRIOCgZzb3VyY2UYByABKAkSDgoGc3RhdHVzGAggASgJEigKCnJpc2tfbGV2ZWwYCSABKA4yFC5jb21tb24udjEuUmlza0xldmVsEhQKDHBvbGljeV9zdGF0ZRgKIAEoCRIhCglzcGVuZF91c2QYCyABKAFCDrpICxIJKQAAAAAAAAAAEh4KDXJlcXVlc3RfY291bnQYDCABKANCB7pIBCICKAASHAoLZXJyb3JfY291bnQYDSABKANCB7pIBCICKAASHwoObGF0ZW5jeV9wOTVfbXMYDiABKANCB7pIBCICKAASMAoMbGFzdF9zZWVuX2F0GA8gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIMCgR0YWdzGBAgAygJEjYKEXJlbGF0ZWRfcmVzb3VyY2VzGBEgAygLMhsuY29uc29sZS52MS5SZWxhdGVkUmVzb3VyY2Ui3QIKDUFjdGl2aXR5RXZlbnQSCgoCaWQYASABKAkSEgoKZXZlbnRfdHlwZRgCIAEoCRINCgV0aXRsZRgDIAEoCRIOCgZkZXRhaWwYBCABKAkSEAoIYXNzZXRfaWQYBSABKAkSEAoIYWdlbnRfaWQYBiABKAkSEAoIdHJhY2VfaWQYByABKAkSEwoLYXBwcm92YWxfaWQYCCABKAkSDQoFYWN0b3IYCSABKAkSDgoGc3RhdHVzGAogASgJEigKCnJpc2tfbGV2ZWwYCyABKA4yFC5jb21tb24udjEuUmlza0xldmVsEhAKCGNvc3RfdXNkGAwgASgBEi8KC29jY3VycmVkX2F0GA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI2ChFyZWxhdGVkX3Jlc291cmNlcxgOIAMoCzIbLmNvbnNvbGUudjEuUmVsYXRlZFJlc291cmNlIrIDCgpFdmFsUmVzdWx0EgoKAmlkGAEgASgJEhAKCHRyYWNlX2lkGAIgASgJEhAKCGFzc2V0X2lkGAMgASgJEhAKCHN1aXRlX2lkGAQgASgJEg4KBnNjb3JlchgFIAEoCRImCgVzY29yZRgGIAEoAUIXukgUEhIZAAAAAAAA8D8pAAAAAAAAAAASKgoJdGhyZXNob2xkGAcgASgBQhe6SBQSEhkAAAAAAADwPykAAAAAAAAAABIOCgZzdGF0dXMYCCABKAkSKAoKcmlza19sZXZlbBgJIAEoDjIULmNvbW1vbi52MS5SaXNrTGV2ZWwSDQoFbW9kZWwYCiABKAkSEAoIcHJvdmlkZXIYCyABKAkSKgoScXVhbGl0eV9wZXJfZG9sbGFyGAwgASgBQg66SAsSCSkAAAAAAAAAABIOCgZkZXRhaWwYDSABKAkSLwoLb2NjdXJyZWRfYXQYDiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjYKEXJlbGF0ZWRfcmVzb3VyY2VzGA8gAygLMhsuY29uc29sZS52MS5SZWxhdGVkUmVzb3VyY2UirgMKCUNvc3RVc2FnZRIKCgJpZBgBIAEoCRIQCgh0cmFjZV9pZBgCIAEoCRIQCghhc3NldF9pZBgDIAEoCRIQCghwcm92aWRlchgEIAEoCRINCgVtb2RlbBgFIAEoCRIhCglzcGVuZF91c2QYBiABKAFCDrpICxIJKQAAAAAAAAAAEh0KDGlucHV0X3Rva2VucxgHIAEoA0IHukgEIgIoABIeCg1vdXRwdXRfdG9rZW5zGAggASgDQge6SAQiAigAEh4KDXJlcXVlc3RfY291bnQYCSABKANCB7pIBCICKAASGwoKbGF0ZW5jeV9tcxgKIAEoA0IHukgEIgIoABIOCgZzdGF0dXMYCyABKAkSKAoKcmlza19sZXZlbBgMIAEoDjIULmNvbW1vbi52MS5SaXNrTGV2ZWwSDgoGZGV0YWlsGA0gASgJEi8KC29jY3VycmVkX2F0GA4gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI2ChFyZWxhdGVkX3Jlc291cmNlcxgPIAMoCzIbLmNvbnNvbGUudjEuUmVsYXRlZFJlc291cmNlIuoBCgtSaXNrRmluZGluZxIKCgJpZBgBIAEoCRINCgV0aXRsZRgCIAEoCRIOCgZkZXRhaWwYAyABKAkSDgoGc291cmNlGAQgASgJEhAKCGFzc2V0X2lkGAUgASgJEg4KBnN0YXR1cxgGIAEoCRIoCgpyaXNrX2xldmVsGAcgASgOMhQuY29tbW9uLnYxLlJpc2tMZXZlbBIOCgZwb2xpY3kYCCABKAkSEwoLbmV4dF9hY3Rpb24YCSABKAkSLwoLZGV0ZWN0ZWRfYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIt4BCg9JbnRlZ3JhdGlvblRpbGUSCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCRIQCghwcm92aWRlchgDIAEoCRIQCghjYXRlZ29yeRgEIAEoCRIOCgZzdGF0dXMYBSABKAkSDgoGZGV0YWlsGAYgASgJEhUKDXNldHVwX2NvbW1hbmQYByABKAkSDgoGc2NvcGVzGAggAygJEhQKDGNhcGFiaWxpdGllcxgJIAMoCRIwCgxsYXN0X3NlZW5fYXQYCiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIo4BCg5PbmJvYXJkaW5nVGFzaxIKCgJpZBgBIAEoCRINCgV0aXRsZRgCIAEoCRIOCgZkZXRhaWwYAyABKAkSDgoGc3RhdHVzGAQgASgJEhEKCWN0YV9sYWJlbBgFIAEoCRIPCgdjb21tYW5kGAYgASgJEh0KFXJlcXVpcmVkX2ludGVncmF0aW9ucxgHIAMoCSKAAwoOVHJhY2VEcmlsbGRvd24SEAoIdHJhY2VfaWQYASABKAkSEQoJcm9vdF9uYW1lGAIgASgJEhAKCGFzc2V0X2lkGAMgASgJEg4KBnN0YXR1cxgEIAEoCRIhChB0b3RhbF9sYXRlbmN5X21zGAUgASgDQge6SAQiAigAEh0KDGlucHV0X3Rva2VucxgGIAEoA0IHukgEIgIoABIeCg1vdXRwdXRfdG9rZW5zGAcgASgDQge6SAQiAigAEiAKCGNvc3RfdXNkGAggASgBQg66SAsSCSkAAAAAAAAAABIiCgpldmFsX3Njb3JlGAkgASgBQg66SAsSCSkAAAAAAAAAABIoCgpyaXNrX2xldmVsGAogASgOMhQuY29tbW9uLnYxLlJpc2tMZXZlbBIkCgVzcGFucxgLIAMoCzIVLmNvbnNvbGUudjEuVHJhY2VTcGFuEi8KC29jY3VycmVkX2F0GAwgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCLAAQoJVHJhY2VTcGFuEg8KB3NwYW5faWQYASABKAkSFgoOcGFyZW50X3NwYW5faWQYAiABKAkSDAoEbmFtZRgDIAEoCRIMCgRraW5kGAQgASgJEg0KBW1vZGVsGAUgASgJEhAKCHByb3ZpZGVyGAYgASgJEg4KBnN0YXR1cxgHIAEoCRIbCgpsYXRlbmN5X21zGAggASgDQge6SAQiAigAEiAKCGNvc3RfdXNkGAkgASgBQg66SAsSCSkAAAAAAAAAACJQCg9SZWxhdGVkUmVzb3VyY2USCgoCaWQYASABKAkSFQoNcmVzb3VyY2VfdHlwZRgCIAEoCRINCgVsYWJlbBgDIAEoCRILCgN1cmwYBCABKAky+wYKDkNvbnNvbGVTZXJ2aWNlEk4KC0dldE92ZXJ2aWV3Eh4uY29uc29sZS52MS5HZXRPdmVydmlld1JlcXVlc3QaHy5jb25zb2xlLnYxLkdldE92ZXJ2aWV3UmVzcG9uc2USSwoKTGlzdEFzc2V0cxIdLmNvbnNvbGUudjEuTGlzdEFzc2V0c1JlcXVlc3QaHi5jb25zb2xlLnYxLkxpc3RBc3NldHNSZXNwb25zZRJFCghHZXRBc3NldBIbLmNvbnNvbGUudjEuR2V0QXNzZXRSZXF1ZXN0GhwuY29uc29sZS52MS5HZXRBc3NldFJlc3BvbnNlElEKDExpc3RBY3Rpdml0eRIfLmNvbnNvbGUudjEuTGlzdEFjdGl2aXR5UmVxdWVzdBogLmNvbnNvbGUudjEuTGlzdEFjdGl2aXR5UmVzcG9uc2USWgoPTGlzdEV2YWxSZXN1bHRzEiIuY29uc29sZS52MS5MaXN0RXZhbFJlc3VsdHNSZXF1ZXN0GiMuY29uc29sZS52MS5MaXN0RXZhbFJlc3VsdHNSZXNwb25zZRJUCg1MaXN0Q29zdFVzYWdlEiAuY29uc29sZS52MS5MaXN0Q29zdFVzYWdlUmVxdWVzdBohLmNvbnNvbGUudjEuTGlzdENvc3RVc2FnZVJlc3BvbnNlElEKDExpc3RGaW5kaW5ncxIfLmNvbnNvbGUudjEuTGlzdEZpbmRpbmdzUmVxdWVzdBogLmNvbnNvbGUudjEuTGlzdEZpbmRpbmdzUmVzcG9uc2USYAoRR2V0VHJhY2VEcmlsbGRvd24SJC5jb25zb2xlLnYxLkdldFRyYWNlRHJpbGxkb3duUmVxdWVzdBolLmNvbnNvbGUudjEuR2V0VHJhY2VEcmlsbGRvd25SZXNwb25zZRJpChRMaXN0SW50ZWdyYXRpb25UaWxlcxInLmNvbnNvbGUudjEuTGlzdEludGVncmF0aW9uVGlsZXNSZXF1ZXN0GiguY29uc29sZS52MS5MaXN0SW50ZWdyYXRpb25UaWxlc1Jlc3BvbnNlEmAKEUdldE9uYm9hcmRpbmdQbGFuEiQuY29uc29sZS52MS5HZXRPbmJvYXJkaW5nUGxhblJlcXVlc3QaJS5jb25zb2xlLnYxLkdldE9uYm9hcmRpbmdQbGFuUmVzcG9uc2VCOVo3Z2l0aHViLmNvbS9ldmFsb3BzL3BsYXRmb3JtL2dlbi9nby9jb25zb2xlL3YxO2NvbnNvbGV2MWIGcHJvdG8z", [file_buf_validate_validate, file_common_v1_risk, file_google_protobuf_timestamp]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message console.v1.TimeRange.
|
|
14
|
+
* Use `create(TimeRangeSchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const TimeRangeSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 0);
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message console.v1.ConsoleQuery.
|
|
19
|
+
* Use `create(ConsoleQuerySchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const ConsoleQuerySchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 1);
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message console.v1.GetOverviewRequest.
|
|
24
|
+
* Use `create(GetOverviewRequestSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const GetOverviewRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 2);
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message console.v1.GetOverviewResponse.
|
|
29
|
+
* Use `create(GetOverviewResponseSchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
export const GetOverviewResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 3);
|
|
32
|
+
/**
|
|
33
|
+
* Describes the message console.v1.ListAssetsRequest.
|
|
34
|
+
* Use `create(ListAssetsRequestSchema)` to create a new message.
|
|
35
|
+
*/
|
|
36
|
+
export const ListAssetsRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 4);
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message console.v1.ListAssetsResponse.
|
|
39
|
+
* Use `create(ListAssetsResponseSchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export const ListAssetsResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 5);
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message console.v1.GetAssetRequest.
|
|
44
|
+
* Use `create(GetAssetRequestSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export const GetAssetRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 6);
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message console.v1.GetAssetResponse.
|
|
49
|
+
* Use `create(GetAssetResponseSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const GetAssetResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 7);
|
|
52
|
+
/**
|
|
53
|
+
* Describes the message console.v1.ListActivityRequest.
|
|
54
|
+
* Use `create(ListActivityRequestSchema)` to create a new message.
|
|
55
|
+
*/
|
|
56
|
+
export const ListActivityRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 8);
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message console.v1.ListActivityResponse.
|
|
59
|
+
* Use `create(ListActivityResponseSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export const ListActivityResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 9);
|
|
62
|
+
/**
|
|
63
|
+
* Describes the message console.v1.ListEvalResultsRequest.
|
|
64
|
+
* Use `create(ListEvalResultsRequestSchema)` to create a new message.
|
|
65
|
+
*/
|
|
66
|
+
export const ListEvalResultsRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 10);
|
|
67
|
+
/**
|
|
68
|
+
* Describes the message console.v1.ListEvalResultsResponse.
|
|
69
|
+
* Use `create(ListEvalResultsResponseSchema)` to create a new message.
|
|
70
|
+
*/
|
|
71
|
+
export const ListEvalResultsResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 11);
|
|
72
|
+
/**
|
|
73
|
+
* Describes the message console.v1.ListCostUsageRequest.
|
|
74
|
+
* Use `create(ListCostUsageRequestSchema)` to create a new message.
|
|
75
|
+
*/
|
|
76
|
+
export const ListCostUsageRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 12);
|
|
77
|
+
/**
|
|
78
|
+
* Describes the message console.v1.ListCostUsageResponse.
|
|
79
|
+
* Use `create(ListCostUsageResponseSchema)` to create a new message.
|
|
80
|
+
*/
|
|
81
|
+
export const ListCostUsageResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 13);
|
|
82
|
+
/**
|
|
83
|
+
* Describes the message console.v1.ListFindingsRequest.
|
|
84
|
+
* Use `create(ListFindingsRequestSchema)` to create a new message.
|
|
85
|
+
*/
|
|
86
|
+
export const ListFindingsRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 14);
|
|
87
|
+
/**
|
|
88
|
+
* Describes the message console.v1.ListFindingsResponse.
|
|
89
|
+
* Use `create(ListFindingsResponseSchema)` to create a new message.
|
|
90
|
+
*/
|
|
91
|
+
export const ListFindingsResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 15);
|
|
92
|
+
/**
|
|
93
|
+
* Describes the message console.v1.GetTraceDrilldownRequest.
|
|
94
|
+
* Use `create(GetTraceDrilldownRequestSchema)` to create a new message.
|
|
95
|
+
*/
|
|
96
|
+
export const GetTraceDrilldownRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 16);
|
|
97
|
+
/**
|
|
98
|
+
* Describes the message console.v1.GetTraceDrilldownResponse.
|
|
99
|
+
* Use `create(GetTraceDrilldownResponseSchema)` to create a new message.
|
|
100
|
+
*/
|
|
101
|
+
export const GetTraceDrilldownResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 17);
|
|
102
|
+
/**
|
|
103
|
+
* Describes the message console.v1.ListIntegrationTilesRequest.
|
|
104
|
+
* Use `create(ListIntegrationTilesRequestSchema)` to create a new message.
|
|
105
|
+
*/
|
|
106
|
+
export const ListIntegrationTilesRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 18);
|
|
107
|
+
/**
|
|
108
|
+
* Describes the message console.v1.ListIntegrationTilesResponse.
|
|
109
|
+
* Use `create(ListIntegrationTilesResponseSchema)` to create a new message.
|
|
110
|
+
*/
|
|
111
|
+
export const ListIntegrationTilesResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 19);
|
|
112
|
+
/**
|
|
113
|
+
* Describes the message console.v1.GetOnboardingPlanRequest.
|
|
114
|
+
* Use `create(GetOnboardingPlanRequestSchema)` to create a new message.
|
|
115
|
+
*/
|
|
116
|
+
export const GetOnboardingPlanRequestSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 20);
|
|
117
|
+
/**
|
|
118
|
+
* Describes the message console.v1.GetOnboardingPlanResponse.
|
|
119
|
+
* Use `create(GetOnboardingPlanResponseSchema)` to create a new message.
|
|
120
|
+
*/
|
|
121
|
+
export const GetOnboardingPlanResponseSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 21);
|
|
122
|
+
/**
|
|
123
|
+
* Describes the message console.v1.ConsoleMetric.
|
|
124
|
+
* Use `create(ConsoleMetricSchema)` to create a new message.
|
|
125
|
+
*/
|
|
126
|
+
export const ConsoleMetricSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 22);
|
|
127
|
+
/**
|
|
128
|
+
* Describes the message console.v1.AiAsset.
|
|
129
|
+
* Use `create(AiAssetSchema)` to create a new message.
|
|
130
|
+
*/
|
|
131
|
+
export const AiAssetSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 23);
|
|
132
|
+
/**
|
|
133
|
+
* Describes the message console.v1.ActivityEvent.
|
|
134
|
+
* Use `create(ActivityEventSchema)` to create a new message.
|
|
135
|
+
*/
|
|
136
|
+
export const ActivityEventSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 24);
|
|
137
|
+
/**
|
|
138
|
+
* Describes the message console.v1.EvalResult.
|
|
139
|
+
* Use `create(EvalResultSchema)` to create a new message.
|
|
140
|
+
*/
|
|
141
|
+
export const EvalResultSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 25);
|
|
142
|
+
/**
|
|
143
|
+
* Describes the message console.v1.CostUsage.
|
|
144
|
+
* Use `create(CostUsageSchema)` to create a new message.
|
|
145
|
+
*/
|
|
146
|
+
export const CostUsageSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 26);
|
|
147
|
+
/**
|
|
148
|
+
* Describes the message console.v1.RiskFinding.
|
|
149
|
+
* Use `create(RiskFindingSchema)` to create a new message.
|
|
150
|
+
*/
|
|
151
|
+
export const RiskFindingSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 27);
|
|
152
|
+
/**
|
|
153
|
+
* Describes the message console.v1.IntegrationTile.
|
|
154
|
+
* Use `create(IntegrationTileSchema)` to create a new message.
|
|
155
|
+
*/
|
|
156
|
+
export const IntegrationTileSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 28);
|
|
157
|
+
/**
|
|
158
|
+
* Describes the message console.v1.OnboardingTask.
|
|
159
|
+
* Use `create(OnboardingTaskSchema)` to create a new message.
|
|
160
|
+
*/
|
|
161
|
+
export const OnboardingTaskSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 29);
|
|
162
|
+
/**
|
|
163
|
+
* Describes the message console.v1.TraceDrilldown.
|
|
164
|
+
* Use `create(TraceDrilldownSchema)` to create a new message.
|
|
165
|
+
*/
|
|
166
|
+
export const TraceDrilldownSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 30);
|
|
167
|
+
/**
|
|
168
|
+
* Describes the message console.v1.TraceSpan.
|
|
169
|
+
* Use `create(TraceSpanSchema)` to create a new message.
|
|
170
|
+
*/
|
|
171
|
+
export const TraceSpanSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 31);
|
|
172
|
+
/**
|
|
173
|
+
* Describes the message console.v1.RelatedResource.
|
|
174
|
+
* Use `create(RelatedResourceSchema)` to create a new message.
|
|
175
|
+
*/
|
|
176
|
+
export const RelatedResourceSchema = /*@__PURE__*/ messageDesc(file_console_v1_console, 32);
|
|
177
|
+
/**
|
|
178
|
+
* ConsoleService provides the product-facing AI operations read model for the
|
|
179
|
+
* EvalOps web console. It composes agent inventory, traces, approvals,
|
|
180
|
+
* governance, usage, integrations, and posture without exposing protocol
|
|
181
|
+
* details such as MCP as the primary product contract.
|
|
182
|
+
*
|
|
183
|
+
* @generated from service console.v1.ConsoleService
|
|
184
|
+
*/
|
|
185
|
+
export const ConsoleService = /*@__PURE__*/ serviceDesc(file_console_v1_console, 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evalops/sdk-ts",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.95",
|
|
4
4
|
"description": "Generated TypeScript SDK protobuf types for EvalOps public APIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -78,6 +78,10 @@
|
|
|
78
78
|
"types": "./dist/compliance/v1/compliance_pb.d.ts",
|
|
79
79
|
"import": "./dist/compliance/v1/compliance_pb.js"
|
|
80
80
|
},
|
|
81
|
+
"./console/v1/console_pb": {
|
|
82
|
+
"types": "./dist/console/v1/console_pb.d.ts",
|
|
83
|
+
"import": "./dist/console/v1/console_pb.js"
|
|
84
|
+
},
|
|
81
85
|
"./config/v1/config_pb": {
|
|
82
86
|
"types": "./dist/config/v1/config_pb.d.ts",
|
|
83
87
|
"import": "./dist/config/v1/config_pb.js"
|