@stigmer/protos 3.0.9-dev.20260615153829 → 3.1.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/agentexecution/v1/api_pb.d.ts +81 -1
- package/ai/stigmer/agentic/agentexecution/v1/api_pb.js +2 -1
- package/ai/stigmer/agentic/agentexecution/v1/api_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.d.ts +325 -1
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.js +26 -1
- package/ai/stigmer/agentic/agentexecution/v1/approval_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/artifact_pb.d.ts +4 -8
- package/ai/stigmer/agentic/agentexecution/v1/artifact_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/artifact_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/command_connect.d.ts +39 -0
- package/ai/stigmer/agentic/agentexecution/v1/command_connect.js +40 -1
- package/ai/stigmer/agentic/agentexecution/v1/command_connect.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/command_pb.d.ts +39 -1
- package/ai/stigmer/agentic/agentexecution/v1/command_pb.js +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/command_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/enum_pb.d.ts +802 -29
- package/ai/stigmer/agentic/agentexecution/v1/enum_pb.js +820 -31
- package/ai/stigmer/agentic/agentexecution/v1/enum_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/filereview_pb.d.ts +796 -0
- package/ai/stigmer/agentic/agentexecution/v1/filereview_pb.js +77 -0
- package/ai/stigmer/agentic/agentexecution/v1/filereview_pb.js.map +1 -0
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.d.ts +92 -1
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.js +33 -28
- package/ai/stigmer/agentic/agentexecution/v1/io_pb.js.map +1 -1
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.d.ts +220 -8
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.js +11 -1
- package/ai/stigmer/agentic/agentexecution/v1/message_pb.js.map +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.d.ts +17 -0
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js +1 -1
- package/ai/stigmer/agentic/mcpserver/v1/spec_pb.js.map +1 -1
- package/ai/stigmer/agentic/workflowexecution/v1/api_pb.d.ts +69 -0
- package/ai/stigmer/agentic/workflowexecution/v1/api_pb.js +7 -2
- package/ai/stigmer/agentic/workflowexecution/v1/api_pb.js.map +1 -1
- package/ai/stigmer/agentic/workflowexecution/v1/command_connect.d.ts +50 -0
- package/ai/stigmer/agentic/workflowexecution/v1/command_connect.js +51 -1
- package/ai/stigmer/agentic/workflowexecution/v1/command_connect.js.map +1 -1
- package/ai/stigmer/agentic/workflowexecution/v1/command_pb.d.ts +50 -1
- package/ai/stigmer/agentic/workflowexecution/v1/command_pb.js +1 -1
- package/ai/stigmer/agentic/workflowexecution/v1/command_pb.js.map +1 -1
- package/ai/stigmer/agentic/workflowexecution/v1/io_pb.d.ts +141 -11
- package/ai/stigmer/agentic/workflowexecution/v1/io_pb.js +26 -21
- package/ai/stigmer/agentic/workflowexecution/v1/io_pb.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv1";
|
|
2
2
|
import type { WorkflowExecutionSchema } from "./api_pb.js";
|
|
3
|
-
import type { CancelWorkflowExecutionInputSchema, PauseWorkflowExecutionInputSchema, RecoverWorkflowExecutionInputSchema, ResumeWorkflowExecutionInputSchema, SendSignalInputSchema, SubmitWorkflowApprovalInputSchema, SubmitWorkflowTaskApprovalInputSchema, TerminateWorkflowExecutionInputSchema, WorkflowExecutionUpdateStatusInputSchema } from "./io_pb.js";
|
|
3
|
+
import type { CancelWorkflowExecutionInputSchema, PauseWorkflowExecutionInputSchema, RecoverWorkflowExecutionInputSchema, ResumeWorkflowExecutionInputSchema, SendSignalInputSchema, SubmitWorkflowApprovalInputSchema, SubmitWorkflowFileDecisionInputSchema, SubmitWorkflowTaskApprovalInputSchema, TerminateWorkflowExecutionInputSchema, WorkflowExecutionUpdateStatusInputSchema } from "./io_pb.js";
|
|
4
4
|
import type { ApiResourceIdSchema } from "../../../commons/apiresource/io_pb.js";
|
|
5
5
|
/**
|
|
6
6
|
* Describes the file ai/stigmer/agentic/workflowexecution/v1/command.proto.
|
|
@@ -339,6 +339,55 @@ export declare const WorkflowExecutionCommandController: GenService<{
|
|
|
339
339
|
input: typeof SubmitWorkflowApprovalInputSchema;
|
|
340
340
|
output: typeof WorkflowExecutionSchema;
|
|
341
341
|
};
|
|
342
|
+
/**
|
|
343
|
+
* Submit a keep/discard decision for a child agent's file review.
|
|
344
|
+
*
|
|
345
|
+
* Forwards the decision to the child AgentExecution whose file-review gate is
|
|
346
|
+
* surfaced on this workflow via status.pending_file_reviews. This is the
|
|
347
|
+
* file-review sibling of submitApproval: submitApproval forwards a tool-call
|
|
348
|
+
* approval, submitFileDecision forwards a FileChangeSet keep/discard.
|
|
349
|
+
*
|
|
350
|
+
* @internal
|
|
351
|
+
* The decision is forwarded to the child via AgentExecution.submitFileDecision
|
|
352
|
+
* (a same-thread in-process invoke), so the child's completeness/digest gates
|
|
353
|
+
* and caller attribution (reviewer_id) apply unchanged.
|
|
354
|
+
*
|
|
355
|
+
* Preconditions:
|
|
356
|
+
* - status.pending_file_reviews must contain an entry whose
|
|
357
|
+
* child_agent_execution_id and change_set_id match the input
|
|
358
|
+
* - User must have can_edit permission on the workflow execution
|
|
359
|
+
*
|
|
360
|
+
* State Transitions
|
|
361
|
+
*
|
|
362
|
+
* After a successful decision:
|
|
363
|
+
* - Decision is forwarded to the child AgentExecution
|
|
364
|
+
* - Child reconciles the approved bytes / discards and resumes
|
|
365
|
+
* - The child's change set leaves AWAITING_REVIEW, so call-agent-status clears
|
|
366
|
+
* the reference from WorkflowExecution.status.pending_file_reviews
|
|
367
|
+
*
|
|
368
|
+
* Error Cases
|
|
369
|
+
*
|
|
370
|
+
* - NOT_FOUND: Workflow execution doesn't exist
|
|
371
|
+
* - PERMISSION_DENIED: User doesn't have can_edit permission
|
|
372
|
+
* - FAILED_PRECONDITION: No matching pending file review for (child, change_set)
|
|
373
|
+
* - INVALID_ARGUMENT: Invalid scope/action, or the child handler rejects
|
|
374
|
+
* (e.g. digest mismatch, incomplete diff)
|
|
375
|
+
* - UNAVAILABLE: Failed to forward to child agent (transient error)
|
|
376
|
+
*
|
|
377
|
+
* Alternative: Direct Agent Decision
|
|
378
|
+
*
|
|
379
|
+
* Users can also submit the decision directly via AgentExecution.submitFileDecision
|
|
380
|
+
* using the child_agent_execution_id. Both paths are equivalent.
|
|
381
|
+
*
|
|
382
|
+
* @since Workflow-Parent File Review
|
|
383
|
+
*
|
|
384
|
+
* @generated from rpc ai.stigmer.agentic.workflowexecution.v1.WorkflowExecutionCommandController.submitFileDecision
|
|
385
|
+
*/
|
|
386
|
+
submitFileDecision: {
|
|
387
|
+
methodKind: "unary";
|
|
388
|
+
input: typeof SubmitWorkflowFileDecisionInputSchema;
|
|
389
|
+
output: typeof WorkflowExecutionSchema;
|
|
390
|
+
};
|
|
342
391
|
/**
|
|
343
392
|
* Submit a human reviewer's decision for a workflow-level human_input task.
|
|
344
393
|
*
|
|
@@ -10,7 +10,7 @@ import { file_ai_stigmer_commons_rpc_method_options } from "../../../commons/rpc
|
|
|
10
10
|
/**
|
|
11
11
|
* Describes the file ai/stigmer/agentic/workflowexecution/v1/command.proto.
|
|
12
12
|
*/
|
|
13
|
-
export const file_ai_stigmer_agentic_workflowexecution_v1_command = /*@__PURE__*/ fileDesc("
|
|
13
|
+
export const file_ai_stigmer_agentic_workflowexecution_v1_command = /*@__PURE__*/ fileDesc("CjVhaS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3dleGVjdXRpb24vdjEvY29tbWFuZC5wcm90bxInYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxMo0VCiJXb3JrZmxvd0V4ZWN1dGlvbkNvbW1hbmRDb250cm9sbGVyEoYBCgZjcmVhdGUSOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb24aOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb24iBNC4GAESwgEKBnVwZGF0ZRI6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbho6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiJAwrgYPAgCEDQiC21ldGFkYXRhLmlkKil1bmF1dGhvcml6ZWQgdG8gdXBkYXRlIHdvcmtmbG93IGV4ZWN1dGlvbhLhAQoMdXBkYXRlU3RhdHVzEksuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXhlY3V0aW9uVXBkYXRlU3RhdHVzSW5wdXQaOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb24iSMK4GEQIAhA0IgxleGVjdXRpb25faWQqMHVuYXV0aG9yaXplZCB0byB1cGRhdGUgd29ya2Zsb3cgZXhlY3V0aW9uIHN0YXR1cxLiAQoOc3VibWl0QXBwcm92YWwSRC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuU3VibWl0V29ya2Zsb3dBcHByb3ZhbElucHV0GjouYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXhlY3V0aW9uIk7CuBhKCAIQNCIMZXhlY3V0aW9uX2lkKjZ1bmF1dGhvcml6ZWQgdG8gc3VibWl0IGFwcHJvdmFsIGZvciB3b3JrZmxvdyBleGVjdXRpb24S7wEKEnN1Ym1pdEZpbGVEZWNpc2lvbhJILmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5TdWJtaXRXb3JrZmxvd0ZpbGVEZWNpc2lvbklucHV0GjouYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXhlY3V0aW9uIlPCuBhPCAIQNCIMZXhlY3V0aW9uX2lkKjt1bmF1dGhvcml6ZWQgdG8gc3VibWl0IGZpbGUgZGVjaXNpb24gZm9yIHdvcmtmbG93IGV4ZWN1dGlvbhLpAQoac3VibWl0V29ya2Zsb3dUYXNrQXBwcm92YWwSSC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuU3VibWl0V29ya2Zsb3dUYXNrQXBwcm92YWxJbnB1dBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiJFwrgYQQgCEDQiDGV4ZWN1dGlvbl9pZCotdW5hdXRob3JpemVkIHRvIHN1Ym1pdCB3b3JrZmxvdyB0YXNrIGFwcHJvdmFsEq8BCgZkZWxldGUSLS5haS5zdGlnbWVyLmNvbW1vbnMuYXBpcmVzb3VyY2UuQXBpUmVzb3VyY2VJZBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiI6wrgYNggCEDQiBXZhbHVlKil1bmF1dGhvcml6ZWQgdG8gZGVsZXRlIHdvcmtmbG93IGV4ZWN1dGlvbhLNAQoKc2VuZFNpZ25hbBI4LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5TZW5kU2lnbmFsSW5wdXQaOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb24iScK4GEUIAhA0IgxleGVjdXRpb25faWQqMXVuYXV0aG9yaXplZCB0byBzZW5kIHNpZ25hbCB0byB3b3JrZmxvdyBleGVjdXRpb24SxAEKBmNhbmNlbBJFLmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5DYW5jZWxXb3JrZmxvd0V4ZWN1dGlvbklucHV0GjouYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXhlY3V0aW9uIjfCuBgzCAIQNCICaWQqKXVuYXV0aG9yaXplZCB0byBjYW5jZWwgd29ya2Zsb3cgZXhlY3V0aW9uEs0BCgl0ZXJtaW5hdGUSSC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuVGVybWluYXRlV29ya2Zsb3dFeGVjdXRpb25JbnB1dBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiI6wrgYNggCEDQiAmlkKix1bmF1dGhvcml6ZWQgdG8gdGVybWluYXRlIHdvcmtmbG93IGV4ZWN1dGlvbhLHAQoHcmVjb3ZlchJGLmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5SZWNvdmVyV29ya2Zsb3dFeGVjdXRpb25JbnB1dBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiI4wrgYNAgCEDQiAmlkKip1bmF1dGhvcml6ZWQgdG8gcmVjb3ZlciB3b3JrZmxvdyBleGVjdXRpb24SwQEKBXBhdXNlEkQuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLlBhdXNlV29ya2Zsb3dFeGVjdXRpb25JbnB1dBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiI2wrgYMggCEDQiAmlkKih1bmF1dGhvcml6ZWQgdG8gcGF1c2Ugd29ya2Zsb3cgZXhlY3V0aW9uEsQBCgZyZXN1bWUSRS5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuUmVzdW1lV29ya2Zsb3dFeGVjdXRpb25JbnB1dBo6LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbiI3wrgYMwgCEDQiAmlkKil1bmF1dGhvcml6ZWQgdG8gcmVzdW1lIHdvcmtmbG93IGV4ZWN1dGlvbhoEoP8rNGIGcHJvdG8z", [file_ai_stigmer_agentic_workflowexecution_v1_api, file_ai_stigmer_agentic_workflowexecution_v1_io, file_ai_stigmer_commons_apiresource_io, file_ai_stigmer_commons_apiresource_rpc_service_options, file_ai_stigmer_commons_rpc_method_options]);
|
|
14
14
|
/**
|
|
15
15
|
* WorkflowExecutionCommandController handles write operations (Create, Update, Delete) for WorkflowExecution resources.
|
|
16
16
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowexecution/v1/command_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,8IAA8I;AAC9I,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,gDAAgD,EAAE,MAAM,aAAa,CAAC;AAE/E,OAAO,EAAE,+CAA+C,EAAE,MAAM,YAAY,CAAC;AAE7E,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,oDAAoD,GAAY,aAAa,CACxF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"command_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowexecution/v1/command_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,8IAA8I;AAC9I,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,gDAAgD,EAAE,MAAM,aAAa,CAAC;AAE/E,OAAO,EAAE,+CAA+C,EAAE,MAAM,YAAY,CAAC;AAE7E,OAAO,EAAE,sCAAsC,EAAE,MAAM,uCAAuC,CAAC;AAC/F,OAAO,EAAE,uDAAuD,EAAE,MAAM,wDAAwD,CAAC;AACjI,OAAO,EAAE,0CAA0C,EAAE,MAAM,2CAA2C,CAAC;AAEvG;;GAEG;AACH,MAAM,CAAC,MAAM,oDAAoD,GAAY,aAAa,CACxF,QAAQ,CAAC,kqHAAkqH,EAAE,CAAC,gDAAgD,EAAE,+CAA+C,EAAE,sCAAsC,EAAE,uDAAuD,EAAE,0CAA0C,CAAC,CAAC,CAAC;AAEj6H;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAM,CAAC,MAAM,kCAAkC,GA85B1C,aAAa,CAChB,WAAW,CAAC,oDAAoD,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
2
|
-
import type { ApprovalAction } from "../../agentexecution/v1/enum_pb.js";
|
|
2
|
+
import type { ApprovalAction, FileDecisionAction, FileDecisionScope } from "../../agentexecution/v1/enum_pb.js";
|
|
3
3
|
import type { WorkflowExecution, WorkflowExecutionStatus } from "./api_pb.js";
|
|
4
4
|
import type { ExecutionPhase } from "./enum_pb.js";
|
|
5
5
|
import type { WorkflowEventType, WorkflowExecutionEvent } from "./event_pb.js";
|
|
@@ -283,24 +283,58 @@ export type WorkflowExecutionUpdateStatusInput = Message<"ai.stigmer.agentic.wor
|
|
|
283
283
|
*/
|
|
284
284
|
events: WorkflowExecutionEvent[];
|
|
285
285
|
/**
|
|
286
|
-
* When true, status.pending_approvals
|
|
287
|
-
*
|
|
288
|
-
*
|
|
286
|
+
* When true, status.pending_approvals is merged for the single child named by
|
|
287
|
+
* pending_update_child_agent_execution_id. When false (default), the stored
|
|
288
|
+
* list is preserved unchanged.
|
|
289
289
|
*
|
|
290
290
|
* @internal
|
|
291
|
-
*
|
|
292
|
-
*
|
|
293
|
-
* approval gates
|
|
291
|
+
* Per-child merge (NOT full-replace): the write replaces the entries for the
|
|
292
|
+
* scoped child and preserves every sibling child's entries, so parallel child
|
|
293
|
+
* agents never clobber each other's approval gates. A scoped write with an
|
|
294
|
+
* empty incoming list clears just that child's entries. The guard still
|
|
295
|
+
* prevents concurrent event emissions (which don't include approvals) from
|
|
296
|
+
* disturbing active gates set by call-agent-status.
|
|
294
297
|
*
|
|
295
|
-
* Only call-agent-status.ts sets this to true — both when populating
|
|
296
|
-
*
|
|
297
|
-
*
|
|
298
|
+
* Only call-agent-status.ts sets this to true — both when populating approvals
|
|
299
|
+
* from a child_approval_required signal and when clearing them after the child
|
|
300
|
+
* agent completes.
|
|
298
301
|
*
|
|
299
|
-
* @since Agent Call Live Experience
|
|
302
|
+
* @since Agent Call Live Experience (per-child merge since Workflow-Parent File Review)
|
|
300
303
|
*
|
|
301
304
|
* @generated from field: bool update_pending_approvals = 11;
|
|
302
305
|
*/
|
|
303
306
|
updatePendingApprovals: boolean;
|
|
307
|
+
/**
|
|
308
|
+
* When true, status.pending_file_reviews is merged for the single child named
|
|
309
|
+
* by pending_update_child_agent_execution_id, with the same per-child merge
|
|
310
|
+
* semantics as update_pending_approvals. When false (default), the stored list
|
|
311
|
+
* is preserved unchanged.
|
|
312
|
+
*
|
|
313
|
+
* @internal
|
|
314
|
+
* Only call-agent-status.ts sets this to true — when surfacing a child's
|
|
315
|
+
* AWAITING_REVIEW change sets and when clearing them.
|
|
316
|
+
*
|
|
317
|
+
* @since Workflow-Parent File Review
|
|
318
|
+
*
|
|
319
|
+
* @generated from field: bool update_pending_file_reviews = 12;
|
|
320
|
+
*/
|
|
321
|
+
updatePendingFileReviews: boolean;
|
|
322
|
+
/**
|
|
323
|
+
* The child agent execution a per-child merge targets. Names the single child
|
|
324
|
+
* whose pending_approvals / pending_file_reviews entries this update replaces;
|
|
325
|
+
* every sibling child's entries are preserved. Required whenever
|
|
326
|
+
* update_pending_approvals or update_pending_file_reviews is true — including
|
|
327
|
+
* the clear case, where the scoped incoming list is empty (the child id is the
|
|
328
|
+
* only way to know which child to clear).
|
|
329
|
+
*
|
|
330
|
+
* @internal
|
|
331
|
+
* Format: AgentExecution.metadata.id (e.g., "aex_abc123xyz456").
|
|
332
|
+
*
|
|
333
|
+
* @since Workflow-Parent File Review
|
|
334
|
+
*
|
|
335
|
+
* @generated from field: string pending_update_child_agent_execution_id = 13;
|
|
336
|
+
*/
|
|
337
|
+
pendingUpdateChildAgentExecutionId: string;
|
|
304
338
|
};
|
|
305
339
|
/**
|
|
306
340
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.WorkflowExecutionUpdateStatusInput.
|
|
@@ -363,6 +397,102 @@ export type SubmitWorkflowApprovalInput = Message<"ai.stigmer.agentic.workflowex
|
|
|
363
397
|
* Use `create(SubmitWorkflowApprovalInputSchema)` to create a new message.
|
|
364
398
|
*/
|
|
365
399
|
export declare const SubmitWorkflowApprovalInputSchema: GenMessage<SubmitWorkflowApprovalInput>;
|
|
400
|
+
/**
|
|
401
|
+
* Input for the WorkflowExecution.submitFileDecision RPC.
|
|
402
|
+
*
|
|
403
|
+
* @internal
|
|
404
|
+
* Forwards a file-review keep/discard decision to a child AgentExecution whose
|
|
405
|
+
* file-review gate is surfaced on the parent via status.pending_file_reviews.
|
|
406
|
+
* Mirrors agentexecution.SubmitFileDecisionInput plus explicit routing: the UI
|
|
407
|
+
* holds child_agent_execution_id from the surfaced reference, so routing is
|
|
408
|
+
* explicit and does not depend on change_set_id being globally unique. The
|
|
409
|
+
* handler validates the (child_agent_execution_id, change_set_id) pair is present
|
|
410
|
+
* in status.pending_file_reviews before forwarding, then invokes
|
|
411
|
+
* AgentExecution.submitFileDecision on the same thread so the caller identity
|
|
412
|
+
* (reviewer_id) propagates.
|
|
413
|
+
*
|
|
414
|
+
* @generated from message ai.stigmer.agentic.workflowexecution.v1.SubmitWorkflowFileDecisionInput
|
|
415
|
+
*/
|
|
416
|
+
export type SubmitWorkflowFileDecisionInput = Message<"ai.stigmer.agentic.workflowexecution.v1.SubmitWorkflowFileDecisionInput"> & {
|
|
417
|
+
/**
|
|
418
|
+
* ID of the workflow execution.
|
|
419
|
+
*
|
|
420
|
+
* @internal
|
|
421
|
+
* Format: "wfx_abc123xyz456"
|
|
422
|
+
*
|
|
423
|
+
* @generated from field: string execution_id = 1;
|
|
424
|
+
*/
|
|
425
|
+
executionId: string;
|
|
426
|
+
/**
|
|
427
|
+
* ID of the child agent execution holding the file-review gate.
|
|
428
|
+
*
|
|
429
|
+
* @internal
|
|
430
|
+
* Must match a WorkflowPendingFileReview.child_agent_execution_id in
|
|
431
|
+
* status.pending_file_reviews. Format: AgentExecution.metadata.id.
|
|
432
|
+
*
|
|
433
|
+
* @generated from field: string child_agent_execution_id = 2;
|
|
434
|
+
*/
|
|
435
|
+
childAgentExecutionId: string;
|
|
436
|
+
/**
|
|
437
|
+
* ID of the change set this decision targets.
|
|
438
|
+
*
|
|
439
|
+
* @internal
|
|
440
|
+
* Must be listed under the matched child's WorkflowPendingFileReview.change_set_id
|
|
441
|
+
* and match a FileChangeSet.id on the child's status.file_change_sets.
|
|
442
|
+
*
|
|
443
|
+
* @generated from field: string change_set_id = 3;
|
|
444
|
+
*/
|
|
445
|
+
changeSetId: string;
|
|
446
|
+
/**
|
|
447
|
+
* Whether the decision applies to the whole change set or one file.
|
|
448
|
+
* FILE_DECISION_SCOPE_UNSPECIFIED (0) is rejected by validation.
|
|
449
|
+
*
|
|
450
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.FileDecisionScope scope = 4;
|
|
451
|
+
*/
|
|
452
|
+
scope: FileDecisionScope;
|
|
453
|
+
/**
|
|
454
|
+
* ID of the file change to decide; required when scope is FILE, ignored for
|
|
455
|
+
* CHANGE_SET (the cross-field rule is enforced by the child handler). Must
|
|
456
|
+
* match a CapturedFileChange.id within the change set.
|
|
457
|
+
*
|
|
458
|
+
* @generated from field: string file_change_id = 5;
|
|
459
|
+
*/
|
|
460
|
+
fileChangeId: string;
|
|
461
|
+
/**
|
|
462
|
+
* Keep (APPROVE) or discard (REJECT). FILE_DECISION_ACTION_UNSPECIFIED (0) is
|
|
463
|
+
* rejected by validation.
|
|
464
|
+
*
|
|
465
|
+
* @generated from field: ai.stigmer.agentic.agentexecution.v1.FileDecisionAction action = 6;
|
|
466
|
+
*/
|
|
467
|
+
action: FileDecisionAction;
|
|
468
|
+
/**
|
|
469
|
+
* Digest of the content the user actually saw — the enforcement gate,
|
|
470
|
+
* forwarded to the child unchanged.
|
|
471
|
+
*
|
|
472
|
+
* @generated from field: string expected_digest = 7;
|
|
473
|
+
*/
|
|
474
|
+
expectedDigest: string;
|
|
475
|
+
/**
|
|
476
|
+
* Optional reason/comment for the decision (audit trail).
|
|
477
|
+
*
|
|
478
|
+
* @generated from field: string reason = 8;
|
|
479
|
+
*/
|
|
480
|
+
reason: string;
|
|
481
|
+
/**
|
|
482
|
+
* Set true on an APPROVE to consciously KEEP a binary change whose diff could
|
|
483
|
+
* not be fully reviewed (forwarded to the child unchanged; see
|
|
484
|
+
* agentexecution.SubmitFileDecisionInput.acknowledge_unreviewable). Never
|
|
485
|
+
* relaxes the expected_digest gate.
|
|
486
|
+
*
|
|
487
|
+
* @generated from field: bool acknowledge_unreviewable = 9;
|
|
488
|
+
*/
|
|
489
|
+
acknowledgeUnreviewable: boolean;
|
|
490
|
+
};
|
|
491
|
+
/**
|
|
492
|
+
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SubmitWorkflowFileDecisionInput.
|
|
493
|
+
* Use `create(SubmitWorkflowFileDecisionInputSchema)` to create a new message.
|
|
494
|
+
*/
|
|
495
|
+
export declare const SubmitWorkflowFileDecisionInputSchema: GenMessage<SubmitWorkflowFileDecisionInput>;
|
|
366
496
|
/**
|
|
367
497
|
* SubmitWorkflowTaskApprovalInput submits a human reviewer's decision for a
|
|
368
498
|
* workflow-level human_input task.
|
|
@@ -11,7 +11,7 @@ import { file_google_protobuf_duration, file_google_protobuf_struct, file_google
|
|
|
11
11
|
/**
|
|
12
12
|
* Describes the file ai/stigmer/agentic/workflowexecution/v1/io.proto.
|
|
13
13
|
*/
|
|
14
|
-
export const file_ai_stigmer_agentic_workflowexecution_v1_io = /*@__PURE__*/ fileDesc("
|
|
14
|
+
export const file_ai_stigmer_agentic_workflowexecution_v1_io = /*@__PURE__*/ fileDesc("CjBhaS9zdGlnbWVyL2FnZW50aWMvd29ya2Zsb3dleGVjdXRpb24vdjEvaW8ucHJvdG8SJ2FpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MSIsChNXb3JrZmxvd0V4ZWN1dGlvbklkEhUKBXZhbHVlGAEgASgJQga6SAPIAQEiIwoKV29ya2Zsb3dJZBIVCgV2YWx1ZRgBIAEoCUIGukgDyAEBInkKFVdvcmtmbG93RXhlY3V0aW9uTGlzdBITCgt0b3RhbF9wYWdlcxgBIAEoBRJLCgdlbnRyaWVzGAIgAygLMjouYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXhlY3V0aW9uItcCCh1MaXN0V29ya2Zsb3dFeGVjdXRpb25zUmVxdWVzdBIRCglwYWdlX3NpemUYASABKAUSEgoKcGFnZV90b2tlbhgCIAEoCRJGCgVwaGFzZRgDIAEoDjI3LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5FeGVjdXRpb25QaGFzZRIMCgR0YWdzGAQgAygJElAKBmZpbHRlchgFIAEoCzJALmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5FeGVjdXRpb25GaWx0ZXJDcml0ZXJpYRJPCgpzb3J0X2ZpZWxkGAYgASgOMjsuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLkV4ZWN1dGlvblNvcnRGaWVsZBIWCg5zb3J0X2FzY2VuZGluZxgHIAEoCCKoAgonTGlzdFdvcmtmbG93RXhlY3V0aW9uc0J5V29ya2Zsb3dSZXF1ZXN0EhsKC3dvcmtmbG93X2lkGAEgASgJQga6SAPIAQESEQoJcGFnZV9zaXplGAIgASgFEhIKCnBhZ2VfdG9rZW4YAyABKAkSUAoGZmlsdGVyGAQgASgLMkAuYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLkV4ZWN1dGlvbkZpbHRlckNyaXRlcmlhEk8KCnNvcnRfZmllbGQYBSABKA4yOy5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuRXhlY3V0aW9uU29ydEZpZWxkEhYKDnNvcnRfYXNjZW5kaW5nGAYgASgIIuYCCiJXb3JrZmxvd0V4ZWN1dGlvblVwZGF0ZVN0YXR1c0lucHV0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQARJYCgZzdGF0dXMYAiABKAsyQC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb25TdGF0dXNCBrpIA8gBARJPCgZldmVudHMYCiADKAsyPy5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb25FdmVudBIgChh1cGRhdGVfcGVuZGluZ19hcHByb3ZhbHMYCyABKAgSIwobdXBkYXRlX3BlbmRpbmdfZmlsZV9yZXZpZXdzGAwgASgIEi8KJ3BlbmRpbmdfdXBkYXRlX2NoaWxkX2FnZW50X2V4ZWN1dGlvbl9pZBgNIAEoCSK+AQobU3VibWl0V29ya2Zsb3dBcHByb3ZhbElucHV0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQARIdCgx0b29sX2NhbGxfaWQYAiABKAlCB7pIBHICEAESUAoGYWN0aW9uGAMgASgOMjQuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkFwcHJvdmFsQWN0aW9uQgq6SAeCAQQQASAAEg8KB2NvbW1lbnQYBCABKAkioQMKH1N1Ym1pdFdvcmtmbG93RmlsZURlY2lzaW9uSW5wdXQSHQoMZXhlY3V0aW9uX2lkGAEgASgJQge6SARyAhABEikKGGNoaWxkX2FnZW50X2V4ZWN1dGlvbl9pZBgCIAEoCUIHukgEcgIQARIeCg1jaGFuZ2Vfc2V0X2lkGAMgASgJQge6SARyAhABElIKBXNjb3BlGAQgASgOMjcuYWkuc3RpZ21lci5hZ2VudGljLmFnZW50ZXhlY3V0aW9uLnYxLkZpbGVEZWNpc2lvblNjb3BlQgq6SAeCAQQQASAAEhYKDmZpbGVfY2hhbmdlX2lkGAUgASgJElQKBmFjdGlvbhgGIAEoDjI4LmFpLnN0aWdtZXIuYWdlbnRpYy5hZ2VudGV4ZWN1dGlvbi52MS5GaWxlRGVjaXNpb25BY3Rpb25CCrpIB4IBBBABIAASIAoPZXhwZWN0ZWRfZGlnZXN0GAcgASgJQge6SARyAhABEg4KBnJlYXNvbhgIIAEoCRIgChhhY2tub3dsZWRnZV91bnJldmlld2FibGUYCSABKAgixQEKH1N1Ym1pdFdvcmtmbG93VGFza0FwcHJvdmFsSW5wdXQSHQoMZXhlY3V0aW9uX2lkGAEgASgJQge6SARyAhABEhoKCXRhc2tfbmFtZRgCIAEoCUIHukgEcgIQARIYCgdvdXRjb21lGAMgASgJQge6SARyAhABEioKCWZvcm1fZGF0YRgEIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QSEAoIcmV2aWV3ZXIYBSABKAkSDwoHY29tbWVudBgGIAEoCSJBCiFTdWJzY3JpYmVXb3JrZmxvd0V4ZWN1dGlvblJlcXVlc3QSHAoMZXhlY3V0aW9uX2lkGAEgASgJQga6SAPIAQEiQwocQ2FuY2VsV29ya2Zsb3dFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQARIOCgZyZWFzb24YAiABKAkiRgofVGVybWluYXRlV29ya2Zsb3dFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQARIOCgZyZWFzb24YAiABKAkiRAodUmVjb3ZlcldvcmtmbG93RXhlY3V0aW9uSW5wdXQSEwoCaWQYASABKAlCB7pIBHICEAESDgoGcmVhc29uGAIgASgJIkIKG1BhdXNlV29ya2Zsb3dFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQARIOCgZyZWFzb24YAiABKAkiMwocUmVzdW1lV29ya2Zsb3dFeGVjdXRpb25JbnB1dBITCgJpZBgBIAEoCUIHukgEcgIQASKRAQoPU2VuZFNpZ25hbElucHV0Eh0KDGV4ZWN1dGlvbl9pZBgBIAEoCUIHukgEcgIQARIcCgtzaWduYWxfbmFtZRgCIAEoCUIHukgEcgIQARIoCgdwYXlsb2FkGAMgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdBIXCg9pZGVtcG90ZW5jeV9rZXkYBCABKAkiwgEKEkdldEV2ZW50TG9nUmVxdWVzdBIdCgxleGVjdXRpb25faWQYASABKAlCB7pIBHICEAESFgoOYWZ0ZXJfc2VxdWVuY2UYAiABKAQSTwoLZXZlbnRfdHlwZXMYAyADKA4yOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFdmVudFR5cGUSEQoJdGFza19uYW1lGAQgASgJEhEKCXBhZ2Vfc2l6ZRgFIAEoBSKRAQoTR2V0RXZlbnRMb2dSZXNwb25zZRJPCgZldmVudHMYASADKAsyPy5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dFeGVjdXRpb25FdmVudBIQCghoYXNfbW9yZRgCIAEoCBIXCg9sYXRlc3Rfc2VxdWVuY2UYAyABKAQioAEKFlN1YnNjcmliZUV2ZW50c1JlcXVlc3QSHQoMZXhlY3V0aW9uX2lkGAEgASgJQge6SARyAhABEhYKDmFmdGVyX3NlcXVlbmNlGAIgASgEEk8KC2V2ZW50X3R5cGVzGAMgAygOMjouYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93RXZlbnRUeXBlIowDChdFeGVjdXRpb25GaWx0ZXJDcml0ZXJpYRJHCgZwaGFzZXMYASADKA4yNy5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuRXhlY3V0aW9uUGhhc2USMQoNc3RhcnRlZF9hZnRlchgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASMgoOc3RhcnRlZF9iZWZvcmUYAyABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi8KDG1pbl9kdXJhdGlvbhgEIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhIvCgxtYXhfZHVyYXRpb24YBSABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SFwoPbWluX2Nvc3RfbWljcm9zGAYgASgDEhcKD21heF9jb3N0X21pY3JvcxgHIAEoAxIYChBmYWlsZWRfdGFza19uYW1lGAggASgJEhMKC2hhc19yZXRyaWVzGAkgASgIIpgBChpHZXRFeGVjdXRpb25TdW1tYXJ5UmVxdWVzdBIUCgNvcmcYASABKAlCB7pIBHICEAESTwoLdGltZV93aW5kb3cYAiABKA4yOi5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuU3VtbWFyeVRpbWVXaW5kb3cSEwoLd29ya2Zsb3dfaWQYAyABKAkiowQKEEV4ZWN1dGlvblN1bW1hcnkSFAoMYWN0aXZlX2NvdW50GAEgASgFEmAKDHBoYXNlX2NvdW50cxgCIAMoCzJKLmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5FeGVjdXRpb25TdW1tYXJ5LlBoYXNlQ291bnRzRW50cnkSUAoKdG90YWxfY29zdBgDIAEoCzI8LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5Xb3JrZmxvd0Nvc3RTdW1tYXJ5Ei8KDGF2Z19kdXJhdGlvbhgEIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhJbChV0b3BfZmFpbGluZ193b3JrZmxvd3MYBSADKAsyPC5haS5zdGlnbWVyLmFnZW50aWMud29ya2Zsb3dleGVjdXRpb24udjEuV29ya2Zsb3dGYWlsdXJlUmFuaxJYChBjb3N0X2J5X3dvcmtmbG93GAYgAygLMj4uYWkuc3RpZ21lci5hZ2VudGljLndvcmtmbG93ZXhlY3V0aW9uLnYxLldvcmtmbG93Q29zdEJyZWFrZG93bhITCgt0b3RhbF9jb3VudBgHIAEoBRIUCgxzdWNjZXNzX3JhdGUYCCABKAEaMgoQUGhhc2VDb3VudHNFbnRyeRILCgNrZXkYASABKAUSDQoFdmFsdWUYAiABKAU6AjgBImYKE1dvcmtmbG93Q29zdFN1bW1hcnkSFgoOdG90YWxfY29zdF91c2QYASABKAESGgoSdG90YWxfaW5wdXRfdG9rZW5zGAIgASgDEhsKE3RvdGFsX291dHB1dF90b2tlbnMYAyABKAMiWgoTV29ya2Zsb3dGYWlsdXJlUmFuaxIVCg13b3JrZmxvd19zbHVnGAEgASgJEhUKDXdvcmtmbG93X25hbWUYAiABKAkSFQoNZmFpbHVyZV9jb3VudBgDIAEoBSJ2ChVXb3JrZmxvd0Nvc3RCcmVha2Rvd24SFQoNd29ya2Zsb3dfc2x1ZxgBIAEoCRIVCg13b3JrZmxvd19uYW1lGAIgASgJEhYKDnRvdGFsX2Nvc3RfdXNkGAMgASgBEhcKD2V4ZWN1dGlvbl9jb3VudBgEIAEoBSJaChtMaXN0UGVuZGluZ0FwcHJvdmFsc1JlcXVlc3QSFAoDb3JnGAEgASgJQge6SARyAhABEhEKCXBhZ2Vfc2l6ZRgCIAEoBRISCgpwYWdlX3Rva2VuGAMgASgJIvQBCg9QZW5kaW5nQXBwcm92YWwSFAoMZXhlY3V0aW9uX2lkGAEgASgJEhUKDXdvcmtmbG93X25hbWUYAiABKAkSEQoJdGFza19uYW1lGAMgASgJEhEKCXJlcXVlc3RlchgEIAEoCRIwCgxyZXF1ZXN0ZWRfYXQYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEi4KCnRpbWVvdXRfYXQYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEiwKC2Zvcm1fc2NoZW1hGAcgASgLMhcuZ29vZ2xlLnByb3RvYnVmLlN0cnVjdCKPAQoUUGVuZGluZ0FwcHJvdmFsc0xpc3QSSQoHZW50cmllcxgBIAMoCzI4LmFpLnN0aWdtZXIuYWdlbnRpYy53b3JrZmxvd2V4ZWN1dGlvbi52MS5QZW5kaW5nQXBwcm92YWwSEwoLdG90YWxfY291bnQYAiABKAUSFwoPbmV4dF9wYWdlX3Rva2VuGAMgASgJKsIBChJFeGVjdXRpb25Tb3J0RmllbGQSJAogRVhFQ1VUSU9OX1NPUlRfRklFTERfVU5TUEVDSUZJRUQQABIjCh9FWEVDVVRJT05fU09SVF9GSUVMRF9TVEFSVEVEX0FUEAESIQodRVhFQ1VUSU9OX1NPUlRfRklFTERfRFVSQVRJT04QAhIdChlFWEVDVVRJT05fU09SVF9GSUVMRF9DT1NUEAMSHwobRVhFQ1VUSU9OX1NPUlRfRklFTERfU1RBVFVTEAQqvwEKEVN1bW1hcnlUaW1lV2luZG93EiMKH1NVTU1BUllfVElNRV9XSU5ET1dfVU5TUEVDSUZJRUQQABIgChxTVU1NQVJZX1RJTUVfV0lORE9XX0xBU1RfMjRIEAESHwobU1VNTUFSWV9USU1FX1dJTkRPV19MQVNUXzdEEAISIAocU1VNTUFSWV9USU1FX1dJTkRPV19MQVNUXzMwRBADEiAKHFNVTU1BUllfVElNRV9XSU5ET1dfQUxMX1RJTUUQBGIGcHJvdG8z", [file_ai_stigmer_agentic_agentexecution_v1_enum, file_ai_stigmer_agentic_workflowexecution_v1_api, file_ai_stigmer_agentic_workflowexecution_v1_enum, file_ai_stigmer_agentic_workflowexecution_v1_event, file_buf_validate_validate, file_google_protobuf_duration, file_google_protobuf_struct, file_google_protobuf_timestamp]);
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.WorkflowExecutionId.
|
|
17
17
|
* Use `create(WorkflowExecutionIdSchema)` to create a new message.
|
|
@@ -47,106 +47,111 @@ export const WorkflowExecutionUpdateStatusInputSchema = /*@__PURE__*/ messageDes
|
|
|
47
47
|
* Use `create(SubmitWorkflowApprovalInputSchema)` to create a new message.
|
|
48
48
|
*/
|
|
49
49
|
export const SubmitWorkflowApprovalInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 6);
|
|
50
|
+
/**
|
|
51
|
+
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SubmitWorkflowFileDecisionInput.
|
|
52
|
+
* Use `create(SubmitWorkflowFileDecisionInputSchema)` to create a new message.
|
|
53
|
+
*/
|
|
54
|
+
export const SubmitWorkflowFileDecisionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 7);
|
|
50
55
|
/**
|
|
51
56
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SubmitWorkflowTaskApprovalInput.
|
|
52
57
|
* Use `create(SubmitWorkflowTaskApprovalInputSchema)` to create a new message.
|
|
53
58
|
*/
|
|
54
|
-
export const SubmitWorkflowTaskApprovalInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
59
|
+
export const SubmitWorkflowTaskApprovalInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 8);
|
|
55
60
|
/**
|
|
56
61
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SubscribeWorkflowExecutionRequest.
|
|
57
62
|
* Use `create(SubscribeWorkflowExecutionRequestSchema)` to create a new message.
|
|
58
63
|
*/
|
|
59
|
-
export const SubscribeWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
64
|
+
export const SubscribeWorkflowExecutionRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 9);
|
|
60
65
|
/**
|
|
61
66
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.CancelWorkflowExecutionInput.
|
|
62
67
|
* Use `create(CancelWorkflowExecutionInputSchema)` to create a new message.
|
|
63
68
|
*/
|
|
64
|
-
export const CancelWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
69
|
+
export const CancelWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 10);
|
|
65
70
|
/**
|
|
66
71
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.TerminateWorkflowExecutionInput.
|
|
67
72
|
* Use `create(TerminateWorkflowExecutionInputSchema)` to create a new message.
|
|
68
73
|
*/
|
|
69
|
-
export const TerminateWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
74
|
+
export const TerminateWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 11);
|
|
70
75
|
/**
|
|
71
76
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.RecoverWorkflowExecutionInput.
|
|
72
77
|
* Use `create(RecoverWorkflowExecutionInputSchema)` to create a new message.
|
|
73
78
|
*/
|
|
74
|
-
export const RecoverWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
79
|
+
export const RecoverWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 12);
|
|
75
80
|
/**
|
|
76
81
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.PauseWorkflowExecutionInput.
|
|
77
82
|
* Use `create(PauseWorkflowExecutionInputSchema)` to create a new message.
|
|
78
83
|
*/
|
|
79
|
-
export const PauseWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
84
|
+
export const PauseWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 13);
|
|
80
85
|
/**
|
|
81
86
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.ResumeWorkflowExecutionInput.
|
|
82
87
|
* Use `create(ResumeWorkflowExecutionInputSchema)` to create a new message.
|
|
83
88
|
*/
|
|
84
|
-
export const ResumeWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
89
|
+
export const ResumeWorkflowExecutionInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 14);
|
|
85
90
|
/**
|
|
86
91
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SendSignalInput.
|
|
87
92
|
* Use `create(SendSignalInputSchema)` to create a new message.
|
|
88
93
|
*/
|
|
89
|
-
export const SendSignalInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
94
|
+
export const SendSignalInputSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 15);
|
|
90
95
|
/**
|
|
91
96
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.GetEventLogRequest.
|
|
92
97
|
* Use `create(GetEventLogRequestSchema)` to create a new message.
|
|
93
98
|
*/
|
|
94
|
-
export const GetEventLogRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
99
|
+
export const GetEventLogRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 16);
|
|
95
100
|
/**
|
|
96
101
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.GetEventLogResponse.
|
|
97
102
|
* Use `create(GetEventLogResponseSchema)` to create a new message.
|
|
98
103
|
*/
|
|
99
|
-
export const GetEventLogResponseSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
104
|
+
export const GetEventLogResponseSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 17);
|
|
100
105
|
/**
|
|
101
106
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.SubscribeEventsRequest.
|
|
102
107
|
* Use `create(SubscribeEventsRequestSchema)` to create a new message.
|
|
103
108
|
*/
|
|
104
|
-
export const SubscribeEventsRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
109
|
+
export const SubscribeEventsRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 18);
|
|
105
110
|
/**
|
|
106
111
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.ExecutionFilterCriteria.
|
|
107
112
|
* Use `create(ExecutionFilterCriteriaSchema)` to create a new message.
|
|
108
113
|
*/
|
|
109
|
-
export const ExecutionFilterCriteriaSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
114
|
+
export const ExecutionFilterCriteriaSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 19);
|
|
110
115
|
/**
|
|
111
116
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.GetExecutionSummaryRequest.
|
|
112
117
|
* Use `create(GetExecutionSummaryRequestSchema)` to create a new message.
|
|
113
118
|
*/
|
|
114
|
-
export const GetExecutionSummaryRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
119
|
+
export const GetExecutionSummaryRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 20);
|
|
115
120
|
/**
|
|
116
121
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.ExecutionSummary.
|
|
117
122
|
* Use `create(ExecutionSummarySchema)` to create a new message.
|
|
118
123
|
*/
|
|
119
|
-
export const ExecutionSummarySchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
124
|
+
export const ExecutionSummarySchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 21);
|
|
120
125
|
/**
|
|
121
126
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.WorkflowCostSummary.
|
|
122
127
|
* Use `create(WorkflowCostSummarySchema)` to create a new message.
|
|
123
128
|
*/
|
|
124
|
-
export const WorkflowCostSummarySchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
129
|
+
export const WorkflowCostSummarySchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 22);
|
|
125
130
|
/**
|
|
126
131
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.WorkflowFailureRank.
|
|
127
132
|
* Use `create(WorkflowFailureRankSchema)` to create a new message.
|
|
128
133
|
*/
|
|
129
|
-
export const WorkflowFailureRankSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
134
|
+
export const WorkflowFailureRankSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 23);
|
|
130
135
|
/**
|
|
131
136
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.WorkflowCostBreakdown.
|
|
132
137
|
* Use `create(WorkflowCostBreakdownSchema)` to create a new message.
|
|
133
138
|
*/
|
|
134
|
-
export const WorkflowCostBreakdownSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
139
|
+
export const WorkflowCostBreakdownSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 24);
|
|
135
140
|
/**
|
|
136
141
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.ListPendingApprovalsRequest.
|
|
137
142
|
* Use `create(ListPendingApprovalsRequestSchema)` to create a new message.
|
|
138
143
|
*/
|
|
139
|
-
export const ListPendingApprovalsRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
144
|
+
export const ListPendingApprovalsRequestSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 25);
|
|
140
145
|
/**
|
|
141
146
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.PendingApproval.
|
|
142
147
|
* Use `create(PendingApprovalSchema)` to create a new message.
|
|
143
148
|
*/
|
|
144
|
-
export const PendingApprovalSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
149
|
+
export const PendingApprovalSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 26);
|
|
145
150
|
/**
|
|
146
151
|
* Describes the message ai.stigmer.agentic.workflowexecution.v1.PendingApprovalsList.
|
|
147
152
|
* Use `create(PendingApprovalsListSchema)` to create a new message.
|
|
148
153
|
*/
|
|
149
|
-
export const PendingApprovalsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io,
|
|
154
|
+
export const PendingApprovalsListSchema = /*@__PURE__*/ messageDesc(file_ai_stigmer_agentic_workflowexecution_v1_io, 27);
|
|
150
155
|
/**
|
|
151
156
|
* ExecutionSortField defines the column to sort execution lists by.
|
|
152
157
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowexecution/v1/io_pb.ts"],"names":[],"mappings":"AAAA,oFAAoF;AACpF,yIAAyI;AACzI,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAE/E,OAAO,EAAE,8CAA8C,EAAE,MAAM,oCAAoC,CAAC;AAEpG,OAAO,EAAE,gDAAgD,EAAE,MAAM,aAAa,CAAC;AAE/E,OAAO,EAAE,iDAAiD,EAAE,MAAM,cAAc,CAAC;AAEjF,OAAO,EAAE,kDAAkD,EAAE,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,0BAA0B,EAAE,MAAM,4CAA4C,CAAC;AAExF,OAAO,EAAE,6BAA6B,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAGpI;;GAEG;AACH,MAAM,CAAC,MAAM,+CAA+C,GAAY,aAAa,CACnF,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"io_pb.js","sourceRoot":"","sources":["../../../../../../ai/stigmer/agentic/workflowexecution/v1/io_pb.ts"],"names":[],"mappings":"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"}
|