@evalops/sdk-ts 0.1.125 → 0.1.127
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/agentruntime/v1/runtime_pb.d.ts +12 -0
- package/dist/agentruntime/v1/runtime_pb.js +2 -1
- package/dist/approvals/v1/approvals_pb.d.ts +54 -0
- package/dist/approvals/v1/approvals_pb.js +2 -1
- package/dist/connectors/v1/connectors_pb.d.ts +28 -0
- package/dist/connectors/v1/connectors_pb.js +2 -1
- package/dist/console/v1/console_pb.d.ts +571 -1
- package/dist/console/v1/console_pb.js +188 -103
- package/dist/contextlibrary/v1/context_library_pb.d.ts +1248 -0
- package/dist/contextlibrary/v1/context_library_pb.js +311 -0
- package/dist/objectives/v1/objectives_pb.d.ts +28 -0
- package/dist/objectives/v1/objectives_pb.js +1 -1
- package/package.json +5 -1
|
@@ -83,6 +83,455 @@ export type ConsoleQuery = Message<"console.v1.ConsoleQuery"> & {
|
|
|
83
83
|
* Use `create(ConsoleQuerySchema)` to create a new message.
|
|
84
84
|
*/
|
|
85
85
|
export declare const ConsoleQuerySchema: GenMessage<ConsoleQuery>;
|
|
86
|
+
/**
|
|
87
|
+
* OperatingCapabilityState is the UI-safe service availability summary for an
|
|
88
|
+
* operating channel or receipt owner.
|
|
89
|
+
*
|
|
90
|
+
* @generated from message console.v1.OperatingCapabilityState
|
|
91
|
+
*/
|
|
92
|
+
export type OperatingCapabilityState = Message<"console.v1.OperatingCapabilityState"> & {
|
|
93
|
+
/**
|
|
94
|
+
* @generated from field: string service = 1;
|
|
95
|
+
*/
|
|
96
|
+
service: string;
|
|
97
|
+
/**
|
|
98
|
+
* @generated from field: string status = 2;
|
|
99
|
+
*/
|
|
100
|
+
status: string;
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: string label = 3;
|
|
103
|
+
*/
|
|
104
|
+
label: string;
|
|
105
|
+
/**
|
|
106
|
+
* @generated from field: string detail = 4;
|
|
107
|
+
*/
|
|
108
|
+
detail: string;
|
|
109
|
+
/**
|
|
110
|
+
* @generated from field: repeated string missing_requirements = 5;
|
|
111
|
+
*/
|
|
112
|
+
missingRequirements: string[];
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Describes the message console.v1.OperatingCapabilityState.
|
|
116
|
+
* Use `create(OperatingCapabilityStateSchema)` to create a new message.
|
|
117
|
+
*/
|
|
118
|
+
export declare const OperatingCapabilityStateSchema: GenMessage<OperatingCapabilityState>;
|
|
119
|
+
/**
|
|
120
|
+
* OperatingChannel identifies a company/domain/thread surface the Console can
|
|
121
|
+
* show. It carries capability state, not local operational data.
|
|
122
|
+
*
|
|
123
|
+
* @generated from message console.v1.OperatingChannel
|
|
124
|
+
*/
|
|
125
|
+
export type OperatingChannel = Message<"console.v1.OperatingChannel"> & {
|
|
126
|
+
/**
|
|
127
|
+
* @generated from field: string id = 1;
|
|
128
|
+
*/
|
|
129
|
+
id: string;
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: string label = 2;
|
|
132
|
+
*/
|
|
133
|
+
label: string;
|
|
134
|
+
/**
|
|
135
|
+
* @generated from field: string kind = 3;
|
|
136
|
+
*/
|
|
137
|
+
kind: string;
|
|
138
|
+
/**
|
|
139
|
+
* @generated from field: string source_service = 4;
|
|
140
|
+
*/
|
|
141
|
+
sourceService: string;
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: int32 unread_count = 5;
|
|
144
|
+
*/
|
|
145
|
+
unreadCount: number;
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: int32 open_count = 6;
|
|
148
|
+
*/
|
|
149
|
+
openCount: number;
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: console.v1.OperatingCapabilityState capability_state = 7;
|
|
152
|
+
*/
|
|
153
|
+
capabilityState?: OperatingCapabilityState | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: string detail = 8;
|
|
156
|
+
*/
|
|
157
|
+
detail: string;
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 9;
|
|
160
|
+
*/
|
|
161
|
+
updatedAt?: Timestamp | undefined;
|
|
162
|
+
};
|
|
163
|
+
/**
|
|
164
|
+
* Describes the message console.v1.OperatingChannel.
|
|
165
|
+
* Use `create(OperatingChannelSchema)` to create a new message.
|
|
166
|
+
*/
|
|
167
|
+
export declare const OperatingChannelSchema: GenMessage<OperatingChannel>;
|
|
168
|
+
/**
|
|
169
|
+
* OperatingMessage is safe conversation text plus links to typed receipts.
|
|
170
|
+
*
|
|
171
|
+
* @generated from message console.v1.OperatingMessage
|
|
172
|
+
*/
|
|
173
|
+
export type OperatingMessage = Message<"console.v1.OperatingMessage"> & {
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: string id = 1;
|
|
176
|
+
*/
|
|
177
|
+
id: string;
|
|
178
|
+
/**
|
|
179
|
+
* @generated from field: string channel_id = 2;
|
|
180
|
+
*/
|
|
181
|
+
channelId: string;
|
|
182
|
+
/**
|
|
183
|
+
* @generated from field: string role = 3;
|
|
184
|
+
*/
|
|
185
|
+
role: string;
|
|
186
|
+
/**
|
|
187
|
+
* @generated from field: string actor_label = 4;
|
|
188
|
+
*/
|
|
189
|
+
actorLabel: string;
|
|
190
|
+
/**
|
|
191
|
+
* @generated from field: string body = 5;
|
|
192
|
+
*/
|
|
193
|
+
body: string;
|
|
194
|
+
/**
|
|
195
|
+
* @generated from field: google.protobuf.Timestamp created_at = 6;
|
|
196
|
+
*/
|
|
197
|
+
createdAt?: Timestamp | undefined;
|
|
198
|
+
/**
|
|
199
|
+
* @generated from field: repeated string receipt_ids = 7;
|
|
200
|
+
*/
|
|
201
|
+
receiptIds: string[];
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Describes the message console.v1.OperatingMessage.
|
|
205
|
+
* Use `create(OperatingMessageSchema)` to create a new message.
|
|
206
|
+
*/
|
|
207
|
+
export declare const OperatingMessageSchema: GenMessage<OperatingMessage>;
|
|
208
|
+
/**
|
|
209
|
+
* OperatingReceipt is the mini-app object rendered inline in chat and expanded
|
|
210
|
+
* in the inspector. Display payloads must be safe for UI rendering and must not
|
|
211
|
+
* include raw prompts, tool arguments, credentials, tokens, connector payloads,
|
|
212
|
+
* VFS bytes, or model responses.
|
|
213
|
+
*
|
|
214
|
+
* @generated from message console.v1.OperatingReceipt
|
|
215
|
+
*/
|
|
216
|
+
export type OperatingReceipt = Message<"console.v1.OperatingReceipt"> & {
|
|
217
|
+
/**
|
|
218
|
+
* @generated from field: string id = 1;
|
|
219
|
+
*/
|
|
220
|
+
id: string;
|
|
221
|
+
/**
|
|
222
|
+
* @generated from field: string kind = 2;
|
|
223
|
+
*/
|
|
224
|
+
kind: string;
|
|
225
|
+
/**
|
|
226
|
+
* @generated from field: string title = 3;
|
|
227
|
+
*/
|
|
228
|
+
title: string;
|
|
229
|
+
/**
|
|
230
|
+
* @generated from field: string summary = 4;
|
|
231
|
+
*/
|
|
232
|
+
summary: string;
|
|
233
|
+
/**
|
|
234
|
+
* @generated from field: string status = 5;
|
|
235
|
+
*/
|
|
236
|
+
status: string;
|
|
237
|
+
/**
|
|
238
|
+
* @generated from field: string owner_service = 6;
|
|
239
|
+
*/
|
|
240
|
+
ownerService: string;
|
|
241
|
+
/**
|
|
242
|
+
* @generated from field: string object_id = 7;
|
|
243
|
+
*/
|
|
244
|
+
objectId: string;
|
|
245
|
+
/**
|
|
246
|
+
* @generated from field: string objective_id = 8;
|
|
247
|
+
*/
|
|
248
|
+
objectiveId: string;
|
|
249
|
+
/**
|
|
250
|
+
* @generated from field: string run_id = 9;
|
|
251
|
+
*/
|
|
252
|
+
runId: string;
|
|
253
|
+
/**
|
|
254
|
+
* @generated from field: string approval_request_id = 10;
|
|
255
|
+
*/
|
|
256
|
+
approvalRequestId: string;
|
|
257
|
+
/**
|
|
258
|
+
* @generated from field: string trace_id = 11;
|
|
259
|
+
*/
|
|
260
|
+
traceId: string;
|
|
261
|
+
/**
|
|
262
|
+
* @generated from field: common.v1.RiskLevel risk_level = 12;
|
|
263
|
+
*/
|
|
264
|
+
riskLevel: RiskLevel;
|
|
265
|
+
/**
|
|
266
|
+
* @generated from field: google.protobuf.Timestamp updated_at = 13;
|
|
267
|
+
*/
|
|
268
|
+
updatedAt?: Timestamp | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* @generated from field: repeated console.v1.OperatingReceiptAction allowed_actions = 14;
|
|
271
|
+
*/
|
|
272
|
+
allowedActions: OperatingReceiptAction[];
|
|
273
|
+
/**
|
|
274
|
+
* @generated from field: repeated console.v1.RelatedResource evidence_refs = 15;
|
|
275
|
+
*/
|
|
276
|
+
evidenceRefs: RelatedResource[];
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: google.protobuf.Struct payload = 16;
|
|
279
|
+
*/
|
|
280
|
+
payload?: JsonObject | undefined;
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* Describes the message console.v1.OperatingReceipt.
|
|
284
|
+
* Use `create(OperatingReceiptSchema)` to create a new message.
|
|
285
|
+
*/
|
|
286
|
+
export declare const OperatingReceiptSchema: GenMessage<OperatingReceipt>;
|
|
287
|
+
/**
|
|
288
|
+
* OperatingReceiptAction is a typed command the backend allows for one receipt.
|
|
289
|
+
*
|
|
290
|
+
* @generated from message console.v1.OperatingReceiptAction
|
|
291
|
+
*/
|
|
292
|
+
export type OperatingReceiptAction = Message<"console.v1.OperatingReceiptAction"> & {
|
|
293
|
+
/**
|
|
294
|
+
* @generated from field: string id = 1;
|
|
295
|
+
*/
|
|
296
|
+
id: string;
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: string label = 2;
|
|
299
|
+
*/
|
|
300
|
+
label: string;
|
|
301
|
+
/**
|
|
302
|
+
* @generated from field: string kind = 3;
|
|
303
|
+
*/
|
|
304
|
+
kind: string;
|
|
305
|
+
/**
|
|
306
|
+
* @generated from field: string target_kind = 4;
|
|
307
|
+
*/
|
|
308
|
+
targetKind: string;
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: string target_id = 5;
|
|
311
|
+
*/
|
|
312
|
+
targetId: string;
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: bool requires_confirmation = 6;
|
|
315
|
+
*/
|
|
316
|
+
requiresConfirmation: boolean;
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string disabled_reason = 7;
|
|
319
|
+
*/
|
|
320
|
+
disabledReason: string;
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: google.protobuf.Struct payload = 8;
|
|
323
|
+
*/
|
|
324
|
+
payload?: JsonObject | undefined;
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Describes the message console.v1.OperatingReceiptAction.
|
|
328
|
+
* Use `create(OperatingReceiptActionSchema)` to create a new message.
|
|
329
|
+
*/
|
|
330
|
+
export declare const OperatingReceiptActionSchema: GenMessage<OperatingReceiptAction>;
|
|
331
|
+
/**
|
|
332
|
+
* @generated from message console.v1.ListOperatingChannelsRequest
|
|
333
|
+
*/
|
|
334
|
+
export type ListOperatingChannelsRequest = Message<"console.v1.ListOperatingChannelsRequest"> & {
|
|
335
|
+
/**
|
|
336
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
337
|
+
*/
|
|
338
|
+
query?: ConsoleQuery | undefined;
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Describes the message console.v1.ListOperatingChannelsRequest.
|
|
342
|
+
* Use `create(ListOperatingChannelsRequestSchema)` to create a new message.
|
|
343
|
+
*/
|
|
344
|
+
export declare const ListOperatingChannelsRequestSchema: GenMessage<ListOperatingChannelsRequest>;
|
|
345
|
+
/**
|
|
346
|
+
* @generated from message console.v1.ListOperatingChannelsResponse
|
|
347
|
+
*/
|
|
348
|
+
export type ListOperatingChannelsResponse = Message<"console.v1.ListOperatingChannelsResponse"> & {
|
|
349
|
+
/**
|
|
350
|
+
* @generated from field: repeated console.v1.OperatingChannel channels = 1;
|
|
351
|
+
*/
|
|
352
|
+
channels: OperatingChannel[];
|
|
353
|
+
/**
|
|
354
|
+
* @generated from field: repeated console.v1.OperatingCapabilityState capabilities = 2;
|
|
355
|
+
*/
|
|
356
|
+
capabilities: OperatingCapabilityState[];
|
|
357
|
+
};
|
|
358
|
+
/**
|
|
359
|
+
* Describes the message console.v1.ListOperatingChannelsResponse.
|
|
360
|
+
* Use `create(ListOperatingChannelsResponseSchema)` to create a new message.
|
|
361
|
+
*/
|
|
362
|
+
export declare const ListOperatingChannelsResponseSchema: GenMessage<ListOperatingChannelsResponse>;
|
|
363
|
+
/**
|
|
364
|
+
* @generated from message console.v1.GetOperatingThreadRequest
|
|
365
|
+
*/
|
|
366
|
+
export type GetOperatingThreadRequest = Message<"console.v1.GetOperatingThreadRequest"> & {
|
|
367
|
+
/**
|
|
368
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
369
|
+
*/
|
|
370
|
+
query?: ConsoleQuery | undefined;
|
|
371
|
+
/**
|
|
372
|
+
* @generated from field: string channel_id = 2;
|
|
373
|
+
*/
|
|
374
|
+
channelId: string;
|
|
375
|
+
/**
|
|
376
|
+
* @generated from field: int32 limit = 3;
|
|
377
|
+
*/
|
|
378
|
+
limit: number;
|
|
379
|
+
};
|
|
380
|
+
/**
|
|
381
|
+
* Describes the message console.v1.GetOperatingThreadRequest.
|
|
382
|
+
* Use `create(GetOperatingThreadRequestSchema)` to create a new message.
|
|
383
|
+
*/
|
|
384
|
+
export declare const GetOperatingThreadRequestSchema: GenMessage<GetOperatingThreadRequest>;
|
|
385
|
+
/**
|
|
386
|
+
* @generated from message console.v1.GetOperatingThreadResponse
|
|
387
|
+
*/
|
|
388
|
+
export type GetOperatingThreadResponse = Message<"console.v1.GetOperatingThreadResponse"> & {
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: console.v1.OperatingChannel channel = 1;
|
|
391
|
+
*/
|
|
392
|
+
channel?: OperatingChannel | undefined;
|
|
393
|
+
/**
|
|
394
|
+
* @generated from field: repeated console.v1.OperatingMessage messages = 2;
|
|
395
|
+
*/
|
|
396
|
+
messages: OperatingMessage[];
|
|
397
|
+
/**
|
|
398
|
+
* @generated from field: repeated console.v1.OperatingReceipt receipts = 3;
|
|
399
|
+
*/
|
|
400
|
+
receipts: OperatingReceipt[];
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: repeated console.v1.OperatingCapabilityState capabilities = 4;
|
|
403
|
+
*/
|
|
404
|
+
capabilities: OperatingCapabilityState[];
|
|
405
|
+
};
|
|
406
|
+
/**
|
|
407
|
+
* Describes the message console.v1.GetOperatingThreadResponse.
|
|
408
|
+
* Use `create(GetOperatingThreadResponseSchema)` to create a new message.
|
|
409
|
+
*/
|
|
410
|
+
export declare const GetOperatingThreadResponseSchema: GenMessage<GetOperatingThreadResponse>;
|
|
411
|
+
/**
|
|
412
|
+
* @generated from message console.v1.SubmitOperatingMessageRequest
|
|
413
|
+
*/
|
|
414
|
+
export type SubmitOperatingMessageRequest = Message<"console.v1.SubmitOperatingMessageRequest"> & {
|
|
415
|
+
/**
|
|
416
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
417
|
+
*/
|
|
418
|
+
query?: ConsoleQuery | undefined;
|
|
419
|
+
/**
|
|
420
|
+
* @generated from field: string channel_id = 2;
|
|
421
|
+
*/
|
|
422
|
+
channelId: string;
|
|
423
|
+
/**
|
|
424
|
+
* @generated from field: string body = 3;
|
|
425
|
+
*/
|
|
426
|
+
body: string;
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: string idempotency_key = 4;
|
|
429
|
+
*/
|
|
430
|
+
idempotencyKey: string;
|
|
431
|
+
};
|
|
432
|
+
/**
|
|
433
|
+
* Describes the message console.v1.SubmitOperatingMessageRequest.
|
|
434
|
+
* Use `create(SubmitOperatingMessageRequestSchema)` to create a new message.
|
|
435
|
+
*/
|
|
436
|
+
export declare const SubmitOperatingMessageRequestSchema: GenMessage<SubmitOperatingMessageRequest>;
|
|
437
|
+
/**
|
|
438
|
+
* @generated from message console.v1.SubmitOperatingMessageResponse
|
|
439
|
+
*/
|
|
440
|
+
export type SubmitOperatingMessageResponse = Message<"console.v1.SubmitOperatingMessageResponse"> & {
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: console.v1.OperatingMessage message = 1;
|
|
443
|
+
*/
|
|
444
|
+
message?: OperatingMessage | undefined;
|
|
445
|
+
/**
|
|
446
|
+
* @generated from field: repeated console.v1.OperatingReceipt receipts = 2;
|
|
447
|
+
*/
|
|
448
|
+
receipts: OperatingReceipt[];
|
|
449
|
+
/**
|
|
450
|
+
* @generated from field: repeated console.v1.OperatingCapabilityState capabilities = 3;
|
|
451
|
+
*/
|
|
452
|
+
capabilities: OperatingCapabilityState[];
|
|
453
|
+
};
|
|
454
|
+
/**
|
|
455
|
+
* Describes the message console.v1.SubmitOperatingMessageResponse.
|
|
456
|
+
* Use `create(SubmitOperatingMessageResponseSchema)` to create a new message.
|
|
457
|
+
*/
|
|
458
|
+
export declare const SubmitOperatingMessageResponseSchema: GenMessage<SubmitOperatingMessageResponse>;
|
|
459
|
+
/**
|
|
460
|
+
* @generated from message console.v1.ResolveOperatingReceiptActionRequest
|
|
461
|
+
*/
|
|
462
|
+
export type ResolveOperatingReceiptActionRequest = Message<"console.v1.ResolveOperatingReceiptActionRequest"> & {
|
|
463
|
+
/**
|
|
464
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
465
|
+
*/
|
|
466
|
+
query?: ConsoleQuery | undefined;
|
|
467
|
+
/**
|
|
468
|
+
* @generated from field: string receipt_id = 2;
|
|
469
|
+
*/
|
|
470
|
+
receiptId: string;
|
|
471
|
+
/**
|
|
472
|
+
* @generated from field: console.v1.OperatingReceiptAction action = 3;
|
|
473
|
+
*/
|
|
474
|
+
action?: OperatingReceiptAction | undefined;
|
|
475
|
+
/**
|
|
476
|
+
* @generated from field: string idempotency_key = 4;
|
|
477
|
+
*/
|
|
478
|
+
idempotencyKey: string;
|
|
479
|
+
};
|
|
480
|
+
/**
|
|
481
|
+
* Describes the message console.v1.ResolveOperatingReceiptActionRequest.
|
|
482
|
+
* Use `create(ResolveOperatingReceiptActionRequestSchema)` to create a new message.
|
|
483
|
+
*/
|
|
484
|
+
export declare const ResolveOperatingReceiptActionRequestSchema: GenMessage<ResolveOperatingReceiptActionRequest>;
|
|
485
|
+
/**
|
|
486
|
+
* @generated from message console.v1.ResolveOperatingReceiptActionResponse
|
|
487
|
+
*/
|
|
488
|
+
export type ResolveOperatingReceiptActionResponse = Message<"console.v1.ResolveOperatingReceiptActionResponse"> & {
|
|
489
|
+
/**
|
|
490
|
+
* @generated from field: console.v1.OperatingReceipt receipt = 1;
|
|
491
|
+
*/
|
|
492
|
+
receipt?: OperatingReceipt | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* @generated from field: repeated console.v1.OperatingCapabilityState capabilities = 2;
|
|
495
|
+
*/
|
|
496
|
+
capabilities: OperatingCapabilityState[];
|
|
497
|
+
};
|
|
498
|
+
/**
|
|
499
|
+
* Describes the message console.v1.ResolveOperatingReceiptActionResponse.
|
|
500
|
+
* Use `create(ResolveOperatingReceiptActionResponseSchema)` to create a new message.
|
|
501
|
+
*/
|
|
502
|
+
export declare const ResolveOperatingReceiptActionResponseSchema: GenMessage<ResolveOperatingReceiptActionResponse>;
|
|
503
|
+
/**
|
|
504
|
+
* @generated from message console.v1.GetOperatingReceiptRequest
|
|
505
|
+
*/
|
|
506
|
+
export type GetOperatingReceiptRequest = Message<"console.v1.GetOperatingReceiptRequest"> & {
|
|
507
|
+
/**
|
|
508
|
+
* @generated from field: console.v1.ConsoleQuery query = 1;
|
|
509
|
+
*/
|
|
510
|
+
query?: ConsoleQuery | undefined;
|
|
511
|
+
/**
|
|
512
|
+
* @generated from field: string receipt_id = 2;
|
|
513
|
+
*/
|
|
514
|
+
receiptId: string;
|
|
515
|
+
};
|
|
516
|
+
/**
|
|
517
|
+
* Describes the message console.v1.GetOperatingReceiptRequest.
|
|
518
|
+
* Use `create(GetOperatingReceiptRequestSchema)` to create a new message.
|
|
519
|
+
*/
|
|
520
|
+
export declare const GetOperatingReceiptRequestSchema: GenMessage<GetOperatingReceiptRequest>;
|
|
521
|
+
/**
|
|
522
|
+
* @generated from message console.v1.GetOperatingReceiptResponse
|
|
523
|
+
*/
|
|
524
|
+
export type GetOperatingReceiptResponse = Message<"console.v1.GetOperatingReceiptResponse"> & {
|
|
525
|
+
/**
|
|
526
|
+
* @generated from field: console.v1.OperatingReceipt receipt = 1;
|
|
527
|
+
*/
|
|
528
|
+
receipt?: OperatingReceipt | undefined;
|
|
529
|
+
};
|
|
530
|
+
/**
|
|
531
|
+
* Describes the message console.v1.GetOperatingReceiptResponse.
|
|
532
|
+
* Use `create(GetOperatingReceiptResponseSchema)` to create a new message.
|
|
533
|
+
*/
|
|
534
|
+
export declare const GetOperatingReceiptResponseSchema: GenMessage<GetOperatingReceiptResponse>;
|
|
86
535
|
/**
|
|
87
536
|
* @generated from message console.v1.GetOverviewRequest
|
|
88
537
|
*/
|
|
@@ -852,6 +1301,58 @@ export type GetWorkspaceSettingsResponse = Message<"console.v1.GetWorkspaceSetti
|
|
|
852
1301
|
* Use `create(GetWorkspaceSettingsResponseSchema)` to create a new message.
|
|
853
1302
|
*/
|
|
854
1303
|
export declare const GetWorkspaceSettingsResponseSchema: GenMessage<GetWorkspaceSettingsResponse>;
|
|
1304
|
+
/**
|
|
1305
|
+
* @generated from message console.v1.GetBillingSubscriptionRequest
|
|
1306
|
+
*/
|
|
1307
|
+
export type GetBillingSubscriptionRequest = Message<"console.v1.GetBillingSubscriptionRequest"> & {
|
|
1308
|
+
/**
|
|
1309
|
+
* @generated from field: string workspace_id = 1;
|
|
1310
|
+
*/
|
|
1311
|
+
workspaceId: string;
|
|
1312
|
+
};
|
|
1313
|
+
/**
|
|
1314
|
+
* Describes the message console.v1.GetBillingSubscriptionRequest.
|
|
1315
|
+
* Use `create(GetBillingSubscriptionRequestSchema)` to create a new message.
|
|
1316
|
+
*/
|
|
1317
|
+
export declare const GetBillingSubscriptionRequestSchema: GenMessage<GetBillingSubscriptionRequest>;
|
|
1318
|
+
/**
|
|
1319
|
+
* @generated from message console.v1.GetBillingSubscriptionResponse
|
|
1320
|
+
*/
|
|
1321
|
+
export type GetBillingSubscriptionResponse = Message<"console.v1.GetBillingSubscriptionResponse"> & {
|
|
1322
|
+
/**
|
|
1323
|
+
* @generated from field: string plan_name = 1;
|
|
1324
|
+
*/
|
|
1325
|
+
planName: string;
|
|
1326
|
+
/**
|
|
1327
|
+
* @generated from field: string plan_tier = 2;
|
|
1328
|
+
*/
|
|
1329
|
+
planTier: string;
|
|
1330
|
+
/**
|
|
1331
|
+
* @generated from field: int32 seats_used = 3;
|
|
1332
|
+
*/
|
|
1333
|
+
seatsUsed: number;
|
|
1334
|
+
/**
|
|
1335
|
+
* @generated from field: int32 seats_total = 4;
|
|
1336
|
+
*/
|
|
1337
|
+
seatsTotal: number;
|
|
1338
|
+
/**
|
|
1339
|
+
* @generated from field: string renewal_date = 5;
|
|
1340
|
+
*/
|
|
1341
|
+
renewalDate: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* @generated from field: string billing_contact = 6;
|
|
1344
|
+
*/
|
|
1345
|
+
billingContact: string;
|
|
1346
|
+
/**
|
|
1347
|
+
* @generated from field: string billing_portal_url = 7;
|
|
1348
|
+
*/
|
|
1349
|
+
billingPortalUrl: string;
|
|
1350
|
+
};
|
|
1351
|
+
/**
|
|
1352
|
+
* Describes the message console.v1.GetBillingSubscriptionResponse.
|
|
1353
|
+
* Use `create(GetBillingSubscriptionResponseSchema)` to create a new message.
|
|
1354
|
+
*/
|
|
1355
|
+
export declare const GetBillingSubscriptionResponseSchema: GenMessage<GetBillingSubscriptionResponse>;
|
|
855
1356
|
/**
|
|
856
1357
|
* @generated from message console.v1.UpdateWorkspaceProfileRequest
|
|
857
1358
|
*/
|
|
@@ -4228,11 +4729,67 @@ export declare const ConsoleService: GenService<{
|
|
|
4228
4729
|
input: typeof GetOnboardingPlanRequestSchema;
|
|
4229
4730
|
output: typeof GetOnboardingPlanResponseSchema;
|
|
4230
4731
|
};
|
|
4732
|
+
/**
|
|
4733
|
+
* ListOperatingChannels returns the chat-native company/domain channels the
|
|
4734
|
+
* Console can actually operate for this workspace. Capability state is
|
|
4735
|
+
* backend-owned so the UI does not invent domains or connection status.
|
|
4736
|
+
*
|
|
4737
|
+
* @generated from rpc console.v1.ConsoleService.ListOperatingChannels
|
|
4738
|
+
*/
|
|
4739
|
+
listOperatingChannels: {
|
|
4740
|
+
methodKind: "unary";
|
|
4741
|
+
input: typeof ListOperatingChannelsRequestSchema;
|
|
4742
|
+
output: typeof ListOperatingChannelsResponseSchema;
|
|
4743
|
+
};
|
|
4744
|
+
/**
|
|
4745
|
+
* GetOperatingThread returns the selected operating thread from its owning
|
|
4746
|
+
* backend messages and receipts.
|
|
4747
|
+
*
|
|
4748
|
+
* @generated from rpc console.v1.ConsoleService.GetOperatingThread
|
|
4749
|
+
*/
|
|
4750
|
+
getOperatingThread: {
|
|
4751
|
+
methodKind: "unary";
|
|
4752
|
+
input: typeof GetOperatingThreadRequestSchema;
|
|
4753
|
+
output: typeof GetOperatingThreadResponseSchema;
|
|
4754
|
+
};
|
|
4755
|
+
/**
|
|
4756
|
+
* SubmitOperatingMessage turns a human message into backend-owned operating
|
|
4757
|
+
* work, starting with an Objective plus AgentRuntime run when those services
|
|
4758
|
+
* are configured.
|
|
4759
|
+
*
|
|
4760
|
+
* @generated from rpc console.v1.ConsoleService.SubmitOperatingMessage
|
|
4761
|
+
*/
|
|
4762
|
+
submitOperatingMessage: {
|
|
4763
|
+
methodKind: "unary";
|
|
4764
|
+
input: typeof SubmitOperatingMessageRequestSchema;
|
|
4765
|
+
output: typeof SubmitOperatingMessageResponseSchema;
|
|
4766
|
+
};
|
|
4767
|
+
/**
|
|
4768
|
+
* ResolveOperatingReceiptAction sends a backend-returned receipt command to
|
|
4769
|
+
* its owning service. Console only advertises actions with an owning handler.
|
|
4770
|
+
*
|
|
4771
|
+
* @generated from rpc console.v1.ConsoleService.ResolveOperatingReceiptAction
|
|
4772
|
+
*/
|
|
4773
|
+
resolveOperatingReceiptAction: {
|
|
4774
|
+
methodKind: "unary";
|
|
4775
|
+
input: typeof ResolveOperatingReceiptActionRequestSchema;
|
|
4776
|
+
output: typeof ResolveOperatingReceiptActionResponseSchema;
|
|
4777
|
+
};
|
|
4778
|
+
/**
|
|
4779
|
+
* GetOperatingReceipt returns one safe, UI-renderable receipt mini-app.
|
|
4780
|
+
*
|
|
4781
|
+
* @generated from rpc console.v1.ConsoleService.GetOperatingReceipt
|
|
4782
|
+
*/
|
|
4783
|
+
getOperatingReceipt: {
|
|
4784
|
+
methodKind: "unary";
|
|
4785
|
+
input: typeof GetOperatingReceiptRequestSchema;
|
|
4786
|
+
output: typeof GetOperatingReceiptResponseSchema;
|
|
4787
|
+
};
|
|
4231
4788
|
/**
|
|
4232
4789
|
* GetWorkspaceSettings returns the authenticated workspace settings summary.
|
|
4233
4790
|
* It is the product contract for the Settings page: fields that are not yet
|
|
4234
4791
|
* backed by an owning service are returned with explicit unavailable
|
|
4235
|
-
* capabilities instead of
|
|
4792
|
+
* capabilities instead of client-local values.
|
|
4236
4793
|
*
|
|
4237
4794
|
* @generated from rpc console.v1.ConsoleService.GetWorkspaceSettings
|
|
4238
4795
|
*/
|
|
@@ -4241,6 +4798,19 @@ export declare const ConsoleService: GenService<{
|
|
|
4241
4798
|
input: typeof GetWorkspaceSettingsRequestSchema;
|
|
4242
4799
|
output: typeof GetWorkspaceSettingsResponseSchema;
|
|
4243
4800
|
};
|
|
4801
|
+
/**
|
|
4802
|
+
* GetBillingSubscription returns the typed billing subscription summary used
|
|
4803
|
+
* by Settings. Until a provider-backed billing adapter is configured, values
|
|
4804
|
+
* come from the durable workspace billing settings state and provider-only
|
|
4805
|
+
* fields such as billing_portal_url remain empty.
|
|
4806
|
+
*
|
|
4807
|
+
* @generated from rpc console.v1.ConsoleService.GetBillingSubscription
|
|
4808
|
+
*/
|
|
4809
|
+
getBillingSubscription: {
|
|
4810
|
+
methodKind: "unary";
|
|
4811
|
+
input: typeof GetBillingSubscriptionRequestSchema;
|
|
4812
|
+
output: typeof GetBillingSubscriptionResponseSchema;
|
|
4813
|
+
};
|
|
4244
4814
|
/**
|
|
4245
4815
|
* UpdateWorkspaceProfile stores workspace-facing Settings metadata such as
|
|
4246
4816
|
* labels, environment, and region.
|