dex-python-sdk 0.0.2__cp311-abi3-win_amd64.whl

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.
Files changed (121) hide show
  1. dex/__init__.py +146 -0
  2. dex/_grpc_errors.py +73 -0
  3. dex/_invocation_context.py +269 -0
  4. dex/_native.pyd +0 -0
  5. dex/_native.pyi +20 -0
  6. dex/_utils.py +18 -0
  7. dex/_value_hydrator.py +223 -0
  8. dex/_value_mapper.py +174 -0
  9. dex/_worker_dispatcher.py +451 -0
  10. dex/_worker_service.py +60 -0
  11. dex/attribute.py +87 -0
  12. dex/blob_cache.py +73 -0
  13. dex/channel.py +165 -0
  14. dex/client.py +715 -0
  15. dex/client_options.py +19 -0
  16. dex/codec.py +286 -0
  17. dex/command_request.py +120 -0
  18. dex/command_results.py +107 -0
  19. dex/communication.py +136 -0
  20. dex/communication_schema.py +54 -0
  21. dex/condition.py +74 -0
  22. dex/context.py +86 -0
  23. dex/data_attributes.py +70 -0
  24. dex/dexpb/__init__.py +1 -0
  25. dex/dexpb/dex_pb2.py +381 -0
  26. dex/dexpb/dex_pb2.pyi +1734 -0
  27. dex/dexpb/dex_pb2_grpc.py +1298 -0
  28. dex/errors.py +109 -0
  29. dex/flow.py +456 -0
  30. dex/flow_config.py +29 -0
  31. dex/flow_info.py +51 -0
  32. dex/flow_options.py +122 -0
  33. dex/object_encoder.py +799 -0
  34. dex/persistence.py +89 -0
  35. dex/persistence_options.py +12 -0
  36. dex/persistence_schema.py +51 -0
  37. dex/py.typed +1 -0
  38. dex/registry.py +204 -0
  39. dex/reset_workflow_type_and_options.py +67 -0
  40. dex/rpc.py +93 -0
  41. dex/runtime_errors.py +81 -0
  42. dex/search_attributes.py +184 -0
  43. dex/state_decision.py +153 -0
  44. dex/state_execution_locals.py +66 -0
  45. dex/state_movement.py +115 -0
  46. dex/state_schema.py +48 -0
  47. dex/step.py +194 -0
  48. dex/step_execution.py +42 -0
  49. dex/stop_workflow_options.py +18 -0
  50. dex/tests/__init__.py +80 -0
  51. dex/tests/dex-service-env/.env +7 -0
  52. dex/tests/dex-service-env/docker-compose-init.sh +44 -0
  53. dex/tests/dex-service-env/docker-compose.yml +97 -0
  54. dex/tests/dex-service-env/dynamicconfig/README.md +39 -0
  55. dex/tests/dex-service-env/dynamicconfig/development-sql.yaml +9 -0
  56. dex/tests/dex-service-env/dynamicconfig/docker.yaml +2 -0
  57. dex/tests/test_abnormal_exit_workflow.py +43 -0
  58. dex/tests/test_basic_workflow.py +70 -0
  59. dex/tests/test_conditional_complete.py +50 -0
  60. dex/tests/test_describe_workflow.py +40 -0
  61. dex/tests/test_empty_data_decodes_properly.py +74 -0
  62. dex/tests/test_internal_channel.py +28 -0
  63. dex/tests/test_internal_channel_with_no_prefix_channel.py +41 -0
  64. dex/tests/test_persistence_data_attributes.py +62 -0
  65. dex/tests/test_persistence_search_attributes.py +127 -0
  66. dex/tests/test_persistence_state_execution_locals.py +38 -0
  67. dex/tests/test_rpc.py +64 -0
  68. dex/tests/test_rpc_with_memo.py +195 -0
  69. dex/tests/test_rpc_with_memo_duplicate_java_tests.py +117 -0
  70. dex/tests/test_signal.py +51 -0
  71. dex/tests/test_skip_wait_until.py +76 -0
  72. dex/tests/test_state_failure_recovery.py +28 -0
  73. dex/tests/test_timer.py +35 -0
  74. dex/tests/test_wait_for_state_execution_completion.py +53 -0
  75. dex/tests/test_workflow_errors.py +87 -0
  76. dex/tests/test_workflow_state_options.py +118 -0
  77. dex/tests/test_workflow_state_options_override.py +44 -0
  78. dex/tests/worker_server.py +64 -0
  79. dex/tests/workflows/abnormal_exit_workflow.py +42 -0
  80. dex/tests/workflows/basic_workflow.py +62 -0
  81. dex/tests/workflows/conditional_complete_workflow.py +95 -0
  82. dex/tests/workflows/describe_workflow.py +46 -0
  83. dex/tests/workflows/empty_data_workflow.py +45 -0
  84. dex/tests/workflows/internal_channel_workflow.py +129 -0
  85. dex/tests/workflows/internal_channel_workflow_with_no_prefix_channel.py +100 -0
  86. dex/tests/workflows/java_duplicate_rpc_memo_workflow.py +276 -0
  87. dex/tests/workflows/persistence_data_attributes_workflow.py +98 -0
  88. dex/tests/workflows/persistence_search_attributes_workflow.py +159 -0
  89. dex/tests/workflows/persistence_state_execution_local_workflow.py +63 -0
  90. dex/tests/workflows/recovery_workflow.py +82 -0
  91. dex/tests/workflows/rpc_memo_workflow.py +231 -0
  92. dex/tests/workflows/rpc_workflow.py +117 -0
  93. dex/tests/workflows/state_options_override_workflow.py +93 -0
  94. dex/tests/workflows/state_options_workflow.py +84 -0
  95. dex/tests/workflows/timer_workflow.py +46 -0
  96. dex/tests/workflows/wait_for_state_with_state_execution_id_workflow.py +70 -0
  97. dex/tests/workflows/wait_for_state_with_wait_for_key_workflow.py +71 -0
  98. dex/tests/workflows/wait_internal_channel_workflow.py +47 -0
  99. dex/tests/workflows/wait_signal_workflow.py +147 -0
  100. dex/timer.py +21 -0
  101. dex/type_store.py +99 -0
  102. dex/unregistered_client.py +585 -0
  103. dex/utils/__init__.py +3 -0
  104. dex/utils/dex_typing.py +25 -0
  105. dex/utils/persistence_utils.py +32 -0
  106. dex/wait.py +49 -0
  107. dex/worker.py +121 -0
  108. dex/worker_options.py +22 -0
  109. dex/worker_service.py +432 -0
  110. dex/workflow.py +79 -0
  111. dex/workflow_context.py +44 -0
  112. dex/workflow_info.py +16 -0
  113. dex/workflow_options.py +74 -0
  114. dex/workflow_state.py +123 -0
  115. dex/workflow_state_options.py +154 -0
  116. dex_python_sdk-0.0.2.dist-info/METADATA +202 -0
  117. dex_python_sdk-0.0.2.dist-info/RECORD +121 -0
  118. dex_python_sdk-0.0.2.dist-info/WHEEL +4 -0
  119. dex_python_sdk-0.0.2.dist-info/licenses/LEGACY_NOTICES.md +61 -0
  120. dex_python_sdk-0.0.2.dist-info/licenses/LICENSE +192 -0
  121. dex_python_sdk-0.0.2.dist-info/sboms/dex-blob-cache-python.cyclonedx.json +2406 -0
