@stigmer/protos 3.7.0 → 3.8.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 +117 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js +47 -6
- package/ai/stigmer/agentic/agentchannel/v1/conversation_io_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.d.ts +34 -0
- package/ai/stigmer/agentic/agentchannel/v1/conversation_query_connect.js +35 -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 +34 -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/spec_pb.d.ts +71 -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,6 +229,36 @@ 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;
|
|
211
262
|
};
|
|
212
263
|
/**
|
|
213
264
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimelineItem.
|
|
@@ -238,6 +289,13 @@ export type ListChannelConversationsInput = Message<"ai.stigmer.agentic.agentcha
|
|
|
238
289
|
* @generated from field: ai.stigmer.commons.rpc.PageInfo page_info = 3;
|
|
239
290
|
*/
|
|
240
291
|
pageInfo?: PageInfo;
|
|
292
|
+
/**
|
|
293
|
+
* Optional filter: narrow the list to a server-evaluated predicate.
|
|
294
|
+
* Unspecified lists every conversation on the authorized channels.
|
|
295
|
+
*
|
|
296
|
+
* @generated from field: ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter filter = 4;
|
|
297
|
+
*/
|
|
298
|
+
filter: ChannelConversationListFilter;
|
|
241
299
|
};
|
|
242
300
|
/**
|
|
243
301
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ListChannelConversationsInput.
|
|
@@ -269,6 +327,30 @@ export type ChannelConversationList = Message<"ai.stigmer.agentic.agentchannel.v
|
|
|
269
327
|
* Use `create(ChannelConversationListSchema)` to create a new message.
|
|
270
328
|
*/
|
|
271
329
|
export declare const ChannelConversationListSchema: GenMessage<ChannelConversationList>;
|
|
330
|
+
/**
|
|
331
|
+
* Input for reading one conversation's identity and participation state.
|
|
332
|
+
*
|
|
333
|
+
* @generated from message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput
|
|
334
|
+
*/
|
|
335
|
+
export type GetChannelConversationInput = Message<"ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput"> & {
|
|
336
|
+
/**
|
|
337
|
+
* AgentChannel the conversation belongs to.
|
|
338
|
+
*
|
|
339
|
+
* @generated from field: string agent_channel_id = 1;
|
|
340
|
+
*/
|
|
341
|
+
agentChannelId: string;
|
|
342
|
+
/**
|
|
343
|
+
* Conversation key within the channel (WhatsApp: the customer's wa_id).
|
|
344
|
+
*
|
|
345
|
+
* @generated from field: string conversation_key = 2;
|
|
346
|
+
*/
|
|
347
|
+
conversationKey: string;
|
|
348
|
+
};
|
|
349
|
+
/**
|
|
350
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput.
|
|
351
|
+
* Use `create(GetChannelConversationInputSchema)` to create a new message.
|
|
352
|
+
*/
|
|
353
|
+
export declare const GetChannelConversationInputSchema: GenMessage<GetChannelConversationInput>;
|
|
272
354
|
/**
|
|
273
355
|
* Input for reading one conversation's timeline.
|
|
274
356
|
*
|
|
@@ -539,3 +621,38 @@ export declare enum ConversationItemAuthor {
|
|
|
539
621
|
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ConversationItemAuthor.
|
|
540
622
|
*/
|
|
541
623
|
export declare const ConversationItemAuthorSchema: GenEnum<ConversationItemAuthor>;
|
|
624
|
+
/**
|
|
625
|
+
* ChannelConversationListFilter names the server-evaluated predicates the
|
|
626
|
+
* conversation list can be narrowed to.
|
|
627
|
+
*
|
|
628
|
+
* @internal
|
|
629
|
+
* channel-conversations DD-011 D-f/D-g: filter_wants_human expresses
|
|
630
|
+
* EXACTLY the nav badge's union, and the badge count is the filtered
|
|
631
|
+
* list's total_count — one predicate in one handler, so the count and the
|
|
632
|
+
* list it opens can never disagree. Server-side deliberately (T04 D1's
|
|
633
|
+
* standing objection): a client-side tab over one fetched page would
|
|
634
|
+
* silently lie across pages. Values carry the filter_ prefix — proto3
|
|
635
|
+
* enum values are package-scoped (the control_ precedent).
|
|
636
|
+
*
|
|
637
|
+
* @generated from enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter
|
|
638
|
+
*/
|
|
639
|
+
export declare enum ChannelConversationListFilter {
|
|
640
|
+
/**
|
|
641
|
+
* Default value: no filter.
|
|
642
|
+
*
|
|
643
|
+
* @generated from enum value: channel_conversation_list_filter_unspecified = 0;
|
|
644
|
+
*/
|
|
645
|
+
channel_conversation_list_filter_unspecified = 0,
|
|
646
|
+
/**
|
|
647
|
+
* Conversations where a human action is wanted: flagged for attention,
|
|
648
|
+
* or human-held with the customer's last message still unanswered
|
|
649
|
+
* (needs_attention OR (awaiting_reply AND control_human)).
|
|
650
|
+
*
|
|
651
|
+
* @generated from enum value: filter_wants_human = 1;
|
|
652
|
+
*/
|
|
653
|
+
filter_wants_human = 1
|
|
654
|
+
}
|
|
655
|
+
/**
|
|
656
|
+
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter.
|
|
657
|
+
*/
|
|
658
|
+
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+AwoTQ2hhbm5lbENvbnZlcnNhdGlvbhIYChBhZ2VudF9jaGFubmVsX2lkGAEgASgJEhgKEGNvbnZlcnNhdGlvbl9rZXkYAiABKAkSCwoDb3JnGAMgASgJEkgKB2NvbnRyb2wYBCABKA4yNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvbkNvbnRyb2wSFQoNY29udHJvbGxlZF9ieRgFIAEoCRI2ChJjb250cm9sX2NoYW5nZWRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEhcKD25lZWRzX2F0dGVudGlvbhgHIAEoCBIYChBhdHRlbnRpb25fcmVhc29uGAggASgJEjgKFGF0dGVudGlvbl9jaGFuZ2VkX2F0GAkgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIUCgxkaXNwbGF5X25hbWUYCiABKAkSPAoYbGFzdF9jdXN0b21lcl9tZXNzYWdlX2F0GAsgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI0ChBsYXN0X2FjdGl2aXR5X2F0GAwgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIWCg5hd2FpdGluZ19yZXBseRgNIAEoCCLIBAoYQ29udmVyc2F0aW9uVGltZWxpbmVJdGVtEg8KB2l0ZW1faWQYASABKAkSQgoEbGFuZRgCIAEoDjI0LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ29udmVyc2F0aW9uTGFuZRJKCgZhdXRob3IYAyABKA4yOi5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvbkl0ZW1BdXRob3ISEwoLYXV0aG9yZWRfYnkYBCABKAkSDAoEdGV4dBgFIAEoCRIdChVwcm92aWRlcl9tZXNzYWdlX3R5cGUYBiABKAkSJgoCYXQYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wElIKD2RlbGl2ZXJ5X3N0YXR1cxgIIAEoDjI5LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ2hhbm5lbERlbGl2ZXJ5U3RhdHVzEk4KDXJlY2VpcHRfc3RhdGUYCSABKA4yNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxSZWNlaXB0U3RhdGUSSQoGb3JpZ2luGAogASgOMjkuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsT3V0Ym91bmRPcmlnaW4SFgoOcmVjZWlwdF9kZXRhaWwYCyABKAkSGgoScmVjZWlwdF9lcnJvcl9jb2RlGAwgASgFIuMBCh1MaXN0Q2hhbm5lbENvbnZlcnNhdGlvbnNJbnB1dBIWCgNvcmcYASABKAlCCbpIBnIEEAEYPxIiChBhZ2VudF9jaGFubmVsX2lkGAIgASgJQgi6SAVyAxiAARIzCglwYWdlX2luZm8YAyABKAsyIC5haS5zdGlnbWVyLmNvbW1vbnMucnBjLlBhZ2VJbmZvElEKBmZpbHRlchgEIAEoDjJBLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGNoYW5uZWwudjEuQ2hhbm5lbENvbnZlcnNhdGlvbkxpc3RGaWx0ZXIidgoXQ2hhbm5lbENvbnZlcnNhdGlvbkxpc3QSEwoLdG90YWxfY291bnQYASABKAUSRgoFaXRlbXMYAiADKAsyNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxDb252ZXJzYXRpb24iaQobR2V0Q2hhbm5lbENvbnZlcnNhdGlvbklucHV0EiQKEGFnZW50X2NoYW5uZWxfaWQYASABKAlCCrpIB3IFEAEYgAESJAoQY29udmVyc2F0aW9uX2tleRgCIAEoCUIKukgHcgUQARiAASKRAQocR2V0Q29udmVyc2F0aW9uVGltZWxpbmVJbnB1dBIkChBhZ2VudF9jaGFubmVsX2lkGAEgASgJQgq6SAdyBRABGIABEiQKEGNvbnZlcnNhdGlvbl9rZXkYAiABKAlCCrpIB3IFEAEYgAESEQoJcGFnZV9zaXplGAMgASgFEhIKCnBhZ2VfdG9rZW4YBCABKAkifAoUQ29udmVyc2F0aW9uVGltZWxpbmUSSwoFaXRlbXMYASADKAsyPC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvblRpbWVsaW5lSXRlbRIXCg9uZXh0X3BhZ2VfdG9rZW4YAiABKAkiZgoYQ29udmVyc2F0aW9uQ29udHJvbElucHV0EiQKEGFnZW50X2NoYW5uZWxfaWQYASABKAlCCrpIB3IFEAEYgAESJAoQY29udmVyc2F0aW9uX2tleRgCIAEoCUIKukgHcgUQARiAASK7AQoYUmVwbHlUb0NvbnZlcnNhdGlvbklucHV0EiQKEGFnZW50X2NoYW5uZWxfaWQYASABKAlCCrpIB3IFEAEYgAESJAoQY29udmVyc2F0aW9uX2tleRgCIAEoCUIKukgHcgUQARiAARJTCgdwYXlsb2FkGAMgASgLMjouYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsT3V0Ym91bmRQYXlsb2FkQga6SAPIAQEiNwoZRXNjYWxhdGVDb252ZXJzYXRpb25JbnB1dBIaCgZyZWFzb24YASABKAlCCrpIB3IFEAEYgAgqYQoTQ29udmVyc2F0aW9uQ29udHJvbBIkCiBjb252ZXJzYXRpb25fY29udHJvbF91bnNwZWNpZmllZBAAEhEKDWNvbnRyb2xfYWdlbnQQARIRCg1jb250cm9sX2h1bWFuEAIqWQoQQ29udmVyc2F0aW9uTGFuZRIhCh1jb252ZXJzYXRpb25fbGFuZV91bnNwZWNpZmllZBAAEg8KC2xhbmVfcHVibGljEAESEQoNbGFuZV9pbnRlcm5hbBACKpMBChZDb252ZXJzYXRpb25JdGVtQXV0aG9yEigKJGNvbnZlcnNhdGlvbl9pdGVtX2F1dGhvcl91bnNwZWNpZmllZBAAEhMKD2F1dGhvcl9jdXN0b21lchABEhAKDGF1dGhvcl9hZ2VudBACEhMKD2F1dGhvcl90ZWFtbWF0ZRADEhMKD2F1dGhvcl9wbGF0Zm9ybRAEKmkKHUNoYW5uZWxDb252ZXJzYXRpb25MaXN0RmlsdGVyEjAKLGNoYW5uZWxfY29udmVyc2F0aW9uX2xpc3RfZmlsdGVyX3Vuc3BlY2lmaWVkEAASFgoSZmlsdGVyX3dhbnRzX2h1bWFuEAFiBnByb3RvMw", [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.
|
|
@@ -32,31 +32,36 @@ export const ListChannelConversationsInputSchema = /*@__PURE__*/ messageDesc(fil
|
|
|
32
32
|
* Use `create(ChannelConversationListSchema)` to create a new message.
|
|
33
33
|
*/
|
|
34
34
|
export const ChannelConversationListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 3);
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetChannelConversationInput.
|
|
37
|
+
* Use `create(GetChannelConversationInputSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const GetChannelConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 4);
|
|
35
40
|
/**
|
|
36
41
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.GetConversationTimelineInput.
|
|
37
42
|
* Use `create(GetConversationTimelineInputSchema)` to create a new message.
|
|
38
43
|
*/
|
|
39
|
-
export const GetConversationTimelineInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
44
|
+
export const GetConversationTimelineInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 5);
|
|
40
45
|
/**
|
|
41
46
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationTimeline.
|
|
42
47
|
* Use `create(ConversationTimelineSchema)` to create a new message.
|
|
43
48
|
*/
|
|
44
|
-
export const ConversationTimelineSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
49
|
+
export const ConversationTimelineSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 6);
|
|
45
50
|
/**
|
|
46
51
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ConversationControlInput.
|
|
47
52
|
* Use `create(ConversationControlInputSchema)` to create a new message.
|
|
48
53
|
*/
|
|
49
|
-
export const ConversationControlInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
54
|
+
export const ConversationControlInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 7);
|
|
50
55
|
/**
|
|
51
56
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.ReplyToConversationInput.
|
|
52
57
|
* Use `create(ReplyToConversationInputSchema)` to create a new message.
|
|
53
58
|
*/
|
|
54
|
-
export const ReplyToConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
59
|
+
export const ReplyToConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 8);
|
|
55
60
|
/**
|
|
56
61
|
* Describes the message ai.stigmer.agentic.agentchannel.v1.EscalateConversationInput.
|
|
57
62
|
* Use `create(EscalateConversationInputSchema)` to create a new message.
|
|
58
63
|
*/
|
|
59
|
-
export const EscalateConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io,
|
|
64
|
+
export const EscalateConversationInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 9);
|
|
60
65
|
/**
|
|
61
66
|
* ConversationControl names who may speak to the customer on a
|
|
62
67
|
* conversation's public lane.
|
|
@@ -178,4 +183,40 @@ export var ConversationItemAuthor;
|
|
|
178
183
|
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ConversationItemAuthor.
|
|
179
184
|
*/
|
|
180
185
|
export const ConversationItemAuthorSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 2);
|
|
186
|
+
/**
|
|
187
|
+
* ChannelConversationListFilter names the server-evaluated predicates the
|
|
188
|
+
* conversation list can be narrowed to.
|
|
189
|
+
*
|
|
190
|
+
* @internal
|
|
191
|
+
* channel-conversations DD-011 D-f/D-g: filter_wants_human expresses
|
|
192
|
+
* EXACTLY the nav badge's union, and the badge count is the filtered
|
|
193
|
+
* list's total_count — one predicate in one handler, so the count and the
|
|
194
|
+
* list it opens can never disagree. Server-side deliberately (T04 D1's
|
|
195
|
+
* standing objection): a client-side tab over one fetched page would
|
|
196
|
+
* silently lie across pages. Values carry the filter_ prefix — proto3
|
|
197
|
+
* enum values are package-scoped (the control_ precedent).
|
|
198
|
+
*
|
|
199
|
+
* @generated from enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter
|
|
200
|
+
*/
|
|
201
|
+
export var ChannelConversationListFilter;
|
|
202
|
+
(function (ChannelConversationListFilter) {
|
|
203
|
+
/**
|
|
204
|
+
* Default value: no filter.
|
|
205
|
+
*
|
|
206
|
+
* @generated from enum value: channel_conversation_list_filter_unspecified = 0;
|
|
207
|
+
*/
|
|
208
|
+
ChannelConversationListFilter[ChannelConversationListFilter["channel_conversation_list_filter_unspecified"] = 0] = "channel_conversation_list_filter_unspecified";
|
|
209
|
+
/**
|
|
210
|
+
* Conversations where a human action is wanted: flagged for attention,
|
|
211
|
+
* or human-held with the customer's last message still unanswered
|
|
212
|
+
* (needs_attention OR (awaiting_reply AND control_human)).
|
|
213
|
+
*
|
|
214
|
+
* @generated from enum value: filter_wants_human = 1;
|
|
215
|
+
*/
|
|
216
|
+
ChannelConversationListFilter[ChannelConversationListFilter["filter_wants_human"] = 1] = "filter_wants_human";
|
|
217
|
+
})(ChannelConversationListFilter || (ChannelConversationListFilter = {}));
|
|
218
|
+
/**
|
|
219
|
+
* Describes the enum ai.stigmer.agentic.agentchannel.v1.ChannelConversationListFilter.
|
|
220
|
+
*/
|
|
221
|
+
export const ChannelConversationListFilterSchema = /*@__PURE__*/ enumDesc(file_ai_stigmer_agentic_agentchannel_v1_conversation_io, 3);
|
|
181
222
|
//# 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":"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,4jHAA4jH,EAAE,CAAC,gDAAgD,EAAE,kDAAkD,EAAE,gDAAgD,EAAE,sCAAsC,EAAE,0BAA0B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA6Iv0H;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAsI1E;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAsC1E;;;GAGG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAA8C,aAAa,CACzG,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAwB1E;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAuB1E;;;GAGG;AACH,MAAM,CAAC,MAAM,iCAAiC,GAA4C,aAAa,CACrG,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAqC1E;;;GAGG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAA6C,aAAa,CACvG,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAgC1E;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAwB1E;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAuC1E;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAiB1E;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAE1E;;;;;;;;;;;GAWG;AACH,MAAM,CAAN,IAAY,mBAqBX;AArBD,WAAY,mBAAmB;IAC7B;;;;OAIG;IACH,qHAAoC,CAAA;IAEpC;;;;OAIG;IACH,+EAAiB,CAAA;IAEjB;;;;OAIG;IACH,+EAAiB,CAAA;AACnB,CAAC,EArBW,mBAAmB,KAAnB,mBAAmB,QAqB9B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAiC,aAAa,CAClF,QAAQ,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAEvE;;;;;;;;;GASG;AACH,MAAM,CAAN,IAAY,gBAqBX;AArBD,WAAY,gBAAgB;IAC1B;;;;OAIG;IACH,yGAAiC,CAAA;IAEjC;;;;OAIG;IACH,qEAAe,CAAA;IAEf;;;;OAIG;IACH,yEAAiB,CAAA;AACnB,CAAC,EArBW,gBAAgB,KAAhB,gBAAgB,QAqB3B;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAA8B,aAAa,CAC5E,QAAQ,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAEvE;;;;GAIG;AACH,MAAM,CAAN,IAAY,sBA0CX;AA1CD,WAAY,sBAAsB;IAChC;;;;OAIG;IACH,mIAAwC,CAAA;IAExC;;;;OAIG;IACH,yFAAmB,CAAA;IAEnB;;;;OAIG;IACH,mFAAgB,CAAA;IAEhB;;;;OAIG;IACH,yFAAmB,CAAA;IAEnB;;;;;;;;;;;OAWG;IACH,yFAAmB,CAAA;AACrB,CAAC,EA1CW,sBAAsB,KAAtB,sBAAsB,QA0CjC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAoC,aAAa,CACxF,QAAQ,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC;AAEvE;;;;;;;;;;;;;;GAcG;AACH,MAAM,CAAN,IAAY,6BAgBX;AAhBD,WAAY,6BAA6B;IACvC;;;;OAIG;IACH,iKAAgD,CAAA;IAEhD;;;;;;OAMG;IACH,6GAAsB,CAAA;AACxB,CAAC,EAhBW,6BAA6B,KAA7B,6BAA6B,QAgBxC;AAED;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAA2C,aAAa,CACtG,QAAQ,CAAC,uDAAuD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -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
|
*
|
|
@@ -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, ConversationTimeline, GetChannelConversationInput, 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
|
*
|
|
@@ -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,oBAAoB,EAAE,2BAA2B,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAC;AACtM,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;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, ConversationTimelineSchema, GetChannelConversationInputSchema, 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
|
*
|
|
@@ -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("CjthaS9zdGlnbWVyL2FnZW50aWMvYWdlbnRjaGFubmVsL3YxL2NvbnZlcnNhdGlvbl9xdWVyeS5wcm90bxIiYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MTKABQoiQ2hhbm5lbENvbnZlcnNhdGlvblF1ZXJ5Q29udHJvbGxlchKZAQoRbGlzdENvbnZlcnNhdGlvbnMSQS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkxpc3RDaGFubmVsQ29udmVyc2F0aW9uc0lucHV0GjsuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5DaGFubmVsQ29udmVyc2F0aW9uTGlzdCIE0LgYARLbAQoPZ2V0Q29udmVyc2F0aW9uEj8uYWkuc3RpZ21lci5hZ2VudGljLmFnZW50Y2hhbm5lbC52MS5HZXRDaGFubmVsQ29udmVyc2F0aW9uSW5wdXQaNy5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNoYW5uZWxDb252ZXJzYXRpb24iTsK4GEoIARAvIhBhZ2VudF9jaGFubmVsX2lkKjJ1bmF1dGhvcml6ZWQgdG8gdmlldyBjb252ZXJzYXRpb25zIG9uIHRoaXMgY2hhbm5lbBLZAQoLZ2V0VGltZWxpbmUSQC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkdldENvbnZlcnNhdGlvblRpbWVsaW5lSW5wdXQaOC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRjaGFubmVsLnYxLkNvbnZlcnNhdGlvblRpbWVsaW5lIk7CuBhKCAEQLyIQYWdlbnRfY2hhbm5lbF9pZCoydW5hdXRob3JpemVkIHRvIHZpZXcgY29udmVyc2F0aW9ucyBvbiB0aGlzIGNoYW5uZWwaBKD/Ky9iBnByb3RvMw", [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,w+BAAw+B,EAAE,CAAC,uDAAuD,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAErpC;;;;;;;;;;;;;;;;GAgBG;AACH,MAAM,CAAC,MAAM,kCAAkC,GA+E1C,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"}
|
|
@@ -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.
|
|
@@ -696,3 +719,51 @@ export type Attachment = Message<"ai.stigmer.agentic.agentexecution.v1.Attachmen
|
|
|
696
719
|
* Use `create(AttachmentSchema)` to create a new message.
|
|
697
720
|
*/
|
|
698
721
|
export declare const AttachmentSchema: GenMessage<Attachment>;
|
|
722
|
+
/**
|
|
723
|
+
* ConversationCatchup carries the channel-conversation events an agent
|
|
724
|
+
* missed, composed fresh for one execution.
|
|
725
|
+
*
|
|
726
|
+
* @internal
|
|
727
|
+
* Present on EVERY channel turn — even with an empty digest — so window_end
|
|
728
|
+
* can advance the conversation's agent_witnessed_through watermark when the
|
|
729
|
+
* turn settles (channel-conversations DD-006 as amended by T03 Sitting 3,
|
|
730
|
+
* A21). Content is composed in the cloud; presentation (preamble, framing,
|
|
731
|
+
* prompt placement) is owned by the OSS runner's shared/conversation-catchup
|
|
732
|
+
* module — the DD-013 content/presentation split.
|
|
733
|
+
*
|
|
734
|
+
* @generated from message ai.stigmer.agentic.agentexecution.v1.ConversationCatchup
|
|
735
|
+
*/
|
|
736
|
+
export type ConversationCatchup = Message<"ai.stigmer.agentic.agentexecution.v1.ConversationCatchup"> & {
|
|
737
|
+
/**
|
|
738
|
+
* Plain-text digest of what the agent missed, oldest first; empty when
|
|
739
|
+
* nothing was missed.
|
|
740
|
+
*
|
|
741
|
+
* @internal
|
|
742
|
+
* Bare content lines ("Customer: ..." / "Teammate: ..." / "System: ..." /
|
|
743
|
+
* "You escalated: ..." / "Note: ..."), no model-facing framing — the
|
|
744
|
+
* runner owns the preamble and the prompt placement. Blank means "inject
|
|
745
|
+
* nothing" (the shared-module blank-is-absent convention).
|
|
746
|
+
*
|
|
747
|
+
* @generated from field: string digest = 1;
|
|
748
|
+
*/
|
|
749
|
+
digest: string;
|
|
750
|
+
/**
|
|
751
|
+
* The timeline instant this digest conveys through.
|
|
752
|
+
*
|
|
753
|
+
* @internal
|
|
754
|
+
* Cloud bookkeeping, NEVER read by the runner. The delivery settle path
|
|
755
|
+
* advances the conversation's agent_witnessed_through watermark to this
|
|
756
|
+
* instant when the execution COMPLETED and the settle won (DD-007 D-b as
|
|
757
|
+
* sharpened by A26). Set on every channel turn, digest or not (A21); its
|
|
758
|
+
* value is the broker's compose instant, which is strictly later than the
|
|
759
|
+
* turn's own inbound message (A24).
|
|
760
|
+
*
|
|
761
|
+
* @generated from field: google.protobuf.Timestamp window_end = 2;
|
|
762
|
+
*/
|
|
763
|
+
windowEnd?: Timestamp;
|
|
764
|
+
};
|
|
765
|
+
/**
|
|
766
|
+
* Describes the message ai.stigmer.agentic.agentexecution.v1.ConversationCatchup.
|
|
767
|
+
* Use `create(ConversationCatchupSchema)` to create a new message.
|
|
768
|
+
*/
|
|
769
|
+
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("Ci9haS9zdGlnbWVyL2FnZW50aWMvYWdlbnRleGVjdXRpb24vdjEvc3BlYy5wcm90bxIkYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxIrUJChJBZ2VudEV4ZWN1dGlvblNwZWMSEgoKc2Vzc2lvbl9pZBgBIAEoCRIQCghhZ2VudF9pZBgCIAEoCRJACgxzZXNzaW9uX3NwZWMYDSABKAsyKi5haS5zdGlnbWVyLmFnZW50aWMuc2Vzc2lvbi52MS5TZXNzaW9uU3BlYxIYCgdtZXNzYWdlGAMgASgJQge6SARyAhABEk8KEGV4ZWN1dGlvbl9jb25maWcYBCABKAsyNS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuRXhlY3V0aW9uQ29uZmlnEl0KC3J1bnRpbWVfZW52GAUgAygLMkguYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFnZW50RXhlY3V0aW9uU3BlYy5SdW50aW1lRW52RW50cnkSFgoOY2FsbGJhY2tfdG9rZW4YBiABKAwSGAoQYXV0b19hcHByb3ZlX2FsbBgHIAEoCBIaChJwYXJlbnRfd29ya2Zsb3dfaWQYCCABKAkSRQoLYXR0YWNobWVudHMYCSADKAsyMC5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQXR0YWNobWVudBIbChN3b3Jrc3BhY2VfZmlsZV9yZWZzGAogAygJEhsKE2FjdGl2aXR5X3Rhc2tfcXVldWUYCyABKAkSHwoXc3VwZXJzZWRlc19leGVjdXRpb25faWQYDCABKAkSVwoUY29udmVyc2F0aW9uX2NhdGNodXAYDiABKAsyOS5haS5zdGlnbWVyLmFnZW50aWMuYWdlbnRleGVjdXRpb24udjEuQ29udmVyc2F0aW9uQ2F0Y2h1cBppCg9SdW50aW1lRW52RW50cnkSCwoDa2V5GAEgASgJEkUKBXZhbHVlGAIgASgLMjYuYWkuc3RpZ21lci5hZ2VudGljLmV4ZWN1dGlvbmNvbnRleHQudjEuRXhlY3V0aW9uVmFsdWU6AjgBOrgDuki0AxrLAQohYWdlbnRfZXhlY3V0aW9uLnNlc3Npb25fZXhjbHVzaXZlEnJzZXNzaW9uX2lkIGFuZCBzZXNzaW9uX3NwZWMgYXJlIG11dHVhbGx5IGV4Y2x1c2l2ZSDigJQgcmVmZXJlbmNlIGFuIGV4aXN0aW5nIHNlc3Npb24gb3IgZGVmaW5lIGEgbmV3IG9uZSwgbm90IGJvdGgaMiEodGhpcy5zZXNzaW9uX2lkICE9ICcnICYmIGhhcyh0aGlzLnNlc3Npb25fc3BlYykpGuMBCiphZ2VudF9leGVjdXRpb24uc2Vzc2lvbl9zcGVjX2hhcm5lc3Nfc3RhdGUScHNlc3Npb25fc3BlYy5oYXJuZXNzX3N0YXRlX2lkIG11c3QgYmUgZW1wdHkg4oCUIGhhcm5lc3Mgc3RhdGUgaXMgY3JlYXRlZCBieSB0aGUgcnVubmVyIGFmdGVyIHRoZSBmaXJzdCBleGVjdXRpb24aQyFoYXModGhpcy5zZXNzaW9uX3NwZWMpIHx8IHRoaXMuc2Vzc2lvbl9zcGVjLmhhcm5lc3Nfc3RhdGVfaWQgPT0gJycipQQKD0V4ZWN1dGlvbkNvbmZpZxISCgptb2RlbF9uYW1lGAEgASgJElkKEmNvbnRleHRfbWFuYWdlbWVudBgCIAEoCzI9LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5Db250ZXh0TWFuYWdlbWVudENvbmZpZxIXCg9tYXhfdG9vbF9yb3VuZHMYAyABKAUSHQoVbWF4X3Rvb2xfcmVzdWx0X2NoYXJzGAQgASgFEhQKDG1heF9jb3N0X3VzZBgFIAEoARJZChBpbnRlcmFjdGlvbl9tb2RlGAYgASgOMjUuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkludGVyYWN0aW9uTW9kZUIIukgFggECEAESOQoYc3RydWN0dXJlZF9vdXRwdXRfc2NoZW1hGAcgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdBIXCg9idWlsZF9mcm9tX3BsYW4YCCABKAgSUwoNYXBwcm92YWxfbW9kZRgJIAEoDjIyLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5BcHByb3ZhbE1vZGVCCLpIBYIBAhABElEKDHNlcnZpY2VfdGllchgKIAEoDjIxLmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5TZXJ2aWNlVGllckIIukgFggECEAEiigEKF0NvbnRleHRNYW5hZ2VtZW50Q29uZmlnEh0KFWRpc2FibGVfc3VtbWFyaXphdGlvbhgBIAEoCBIpChhjdXN0b21fdHJpZ2dlcl90aHJlc2hvbGQYAiABKAVCB7pIBBoCKAASJQoUY3VzdG9tX3RhcmdldF90b2tlbnMYAyABKAVCB7pIBBoCKAAilAEKCkF0dGFjaG1lbnQSGQoIZmlsZW5hbWUYASABKAlCB7pIBHICEAESHAoLc3RvcmFnZV9rZXkYAiABKAlCB7pIBHICEAESEgoKbW91bnRfcGF0aBgDIAEoCRIUCgxjb250ZW50X3R5cGUYBCABKAkSDwoHZXh0cmFjdBgFIAEoCBISCgpsb2NhbF9wYXRoGAYgASgJIlUKE0NvbnZlcnNhdGlvbkNhdGNodXASDgoGZGlnZXN0GAEgASgJEi4KCndpbmRvd19lbmQYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wYgZwcm90bzM", [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,q6FAAq6F,EAAE,CAAC,8CAA8C,EAAE,gDAAgD,EAAE,uCAAuC,EAAE,0BAA0B,EAAE,2BAA2B,EAAE,8BAA8B,CAAC,CAAC,CAAC;AA8VxpG;;;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;AA4FjE;;;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"}
|