@stigmer/protos 3.8.0 → 3.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.d.ts +114 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js +24 -9
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.d.ts +28 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.js +29 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.js.map +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_pb.d.ts +28 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_pb.js +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.d.ts +5 -2
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/query_connect.d.ts +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_connect.js +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_connect.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/query_pb.d.ts +17 -7
- package/ai/stigmer/agentic/agentexecution/v1/query_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.d.ts +5 -0
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/billing/v1/model_pricing_baseline_pb.d.ts +36 -0
- package/ai/stigmer/billing/v1/model_pricing_baseline_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -259,12 +259,70 @@ export type ConversationTimelineItem = Message<"ai.stigmer.agentic.agentchannel.
|
|
|
259
259
|
* @generated from field: int32 receipt_error_code = 12;
|
|
260
260
|
*/
|
|
261
261
|
receiptErrorCode: number;
|
|
262
|
+
/**
|
|
263
|
+
* The media file carried by an inbound item, when the platform
|
|
264
|
+
* ingested one (an image or document the customer sent). Unset on
|
|
265
|
+
* text items, on outbound items, and on inbound media the platform
|
|
266
|
+
* declined to ingest (disallowed type, over the size cap) — those
|
|
267
|
+
* keep the bare provider_message_type placeholder.
|
|
268
|
+
*
|
|
269
|
+
* @internal
|
|
270
|
+
* whatsapp-media DD-001 D4: descriptive facts only — the storage key
|
|
271
|
+
* deliberately never rides the wire. Clients fetch bytes through
|
|
272
|
+
* getMediaDownloadUrl addressed by (channel, conversation, item_id),
|
|
273
|
+
* and the server resolves the key from its own row, so the read path
|
|
274
|
+
* is conversation-viewer-scoped by construction and blob capabilities
|
|
275
|
+
* never leave the server.
|
|
276
|
+
*
|
|
277
|
+
* @generated from field: ai.stigmer.agentic.agentchannel.v1.ConversationMediaRef media = 13;
|
|
278
|
+
*/
|
|
279
|
+
media?: ConversationMediaRef;
|
|
262
280
|
};
|
|
263
281
|
/**
|
|
264
282
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimelineItem.
|
|
265
283
|
* Use `create(ConversationTimelineItemSchema)` to create a new message.
|
|
266
284
|
*/
|
|
267
285
|
export declare const ConversationTimelineItemSchema: GenMessage<ConversationTimelineItem>;
|
|
286
|
+
/**
|
|
287
|
+
* ConversationMediaRef describes a media file attached to an inbound
|
|
288
|
+
* timeline item — enough for a client to render a chip (name, kind,
|
|
289
|
+
* size) and decide whether to fetch the bytes.
|
|
290
|
+
*
|
|
291
|
+
* @internal
|
|
292
|
+
* whatsapp-media DD-001 D4. Deliberately NOT the agentexecution
|
|
293
|
+
* Attachment shape: that message carries transport facts (storage_key,
|
|
294
|
+
* mount_path) for the sandbox, while this one is a display reference —
|
|
295
|
+
* sharing a message would couple the console's read surface to the
|
|
296
|
+
* runner's transport contract.
|
|
297
|
+
*
|
|
298
|
+
* @generated from message ai.stigmer.agentic.agentchannel.v1.ConversationMediaRef
|
|
299
|
+
*/
|
|
300
|
+
export type ConversationMediaRef = Message<"ai.stigmer.agentic.agentchannel.v1.ConversationMediaRef"> & {
|
|
301
|
+
/**
|
|
302
|
+
* Original filename as received from the provider (documents), or the
|
|
303
|
+
* platform-synthesized name (camera images arrive nameless).
|
|
304
|
+
*
|
|
305
|
+
* @generated from field: string filename = 1;
|
|
306
|
+
*/
|
|
307
|
+
filename: string;
|
|
308
|
+
/**
|
|
309
|
+
* MIME type as verified at ingest (sniffed, not merely declared).
|
|
310
|
+
*
|
|
311
|
+
* @generated from field: string content_type = 2;
|
|
312
|
+
*/
|
|
313
|
+
contentType: string;
|
|
314
|
+
/**
|
|
315
|
+
* File size in bytes as stored.
|
|
316
|
+
*
|
|
317
|
+
* @generated from field: int64 size_bytes = 3;
|
|
318
|
+
*/
|
|
319
|
+
sizeBytes: bigint;
|
|
320
|
+
};
|
|
321
|
+
/**
|
|
322
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationMediaRef.
|
|
323
|
+
* Use `create(ConversationMediaRefSchema)` to create a new message.
|
|
324
|
+
*/
|
|
325
|
+
export declare const ConversationMediaRefSchema: GenMessage<ConversationMediaRef>;
|
|
268
326
|
/**
|
|
269
327
|
* Input for listing an organization's channel conversations.
|
|
270
328
|
*
|
|
@@ -420,6 +478,62 @@ export type ConversationTimeline = Message<"ai.stigmer.agentic.agentchannel.v1.C
|
|
|
420
478
|
* Use `create(ConversationTimelineSchema)` to create a new message.
|
|
421
479
|
*/
|
|
422
480
|
export declare const ConversationTimelineSchema: GenMessage<ConversationTimeline>;
|
|
481
|
+
/**
|
|
482
|
+
* Input for minting a short-lived download URL for one timeline item's
|
|
483
|
+
* media file.
|
|
484
|
+
*
|
|
485
|
+
* @generated from message ai.stigmer.agentic.agentchannel.v1.GetConversationMediaDownloadUrlInput
|
|
486
|
+
*/
|
|
487
|
+
export type GetConversationMediaDownloadUrlInput = Message<"ai.stigmer.agentic.agentchannel.v1.GetConversationMediaDownloadUrlInput"> & {
|
|
488
|
+
/**
|
|
489
|
+
* AgentChannel the conversation belongs to.
|
|
490
|
+
*
|
|
491
|
+
* @generated from field: string agent_channel_id = 1;
|
|
492
|
+
*/
|
|
493
|
+
agentChannelId: string;
|
|
494
|
+
/**
|
|
495
|
+
* Conversation key within the channel (WhatsApp: the customer's wa_id).
|
|
496
|
+
*
|
|
497
|
+
* @generated from field: string conversation_key = 2;
|
|
498
|
+
*/
|
|
499
|
+
conversationKey: string;
|
|
500
|
+
/**
|
|
501
|
+
* The timeline item whose media to fetch (its item_id, e.g. "wa:<wamid>").
|
|
502
|
+
*
|
|
503
|
+
* @generated from field: string item_id = 3;
|
|
504
|
+
*/
|
|
505
|
+
itemId: string;
|
|
506
|
+
};
|
|
507
|
+
/**
|
|
508
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetConversationMediaDownloadUrlInput.
|
|
509
|
+
* Use `create(GetConversationMediaDownloadUrlInputSchema)` to create a new message.
|
|
510
|
+
*/
|
|
511
|
+
export declare const GetConversationMediaDownloadUrlInputSchema: GenMessage<GetConversationMediaDownloadUrlInput>;
|
|
512
|
+
/**
|
|
513
|
+
* ConversationMediaDownloadUrl carries a presigned, time-limited URL for
|
|
514
|
+
* one media file.
|
|
515
|
+
*
|
|
516
|
+
* @generated from message ai.stigmer.agentic.agentchannel.v1.ConversationMediaDownloadUrl
|
|
517
|
+
*/
|
|
518
|
+
export type ConversationMediaDownloadUrl = Message<"ai.stigmer.agentic.agentchannel.v1.ConversationMediaDownloadUrl"> & {
|
|
519
|
+
/**
|
|
520
|
+
* Presigned HTTPS URL. Fetch promptly; it expires.
|
|
521
|
+
*
|
|
522
|
+
* @generated from field: string url = 1;
|
|
523
|
+
*/
|
|
524
|
+
url: string;
|
|
525
|
+
/**
|
|
526
|
+
* When the URL stops working.
|
|
527
|
+
*
|
|
528
|
+
* @generated from field: google.protobuf.Timestamp expires_at = 2;
|
|
529
|
+
*/
|
|
530
|
+
expiresAt?: Timestamp;
|
|
531
|
+
};
|
|
532
|
+
/**
|
|
533
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationMediaDownloadUrl.
|
|
534
|
+
* Use `create(ConversationMediaDownloadUrlSchema)` to create a new message.
|
|
535
|
+
*/
|
|
536
|
+
export declare const ConversationMediaDownloadUrlSchema: GenMessage<ConversationMediaDownloadUrl>;
|
|
423
537
|
/**
|
|
424
538
|
* Input for the conversation control commands (takeOver, handBack,
|
|
425
539
|
* clearAttention).
|
|
@@ -11,7 +11,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
11
11
|
/**
|
|
12
12
|
* Describes the file ai/stigmer/agentic/agentchannel/v1/conversation_io.proto.
|
|
13
13
|
*/
|
|
14
|
-
export const file_ai_stigmer_agentic_agentchannel_v1_conversation_io = /*@__PURE__*/ fileDesc("CjhhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRjaGFubmVsL3YxL2NvbnZlcnNhdGlvbl9pby5wcm90bxIiYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MSL+
|
|
14
|
+
export const file_ai_stigmer_agentic_agentchannel_v1_conversation_io = /*@__PURE__*/ fileDesc("CjhhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRjaGFubmVsL3YxL2NvbnZlcnNhdGlvbl9pby5wcm90bxIiYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MSL+AwoTQ2hhbm5lbENvbnZlcnNhdGlvbhIYChBhZ2VudF9jaGFubmVsX2lkGAEgASgJEhgKEGNvbnZlcnNhdGlvbl9rZXkYAiABKAkSCwoDb3JnGAMgASgJEkgKB2NvbnRyb2wYBCABKA4yNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvbkNvbnRyb2wSFQoNY29udHJvbGxlZF9ieRgFIAEoCRI2ChJjb250cm9sX2NoYW5nZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD25lZWRzX2F0dGVudGlvbhgHIAEoCBIYChBhdHRlbnRpb25fcmVhc29uGAggASgJEjgKFGF0dGVudGlvbl9jaGFuZ2VkX2F0GAkgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIUCgxkaXNwbGF5X25hbWUYCiABKAkSPAoYbGFzdF9jdXN0b21lcl9tZXNzYWdlX2F0GAsgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI0ChBsYXN0X2FjdGl2aXR5X2F0GAwgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIWCg5hd2FpdGluZ19yZXBseRgNIAEoCCKRBQoYQ29udmVyc2F0aW9uVGltZWxpbmVJdGVtEg8KB2l0ZW1faWQYASABKAkSQgoEbGFuZRgCIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ29udmVyc2F0aW9uTGFuZRJKCgZhdXRob3IYAyABKA4yOi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvbkl0ZW1BdXRob3ISEwoLYXV0aG9yZWRfYnkYBCABKAkSDAoEdGV4dBgFIAEoCRIdChVwcm92aWRlcl9tZXNzYWdlX3R5cGUYBiABKAkSJgoCYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wElIKD2RlbGl2ZXJ5X3N0YXR1cxgIIAEoDjI5LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ2hhbm5lbERlbGl2ZXJ5U3RhdHVzEk4KDXJlY2VpcHRfc3RhdGUYCSABKA4yNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxSZWNlaXB0U3RhdGUSSQoGb3JpZ2luGAogASgOMjkuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsT3V0Ym91bmRPcmlnaW4SFgoOcmVjZWlwdF9kZXRhaWwYCyABKAkSGgoScmVjZWlwdF9lcnJvcl9jb2RlGAwgASgFEkcKBW1lZGlhGA0gASgLMjguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5Db252ZXJzYXRpb25NZWRpYVJlZiJSChRDb252ZXJzYXRpb25NZWRpYVJlZhIQCghmaWxlbmFtZRgBIAEoCRIUCgxjb250ZW50X3R5cGUYAiABKAkSEgoKc2l6ZV9ieXRlcxgDIAEoAyLjAQodTGlzdENoYW5uZWxDb252ZXJzYXRpb25zSW5wdXQSFgoDb3JnGAEgASgJQgm6SAZyBBABGD8SIgoQYWdlbnRfY2hhbm5lbF9pZBgCIAEoCUIIukgFcgMYgAESMwoJcGFnZV9pbmZvGAMgASgLMiAuYWkuc3RpZ21lci5jb21tb25zLnJwYy5QYWdlSW5mbxJRCgZmaWx0ZXIYBCABKA4yQS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxDb252ZXJzYXRpb25MaXN0RmlsdGVyInYKF0NoYW5uZWxDb252ZXJzYXRpb25MaXN0EhMKC3RvdGFsX2NvdW50GAEgASgFEkYKBWl0ZW1zGAIgAygLMjcuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsQ29udmVyc2F0aW9uImkKG0dldENoYW5uZWxDb252ZXJzYXRpb25JbnB1dBIkChBhZ2VudF9jaGFubmVsX2lkGAEgASgJQgq6SAdyBRABGIABEiQKEGNvbnZlcnNhdGlvbl9rZXkYAiABKAlCCrpIB3IFEAEYgAEikQEKHEdldENvbnZlcnNhdGlvblRpbWVsaW5lSW5wdXQSJAoQYWdlbnRfY2hhbm5lbF9pZBgBIAEoCUIKukgHcgUQARiAARIkChBjb252ZXJzYXRpb25fa2V5GAIgASgJQgq6SAdyBRABGIABEhEKCXBhZ2Vfc2l6ZRgDIAEoBRISCgpwYWdlX3Rva2VuGAQgASgJInwKFENvbnZlcnNhdGlvblRpbWVsaW5lEksKBWl0ZW1zGAEgAygLMjwuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5Db252ZXJzYXRpb25UaW1lbGluZUl0ZW0SFwoPbmV4dF9wYWdlX3Rva2VuGAIgASgJIo8BCiRHZXRDb252ZXJzYXRpb25NZWRpYURvd25sb2FkVXJsSW5wdXQSJAoQYWdlbnRfY2hhbm5lbF9pZBgBIAEoCUIKukgHcgUQARiAARIkChBjb252ZXJzYXRpb25fa2V5GAIgASgJQgq6SAdyBRABGIABEhsKB2l0ZW1faWQYAyABKAlCCrpIB3IFEAEYgAIiWwocQ29udmVyc2F0aW9uTWVkaWFEb3dubG9hZFVybBILCgN1cmwYASABKAkSLgoKZXhwaXJlc19hdBgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiZgoYQ29udmVyc2F0aW9uQ29udHJvbElucHV0EiQKEGFnZW50X2NoYW5uZWxfaWQYASABKAlCCrpIB3IFEAEYgAESJAoQY29udmVyc2F0aW9uX2tleRgCIAEoCUIKukgHcgUQARiAASK7AQoYUmVwbHlUb0NvbnZlcnNhdGlvbklucHV0EiQKEGFnZW50X2NoYW5uZWxfaWQYASABKAlCCrpIB3IFEAEYgAESJAoQY29udmVyc2F0aW9uX2tleRgCIAEoCUIKukgHcgUQARiAARJTCgdwYXlsb2FkGAMgASgLMjouYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsT3V0Ym91bmRQYXlsb2FkQga6SAPIAQEiNwoZRXNjYWxhdGVDb252ZXJzYXRpb25JbnB1dBIaCgZyZWFzb24YASABKAlCCrpIB3IFEAEYgAgqYQoTQ29udmVyc2F0aW9uQ29udHJvbBIkCiBjb252ZXJzYXRpb25fY29udHJvbF91bnNwZWNpZmllZBAAEhEKDWNvbnRyb2xfYWdlbnQQARIRCg1jb250cm9sX2h1bWFuEAIqWQoQQ29udmVyc2F0aW9uTGFuZRIhCh1jb252ZXJzYXRpb25fbGFuZV91bnNwZWNpZmllZBAAEg8KC2xhbmVfcHVibGljEAESEQoNbGFuZV9pbnRlcm5hbBACKpMBChZDb252ZXJzYXRpb25JdGVtQXV0aG9yEigKJGNvbnZlcnNhdGlvbl9pdGVtX2F1dGhvcl91bnNwZWNpZmllZBAAEhMKD2F1dGhvcl9jdXN0b21lchABEhAKDGF1dGhvcl9hZ2VudBACEhMKD2F1dGhvcl90ZWFtbWF0ZRADEhMKD2F1dGhvcl9wbGF0Zm9ybRAEKmkKHUNoYW5uZWxDb252ZXJzYXRpb25MaXN0RmlsdGVyEjAKLGNoYW5uZWxfY29udmVyc2F0aW9uX2xpc3RfZmlsdGVyX3Vuc3BlY2lmaWVkEAASFgoSZmlsdGVyX3dhbnRzX2h1bWFuEAFiBnByb3RvMw", [file_ai_stigmer_agentic_agentchannel_v1_delivery, file_ai_stigmer_agentic_agentchannel_v1_message_io, file_ai_stigmer_agentic_agentchannel_v1_outbound, file_ai_stigmer_commons_rpc_pagination, file_buf_validate_validate, file_google_protobuf_timestamp]);
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ChannelConversation.
|
|
17
17
|
* Use `create(ChannelConversationSchema)` to create a new message.
|
|
@@ -22,46 +22,61 @@ export const ChannelConversationSchema = /*@__PURE__*/ messageDesc(file_ai_stigm
|
|
|
22
22
|
* Use `create(ConversationTimelineItemSchema)` to create a new message.
|
|
23
23
|
*/
|
|
24
24
|
export const ConversationTimelineItemSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 1);
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationMediaRef.
|
|
27
|
+
* Use `create(ConversationMediaRefSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
export const ConversationMediaRefSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 2);
|
|
25
30
|
/**
|
|
26
31
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ListChannelConversationsInput.
|
|
27
32
|
* Use `create(ListChannelConversationsInputSchema)` to create a new message.
|
|
28
33
|
*/
|
|
29
|
-
export const ListChannelConversationsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
34
|
+
export const ListChannelConversationsInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 3);
|
|
30
35
|
/**
|
|
31
36
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ChannelConversationList.
|
|
32
37
|
* Use `create(ChannelConversationListSchema)` to create a new message.
|
|
33
38
|
*/
|
|
34
|
-
export const ChannelConversationListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
39
|
+
export const ChannelConversationListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 4);
|
|
35
40
|
/**
|
|
36
41
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput.
|
|
37
42
|
* Use `create(GetChannelConversationInputSchema)` to create a new message.
|
|
38
43
|
*/
|
|
39
|
-
export const GetChannelConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
44
|
+
export const GetChannelConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 5);
|
|
40
45
|
/**
|
|
41
46
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetConversationTimelineInput.
|
|
42
47
|
* Use `create(GetConversationTimelineInputSchema)` to create a new message.
|
|
43
48
|
*/
|
|
44
|
-
export const GetConversationTimelineInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
49
|
+
export const GetConversationTimelineInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 6);
|
|
45
50
|
/**
|
|
46
51
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimeline.
|
|
47
52
|
* Use `create(ConversationTimelineSchema)` to create a new message.
|
|
48
53
|
*/
|
|
49
|
-
export const ConversationTimelineSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
54
|
+
export const ConversationTimelineSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 7);
|
|
55
|
+
/**
|
|
56
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetConversationMediaDownloadUrlInput.
|
|
57
|
+
* Use `create(GetConversationMediaDownloadUrlInputSchema)` to create a new message.
|
|
58
|
+
*/
|
|
59
|
+
export const GetConversationMediaDownloadUrlInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 8);
|
|
60
|
+
/**
|
|
61
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationMediaDownloadUrl.
|
|
62
|
+
* Use `create(ConversationMediaDownloadUrlSchema)` to create a new message.
|
|
63
|
+
*/
|
|
64
|
+
export const ConversationMediaDownloadUrlSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 9);
|
|
50
65
|
/**
|
|
51
66
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationControlInput.
|
|
52
67
|
* Use `create(ConversationControlInputSchema)` to create a new message.
|
|
53
68
|
*/
|
|
54
|
-
export const ConversationControlInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
69
|
+
export const ConversationControlInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 10);
|
|
55
70
|
/**
|
|
56
71
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ReplyToConversationInput.
|
|
57
72
|
* Use `create(ReplyToConversationInputSchema)` to create a new message.
|
|
58
73
|
*/
|
|
59
|
-
export const ReplyToConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
74
|
+
export const ReplyToConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 11);
|
|
60
75
|
/**
|
|
61
76
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.EscalateConversationInput.
|
|
62
77
|
* Use `create(EscalateConversationInputSchema)` to create a new message.
|
|
63
78
|
*/
|
|
64
|
-
export const EscalateConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
79
|
+
export const EscalateConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 12);
|
|
65
80
|
/**
|
|
66
81
|
* ConversationControl names who may speak to the customer on a
|
|
67
82
|
* conversation's public lane.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation_io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,4IAA4I;AAC5I,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,gDAAgD,EAAE,MAAM,kBAAkB,CAAC;AAEpF,OAAO,EAAE,kDAAkD,EAAE,MAAM,oBAAoB,CAAC;AAExF,OAAO,EAAE,gDAAgD,EAAE,MAAM,kBAAkB,CAAC;AAEpF,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,uDAAuD,GAAY,aAAa,CAC3F,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"conversation_io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -99,5 +99,33 @@ export declare const ChannelConversationQueryController: {
|
|
|
99
99
|
readonly O: any;
|
|
100
100
|
readonly kind: any;
|
|
101
101
|
};
|
|
102
|
+
/**
|
|
103
|
+
* Mint a short-lived download URL for one inbound timeline item's
|
|
104
|
+
* media file (an image or document the customer sent).
|
|
105
|
+
*
|
|
106
|
+
* Answers NOT_FOUND when the item does not exist in this conversation
|
|
107
|
+
* or carries no ingested media (a text item, or media the platform
|
|
108
|
+
* declined to ingest).
|
|
109
|
+
*
|
|
110
|
+
* @internal
|
|
111
|
+
* whatsapp-media DD-001 D4: addressed by (channel, conversation,
|
|
112
|
+
* item_id) so the server resolves the storage key from its own row —
|
|
113
|
+
* the wire never carries blob capabilities, and authorization is
|
|
114
|
+
* declarative on the channel exactly like getTimeline (the channel is
|
|
115
|
+
* the trust boundary, DD-003 D-a). Deliberately stricter than the
|
|
116
|
+
* attachments-blob posture (authentication-only, ULID-as-capability)
|
|
117
|
+
* that the runner's download path rides: this is the human-facing
|
|
118
|
+
* read surface and law-firm client documents travel this pipeline.
|
|
119
|
+
* OSS answers NOT_FOUND unconditionally (cloud-only runtime, the
|
|
120
|
+
* getConversation posture).
|
|
121
|
+
*
|
|
122
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getMediaDownloadUrl
|
|
123
|
+
*/
|
|
124
|
+
readonly getMediaDownloadUrl: {
|
|
125
|
+
readonly name: "getMediaDownloadUrl";
|
|
126
|
+
readonly I: any;
|
|
127
|
+
readonly O: any;
|
|
128
|
+
readonly kind: any;
|
|
129
|
+
};
|
|
102
130
|
};
|
|
103
131
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file ai/stigmer/agentic/agentchannel/v1/conversation_query.proto (package ai.stigmer.agentic.agentchannel.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
import { ChannelConversation, ChannelConversationList, ConversationTimeline, GetChannelConversationInput, GetConversationTimelineInput, ListChannelConversationsInput } from "./conversation_io_pbjs";
|
|
5
|
+
import { ChannelConversation, ChannelConversationList, ConversationMediaDownloadUrl, ConversationTimeline, GetChannelConversationInput, GetConversationMediaDownloadUrlInput, GetConversationTimelineInput, ListChannelConversationsInput } from "./conversation_io_pbjs";
|
|
6
6
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
7
|
/**
|
|
8
8
|
* ChannelConversationQueryController serves the console's conversation
|
|
@@ -105,6 +105,34 @@ export const ChannelConversationQueryController = {
|
|
|
105
105
|
O: ConversationTimeline,
|
|
106
106
|
kind: MethodKind.Unary,
|
|
107
107
|
},
|
|
108
|
+
/**
|
|
109
|
+
* Mint a short-lived download URL for one inbound timeline item's
|
|
110
|
+
* media file (an image or document the customer sent).
|
|
111
|
+
*
|
|
112
|
+
* Answers NOT_FOUND when the item does not exist in this conversation
|
|
113
|
+
* or carries no ingested media (a text item, or media the platform
|
|
114
|
+
* declined to ingest).
|
|
115
|
+
*
|
|
116
|
+
* @internal
|
|
117
|
+
* whatsapp-media DD-001 D4: addressed by (channel, conversation,
|
|
118
|
+
* item_id) so the server resolves the storage key from its own row —
|
|
119
|
+
* the wire never carries blob capabilities, and authorization is
|
|
120
|
+
* declarative on the channel exactly like getTimeline (the channel is
|
|
121
|
+
* the trust boundary, DD-003 D-a). Deliberately stricter than the
|
|
122
|
+
* attachments-blob posture (authentication-only, ULID-as-capability)
|
|
123
|
+
* that the runner's download path rides: this is the human-facing
|
|
124
|
+
* read surface and law-firm client documents travel this pipeline.
|
|
125
|
+
* OSS answers NOT_FOUND unconditionally (cloud-only runtime, the
|
|
126
|
+
* getConversation posture).
|
|
127
|
+
*
|
|
128
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getMediaDownloadUrl
|
|
129
|
+
*/
|
|
130
|
+
getMediaDownloadUrl: {
|
|
131
|
+
name: "getMediaDownloadUrl",
|
|
132
|
+
I: GetConversationMediaDownloadUrlInput,
|
|
133
|
+
O: ConversationMediaDownloadUrl,
|
|
134
|
+
kind: MethodKind.Unary,
|
|
135
|
+
},
|
|
108
136
|
}
|
|
109
137
|
};
|
|
110
138
|
//# sourceMappingURL=conversation_query_connect.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation_query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,+IAA+I;AAC/I,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,oBAAoB,EAAE,2BAA2B,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"conversation_query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,+IAA+I;AAC/I,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,mBAAmB,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,oBAAoB,EAAE,2BAA2B,EAAE,oCAAoC,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAC;AAC1Q,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAG;IAChD,QAAQ,EAAE,uEAAuE;IACjF,OAAO,EAAE;QACP;;;;;;;;;;;;;;;WAeG;QACH,iBAAiB,EAAE;YACjB,IAAI,EAAE,mBAAmB;YACzB,CAAC,EAAE,6BAA6B;YAChC,CAAC,EAAE,uBAAuB;YAC1B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;;;;;;;WA2BG;QACH,eAAe,EAAE;YACf,IAAI,EAAE,iBAAiB;YACvB,CAAC,EAAE,2BAA2B;YAC9B,CAAC,EAAE,mBAAmB;YACtB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;WAkBG;QACH,WAAW,EAAE;YACX,IAAI,EAAE,aAAa;YACnB,CAAC,EAAE,4BAA4B;YAC/B,CAAC,EAAE,oBAAoB;YACvB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;;;;;;;;;;;;;;WAqBG;QACH,mBAAmB,EAAE;YACnB,IAAI,EAAE,qBAAqB;YAC3B,CAAC,EAAE,oCAAoC;YACvC,CAAC,EAAE,4BAA4B;YAC/B,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;KACF;CACO,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
-
import type { ChannelConversationListSchema, ChannelConversationSchema, ConversationTimelineSchema, GetChannelConversationInputSchema, GetConversationTimelineInputSchema, ListChannelConversationsInputSchema } from "./conversation_io_pb.js";
|
|
2
|
+
import type { ChannelConversationListSchema, ChannelConversationSchema, ConversationMediaDownloadUrlSchema, ConversationTimelineSchema, GetChannelConversationInputSchema, GetConversationMediaDownloadUrlInputSchema, GetConversationTimelineInputSchema, ListChannelConversationsInputSchema } from "./conversation_io_pb.js";
|
|
3
3
|
/**
|
|
4
4
|
* Describes the file ai/stigmer/agentic/agentchannel/v1/conversation_query.proto.
|
|
5
5
|
*/
|
|
@@ -100,4 +100,31 @@ export declare const ChannelConversationQueryController: GenService<{
|
|
|
100
100
|
input: typeof GetConversationTimelineInputSchema;
|
|
101
101
|
output: typeof ConversationTimelineSchema;
|
|
102
102
|
};
|
|
103
|
+
/**
|
|
104
|
+
* Mint a short-lived download URL for one inbound timeline item's
|
|
105
|
+
* media file (an image or document the customer sent).
|
|
106
|
+
*
|
|
107
|
+
* Answers NOT_FOUND when the item does not exist in this conversation
|
|
108
|
+
* or carries no ingested media (a text item, or media the platform
|
|
109
|
+
* declined to ingest).
|
|
110
|
+
*
|
|
111
|
+
* @internal
|
|
112
|
+
* whatsapp-media DD-001 D4: addressed by (channel, conversation,
|
|
113
|
+
* item_id) so the server resolves the storage key from its own row —
|
|
114
|
+
* the wire never carries blob capabilities, and authorization is
|
|
115
|
+
* declarative on the channel exactly like getTimeline (the channel is
|
|
116
|
+
* the trust boundary, DD-003 D-a). Deliberately stricter than the
|
|
117
|
+
* attachments-blob posture (authentication-only, ULID-as-capability)
|
|
118
|
+
* that the runner's download path rides: this is the human-facing
|
|
119
|
+
* read surface and law-firm client documents travel this pipeline.
|
|
120
|
+
* OSS answers NOT_FOUND unconditionally (cloud-only runtime, the
|
|
121
|
+
* getConversation posture).
|
|
122
|
+
*
|
|
123
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getMediaDownloadUrl
|
|
124
|
+
*/
|
|
125
|
+
getMediaDownloadUrl: {
|
|
126
|
+
methodKind: "unary";
|
|
127
|
+
input: typeof GetConversationMediaDownloadUrlInputSchema;
|
|
128
|
+
output: typeof ConversationMediaDownloadUrlSchema;
|
|
129
|
+
};
|
|
103
130
|
}>;
|
|
@@ -8,7 +8,7 @@ import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/agentic/agentchannel/v1/conversation_query.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_agentchannel_v1_conversation_query = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_agentic_agentchannel_v1_conversation_query = /*@__PURE__*/ fileDesc("CjthaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRjaGFubmVsL3YxL2NvbnZlcnNhdGlvbl9xdWVyeS5wcm90bxIiYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MTL0BgoiQ2hhbm5lbENvbnZlcnNhdGlvblF1ZXJ5Q29udHJvbGxlchKZAQoRbGlzdENvbnZlcnNhdGlvbnMSQS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkxpc3RDaGFubmVsQ29udmVyc2F0aW9uc0lucHV0GjsuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsQ29udmVyc2F0aW9uTGlzdCIE0LgYARLbAQoPZ2V0Q29udmVyc2F0aW9uEj8uYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5HZXRDaGFubmVsQ29udmVyc2F0aW9uSW5wdXQaNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxDb252ZXJzYXRpb24iTsK4GEoIARAvIhBhZ2VudF9jaGFubmVsX2lkKjJ1bmF1dGhvcml6ZWQgdG8gdmlldyBjb252ZXJzYXRpb25zIG9uIHRoaXMgY2hhbm5lbBLZAQoLZ2V0VGltZWxpbmUSQC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkdldENvbnZlcnNhdGlvblRpbWVsaW5lSW5wdXQaOC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvblRpbWVsaW5lIk7CuBhKCAEQLyIQYWdlbnRfY2hhbm5lbF9pZCoydW5hdXRob3JpemVkIHRvIHZpZXcgY29udmVyc2F0aW9ucyBvbiB0aGlzIGNoYW5uZWwS8QEKE2dldE1lZGlhRG93bmxvYWRVcmwSSC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkdldENvbnZlcnNhdGlvbk1lZGlhRG93bmxvYWRVcmxJbnB1dBpALmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ29udmVyc2F0aW9uTWVkaWFEb3dubG9hZFVybCJOwrgYSggBEC8iEGFnZW50X2NoYW5uZWxfaWQqMnVuYXV0aG9yaXplZCB0byB2aWV3IGNvbnZlcnNhdGlvbnMgb24gdGhpcyBjaGFubmVsGgSg/ysvYgZwcm90bzM", [file_ai_stigmer_agentic_agentchannel_v1_conversation_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
12
12
|
/**
|
|
13
13
|
* ChannelConversationQueryController serves the console's conversation
|
|
14
14
|
* reads: the org-wide conversation list and each conversation's
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation_query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,+IAA+I;AAC/I,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,uDAAuD,EAAE,MAAM,yBAAyB,CAAC;AAClG,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,0DAA0D,GAAY,aAAa,CAC9F,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"conversation_query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/conversation_query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,+IAA+I;AAC/I,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,uDAAuD,EAAE,MAAM,yBAAyB,CAAC;AAClG,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,0DAA0D,GAAY,aAAa,CAC9F,QAAQ,CAAC,6yCAA6yC,EAAE,CAAC,uDAAuD,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAE19C;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,kCAAkC,GA0G1C,aAAa,CAChB,WAAW,CAAC,0DAA0D,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -787,11 +787,14 @@ export type UploadAttachmentRequest = Message<"ai.stigmer.agentic.agentexecution
|
|
|
787
787
|
* Original filename of the attachment.
|
|
788
788
|
*
|
|
789
789
|
* Used in the storage path and for display purposes.
|
|
790
|
-
*
|
|
790
|
+
* Must be a bare filename with no path separators and no `.`/`..` traversal
|
|
791
|
+
* segments — it is interpolated into the storage key and, on the local
|
|
792
|
+
* backend, into an on-disk path.
|
|
791
793
|
*
|
|
792
794
|
* Examples: "dataset.csv", "config.json", "report.pdf"
|
|
793
795
|
*
|
|
794
|
-
* Validation: Required, minimum 1 character
|
|
796
|
+
* Validation: Required, minimum 1 character, no path separators or traversal
|
|
797
|
+
* segments
|
|
795
798
|
*
|
|
796
799
|
* @generated from field: string filename = 1;
|
|
797
800
|
*/
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_duration } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/io.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_io = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_io = /*@__PURE__*/ fileDesc("Ci1haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvaW8ucHJvdG8SJGFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MSIpChBBZ2VudEV4ZWN1dGlvbklkEhUKBXZhbHVlGAEgASgJQga6SAPIAQEiIgoJU2Vzc2lvbklkEhUKBXZhbHVlGAEgASgJQga6SAPIAQEicAoSQWdlbnRFeGVjdXRpb25MaXN0EhMKC3RvdGFsX3BhZ2VzGAEgASgFEkUKB2VudHJpZXMYAiADKAsyNC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQWdlbnRFeGVjdXRpb24iowEKGkxpc3RBZ2VudEV4ZWN1dGlvbnNSZXF1ZXN0EhEKCXBhZ2Vfc2l6ZRgBIAEoBRISCgpwYWdlX3Rva2VuGAIgASgJEkMKBXBoYXNlGAMgASgOMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkV4ZWN1dGlvblBoYXNlEgwKBHRhZ3MYBCADKAkSCwoDb3JnGAUgASgJImgKI0xpc3RBZ2VudEV4ZWN1dGlvbnNCeVNlc3Npb25SZXF1ZXN0EhoKCnNlc3Npb25faWQYASABKAlCBrpIA8gBARIRCglwYWdlX3NpemUYAiABKAUSEgoKcGFnZV90b2tlbhgDIAEoCSKUAQofQWdlbnRFeGVjdXRpb25VcGRhdGVTdGF0dXNJbnB1dBIdCgxleGVjdXRpb25faWQYASABKAlCB7pIBHICEAESUgoGc3RhdHVzGAIgASgLMjouYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50RXhlY3V0aW9uU3RhdHVzQga6SAPIAQEiewoUVXBkYXRlU3RhdHVzUmVzcG9uc2USTAoGc2lnbmFsGAEgASgOMjwuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkV4ZWN1dGlvbkNvbnRyb2xTaWduYWwSFQoNc2lnbmFsX3JlYXNvbhgCIAEoCSK8AQoTU3VibWl0QXBwcm92YWxJbnB1dBIjChJhZ2VudF9leGVjdXRpb25faWQYASABKAlCB7pIBHICEAESHQoMdG9vbF9jYWxsX2lkGAIgASgJQge6SARyAhABElAKBmFjdGlvbhgDIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BcHByb3ZhbEFjdGlvbkIKukgHggEEEAEgABIPCgdjb21tZW50GAQgASgJImQKFEFwcHJvdmFsRGVjaXNpb25MaXN0EkwKCWRlY2lzaW9ucxgBIAMoCzI5LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5TdWJtaXRBcHByb3ZhbElucHV0IvQCChdTdWJtaXRGaWxlRGVjaXNpb25JbnB1dBIjChJhZ2VudF9leGVjdXRpb25faWQYASABKAlCB7pIBHICEAESHgoNY2hhbmdlX3NldF9pZBgCIAEoCUIHukgEcgIQARJSCgVzY29wZRgDIAEoDjI3LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5GaWxlRGVjaXNpb25TY29wZUIKukgHggEEEAEgABIWCg5maWxlX2NoYW5nZV9pZBgEIAEoCRJUCgZhY3Rpb24YBSABKA4yOC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuRmlsZURlY2lzaW9uQWN0aW9uQgq6SAeCAQQQASAAEiAKD2V4cGVjdGVkX2RpZ2VzdBgGIAEoCUIHukgEcgIQARIOCgZyZWFzb24YByABKAkSIAoYYWNrbm93bGVkZ2VfdW5yZXZpZXdhYmxlGAggASgIIkAKGUNhbmNlbEFnZW50RXhlY3V0aW9uSW5wdXQSEwoCaWQYASABKAlCB7pIBHICEAESDgoGcmVhc29uGAIgASgJIkMKHFRlcm1pbmF0ZUFnZW50RXhlY3V0aW9uSW5wdXQSEwoCaWQYASABKAlCB7pIBHICEAESDgoGcmVhc29uGAIgASgJIjEKGlJlY292ZXJBZ2VudEV4ZWN1dGlvbklucHV0EhMKAmlkGAEgASgJQge6SARyAhABIj8KGFBhdXNlQWdlbnRFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQARIOCgZyZWFzb24YAiABKAkiMAoZUmVzdW1lQWdlbnRFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQASKqAgoXVXBsb2FkQXR0YWNobWVudFJlcXVlc3QS3wEKCGZpbGVuYW1lGAEgASgJQswBukjIAboBwAEKInVwbG9hZF9hdHRhY2htZW50LmZpbGVuYW1lLm5vX3BhdGgSTmZpbGVuYW1lIG11c3QgYmUgYSBiYXJlIGZpbGVuYW1lIHdpdGhvdXQgcGF0aCBzZXBhcmF0b3JzIG9yIHRyYXZlcnNhbCBzZWdtZW50cxpKIXRoaXMuY29udGFpbnMoJy8nKSAmJiAhdGhpcy5jb250YWlucygnXFwnKSAmJiB0aGlzICE9ICcuJyAmJiB0aGlzICE9ICcuLidyAhABEhcKB2NvbnRlbnQYAiABKAxCBrpIA8gBARIUCgxjb250ZW50X3R5cGUYAyABKAkiLwoYVXBsb2FkQXR0YWNobWVudFJlc3BvbnNlEhMKC3N0b3JhZ2Vfa2V5GAEgASgJInMKHUdldEFydGlmYWN0RG93bmxvYWRVcmxSZXF1ZXN0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQARIcCgtzdG9yYWdlX2tleRgCIAEoCUIHukgEcgIQARIVCg1hc19hdHRhY2htZW50GAMgASgIIkoKHkdldEFydGlmYWN0RG93bmxvYWRVcmxSZXNwb25zZRIUCgxkb3dubG9hZF91cmwYASABKAkSEgoKZXhwaXJlc19hdBgCIAEoCSJ/ChlHZXRBcnRpZmFjdENvbnRlbnRSZXF1ZXN0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQARIcCgtzdG9yYWdlX2tleRgCIAEoCUIHukgEcgIQARIRCgltYXhfYnl0ZXMYAyABKAMSEgoKZW50cnlfcGF0aBgEIAEoCSJwChpHZXRBcnRpZmFjdENvbnRlbnRSZXNwb25zZRIPCgdjb250ZW50GAEgASgMEhQKDGNvbnRlbnRfdHlwZRgCIAEoCRIYChB0b3RhbF9zaXplX2J5dGVzGAMgASgDEhEKCXRydW5jYXRlZBgEIAEoCCI9ChxHZXRFeGVjdXRpb25Vc2FnZVJlcG9ydElucHV0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQASK5AQodR2V0RXhlY3V0aW9uVXNhZ2VSZXBvcnRPdXRwdXQSTQoJYWdncmVnYXRlGAEgASgLMjouYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLlVzYWdlUmVwb3J0QWdncmVnYXRlEkkKD21vZGVsX2JyZWFrZG93bhgCIAMoCzIwLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Nb2RlbFVzYWdlIjkKGkdldFNlc3Npb25Vc2FnZVJlcG9ydElucHV0EhsKCnNlc3Npb25faWQYASABKAlCB7pIBHICEAEihAMKG0dldFNlc3Npb25Vc2FnZVJlcG9ydE91dHB1dBISCgpzZXNzaW9uX2lkGAEgASgJEhcKD2V4ZWN1dGlvbl9jb3VudBgCIAEoBRJPCgt0b3RhbF91c2FnZRgDIAEoCzI6LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Vc2FnZVJlcG9ydEFnZ3JlZ2F0ZRJPCgpleGVjdXRpb25zGAQgAygLMjsuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkV4ZWN1dGlvblVzYWdlU3VtbWFyeRJJCg9tb2RlbF9icmVha2Rvd24YBSADKAsyMC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuTW9kZWxVc2FnZRIaChJmaXJzdF9leGVjdXRpb25fYXQYBiABKAkSGQoRbGFzdF9leGVjdXRpb25fYXQYByABKAkSFAoMaXNfZXN0aW1hdGVkGAggASgIIoABChhHZXRBZ2VudFVzYWdlUmVwb3J0SW5wdXQSGQoIYWdlbnRfaWQYASABKAlCB7pIBHICEAESEQoJZnJvbV9kYXRlGAIgASgJEg8KB3RvX2RhdGUYAyABKAkSEQoJcGFnZV9zaXplGAQgASgFEhIKCnBhZ2VfdG9rZW4YBSABKAkimQMKGUdldEFnZW50VXNhZ2VSZXBvcnRPdXRwdXQSEAoIYWdlbnRfaWQYASABKAkSEgoKYWdlbnRfbmFtZRgCIAEoCRJPCgt0b3RhbF91c2FnZRgDIAEoCzI6LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Vc2FnZVJlcG9ydEFnZ3JlZ2F0ZRJJCg9tb2RlbF9icmVha2Rvd24YBCADKAsyMC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuTW9kZWxVc2FnZRJLCghzZXNzaW9ucxgFIAMoCzI5LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5TZXNzaW9uVXNhZ2VTdW1tYXJ5EhYKDnRvdGFsX3Nlc3Npb25zGAYgASgFEhgKEHRvdGFsX2V4ZWN1dGlvbnMYByABKAUSIgoadG90YWxfYmlsbGFibGVfY29zdF9taWNyb3MYCCABKAMSFwoPbmV4dF9wYWdlX3Rva2VuGAkgASgJImcKFkdldE9yZ1VzYWdlUmVwb3J0SW5wdXQSFwoGb3JnX2lkGAEgASgJQge6SARyAhABEhoKCWZyb21fZGF0ZRgCIAEoCUIHukgEcgIQARIYCgd0b19kYXRlGAMgASgJQge6SARyAhABItUDChdHZXRPcmdVc2FnZVJlcG9ydE91dHB1dBIOCgZvcmdfaWQYASABKAkSFAoMdG90YWxfYWdlbnRzGAIgASgFEhYKDnRvdGFsX3Nlc3Npb25zGAMgASgFEhgKEHRvdGFsX2V4ZWN1dGlvbnMYBCABKAUSIgoadG90YWxfYmlsbGFibGVfY29zdF9taWNyb3MYBSABKAMSSQoPbW9kZWxfYnJlYWtkb3duGAYgAygLMjAuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLk1vZGVsVXNhZ2USUwoSdG9wX2FnZW50c19ieV9jb3N0GAcgAygLMjcuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50VXNhZ2VTdW1tYXJ5EkkKC2RhaWx5X2Nvc3RzGAggAygLMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkRhaWx5Q29zdEVudHJ5ElMKEWhhcm5lc3NfYnJlYWtkb3duGAkgAygLMjguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkhhcm5lc3NDb3N0U3VtbWFyeSLOAgoVRXhlY3V0aW9uVXNhZ2VTdW1tYXJ5EhQKDGV4ZWN1dGlvbl9pZBgBIAEoCRISCgpzdGFydGVkX2F0GAIgASgJEhQKDGNvbXBsZXRlZF9hdBgDIAEoCRIUCgxpbnB1dF90b2tlbnMYBCABKAMSFQoNb3V0cHV0X3Rva2VucxgFIAEoAxIfChdjYWNoZV9yZWFkX2lucHV0X3Rva2VucxgGIAEoAxIcChRiaWxsYWJsZV9jb3N0X21pY3JvcxgHIAEoAxIVCg1wcmltYXJ5X21vZGVsGAggASgJEhcKD3N1Yl9hZ2VudF9jb3VudBgJIAEoBRJDCgVwaGFzZRgKIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5FeGVjdXRpb25QaGFzZRIUCgxpc19lc3RpbWF0ZWQYCyABKAgirQEKE1Nlc3Npb25Vc2FnZVN1bW1hcnkSEgoKc2Vzc2lvbl9pZBgBIAEoCRIXCg9leGVjdXRpb25fY291bnQYAiABKAUSFAoMdG90YWxfdG9rZW5zGAMgASgDEhwKFGJpbGxhYmxlX2Nvc3RfbWljcm9zGAQgASgDEhoKEmZpcnN0X2V4ZWN1dGlvbl9hdBgFIAEoCRIZChFsYXN0X2V4ZWN1dGlvbl9hdBgGIAEoCSKGAQoRQWdlbnRVc2FnZVN1bW1hcnkSEAoIYWdlbnRfaWQYASABKAkSEgoKYWdlbnRfbmFtZRgCIAEoCRIXCg9leGVjdXRpb25fY291bnQYAyABKAUSFAoMdG90YWxfdG9rZW5zGAQgASgDEhwKFGJpbGxhYmxlX2Nvc3RfbWljcm9zGAUgASgDImsKDkRhaWx5Q29zdEVudHJ5EgwKBGRhdGUYASABKAkSFwoPZXhlY3V0aW9uX2NvdW50GAIgASgFEhQKDHRvdGFsX3Rva2VucxgDIAEoAxIcChRiaWxsYWJsZV9jb3N0X21pY3JvcxgEIAEoAyJwChJIYXJuZXNzQ29zdFN1bW1hcnkSDwoHaGFybmVzcxgBIAEoCRIcChRiaWxsYWJsZV9jb3N0X21pY3JvcxgCIAEoAxISCgpjYWxsX2NvdW50GAMgASgFEhcKD2V4ZWN1dGlvbl9jb3VudBgEIAEoBSKTAQofR2V0QWdlbnRFeGVjdXRpb25TdW1tYXJ5UmVxdWVzdBIUCgNvcmcYASABKAlCB7pIBHICEAESWgoLdGltZV93aW5kb3cYAiABKA4yRS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQWdlbnRFeGVjdXRpb25TdW1tYXJ5VGltZVdpbmRvdyLKAgoVQWdlbnRFeGVjdXRpb25TdW1tYXJ5EhQKDGFjdGl2ZV9jb3VudBgBIAEoBRJiCgxwaGFzZV9jb3VudHMYAiADKAsyTC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQWdlbnRFeGVjdXRpb25TdW1tYXJ5LlBoYXNlQ291bnRzRW50cnkSLwoMYXZnX2R1cmF0aW9uGAMgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uElIKEnRvcF9mYWlsaW5nX2FnZW50cxgEIAMoCzI2LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BZ2VudEZhaWx1cmVSYW5rGjIKEFBoYXNlQ291bnRzRW50cnkSCwoDa2V5GAEgASgFEg0KBXZhbHVlGAIgASgFOgI4ASJRChBBZ2VudEZhaWx1cmVSYW5rEhIKCmFnZW50X3NsdWcYASABKAkSEgoKYWdlbnRfbmFtZRgCIAEoCRIVCg1mYWlsdXJlX2NvdW50GAMgASgFKp0CCh9BZ2VudEV4ZWN1dGlvblN1bW1hcnlUaW1lV2luZG93EjMKL0FHRU5UX0VYRUNVVElPTl9TVU1NQVJZX1RJTUVfV0lORE9XX1VOU1BFQ0lGSUVEEAASMAosQUdFTlRfRVhFQ1VUSU9OX1NVTU1BUllfVElNRV9XSU5ET1dfTEFTVF8yNEgQARIvCitBR0VOVF9FWEVDVVRJT05fU1VNTUFSWV9USU1FX1dJTkRPV19MQVNUXzdEEAISMAosQUdFTlRfRVhFQ1VUSU9OX1NVTU1BUllfVElNRV9XSU5ET1dfTEFTVF8zMEQQAxIwCixBR0VOVF9FWEVDVVRJT05fU1VNTUFSWV9USU1FX1dJTkRPV19BTExfVElNRRAEYgZwcm90bzM", [file_ai_stigmer_agentic_agentexecution_v1_api, file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_agentexecution_v1_usage, file_buf_validate_validate, file_google_protobuf_duration]);
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecutionId.
|
|
16
16
|
* Use `create(AgentExecutionIdSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,mIAAmI;AACnI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,6CAA6C,EAAE,MAAM,aAAa,CAAC;AAE5E,OAAO,EAAE,8CAA8C,EAAE,MAAM,cAAc,CAAC;AAE9E,OAAO,EAAE,+CAA+C,EAAE,MAAM,eAAe,CAAC;AAChF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAC;AAGvE;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/io_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -58,24 +58,33 @@ export declare const AgentExecutionQueryController: {
|
|
|
58
58
|
readonly kind: any;
|
|
59
59
|
};
|
|
60
60
|
/**
|
|
61
|
-
* Get a presigned download URL for an execution artifact.
|
|
61
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
62
62
|
*
|
|
63
63
|
* Returns a time-limited URL for downloading an artifact published by
|
|
64
|
-
* an agent during execution
|
|
65
|
-
* request without
|
|
64
|
+
* an agent during execution, or an attachment submitted with the
|
|
65
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
66
|
+
* authentication.
|
|
66
67
|
*
|
|
67
68
|
* @internal
|
|
68
69
|
*
|
|
69
70
|
* ## Authorization
|
|
70
71
|
*
|
|
71
72
|
* Requires can_view permission on the execution. This ensures users can
|
|
72
|
-
* only download
|
|
73
|
+
* only download files from executions they have access to.
|
|
73
74
|
*
|
|
74
75
|
* ## Security
|
|
75
76
|
*
|
|
76
77
|
* The storage_key is validated to ensure it belongs to the specified
|
|
77
|
-
* execution.
|
|
78
|
-
*
|
|
78
|
+
* execution. Two key forms are accepted:
|
|
79
|
+
*
|
|
80
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
81
|
+
* the embedded execution id is the ownership proof
|
|
82
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
83
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
84
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
85
|
+
* no execution id
|
|
86
|
+
*
|
|
87
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
79
88
|
*
|
|
80
89
|
* ## URL Expiration
|
|
81
90
|
*
|
|
@@ -86,12 +95,13 @@ export declare const AgentExecutionQueryController: {
|
|
|
86
95
|
*
|
|
87
96
|
* - CLI downloading agent-created files
|
|
88
97
|
* - Web UI providing download links for artifacts
|
|
98
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
89
99
|
* - Refreshing expired download URLs
|
|
90
100
|
*
|
|
91
101
|
* ## Example Flow
|
|
92
102
|
*
|
|
93
103
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
94
|
-
* 2. Find artifact in status.artifacts[]
|
|
104
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
95
105
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
96
106
|
* 4. Use returned download_url for HTTP GET
|
|
97
107
|
*
|
|
@@ -65,24 +65,33 @@ export const AgentExecutionQueryController = {
|
|
|
65
65
|
kind: MethodKind.ServerStreaming,
|
|
66
66
|
},
|
|
67
67
|
/**
|
|
68
|
-
* Get a presigned download URL for an execution artifact.
|
|
68
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
69
69
|
*
|
|
70
70
|
* Returns a time-limited URL for downloading an artifact published by
|
|
71
|
-
* an agent during execution
|
|
72
|
-
* request without
|
|
71
|
+
* an agent during execution, or an attachment submitted with the
|
|
72
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
73
|
+
* authentication.
|
|
73
74
|
*
|
|
74
75
|
* @internal
|
|
75
76
|
*
|
|
76
77
|
* ## Authorization
|
|
77
78
|
*
|
|
78
79
|
* Requires can_view permission on the execution. This ensures users can
|
|
79
|
-
* only download
|
|
80
|
+
* only download files from executions they have access to.
|
|
80
81
|
*
|
|
81
82
|
* ## Security
|
|
82
83
|
*
|
|
83
84
|
* The storage_key is validated to ensure it belongs to the specified
|
|
84
|
-
* execution.
|
|
85
|
-
*
|
|
85
|
+
* execution. Two key forms are accepted:
|
|
86
|
+
*
|
|
87
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
88
|
+
* the embedded execution id is the ownership proof
|
|
89
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
90
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
91
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
92
|
+
* no execution id
|
|
93
|
+
*
|
|
94
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
86
95
|
*
|
|
87
96
|
* ## URL Expiration
|
|
88
97
|
*
|
|
@@ -93,12 +102,13 @@ export const AgentExecutionQueryController = {
|
|
|
93
102
|
*
|
|
94
103
|
* - CLI downloading agent-created files
|
|
95
104
|
* - Web UI providing download links for artifacts
|
|
105
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
96
106
|
* - Refreshing expired download URLs
|
|
97
107
|
*
|
|
98
108
|
* ## Example Flow
|
|
99
109
|
*
|
|
100
110
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
101
|
-
* 2. Find artifact in status.artifacts[]
|
|
111
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
102
112
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
103
113
|
* 4. Use returned download_url for HTTP GET
|
|
104
114
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_connect.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,sIAAsI;AACtI,oBAAoB;AACpB,cAAc;AAEd,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,+BAA+B,EAAE,wBAAwB,EAAE,yBAAyB,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,6BAA6B,EAAE,8BAA8B,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,sBAAsB,EAAE,uBAAuB,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,mCAAmC,EAAE,0BAA0B,EAAE,MAAM,WAAW,CAAC;AAC5gB,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAG;IAC3C,QAAQ,EAAE,oEAAoE;IAC9E,OAAO,EAAE;QACP;;;;WAIG;QACH,GAAG,EAAE;YACH,IAAI,EAAE,KAAK;YACX,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,cAAc;YACjB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;WAIG;QACH,IAAI,EAAE;YACJ,IAAI,EAAE,MAAM;YACZ,CAAC,EAAE,0BAA0B;YAC7B,CAAC,EAAE,kBAAkB;YACrB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;;WAQG;QACH,aAAa,EAAE;YACb,IAAI,EAAE,eAAe;YACrB,CAAC,EAAE,mCAAmC;YACtC,CAAC,EAAE,kBAAkB;YACrB,IAAI,EAAE,UAAU,CAAC,KAAK;SACvB;QACD;;;;;;;WAOG;QACH,SAAS,EAAE;YACT,IAAI,EAAE,WAAW;YACjB,CAAC,EAAE,gBAAgB;YACnB,CAAC,EAAE,cAAc;YACjB,IAAI,EAAE,UAAU,CAAC,eAAe;SACjC;QACD
|
|
1
|
+
{"version":3,"file":"query_connect.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_connect.ts"],"names":[],"mappings":"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"}
|
|
@@ -59,24 +59,33 @@ export declare const AgentExecutionQueryController: GenService<{
|
|
|
59
59
|
output: typeof AgentExecutionSchema;
|
|
60
60
|
};
|
|
61
61
|
/**
|
|
62
|
-
* Get a presigned download URL for an execution artifact.
|
|
62
|
+
* Get a presigned download URL for an execution artifact or attachment.
|
|
63
63
|
*
|
|
64
64
|
* Returns a time-limited URL for downloading an artifact published by
|
|
65
|
-
* an agent during execution
|
|
66
|
-
* request without
|
|
65
|
+
* an agent during execution, or an attachment submitted with the
|
|
66
|
+
* execution. The URL can be used with a simple HTTP GET request without
|
|
67
|
+
* authentication.
|
|
67
68
|
*
|
|
68
69
|
* @internal
|
|
69
70
|
*
|
|
70
71
|
* ## Authorization
|
|
71
72
|
*
|
|
72
73
|
* Requires can_view permission on the execution. This ensures users can
|
|
73
|
-
* only download
|
|
74
|
+
* only download files from executions they have access to.
|
|
74
75
|
*
|
|
75
76
|
* ## Security
|
|
76
77
|
*
|
|
77
78
|
* The storage_key is validated to ensure it belongs to the specified
|
|
78
|
-
* execution.
|
|
79
|
-
*
|
|
79
|
+
* execution. Two key forms are accepted:
|
|
80
|
+
*
|
|
81
|
+
* - "artifacts/{execution_id}/..." — outputs published by the execution;
|
|
82
|
+
* the embedded execution id is the ownership proof
|
|
83
|
+
* - a key listed verbatim in the execution's spec.attachments — inputs
|
|
84
|
+
* submitted with the turn ("attachments/{ulid}/{filename}", ULID-unique
|
|
85
|
+
* per upload); ownership is the spec reference, since the key carries
|
|
86
|
+
* no execution id
|
|
87
|
+
*
|
|
88
|
+
* Any other key is rejected to prevent path traversal attacks.
|
|
80
89
|
*
|
|
81
90
|
* ## URL Expiration
|
|
82
91
|
*
|
|
@@ -87,12 +96,13 @@ export declare const AgentExecutionQueryController: GenService<{
|
|
|
87
96
|
*
|
|
88
97
|
* - CLI downloading agent-created files
|
|
89
98
|
* - Web UI providing download links for artifacts
|
|
99
|
+
* - Web UI rendering submitted attachments in the message thread
|
|
90
100
|
* - Refreshing expired download URLs
|
|
91
101
|
*
|
|
92
102
|
* ## Example Flow
|
|
93
103
|
*
|
|
94
104
|
* 1. Get execution via AgentExecutionQueryController.get
|
|
95
|
-
* 2. Find artifact in status.artifacts[]
|
|
105
|
+
* 2. Find artifact in status.artifacts[] (or attachment in spec.attachments[])
|
|
96
106
|
* 3. Call getArtifactDownloadUrl with execution_id and storage_key
|
|
97
107
|
* 4. Use returned download_url for HTTP GET
|
|
98
108
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,6CAA6C,EAAE,MAAM,aAAa,CAAC;AAE5E,OAAO,EAAE,4CAA4C,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,o9FAAo9F,EAAE,CAAC,6CAA6C,EAAE,4CAA4C,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAErqG;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,
|
|
1
|
+
{"version":3,"file":"query_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/query_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,sIAAsI;AACtI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,6CAA6C,EAAE,MAAM,aAAa,CAAC;AAE5E,OAAO,EAAE,4CAA4C,EAAE,MAAM,YAAY,CAAC;AAC1E,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,o9FAAo9F,EAAE,CAAC,6CAA6C,EAAE,4CAA4C,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAErqG;;;;GAIG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAyOrC,aAAa,CAChB,WAAW,CAAC,+CAA+C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -661,6 +661,11 @@ export type Attachment = Message<"ai.stigmer.agentic.agentexecution.v1.Attachmen
|
|
|
661
661
|
* Original filename for display and default mount path derivation.
|
|
662
662
|
* Example: "config.yaml", "input-data.zip"
|
|
663
663
|
*
|
|
664
|
+
* Must be a bare filename: no path separators and no `.`/`..` traversal
|
|
665
|
+
* segments. The filename is interpolated into the storage key and, on the
|
|
666
|
+
* local backend, into an on-disk path, so path structure here is a
|
|
667
|
+
* directory-traversal vector.
|
|
668
|
+
*
|
|
664
669
|
* @generated from field: string filename = 1;
|
|
665
670
|
*/
|
|
666
671
|
filename: string;
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bu
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/spec.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_agentexecution_v1_spec = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_agentexecution_v1_spec = /*@__PURE__*/ fileDesc("Ci9haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvc3BlYy5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxIrUJChJBZ2VudEV4ZWN1dGlvblNwZWMSEgoKc2Vzc2lvbl9pZBgBIAEoCRIQCghhZ2VudF9pZBgCIAEoCRJACgxzZXNzaW9uX3NwZWMYDSABKAsyKi5haS5zdGlnbWVyLmFnZW50aWMuc2Vzc2lvbi52MS5TZXNzaW9uU3BlYxIYCgdtZXNzYWdlGAMgASgJQge6SARyAhABEk8KEGV4ZWN1dGlvbl9jb25maWcYBCABKAsyNS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuRXhlY3V0aW9uQ29uZmlnEl0KC3J1bnRpbWVfZW52GAUgAygLMkguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50RXhlY3V0aW9uU3BlYy5SdW50aW1lRW52RW50cnkSFgoOY2FsbGJhY2tfdG9rZW4YBiABKAwSGAoQYXV0b19hcHByb3ZlX2FsbBgHIAEoCBIaChJwYXJlbnRfd29ya2Zsb3dfaWQYCCABKAkSRQoLYXR0YWNobWVudHMYCSADKAsyMC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQXR0YWNobWVudBIbChN3b3Jrc3BhY2VfZmlsZV9yZWZzGAogAygJEhsKE2FjdGl2aXR5X3Rhc2tfcXVldWUYCyABKAkSHwoXc3VwZXJzZWRlc19leGVjdXRpb25faWQYDCABKAkSVwoUY29udmVyc2F0aW9uX2NhdGNodXAYDiABKAsyOS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQ29udmVyc2F0aW9uQ2F0Y2h1cBppCg9SdW50aW1lRW52RW50cnkSCwoDa2V5GAEgASgJEkUKBXZhbHVlGAIgASgLMjYuYWkuc3RpZ21lci5hZ2VudGljLmV4ZWN1dGlvbmNvbnRleHQudjEuRXhlY3V0aW9uVmFsdWU6AjgBOrgDuki0AxrLAQohYWdlbnRfZXhlY3V0aW9uLnNlc3Npb25fZXhjbHVzaXZlEnJzZXNzaW9uX2lkIGFuZCBzZXNzaW9uX3NwZWMgYXJlIG11dHVhbGx5IGV4Y2x1c2l2ZSDigJQgcmVmZXJlbmNlIGFuIGV4aXN0aW5nIHNlc3Npb24gb3IgZGVmaW5lIGEgbmV3IG9uZSwgbm90IGJvdGgaMiEodGhpcy5zZXNzaW9uX2lkICE9ICcnICYmIGhhcyh0aGlzLnNlc3Npb25fc3BlYykpGuMBCiphZ2VudF9leGVjdXRpb24uc2Vzc2lvbl9zcGVjX2hhcm5lc3Nfc3RhdGUScHNlc3Npb25fc3BlYy5oYXJuZXNzX3N0YXRlX2lkIG11c3QgYmUgZW1wdHkg4oCUIGhhcm5lc3Mgc3RhdGUgaXMgY3JlYXRlZCBieSB0aGUgcnVubmVyIGFmdGVyIHRoZSBmaXJzdCBleGVjdXRpb24aQyFoYXModGhpcy5zZXNzaW9uX3NwZWMpIHx8IHRoaXMuc2Vzc2lvbl9zcGVjLmhhcm5lc3Nfc3RhdGVfaWQgPT0gJycipQQKD0V4ZWN1dGlvbkNvbmZpZxISCgptb2RlbF9uYW1lGAEgASgJElkKEmNvbnRleHRfbWFuYWdlbWVudBgCIAEoCzI9LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Db250ZXh0TWFuYWdlbWVudENvbmZpZxIXCg9tYXhfdG9vbF9yb3VuZHMYAyABKAUSHQoVbWF4X3Rvb2xfcmVzdWx0X2NoYXJzGAQgASgFEhQKDG1heF9jb3N0X3VzZBgFIAEoARJZChBpbnRlcmFjdGlvbl9tb2RlGAYgASgOMjUuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkludGVyYWN0aW9uTW9kZUIIukgFggECEAESOQoYc3RydWN0dXJlZF9vdXRwdXRfc2NoZW1hGAcgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdBIXCg9idWlsZF9mcm9tX3BsYW4YCCABKAgSUwoNYXBwcm92YWxfbW9kZRgJIAEoDjIyLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BcHByb3ZhbE1vZGVCCLpIBYIBAhABElEKDHNlcnZpY2VfdGllchgKIAEoDjIxLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5TZXJ2aWNlVGllckIIukgFggECEAEiigEKF0NvbnRleHRNYW5hZ2VtZW50Q29uZmlnEh0KFWRpc2FibGVfc3VtbWFyaXphdGlvbhgBIAEoCBIpChhjdXN0b21fdHJpZ2dlcl90aHJlc2hvbGQYAiABKAVCB7pIBBoCKAASJQoUY3VzdG9tX3RhcmdldF90b2tlbnMYAyABKAVCB7pIBBoCKAAi1AIKCkF0dGFjaG1lbnQS2AEKCGZpbGVuYW1lGAEgASgJQsUBukjBAboBuQEKG2F0dGFjaG1lbnQuZmlsZW5hbWUubm9fcGF0aBJOZmlsZW5hbWUgbXVzdCBiZSBhIGJhcmUgZmlsZW5hbWUgd2l0aG91dCBwYXRoIHNlcGFyYXRvcnMgb3IgdHJhdmVyc2FsIHNlZ21lbnRzGkohdGhpcy5jb250YWlucygnLycpICYmICF0aGlzLmNvbnRhaW5zKCdcXCcpICYmIHRoaXMgIT0gJy4nICYmIHRoaXMgIT0gJy4uJ3ICEAESHAoLc3RvcmFnZV9rZXkYAiABKAlCB7pIBHICEAESEgoKbW91bnRfcGF0aBgDIAEoCRIUCgxjb250ZW50X3R5cGUYBCABKAkSDwoHZXh0cmFjdBgFIAEoCBISCgpsb2NhbF9wYXRoGAYgASgJIlUKE0NvbnZlcnNhdGlvbkNhdGNodXASDgoGZGlnZXN0GAEgASgJEi4KCndpbmRvd19lbmQYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wYgZwcm90bzM", [file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_executioncontext_v1_spec, file_ai_stigmer_agentic_session_v1_spec, file_buf_validate_validate, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
14
14
|
/**
|
|
15
15
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecutionSpec.
|
|
16
16
|
* Use `create(AgentExecutionSpecSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,cAAc,CAAC;AAE9E,OAAO,EAAE,gDAAgD,EAAE,MAAM,sCAAsC,CAAC;AAExG,OAAO,EAAE,uCAAuC,EAAE,MAAM,6BAA6B,CAAC;AACtF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"spec_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentexecution/v1/spec_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8CAA8C,EAAE,MAAM,cAAc,CAAC;AAE9E,OAAO,EAAE,gDAAgD,EAAE,MAAM,sCAAsC,CAAC;AAExG,OAAO,EAAE,uCAAuC,EAAE,MAAM,6BAA6B,CAAC;AACtF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGrG;;GAEG;AACH,MAAM,CAAC,MAAM,8CAA8C,GAAY,aAAa,CAClF,QAAQ,CAAC,qqGAAqqG,EAAE,CAAC,8CAA8C,EAAE,gDAAgD,EAAE,uCAAuC,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA8Vx5G;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AA0LjE;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAsGjE;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AAiGjE;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC;AA+CjE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,8CAA8C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -141,26 +141,62 @@ export declare const SummarizationConfigSchema: GenMessage<SummarizationConfig>;
|
|
|
141
141
|
/**
|
|
142
142
|
* ModelCapabilities flags what a model supports. Catalog metadata.
|
|
143
143
|
*
|
|
144
|
+
* Presence is tri-state at the block level: an absent block means the
|
|
145
|
+
* model's capabilities were never assessed, and consumers must treat that
|
|
146
|
+
* as "unknown" — never as all-false. A present block is populated
|
|
147
|
+
* all-or-nothing (every flag assessed together), because proto3 bools
|
|
148
|
+
* carry no per-field presence: a partially filled block would silently
|
|
149
|
+
* encode its unassessed flags as false.
|
|
150
|
+
*
|
|
144
151
|
* @generated from message ai.stigmer.billing.v1.ModelCapabilities
|
|
145
152
|
*/
|
|
146
153
|
export type ModelCapabilities = Message<"ai.stigmer.billing.v1.ModelCapabilities"> & {
|
|
147
154
|
/**
|
|
155
|
+
* Whether the model accepts tool / function-calling requests.
|
|
156
|
+
*
|
|
148
157
|
* @generated from field: bool tool_use = 1;
|
|
149
158
|
*/
|
|
150
159
|
toolUse: boolean;
|
|
151
160
|
/**
|
|
161
|
+
* Whether image input delivered to this model produces genuine visual
|
|
162
|
+
* understanding.
|
|
163
|
+
*
|
|
164
|
+
* The meaning is harness-scoped. For native-harness entries this is the
|
|
165
|
+
* provider-documented capability of the model itself. For cursor-harness
|
|
166
|
+
* entries it encodes "images work through this model on the Cursor
|
|
167
|
+
* path": Cursor's serving stack hands vision off to a multimodal model
|
|
168
|
+
* server-side, so a model that is text-only by its own documentation
|
|
169
|
+
* (composer-2.5) still sees images when dispatched via Cursor.
|
|
170
|
+
*
|
|
171
|
+
* @internal
|
|
172
|
+
* Cursor-path values are established empirically — a nonce-bearing image
|
|
173
|
+
* probe per model (production executions, 2026-08-10; evidence table on
|
|
174
|
+
* stigmer-cloud#281, methodology from the whatsapp-media project's T06
|
|
175
|
+
* probe) — because Cursor's own docs under-report: the server-side
|
|
176
|
+
* vision hand-off is undocumented behavior. If Cursor changes that
|
|
177
|
+
* behavior, re-probe; do not re-read the docs. The OSS runner's vision
|
|
178
|
+
* gate (attachment-vision.ts, stigmer#370) fails open — it degrades
|
|
179
|
+
* image delivery only on an explicit false.
|
|
180
|
+
*
|
|
152
181
|
* @generated from field: bool vision = 2;
|
|
153
182
|
*/
|
|
154
183
|
vision: boolean;
|
|
155
184
|
/**
|
|
185
|
+
* Whether the model streams incremental output tokens.
|
|
186
|
+
*
|
|
156
187
|
* @generated from field: bool streaming = 3;
|
|
157
188
|
*/
|
|
158
189
|
streaming: boolean;
|
|
159
190
|
/**
|
|
191
|
+
* Whether the model supports extended thinking / reasoning traces.
|
|
192
|
+
*
|
|
160
193
|
* @generated from field: bool thinking = 4;
|
|
161
194
|
*/
|
|
162
195
|
thinking: boolean;
|
|
163
196
|
/**
|
|
197
|
+
* Whether thinking depth adapts to the request instead of a fixed
|
|
198
|
+
* budget (e.g. Anthropic adaptive thinking).
|
|
199
|
+
*
|
|
164
200
|
* @generated from field: bool adaptive_thinking = 5;
|
|
165
201
|
*/
|
|
166
202
|
adaptiveThinking: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model_pricing_baseline_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/billing/v1/model_pricing_baseline_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yHAAyH;AACzH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAY,aAAa,CACrF,QAAQ,CAAC,owFAAowF,EAAE,CAAC,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA+E/0F;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA0BpE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAgCpE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"model_pricing_baseline_pb.js","sourceRoot":"","sources":["../../../../../ai/stigmer/billing/v1/model_pricing_baseline_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yHAAyH;AACzH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAC/E,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAC;AAErF,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,iDAAiD,GAAY,aAAa,CACrF,QAAQ,CAAC,owFAAowF,EAAE,CAAC,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA+E/0F;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA0BpE;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAgCpE;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAsEpE;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AA6KpE;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC;AAEpE;;;;;;;;;;;GAWG;AACH,MAAM,CAAN,IAAY,0BA4BX;AA5BD,WAAY,0BAA0B;IACpC;;OAEG;IACH,qJAA6C,CAAA;IAE7C;;;;;OAKG;IACH,iHAA2B,CAAA;IAE3B;;;;OAIG;IACH,yHAA+B,CAAA;IAE/B;;;;;OAKG;IACH,mHAA4B,CAAA;AAC9B,CAAC,EA5BW,0BAA0B,KAA1B,0BAA0B,QA4BrC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAAwC,aAAa,CAChG,QAAQ,CAAC,iDAAiD,EAAE,CAAC,CAAC,CAAC"}
|