@proompteng/temporal-bun-sdk 0.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/README.md +387 -0
- package/dist/bin/start-worker.js +3 -0
- package/dist/bin/temporal-bun.js +3 -0
- package/dist/src/activities/index.d.ts +6 -0
- package/dist/src/activities/index.d.ts.map +1 -0
- package/dist/src/activities/index.js +5 -0
- package/dist/src/activities/index.js.map +1 -0
- package/dist/src/activities/lifecycle.d.ts +48 -0
- package/dist/src/activities/lifecycle.d.ts.map +1 -0
- package/dist/src/activities/lifecycle.js +306 -0
- package/dist/src/activities/lifecycle.js.map +1 -0
- package/dist/src/bin/replay-command.d.ts +104 -0
- package/dist/src/bin/replay-command.d.ts.map +1 -0
- package/dist/src/bin/replay-command.js +582 -0
- package/dist/src/bin/replay-command.js.map +1 -0
- package/dist/src/bin/start-worker.d.ts +3 -0
- package/dist/src/bin/start-worker.d.ts.map +1 -0
- package/dist/src/bin/start-worker.js +29 -0
- package/dist/src/bin/start-worker.js.map +1 -0
- package/dist/src/bin/temporal-bun.d.ts +25 -0
- package/dist/src/bin/temporal-bun.d.ts.map +1 -0
- package/dist/src/bin/temporal-bun.js +427 -0
- package/dist/src/bin/temporal-bun.js.map +1 -0
- package/dist/src/build_id_preflight.d.ts +7 -0
- package/dist/src/build_id_preflight.d.ts.map +1 -0
- package/dist/src/build_id_preflight.js +123 -0
- package/dist/src/build_id_preflight.js.map +1 -0
- package/dist/src/client/headers.d.ts +4 -0
- package/dist/src/client/headers.d.ts.map +1 -0
- package/dist/src/client/headers.js +79 -0
- package/dist/src/client/headers.js.map +1 -0
- package/dist/src/client/index.d.ts +2 -0
- package/dist/src/client/index.d.ts.map +1 -0
- package/dist/src/client/index.js +2 -0
- package/dist/src/client/index.js.map +1 -0
- package/dist/src/client/interceptors.d.ts +17 -0
- package/dist/src/client/interceptors.d.ts.map +1 -0
- package/dist/src/client/interceptors.js +71 -0
- package/dist/src/client/interceptors.js.map +1 -0
- package/dist/src/client/layer.d.ts +10 -0
- package/dist/src/client/layer.d.ts.map +1 -0
- package/dist/src/client/layer.js +7 -0
- package/dist/src/client/layer.js.map +1 -0
- package/dist/src/client/retries.d.ts +13 -0
- package/dist/src/client/retries.d.ts.map +1 -0
- package/dist/src/client/retries.js +51 -0
- package/dist/src/client/retries.js.map +1 -0
- package/dist/src/client/serialization.d.ts +48 -0
- package/dist/src/client/serialization.d.ts.map +1 -0
- package/dist/src/client/serialization.js +310 -0
- package/dist/src/client/serialization.js.map +1 -0
- package/dist/src/client/serialization.test.d.ts +2 -0
- package/dist/src/client/serialization.test.d.ts.map +1 -0
- package/dist/src/client/serialization.test.js +251 -0
- package/dist/src/client/serialization.test.js.map +1 -0
- package/dist/src/client/transport.d.ts +12 -0
- package/dist/src/client/transport.d.ts.map +1 -0
- package/dist/src/client/transport.js +36 -0
- package/dist/src/client/transport.js.map +1 -0
- package/dist/src/client/types.d.ts +51 -0
- package/dist/src/client/types.d.ts.map +1 -0
- package/dist/src/client/types.js +7 -0
- package/dist/src/client/types.js.map +1 -0
- package/dist/src/client.d.ts +92 -0
- package/dist/src/client.d.ts.map +1 -0
- package/dist/src/client.js +666 -0
- package/dist/src/client.js.map +1 -0
- package/dist/src/common/duration.d.ts +4 -0
- package/dist/src/common/duration.d.ts.map +1 -0
- package/dist/src/common/duration.js +14 -0
- package/dist/src/common/duration.js.map +1 -0
- package/dist/src/common/index.d.ts +2 -0
- package/dist/src/common/index.d.ts.map +1 -0
- package/dist/src/common/index.js +2 -0
- package/dist/src/common/index.js.map +1 -0
- package/dist/src/common/payloads/converter.d.ts +16 -0
- package/dist/src/common/payloads/converter.d.ts.map +1 -0
- package/dist/src/common/payloads/converter.js +33 -0
- package/dist/src/common/payloads/converter.js.map +1 -0
- package/dist/src/common/payloads/failure.d.ts +7 -0
- package/dist/src/common/payloads/failure.d.ts.map +1 -0
- package/dist/src/common/payloads/failure.js +53 -0
- package/dist/src/common/payloads/failure.js.map +1 -0
- package/dist/src/common/payloads/index.d.ts +4 -0
- package/dist/src/common/payloads/index.d.ts.map +1 -0
- package/dist/src/common/payloads/index.js +4 -0
- package/dist/src/common/payloads/index.js.map +1 -0
- package/dist/src/common/payloads/json-codec.d.ts +16 -0
- package/dist/src/common/payloads/json-codec.d.ts.map +1 -0
- package/dist/src/common/payloads/json-codec.js +185 -0
- package/dist/src/common/payloads/json-codec.js.map +1 -0
- package/dist/src/common/sleep.d.ts +2 -0
- package/dist/src/common/sleep.d.ts.map +1 -0
- package/dist/src/common/sleep.js +3 -0
- package/dist/src/common/sleep.js.map +1 -0
- package/dist/src/config.d.ts +115 -0
- package/dist/src/config.d.ts.map +1 -0
- package/dist/src/config.js +505 -0
- package/dist/src/config.js.map +1 -0
- package/dist/src/core-bridge/client.d.ts +36 -0
- package/dist/src/core-bridge/client.d.ts.map +1 -0
- package/dist/src/core-bridge/client.js +111 -0
- package/dist/src/core-bridge/client.js.map +1 -0
- package/dist/src/core-bridge/index.d.ts +4 -0
- package/dist/src/core-bridge/index.d.ts.map +1 -0
- package/dist/src/core-bridge/index.js +4 -0
- package/dist/src/core-bridge/index.js.map +1 -0
- package/dist/src/core-bridge/runtime.d.ts +20 -0
- package/dist/src/core-bridge/runtime.d.ts.map +1 -0
- package/dist/src/core-bridge/runtime.js +62 -0
- package/dist/src/core-bridge/runtime.js.map +1 -0
- package/dist/src/core-bridge/runtime.test.d.ts +2 -0
- package/dist/src/core-bridge/runtime.test.d.ts.map +1 -0
- package/dist/src/core-bridge/runtime.test.js +68 -0
- package/dist/src/core-bridge/runtime.test.js.map +1 -0
- package/dist/src/index.d.ts +11 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +7 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/internal/core-bridge/native.d.ts +176 -0
- package/dist/src/internal/core-bridge/native.d.ts.map +1 -0
- package/dist/src/internal/core-bridge/native.js +1208 -0
- package/dist/src/internal/core-bridge/native.js.map +1 -0
- package/dist/src/observability/index.d.ts +21 -0
- package/dist/src/observability/index.d.ts.map +1 -0
- package/dist/src/observability/index.js +19 -0
- package/dist/src/observability/index.js.map +1 -0
- package/dist/src/observability/logger.d.ts +28 -0
- package/dist/src/observability/logger.d.ts.map +1 -0
- package/dist/src/observability/logger.js +53 -0
- package/dist/src/observability/logger.js.map +1 -0
- package/dist/src/observability/metrics.d.ts +28 -0
- package/dist/src/observability/metrics.d.ts.map +1 -0
- package/dist/src/observability/metrics.js +355 -0
- package/dist/src/observability/metrics.js.map +1 -0
- package/dist/src/proto/google/api/annotations_pb.d.ts +14 -0
- package/dist/src/proto/google/api/annotations_pb.d.ts.map +1 -0
- package/dist/src/proto/google/api/annotations_pb.js +27 -0
- package/dist/src/proto/google/api/annotations_pb.js.map +1 -0
- package/dist/src/proto/google/api/http_pb.d.ts +441 -0
- package/dist/src/proto/google/api/http_pb.d.ts.map +1 -0
- package/dist/src/proto/google/api/http_pb.js +34 -0
- package/dist/src/proto/google/api/http_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/activity/v1/message_pb.d.ts +67 -0
- package/dist/src/proto/temporal/api/activity/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/activity/v1/message_pb.js +17 -0
- package/dist/src/proto/temporal/api/activity/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/batch/v1/message_pb.d.ts +464 -0
- package/dist/src/proto/temporal/api/batch/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/batch/v1/message_pb.js +71 -0
- package/dist/src/proto/temporal/api/batch/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/command/v1/message_pb.d.ts +796 -0
- package/dist/src/proto/temporal/api/command/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/command/v1/message_pb.js +106 -0
- package/dist/src/proto/temporal/api/command/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/common/v1/message_pb.d.ts +751 -0
- package/dist/src/proto/temporal/api/common/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/common/v1/message_pb.js +133 -0
- package/dist/src/proto/temporal/api/common/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/deployment/v1/message_pb.d.ts +639 -0
- package/dist/src/proto/temporal/api/deployment/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/deployment/v1/message_pb.js +83 -0
- package/dist/src/proto/temporal/api/deployment/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.d.ts +80 -0
- package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.js +85 -0
- package/dist/src/proto/temporal/api/enums/v1/batch_operation_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/command_type_pb.d.ts +89 -0
- package/dist/src/proto/temporal/api/enums/v1/command_type_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/command_type_pb.js +93 -0
- package/dist/src/proto/temporal/api/enums/v1/command_type_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/common_pb.d.ts +314 -0
- package/dist/src/proto/temporal/api/enums/v1/common_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/common_pb.js +326 -0
- package/dist/src/proto/temporal/api/enums/v1/common_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/deployment_pb.d.ts +186 -0
- package/dist/src/proto/temporal/api/enums/v1/deployment_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/deployment_pb.js +193 -0
- package/dist/src/proto/temporal/api/enums/v1/deployment_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/event_type_pb.d.ts +407 -0
- package/dist/src/proto/temporal/api/enums/v1/event_type_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/event_type_pb.js +411 -0
- package/dist/src/proto/temporal/api/enums/v1/event_type_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.d.ts +371 -0
- package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.js +380 -0
- package/dist/src/proto/temporal/api/enums/v1/failed_cause_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/namespace_pb.d.ts +73 -0
- package/dist/src/proto/temporal/api/enums/v1/namespace_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/namespace_pb.js +79 -0
- package/dist/src/proto/temporal/api/enums/v1/namespace_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/nexus_pb.d.ts +35 -0
- package/dist/src/proto/temporal/api/enums/v1/nexus_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/nexus_pb.js +39 -0
- package/dist/src/proto/temporal/api/enums/v1/nexus_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/query_pb.d.ts +58 -0
- package/dist/src/proto/temporal/api/enums/v1/query_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/query_pb.js +63 -0
- package/dist/src/proto/temporal/api/enums/v1/query_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/reset_pb.d.ts +108 -0
- package/dist/src/proto/temporal/api/enums/v1/reset_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/reset_pb.js +114 -0
- package/dist/src/proto/temporal/api/enums/v1/reset_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/schedule_pb.d.ts +67 -0
- package/dist/src/proto/temporal/api/enums/v1/schedule_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/schedule_pb.js +71 -0
- package/dist/src/proto/temporal/api/enums/v1/schedule_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.d.ts +249 -0
- package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.js +259 -0
- package/dist/src/proto/temporal/api/enums/v1/task_queue_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/update_pb.d.ts +78 -0
- package/dist/src/proto/temporal/api/enums/v1/update_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/update_pb.js +83 -0
- package/dist/src/proto/temporal/api/enums/v1/update_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/workflow_pb.d.ts +408 -0
- package/dist/src/proto/temporal/api/enums/v1/workflow_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/enums/v1/workflow_pb.js +422 -0
- package/dist/src/proto/temporal/api/enums/v1/workflow_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/errordetails/v1/message_pb.d.ts +331 -0
- package/dist/src/proto/temporal/api/errordetails/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/errordetails/v1/message_pb.js +104 -0
- package/dist/src/proto/temporal/api/errordetails/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/export/v1/message_pb.d.ts +39 -0
- package/dist/src/proto/temporal/api/export/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/export/v1/message_pb.js +20 -0
- package/dist/src/proto/temporal/api/export/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/failure/v1/message_pb.d.ts +381 -0
- package/dist/src/proto/temporal/api/failure/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/failure/v1/message_pb.js +74 -0
- package/dist/src/proto/temporal/api/failure/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/filter/v1/message_pb.d.ts +73 -0
- package/dist/src/proto/temporal/api/filter/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/filter/v1/message_pb.js +31 -0
- package/dist/src/proto/temporal/api/filter/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/history/v1/message_pb.d.ts +3136 -0
- package/dist/src/proto/temporal/api/history/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/history/v1/message_pb.js +317 -0
- package/dist/src/proto/temporal/api/history/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/namespace/v1/message_pb.d.ts +242 -0
- package/dist/src/proto/temporal/api/namespace/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/namespace/v1/message_pb.js +46 -0
- package/dist/src/proto/temporal/api/namespace/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/nexus/v1/message_pb.d.ts +549 -0
- package/dist/src/proto/temporal/api/nexus/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/nexus/v1/message_pb.js +97 -0
- package/dist/src/proto/temporal/api/nexus/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.d.ts +499 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.js +137 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/request_response_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.d.ts +153 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.js +22 -0
- package/dist/src/proto/temporal/api/operatorservice/v1/service_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/protocol/v1/message_pb.d.ts +64 -0
- package/dist/src/proto/temporal/api/protocol/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/protocol/v1/message_pb.js +15 -0
- package/dist/src/proto/temporal/api/protocol/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/query/v1/message_pb.d.ts +96 -0
- package/dist/src/proto/temporal/api/query/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/query/v1/message_pb.js +28 -0
- package/dist/src/proto/temporal/api/query/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/replication/v1/message_pb.d.ts +67 -0
- package/dist/src/proto/temporal/api/replication/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/replication/v1/message_pb.js +26 -0
- package/dist/src/proto/temporal/api/replication/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/rules/v1/message_pb.d.ts +172 -0
- package/dist/src/proto/temporal/api/rules/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/rules/v1/message_pb.js +35 -0
- package/dist/src/proto/temporal/api/rules/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/schedule/v1/message_pb.d.ts +779 -0
- package/dist/src/proto/temporal/api/schedule/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/schedule/v1/message_pb.js +95 -0
- package/dist/src/proto/temporal/api/schedule/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.d.ts +157 -0
- package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.js +34 -0
- package/dist/src/proto/temporal/api/sdk/v1/enhanced_stack_trace_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.d.ts +71 -0
- package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.js +14 -0
- package/dist/src/proto/temporal/api/sdk/v1/task_complete_metadata_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.d.ts +37 -0
- package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.js +15 -0
- package/dist/src/proto/temporal/api/sdk/v1/user_metadata_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.d.ts +84 -0
- package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.js +24 -0
- package/dist/src/proto/temporal/api/sdk/v1/worker_config_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.d.ts +99 -0
- package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.js +24 -0
- package/dist/src/proto/temporal/api/sdk/v1/workflow_metadata_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.d.ts +757 -0
- package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.js +138 -0
- package/dist/src/proto/temporal/api/taskqueue/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/update/v1/message_pb.d.ts +230 -0
- package/dist/src/proto/temporal/api/update/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/update/v1/message_pb.js +57 -0
- package/dist/src/proto/temporal/api/update/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/version/v1/message_pb.d.ts +85 -0
- package/dist/src/proto/temporal/api/version/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/version/v1/message_pb.js +26 -0
- package/dist/src/proto/temporal/api/version/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/worker/v1/message_pb.d.ts +311 -0
- package/dist/src/proto/temporal/api/worker/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/worker/v1/message_pb.js +42 -0
- package/dist/src/proto/temporal/api/worker/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/workflow/v1/message_pb.d.ts +1500 -0
- package/dist/src/proto/temporal/api/workflow/v1/message_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/workflow/v1/message_pb.js +183 -0
- package/dist/src/proto/temporal/api/workflow/v1/message_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.d.ts +6967 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.js +1073 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/request_response_pb.js.map +1 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.d.ts +1305 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.d.ts.map +1 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.js +27 -0
- package/dist/src/proto/temporal/api/workflowservice/v1/service_pb.js.map +1 -0
- package/dist/src/runtime/cli-layer.d.ts +12 -0
- package/dist/src/runtime/cli-layer.d.ts.map +1 -0
- package/dist/src/runtime/cli-layer.js +19 -0
- package/dist/src/runtime/cli-layer.js.map +1 -0
- package/dist/src/runtime/config-layer.d.ts +9 -0
- package/dist/src/runtime/config-layer.d.ts.map +1 -0
- package/dist/src/runtime/config-layer.js +15 -0
- package/dist/src/runtime/config-layer.js.map +1 -0
- package/dist/src/runtime/effect-layers.d.ts +518 -0
- package/dist/src/runtime/effect-layers.d.ts.map +1 -0
- package/dist/src/runtime/effect-layers.js +68 -0
- package/dist/src/runtime/effect-layers.js.map +1 -0
- package/dist/src/runtime/worker-app.d.ts +14 -0
- package/dist/src/runtime/worker-app.d.ts.map +1 -0
- package/dist/src/runtime/worker-app.js +58 -0
- package/dist/src/runtime/worker-app.js.map +1 -0
- package/dist/src/telemetry/runtime.d.ts +5 -0
- package/dist/src/telemetry/runtime.d.ts.map +1 -0
- package/dist/src/telemetry/runtime.js +94 -0
- package/dist/src/telemetry/runtime.js.map +1 -0
- package/dist/src/worker/activity-context.d.ts +30 -0
- package/dist/src/worker/activity-context.d.ts.map +1 -0
- package/dist/src/worker/activity-context.js +9 -0
- package/dist/src/worker/activity-context.js.map +1 -0
- package/dist/src/worker/build-id.d.ts +20 -0
- package/dist/src/worker/build-id.d.ts.map +1 -0
- package/dist/src/worker/build-id.js +98 -0
- package/dist/src/worker/build-id.js.map +1 -0
- package/dist/src/worker/concurrency.d.ts +31 -0
- package/dist/src/worker/concurrency.d.ts.map +1 -0
- package/dist/src/worker/concurrency.js +129 -0
- package/dist/src/worker/concurrency.js.map +1 -0
- package/dist/src/worker/defaults.d.ts +9 -0
- package/dist/src/worker/defaults.d.ts.map +1 -0
- package/dist/src/worker/defaults.js +53 -0
- package/dist/src/worker/defaults.js.map +1 -0
- package/dist/src/worker/index.d.ts +7 -0
- package/dist/src/worker/index.d.ts.map +1 -0
- package/dist/src/worker/index.js +4 -0
- package/dist/src/worker/index.js.map +1 -0
- package/dist/src/worker/layer.d.ts +19 -0
- package/dist/src/worker/layer.d.ts.map +1 -0
- package/dist/src/worker/layer.js +71 -0
- package/dist/src/worker/layer.js.map +1 -0
- package/dist/src/worker/runtime.d.ts +59 -0
- package/dist/src/worker/runtime.d.ts.map +1 -0
- package/dist/src/worker/runtime.js +1415 -0
- package/dist/src/worker/runtime.js.map +1 -0
- package/dist/src/worker/service.d.ts +19 -0
- package/dist/src/worker/service.d.ts.map +1 -0
- package/dist/src/worker/service.js +14 -0
- package/dist/src/worker/service.js.map +1 -0
- package/dist/src/worker/sticky-cache.d.ts +41 -0
- package/dist/src/worker/sticky-cache.d.ts.map +1 -0
- package/dist/src/worker/sticky-cache.js +127 -0
- package/dist/src/worker/sticky-cache.js.map +1 -0
- package/dist/src/worker.d.ts +30 -0
- package/dist/src/worker.d.ts.map +1 -0
- package/dist/src/worker.js +82 -0
- package/dist/src/worker.js.map +1 -0
- package/dist/src/workflow/commands.d.ts +84 -0
- package/dist/src/workflow/commands.d.ts.map +1 -0
- package/dist/src/workflow/commands.js +159 -0
- package/dist/src/workflow/commands.js.map +1 -0
- package/dist/src/workflow/context.d.ts +119 -0
- package/dist/src/workflow/context.d.ts.map +1 -0
- package/dist/src/workflow/context.js +197 -0
- package/dist/src/workflow/context.js.map +1 -0
- package/dist/src/workflow/definition.d.ts +15 -0
- package/dist/src/workflow/definition.d.ts.map +1 -0
- package/dist/src/workflow/definition.js +19 -0
- package/dist/src/workflow/definition.js.map +1 -0
- package/dist/src/workflow/determinism.d.ts +54 -0
- package/dist/src/workflow/determinism.d.ts.map +1 -0
- package/dist/src/workflow/determinism.js +147 -0
- package/dist/src/workflow/determinism.js.map +1 -0
- package/dist/src/workflow/errors.d.ts +37 -0
- package/dist/src/workflow/errors.d.ts.map +1 -0
- package/dist/src/workflow/errors.js +35 -0
- package/dist/src/workflow/errors.js.map +1 -0
- package/dist/src/workflow/executor.d.ts +35 -0
- package/dist/src/workflow/executor.d.ts.map +1 -0
- package/dist/src/workflow/executor.js +178 -0
- package/dist/src/workflow/executor.js.map +1 -0
- package/dist/src/workflow/index.d.ts +8 -0
- package/dist/src/workflow/index.d.ts.map +1 -0
- package/dist/src/workflow/index.js +8 -0
- package/dist/src/workflow/index.js.map +1 -0
- package/dist/src/workflow/registry.d.ts +9 -0
- package/dist/src/workflow/registry.d.ts.map +1 -0
- package/dist/src/workflow/registry.js +51 -0
- package/dist/src/workflow/registry.js.map +1 -0
- package/dist/src/workflow/replay.d.ts +87 -0
- package/dist/src/workflow/replay.d.ts.map +1 -0
- package/dist/src/workflow/replay.js +759 -0
- package/dist/src/workflow/replay.js.map +1 -0
- package/dist/src/workflow/runtime/bootstrap.d.ts +15 -0
- package/dist/src/workflow/runtime/bootstrap.d.ts.map +1 -0
- package/dist/src/workflow/runtime/bootstrap.js +124 -0
- package/dist/src/workflow/runtime/bootstrap.js.map +1 -0
- package/dist/src/workflow/runtime/engine.d.ts +21 -0
- package/dist/src/workflow/runtime/engine.d.ts.map +1 -0
- package/dist/src/workflow/runtime/engine.js +73 -0
- package/dist/src/workflow/runtime/engine.js.map +1 -0
- package/dist/src/workflow/runtime/environment.d.ts +29 -0
- package/dist/src/workflow/runtime/environment.d.ts.map +1 -0
- package/dist/src/workflow/runtime/environment.js +298 -0
- package/dist/src/workflow/runtime/environment.js.map +1 -0
- package/dist/src/workflow/runtime/index.d.ts +7 -0
- package/dist/src/workflow/runtime/index.d.ts.map +1 -0
- package/dist/src/workflow/runtime/index.js +4 -0
- package/dist/src/workflow/runtime/index.js.map +1 -0
- package/dist/src/workflow/runtime/info.d.ts +5 -0
- package/dist/src/workflow/runtime/info.d.ts.map +1 -0
- package/dist/src/workflow/runtime/info.js +22 -0
- package/dist/src/workflow/runtime/info.js.map +1 -0
- package/dist/src/workflow/runtime/replay.d.ts +26 -0
- package/dist/src/workflow/runtime/replay.d.ts.map +1 -0
- package/dist/src/workflow/runtime/replay.js +254 -0
- package/dist/src/workflow/runtime/replay.js.map +1 -0
- package/dist/src/workflows/index.d.ts +3 -0
- package/dist/src/workflows/index.d.ts.map +1 -0
- package/dist/src/workflows/index.js +15 -0
- package/dist/src/workflows/index.js.map +1 -0
- package/package.json +74 -0
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { ActivityType, Payload, Payloads, WorkflowExecution, WorkflowType } from "../../common/v1/message_pb.js";
|
|
3
|
+
import type { RetryState, TimeoutType } from "../../enums/v1/workflow_pb.js";
|
|
4
|
+
import type { NexusHandlerErrorRetryBehavior } from "../../enums/v1/nexus_pb.js";
|
|
5
|
+
import type { ApplicationErrorCategory } from "../../enums/v1/common_pb.js";
|
|
6
|
+
import type { Duration } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file temporal/api/failure/v1/message.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_temporal_api_failure_v1_message: GenFile;
|
|
12
|
+
/**
|
|
13
|
+
* @generated from message temporal.api.failure.v1.ApplicationFailureInfo
|
|
14
|
+
*/
|
|
15
|
+
export type ApplicationFailureInfo = Message<"temporal.api.failure.v1.ApplicationFailureInfo"> & {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string type = 1;
|
|
18
|
+
*/
|
|
19
|
+
type: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: bool non_retryable = 2;
|
|
22
|
+
*/
|
|
23
|
+
nonRetryable: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from field: temporal.api.common.v1.Payloads details = 3;
|
|
26
|
+
*/
|
|
27
|
+
details?: Payloads;
|
|
28
|
+
/**
|
|
29
|
+
* next_retry_delay can be used by the client to override the activity
|
|
30
|
+
* retry interval calculated by the retry policy. Retry attempts will
|
|
31
|
+
* still be subject to the maximum retries limit and total time limit
|
|
32
|
+
* defined by the policy.
|
|
33
|
+
*
|
|
34
|
+
* @generated from field: google.protobuf.Duration next_retry_delay = 4;
|
|
35
|
+
*/
|
|
36
|
+
nextRetryDelay?: Duration;
|
|
37
|
+
/**
|
|
38
|
+
* @generated from field: temporal.api.enums.v1.ApplicationErrorCategory category = 5;
|
|
39
|
+
*/
|
|
40
|
+
category: ApplicationErrorCategory;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message temporal.api.failure.v1.ApplicationFailureInfo.
|
|
44
|
+
* Use `create(ApplicationFailureInfoSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export declare const ApplicationFailureInfoSchema: GenMessage<ApplicationFailureInfo>;
|
|
47
|
+
/**
|
|
48
|
+
* @generated from message temporal.api.failure.v1.TimeoutFailureInfo
|
|
49
|
+
*/
|
|
50
|
+
export type TimeoutFailureInfo = Message<"temporal.api.failure.v1.TimeoutFailureInfo"> & {
|
|
51
|
+
/**
|
|
52
|
+
* @generated from field: temporal.api.enums.v1.TimeoutType timeout_type = 1;
|
|
53
|
+
*/
|
|
54
|
+
timeoutType: TimeoutType;
|
|
55
|
+
/**
|
|
56
|
+
* @generated from field: temporal.api.common.v1.Payloads last_heartbeat_details = 2;
|
|
57
|
+
*/
|
|
58
|
+
lastHeartbeatDetails?: Payloads;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Describes the message temporal.api.failure.v1.TimeoutFailureInfo.
|
|
62
|
+
* Use `create(TimeoutFailureInfoSchema)` to create a new message.
|
|
63
|
+
*/
|
|
64
|
+
export declare const TimeoutFailureInfoSchema: GenMessage<TimeoutFailureInfo>;
|
|
65
|
+
/**
|
|
66
|
+
* @generated from message temporal.api.failure.v1.CanceledFailureInfo
|
|
67
|
+
*/
|
|
68
|
+
export type CanceledFailureInfo = Message<"temporal.api.failure.v1.CanceledFailureInfo"> & {
|
|
69
|
+
/**
|
|
70
|
+
* @generated from field: temporal.api.common.v1.Payloads details = 1;
|
|
71
|
+
*/
|
|
72
|
+
details?: Payloads;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Describes the message temporal.api.failure.v1.CanceledFailureInfo.
|
|
76
|
+
* Use `create(CanceledFailureInfoSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export declare const CanceledFailureInfoSchema: GenMessage<CanceledFailureInfo>;
|
|
79
|
+
/**
|
|
80
|
+
* @generated from message temporal.api.failure.v1.TerminatedFailureInfo
|
|
81
|
+
*/
|
|
82
|
+
export type TerminatedFailureInfo = Message<"temporal.api.failure.v1.TerminatedFailureInfo"> & {};
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message temporal.api.failure.v1.TerminatedFailureInfo.
|
|
85
|
+
* Use `create(TerminatedFailureInfoSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export declare const TerminatedFailureInfoSchema: GenMessage<TerminatedFailureInfo>;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from message temporal.api.failure.v1.ServerFailureInfo
|
|
90
|
+
*/
|
|
91
|
+
export type ServerFailureInfo = Message<"temporal.api.failure.v1.ServerFailureInfo"> & {
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: bool non_retryable = 1;
|
|
94
|
+
*/
|
|
95
|
+
nonRetryable: boolean;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Describes the message temporal.api.failure.v1.ServerFailureInfo.
|
|
99
|
+
* Use `create(ServerFailureInfoSchema)` to create a new message.
|
|
100
|
+
*/
|
|
101
|
+
export declare const ServerFailureInfoSchema: GenMessage<ServerFailureInfo>;
|
|
102
|
+
/**
|
|
103
|
+
* @generated from message temporal.api.failure.v1.ResetWorkflowFailureInfo
|
|
104
|
+
*/
|
|
105
|
+
export type ResetWorkflowFailureInfo = Message<"temporal.api.failure.v1.ResetWorkflowFailureInfo"> & {
|
|
106
|
+
/**
|
|
107
|
+
* @generated from field: temporal.api.common.v1.Payloads last_heartbeat_details = 1;
|
|
108
|
+
*/
|
|
109
|
+
lastHeartbeatDetails?: Payloads;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Describes the message temporal.api.failure.v1.ResetWorkflowFailureInfo.
|
|
113
|
+
* Use `create(ResetWorkflowFailureInfoSchema)` to create a new message.
|
|
114
|
+
*/
|
|
115
|
+
export declare const ResetWorkflowFailureInfoSchema: GenMessage<ResetWorkflowFailureInfo>;
|
|
116
|
+
/**
|
|
117
|
+
* @generated from message temporal.api.failure.v1.ActivityFailureInfo
|
|
118
|
+
*/
|
|
119
|
+
export type ActivityFailureInfo = Message<"temporal.api.failure.v1.ActivityFailureInfo"> & {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: int64 scheduled_event_id = 1;
|
|
122
|
+
*/
|
|
123
|
+
scheduledEventId: bigint;
|
|
124
|
+
/**
|
|
125
|
+
* @generated from field: int64 started_event_id = 2;
|
|
126
|
+
*/
|
|
127
|
+
startedEventId: bigint;
|
|
128
|
+
/**
|
|
129
|
+
* @generated from field: string identity = 3;
|
|
130
|
+
*/
|
|
131
|
+
identity: string;
|
|
132
|
+
/**
|
|
133
|
+
* @generated from field: temporal.api.common.v1.ActivityType activity_type = 4;
|
|
134
|
+
*/
|
|
135
|
+
activityType?: ActivityType;
|
|
136
|
+
/**
|
|
137
|
+
* @generated from field: string activity_id = 5;
|
|
138
|
+
*/
|
|
139
|
+
activityId: string;
|
|
140
|
+
/**
|
|
141
|
+
* @generated from field: temporal.api.enums.v1.RetryState retry_state = 6;
|
|
142
|
+
*/
|
|
143
|
+
retryState: RetryState;
|
|
144
|
+
};
|
|
145
|
+
/**
|
|
146
|
+
* Describes the message temporal.api.failure.v1.ActivityFailureInfo.
|
|
147
|
+
* Use `create(ActivityFailureInfoSchema)` to create a new message.
|
|
148
|
+
*/
|
|
149
|
+
export declare const ActivityFailureInfoSchema: GenMessage<ActivityFailureInfo>;
|
|
150
|
+
/**
|
|
151
|
+
* @generated from message temporal.api.failure.v1.ChildWorkflowExecutionFailureInfo
|
|
152
|
+
*/
|
|
153
|
+
export type ChildWorkflowExecutionFailureInfo = Message<"temporal.api.failure.v1.ChildWorkflowExecutionFailureInfo"> & {
|
|
154
|
+
/**
|
|
155
|
+
* @generated from field: string namespace = 1;
|
|
156
|
+
*/
|
|
157
|
+
namespace: string;
|
|
158
|
+
/**
|
|
159
|
+
* @generated from field: temporal.api.common.v1.WorkflowExecution workflow_execution = 2;
|
|
160
|
+
*/
|
|
161
|
+
workflowExecution?: WorkflowExecution;
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: temporal.api.common.v1.WorkflowType workflow_type = 3;
|
|
164
|
+
*/
|
|
165
|
+
workflowType?: WorkflowType;
|
|
166
|
+
/**
|
|
167
|
+
* @generated from field: int64 initiated_event_id = 4;
|
|
168
|
+
*/
|
|
169
|
+
initiatedEventId: bigint;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from field: int64 started_event_id = 5;
|
|
172
|
+
*/
|
|
173
|
+
startedEventId: bigint;
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: temporal.api.enums.v1.RetryState retry_state = 6;
|
|
176
|
+
*/
|
|
177
|
+
retryState: RetryState;
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* Describes the message temporal.api.failure.v1.ChildWorkflowExecutionFailureInfo.
|
|
181
|
+
* Use `create(ChildWorkflowExecutionFailureInfoSchema)` to create a new message.
|
|
182
|
+
*/
|
|
183
|
+
export declare const ChildWorkflowExecutionFailureInfoSchema: GenMessage<ChildWorkflowExecutionFailureInfo>;
|
|
184
|
+
/**
|
|
185
|
+
* @generated from message temporal.api.failure.v1.NexusOperationFailureInfo
|
|
186
|
+
*/
|
|
187
|
+
export type NexusOperationFailureInfo = Message<"temporal.api.failure.v1.NexusOperationFailureInfo"> & {
|
|
188
|
+
/**
|
|
189
|
+
* The NexusOperationScheduled event ID.
|
|
190
|
+
*
|
|
191
|
+
* @generated from field: int64 scheduled_event_id = 1;
|
|
192
|
+
*/
|
|
193
|
+
scheduledEventId: bigint;
|
|
194
|
+
/**
|
|
195
|
+
* Endpoint name.
|
|
196
|
+
*
|
|
197
|
+
* @generated from field: string endpoint = 2;
|
|
198
|
+
*/
|
|
199
|
+
endpoint: string;
|
|
200
|
+
/**
|
|
201
|
+
* Service name.
|
|
202
|
+
*
|
|
203
|
+
* @generated from field: string service = 3;
|
|
204
|
+
*/
|
|
205
|
+
service: string;
|
|
206
|
+
/**
|
|
207
|
+
* Operation name.
|
|
208
|
+
*
|
|
209
|
+
* @generated from field: string operation = 4;
|
|
210
|
+
*/
|
|
211
|
+
operation: string;
|
|
212
|
+
/**
|
|
213
|
+
* Operation ID - may be empty if the operation completed synchronously.
|
|
214
|
+
*
|
|
215
|
+
* Deprecated. Renamed to operation_token.
|
|
216
|
+
*
|
|
217
|
+
* @generated from field: string operation_id = 5 [deprecated = true];
|
|
218
|
+
* @deprecated
|
|
219
|
+
*/
|
|
220
|
+
operationId: string;
|
|
221
|
+
/**
|
|
222
|
+
* Operation token - may be empty if the operation completed synchronously.
|
|
223
|
+
*
|
|
224
|
+
* @generated from field: string operation_token = 6;
|
|
225
|
+
*/
|
|
226
|
+
operationToken: string;
|
|
227
|
+
};
|
|
228
|
+
/**
|
|
229
|
+
* Describes the message temporal.api.failure.v1.NexusOperationFailureInfo.
|
|
230
|
+
* Use `create(NexusOperationFailureInfoSchema)` to create a new message.
|
|
231
|
+
*/
|
|
232
|
+
export declare const NexusOperationFailureInfoSchema: GenMessage<NexusOperationFailureInfo>;
|
|
233
|
+
/**
|
|
234
|
+
* @generated from message temporal.api.failure.v1.NexusHandlerFailureInfo
|
|
235
|
+
*/
|
|
236
|
+
export type NexusHandlerFailureInfo = Message<"temporal.api.failure.v1.NexusHandlerFailureInfo"> & {
|
|
237
|
+
/**
|
|
238
|
+
* The Nexus error type as defined in the spec:
|
|
239
|
+
* https://github.com/nexus-rpc/api/blob/main/SPEC.md#predefined-handler-errors.
|
|
240
|
+
*
|
|
241
|
+
* @generated from field: string type = 1;
|
|
242
|
+
*/
|
|
243
|
+
type: string;
|
|
244
|
+
/**
|
|
245
|
+
* Retry behavior, defaults to the retry behavior of the error type as defined in the spec.
|
|
246
|
+
*
|
|
247
|
+
* @generated from field: temporal.api.enums.v1.NexusHandlerErrorRetryBehavior retry_behavior = 2;
|
|
248
|
+
*/
|
|
249
|
+
retryBehavior: NexusHandlerErrorRetryBehavior;
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* Describes the message temporal.api.failure.v1.NexusHandlerFailureInfo.
|
|
253
|
+
* Use `create(NexusHandlerFailureInfoSchema)` to create a new message.
|
|
254
|
+
*/
|
|
255
|
+
export declare const NexusHandlerFailureInfoSchema: GenMessage<NexusHandlerFailureInfo>;
|
|
256
|
+
/**
|
|
257
|
+
* @generated from message temporal.api.failure.v1.Failure
|
|
258
|
+
*/
|
|
259
|
+
export type Failure = Message<"temporal.api.failure.v1.Failure"> & {
|
|
260
|
+
/**
|
|
261
|
+
* @generated from field: string message = 1;
|
|
262
|
+
*/
|
|
263
|
+
message: string;
|
|
264
|
+
/**
|
|
265
|
+
* The source this Failure originated in, e.g. TypeScriptSDK / JavaSDK
|
|
266
|
+
* In some SDKs this is used to rehydrate the stack trace into an exception object.
|
|
267
|
+
*
|
|
268
|
+
* @generated from field: string source = 2;
|
|
269
|
+
*/
|
|
270
|
+
source: string;
|
|
271
|
+
/**
|
|
272
|
+
* @generated from field: string stack_trace = 3;
|
|
273
|
+
*/
|
|
274
|
+
stackTrace: string;
|
|
275
|
+
/**
|
|
276
|
+
* Alternative way to supply `message` and `stack_trace` and possibly other attributes, used for encryption of
|
|
277
|
+
* errors originating in user code which might contain sensitive information.
|
|
278
|
+
* The `encoded_attributes` Payload could represent any serializable object, e.g. JSON object or a `Failure` proto
|
|
279
|
+
* message.
|
|
280
|
+
*
|
|
281
|
+
* SDK authors:
|
|
282
|
+
* - The SDK should provide a default `encodeFailureAttributes` and `decodeFailureAttributes` implementation that:
|
|
283
|
+
* - Uses a JSON object to represent `{ message, stack_trace }`.
|
|
284
|
+
* - Overwrites the original message with "Encoded failure" to indicate that more information could be extracted.
|
|
285
|
+
* - Overwrites the original stack_trace with an empty string.
|
|
286
|
+
* - The resulting JSON object is converted to Payload using the default PayloadConverter and should be processed
|
|
287
|
+
* by the user-provided PayloadCodec
|
|
288
|
+
*
|
|
289
|
+
* - If there's demand, we could allow overriding the default SDK implementation to encode other opaque Failure attributes.
|
|
290
|
+
* (-- api-linter: core::0203::optional=disabled --)
|
|
291
|
+
*
|
|
292
|
+
* @generated from field: temporal.api.common.v1.Payload encoded_attributes = 20;
|
|
293
|
+
*/
|
|
294
|
+
encodedAttributes?: Payload;
|
|
295
|
+
/**
|
|
296
|
+
* @generated from field: temporal.api.failure.v1.Failure cause = 4;
|
|
297
|
+
*/
|
|
298
|
+
cause?: Failure;
|
|
299
|
+
/**
|
|
300
|
+
* @generated from oneof temporal.api.failure.v1.Failure.failure_info
|
|
301
|
+
*/
|
|
302
|
+
failureInfo: {
|
|
303
|
+
/**
|
|
304
|
+
* @generated from field: temporal.api.failure.v1.ApplicationFailureInfo application_failure_info = 5;
|
|
305
|
+
*/
|
|
306
|
+
value: ApplicationFailureInfo;
|
|
307
|
+
case: "applicationFailureInfo";
|
|
308
|
+
} | {
|
|
309
|
+
/**
|
|
310
|
+
* @generated from field: temporal.api.failure.v1.TimeoutFailureInfo timeout_failure_info = 6;
|
|
311
|
+
*/
|
|
312
|
+
value: TimeoutFailureInfo;
|
|
313
|
+
case: "timeoutFailureInfo";
|
|
314
|
+
} | {
|
|
315
|
+
/**
|
|
316
|
+
* @generated from field: temporal.api.failure.v1.CanceledFailureInfo canceled_failure_info = 7;
|
|
317
|
+
*/
|
|
318
|
+
value: CanceledFailureInfo;
|
|
319
|
+
case: "canceledFailureInfo";
|
|
320
|
+
} | {
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: temporal.api.failure.v1.TerminatedFailureInfo terminated_failure_info = 8;
|
|
323
|
+
*/
|
|
324
|
+
value: TerminatedFailureInfo;
|
|
325
|
+
case: "terminatedFailureInfo";
|
|
326
|
+
} | {
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: temporal.api.failure.v1.ServerFailureInfo server_failure_info = 9;
|
|
329
|
+
*/
|
|
330
|
+
value: ServerFailureInfo;
|
|
331
|
+
case: "serverFailureInfo";
|
|
332
|
+
} | {
|
|
333
|
+
/**
|
|
334
|
+
* @generated from field: temporal.api.failure.v1.ResetWorkflowFailureInfo reset_workflow_failure_info = 10;
|
|
335
|
+
*/
|
|
336
|
+
value: ResetWorkflowFailureInfo;
|
|
337
|
+
case: "resetWorkflowFailureInfo";
|
|
338
|
+
} | {
|
|
339
|
+
/**
|
|
340
|
+
* @generated from field: temporal.api.failure.v1.ActivityFailureInfo activity_failure_info = 11;
|
|
341
|
+
*/
|
|
342
|
+
value: ActivityFailureInfo;
|
|
343
|
+
case: "activityFailureInfo";
|
|
344
|
+
} | {
|
|
345
|
+
/**
|
|
346
|
+
* @generated from field: temporal.api.failure.v1.ChildWorkflowExecutionFailureInfo child_workflow_execution_failure_info = 12;
|
|
347
|
+
*/
|
|
348
|
+
value: ChildWorkflowExecutionFailureInfo;
|
|
349
|
+
case: "childWorkflowExecutionFailureInfo";
|
|
350
|
+
} | {
|
|
351
|
+
/**
|
|
352
|
+
* @generated from field: temporal.api.failure.v1.NexusOperationFailureInfo nexus_operation_execution_failure_info = 13;
|
|
353
|
+
*/
|
|
354
|
+
value: NexusOperationFailureInfo;
|
|
355
|
+
case: "nexusOperationExecutionFailureInfo";
|
|
356
|
+
} | {
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: temporal.api.failure.v1.NexusHandlerFailureInfo nexus_handler_failure_info = 14;
|
|
359
|
+
*/
|
|
360
|
+
value: NexusHandlerFailureInfo;
|
|
361
|
+
case: "nexusHandlerFailureInfo";
|
|
362
|
+
} | {
|
|
363
|
+
case: undefined;
|
|
364
|
+
value?: undefined;
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
/**
|
|
368
|
+
* Describes the message temporal.api.failure.v1.Failure.
|
|
369
|
+
* Use `create(FailureSchema)` to create a new message.
|
|
370
|
+
*/
|
|
371
|
+
export declare const FailureSchema: GenMessage<Failure>;
|
|
372
|
+
/**
|
|
373
|
+
* @generated from message temporal.api.failure.v1.MultiOperationExecutionAborted
|
|
374
|
+
*/
|
|
375
|
+
export type MultiOperationExecutionAborted = Message<"temporal.api.failure.v1.MultiOperationExecutionAborted"> & {};
|
|
376
|
+
/**
|
|
377
|
+
* Describes the message temporal.api.failure.v1.MultiOperationExecutionAborted.
|
|
378
|
+
* Use `create(MultiOperationExecutionAbortedSchema)` to create a new message.
|
|
379
|
+
*/
|
|
380
|
+
export declare const MultiOperationExecutionAbortedSchema: GenMessage<MultiOperationExecutionAborted>;
|
|
381
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/failure/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/failure/v1/message.proto (package temporal.api.failure.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
6
|
+
import { file_temporal_api_enums_v1_workflow } from "../../enums/v1/workflow_pb.js";
|
|
7
|
+
import { file_temporal_api_enums_v1_nexus } from "../../enums/v1/nexus_pb.js";
|
|
8
|
+
import { file_temporal_api_enums_v1_common } from "../../enums/v1/common_pb.js";
|
|
9
|
+
import { file_google_protobuf_duration } from "@bufbuild/protobuf/wkt";
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file temporal/api/failure/v1/message.proto.
|
|
12
|
+
*/
|
|
13
|
+
export const file_temporal_api_failure_v1_message = /*@__PURE__*/ fileDesc("CiV0ZW1wb3JhbC9hcGkvZmFpbHVyZS92MS9tZXNzYWdlLnByb3RvEhd0ZW1wb3JhbC5hcGkuZmFpbHVyZS52MSLoAQoWQXBwbGljYXRpb25GYWlsdXJlSW5mbxIMCgR0eXBlGAEgASgJEhUKDW5vbl9yZXRyeWFibGUYAiABKAgSMQoHZGV0YWlscxgDIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMSMwoQbmV4dF9yZXRyeV9kZWxheRgEIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdGlvbhJBCghjYXRlZ29yeRgFIAEoDjIvLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5BcHBsaWNhdGlvbkVycm9yQ2F0ZWdvcnkikAEKElRpbWVvdXRGYWlsdXJlSW5mbxI4Cgx0aW1lb3V0X3R5cGUYASABKA4yIi50ZW1wb3JhbC5hcGkuZW51bXMudjEuVGltZW91dFR5cGUSQAoWbGFzdF9oZWFydGJlYXRfZGV0YWlscxgCIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMiSAoTQ2FuY2VsZWRGYWlsdXJlSW5mbxIxCgdkZXRhaWxzGAEgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcyIXChVUZXJtaW5hdGVkRmFpbHVyZUluZm8iKgoRU2VydmVyRmFpbHVyZUluZm8SFQoNbm9uX3JldHJ5YWJsZRgBIAEoCCJcChhSZXNldFdvcmtmbG93RmFpbHVyZUluZm8SQAoWbGFzdF9oZWFydGJlYXRfZGV0YWlscxgBIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMi5wEKE0FjdGl2aXR5RmFpbHVyZUluZm8SGgoSc2NoZWR1bGVkX2V2ZW50X2lkGAEgASgDEhgKEHN0YXJ0ZWRfZXZlbnRfaWQYAiABKAMSEAoIaWRlbnRpdHkYAyABKAkSOwoNYWN0aXZpdHlfdHlwZRgEIAEoCzIkLnRlbXBvcmFsLmFwaS5jb21tb24udjEuQWN0aXZpdHlUeXBlEhMKC2FjdGl2aXR5X2lkGAUgASgJEjYKC3JldHJ5X3N0YXRlGAYgASgOMiEudGVtcG9yYWwuYXBpLmVudW1zLnYxLlJldHJ5U3RhdGUiqAIKIUNoaWxkV29ya2Zsb3dFeGVjdXRpb25GYWlsdXJlSW5mbxIRCgluYW1lc3BhY2UYASABKAkSRQoSd29ya2Zsb3dfZXhlY3V0aW9uGAIgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhI7Cg13b3JrZmxvd190eXBlGAMgASgLMiQudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd1R5cGUSGgoSaW5pdGlhdGVkX2V2ZW50X2lkGAQgASgDEhgKEHN0YXJ0ZWRfZXZlbnRfaWQYBSABKAMSNgoLcmV0cnlfc3RhdGUYBiABKA4yIS50ZW1wb3JhbC5hcGkuZW51bXMudjEuUmV0cnlTdGF0ZSKgAQoZTmV4dXNPcGVyYXRpb25GYWlsdXJlSW5mbxIaChJzY2hlZHVsZWRfZXZlbnRfaWQYASABKAMSEAoIZW5kcG9pbnQYAiABKAkSDwoHc2VydmljZRgDIAEoCRIRCglvcGVyYXRpb24YBCABKAkSGAoMb3BlcmF0aW9uX2lkGAUgASgJQgIYARIXCg9vcGVyYXRpb25fdG9rZW4YBiABKAkidgoXTmV4dXNIYW5kbGVyRmFpbHVyZUluZm8SDAoEdHlwZRgBIAEoCRJNCg5yZXRyeV9iZWhhdmlvchgCIAEoDjI1LnRlbXBvcmFsLmFwaS5lbnVtcy52MS5OZXh1c0hhbmRsZXJFcnJvclJldHJ5QmVoYXZpb3IioAgKB0ZhaWx1cmUSDwoHbWVzc2FnZRgBIAEoCRIOCgZzb3VyY2UYAiABKAkSEwoLc3RhY2tfdHJhY2UYAyABKAkSOwoSZW5jb2RlZF9hdHRyaWJ1dGVzGBQgASgLMh8udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkEi8KBWNhdXNlGAQgASgLMiAudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuRmFpbHVyZRJTChhhcHBsaWNhdGlvbl9mYWlsdXJlX2luZm8YBSABKAsyLy50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5BcHBsaWNhdGlvbkZhaWx1cmVJbmZvSAASSwoUdGltZW91dF9mYWlsdXJlX2luZm8YBiABKAsyKy50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5UaW1lb3V0RmFpbHVyZUluZm9IABJNChVjYW5jZWxlZF9mYWlsdXJlX2luZm8YByABKAsyLC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5DYW5jZWxlZEZhaWx1cmVJbmZvSAASUQoXdGVybWluYXRlZF9mYWlsdXJlX2luZm8YCCABKAsyLi50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5UZXJtaW5hdGVkRmFpbHVyZUluZm9IABJJChNzZXJ2ZXJfZmFpbHVyZV9pbmZvGAkgASgLMioudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuU2VydmVyRmFpbHVyZUluZm9IABJYChtyZXNldF93b3JrZmxvd19mYWlsdXJlX2luZm8YCiABKAsyMS50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5SZXNldFdvcmtmbG93RmFpbHVyZUluZm9IABJNChVhY3Rpdml0eV9mYWlsdXJlX2luZm8YCyABKAsyLC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5BY3Rpdml0eUZhaWx1cmVJbmZvSAASawolY2hpbGRfd29ya2Zsb3dfZXhlY3V0aW9uX2ZhaWx1cmVfaW5mbxgMIAEoCzI6LnRlbXBvcmFsLmFwaS5mYWlsdXJlLnYxLkNoaWxkV29ya2Zsb3dFeGVjdXRpb25GYWlsdXJlSW5mb0gAEmQKJm5leHVzX29wZXJhdGlvbl9leGVjdXRpb25fZmFpbHVyZV9pbmZvGA0gASgLMjIudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuTmV4dXNPcGVyYXRpb25GYWlsdXJlSW5mb0gAElYKGm5leHVzX2hhbmRsZXJfZmFpbHVyZV9pbmZvGA4gASgLMjAudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuTmV4dXNIYW5kbGVyRmFpbHVyZUluZm9IAEIOCgxmYWlsdXJlX2luZm8iIAoeTXVsdGlPcGVyYXRpb25FeGVjdXRpb25BYm9ydGVkQo4BChppby50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MUIMTWVzc2FnZVByb3RvUAFaJWdvLnRlbXBvcmFsLmlvL2FwaS9mYWlsdXJlL3YxO2ZhaWx1cmWqAhlUZW1wb3JhbGlvLkFwaS5GYWlsdXJlLlYx6gIcVGVtcG9yYWxpbzo6QXBpOjpGYWlsdXJlOjpWMWIGcHJvdG8z", [file_temporal_api_common_v1_message, file_temporal_api_enums_v1_workflow, file_temporal_api_enums_v1_nexus, file_temporal_api_enums_v1_common, file_google_protobuf_duration]);
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message temporal.api.failure.v1.ApplicationFailureInfo.
|
|
16
|
+
* Use `create(ApplicationFailureInfoSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const ApplicationFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 0);
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message temporal.api.failure.v1.TimeoutFailureInfo.
|
|
21
|
+
* Use `create(TimeoutFailureInfoSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const TimeoutFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 1);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message temporal.api.failure.v1.CanceledFailureInfo.
|
|
26
|
+
* Use `create(CanceledFailureInfoSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const CanceledFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 2);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message temporal.api.failure.v1.TerminatedFailureInfo.
|
|
31
|
+
* Use `create(TerminatedFailureInfoSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const TerminatedFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 3);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message temporal.api.failure.v1.ServerFailureInfo.
|
|
36
|
+
* Use `create(ServerFailureInfoSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const ServerFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 4);
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message temporal.api.failure.v1.ResetWorkflowFailureInfo.
|
|
41
|
+
* Use `create(ResetWorkflowFailureInfoSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export const ResetWorkflowFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 5);
|
|
44
|
+
/**
|
|
45
|
+
* Describes the message temporal.api.failure.v1.ActivityFailureInfo.
|
|
46
|
+
* Use `create(ActivityFailureInfoSchema)` to create a new message.
|
|
47
|
+
*/
|
|
48
|
+
export const ActivityFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 6);
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message temporal.api.failure.v1.ChildWorkflowExecutionFailureInfo.
|
|
51
|
+
* Use `create(ChildWorkflowExecutionFailureInfoSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export const ChildWorkflowExecutionFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 7);
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message temporal.api.failure.v1.NexusOperationFailureInfo.
|
|
56
|
+
* Use `create(NexusOperationFailureInfoSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const NexusOperationFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 8);
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message temporal.api.failure.v1.NexusHandlerFailureInfo.
|
|
61
|
+
* Use `create(NexusHandlerFailureInfoSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export const NexusHandlerFailureInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 9);
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message temporal.api.failure.v1.Failure.
|
|
66
|
+
* Use `create(FailureSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const FailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 10);
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message temporal.api.failure.v1.MultiOperationExecutionAborted.
|
|
71
|
+
* Use `create(MultiOperationExecutionAbortedSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export const MultiOperationExecutionAbortedSchema = /*@__PURE__*/ messageDesc(file_temporal_api_failure_v1_message, 11);
|
|
74
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/failure/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,8GAA8G;AAC9G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,gCAAgC,EAAE,MAAM,4BAA4B,CAAC;AAE9E,OAAO,EAAE,iCAAiC,EAAE,MAAM,6BAA6B,CAAC;AAEhF,OAAO,EAAE,6BAA6B,EAAE,MAAM,wBAAwB,CAAC;AAGvE;;GAEG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAAY,aAAa,CACxE,QAAQ,CAAC,8kHAA8kH,EAAE,CAAC,mCAAmC,EAAE,mCAAmC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,6BAA6B,CAAC,CAAC,CAAC;AAqC3wH;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAiBvD;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAYvD;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAQvD;;;GAGG;AACH,MAAM,CAAC,MAAM,2BAA2B,GAAsC,aAAa,CACzF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAYvD;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAYvD;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAqCvD;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAqCvD;;;GAGG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAkD,aAAa,CACjH,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAoDvD;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAsBvD;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAoHvD;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAwB,aAAa,CAC7D,WAAW,CAAC,oCAAoC,EAAE,EAAE,CAAC,CAAC;AAQxD;;;GAGG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAA+C,aAAa,CAC3G,WAAW,CAAC,oCAAoC,EAAE,EAAE,CAAC,CAAC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { WorkflowExecutionStatus } from "../../enums/v1/workflow_pb.js";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file temporal/api/filter/v1/message.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_temporal_api_filter_v1_message: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message temporal.api.filter.v1.WorkflowExecutionFilter
|
|
11
|
+
*/
|
|
12
|
+
export type WorkflowExecutionFilter = Message<"temporal.api.filter.v1.WorkflowExecutionFilter"> & {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string workflow_id = 1;
|
|
15
|
+
*/
|
|
16
|
+
workflowId: string;
|
|
17
|
+
/**
|
|
18
|
+
* @generated from field: string run_id = 2;
|
|
19
|
+
*/
|
|
20
|
+
runId: string;
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message temporal.api.filter.v1.WorkflowExecutionFilter.
|
|
24
|
+
* Use `create(WorkflowExecutionFilterSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export declare const WorkflowExecutionFilterSchema: GenMessage<WorkflowExecutionFilter>;
|
|
27
|
+
/**
|
|
28
|
+
* @generated from message temporal.api.filter.v1.WorkflowTypeFilter
|
|
29
|
+
*/
|
|
30
|
+
export type WorkflowTypeFilter = Message<"temporal.api.filter.v1.WorkflowTypeFilter"> & {
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: string name = 1;
|
|
33
|
+
*/
|
|
34
|
+
name: string;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message temporal.api.filter.v1.WorkflowTypeFilter.
|
|
38
|
+
* Use `create(WorkflowTypeFilterSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export declare const WorkflowTypeFilterSchema: GenMessage<WorkflowTypeFilter>;
|
|
41
|
+
/**
|
|
42
|
+
* @generated from message temporal.api.filter.v1.StartTimeFilter
|
|
43
|
+
*/
|
|
44
|
+
export type StartTimeFilter = Message<"temporal.api.filter.v1.StartTimeFilter"> & {
|
|
45
|
+
/**
|
|
46
|
+
* @generated from field: google.protobuf.Timestamp earliest_time = 1;
|
|
47
|
+
*/
|
|
48
|
+
earliestTime?: Timestamp;
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: google.protobuf.Timestamp latest_time = 2;
|
|
51
|
+
*/
|
|
52
|
+
latestTime?: Timestamp;
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message temporal.api.filter.v1.StartTimeFilter.
|
|
56
|
+
* Use `create(StartTimeFilterSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export declare const StartTimeFilterSchema: GenMessage<StartTimeFilter>;
|
|
59
|
+
/**
|
|
60
|
+
* @generated from message temporal.api.filter.v1.StatusFilter
|
|
61
|
+
*/
|
|
62
|
+
export type StatusFilter = Message<"temporal.api.filter.v1.StatusFilter"> & {
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: temporal.api.enums.v1.WorkflowExecutionStatus status = 1;
|
|
65
|
+
*/
|
|
66
|
+
status: WorkflowExecutionStatus;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Describes the message temporal.api.filter.v1.StatusFilter.
|
|
70
|
+
* Use `create(StatusFilterSchema)` to create a new message.
|
|
71
|
+
*/
|
|
72
|
+
export declare const StatusFilterSchema: GenMessage<StatusFilter>;
|
|
73
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/filter/v1/message_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AAExD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAE7E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,OAC0sB,CAAC;AAE7vB;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,gDAAgD,CAAC,GAAG;IAChG;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CACzB,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,2CAA2C,CAAC,GAAG;IACtF;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CACf,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,wCAAwC,CAAC,GAAG;IAChF;;OAEG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IAEzB;;OAEG;IACH,UAAU,CAAC,EAAE,SAAS,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAAe,CACT,CAAC;AAEtD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IAC1E;;OAEG;IACH,MAAM,EAAE,uBAAuB,CAAC;CACjC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kBAAkB,EAAE,UAAU,CAAC,YAAY,CACH,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/filter/v1/message.proto (package temporal.api.filter.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
import { file_temporal_api_enums_v1_workflow } from "../../enums/v1/workflow_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file temporal/api/filter/v1/message.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_temporal_api_filter_v1_message = /*@__PURE__*/ fileDesc("CiR0ZW1wb3JhbC9hcGkvZmlsdGVyL3YxL21lc3NhZ2UucHJvdG8SFnRlbXBvcmFsLmFwaS5maWx0ZXIudjEiPgoXV29ya2Zsb3dFeGVjdXRpb25GaWx0ZXISEwoLd29ya2Zsb3dfaWQYASABKAkSDgoGcnVuX2lkGAIgASgJIiIKEldvcmtmbG93VHlwZUZpbHRlchIMCgRuYW1lGAEgASgJInUKD1N0YXJ0VGltZUZpbHRlchIxCg1lYXJsaWVzdF90aW1lGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIvCgtsYXRlc3RfdGltZRgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiTgoMU3RhdHVzRmlsdGVyEj4KBnN0YXR1cxgBIAEoDjIuLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5Xb3JrZmxvd0V4ZWN1dGlvblN0YXR1c0KJAQoZaW8udGVtcG9yYWwuYXBpLmZpbHRlci52MUIMTWVzc2FnZVByb3RvUAFaI2dvLnRlbXBvcmFsLmlvL2FwaS9maWx0ZXIvdjE7ZmlsdGVyqgIYVGVtcG9yYWxpby5BcGkuRmlsdGVyLlYx6gIbVGVtcG9yYWxpbzo6QXBpOjpGaWx0ZXI6OlYxYgZwcm90bzM", [file_google_protobuf_timestamp, file_temporal_api_enums_v1_workflow]);
|
|
11
|
+
/**
|
|
12
|
+
* Describes the message temporal.api.filter.v1.WorkflowExecutionFilter.
|
|
13
|
+
* Use `create(WorkflowExecutionFilterSchema)` to create a new message.
|
|
14
|
+
*/
|
|
15
|
+
export const WorkflowExecutionFilterSchema = /*@__PURE__*/ messageDesc(file_temporal_api_filter_v1_message, 0);
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message temporal.api.filter.v1.WorkflowTypeFilter.
|
|
18
|
+
* Use `create(WorkflowTypeFilterSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const WorkflowTypeFilterSchema = /*@__PURE__*/ messageDesc(file_temporal_api_filter_v1_message, 1);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message temporal.api.filter.v1.StartTimeFilter.
|
|
23
|
+
* Use `create(StartTimeFilterSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const StartTimeFilterSchema = /*@__PURE__*/ messageDesc(file_temporal_api_filter_v1_message, 2);
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message temporal.api.filter.v1.StatusFilter.
|
|
28
|
+
* Use `create(StatusFilterSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const StatusFilterSchema = /*@__PURE__*/ messageDesc(file_temporal_api_filter_v1_message, 3);
|
|
31
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/filter/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,4GAA4G;AAC5G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAExE,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAGpF;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAY,aAAa,CACvE,QAAQ,CAAC,yqBAAyqB,EAAE,CAAC,8BAA8B,EAAE,mCAAmC,CAAC,CAAC,CAAC;AAiB7vB;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAwC,aAAa,CAC7F,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAYtD;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAiBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAgC,aAAa,CAC7E,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAYtD;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC"}
|