@stigmer/protos 3.7.0 → 3.9.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 +231 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js +64 -8
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.d.ts +62 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.js +63 -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 +61 -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/agentchannel/v1/outbound_pb.d.ts +23 -0
- package/ai/stigmer/agentic/agentchannel/v1/outbound_pb.js +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/outbound_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/spec_pb.d.ts +76 -0
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js +7 -2
- package/ai/stigmer/agentic/agentexecution/v1/spec_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -113,6 +113,27 @@ export type ChannelConversation = Message<"ai.stigmer.agentic.agentchannel.v1.Ch
|
|
|
113
113
|
* @generated from field: google.protobuf.Timestamp last_activity_at = 12;
|
|
114
114
|
*/
|
|
115
115
|
lastActivityAt?: Timestamp;
|
|
116
|
+
/**
|
|
117
|
+
* True when the customer's last message has not yet received a real
|
|
118
|
+
* answer — from the agent or from a teammate.
|
|
119
|
+
*
|
|
120
|
+
* @internal
|
|
121
|
+
* channel-conversations DD-011 D-b/D-c: derived on read from
|
|
122
|
+
* last_customer_message_at vs the server-side last_answered_at fact
|
|
123
|
+
* column — never stored, so no boolean exists to drift. Only real
|
|
124
|
+
* answers stamp the fact (an agent turn delivered with Outcome.OK; a
|
|
125
|
+
* participant-origin staff reply at its Delivered settle); apology,
|
|
126
|
+
* cancellation, and limit copy, the platform acknowledgment, operator
|
|
127
|
+
* sends, and escalations never count. Ties go to answered. The raw
|
|
128
|
+
* instant stays server-side deliberately: carrying the derived boolean
|
|
129
|
+
* keeps the NULL-and-compare rule in one place instead of re-implemented
|
|
130
|
+
* per client, and "waiting since" already rides field 11. proto3
|
|
131
|
+
* default (false) degrades to the pre-T05 surface in both skew
|
|
132
|
+
* directions.
|
|
133
|
+
*
|
|
134
|
+
* @generated from field: bool awaiting_reply = 13;
|
|
135
|
+
*/
|
|
136
|
+
awaitingReply: boolean;
|
|
116
137
|
};
|
|
117
138
|
/**
|
|
118
139
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ChannelConversation.
|
|
@@ -208,12 +229,100 @@ export type ConversationTimelineItem = Message<"ai.stigmer.agentic.agentchannel.
|
|
|
208
229
|
* @generated from field: ai.stigmer.agentic.agentchannel.v1.ChannelOutboundOrigin origin = 10;
|
|
209
230
|
*/
|
|
210
231
|
origin: ChannelOutboundOrigin;
|
|
232
|
+
/**
|
|
233
|
+
* The provider's verbatim explanation when receipt_state is
|
|
234
|
+
* receipt_failed (WhatsApp: the errors[0] title, plus error_data
|
|
235
|
+
* details when present). Empty otherwise.
|
|
236
|
+
*
|
|
237
|
+
* @internal
|
|
238
|
+
* channel-conversations DD-014 D-c: a pure relay of
|
|
239
|
+
* ChannelOutboundMessage.receipt_detail (field 17), inheriting its
|
|
240
|
+
* discipline verbatim — provider-owned vocabulary, relayed, never
|
|
241
|
+
* pattern-matched; receipt_error_code is the structured twin a
|
|
242
|
+
* branching client must key on instead. Rides outbound-ledger ("ob:")
|
|
243
|
+
* items only: the reply lane has no receipt axis at all, so "dl:" and
|
|
244
|
+
* inbound items always answer empty.
|
|
245
|
+
*
|
|
246
|
+
* @generated from field: string receipt_detail = 11;
|
|
247
|
+
*/
|
|
248
|
+
receiptDetail: string;
|
|
249
|
+
/**
|
|
250
|
+
* The provider's numeric error code when receipt_state is
|
|
251
|
+
* receipt_failed (WhatsApp: errors[0].code, e.g. 131047 "re-engagement
|
|
252
|
+
* required"). Zero otherwise.
|
|
253
|
+
*
|
|
254
|
+
* @internal
|
|
255
|
+
* The relay of the row's field 18 (DD-014 D-c), shipped WITH
|
|
256
|
+
* receipt_detail and never after it: a client handed prose first will
|
|
257
|
+
* pattern-match the prose, which is the coupling this pair prevents.
|
|
258
|
+
*
|
|
259
|
+
* @generated from field: int32 receipt_error_code = 12;
|
|
260
|
+
*/
|
|
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;
|
|
211
280
|
};
|
|
212
281
|
/**
|
|
213
282
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimelineItem.
|
|
214
283
|
* Use `create(ConversationTimelineItemSchema)` to create a new message.
|
|
215
284
|
*/
|
|
216
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>;
|
|
217
326
|
/**
|
|
218
327
|
* Input for listing an organization's channel conversations.
|
|
219
328
|
*
|
|
@@ -238,6 +347,13 @@ export type ListChannelConversationsInput = Message<"ai.stigmer.agentic.agentcha
|
|
|
238
347
|
* @generated from field: ai.stigmer.commons.rpc.PageInfo page_info = 3;
|
|
239
348
|
*/
|
|
240
349
|
pageInfo?: PageInfo;
|
|
350
|
+
/**
|
|
351
|
+
* Optional filter: narrow the list to a server-evaluated predicate.
|
|
352
|
+
* Unspecified lists every conversation on the authorized channels.
|
|
353
|
+
*
|
|
354
|
+
* @generated from field: ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter filter = 4;
|
|
355
|
+
*/
|
|
356
|
+
filter: ChannelConversationListFilter;
|
|
241
357
|
};
|
|
242
358
|
/**
|
|
243
359
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ListChannelConversationsInput.
|
|
@@ -269,6 +385,30 @@ export type ChannelConversationList = Message<"ai.stigmer.agentic.agentchannel.v
|
|
|
269
385
|
* Use `create(ChannelConversationListSchema)` to create a new message.
|
|
270
386
|
*/
|
|
271
387
|
export declare const ChannelConversationListSchema: GenMessage<ChannelConversationList>;
|
|
388
|
+
/**
|
|
389
|
+
* Input for reading one conversation's identity and participation state.
|
|
390
|
+
*
|
|
391
|
+
* @generated from message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput
|
|
392
|
+
*/
|
|
393
|
+
export type GetChannelConversationInput = Message<"ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput"> & {
|
|
394
|
+
/**
|
|
395
|
+
* AgentChannel the conversation belongs to.
|
|
396
|
+
*
|
|
397
|
+
* @generated from field: string agent_channel_id = 1;
|
|
398
|
+
*/
|
|
399
|
+
agentChannelId: string;
|
|
400
|
+
/**
|
|
401
|
+
* Conversation key within the channel (WhatsApp: the customer's wa_id).
|
|
402
|
+
*
|
|
403
|
+
* @generated from field: string conversation_key = 2;
|
|
404
|
+
*/
|
|
405
|
+
conversationKey: string;
|
|
406
|
+
};
|
|
407
|
+
/**
|
|
408
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput.
|
|
409
|
+
* Use `create(GetChannelConversationInputSchema)` to create a new message.
|
|
410
|
+
*/
|
|
411
|
+
export declare const GetChannelConversationInputSchema: GenMessage<GetChannelConversationInput>;
|
|
272
412
|
/**
|
|
273
413
|
* Input for reading one conversation's timeline.
|
|
274
414
|
*
|
|
@@ -338,6 +478,62 @@ export type ConversationTimeline = Message<"ai.stigmer.agentic.agentchannel.v1.C
|
|
|
338
478
|
* Use `create(ConversationTimelineSchema)` to create a new message.
|
|
339
479
|
*/
|
|
340
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>;
|
|
341
537
|
/**
|
|
342
538
|
* Input for the conversation control commands (takeOver, handBack,
|
|
343
539
|
* clearAttention).
|
|
@@ -539,3 +735,38 @@ export declare enum ConversationItemAuthor {
|
|
|
539
735
|
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ConversationItemAuthor.
|
|
540
736
|
*/
|
|
541
737
|
export declare const ConversationItemAuthorSchema: GenEnum<ConversationItemAuthor>;
|
|
738
|
+
/**
|
|
739
|
+
* ChannelConversationListFilter names the server-evaluated predicates the
|
|
740
|
+
* conversation list can be narrowed to.
|
|
741
|
+
*
|
|
742
|
+
* @internal
|
|
743
|
+
* channel-conversations DD-011 D-f/D-g: filter_wants_human expresses
|
|
744
|
+
* EXACTLY the nav badge's union, and the badge count is the filtered
|
|
745
|
+
* list's total_count — one predicate in one handler, so the count and the
|
|
746
|
+
* list it opens can never disagree. Server-side deliberately (T04 D1's
|
|
747
|
+
* standing objection): a client-side tab over one fetched page would
|
|
748
|
+
* silently lie across pages. Values carry the filter_ prefix — proto3
|
|
749
|
+
* enum values are package-scoped (the control_ precedent).
|
|
750
|
+
*
|
|
751
|
+
* @generated from enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter
|
|
752
|
+
*/
|
|
753
|
+
export declare enum ChannelConversationListFilter {
|
|
754
|
+
/**
|
|
755
|
+
* Default value: no filter.
|
|
756
|
+
*
|
|
757
|
+
* @generated from enum value: channel_conversation_list_filter_unspecified = 0;
|
|
758
|
+
*/
|
|
759
|
+
channel_conversation_list_filter_unspecified = 0,
|
|
760
|
+
/**
|
|
761
|
+
* Conversations where a human action is wanted: flagged for attention,
|
|
762
|
+
* or human-held with the customer's last message still unanswered
|
|
763
|
+
* (needs_attention OR (awaiting_reply AND control_human)).
|
|
764
|
+
*
|
|
765
|
+
* @generated from enum value: filter_wants_human = 1;
|
|
766
|
+
*/
|
|
767
|
+
filter_wants_human = 1
|
|
768
|
+
}
|
|
769
|
+
/**
|
|
770
|
+
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter.
|
|
771
|
+
*/
|
|
772
|
+
export declare const ChannelConversationListFilterSchema: GenEnum<ChannelConversationListFilter>;
|
|
@@ -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("
|
|
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,41 +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);
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput.
|
|
42
|
+
* Use `create(GetChannelConversationInputSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const GetChannelConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 5);
|
|
35
45
|
/**
|
|
36
46
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetConversationTimelineInput.
|
|
37
47
|
* Use `create(GetConversationTimelineInputSchema)` to create a new message.
|
|
38
48
|
*/
|
|
39
|
-
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);
|
|
40
50
|
/**
|
|
41
51
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimeline.
|
|
42
52
|
* Use `create(ConversationTimelineSchema)` to create a new message.
|
|
43
53
|
*/
|
|
44
|
-
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);
|
|
45
65
|
/**
|
|
46
66
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationControlInput.
|
|
47
67
|
* Use `create(ConversationControlInputSchema)` to create a new message.
|
|
48
68
|
*/
|
|
49
|
-
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);
|
|
50
70
|
/**
|
|
51
71
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ReplyToConversationInput.
|
|
52
72
|
* Use `create(ReplyToConversationInputSchema)` to create a new message.
|
|
53
73
|
*/
|
|
54
|
-
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);
|
|
55
75
|
/**
|
|
56
76
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.EscalateConversationInput.
|
|
57
77
|
* Use `create(EscalateConversationInputSchema)` to create a new message.
|
|
58
78
|
*/
|
|
59
|
-
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);
|
|
60
80
|
/**
|
|
61
81
|
* ConversationControl names who may speak to the customer on a
|
|
62
82
|
* conversation's public lane.
|
|
@@ -178,4 +198,40 @@ export var ConversationItemAuthor;
|
|
|
178
198
|
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ConversationItemAuthor.
|
|
179
199
|
*/
|
|
180
200
|
export const ConversationItemAuthorSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 2);
|
|
201
|
+
/**
|
|
202
|
+
* ChannelConversationListFilter names the server-evaluated predicates the
|
|
203
|
+
* conversation list can be narrowed to.
|
|
204
|
+
*
|
|
205
|
+
* @internal
|
|
206
|
+
* channel-conversations DD-011 D-f/D-g: filter_wants_human expresses
|
|
207
|
+
* EXACTLY the nav badge's union, and the badge count is the filtered
|
|
208
|
+
* list's total_count — one predicate in one handler, so the count and the
|
|
209
|
+
* list it opens can never disagree. Server-side deliberately (T04 D1's
|
|
210
|
+
* standing objection): a client-side tab over one fetched page would
|
|
211
|
+
* silently lie across pages. Values carry the filter_ prefix — proto3
|
|
212
|
+
* enum values are package-scoped (the control_ precedent).
|
|
213
|
+
*
|
|
214
|
+
* @generated from enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter
|
|
215
|
+
*/
|
|
216
|
+
export var ChannelConversationListFilter;
|
|
217
|
+
(function (ChannelConversationListFilter) {
|
|
218
|
+
/**
|
|
219
|
+
* Default value: no filter.
|
|
220
|
+
*
|
|
221
|
+
* @generated from enum value: channel_conversation_list_filter_unspecified = 0;
|
|
222
|
+
*/
|
|
223
|
+
ChannelConversationListFilter[ChannelConversationListFilter["channel_conversation_list_filter_unspecified"] = 0] = "channel_conversation_list_filter_unspecified";
|
|
224
|
+
/**
|
|
225
|
+
* Conversations where a human action is wanted: flagged for attention,
|
|
226
|
+
* or human-held with the customer's last message still unanswered
|
|
227
|
+
* (needs_attention OR (awaiting_reply AND control_human)).
|
|
228
|
+
*
|
|
229
|
+
* @generated from enum value: filter_wants_human = 1;
|
|
230
|
+
*/
|
|
231
|
+
ChannelConversationListFilter[ChannelConversationListFilter["filter_wants_human"] = 1] = "filter_wants_human";
|
|
232
|
+
})(ChannelConversationListFilter || (ChannelConversationListFilter = {}));
|
|
233
|
+
/**
|
|
234
|
+
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter.
|
|
235
|
+
*/
|
|
236
|
+
export const ChannelConversationListFilterSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 3);
|
|
181
237
|
//# sourceMappingURL=conversation_io_pb.js.map
|
|
@@ -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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"}
|
|
@@ -40,6 +40,40 @@ export declare const ChannelConversationQueryController: {
|
|
|
40
40
|
readonly O: any;
|
|
41
41
|
readonly kind: any;
|
|
42
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Get one conversation's identity and participation state.
|
|
45
|
+
*
|
|
46
|
+
* The single-row read behind a conversation detail view: who holds
|
|
47
|
+
* control, whether the conversation needs attention and why, the
|
|
48
|
+
* customer's display name, and the activity clocks. Answers NOT_FOUND
|
|
49
|
+
* until the customer's first message creates the conversation.
|
|
50
|
+
*
|
|
51
|
+
* @internal
|
|
52
|
+
* channel-conversations T04: the get sibling of listConversations, so
|
|
53
|
+
* a deep-linked console view or an embedded conversation surface never
|
|
54
|
+
* reconstructs one row by scanning list pages — and the open
|
|
55
|
+
* conversation can poll its own participation state instead of riding
|
|
56
|
+
* the list's slower refresh. Authorization is declarative on the
|
|
57
|
+
* channel, exactly getTimeline's shape (DD-003 D-a: conversations
|
|
58
|
+
* carry no per-conversation FGA tuples — the channel is the trust
|
|
59
|
+
* boundary). NOT_FOUND deliberately covers the timeline-without-row
|
|
60
|
+
* case (a proactive cold-send the customer never answered): getTimeline
|
|
61
|
+
* may serve items while this read refuses, the same "the customer
|
|
62
|
+
* wrote first" asymmetry reply's existing-conversation precondition
|
|
63
|
+
* enforces (T03 Sitting 2's A8) — consoles render that as "controls
|
|
64
|
+
* unlock when the customer writes", not as an error. OSS answers
|
|
65
|
+
* NOT_FOUND unconditionally: this edition never materializes
|
|
66
|
+
* conversations (cloud-only runtime), and a single-row get cannot
|
|
67
|
+
* answer "empty" the way the sibling discovery reads do.
|
|
68
|
+
*
|
|
69
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getConversation
|
|
70
|
+
*/
|
|
71
|
+
readonly getConversation: {
|
|
72
|
+
readonly name: "getConversation";
|
|
73
|
+
readonly I: any;
|
|
74
|
+
readonly O: any;
|
|
75
|
+
readonly kind: any;
|
|
76
|
+
};
|
|
43
77
|
/**
|
|
44
78
|
* Get one conversation's timeline, newest first, cursor-paged.
|
|
45
79
|
*
|
|
@@ -65,5 +99,33 @@ export declare const ChannelConversationQueryController: {
|
|
|
65
99
|
readonly O: any;
|
|
66
100
|
readonly kind: any;
|
|
67
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
|
+
};
|
|
68
130
|
};
|
|
69
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 { ChannelConversationList, ConversationTimeline, 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
|
|
@@ -46,6 +46,40 @@ export const ChannelConversationQueryController = {
|
|
|
46
46
|
O: ChannelConversationList,
|
|
47
47
|
kind: MethodKind.Unary,
|
|
48
48
|
},
|
|
49
|
+
/**
|
|
50
|
+
* Get one conversation's identity and participation state.
|
|
51
|
+
*
|
|
52
|
+
* The single-row read behind a conversation detail view: who holds
|
|
53
|
+
* control, whether the conversation needs attention and why, the
|
|
54
|
+
* customer's display name, and the activity clocks. Answers NOT_FOUND
|
|
55
|
+
* until the customer's first message creates the conversation.
|
|
56
|
+
*
|
|
57
|
+
* @internal
|
|
58
|
+
* channel-conversations T04: the get sibling of listConversations, so
|
|
59
|
+
* a deep-linked console view or an embedded conversation surface never
|
|
60
|
+
* reconstructs one row by scanning list pages — and the open
|
|
61
|
+
* conversation can poll its own participation state instead of riding
|
|
62
|
+
* the list's slower refresh. Authorization is declarative on the
|
|
63
|
+
* channel, exactly getTimeline's shape (DD-003 D-a: conversations
|
|
64
|
+
* carry no per-conversation FGA tuples — the channel is the trust
|
|
65
|
+
* boundary). NOT_FOUND deliberately covers the timeline-without-row
|
|
66
|
+
* case (a proactive cold-send the customer never answered): getTimeline
|
|
67
|
+
* may serve items while this read refuses, the same "the customer
|
|
68
|
+
* wrote first" asymmetry reply's existing-conversation precondition
|
|
69
|
+
* enforces (T03 Sitting 2's A8) — consoles render that as "controls
|
|
70
|
+
* unlock when the customer writes", not as an error. OSS answers
|
|
71
|
+
* NOT_FOUND unconditionally: this edition never materializes
|
|
72
|
+
* conversations (cloud-only runtime), and a single-row get cannot
|
|
73
|
+
* answer "empty" the way the sibling discovery reads do.
|
|
74
|
+
*
|
|
75
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getConversation
|
|
76
|
+
*/
|
|
77
|
+
getConversation: {
|
|
78
|
+
name: "getConversation",
|
|
79
|
+
I: GetChannelConversationInput,
|
|
80
|
+
O: ChannelConversation,
|
|
81
|
+
kind: MethodKind.Unary,
|
|
82
|
+
},
|
|
49
83
|
/**
|
|
50
84
|
* Get one conversation's timeline, newest first, cursor-paged.
|
|
51
85
|
*
|
|
@@ -71,6 +105,34 @@ export const ChannelConversationQueryController = {
|
|
|
71
105
|
O: ConversationTimeline,
|
|
72
106
|
kind: MethodKind.Unary,
|
|
73
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
|
+
},
|
|
74
136
|
}
|
|
75
137
|
};
|
|
76
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,uBAAuB,EAAE,oBAAoB,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, ConversationTimelineSchema, 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
|
*/
|
|
@@ -43,6 +43,39 @@ export declare const ChannelConversationQueryController: GenService<{
|
|
|
43
43
|
input: typeof ListChannelConversationsInputSchema;
|
|
44
44
|
output: typeof ChannelConversationListSchema;
|
|
45
45
|
};
|
|
46
|
+
/**
|
|
47
|
+
* Get one conversation's identity and participation state.
|
|
48
|
+
*
|
|
49
|
+
* The single-row read behind a conversation detail view: who holds
|
|
50
|
+
* control, whether the conversation needs attention and why, the
|
|
51
|
+
* customer's display name, and the activity clocks. Answers NOT_FOUND
|
|
52
|
+
* until the customer's first message creates the conversation.
|
|
53
|
+
*
|
|
54
|
+
* @internal
|
|
55
|
+
* channel-conversations T04: the get sibling of listConversations, so
|
|
56
|
+
* a deep-linked console view or an embedded conversation surface never
|
|
57
|
+
* reconstructs one row by scanning list pages — and the open
|
|
58
|
+
* conversation can poll its own participation state instead of riding
|
|
59
|
+
* the list's slower refresh. Authorization is declarative on the
|
|
60
|
+
* channel, exactly getTimeline's shape (DD-003 D-a: conversations
|
|
61
|
+
* carry no per-conversation FGA tuples — the channel is the trust
|
|
62
|
+
* boundary). NOT_FOUND deliberately covers the timeline-without-row
|
|
63
|
+
* case (a proactive cold-send the customer never answered): getTimeline
|
|
64
|
+
* may serve items while this read refuses, the same "the customer
|
|
65
|
+
* wrote first" asymmetry reply's existing-conversation precondition
|
|
66
|
+
* enforces (T03 Sitting 2's A8) — consoles render that as "controls
|
|
67
|
+
* unlock when the customer writes", not as an error. OSS answers
|
|
68
|
+
* NOT_FOUND unconditionally: this edition never materializes
|
|
69
|
+
* conversations (cloud-only runtime), and a single-row get cannot
|
|
70
|
+
* answer "empty" the way the sibling discovery reads do.
|
|
71
|
+
*
|
|
72
|
+
* @generated from rpc ai.stigmer.agentic.agentchannel.v1.ChannelConversationQueryController.getConversation
|
|
73
|
+
*/
|
|
74
|
+
getConversation: {
|
|
75
|
+
methodKind: "unary";
|
|
76
|
+
input: typeof GetChannelConversationInputSchema;
|
|
77
|
+
output: typeof ChannelConversationSchema;
|
|
78
|
+
};
|
|
46
79
|
/**
|
|
47
80
|
* Get one conversation's timeline, newest first, cursor-paged.
|
|
48
81
|
*
|
|
@@ -67,4 +100,31 @@ export declare const ChannelConversationQueryController: GenService<{
|
|
|
67
100
|
input: typeof GetConversationTimelineInputSchema;
|
|
68
101
|
output: typeof ConversationTimelineSchema;
|
|
69
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
|
+
};
|
|
70
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"}
|
|
@@ -179,6 +179,29 @@ export type ChannelOutboundMessage = Message<"ai.stigmer.agentic.agentchannel.v1
|
|
|
179
179
|
* @generated from field: google.protobuf.Timestamp receipt_at = 19;
|
|
180
180
|
*/
|
|
181
181
|
receiptAt?: Timestamp;
|
|
182
|
+
/**
|
|
183
|
+
* The message body as rendered for the external recipient, recorded at
|
|
184
|
+
* send time. For template sends this is the registry's body text with
|
|
185
|
+
* the payload's parameter values substituted; empty for text sends
|
|
186
|
+
* (the body lives in the payload's text arm), for rows written before
|
|
187
|
+
* this field existed, and for sends whose registry was unreachable at
|
|
188
|
+
* send time.
|
|
189
|
+
*
|
|
190
|
+
* @internal
|
|
191
|
+
* The ChannelDelivery.reply_text idiom (channel-conversations DD-004
|
|
192
|
+
* D-c as amended at T02 Sitting 3, D1-A) applied to the proactive
|
|
193
|
+
* lane: the conversation timeline renders a template send's bubble
|
|
194
|
+
* from THIS field, never by re-deriving from the template registry at
|
|
195
|
+
* read time — template text changes over releases, and a re-derivation
|
|
196
|
+
* would attribute today's template copy to yesterday's send. Written
|
|
197
|
+
* once by the send handlers' pre-check normalization (the DD-005 D2
|
|
198
|
+
* point where the language-resolved payload is fixed), before any
|
|
199
|
+
* provider I/O; no later writer touches it. No backfill is possible —
|
|
200
|
+
* pre-field history stays honestly unavailable (the D1-A consequence).
|
|
201
|
+
*
|
|
202
|
+
* @generated from field: string rendered_body = 20;
|
|
203
|
+
*/
|
|
204
|
+
renderedBody: string;
|
|
182
205
|
};
|
|
183
206
|
/**
|
|
184
207
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ChannelOutboundMessage.
|
|
@@ -8,7 +8,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
8
8
|
/**
|
|
9
9
|
* Describes the file ai/stigmer/agentic/agentchannel/v1/outbound.proto.
|
|
10
10
|
*/
|
|
11
|
-
export const file_ai_stigmer_agentic_agentchannel_v1_outbound = /*@__PURE__*/ fileDesc("
|
|
11
|
+
export const file_ai_stigmer_agentic_agentchannel_v1_outbound = /*@__PURE__*/ fileDesc("CjFhaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRjaGFubmVsL3YxL291dGJvdW5kLnByb3RvEiJhaS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxIqIGChZDaGFubmVsT3V0Ym91bmRNZXNzYWdlEhsKE291dGJvdW5kX21lc3NhZ2VfaWQYASABKAkSGAoQYWdlbnRfY2hhbm5lbF9pZBgCIAEoCRILCgNvcmcYAyABKAkSEgoKc2Vzc2lvbl9pZBgEIAEoCRJJCgZvcmlnaW4YBSABKA4yOS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxPdXRib3VuZE9yaWdpbhIRCglyZWNpcGllbnQYBiABKAkSSwoHcGF5bG9hZBgHIAEoCzI6LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ2hhbm5lbE91dGJvdW5kUGF5bG9hZBJJCgZzdGF0dXMYCCABKA4yOS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxEZWxpdmVyeVN0YXR1cxIQCghhdHRlbXB0cxgJIAEoBRISCgpsYXN0X2Vycm9yGAogASgJEhcKD2lkZW1wb3RlbmN5X2tleRgLIAEoCRIbChNwcm92aWRlcl9tZXNzYWdlX2lkGAwgASgJEi4KCmNyZWF0ZWRfYXQYDSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnVwZGF0ZWRfYXQYDiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjMKD25leHRfYXR0ZW1wdF9hdBgPIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASTgoNcmVjZWlwdF9zdGF0ZRgQIAEoDjI3LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ2hhbm5lbFJlY2VpcHRTdGF0ZRIWCg5yZWNlaXB0X2RldGFpbBgRIAEoCRIaChJyZWNlaXB0X2Vycm9yX2NvZGUYEiABKAUSLgoKcmVjZWlwdF9hdBgTIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASFQoNcmVuZGVyZWRfYm9keRgUIAEoCSqDAQoTQ2hhbm5lbFJlY2VpcHRTdGF0ZRIdChlyZWNlaXB0X3N0YXRlX3Vuc3BlY2lmaWVkEAASEAoMcmVjZWlwdF9zZW50EAESFQoRcmVjZWlwdF9kZWxpdmVyZWQQAhIQCgxyZWNlaXB0X3JlYWQQAxISCg5yZWNlaXB0X2ZhaWxlZBAEKocBChVDaGFubmVsT3V0Ym91bmRPcmlnaW4SJwojY2hhbm5lbF9vdXRib3VuZF9vcmlnaW5fdW5zcGVjaWZpZWQQABIYChRjaGFubmVsX2NvbnZlcnNhdGlvbhABEgwKCG9wZXJhdG9yEAISDAoIcGxhdGZvcm0QAxIPCgtwYXJ0aWNpcGFudBAEYgZwcm90bzM", [file_ai_stigmer_agentic_agentchannel_v1_delivery, file_ai_stigmer_agentic_agentchannel_v1_message_io, file_google_protobuf_timestamp]);
|
|
12
12
|
/**
|
|
13
13
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ChannelOutboundMessage.
|
|
14
14
|
* Use `create(ChannelOutboundMessageSchema)` to create a new message.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"outbound_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/outbound_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,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,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,gDAAgD,GAAY,aAAa,CACpF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"outbound_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/agentchannel/v1/outbound_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,qIAAqI;AACrI,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,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGxE;;GAEG;AACH,MAAM,CAAC,MAAM,gDAAgD,GAAY,aAAa,CACpF,QAAQ,CAAC,6hDAA6hD,EAAE,CAAC,gDAAgD,EAAE,kDAAkD,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA0NlrD;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,gDAAgD,EAAE,CAAC,CAAC,CAAC;AAEnE;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAN,IAAY,mBAoCX;AApCD,WAAY,mBAAmB;IAC7B;;;;OAIG;IACH,uGAA6B,CAAA;IAE7B;;;;OAIG;IACH,6EAAgB,CAAA;IAEhB;;;;OAIG;IACH,uFAAqB,CAAA;IAErB;;;;OAIG;IACH,6EAAgB,CAAA;IAEhB;;;;;OAKG;IACH,iFAAkB,CAAA;AACpB,CAAC,EApCW,mBAAmB,KAAnB,mBAAmB,QAoC9B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAiC,aAAa,CAClF,QAAQ,CAAC,gDAAgD,EAAE,CAAC,CAAC,CAAC;AAEhE;;;;;;;;;;;;;;;;;;GAkBG;AACH,MAAM,CAAN,IAAY,qBAoDX;AApDD,WAAY,qBAAqB;IAC/B;;;;OAIG;IACH,+HAAuC,CAAA;IAEvC;;;;;OAKG;IACH,iGAAwB,CAAA;IAExB;;;;;OAKG;IACH,yEAAY,CAAA;IAEZ;;;;;;;;;;OAUG;IACH,yEAAY,CAAA;IAEZ;;;;;;;;;;;;;OAaG;IACH,+EAAe,CAAA;AACjB,CAAC,EApDW,qBAAqB,KAArB,qBAAqB,QAoDhC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAmC,aAAa,CACtF,QAAQ,CAAC,gDAAgD,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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"}
|
|
@@ -2,6 +2,7 @@ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
|
2
2
|
import type { ApprovalMode, InteractionMode, ServiceTier } from "./enum_pb.js";
|
|
3
3
|
import type { ExecutionValue } from "../../executioncontext/v1/spec_pb.js";
|
|
4
4
|
import type { SessionSpec } from "../../session/v1/spec_pb.js";
|
|
5
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
5
6
|
import type { JsonObject, Message } from "@bufbuild/protobuf";
|
|
6
7
|
/**
|
|
7
8
|
* Describes the file ai/stigmer/agentic/agentexecution/v1/spec.proto.
|
|
@@ -320,6 +321,28 @@ export type AgentExecutionSpec = Message<"ai.stigmer.agentic.agentexecution.v1.A
|
|
|
320
321
|
* @generated from field: string supersedes_execution_id = 12;
|
|
321
322
|
*/
|
|
322
323
|
supersedesExecutionId: string;
|
|
324
|
+
/**
|
|
325
|
+
* Conversation events the agent has not yet seen, composed by the platform
|
|
326
|
+
* for this turn (optional).
|
|
327
|
+
*
|
|
328
|
+
* Set on live channel-conversation turns (WhatsApp, Slack): when a human
|
|
329
|
+
* teammate handled the conversation or messages otherwise landed while the
|
|
330
|
+
* agent was not watching, the digest carries what happened so the agent
|
|
331
|
+
* re-enters informed. Absent on every other execution surface.
|
|
332
|
+
*
|
|
333
|
+
* @internal
|
|
334
|
+
* Composed per turn by the cloud channel runtime — ChannelSessionBroker
|
|
335
|
+
* over the DD-004 timeline stitch, windowed by the conversation's
|
|
336
|
+
* agent_witnessed_through watermark (channel-conversations DD-006/DD-007).
|
|
337
|
+
* The OSS server never sets it. The runner prepends the framed digest to
|
|
338
|
+
* the turn's user message on both harnesses (A27) and must never read
|
|
339
|
+
* window_end. Top-level rather than inside ExecutionConfig by design:
|
|
340
|
+
* conversation content must not vanish with the execution-profile
|
|
341
|
+
* kill-switch (DD-006 D-a).
|
|
342
|
+
*
|
|
343
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.ConversationCatchup conversation_catchup = 14;
|
|
344
|
+
*/
|
|
345
|
+
conversationCatchup?: ConversationCatchup;
|
|
323
346
|
};
|
|
324
347
|
/**
|
|
325
348
|
* Describes the message ai.stigmer.agentic.agentexecution.v1.AgentExecutionSpec.
|
|
@@ -638,6 +661,11 @@ export type Attachment = Message<"ai.stigmer.agentic.agentexecution.v1.Attachmen
|
|
|
638
661
|
* Original filename for display and default mount path derivation.
|
|
639
662
|
* Example: "config.yaml", "input-data.zip"
|
|
640
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
|
+
*
|
|
641
669
|
* @generated from field: string filename = 1;
|
|
642
670
|
*/
|
|
643
671
|
filename: string;
|
|
@@ -696,3 +724,51 @@ export type Attachment = Message<"ai.stigmer.agentic.agentexecution.v1.Attachmen
|
|
|
696
724
|
* Use `create(AttachmentSchema)` to create a new message.
|
|
697
725
|
*/
|
|
698
726
|
export declare const AttachmentSchema: GenMessage<Attachment>;
|
|
727
|
+
/**
|
|
728
|
+
* ConversationCatchup carries the channel-conversation events an agent
|
|
729
|
+
* missed, composed fresh for one execution.
|
|
730
|
+
*
|
|
731
|
+
* @internal
|
|
732
|
+
* Present on EVERY channel turn — even with an empty digest — so window_end
|
|
733
|
+
* can advance the conversation's agent_witnessed_through watermark when the
|
|
734
|
+
* turn settles (channel-conversations DD-006 as amended by T03 Sitting 3,
|
|
735
|
+
* A21). Content is composed in the cloud; presentation (preamble, framing,
|
|
736
|
+
* prompt placement) is owned by the OSS runner's shared/conversation-catchup
|
|
737
|
+
* module — the DD-013 content/presentation split.
|
|
738
|
+
*
|
|
739
|
+
* @generated from message ai.stigmer.agentic.agentexecution.v1.ConversationCatchup
|
|
740
|
+
*/
|
|
741
|
+
export type ConversationCatchup = Message<"ai.stigmer.agentic.agentexecution.v1.ConversationCatchup"> & {
|
|
742
|
+
/**
|
|
743
|
+
* Plain-text digest of what the agent missed, oldest first; empty when
|
|
744
|
+
* nothing was missed.
|
|
745
|
+
*
|
|
746
|
+
* @internal
|
|
747
|
+
* Bare content lines ("Customer: ..." / "Teammate: ..." / "System: ..." /
|
|
748
|
+
* "You escalated: ..." / "Note: ..."), no model-facing framing — the
|
|
749
|
+
* runner owns the preamble and the prompt placement. Blank means "inject
|
|
750
|
+
* nothing" (the shared-module blank-is-absent convention).
|
|
751
|
+
*
|
|
752
|
+
* @generated from field: string digest = 1;
|
|
753
|
+
*/
|
|
754
|
+
digest: string;
|
|
755
|
+
/**
|
|
756
|
+
* The timeline instant this digest conveys through.
|
|
757
|
+
*
|
|
758
|
+
* @internal
|
|
759
|
+
* Cloud bookkeeping, NEVER read by the runner. The delivery settle path
|
|
760
|
+
* advances the conversation's agent_witnessed_through watermark to this
|
|
761
|
+
* instant when the execution COMPLETED and the settle won (DD-007 D-b as
|
|
762
|
+
* sharpened by A26). Set on every channel turn, digest or not (A21); its
|
|
763
|
+
* value is the broker's compose instant, which is strictly later than the
|
|
764
|
+
* turn's own inbound message (A24).
|
|
765
|
+
*
|
|
766
|
+
* @generated from field: google.protobuf.Timestamp window_end = 2;
|
|
767
|
+
*/
|
|
768
|
+
windowEnd?: Timestamp;
|
|
769
|
+
};
|
|
770
|
+
/**
|
|
771
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.ConversationCatchup.
|
|
772
|
+
* Use `create(ConversationCatchupSchema)` to create a new message.
|
|
773
|
+
*/
|
|
774
|
+
export declare const ConversationCatchupSchema: GenMessage<ConversationCatchup>;
|
|
@@ -6,11 +6,11 @@ import { file_ai_stigmer_agentic_agentexecution_v1_enum } from "./enum_pb.js";
|
|
|
6
6
|
import { file_ai_stigmer_agentic_executioncontext_v1_spec } from "../../executioncontext/v1/spec_pb.js";
|
|
7
7
|
import { file_ai_stigmer_agentic_session_v1_spec } from "../../session/v1/spec_pb.js";
|
|
8
8
|
import { file_buf_validate_validate } from "../../../../../buf/validate/validate_pb.js";
|
|
9
|
-
import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt";
|
|
9
|
+
import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
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.
|
|
@@ -31,4 +31,9 @@ export const ContextManagementConfigSchema = /*@__PURE__*/ messageDesc(file_ai_s
|
|
|
31
31
|
* Use `create(AttachmentSchema)` to create a new message.
|
|
32
32
|
*/
|
|
33
33
|
export const AttachmentSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_spec, 3);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.ConversationCatchup.
|
|
36
|
+
* Use `create(ConversationCatchupSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const ConversationCatchupSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentexecution_v1_spec, 4);
|
|
34
39
|
//# sourceMappingURL=spec_pb.js.map
|
|
@@ -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;
|
|
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"}
|