dex/dexpb/dex_pb2.py ADDED
@@ -0,0 +1,381 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: dex.proto
5
+ # Protobuf Python Version: 7.35.1
6
+ """Generated protocol buffer code."""
7
+ from google.protobuf import descriptor as _descriptor
8
+ from google.protobuf import descriptor_pool as _descriptor_pool
9
+ from google.protobuf import runtime_version as _runtime_version
10
+ from google.protobuf import symbol_database as _symbol_database
11
+ from google.protobuf.internal import builder as _builder
12
+ _runtime_version.ValidateProtobufRuntimeVersion(
13
+ _runtime_version.Domain.PUBLIC,
14
+ 7,
15
+ 35,
16
+ 1,
17
+ '',
18
+ 'dex.proto'
19
+ )
20
+ # @@protoc_insertion_point(imports)
21
+
22
+ _sym_db = _symbol_database.Default()
23
+
24
+
25
+ from google.protobuf import empty_pb2 as google_dot_protobuf_dot_empty__pb2
26
+ from google.protobuf import duration_pb2 as google_dot_protobuf_dot_duration__pb2
27
+ from google.protobuf import struct_pb2 as google_dot_protobuf_dot_struct__pb2
28
+ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
29
+
30
+
31
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\tdex.proto\x12\x03\x64\x65x\x1a\x1bgoogle/protobuf/empty.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1cgoogle/protobuf/struct.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\x9c\x02\n\x05Value\x12+\n!internal_blob_id_for_string_value\x18\x01 \x01(\tH\x00\x12(\n\x1einternal_blob_id_for_obj_value\x18\x02 \x01(\tH\x00\x12\x16\n\x0cstring_value\x18\x03 \x01(\tH\x00\x12\'\n\tobj_value\x18\x04 \x01(\x0b\x32\x12.dex.EncodedObjectH\x00\x12\x13\n\tint_value\x18\x05 \x01(\x03H\x00\x12\x16\n\x0c\x64ouble_value\x18\x06 \x01(\x01H\x00\x12\x14\n\nbool_value\x18\x07 \x01(\x08H\x00\x12\x30\n\nnull_value\x18\x08 \x01(\x0e\x32\x1a.google.protobuf.NullValueH\x00\x42\x06\n\x04kind\"2\n\rEncodedObject\x12\x10\n\x08\x65ncoding\x18\x01 \x01(\t\x12\x0f\n\x07payload\x18\x02 \x01(\x0c\"`\n\x0e\x41ttributeWrite\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cindex_config\x18\x03 \x01(\x0b\x32\x10.dex.IndexConfig\",\n\x02KV\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\"N\n\x0bIndexConfig\x12\x0e\n\x06\x65nable\x18\x01 \x01(\x08\x12\x1c\n\x04type\x18\x02 \x01(\x0e\x32\x0e.dex.IndexType\x12\x11\n\tindex_key\x18\x03 \x01(\t\"\xb7\x01\n\x07\x43ontext\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1e\n\x16\x66low_started_timestamp\x18\x03 \x01(\x03\x12\x19\n\x11step_execution_id\x18\x04 \x01(\t\x12\x1f\n\x17\x66irst_attempt_timestamp\x18\x05 \x01(\x03\x12\x0f\n\x07\x61ttempt\x18\x06 \x01(\x05\x12\x1e\n\x16\x66rom_step_execution_id\x18\x07 \x01(\t\"W\n\x12LocalActivityInput\x12!\n\x19\x63urrent_step_execution_id\x18\x01 \x01(\t\x12\x1e\n\x16\x66rom_step_execution_id\x18\x02 \x01(\t\"\xa8\x01\n\x0bRetryPolicy\x12 \n\x18initial_interval_seconds\x18\x01 \x01(\x05\x12\x1b\n\x13\x62\x61\x63koff_coefficient\x18\x02 \x01(\x02\x12 \n\x18maximum_interval_seconds\x18\x03 \x01(\x05\x12\x18\n\x10maximum_attempts\x18\x04 \x01(\x05\x12\x1e\n\x16total_duration_seconds\x18\x05 \x01(\x05\"\x8c\x01\n\x0f\x46lowRetryPolicy\x12 \n\x18initial_interval_seconds\x18\x01 \x01(\x05\x12\x1b\n\x13\x62\x61\x63koff_coefficient\x18\x02 \x01(\x02\x12 \n\x18maximum_interval_seconds\x18\x03 \x01(\x05\x12\x18\n\x10maximum_attempts\x18\x04 \x01(\x05\"\xf6\x04\n\x0bStepOptions\x12 \n\x18wait_for_timeout_seconds\x18\x01 \x01(\x05\x12\x1f\n\x17\x65xecute_timeout_seconds\x18\x02 \x01(\x05\x12/\n\x15wait_for_retry_policy\x18\x03 \x01(\x0b\x32\x10.dex.RetryPolicy\x12.\n\x14\x65xecute_retry_policy\x18\x04 \x01(\x0b\x32\x10.dex.RetryPolicy\x12@\n\x17wait_for_failure_policy\x18\x05 \x01(\x0e\x32\x1f.dex.WaitForMethodFailurePolicy\x12?\n\x16\x65xecute_failure_policy\x18\x06 \x01(\x0e\x32\x1f.dex.ExecuteMethodFailurePolicy\x12)\n!execute_failure_proceed_step_type\x18\x07 \x01(\t\x12>\n$execute_failure_proceed_step_options\x18\x08 \x01(\x0b\x32\x10.dex.StepOptions\x12\x15\n\rskip_wait_for\x18\t \x01(\x08\x12\x39\n\x1cwait_for_durability_override\x18\n \x01(\x0e\x32\x13.dex.StepDurability\x12\x38\n\x1b\x65xecute_durability_override\x18\x0b \x01(\x0e\x32\x13.dex.StepDurability\x12$\n\x1cwait_for_lock_attribute_keys\x18\x0c \x03(\t\x12#\n\x1b\x65xecute_lock_attribute_keys\x18\r \x03(\t\"S\n\x19\x46lowAlreadyStartedOptions\x12$\n\x1cignore_already_started_error\x18\x01 \x01(\x08J\x04\x08\x02\x10\x03R\nrequest_id\"\xc2\x02\n\x10\x46lowStartOptions\x12+\n\x0fid_reuse_policy\x18\x01 \x01(\x0e\x32\x12.dex.IdReusePolicy\x12\x15\n\rcron_schedule\x18\x02 \x01(\t\x12 \n\x18\x66low_start_delay_seconds\x18\x03 \x01(\x05\x12*\n\x0cretry_policy\x18\x04 \x01(\x0b\x32\x14.dex.FlowRetryPolicy\x12\'\n\nattributes\x18\x05 \x03(\x0b\x32\x13.dex.AttributeWrite\x12-\n\x14\x66low_config_override\x18\x06 \x01(\x0b\x32\x0f.dex.FlowConfig\x12\x44\n\x1c\x66low_already_started_options\x18\x07 \x01(\x0b\x32\x1e.dex.FlowAlreadyStartedOptions\"\xf8\x02\n\nFlowConfig\x12?\n\x17\x61\x63tive_step_search_mode\x18\x01 \x01(\x0e\x32\x19.dex.ActiveStepSearchModeH\x00\x88\x01\x01\x12&\n\x19\x63ontinue_as_new_threshold\x18\x02 \x01(\x05H\x01\x88\x01\x01\x12/\n\"continue_as_new_page_size_in_bytes\x18\x03 \x01(\x05H\x02\x88\x01\x01\x12\x31\n\x0fstep_durability\x18\x04 \x01(\x0e\x32\x13.dex.StepDurabilityH\x03\x88\x01\x01\x12(\n\rworker_target\x18\x05 \x01(\x0b\x32\x11.dex.WorkerTargetB\x1a\n\x18_active_step_search_modeB\x1c\n\x1a_continue_as_new_thresholdB%\n#_continue_as_new_page_size_in_bytesB\x12\n\x10_step_durability\"<\n\x0cWorkerTarget\x12\x0f\n\x07\x61\x64\x64ress\x18\x01 \x01(\t\x12\x1b\n\x13is_headless_address\x18\x02 \x01(\x08\"\xfc\x01\n\x10StartFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x1c\n\x14\x66low_timeout_seconds\x18\x03 \x01(\x05\x12\x17\n\x0fstart_step_type\x18\x05 \x01(\t\x12\x1e\n\nstep_input\x18\x08 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\t \x01(\x0b\x32\x10.dex.StepOptions\x12\x31\n\x12\x66low_start_options\x18\n \x01(\x0b\x32\x15.dex.FlowStartOptions\x12\x12\n\nrequest_id\x18\x0b \x01(\t\"#\n\x11StartFlowResponse\x12\x0e\n\x06run_id\x18\x01 \x01(\t\"a\n\x17PublishToChannelRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12%\n\x08messages\x18\x03 \x03(\x0b\x32\x13.dex.ChannelMessage\"A\n\x0e\x43hannelMessage\x12\x14\n\x0c\x63hannel_name\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\"d\n\x0fStopFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x0e\n\x06reason\x18\x03 \x01(\t\x12 \n\tstop_type\x18\x04 \x01(\x0e\x32\r.dex.StopType\"W\n\x14GetAttributesRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x0c\n\x04keys\x18\x03 \x03(\t\x12\x10\n\x08\x61ll_keys\x18\x04 \x01(\x08\"4\n\x15GetAttributesResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\"t\n\x14SetAttributesRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\'\n\nattributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x12\n\nrequest_id\x18\x04 \x01(\t\".\n\x10LoadBlobsRequest\x12\x1a\n\x06values\x18\x01 \x03(\x0b\x32\n.dex.Value\"\x82\x01\n\x11LoadBlobsResponse\x12\x32\n\x06values\x18\x01 \x03(\x0b\x32\".dex.LoadBlobsResponse.ValuesEntry\x1a\x39\n\x0bValuesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value:\x02\x38\x01\"g\n\x12WaitForFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x15\n\rneeds_results\x18\x03 \x01(\x08\x12\x19\n\x11wait_time_seconds\x18\x04 \x01(\x05\"\x83\x01\n\x14StepCompletionOutput\x12\x1b\n\x13\x63ompleted_step_type\x18\x01 \x01(\t\x12#\n\x1b\x63ompleted_step_execution_id\x18\x02 \x01(\t\x12)\n\x15\x63ompleted_step_output\x18\x03 \x01(\x0b\x32\n.dex.Value\"\xa6\x01\n\x13WaitForFlowResponse\x12$\n\x0b\x66low_status\x18\x01 \x01(\x0e\x32\x0f.dex.FlowStatus\x12*\n\x07results\x18\x02 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x12&\n\nerror_type\x18\x03 \x01(\x0e\x32\x12.dex.FlowErrorType\x12\x15\n\rerror_message\x18\x04 \x01(\t\"O\n\x12SearchFlowsRequest\x12\r\n\x05query\x18\x01 \x01(\t\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\"`\n\x13SearchFlowsResponse\x12\x30\n\tflow_runs\x18\x01 \x03(\x0b\x32\x1d.dex.SearchFlowsResponseEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xf8\x01\n\x18SearchFlowsResponseEntry\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\"\n\x11search_attributes\x18\x03 \x03(\x0b\x32\x07.dex.KV\x12\x11\n\tflow_type\x18\x04 \x01(\t\x12$\n\x0b\x66low_status\x18\x05 \x01(\x0e\x32\x0f.dex.FlowStatus\x12.\n\nstart_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nclose_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"2\n\x0f\x46lowExecutionID\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"8\n\x15GetFlowSummaryRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"\x8c\x02\n\x16GetFlowSummaryResponse\x12/\n\x11\x66low_execution_id\x18\x01 \x01(\x0b\x32\x14.dex.FlowExecutionID\x12\x14\n\x0c\x66irst_run_id\x18\x02 \x01(\t\x12\x12\n\nrequest_id\x18\x03 \x01(\t\x12\x11\n\tflow_type\x18\x04 \x01(\t\x12$\n\x0b\x66low_status\x18\x05 \x01(\x0e\x32\x0f.dex.FlowStatus\x12.\n\nstart_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12.\n\nclose_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xd4\x01\n\x1eInternalAsyncStepInputSnapshot\x12.\n\x0emethod_options\x18\x01 \x01(\x0b\x32\x16.dex.StepMethodOptions\x12;\n\x10wait_for_request\x18\x02 \x01(\x0b\x32\x1f.dex.InvokeWaitForMethodRequestH\x00\x12:\n\x0f\x65xecute_request\x18\x03 \x01(\x0b\x32\x1f.dex.InvokeExecuteMethodRequestH\x00\x42\t\n\x07request\"s\n\x1aInternalLocalActivityInput\x12%\n\x1d\x63urrent_run_started_timestamp\x18\x01 \x01(\x03\x12.\n\x0emethod_options\x18\x02 \x01(\x0b\x32\x16.dex.StepMethodOptions\"\x90\x01\n\x17GetHistoryEventsRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1f\n\x17start_internal_event_id\x18\x03 \x01(\x03\x12\x1a\n\x12\x65stimate_page_size\x18\x04 \x01(\x05\x12\x17\n\x0fnext_page_token\x18\x05 \x01(\x0c\"z\n\x18GetHistoryEventsResponse\x12%\n\x06\x65vents\x18\x01 \x03(\x0b\x32\x15.dex.FlowHistoryEvent\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\x0c\x12\x1e\n\x16next_internal_event_id\x18\x03 \x01(\x03\"\xe9\x04\n\x10\x46lowHistoryEvent\x12\x10\n\x08\x65vent_id\x18\x01 \x01(\x03\x12.\n\nevent_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12L\n\x19\x66low_started_or_continued\x18\x14 \x01(\x0b\x32\'.dex.FlowStartedOrContinuedHistoryEventH\x00\x12\x32\n\x0b\x66low_closed\x18\x15 \x01(\x0b\x32\x1b.dex.FlowClosedHistoryEventH\x00\x12\x41\n\x17step_wait_for_completed\x18\x16 \x01(\x0b\x32\x1e.dex.StepWaitForCompletedEventH\x00\x12;\n\x14step_wait_for_failed\x18\x17 \x01(\x0b\x32\x1b.dex.StepWaitForFailedEventH\x00\x12@\n\x16step_execute_completed\x18\x18 \x01(\x0b\x32\x1e.dex.StepExecuteCompletedEventH\x00\x12:\n\x13step_execute_failed\x18\x19 \x01(\x0b\x32\x1b.dex.StepExecuteFailedEventH\x00\x12\x42\n\x17rpc_execution_completed\x18\x1a \x01(\x0b\x32\x1f.dex.RpcExecutionCompletedEventH\x00\x12\x44\n\x18\x63hannel_external_publish\x18\x1b \x01(\x0b\x32 .dex.ChannelExternalPublishEventH\x00\x42\t\n\x07payload\"\xb8\x02\n\"FlowStartedOrContinuedHistoryEvent\x12/\n\x11\x66low_execution_id\x18\x01 \x01(\x0b\x32\x14.dex.FlowExecutionID\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12$\n\x0b\x66low_config\x18\x03 \x01(\x0b\x32\x0f.dex.FlowConfig\x12/\n\x0c\x66low_timeout\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\rinitial_start\x18\n \x01(\x0b\x32\x15.dex.FlowInitialStartH\x00\x12\x32\n\x0f\x63ontinued_start\x18\x0b \x01(\x0b\x32\x17.dex.FlowContinuedStartH\x00\x42\x13\n\x11start_or_continue\"\x98\x01\n\x10\x46lowInitialStart\x12\x17\n\x0fstart_step_type\x18\x01 \x01(\t\x12\x1e\n\nstep_input\x18\x02 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\x03 \x01(\x0b\x32\x10.dex.StepOptions\x12#\n\x12initial_attributes\x18\x04 \x03(\x0b\x32\x07.dex.KV\"\x8a\x03\n\x12\x46lowContinuedStart\x12\x17\n\x0fprevious_run_id\x18\x01 \x01(\t\x12)\n\x0esteps_to_start\x18\x02 \x03(\x0b\x32\x11.dex.StepMovement\x12\x35\n\x0fsteps_to_resume\x18\x03 \x03(\x0b\x32\x1c.dex.StepExecutionResumeInfo\x12U\n\x18pending_channel_messages\x18\x04 \x03(\x0b\x32\x33.dex.FlowContinuedStart.PendingChannelMessagesEntry\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12\x32\n\x0f\x63ompleted_steps\x18\x06 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x1aQ\n\x1bPendingChannelMessagesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.ChannelValues:\x02\x38\x01\"\xc6\x01\n\x16\x46lowClosedHistoryEvent\x12$\n\x0b\x66low_status\x18\x01 \x01(\x0e\x32\x0f.dex.FlowStatus\x12*\n\x07results\x18\x02 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x12&\n\nerror_type\x18\x03 \x01(\x0e\x32\x12.dex.FlowErrorType\x12\x15\n\rerror_message\x18\x04 \x01(\t\x12\x1b\n\x13\x63ontinued_to_run_id\x18\x05 \x01(\t\"\x98\x01\n\x11StepMethodFailure\x12\x0f\n\x07message\x18\x01 \x01(\t\x12\x12\n\nerror_type\x18\x02 \x01(\t\x12\x13\n\x0bstack_trace\x18\x03 \x01(\t\x12\x13\n\x0bretry_state\x18\x04 \x01(\t\x12#\n\x07\x64\x65tails\x18\x05 \x01(\x0b\x32\x12.dex.ErrorResponse\x12\x0f\n\x07\x61ttempt\x18\x06 \x01(\x05\"T\n\x11StepMethodOptions\x12\x17\n\x0ftimeout_seconds\x18\x01 \x01(\x05\x12&\n\x0cretry_policy\x18\x02 \x01(\x0b\x32\x10.dex.RetryPolicy\"\xc2\x01\n\x14StepMethodEventInput\x12\x13\n\x0bunavailable\x18\x01 \x01(\x08\x12\x1e\n\nstep_input\x18\x02 \x01(\x0b\x32\n.dex.Value\x12\x30\n\x11\x63ondition_results\x18\x03 \x01(\x0b\x32\x15.dex.ConditionResults\x12\x1b\n\nattributes\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12&\n\x15step_execution_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\"\x9e\x03\n\x16StepMethodEventContext\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1e\n\x16\x66rom_step_execution_id\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12\'\n\ndurability\x18\x04 \x01(\x0e\x32\x13.dex.StepDurability\x12\x15\n\rfinal_attempt\x18\x05 \x01(\x05\x12\x30\n\x0cstarted_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12+\n\x08\x64uration\x18\x07 \x01(\x0b\x32\x19.google.protobuf.Duration\x12.\n\x0emethod_options\x18\x08 \x01(\x0b\x32\x16.dex.StepMethodOptions\x12\x1e\n\x11is_transient_step\x18\t \x01(\x08H\x00\x88\x01\x01\x12\x31\n\x11last_failure_info\x18\n \x01(\x0b\x32\x16.dex.StepMethodFailureB\x14\n\x12_is_transient_step\"\xb3\x02\n\x1aStepWaitForCompletedOutput\x12\x31\n\x12wait_for_condition\x18\x01 \x01(\x0b\x32\x15.dex.WaitingCondition\x12.\n\x11upsert_attributes\x18\x02 \x03(\x0b\x32\x13.dex.AttributeWrite\x12/\n\x12publish_to_channel\x18\x03 \x03(\x0b\x32\x13.dex.ChannelMessage\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12-\n\x1cupsert_step_execution_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12\x32\n\x17transient_step_movement\x18\x06 \x01(\x0b\x32\x11.dex.StepMovement\"\xf6\x01\n\x1aStepExecuteCompletedOutput\x12(\n\rstep_decision\x18\x01 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x02 \x03(\x0b\x32\x13.dex.AttributeWrite\x12/\n\x12publish_to_channel\x18\x03 \x03(\x0b\x32\x13.dex.ChannelMessage\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12-\n\x1cupsert_step_execution_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\"A\n\x16StepMethodFailedOutput\x12\'\n\x07\x66\x61ilure\x18\x01 \x01(\x0b\x32\x16.dex.StepMethodFailure\"\xa4\x01\n\x19StepWaitForCompletedEvent\x12(\n\x05input\x18\x01 \x01(\x0b\x32\x19.dex.StepMethodEventInput\x12/\n\x06output\x18\x02 \x01(\x0b\x32\x1f.dex.StepWaitForCompletedOutput\x12,\n\x07\x63ontext\x18\x03 \x01(\x0b\x32\x1b.dex.StepMethodEventContext\"\x9d\x01\n\x16StepWaitForFailedEvent\x12(\n\x05input\x18\x01 \x01(\x0b\x32\x19.dex.StepMethodEventInput\x12+\n\x06output\x18\x02 \x01(\x0b\x32\x1b.dex.StepMethodFailedOutput\x12,\n\x07\x63ontext\x18\x03 \x01(\x0b\x32\x1b.dex.StepMethodEventContext\"\xa4\x01\n\x19StepExecuteCompletedEvent\x12(\n\x05input\x18\x01 \x01(\x0b\x32\x19.dex.StepMethodEventInput\x12/\n\x06output\x18\x02 \x01(\x0b\x32\x1f.dex.StepExecuteCompletedOutput\x12,\n\x07\x63ontext\x18\x03 \x01(\x0b\x32\x1b.dex.StepMethodEventContext\"\x9d\x01\n\x16StepExecuteFailedEvent\x12(\n\x05input\x18\x01 \x01(\x0b\x32\x19.dex.StepMethodEventInput\x12+\n\x06output\x18\x02 \x01(\x0b\x32\x1b.dex.StepMethodFailedOutput\x12,\n\x07\x63ontext\x18\x03 \x01(\x0b\x32\x1b.dex.StepMethodEventContext\"\x90\x02\n\x1aRpcExecutionCompletedEvent\x12\x10\n\x08rpc_name\x18\x01 \x01(\t\x12\x19\n\x05input\x18\x02 \x01(\x0b\x32\n.dex.Value\x12\x1a\n\x06output\x18\x03 \x01(\x0b\x32\n.dex.Value\x12(\n\rstep_decision\x18\x04 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x05 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x1e\n\rrecord_events\x18\x06 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x07 \x03(\x0b\x32\x13.dex.ChannelMessage\"D\n\x1b\x43hannelExternalPublishEvent\x12%\n\x08messages\x18\x01 \x03(\x0b\x32\x13.dex.ChannelMessage\"]\n\x1aWaitForHistoryEventRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1e\n\x16next_internal_event_id\x18\x03 \x01(\x03\"\x81\x01\n\x1bWaitForHistoryEventResponse\x12\x17\n\x0f\x65vent_available\x18\x01 \x01(\x08\x12#\n\x1b\x61vailable_internal_event_id\x18\x02 \x01(\x03\x12$\n\x0b\x66low_status\x18\x03 \x01(\x0e\x32\x0f.dex.FlowStatus\"\xf1\x02\n\x18\x41\x63tiveStepExecutionState\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1e\n\x16\x66rom_step_execution_id\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12#\n\x05phase\x18\x04 \x01(\x0e\x32\x14.dex.ActiveStepPhase\x12#\n\x08movement\x18\x05 \x01(\x0b\x32\x11.dex.StepMovement\x12\x30\n\x11waiting_condition\x18\x06 \x01(\x0b\x32\x15.dex.WaitingCondition\x12\x43\n\x14\x63ompleted_conditions\x18\x07 \x01(\x0b\x32%.dex.StepExecutionCompletedConditions\x12&\n\x15step_execution_locals\x18\x08 \x03(\x0b\x32\x07.dex.KV\x12\x1e\n\x06timers\x18\t \x03(\x0b\x32\x0e.dex.TimerInfo\"6\n\x13GetFlowStateRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"\xa1\x03\n\x14GetFlowStateResponse\x12$\n\x0b\x66low_config\x18\x01 \x01(\x0b\x32\x0f.dex.FlowConfig\x12\x1b\n\nattributes\x18\x02 \x03(\x0b\x32\x07.dex.KV\x12=\n\x16\x61\x63tive_step_executions\x18\x03 \x03(\x0b\x32\x1d.dex.ActiveStepExecutionState\x12\'\n\x0cqueued_steps\x18\x04 \x03(\x0b\x32\x11.dex.StepMovement\x12W\n\x18pending_channel_messages\x18\x05 \x03(\x0b\x32\x35.dex.GetFlowStateResponse.PendingChannelMessagesEntry\x12\x32\n\x0f\x63ompleted_steps\x18\x06 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x1aQ\n\x1bPendingChannelMessagesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.ChannelValues:\x02\x38\x01\"\x98\x02\n\x10ResetFlowRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12&\n\nreset_type\x18\x03 \x01(\x0e\x32\x12.dex.FlowResetType\x12\x18\n\x10history_event_id\x18\x04 \x01(\x05\x12\x0e\n\x06reason\x18\x05 \x01(\t\x12\x1a\n\x12history_event_time\x18\x06 \x01(\t\x12\x11\n\tstep_type\x18\x07 \x01(\t\x12\x19\n\x11step_execution_id\x18\x08 \x01(\t\x12%\n\x1dskip_channel_messages_reapply\x18\t \x01(\x08\x12 \n\x18skip_locking_rpc_reapply\x18\n \x01(\x08\"#\n\x11ResetFlowResponse\x12\x0e\n\x06run_id\x18\x01 \x01(\t\"\xaa\x01\n\x10InvokeRPCRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x10\n\x08rpc_name\x18\x03 \x01(\t\x12\x19\n\x05input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x17\n\x0ftimeout_seconds\x18\x05 \x01(\x05\x12\x1b\n\x13lock_attribute_keys\x18\x06 \x03(\t\x12\x12\n\nrequest_id\x18\x07 \x01(\t\"/\n\x11InvokeRPCResponse\x12\x1a\n\x06output\x18\x01 \x01(\x0b\x32\n.dex.Value\"\xa8\x01\n\x10SkipTimerRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x19\n\x11step_execution_id\x18\x03 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x04 \x01(\t\x12\"\n\x15timer_condition_index\x18\x05 \x01(\x05H\x00\x88\x01\x01\x42\x18\n\x16_timer_condition_index\"`\n\x17UpdateFlowConfigRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12$\n\x0b\x66low_config\x18\x03 \x01(\x0b\x32\x0f.dex.FlowConfig\"\x90\x01\n\x1cWaitForStepCompletionRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x11\n\tstep_type\x18\x02 \x01(\t\x12\x1d\n\x15step_execution_number\x18\x03 \x01(\t\x12\x19\n\x11wait_time_seconds\x18\x05 \x01(\x05\x12\x12\n\nrequest_id\x18\x06 \x01(\t\"\x1f\n\x1dWaitForStepCompletionResponse\"\x9c\x01\n\x17WaitForAttributeRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x31\n\tcondition\x18\x03 \x01(\x0b\x32\x1e.dex.WaitForAttributeCondition\x12\x19\n\x11wait_time_seconds\x18\x04 \x01(\x05\x12\x12\n\nrequest_id\x18\x05 \x01(\t\"P\n\x19WaitForAttributeCondition\x12+\n\x05\x65qual\x18\x01 \x01(\x0b\x32\x1a.dex.WaitForAttributeEqualH\x00\x42\x06\n\x04kind\"?\n\x15WaitForAttributeEqual\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x19\n\x05value\x18\x02 \x01(\x0b\x32\n.dex.Value\">\n\x1bTriggerContinueAsNewRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\"C\n\nHealthInfo\x12\x11\n\tcondition\x18\x01 \x01(\t\x12\x10\n\x08hostname\x18\x02 \x01(\t\x12\x10\n\x08\x64uration\x18\x03 \x01(\x05\"\xb8\x01\n\rErrorResponse\x12\x0e\n\x06\x64\x65tail\x18\x01 \x01(\t\x12\'\n\nsub_status\x18\x02 \x01(\x0e\x32\x13.dex.ErrorSubStatus\x12$\n\x1coriginal_worker_error_detail\x18\x03 \x01(\t\x12\"\n\x1aoriginal_worker_error_type\x18\x04 \x01(\t\x12$\n\x1coriginal_worker_error_status\x18\x05 \x01(\x05\"9\n\x13WorkerErrorResponse\x12\x0e\n\x06\x64\x65tail\x18\x01 \x01(\t\x12\x12\n\nerror_type\x18\x02 \x01(\t\"\x1b\n\x0b\x43hannelInfo\x12\x0c\n\x04size\x18\x01 \x01(\x05\"\x9e\x01\n\x1aInvokeWaitForMethodRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\"\xe4\x02\n\x1bInvokeWaitForMethodResponse\x12\x35\n\x14local_activity_input\x18\x01 \x01(\x0b\x32\x17.dex.LocalActivityInput\x12.\n\x11upsert_attributes\x18\x02 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x30\n\x11waiting_condition\x18\x03 \x01(\x0b\x32\x15.dex.WaitingCondition\x12\'\n\x16upsert_step_exe_locals\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12\x1e\n\rrecord_events\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\x12\x32\n\x17transient_step_movement\x18\x07 \x01(\x0b\x32\x11.dex.StepMovement\"\xf2\x01\n\x1aInvokeExecuteMethodRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x11\n\tstep_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12 \n\x0fstep_exe_locals\x18\x06 \x03(\x0b\x32\x07.dex.KV\x12\x30\n\x11\x63ondition_results\x18\x07 \x01(\x0b\x32\x15.dex.ConditionResults\"\xa8\x02\n\x1bInvokeExecuteMethodResponse\x12\x35\n\x14local_activity_input\x18\x01 \x01(\x0b\x32\x17.dex.LocalActivityInput\x12(\n\rstep_decision\x18\x02 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12\'\n\x16upsert_step_exe_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"\xa1\x02\n\x16InvokeWorkerRPCRequest\x12\x1d\n\x07\x63ontext\x18\x01 \x01(\x0b\x32\x0c.dex.Context\x12\x11\n\tflow_type\x18\x02 \x01(\t\x12\x10\n\x08rpc_name\x18\x03 \x01(\t\x12\x19\n\x05input\x18\x04 \x01(\x0b\x32\n.dex.Value\x12\x1b\n\nattributes\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12\x44\n\rchannel_infos\x18\x06 \x03(\x0b\x32-.dex.InvokeWorkerRPCRequest.ChannelInfosEntry\x1a\x45\n\x11\x43hannelInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1f\n\x05value\x18\x02 \x01(\x0b\x32\x10.dex.ChannelInfo:\x02\x38\x01\"\xe0\x01\n\x17InvokeWorkerRPCResponse\x12\x1a\n\x06output\x18\x01 \x01(\x0b\x32\n.dex.Value\x12(\n\rstep_decision\x18\x02 \x01(\x0b\x32\x11.dex.StepDecision\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12\x1e\n\rrecord_events\x18\x04 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"a\n\x0cStepDecision\x12%\n\nnext_steps\x18\x01 \x03(\x0b\x32\x11.dex.StepMovement\x12*\n\x0e\x63lose_decision\x18\x02 \x01(\x0b\x32\x12.dex.CloseDecision\"\x88\x01\n\rCloseDecision\x12\x33\n\x13\x63lose_decision_type\x18\x01 \x01(\x0e\x32\x16.dex.CloseDecisionType\x12!\n\x19\x63onditional_channel_names\x18\x02 \x03(\t\x12\x1f\n\x0b\x63lose_input\x18\x03 \x01(\x0b\x32\n.dex.Value\"\x97\x01\n\x0cStepMovement\x12\x11\n\tstep_type\x18\x01 \x01(\t\x12\x1e\n\nstep_input\x18\x02 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\x03 \x01(\x0b\x32\x10.dex.StepOptions\x12,\n$from_step_execution_id_internal_only\x18\x04 \x01(\t\"-\n\x14\x43onditionCombination\x12\x15\n\rcondition_ids\x18\x01 \x03(\t\"\xea\x01\n\x10WaitingCondition\x12\x39\n\x16waiting_condition_type\x18\x01 \x01(\x0e\x32\x19.dex.WaitingConditionType\x12-\n\x10timer_conditions\x18\x02 \x03(\x0b\x32\x13.dex.TimerCondition\x12\x31\n\x12\x63hannel_conditions\x18\x03 \x03(\x0b\x32\x15.dex.ChannelCondition\x12\x39\n\x16\x63ondition_combinations\x18\x04 \x03(\x0b\x32\x19.dex.ConditionCombination\"g\n\x0eTimerCondition\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12\x18\n\x10\x64uration_seconds\x18\x02 \x01(\x03\x12%\n\x1d\x66iring_unix_timestamp_seconds\x18\x03 \x01(\x03\"\x84\x01\n\x10\x43hannelCondition\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12\x14\n\x0c\x63hannel_name\x18\x02 \x01(\t\x12\x15\n\x08\x61t_least\x18\x03 \x01(\x05H\x00\x88\x01\x01\x12\x14\n\x07\x61t_most\x18\x04 \x01(\x05H\x01\x88\x01\x01\x42\x0b\n\t_at_leastB\n\n\x08_at_most\"\x81\x01\n\x10\x43onditionResults\x12+\n\x0f\x63hannel_results\x18\x01 \x03(\x0b\x32\x12.dex.ChannelResult\x12\'\n\rtimer_results\x18\x02 \x03(\x0b\x32\x10.dex.TimerResult\x12\x17\n\x0fwait_for_failed\x18\x03 \x01(\x08\"S\n\x0bTimerResult\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12.\n\x10\x63ondition_status\x18\x02 \x01(\x0e\x32\x14.dex.ConditionStatus\"\x87\x01\n\rChannelResult\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12.\n\x10\x63ondition_status\x18\x02 \x01(\x0e\x32\x14.dex.ConditionStatus\x12\x14\n\x0c\x63hannel_name\x18\x03 \x01(\t\x12\x1a\n\x06values\x18\x04 \x03(\x0b\x32\n.dex.Value\"i\n\x18\x43ontinueAsNewDumpRequest\x12\x0f\n\x07\x66low_id\x18\x01 \x01(\t\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x10\n\x08page_num\x18\x03 \x01(\x05\x12\x1a\n\x12page_size_in_bytes\x18\x04 \x01(\x05\"j\n\x19\x43ontinueAsNewDumpResponse\x12\x14\n\x0cpage_content\x18\x01 \x01(\x0c\x12\x10\n\x08page_num\x18\x02 \x01(\x05\x12\x13\n\x0btotal_pages\x18\x03 \x01(\x05\x12\x10\n\x08\x63hecksum\x18\x04 \x01(\t\"+\n\rChannelValues\x12\x1a\n\x06values\x18\x01 \x03(\x0b\x32\n.dex.Value\"\xe6\x01\n StepExecutionCompletedConditions\x12g\n\x1a\x63ompleted_timer_conditions\x18\x01 \x03(\x0b\x32\x43.dex.StepExecutionCompletedConditions.CompletedTimerConditionsEntry\x1aY\n\x1d\x43ompletedTimerConditionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\x05\x12\'\n\x05value\x18\x02 \x01(\x0e\x32\x18.dex.InternalTimerStatus:\x02\x38\x01\"\xee\x01\n\x17StepExecutionResumeInfo\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1f\n\x04step\x18\x02 \x01(\x0b\x32\x11.dex.StepMovement\x12\x43\n\x14\x63ompleted_conditions\x18\x03 \x01(\x0b\x32%.dex.StepExecutionCompletedConditions\x12\x30\n\x11waiting_condition\x18\x04 \x01(\x0b\x32\x15.dex.WaitingCondition\x12 \n\x0fstep_exe_locals\x18\x05 \x03(\x0b\x32\x07.dex.KV\"\xce\x04\n\x18StepExecutionCounterInfo\x12X\n\x17step_type_started_count\x18\x01 \x03(\x0b\x32\x37.dex.StepExecutionCounterInfo.StepTypeStartedCountEntry\x12o\n#step_type_currently_executing_count\x18\x02 \x03(\x0b\x32\x42.dex.StepExecutionCounterInfo.StepTypeCurrentlyExecutingCountEntry\x12\'\n\x1ftotal_currently_executing_count\x18\x03 \x01(\x05\x12^\n\x1astep_active_execution_nums\x18\x04 \x03(\x0b\x32:.dex.StepExecutionCounterInfo.StepActiveExecutionNumsEntry\x1a;\n\x19StepTypeStartedCountEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a\x46\n$StepTypeCurrentlyExecutingCountEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1aY\n\x1cStepActiveExecutionNumsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12(\n\x05value\x18\x02 \x01(\x0b\x32\x19.dex.StepExecutionNumbers:\x02\x38\x01\"f\n\x0eStaleSkipTimer\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x02 \x01(\t\x12\x1d\n\x15timer_condition_index\x18\x03 \x01(\x05\"\xd4\x03\n\x11\x43ontinueAsNewDump\x12\x38\n\x1dsteps_to_start_from_beginning\x18\x01 \x03(\x0b\x32\x11.dex.StepMovement\x12?\n\x19step_executions_to_resume\x18\x02 \x03(\x0b\x32\x1c.dex.StepExecutionResumeInfo\x12\x45\n\x10\x63hannel_received\x18\x03 \x03(\x0b\x32+.dex.ContinueAsNewDump.ChannelReceivedEntry\x12\x33\n\x0c\x63ounter_info\x18\x04 \x01(\x0b\x32\x1d.dex.StepExecutionCounterInfo\x12/\n\x0cstep_outputs\x18\x05 \x03(\x0b\x32\x19.dex.StepCompletionOutput\x12.\n\x11stale_skip_timers\x18\x06 \x03(\x0b\x32\x13.dex.StaleSkipTimer\x12\x1b\n\nattributes\x18\x07 \x03(\x0b\x32\x07.dex.KV\x1aJ\n\x14\x43hannelReceivedEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.ChannelValues:\x02\x38\x01\"6\n\x12\x43ontinueAsNewInput\x12 \n\x18previous_internal_run_id\x18\x01 \x01(\t\"\xb1\x02\n\x18InterpreterWorkflowInput\x12\x11\n\tflow_type\x18\x01 \x01(\t\x12\x17\n\x0fstart_step_type\x18\x03 \x01(\t\x12\x1e\n\nstep_input\x18\x06 \x01(\x0b\x32\n.dex.Value\x12&\n\x0cstep_options\x18\x07 \x01(\x0b\x32\x10.dex.StepOptions\x12 \n\x0finit_attributes\x18\x08 \x03(\x0b\x32\x07.dex.KV\x12\x1f\n\x06\x63onfig\x18\t \x01(\x0b\x32\x0f.dex.FlowConfig\x12&\n\x1eis_resume_from_continue_as_new\x18\n \x01(\x08\x12\x36\n\x15\x63ontinue_as_new_input\x18\x0b \x01(\x0b\x32\x17.dex.ContinueAsNewInput\"W\n\x19InterpreterWorkflowOutput\x12:\n\x17step_completion_outputs\x18\x01 \x03(\x0b\x32\x19.dex.StepCompletionOutput\"1\n\x1d\x42lobStoreCleanupWorkflowInput\x12\x10\n\x08store_id\x18\x01 \x01(\t\"7\n\x1e\x42lobStoreCleanupWorkflowOutput\x12\x15\n\rtotal_deleted\x18\x01 \x01(\x05\"~\n InvokeWaitForMethodActivityInput\x12(\n\rworker_target\x18\x01 \x01(\x0b\x32\x11.dex.WorkerTarget\x12\x30\n\x07request\x18\x02 \x01(\x0b\x32\x1f.dex.InvokeWaitForMethodRequest\"W\n!InvokeWaitForMethodActivityOutput\x12\x32\n\x08response\x18\x01 \x01(\x0b\x32 .dex.InvokeWaitForMethodResponse\"\x99\x01\n InvokeExecuteMethodActivityInput\x12(\n\rworker_target\x18\x01 \x01(\x0b\x32\x11.dex.WorkerTarget\x12\x30\n\x07request\x18\x02 \x01(\x0b\x32\x1f.dex.InvokeExecuteMethodRequest\x12\x19\n\x11is_transient_step\x18\x03 \x01(\x08\"W\n!InvokeExecuteMethodActivityOutput\x12\x32\n\x08response\x18\x01 \x01(\x0b\x32 .dex.InvokeExecuteMethodResponse\"W\n%DumpFlowForContinueAsNewActivityInput\x12.\n\x07request\x18\x01 \x01(\x0b\x32\x1d.dex.ContinueAsNewDumpRequest\"Z\n&DumpFlowForContinueAsNewActivityOutput\x12\x30\n\x08response\x18\x01 \x01(\x0b\x32\x1e.dex.ContinueAsNewDumpResponse\"v\n\x1cInvokeWorkerRPCActivityInput\x12.\n\x08rpc_prep\x18\x01 \x01(\x0b\x32\x1c.dex.PrepareRpcQueryResponse\x12&\n\x07request\x18\x02 \x01(\x0b\x32\x15.dex.InvokeRPCRequest\"O\n\x1dInvokeWorkerRPCActivityOutput\x12.\n\x08response\x18\x01 \x01(\x0b\x32\x1c.dex.InvokeWorkerRPCResponse\"1\n\x1d\x43leanupBlobStoreActivityInput\x12\x10\n\x08store_id\x18\x01 \x01(\t\"7\n\x1e\x43leanupBlobStoreActivityOutput\x12\x15\n\rtotal_deleted\x18\x01 \x01(\x05\"\x83\x02\n\x17\x45xecuteRpcSignalRequest\x12\x1d\n\trpc_input\x18\x01 \x01(\x0b\x32\n.dex.Value\x12\x1e\n\nrpc_output\x18\x02 \x01(\x0b\x32\n.dex.Value\x12.\n\x11upsert_attributes\x18\x03 \x03(\x0b\x32\x13.dex.AttributeWrite\x12(\n\rstep_decision\x18\x04 \x01(\x0b\x32\x11.dex.StepDecision\x12\x1e\n\rrecord_events\x18\x05 \x03(\x0b\x32\x07.dex.KV\x12/\n\x12publish_to_channel\x18\x06 \x03(\x0b\x32\x13.dex.ChannelMessage\"n\n\x16SkipTimerSignalRequest\x12\x19\n\x11step_execution_id\x18\x01 \x01(\t\x12\x1a\n\x12timer_condition_id\x18\x02 \x01(\t\x12\x1d\n\x15timer_condition_index\x18\x03 \x01(\x05\"\'\n\x15\x46\x61ilFlowSignalRequest\x12\x0e\n\x06reason\x18\x01 \x01(\t\";\n\x19GetAttributesQueryRequest\x12\x0c\n\x04keys\x18\x01 \x03(\t\x12\x10\n\x08\x61ll_keys\x18\x02 \x01(\x08\"9\n\x1aGetAttributesQueryResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\"5\n\x16PrepareRpcQueryRequest\x12\x1b\n\x13lock_attribute_keys\x18\x01 \x03(\t\"\xb1\x02\n\x17PrepareRpcQueryResponse\x12\x1b\n\nattributes\x18\x01 \x03(\x0b\x32\x07.dex.KV\x12\x0e\n\x06run_id\x18\x02 \x01(\t\x12\x1e\n\x16\x66low_started_timestamp\x18\x03 \x01(\x03\x12\x11\n\tflow_type\x18\x04 \x01(\t\x12(\n\rworker_target\x18\x05 \x01(\x0b\x32\x11.dex.WorkerTarget\x12\x45\n\rchannel_infos\x18\x06 \x03(\x0b\x32..dex.PrepareRpcQueryResponse.ChannelInfosEntry\x1a\x45\n\x11\x43hannelInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1f\n\x05value\x18\x02 \x01(\x0b\x32\x10.dex.ChannelInfo:\x02\x38\x01\"r\n\tTimerInfo\x12\x14\n\x0c\x63ondition_id\x18\x01 \x01(\t\x12%\n\x1d\x66iring_unix_timestamp_seconds\x18\x02 \x01(\x03\x12(\n\x06status\x18\x03 \x01(\x0e\x32\x18.dex.InternalTimerStatus\"/\n\rTimerInfoList\x12\x1e\n\x06timers\x18\x01 \x03(\x0b\x32\x0e.dex.TimerInfo\"\xf6\x01\n!GetCurrentTimerInfosQueryResponse\x12v\n\"step_execution_current_timer_infos\x18\x01 \x03(\x0b\x32J.dex.GetCurrentTimerInfosQueryResponse.StepExecutionCurrentTimerInfosEntry\x1aY\n#StepExecutionCurrentTimerInfosEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12!\n\x05value\x18\x02 \x01(\x0b\x32\x12.dex.TimerInfoList:\x02\x38\x01\"V\n)GetScheduledGreedyTimerTimesQueryResponse\x12)\n\x11pending_scheduled\x18\x01 \x03(\x0b\x32\x0e.dex.TimerInfo\"\xc4\x01\n\x11\x44\x65\x62ugDumpResponse\x12\x1f\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x0f.dex.FlowConfig\x12(\n\x08snapshot\x18\x02 \x01(\x0b\x32\x16.dex.ContinueAsNewDump\x12%\n\x1d\x66iring_timers_unix_timestamps\x18\x03 \x03(\x03\x12=\n\x16\x61\x63tive_step_executions\x18\x04 \x03(\x0b\x32\x1d.dex.ActiveStepExecutionState\"A\n\x15InvokeRpcUpdateResult\x12(\n\x08response\x18\x01 \x01(\x0b\x32\x16.dex.InvokeRPCResponse\"\'\n\x14StepExecutionNumbers\x12\x0f\n\x07numbers\x18\x01 \x03(\x05*\xcb\x01\n\tIndexType\x12\x1a\n\x16INDEX_TYPE_UNSPECIFIED\x10\x00\x12\x16\n\x12INDEX_TYPE_KEYWORD\x10\x01\x12\x13\n\x0fINDEX_TYPE_TEXT\x10\x02\x12\x1c\n\x18INDEX_TYPE_KEYWORD_ARRAY\x10\x03\x12\x12\n\x0eINDEX_TYPE_INT\x10\x04\x12\x15\n\x11INDEX_TYPE_DOUBLE\x10\x05\x12\x13\n\x0fINDEX_TYPE_BOOL\x10\x06\x12\x17\n\x13INDEX_TYPE_DATETIME\x10\x07*\xbc\x01\n\x1aWaitForMethodFailurePolicy\x12.\n*WAIT_FOR_METHOD_FAILURE_POLICY_UNSPECIFIED\x10\x00\x12\x37\n3WAIT_FOR_METHOD_FAILURE_POLICY_FAIL_FLOW_ON_FAILURE\x10\x01\x12\x35\n1WAIT_FOR_METHOD_FAILURE_POLICY_PROCEED_ON_FAILURE\x10\x02*\xd0\x01\n\x1a\x45xecuteMethodFailurePolicy\x12-\n)EXECUTE_METHOD_FAILURE_POLICY_UNSPECIFIED\x10\x00\x12\x45\nAEXECUTE_METHOD_FAILURE_POLICY_FAIL_FLOW_ON_EXECUTE_METHOD_FAILURE\x10\x01\x12<\n8EXECUTE_METHOD_FAILURE_POLICY_PROCEED_TO_CONFIGURED_STEP\x10\x02*\xe6\x01\n\rIdReusePolicy\x12\x1f\n\x1bID_REUSE_POLICY_UNSPECIFIED\x10\x00\x12\x37\n3ID_REUSE_POLICY_ALLOW_IF_PREVIOUS_EXISTS_ABNORMALLY\x10\x01\x12\'\n#ID_REUSE_POLICY_ALLOW_IF_NO_RUNNING\x10\x02\x12\"\n\x1eID_REUSE_POLICY_DISALLOW_REUSE\x10\x03\x12.\n*ID_REUSE_POLICY_ALLOW_TERMINATE_IF_RUNNING\x10\x04*\xcf\x01\n\x14\x41\x63tiveStepSearchMode\x12\'\n#ACTIVE_STEP_SEARCH_MODE_UNSPECIFIED\x10\x00\x12+\n\'ACTIVE_STEP_SEARCH_MODE_ENABLED_FOR_ALL\x10\x01\x12;\n7ACTIVE_STEP_SEARCH_MODE_ENABLED_FOR_STEPS_WITH_WAIT_FOR\x10\x02\x12$\n ACTIVE_STEP_SEARCH_MODE_DISABLED\x10\x03*f\n\x0eStepDurability\x12\x1f\n\x1bSTEP_DURABILITY_UNSPECIFIED\x10\x00\x12\x18\n\x14STEP_DURABILITY_SYNC\x10\x01\x12\x19\n\x15STEP_DURABILITY_ASYNC\x10\x02*h\n\x08StopType\x12\x19\n\x15STOP_TYPE_UNSPECIFIED\x10\x00\x12\x14\n\x10STOP_TYPE_CANCEL\x10\x01\x12\x17\n\x13STOP_TYPE_TERMINATE\x10\x02\x12\x12\n\x0eSTOP_TYPE_FAIL\x10\x03*\xe6\x01\n\nFlowStatus\x12\x1b\n\x17\x46LOW_STATUS_UNSPECIFIED\x10\x00\x12\x17\n\x13\x46LOW_STATUS_RUNNING\x10\x01\x12\x19\n\x15\x46LOW_STATUS_COMPLETED\x10\x02\x12\x16\n\x12\x46LOW_STATUS_FAILED\x10\x03\x12\x17\n\x13\x46LOW_STATUS_TIMEOUT\x10\x04\x12\x1a\n\x16\x46LOW_STATUS_TERMINATED\x10\x05\x12\x18\n\x14\x46LOW_STATUS_CANCELED\x10\x06\x12 \n\x1c\x46LOW_STATUS_CONTINUED_AS_NEW\x10\x07*\xfc\x01\n\rFlowErrorType\x12\x1f\n\x1b\x46LOW_ERROR_TYPE_UNSPECIFIED\x10\x00\x12.\n*FLOW_ERROR_TYPE_STEP_DECISION_FAILING_FLOW\x10\x01\x12+\n\'FLOW_ERROR_TYPE_CLIENT_API_FAILING_FLOW\x10\x02\x12#\n\x1f\x46LOW_ERROR_TYPE_WORKER_API_FAIL\x10\x03\x12*\n&FLOW_ERROR_TYPE_INVALID_USER_FLOW_CODE\x10\x04\x12\x1c\n\x18\x46LOW_ERROR_TYPE_INTERNAL\x10\x06*q\n\x0f\x41\x63tiveStepPhase\x12!\n\x1d\x41\x43TIVE_STEP_PHASE_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x41\x43TIVE_STEP_PHASE_ACTIVE\x10\x01\x12\x1d\n\x19\x41\x43TIVE_STEP_PHASE_WAITING\x10\x02*\xe3\x01\n\rFlowResetType\x12\x1f\n\x1b\x46LOW_RESET_TYPE_UNSPECIFIED\x10\x00\x12$\n FLOW_RESET_TYPE_HISTORY_EVENT_ID\x10\x01\x12\x1d\n\x19\x46LOW_RESET_TYPE_BEGINNING\x10\x02\x12&\n\"FLOW_RESET_TYPE_HISTORY_EVENT_TIME\x10\x03\x12\x1d\n\x19\x46LOW_RESET_TYPE_STEP_TYPE\x10\x04\x12%\n!FLOW_RESET_TYPE_STEP_EXECUTION_ID\x10\x05*\xf7\x01\n\x0e\x45rrorSubStatus\x12 \n\x1c\x45RROR_SUB_STATUS_UNSPECIFIED\x10\x00\x12\"\n\x1e\x45RROR_SUB_STATUS_UNCATEGORIZED\x10\x01\x12)\n%ERROR_SUB_STATUS_FLOW_ALREADY_STARTED\x10\x02\x12$\n ERROR_SUB_STATUS_FLOW_NOT_EXISTS\x10\x03\x12%\n!ERROR_SUB_STATUS_WORKER_API_ERROR\x10\x04\x12\'\n#ERROR_SUB_STATUS_LONG_POLL_TIME_OUT\x10\x05*\x8b\x02\n\x11\x43loseDecisionType\x12#\n\x1f\x43LOSE_DECISION_TYPE_UNSPECIFIED\x10\x00\x12\x38\n4CLOSE_DECISION_TYPE_FORCE_COMPLETE_ON_CHANNELS_EMPTY\x10\x01\x12)\n%CLOSE_DECISION_TYPE_GRACEFUL_COMPLETE\x10\x02\x12&\n\"CLOSE_DECISION_TYPE_FORCE_COMPLETE\x10\x03\x12\"\n\x1e\x43LOSE_DECISION_TYPE_FORCE_FAIL\x10\x04\x12 \n\x1c\x43LOSE_DECISION_TYPE_DEAD_END\x10\x05*\xc8\x01\n\x14WaitingConditionType\x12&\n\"WAITING_CONDITION_TYPE_UNSPECIFIED\x10\x00\x12(\n$WAITING_CONDITION_TYPE_ALL_COMPLETED\x10\x01\x12(\n$WAITING_CONDITION_TYPE_ANY_COMPLETED\x10\x02\x12\x34\n0WAITING_CONDITION_TYPE_ANY_COMBINATION_COMPLETED\x10\x03*q\n\x0f\x43onditionStatus\x12 \n\x1c\x43ONDITION_STATUS_UNSPECIFIED\x10\x00\x12\x1c\n\x18\x43ONDITION_STATUS_WAITING\x10\x01\x12\x1e\n\x1a\x43ONDITION_STATUS_COMPLETED\x10\x02*\xa3\x01\n\x13InternalTimerStatus\x12%\n!INTERNAL_TIMER_STATUS_UNSPECIFIED\x10\x00\x12!\n\x1dINTERNAL_TIMER_STATUS_PENDING\x10\x01\x12\x1f\n\x1bINTERNAL_TIMER_STATUS_FIRED\x10\x02\x12!\n\x1dINTERNAL_TIMER_STATUS_SKIPPED\x10\x03*\xb8\x02\n\x0fUpdateErrorType\x12!\n\x1dUPDATE_ERROR_TYPE_UNSPECIFIED\x10\x00\x12/\n+UPDATE_ERROR_TYPE_CONTINUE_AS_NEW_PREEMPTED\x10\x01\x12&\n\"UPDATE_ERROR_TYPE_INVALID_ARGUMENT\x10\x02\x12)\n%UPDATE_ERROR_TYPE_FAILED_PRECONDITION\x10\x03\x12\'\n#UPDATE_ERROR_TYPE_DEADLINE_EXCEEDED\x10\x04\x12.\n*UPDATE_ERROR_TYPE_RPC_ACQUIRE_LOCK_FAILURE\x10\x05\x12%\n!UPDATE_ERROR_TYPE_SERVER_INTERNAL\x10\x06\x32\x86\x0b\n\x0b\x46lowService\x12:\n\tStartFlow\x12\x15.dex.StartFlowRequest\x1a\x16.dex.StartFlowResponse\x12H\n\x10PublishToChannel\x12\x1c.dex.PublishToChannelRequest\x1a\x16.google.protobuf.Empty\x12\x38\n\x08StopFlow\x12\x14.dex.StopFlowRequest\x1a\x16.google.protobuf.Empty\x12\x46\n\rGetAttributes\x12\x19.dex.GetAttributesRequest\x1a\x1a.dex.GetAttributesResponse\x12\x42\n\rSetAttributes\x12\x19.dex.SetAttributesRequest\x1a\x16.google.protobuf.Empty\x12:\n\tLoadBlobs\x12\x15.dex.LoadBlobsRequest\x1a\x16.dex.LoadBlobsResponse\x12@\n\x0bWaitForFlow\x12\x17.dex.WaitForFlowRequest\x1a\x18.dex.WaitForFlowResponse\x12@\n\x0bSearchFlows\x12\x17.dex.SearchFlowsRequest\x1a\x18.dex.SearchFlowsResponse\x12I\n\x0eGetFlowSummary\x12\x1a.dex.GetFlowSummaryRequest\x1a\x1b.dex.GetFlowSummaryResponse\x12O\n\x10GetHistoryEvents\x12\x1c.dex.GetHistoryEventsRequest\x1a\x1d.dex.GetHistoryEventsResponse\x12X\n\x13WaitForHistoryEvent\x12\x1f.dex.WaitForHistoryEventRequest\x1a .dex.WaitForHistoryEventResponse\x12\x43\n\x0cGetFlowState\x12\x18.dex.GetFlowStateRequest\x1a\x19.dex.GetFlowStateResponse\x12:\n\tResetFlow\x12\x15.dex.ResetFlowRequest\x1a\x16.dex.ResetFlowResponse\x12:\n\tInvokeRPC\x12\x15.dex.InvokeRPCRequest\x1a\x16.dex.InvokeRPCResponse\x12:\n\tSkipTimer\x12\x15.dex.SkipTimerRequest\x1a\x16.google.protobuf.Empty\x12H\n\x10UpdateFlowConfig\x12\x1c.dex.UpdateFlowConfigRequest\x1a\x16.google.protobuf.Empty\x12^\n\x15WaitForStepCompletion\x12!.dex.WaitForStepCompletionRequest\x1a\".dex.WaitForStepCompletionResponse\x12H\n\x10WaitForAttribute\x12\x1c.dex.WaitForAttributeRequest\x1a\x16.google.protobuf.Empty\x12P\n\x14TriggerContinueAsNew\x12 .dex.TriggerContinueAsNewRequest\x1a\x16.google.protobuf.Empty\x12\x36\n\x0bHealthCheck\x12\x16.google.protobuf.Empty\x1a\x0f.dex.HealthInfo2\x91\x02\n\rWorkerService\x12X\n\x13InvokeWaitForMethod\x12\x1f.dex.InvokeWaitForMethodRequest\x1a .dex.InvokeWaitForMethodResponse\x12X\n\x13InvokeExecuteMethod\x12\x1f.dex.InvokeExecuteMethodRequest\x1a .dex.InvokeExecuteMethodResponse\x12L\n\x0fInvokeWorkerRPC\x12\x1b.dex.InvokeWorkerRPCRequest\x1a\x1c.dex.InvokeWorkerRPCResponse2l\n\x0fInternalService\x12Y\n\x18\x44umpFlowForContinueAsNew\x12\x1d.dex.ContinueAsNewDumpRequest\x1a\x1e.dex.ContinueAsNewDumpResponseB!\n\x13io.superdurable.genB\x08\x44\x65xProtoP\x01\x62\x06proto3')
32
+
33
+ _globals = globals()
34
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
35
+ _builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dex_pb2', _globals)
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals['DESCRIPTOR']._loaded_options = None
38
+ _globals['DESCRIPTOR']._serialized_options = b'\n\023io.superdurable.genB\010DexProtoP\001'
39
+ _globals['_LOADBLOBSRESPONSE_VALUESENTRY']._loaded_options = None
40
+ _globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_options = b'8\001'
41
+ _globals['_FLOWCONTINUEDSTART_PENDINGCHANNELMESSAGESENTRY']._loaded_options = None
42
+ _globals['_FLOWCONTINUEDSTART_PENDINGCHANNELMESSAGESENTRY']._serialized_options = b'8\001'
43
+ _globals['_GETFLOWSTATERESPONSE_PENDINGCHANNELMESSAGESENTRY']._loaded_options = None
44
+ _globals['_GETFLOWSTATERESPONSE_PENDINGCHANNELMESSAGESENTRY']._serialized_options = b'8\001'
45
+ _globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._loaded_options = None
46
+ _globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_options = b'8\001'
47
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._loaded_options = None
48
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_options = b'8\001'
49
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._loaded_options = None
50
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_options = b'8\001'
51
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._loaded_options = None
52
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_options = b'8\001'
53
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._loaded_options = None
54
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_options = b'8\001'
55
+ _globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._loaded_options = None
56
+ _globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_options = b'8\001'
57
+ _globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._loaded_options = None
58
+ _globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_options = b'8\001'
59
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._loaded_options = None
60
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_options = b'8\001'
61
+ _globals['_INDEXTYPE']._serialized_start=20527
62
+ _globals['_INDEXTYPE']._serialized_end=20730
63
+ _globals['_WAITFORMETHODFAILUREPOLICY']._serialized_start=20733
64
+ _globals['_WAITFORMETHODFAILUREPOLICY']._serialized_end=20921
65
+ _globals['_EXECUTEMETHODFAILUREPOLICY']._serialized_start=20924
66
+ _globals['_EXECUTEMETHODFAILUREPOLICY']._serialized_end=21132
67
+ _globals['_IDREUSEPOLICY']._serialized_start=21135
68
+ _globals['_IDREUSEPOLICY']._serialized_end=21365
69
+ _globals['_ACTIVESTEPSEARCHMODE']._serialized_start=21368
70
+ _globals['_ACTIVESTEPSEARCHMODE']._serialized_end=21575
71
+ _globals['_STEPDURABILITY']._serialized_start=21577
72
+ _globals['_STEPDURABILITY']._serialized_end=21679
73
+ _globals['_STOPTYPE']._serialized_start=21681
74
+ _globals['_STOPTYPE']._serialized_end=21785
75
+ _globals['_FLOWSTATUS']._serialized_start=21788
76
+ _globals['_FLOWSTATUS']._serialized_end=22018
77
+ _globals['_FLOWERRORTYPE']._serialized_start=22021
78
+ _globals['_FLOWERRORTYPE']._serialized_end=22273
79
+ _globals['_ACTIVESTEPPHASE']._serialized_start=22275
80
+ _globals['_ACTIVESTEPPHASE']._serialized_end=22388
81
+ _globals['_FLOWRESETTYPE']._serialized_start=22391
82
+ _globals['_FLOWRESETTYPE']._serialized_end=22618
83
+ _globals['_ERRORSUBSTATUS']._serialized_start=22621
84
+ _globals['_ERRORSUBSTATUS']._serialized_end=22868
85
+ _globals['_CLOSEDECISIONTYPE']._serialized_start=22871
86
+ _globals['_CLOSEDECISIONTYPE']._serialized_end=23138
87
+ _globals['_WAITINGCONDITIONTYPE']._serialized_start=23141
88
+ _globals['_WAITINGCONDITIONTYPE']._serialized_end=23341
89
+ _globals['_CONDITIONSTATUS']._serialized_start=23343
90
+ _globals['_CONDITIONSTATUS']._serialized_end=23456
91
+ _globals['_INTERNALTIMERSTATUS']._serialized_start=23459
92
+ _globals['_INTERNALTIMERSTATUS']._serialized_end=23622
93
+ _globals['_UPDATEERRORTYPE']._serialized_start=23625
94
+ _globals['_UPDATEERRORTYPE']._serialized_end=23937
95
+ _globals['_VALUE']._serialized_start=143
96
+ _globals['_VALUE']._serialized_end=427
97
+ _globals['_ENCODEDOBJECT']._serialized_start=429
98
+ _globals['_ENCODEDOBJECT']._serialized_end=479
99
+ _globals['_ATTRIBUTEWRITE']._serialized_start=481
100
+ _globals['_ATTRIBUTEWRITE']._serialized_end=577
101
+ _globals['_KV']._serialized_start=579
102
+ _globals['_KV']._serialized_end=623
103
+ _globals['_INDEXCONFIG']._serialized_start=625
104
+ _globals['_INDEXCONFIG']._serialized_end=703
105
+ _globals['_CONTEXT']._serialized_start=706
106
+ _globals['_CONTEXT']._serialized_end=889
107
+ _globals['_LOCALACTIVITYINPUT']._serialized_start=891
108
+ _globals['_LOCALACTIVITYINPUT']._serialized_end=978
109
+ _globals['_RETRYPOLICY']._serialized_start=981
110
+ _globals['_RETRYPOLICY']._serialized_end=1149
111
+ _globals['_FLOWRETRYPOLICY']._serialized_start=1152
112
+ _globals['_FLOWRETRYPOLICY']._serialized_end=1292
113
+ _globals['_STEPOPTIONS']._serialized_start=1295
114
+ _globals['_STEPOPTIONS']._serialized_end=1925
115
+ _globals['_FLOWALREADYSTARTEDOPTIONS']._serialized_start=1927
116
+ _globals['_FLOWALREADYSTARTEDOPTIONS']._serialized_end=2010
117
+ _globals['_FLOWSTARTOPTIONS']._serialized_start=2013
118
+ _globals['_FLOWSTARTOPTIONS']._serialized_end=2335
119
+ _globals['_FLOWCONFIG']._serialized_start=2338
120
+ _globals['_FLOWCONFIG']._serialized_end=2714
121
+ _globals['_WORKERTARGET']._serialized_start=2716
122
+ _globals['_WORKERTARGET']._serialized_end=2776
123
+ _globals['_STARTFLOWREQUEST']._serialized_start=2779
124
+ _globals['_STARTFLOWREQUEST']._serialized_end=3031
125
+ _globals['_STARTFLOWRESPONSE']._serialized_start=3033
126
+ _globals['_STARTFLOWRESPONSE']._serialized_end=3068
127
+ _globals['_PUBLISHTOCHANNELREQUEST']._serialized_start=3070
128
+ _globals['_PUBLISHTOCHANNELREQUEST']._serialized_end=3167
129
+ _globals['_CHANNELMESSAGE']._serialized_start=3169
130
+ _globals['_CHANNELMESSAGE']._serialized_end=3234
131
+ _globals['_STOPFLOWREQUEST']._serialized_start=3236
132
+ _globals['_STOPFLOWREQUEST']._serialized_end=3336
133
+ _globals['_GETATTRIBUTESREQUEST']._serialized_start=3338
134
+ _globals['_GETATTRIBUTESREQUEST']._serialized_end=3425
135
+ _globals['_GETATTRIBUTESRESPONSE']._serialized_start=3427
136
+ _globals['_GETATTRIBUTESRESPONSE']._serialized_end=3479
137
+ _globals['_SETATTRIBUTESREQUEST']._serialized_start=3481
138
+ _globals['_SETATTRIBUTESREQUEST']._serialized_end=3597
139
+ _globals['_LOADBLOBSREQUEST']._serialized_start=3599
140
+ _globals['_LOADBLOBSREQUEST']._serialized_end=3645
141
+ _globals['_LOADBLOBSRESPONSE']._serialized_start=3648
142
+ _globals['_LOADBLOBSRESPONSE']._serialized_end=3778
143
+ _globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_start=3721
144
+ _globals['_LOADBLOBSRESPONSE_VALUESENTRY']._serialized_end=3778
145
+ _globals['_WAITFORFLOWREQUEST']._serialized_start=3780
146
+ _globals['_WAITFORFLOWREQUEST']._serialized_end=3883
147
+ _globals['_STEPCOMPLETIONOUTPUT']._serialized_start=3886
148
+ _globals['_STEPCOMPLETIONOUTPUT']._serialized_end=4017
149
+ _globals['_WAITFORFLOWRESPONSE']._serialized_start=4020
150
+ _globals['_WAITFORFLOWRESPONSE']._serialized_end=4186
151
+ _globals['_SEARCHFLOWSREQUEST']._serialized_start=4188
152
+ _globals['_SEARCHFLOWSREQUEST']._serialized_end=4267
153
+ _globals['_SEARCHFLOWSRESPONSE']._serialized_start=4269
154
+ _globals['_SEARCHFLOWSRESPONSE']._serialized_end=4365
155
+ _globals['_SEARCHFLOWSRESPONSEENTRY']._serialized_start=4368
156
+ _globals['_SEARCHFLOWSRESPONSEENTRY']._serialized_end=4616
157
+ _globals['_FLOWEXECUTIONID']._serialized_start=4618
158
+ _globals['_FLOWEXECUTIONID']._serialized_end=4668
159
+ _globals['_GETFLOWSUMMARYREQUEST']._serialized_start=4670
160
+ _globals['_GETFLOWSUMMARYREQUEST']._serialized_end=4726
161
+ _globals['_GETFLOWSUMMARYRESPONSE']._serialized_start=4729
162
+ _globals['_GETFLOWSUMMARYRESPONSE']._serialized_end=4997
163
+ _globals['_INTERNALASYNCSTEPINPUTSNAPSHOT']._serialized_start=5000
164
+ _globals['_INTERNALASYNCSTEPINPUTSNAPSHOT']._serialized_end=5212
165
+ _globals['_INTERNALLOCALACTIVITYINPUT']._serialized_start=5214
166
+ _globals['_INTERNALLOCALACTIVITYINPUT']._serialized_end=5329
167
+ _globals['_GETHISTORYEVENTSREQUEST']._serialized_start=5332
168
+ _globals['_GETHISTORYEVENTSREQUEST']._serialized_end=5476
169
+ _globals['_GETHISTORYEVENTSRESPONSE']._serialized_start=5478
170
+ _globals['_GETHISTORYEVENTSRESPONSE']._serialized_end=5600
171
+ _globals['_FLOWHISTORYEVENT']._serialized_start=5603
172
+ _globals['_FLOWHISTORYEVENT']._serialized_end=6220
173
+ _globals['_FLOWSTARTEDORCONTINUEDHISTORYEVENT']._serialized_start=6223
174
+ _globals['_FLOWSTARTEDORCONTINUEDHISTORYEVENT']._serialized_end=6535
175
+ _globals['_FLOWINITIALSTART']._serialized_start=6538
176
+ _globals['_FLOWINITIALSTART']._serialized_end=6690
177
+ _globals['_FLOWCONTINUEDSTART']._serialized_start=6693
178
+ _globals['_FLOWCONTINUEDSTART']._serialized_end=7087
179
+ _globals['_FLOWCONTINUEDSTART_PENDINGCHANNELMESSAGESENTRY']._serialized_start=7006
180
+ _globals['_FLOWCONTINUEDSTART_PENDINGCHANNELMESSAGESENTRY']._serialized_end=7087
181
+ _globals['_FLOWCLOSEDHISTORYEVENT']._serialized_start=7090
182
+ _globals['_FLOWCLOSEDHISTORYEVENT']._serialized_end=7288
183
+ _globals['_STEPMETHODFAILURE']._serialized_start=7291
184
+ _globals['_STEPMETHODFAILURE']._serialized_end=7443
185
+ _globals['_STEPMETHODOPTIONS']._serialized_start=7445
186
+ _globals['_STEPMETHODOPTIONS']._serialized_end=7529
187
+ _globals['_STEPMETHODEVENTINPUT']._serialized_start=7532
188
+ _globals['_STEPMETHODEVENTINPUT']._serialized_end=7726
189
+ _globals['_STEPMETHODEVENTCONTEXT']._serialized_start=7729
190
+ _globals['_STEPMETHODEVENTCONTEXT']._serialized_end=8143
191
+ _globals['_STEPWAITFORCOMPLETEDOUTPUT']._serialized_start=8146
192
+ _globals['_STEPWAITFORCOMPLETEDOUTPUT']._serialized_end=8453
193
+ _globals['_STEPEXECUTECOMPLETEDOUTPUT']._serialized_start=8456
194
+ _globals['_STEPEXECUTECOMPLETEDOUTPUT']._serialized_end=8702
195
+ _globals['_STEPMETHODFAILEDOUTPUT']._serialized_start=8704
196
+ _globals['_STEPMETHODFAILEDOUTPUT']._serialized_end=8769
197
+ _globals['_STEPWAITFORCOMPLETEDEVENT']._serialized_start=8772
198
+ _globals['_STEPWAITFORCOMPLETEDEVENT']._serialized_end=8936
199
+ _globals['_STEPWAITFORFAILEDEVENT']._serialized_start=8939
200
+ _globals['_STEPWAITFORFAILEDEVENT']._serialized_end=9096
201
+ _globals['_STEPEXECUTECOMPLETEDEVENT']._serialized_start=9099
202
+ _globals['_STEPEXECUTECOMPLETEDEVENT']._serialized_end=9263
203
+ _globals['_STEPEXECUTEFAILEDEVENT']._serialized_start=9266
204
+ _globals['_STEPEXECUTEFAILEDEVENT']._serialized_end=9423
205
+ _globals['_RPCEXECUTIONCOMPLETEDEVENT']._serialized_start=9426
206
+ _globals['_RPCEXECUTIONCOMPLETEDEVENT']._serialized_end=9698
207
+ _globals['_CHANNELEXTERNALPUBLISHEVENT']._serialized_start=9700
208
+ _globals['_CHANNELEXTERNALPUBLISHEVENT']._serialized_end=9768
209
+ _globals['_WAITFORHISTORYEVENTREQUEST']._serialized_start=9770
210
+ _globals['_WAITFORHISTORYEVENTREQUEST']._serialized_end=9863
211
+ _globals['_WAITFORHISTORYEVENTRESPONSE']._serialized_start=9866
212
+ _globals['_WAITFORHISTORYEVENTRESPONSE']._serialized_end=9995
213
+ _globals['_ACTIVESTEPEXECUTIONSTATE']._serialized_start=9998
214
+ _globals['_ACTIVESTEPEXECUTIONSTATE']._serialized_end=10367
215
+ _globals['_GETFLOWSTATEREQUEST']._serialized_start=10369
216
+ _globals['_GETFLOWSTATEREQUEST']._serialized_end=10423
217
+ _globals['_GETFLOWSTATERESPONSE']._serialized_start=10426
218
+ _globals['_GETFLOWSTATERESPONSE']._serialized_end=10843
219
+ _globals['_GETFLOWSTATERESPONSE_PENDINGCHANNELMESSAGESENTRY']._serialized_start=7006
220
+ _globals['_GETFLOWSTATERESPONSE_PENDINGCHANNELMESSAGESENTRY']._serialized_end=7087
221
+ _globals['_RESETFLOWREQUEST']._serialized_start=10846
222
+ _globals['_RESETFLOWREQUEST']._serialized_end=11126
223
+ _globals['_RESETFLOWRESPONSE']._serialized_start=11128
224
+ _globals['_RESETFLOWRESPONSE']._serialized_end=11163
225
+ _globals['_INVOKERPCREQUEST']._serialized_start=11166
226
+ _globals['_INVOKERPCREQUEST']._serialized_end=11336
227
+ _globals['_INVOKERPCRESPONSE']._serialized_start=11338
228
+ _globals['_INVOKERPCRESPONSE']._serialized_end=11385
229
+ _globals['_SKIPTIMERREQUEST']._serialized_start=11388
230
+ _globals['_SKIPTIMERREQUEST']._serialized_end=11556
231
+ _globals['_UPDATEFLOWCONFIGREQUEST']._serialized_start=11558
232
+ _globals['_UPDATEFLOWCONFIGREQUEST']._serialized_end=11654
233
+ _globals['_WAITFORSTEPCOMPLETIONREQUEST']._serialized_start=11657
234
+ _globals['_WAITFORSTEPCOMPLETIONREQUEST']._serialized_end=11801
235
+ _globals['_WAITFORSTEPCOMPLETIONRESPONSE']._serialized_start=11803
236
+ _globals['_WAITFORSTEPCOMPLETIONRESPONSE']._serialized_end=11834
237
+ _globals['_WAITFORATTRIBUTEREQUEST']._serialized_start=11837
238
+ _globals['_WAITFORATTRIBUTEREQUEST']._serialized_end=11993
239
+ _globals['_WAITFORATTRIBUTECONDITION']._serialized_start=11995
240
+ _globals['_WAITFORATTRIBUTECONDITION']._serialized_end=12075
241
+ _globals['_WAITFORATTRIBUTEEQUAL']._serialized_start=12077
242
+ _globals['_WAITFORATTRIBUTEEQUAL']._serialized_end=12140
243
+ _globals['_TRIGGERCONTINUEASNEWREQUEST']._serialized_start=12142
244
+ _globals['_TRIGGERCONTINUEASNEWREQUEST']._serialized_end=12204
245
+ _globals['_HEALTHINFO']._serialized_start=12206
246
+ _globals['_HEALTHINFO']._serialized_end=12273
247
+ _globals['_ERRORRESPONSE']._serialized_start=12276
248
+ _globals['_ERRORRESPONSE']._serialized_end=12460
249
+ _globals['_WORKERERRORRESPONSE']._serialized_start=12462
250
+ _globals['_WORKERERRORRESPONSE']._serialized_end=12519
251
+ _globals['_CHANNELINFO']._serialized_start=12521
252
+ _globals['_CHANNELINFO']._serialized_end=12548
253
+ _globals['_INVOKEWAITFORMETHODREQUEST']._serialized_start=12551
254
+ _globals['_INVOKEWAITFORMETHODREQUEST']._serialized_end=12709
255
+ _globals['_INVOKEWAITFORMETHODRESPONSE']._serialized_start=12712
256
+ _globals['_INVOKEWAITFORMETHODRESPONSE']._serialized_end=13068
257
+ _globals['_INVOKEEXECUTEMETHODREQUEST']._serialized_start=13071
258
+ _globals['_INVOKEEXECUTEMETHODREQUEST']._serialized_end=13313
259
+ _globals['_INVOKEEXECUTEMETHODRESPONSE']._serialized_start=13316
260
+ _globals['_INVOKEEXECUTEMETHODRESPONSE']._serialized_end=13612
261
+ _globals['_INVOKEWORKERRPCREQUEST']._serialized_start=13615
262
+ _globals['_INVOKEWORKERRPCREQUEST']._serialized_end=13904
263
+ _globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_start=13835
264
+ _globals['_INVOKEWORKERRPCREQUEST_CHANNELINFOSENTRY']._serialized_end=13904
265
+ _globals['_INVOKEWORKERRPCRESPONSE']._serialized_start=13907
266
+ _globals['_INVOKEWORKERRPCRESPONSE']._serialized_end=14131
267
+ _globals['_STEPDECISION']._serialized_start=14133
268
+ _globals['_STEPDECISION']._serialized_end=14230
269
+ _globals['_CLOSEDECISION']._serialized_start=14233
270
+ _globals['_CLOSEDECISION']._serialized_end=14369
271
+ _globals['_STEPMOVEMENT']._serialized_start=14372
272
+ _globals['_STEPMOVEMENT']._serialized_end=14523
273
+ _globals['_CONDITIONCOMBINATION']._serialized_start=14525
274
+ _globals['_CONDITIONCOMBINATION']._serialized_end=14570
275
+ _globals['_WAITINGCONDITION']._serialized_start=14573
276
+ _globals['_WAITINGCONDITION']._serialized_end=14807
277
+ _globals['_TIMERCONDITION']._serialized_start=14809
278
+ _globals['_TIMERCONDITION']._serialized_end=14912
279
+ _globals['_CHANNELCONDITION']._serialized_start=14915
280
+ _globals['_CHANNELCONDITION']._serialized_end=15047
281
+ _globals['_CONDITIONRESULTS']._serialized_start=15050
282
+ _globals['_CONDITIONRESULTS']._serialized_end=15179
283
+ _globals['_TIMERRESULT']._serialized_start=15181
284
+ _globals['_TIMERRESULT']._serialized_end=15264
285
+ _globals['_CHANNELRESULT']._serialized_start=15267
286
+ _globals['_CHANNELRESULT']._serialized_end=15402
287
+ _globals['_CONTINUEASNEWDUMPREQUEST']._serialized_start=15404
288
+ _globals['_CONTINUEASNEWDUMPREQUEST']._serialized_end=15509
289
+ _globals['_CONTINUEASNEWDUMPRESPONSE']._serialized_start=15511
290
+ _globals['_CONTINUEASNEWDUMPRESPONSE']._serialized_end=15617
291
+ _globals['_CHANNELVALUES']._serialized_start=15619
292
+ _globals['_CHANNELVALUES']._serialized_end=15662
293
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS']._serialized_start=15665
294
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS']._serialized_end=15895
295
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_start=15806
296
+ _globals['_STEPEXECUTIONCOMPLETEDCONDITIONS_COMPLETEDTIMERCONDITIONSENTRY']._serialized_end=15895
297
+ _globals['_STEPEXECUTIONRESUMEINFO']._serialized_start=15898
298
+ _globals['_STEPEXECUTIONRESUMEINFO']._serialized_end=16136
299
+ _globals['_STEPEXECUTIONCOUNTERINFO']._serialized_start=16139
300
+ _globals['_STEPEXECUTIONCOUNTERINFO']._serialized_end=16729
301
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_start=16507
302
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPESTARTEDCOUNTENTRY']._serialized_end=16566
303
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_start=16568
304
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPTYPECURRENTLYEXECUTINGCOUNTENTRY']._serialized_end=16638
305
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_start=16640
306
+ _globals['_STEPEXECUTIONCOUNTERINFO_STEPACTIVEEXECUTIONNUMSENTRY']._serialized_end=16729
307
+ _globals['_STALESKIPTIMER']._serialized_start=16731
308
+ _globals['_STALESKIPTIMER']._serialized_end=16833
309
+ _globals['_CONTINUEASNEWDUMP']._serialized_start=16836
310
+ _globals['_CONTINUEASNEWDUMP']._serialized_end=17304
311
+ _globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_start=17230
312
+ _globals['_CONTINUEASNEWDUMP_CHANNELRECEIVEDENTRY']._serialized_end=17304
313
+ _globals['_CONTINUEASNEWINPUT']._serialized_start=17306
314
+ _globals['_CONTINUEASNEWINPUT']._serialized_end=17360
315
+ _globals['_INTERPRETERWORKFLOWINPUT']._serialized_start=17363
316
+ _globals['_INTERPRETERWORKFLOWINPUT']._serialized_end=17668
317
+ _globals['_INTERPRETERWORKFLOWOUTPUT']._serialized_start=17670
318
+ _globals['_INTERPRETERWORKFLOWOUTPUT']._serialized_end=17757
319
+ _globals['_BLOBSTORECLEANUPWORKFLOWINPUT']._serialized_start=17759
320
+ _globals['_BLOBSTORECLEANUPWORKFLOWINPUT']._serialized_end=17808
321
+ _globals['_BLOBSTORECLEANUPWORKFLOWOUTPUT']._serialized_start=17810
322
+ _globals['_BLOBSTORECLEANUPWORKFLOWOUTPUT']._serialized_end=17865
323
+ _globals['_INVOKEWAITFORMETHODACTIVITYINPUT']._serialized_start=17867
324
+ _globals['_INVOKEWAITFORMETHODACTIVITYINPUT']._serialized_end=17993
325
+ _globals['_INVOKEWAITFORMETHODACTIVITYOUTPUT']._serialized_start=17995
326
+ _globals['_INVOKEWAITFORMETHODACTIVITYOUTPUT']._serialized_end=18082
327
+ _globals['_INVOKEEXECUTEMETHODACTIVITYINPUT']._serialized_start=18085
328
+ _globals['_INVOKEEXECUTEMETHODACTIVITYINPUT']._serialized_end=18238
329
+ _globals['_INVOKEEXECUTEMETHODACTIVITYOUTPUT']._serialized_start=18240
330
+ _globals['_INVOKEEXECUTEMETHODACTIVITYOUTPUT']._serialized_end=18327
331
+ _globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYINPUT']._serialized_start=18329
332
+ _globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYINPUT']._serialized_end=18416
333
+ _globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYOUTPUT']._serialized_start=18418
334
+ _globals['_DUMPFLOWFORCONTINUEASNEWACTIVITYOUTPUT']._serialized_end=18508
335
+ _globals['_INVOKEWORKERRPCACTIVITYINPUT']._serialized_start=18510
336
+ _globals['_INVOKEWORKERRPCACTIVITYINPUT']._serialized_end=18628
337
+ _globals['_INVOKEWORKERRPCACTIVITYOUTPUT']._serialized_start=18630
338
+ _globals['_INVOKEWORKERRPCACTIVITYOUTPUT']._serialized_end=18709
339
+ _globals['_CLEANUPBLOBSTOREACTIVITYINPUT']._serialized_start=18711
340
+ _globals['_CLEANUPBLOBSTOREACTIVITYINPUT']._serialized_end=18760
341
+ _globals['_CLEANUPBLOBSTOREACTIVITYOUTPUT']._serialized_start=18762
342
+ _globals['_CLEANUPBLOBSTOREACTIVITYOUTPUT']._serialized_end=18817
343
+ _globals['_EXECUTERPCSIGNALREQUEST']._serialized_start=18820
344
+ _globals['_EXECUTERPCSIGNALREQUEST']._serialized_end=19079
345
+ _globals['_SKIPTIMERSIGNALREQUEST']._serialized_start=19081
346
+ _globals['_SKIPTIMERSIGNALREQUEST']._serialized_end=19191
347
+ _globals['_FAILFLOWSIGNALREQUEST']._serialized_start=19193
348
+ _globals['_FAILFLOWSIGNALREQUEST']._serialized_end=19232
349
+ _globals['_GETATTRIBUTESQUERYREQUEST']._serialized_start=19234
350
+ _globals['_GETATTRIBUTESQUERYREQUEST']._serialized_end=19293
351
+ _globals['_GETATTRIBUTESQUERYRESPONSE']._serialized_start=19295
352
+ _globals['_GETATTRIBUTESQUERYRESPONSE']._serialized_end=19352
353
+ _globals['_PREPARERPCQUERYREQUEST']._serialized_start=19354
354
+ _globals['_PREPARERPCQUERYREQUEST']._serialized_end=19407
355
+ _globals['_PREPARERPCQUERYRESPONSE']._serialized_start=19410
356
+ _globals['_PREPARERPCQUERYRESPONSE']._serialized_end=19715
357
+ _globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_start=13835
358
+ _globals['_PREPARERPCQUERYRESPONSE_CHANNELINFOSENTRY']._serialized_end=13904
359
+ _globals['_TIMERINFO']._serialized_start=19717
360
+ _globals['_TIMERINFO']._serialized_end=19831
361
+ _globals['_TIMERINFOLIST']._serialized_start=19833
362
+ _globals['_TIMERINFOLIST']._serialized_end=19880
363
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE']._serialized_start=19883
364
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE']._serialized_end=20129
365
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_start=20040
366
+ _globals['_GETCURRENTTIMERINFOSQUERYRESPONSE_STEPEXECUTIONCURRENTTIMERINFOSENTRY']._serialized_end=20129
367
+ _globals['_GETSCHEDULEDGREEDYTIMERTIMESQUERYRESPONSE']._serialized_start=20131
368
+ _globals['_GETSCHEDULEDGREEDYTIMERTIMESQUERYRESPONSE']._serialized_end=20217
369
+ _globals['_DEBUGDUMPRESPONSE']._serialized_start=20220
370
+ _globals['_DEBUGDUMPRESPONSE']._serialized_end=20416
371
+ _globals['_INVOKERPCUPDATERESULT']._serialized_start=20418
372
+ _globals['_INVOKERPCUPDATERESULT']._serialized_end=20483
373
+ _globals['_STEPEXECUTIONNUMBERS']._serialized_start=20485
374
+ _globals['_STEPEXECUTIONNUMBERS']._serialized_end=20524
375
+ _globals['_FLOWSERVICE']._serialized_start=23940
376
+ _globals['_FLOWSERVICE']._serialized_end=25354
377
+ _globals['_WORKERSERVICE']._serialized_start=25357
378
+ _globals['_WORKERSERVICE']._serialized_end=25630
379
+ _globals['_INTERNALSERVICE']._serialized_start=25632
380
+ _globals['_INTERNALSERVICE']._serialized_end=25740
381
+ # @@protoc_insertion_point(module_scope)