* Initial version of BulkDispatchWorkflow * Update comments * Refactor options models for running workflows and add Properties * Fix resumption * Add ability to provide arguments when evaluating expressions * Update args syntax for JS * Fix ProtoActor Runtime Properties mapping * Use default constructor * Provide completed workflow instance ID as input to BulkDispatchWorkflows * Implement ChildFaulted port * Switch to Publish to make Memory service bus work * Update input evaluation and activity output retrieval Refined the input evaluation process to only consider inputs with AutoEvaluate set to true. Added a comment to clarify the purpose of the GetActivitiesWithOutputs method. Removed the unnecessary check for AutoEvaluate from the EvaluateInputPropertyAsync method.
19 lines
337 B
Protocol Buffer
19 lines
337 B
Protocol Buffer
syntax = "proto3";
|
|
option csharp_namespace = "Elsa.ProtoActor.ProtoBuf";
|
|
package Elsa.ProtoActor.ProtoBuf;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
import "google/protobuf/wrappers.proto";
|
|
|
|
// Shared.
|
|
message Json {
|
|
string text = 1;
|
|
}
|
|
|
|
message Input {
|
|
map<string, Json> Data = 1;
|
|
}
|
|
|
|
message Properties {
|
|
map<string, Json> Data = 1;
|
|
} |