@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,331 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Any } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { WorkflowExecution } from "../../common/v1/message_pb.js";
|
|
4
|
+
import type { ResourceExhaustedCause, ResourceExhaustedScope } from "../../enums/v1/failed_cause_pb.js";
|
|
5
|
+
import type { NamespaceState } from "../../enums/v1/namespace_pb.js";
|
|
6
|
+
import type { Failure } from "../../failure/v1/message_pb.js";
|
|
7
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file temporal/api/errordetails/v1/message.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_temporal_api_errordetails_v1_message: GenFile;
|
|
12
|
+
/**
|
|
13
|
+
* @generated from message temporal.api.errordetails.v1.NotFoundFailure
|
|
14
|
+
*/
|
|
15
|
+
export type NotFoundFailure = Message<"temporal.api.errordetails.v1.NotFoundFailure"> & {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from field: string current_cluster = 1;
|
|
18
|
+
*/
|
|
19
|
+
currentCluster: string;
|
|
20
|
+
/**
|
|
21
|
+
* @generated from field: string active_cluster = 2;
|
|
22
|
+
*/
|
|
23
|
+
activeCluster: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message temporal.api.errordetails.v1.NotFoundFailure.
|
|
27
|
+
* Use `create(NotFoundFailureSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
export declare const NotFoundFailureSchema: GenMessage<NotFoundFailure>;
|
|
30
|
+
/**
|
|
31
|
+
* @generated from message temporal.api.errordetails.v1.WorkflowExecutionAlreadyStartedFailure
|
|
32
|
+
*/
|
|
33
|
+
export type WorkflowExecutionAlreadyStartedFailure = Message<"temporal.api.errordetails.v1.WorkflowExecutionAlreadyStartedFailure"> & {
|
|
34
|
+
/**
|
|
35
|
+
* @generated from field: string start_request_id = 1;
|
|
36
|
+
*/
|
|
37
|
+
startRequestId: string;
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: string run_id = 2;
|
|
40
|
+
*/
|
|
41
|
+
runId: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message temporal.api.errordetails.v1.WorkflowExecutionAlreadyStartedFailure.
|
|
45
|
+
* Use `create(WorkflowExecutionAlreadyStartedFailureSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export declare const WorkflowExecutionAlreadyStartedFailureSchema: GenMessage<WorkflowExecutionAlreadyStartedFailure>;
|
|
48
|
+
/**
|
|
49
|
+
* @generated from message temporal.api.errordetails.v1.NamespaceNotActiveFailure
|
|
50
|
+
*/
|
|
51
|
+
export type NamespaceNotActiveFailure = Message<"temporal.api.errordetails.v1.NamespaceNotActiveFailure"> & {
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: string namespace = 1;
|
|
54
|
+
*/
|
|
55
|
+
namespace: string;
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: string current_cluster = 2;
|
|
58
|
+
*/
|
|
59
|
+
currentCluster: string;
|
|
60
|
+
/**
|
|
61
|
+
* @generated from field: string active_cluster = 3;
|
|
62
|
+
*/
|
|
63
|
+
activeCluster: string;
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceNotActiveFailure.
|
|
67
|
+
* Use `create(NamespaceNotActiveFailureSchema)` to create a new message.
|
|
68
|
+
*/
|
|
69
|
+
export declare const NamespaceNotActiveFailureSchema: GenMessage<NamespaceNotActiveFailure>;
|
|
70
|
+
/**
|
|
71
|
+
* NamespaceUnavailableFailure is returned by the service when a request addresses a namespace that is unavailable. For
|
|
72
|
+
* example, when a namespace is in the process of failing over between clusters.
|
|
73
|
+
* This is a transient error that should be automatically retried by clients.
|
|
74
|
+
*
|
|
75
|
+
* @generated from message temporal.api.errordetails.v1.NamespaceUnavailableFailure
|
|
76
|
+
*/
|
|
77
|
+
export type NamespaceUnavailableFailure = Message<"temporal.api.errordetails.v1.NamespaceUnavailableFailure"> & {
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: string namespace = 1;
|
|
80
|
+
*/
|
|
81
|
+
namespace: string;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceUnavailableFailure.
|
|
85
|
+
* Use `create(NamespaceUnavailableFailureSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export declare const NamespaceUnavailableFailureSchema: GenMessage<NamespaceUnavailableFailure>;
|
|
88
|
+
/**
|
|
89
|
+
* @generated from message temporal.api.errordetails.v1.NamespaceInvalidStateFailure
|
|
90
|
+
*/
|
|
91
|
+
export type NamespaceInvalidStateFailure = Message<"temporal.api.errordetails.v1.NamespaceInvalidStateFailure"> & {
|
|
92
|
+
/**
|
|
93
|
+
* @generated from field: string namespace = 1;
|
|
94
|
+
*/
|
|
95
|
+
namespace: string;
|
|
96
|
+
/**
|
|
97
|
+
* Current state of the requested namespace.
|
|
98
|
+
*
|
|
99
|
+
* @generated from field: temporal.api.enums.v1.NamespaceState state = 2;
|
|
100
|
+
*/
|
|
101
|
+
state: NamespaceState;
|
|
102
|
+
/**
|
|
103
|
+
* Allowed namespace states for requested operation.
|
|
104
|
+
* For example NAMESPACE_STATE_DELETED is forbidden for most operations but allowed for DescribeNamespace.
|
|
105
|
+
*
|
|
106
|
+
* @generated from field: repeated temporal.api.enums.v1.NamespaceState allowed_states = 3;
|
|
107
|
+
*/
|
|
108
|
+
allowedStates: NamespaceState[];
|
|
109
|
+
};
|
|
110
|
+
/**
|
|
111
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceInvalidStateFailure.
|
|
112
|
+
* Use `create(NamespaceInvalidStateFailureSchema)` to create a new message.
|
|
113
|
+
*/
|
|
114
|
+
export declare const NamespaceInvalidStateFailureSchema: GenMessage<NamespaceInvalidStateFailure>;
|
|
115
|
+
/**
|
|
116
|
+
* @generated from message temporal.api.errordetails.v1.NamespaceNotFoundFailure
|
|
117
|
+
*/
|
|
118
|
+
export type NamespaceNotFoundFailure = Message<"temporal.api.errordetails.v1.NamespaceNotFoundFailure"> & {
|
|
119
|
+
/**
|
|
120
|
+
* @generated from field: string namespace = 1;
|
|
121
|
+
*/
|
|
122
|
+
namespace: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceNotFoundFailure.
|
|
126
|
+
* Use `create(NamespaceNotFoundFailureSchema)` to create a new message.
|
|
127
|
+
*/
|
|
128
|
+
export declare const NamespaceNotFoundFailureSchema: GenMessage<NamespaceNotFoundFailure>;
|
|
129
|
+
/**
|
|
130
|
+
* @generated from message temporal.api.errordetails.v1.NamespaceAlreadyExistsFailure
|
|
131
|
+
*/
|
|
132
|
+
export type NamespaceAlreadyExistsFailure = Message<"temporal.api.errordetails.v1.NamespaceAlreadyExistsFailure"> & {};
|
|
133
|
+
/**
|
|
134
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceAlreadyExistsFailure.
|
|
135
|
+
* Use `create(NamespaceAlreadyExistsFailureSchema)` to create a new message.
|
|
136
|
+
*/
|
|
137
|
+
export declare const NamespaceAlreadyExistsFailureSchema: GenMessage<NamespaceAlreadyExistsFailure>;
|
|
138
|
+
/**
|
|
139
|
+
* @generated from message temporal.api.errordetails.v1.ClientVersionNotSupportedFailure
|
|
140
|
+
*/
|
|
141
|
+
export type ClientVersionNotSupportedFailure = Message<"temporal.api.errordetails.v1.ClientVersionNotSupportedFailure"> & {
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: string client_version = 1;
|
|
144
|
+
*/
|
|
145
|
+
clientVersion: string;
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: string client_name = 2;
|
|
148
|
+
*/
|
|
149
|
+
clientName: string;
|
|
150
|
+
/**
|
|
151
|
+
* @generated from field: string supported_versions = 3;
|
|
152
|
+
*/
|
|
153
|
+
supportedVersions: string;
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* Describes the message temporal.api.errordetails.v1.ClientVersionNotSupportedFailure.
|
|
157
|
+
* Use `create(ClientVersionNotSupportedFailureSchema)` to create a new message.
|
|
158
|
+
*/
|
|
159
|
+
export declare const ClientVersionNotSupportedFailureSchema: GenMessage<ClientVersionNotSupportedFailure>;
|
|
160
|
+
/**
|
|
161
|
+
* @generated from message temporal.api.errordetails.v1.ServerVersionNotSupportedFailure
|
|
162
|
+
*/
|
|
163
|
+
export type ServerVersionNotSupportedFailure = Message<"temporal.api.errordetails.v1.ServerVersionNotSupportedFailure"> & {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: string server_version = 1;
|
|
166
|
+
*/
|
|
167
|
+
serverVersion: string;
|
|
168
|
+
/**
|
|
169
|
+
* @generated from field: string client_supported_server_versions = 2;
|
|
170
|
+
*/
|
|
171
|
+
clientSupportedServerVersions: string;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* Describes the message temporal.api.errordetails.v1.ServerVersionNotSupportedFailure.
|
|
175
|
+
* Use `create(ServerVersionNotSupportedFailureSchema)` to create a new message.
|
|
176
|
+
*/
|
|
177
|
+
export declare const ServerVersionNotSupportedFailureSchema: GenMessage<ServerVersionNotSupportedFailure>;
|
|
178
|
+
/**
|
|
179
|
+
* @generated from message temporal.api.errordetails.v1.CancellationAlreadyRequestedFailure
|
|
180
|
+
*/
|
|
181
|
+
export type CancellationAlreadyRequestedFailure = Message<"temporal.api.errordetails.v1.CancellationAlreadyRequestedFailure"> & {};
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message temporal.api.errordetails.v1.CancellationAlreadyRequestedFailure.
|
|
184
|
+
* Use `create(CancellationAlreadyRequestedFailureSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export declare const CancellationAlreadyRequestedFailureSchema: GenMessage<CancellationAlreadyRequestedFailure>;
|
|
187
|
+
/**
|
|
188
|
+
* @generated from message temporal.api.errordetails.v1.QueryFailedFailure
|
|
189
|
+
*/
|
|
190
|
+
export type QueryFailedFailure = Message<"temporal.api.errordetails.v1.QueryFailedFailure"> & {
|
|
191
|
+
/**
|
|
192
|
+
* The full reason for this query failure. May not be available if the response is generated by an old
|
|
193
|
+
* SDK. This field can be encoded by the SDK's failure converter to support E2E encryption of messages and stack
|
|
194
|
+
* traces.
|
|
195
|
+
*
|
|
196
|
+
* @generated from field: temporal.api.failure.v1.Failure failure = 1;
|
|
197
|
+
*/
|
|
198
|
+
failure?: Failure;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* Describes the message temporal.api.errordetails.v1.QueryFailedFailure.
|
|
202
|
+
* Use `create(QueryFailedFailureSchema)` to create a new message.
|
|
203
|
+
*/
|
|
204
|
+
export declare const QueryFailedFailureSchema: GenMessage<QueryFailedFailure>;
|
|
205
|
+
/**
|
|
206
|
+
* @generated from message temporal.api.errordetails.v1.PermissionDeniedFailure
|
|
207
|
+
*/
|
|
208
|
+
export type PermissionDeniedFailure = Message<"temporal.api.errordetails.v1.PermissionDeniedFailure"> & {
|
|
209
|
+
/**
|
|
210
|
+
* @generated from field: string reason = 1;
|
|
211
|
+
*/
|
|
212
|
+
reason: string;
|
|
213
|
+
};
|
|
214
|
+
/**
|
|
215
|
+
* Describes the message temporal.api.errordetails.v1.PermissionDeniedFailure.
|
|
216
|
+
* Use `create(PermissionDeniedFailureSchema)` to create a new message.
|
|
217
|
+
*/
|
|
218
|
+
export declare const PermissionDeniedFailureSchema: GenMessage<PermissionDeniedFailure>;
|
|
219
|
+
/**
|
|
220
|
+
* @generated from message temporal.api.errordetails.v1.ResourceExhaustedFailure
|
|
221
|
+
*/
|
|
222
|
+
export type ResourceExhaustedFailure = Message<"temporal.api.errordetails.v1.ResourceExhaustedFailure"> & {
|
|
223
|
+
/**
|
|
224
|
+
* @generated from field: temporal.api.enums.v1.ResourceExhaustedCause cause = 1;
|
|
225
|
+
*/
|
|
226
|
+
cause: ResourceExhaustedCause;
|
|
227
|
+
/**
|
|
228
|
+
* @generated from field: temporal.api.enums.v1.ResourceExhaustedScope scope = 2;
|
|
229
|
+
*/
|
|
230
|
+
scope: ResourceExhaustedScope;
|
|
231
|
+
};
|
|
232
|
+
/**
|
|
233
|
+
* Describes the message temporal.api.errordetails.v1.ResourceExhaustedFailure.
|
|
234
|
+
* Use `create(ResourceExhaustedFailureSchema)` to create a new message.
|
|
235
|
+
*/
|
|
236
|
+
export declare const ResourceExhaustedFailureSchema: GenMessage<ResourceExhaustedFailure>;
|
|
237
|
+
/**
|
|
238
|
+
* @generated from message temporal.api.errordetails.v1.SystemWorkflowFailure
|
|
239
|
+
*/
|
|
240
|
+
export type SystemWorkflowFailure = Message<"temporal.api.errordetails.v1.SystemWorkflowFailure"> & {
|
|
241
|
+
/**
|
|
242
|
+
* WorkflowId and RunId of the Temporal system workflow performing the underlying operation.
|
|
243
|
+
* Looking up the info of the system workflow run may help identify the issue causing the failure.
|
|
244
|
+
*
|
|
245
|
+
* @generated from field: temporal.api.common.v1.WorkflowExecution workflow_execution = 1;
|
|
246
|
+
*/
|
|
247
|
+
workflowExecution?: WorkflowExecution;
|
|
248
|
+
/**
|
|
249
|
+
* Serialized error returned by the system workflow performing the underlying operation.
|
|
250
|
+
*
|
|
251
|
+
* @generated from field: string workflow_error = 2;
|
|
252
|
+
*/
|
|
253
|
+
workflowError: string;
|
|
254
|
+
};
|
|
255
|
+
/**
|
|
256
|
+
* Describes the message temporal.api.errordetails.v1.SystemWorkflowFailure.
|
|
257
|
+
* Use `create(SystemWorkflowFailureSchema)` to create a new message.
|
|
258
|
+
*/
|
|
259
|
+
export declare const SystemWorkflowFailureSchema: GenMessage<SystemWorkflowFailure>;
|
|
260
|
+
/**
|
|
261
|
+
* @generated from message temporal.api.errordetails.v1.WorkflowNotReadyFailure
|
|
262
|
+
*/
|
|
263
|
+
export type WorkflowNotReadyFailure = Message<"temporal.api.errordetails.v1.WorkflowNotReadyFailure"> & {};
|
|
264
|
+
/**
|
|
265
|
+
* Describes the message temporal.api.errordetails.v1.WorkflowNotReadyFailure.
|
|
266
|
+
* Use `create(WorkflowNotReadyFailureSchema)` to create a new message.
|
|
267
|
+
*/
|
|
268
|
+
export declare const WorkflowNotReadyFailureSchema: GenMessage<WorkflowNotReadyFailure>;
|
|
269
|
+
/**
|
|
270
|
+
* @generated from message temporal.api.errordetails.v1.NewerBuildExistsFailure
|
|
271
|
+
*/
|
|
272
|
+
export type NewerBuildExistsFailure = Message<"temporal.api.errordetails.v1.NewerBuildExistsFailure"> & {
|
|
273
|
+
/**
|
|
274
|
+
* The current default compatible build ID which will receive tasks
|
|
275
|
+
*
|
|
276
|
+
* @generated from field: string default_build_id = 1;
|
|
277
|
+
*/
|
|
278
|
+
defaultBuildId: string;
|
|
279
|
+
};
|
|
280
|
+
/**
|
|
281
|
+
* Describes the message temporal.api.errordetails.v1.NewerBuildExistsFailure.
|
|
282
|
+
* Use `create(NewerBuildExistsFailureSchema)` to create a new message.
|
|
283
|
+
*/
|
|
284
|
+
export declare const NewerBuildExistsFailureSchema: GenMessage<NewerBuildExistsFailure>;
|
|
285
|
+
/**
|
|
286
|
+
* @generated from message temporal.api.errordetails.v1.MultiOperationExecutionFailure
|
|
287
|
+
*/
|
|
288
|
+
export type MultiOperationExecutionFailure = Message<"temporal.api.errordetails.v1.MultiOperationExecutionFailure"> & {
|
|
289
|
+
/**
|
|
290
|
+
* One status for each requested operation from the failed MultiOperation. The failed
|
|
291
|
+
* operation(s) have the same error details as if it was executed separately. All other operations have the
|
|
292
|
+
* status code `Aborted` and `MultiOperationExecutionAborted` is added to the details field.
|
|
293
|
+
*
|
|
294
|
+
* @generated from field: repeated temporal.api.errordetails.v1.MultiOperationExecutionFailure.OperationStatus statuses = 1;
|
|
295
|
+
*/
|
|
296
|
+
statuses: MultiOperationExecutionFailure_OperationStatus[];
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* Describes the message temporal.api.errordetails.v1.MultiOperationExecutionFailure.
|
|
300
|
+
* Use `create(MultiOperationExecutionFailureSchema)` to create a new message.
|
|
301
|
+
*/
|
|
302
|
+
export declare const MultiOperationExecutionFailureSchema: GenMessage<MultiOperationExecutionFailure>;
|
|
303
|
+
/**
|
|
304
|
+
* NOTE: `OperationStatus` is modelled after
|
|
305
|
+
* [`google.rpc.Status`](https://github.com/googleapis/googleapis/blob/master/google/rpc/status.proto).
|
|
306
|
+
*
|
|
307
|
+
* (-- api-linter: core::0146::any=disabled
|
|
308
|
+
* aip.dev/not-precedent: details are meant to hold arbitrary payloads. --)
|
|
309
|
+
*
|
|
310
|
+
* @generated from message temporal.api.errordetails.v1.MultiOperationExecutionFailure.OperationStatus
|
|
311
|
+
*/
|
|
312
|
+
export type MultiOperationExecutionFailure_OperationStatus = Message<"temporal.api.errordetails.v1.MultiOperationExecutionFailure.OperationStatus"> & {
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: int32 code = 1;
|
|
315
|
+
*/
|
|
316
|
+
code: number;
|
|
317
|
+
/**
|
|
318
|
+
* @generated from field: string message = 2;
|
|
319
|
+
*/
|
|
320
|
+
message: string;
|
|
321
|
+
/**
|
|
322
|
+
* @generated from field: repeated google.protobuf.Any details = 3;
|
|
323
|
+
*/
|
|
324
|
+
details: Any[];
|
|
325
|
+
};
|
|
326
|
+
/**
|
|
327
|
+
* Describes the message temporal.api.errordetails.v1.MultiOperationExecutionFailure.OperationStatus.
|
|
328
|
+
* Use `create(MultiOperationExecutionFailure_OperationStatusSchema)` to create a new message.
|
|
329
|
+
*/
|
|
330
|
+
export declare const MultiOperationExecutionFailure_OperationStatusSchema: GenMessage<MultiOperationExecutionFailure_OperationStatus>;
|
|
331
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/errordetails/v1/message_pb.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAC;AAElD,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,+BAA+B,CAAC;AAEvE,OAAO,KAAK,EAAE,sBAAsB,EAAE,sBAAsB,EAAE,MAAM,mCAAmC,CAAC;AAExG,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gCAAgC,CAAC;AAErE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gCAAgC,CAAC;AAE9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,OAC25E,CAAC;AAEp9E;;GAEG;AACH,MAAM,MAAM,eAAe,GAAG,OAAO,CAAC,8CAA8C,CAAC,GAAG;IACtF;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAAe,CACH,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,sCAAsC,GAAG,OAAO,CAAC,qEAAqE,CAAC,GAAG;IACpI;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,4CAA4C,EAAE,UAAU,CAAC,sCAAsC,CACjD,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,OAAO,CAAC,wDAAwD,CAAC,GAAG;IAC1G;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,+BAA+B,EAAE,UAAU,CAAC,yBAAyB,CACvB,CAAC;AAE5D;;;;;;GAMG;AACH,MAAM,MAAM,2BAA2B,GAAG,OAAO,CAAC,0DAA0D,CAAC,GAAG;IAC9G;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iCAAiC,EAAE,UAAU,CAAC,2BAA2B,CAC3B,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG,OAAO,CAAC,2DAA2D,CAAC,GAAG;IAChH;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,KAAK,EAAE,cAAc,CAAC;IAEtB;;;;;OAKG;IACH,aAAa,EAAE,cAAc,EAAE,CAAC;CACjC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,kCAAkC,EAAE,UAAU,CAAC,4BAA4B,CAC7B,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,uDAAuD,CAAC,GAAG;IACxG;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,wBAAwB,CACrB,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,6BAA6B,GAAG,OAAO,CAAC,4DAA4D,CAAC,GAAG,EACnH,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mCAAmC,EAAE,UAAU,CAAC,6BAA6B,CAC/B,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,gCAAgC,GAAG,OAAO,CAAC,+DAA+D,CAAC,GAAG;IACxH;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;CAC3B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sCAAsC,EAAE,UAAU,CAAC,gCAAgC,CACrC,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,gCAAgC,GAAG,OAAO,CAAC,+DAA+D,CAAC,GAAG;IACxH;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,6BAA6B,EAAE,MAAM,CAAC;CACvC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,sCAAsC,EAAE,UAAU,CAAC,gCAAgC,CACrC,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,mCAAmC,GAAG,OAAO,CAAC,kEAAkE,CAAC,GAAG,EAC/H,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yCAAyC,EAAE,UAAU,CAAC,mCAAmC,CAC3C,CAAC;AAE5D;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,iDAAiD,CAAC,GAAG;IAC5F;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CACR,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,sDAAsD,CAAC,GAAG;IACtG;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CAClB,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,uDAAuD,CAAC,GAAG;IACxG;;OAEG;IACH,KAAK,EAAE,sBAAsB,CAAC;IAE9B;;OAEG;IACH,KAAK,EAAE,sBAAsB,CAAC;CAC/B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,wBAAwB,CACpB,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,qBAAqB,GAAG,OAAO,CAAC,oDAAoD,CAAC,GAAG;IAClG;;;;;OAKG;IACH,iBAAiB,CAAC,EAAE,iBAAiB,CAAC;IAEtC;;;;OAIG;IACH,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,qBAAqB,CACd,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,sDAAsD,CAAC,GAAG,EACvG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CAClB,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,OAAO,CAAC,sDAAsD,CAAC,GAAG;IACtG;;;;OAIG;IACH,cAAc,EAAE,MAAM,CAAC;CACxB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,uBAAuB,CAClB,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC,6DAA6D,CAAC,GAAG;IACpH;;;;;;OAMG;IACH,QAAQ,EAAE,8CAA8C,EAAE,CAAC;CAC5D,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oCAAoC,EAAE,UAAU,CAAC,8BAA8B,CAChC,CAAC;AAE7D;;;;;;;;GAQG;AACH,MAAM,MAAM,8CAA8C,GAAG,OAAO,CAAC,6EAA6E,CAAC,GAAG;IACpJ;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IAEb;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,OAAO,EAAE,GAAG,EAAE,CAAC;CAChB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oDAAoD,EAAE,UAAU,CAAC,8CAA8C,CAC7D,CAAC"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/errordetails/v1/message.proto (package temporal.api.errordetails.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_google_protobuf_any } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
7
|
+
import { file_temporal_api_enums_v1_failed_cause } from "../../enums/v1/failed_cause_pb.js";
|
|
8
|
+
import { file_temporal_api_enums_v1_namespace } from "../../enums/v1/namespace_pb.js";
|
|
9
|
+
import { file_temporal_api_failure_v1_message } from "../../failure/v1/message_pb.js";
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file temporal/api/errordetails/v1/message.proto.
|
|
12
|
+
*/
|
|
13
|
+
export const file_temporal_api_errordetails_v1_message = /*@__PURE__*/ fileDesc("Cip0ZW1wb3JhbC9hcGkvZXJyb3JkZXRhaWxzL3YxL21lc3NhZ2UucHJvdG8SHHRlbXBvcmFsLmFwaS5lcnJvcmRldGFpbHMudjEiQgoPTm90Rm91bmRGYWlsdXJlEhcKD2N1cnJlbnRfY2x1c3RlchgBIAEoCRIWCg5hY3RpdmVfY2x1c3RlchgCIAEoCSJSCiZXb3JrZmxvd0V4ZWN1dGlvbkFscmVhZHlTdGFydGVkRmFpbHVyZRIYChBzdGFydF9yZXF1ZXN0X2lkGAEgASgJEg4KBnJ1bl9pZBgCIAEoCSJfChlOYW1lc3BhY2VOb3RBY3RpdmVGYWlsdXJlEhEKCW5hbWVzcGFjZRgBIAEoCRIXCg9jdXJyZW50X2NsdXN0ZXIYAiABKAkSFgoOYWN0aXZlX2NsdXN0ZXIYAyABKAkiMAobTmFtZXNwYWNlVW5hdmFpbGFibGVGYWlsdXJlEhEKCW5hbWVzcGFjZRgBIAEoCSKmAQocTmFtZXNwYWNlSW52YWxpZFN0YXRlRmFpbHVyZRIRCgluYW1lc3BhY2UYASABKAkSNAoFc3RhdGUYAiABKA4yJS50ZW1wb3JhbC5hcGkuZW51bXMudjEuTmFtZXNwYWNlU3RhdGUSPQoOYWxsb3dlZF9zdGF0ZXMYAyADKA4yJS50ZW1wb3JhbC5hcGkuZW51bXMudjEuTmFtZXNwYWNlU3RhdGUiLQoYTmFtZXNwYWNlTm90Rm91bmRGYWlsdXJlEhEKCW5hbWVzcGFjZRgBIAEoCSIfCh1OYW1lc3BhY2VBbHJlYWR5RXhpc3RzRmFpbHVyZSJrCiBDbGllbnRWZXJzaW9uTm90U3VwcG9ydGVkRmFpbHVyZRIWCg5jbGllbnRfdmVyc2lvbhgBIAEoCRITCgtjbGllbnRfbmFtZRgCIAEoCRIaChJzdXBwb3J0ZWRfdmVyc2lvbnMYAyABKAkiZAogU2VydmVyVmVyc2lvbk5vdFN1cHBvcnRlZEZhaWx1cmUSFgoOc2VydmVyX3ZlcnNpb24YASABKAkSKAogY2xpZW50X3N1cHBvcnRlZF9zZXJ2ZXJfdmVyc2lvbnMYAiABKAkiJQojQ2FuY2VsbGF0aW9uQWxyZWFkeVJlcXVlc3RlZEZhaWx1cmUiRwoSUXVlcnlGYWlsZWRGYWlsdXJlEjEKB2ZhaWx1cmUYASABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlIikKF1Blcm1pc3Npb25EZW5pZWRGYWlsdXJlEg4KBnJlYXNvbhgBIAEoCSKWAQoYUmVzb3VyY2VFeGhhdXN0ZWRGYWlsdXJlEjwKBWNhdXNlGAEgASgOMi0udGVtcG9yYWwuYXBpLmVudW1zLnYxLlJlc291cmNlRXhoYXVzdGVkQ2F1c2USPAoFc2NvcGUYAiABKA4yLS50ZW1wb3JhbC5hcGkuZW51bXMudjEuUmVzb3VyY2VFeGhhdXN0ZWRTY29wZSJ2ChVTeXN0ZW1Xb3JrZmxvd0ZhaWx1cmUSRQoSd29ya2Zsb3dfZXhlY3V0aW9uGAEgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIWCg53b3JrZmxvd19lcnJvchgCIAEoCSIZChdXb3JrZmxvd05vdFJlYWR5RmFpbHVyZSIzChdOZXdlckJ1aWxkRXhpc3RzRmFpbHVyZRIYChBkZWZhdWx0X2J1aWxkX2lkGAEgASgJItkBCh5NdWx0aU9wZXJhdGlvbkV4ZWN1dGlvbkZhaWx1cmUSXgoIc3RhdHVzZXMYASADKAsyTC50ZW1wb3JhbC5hcGkuZXJyb3JkZXRhaWxzLnYxLk11bHRpT3BlcmF0aW9uRXhlY3V0aW9uRmFpbHVyZS5PcGVyYXRpb25TdGF0dXMaVwoPT3BlcmF0aW9uU3RhdHVzEgwKBGNvZGUYASABKAUSDwoHbWVzc2FnZRgCIAEoCRIlCgdkZXRhaWxzGAMgAygLMhQuZ29vZ2xlLnByb3RvYnVmLkFueUKnAQofaW8udGVtcG9yYWwuYXBpLmVycm9yZGV0YWlscy52MUIMTWVzc2FnZVByb3RvUAFaL2dvLnRlbXBvcmFsLmlvL2FwaS9lcnJvcmRldGFpbHMvdjE7ZXJyb3JkZXRhaWxzqgIeVGVtcG9yYWxpby5BcGkuRXJyb3JEZXRhaWxzLlYx6gIhVGVtcG9yYWxpbzo6QXBpOjpFcnJvckRldGFpbHM6OlYxYgZwcm90bzM", [file_google_protobuf_any, file_temporal_api_common_v1_message, file_temporal_api_enums_v1_failed_cause, file_temporal_api_enums_v1_namespace, file_temporal_api_failure_v1_message]);
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message temporal.api.errordetails.v1.NotFoundFailure.
|
|
16
|
+
* Use `create(NotFoundFailureSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const NotFoundFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 0);
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message temporal.api.errordetails.v1.WorkflowExecutionAlreadyStartedFailure.
|
|
21
|
+
* Use `create(WorkflowExecutionAlreadyStartedFailureSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export const WorkflowExecutionAlreadyStartedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 1);
|
|
24
|
+
/**
|
|
25
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceNotActiveFailure.
|
|
26
|
+
* Use `create(NamespaceNotActiveFailureSchema)` to create a new message.
|
|
27
|
+
*/
|
|
28
|
+
export const NamespaceNotActiveFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 2);
|
|
29
|
+
/**
|
|
30
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceUnavailableFailure.
|
|
31
|
+
* Use `create(NamespaceUnavailableFailureSchema)` to create a new message.
|
|
32
|
+
*/
|
|
33
|
+
export const NamespaceUnavailableFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 3);
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceInvalidStateFailure.
|
|
36
|
+
* Use `create(NamespaceInvalidStateFailureSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export const NamespaceInvalidStateFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 4);
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceNotFoundFailure.
|
|
41
|
+
* Use `create(NamespaceNotFoundFailureSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export const NamespaceNotFoundFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 5);
|
|
44
|
+
/**
|
|
45
|
+
* Describes the message temporal.api.errordetails.v1.NamespaceAlreadyExistsFailure.
|
|
46
|
+
* Use `create(NamespaceAlreadyExistsFailureSchema)` to create a new message.
|
|
47
|
+
*/
|
|
48
|
+
export const NamespaceAlreadyExistsFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 6);
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message temporal.api.errordetails.v1.ClientVersionNotSupportedFailure.
|
|
51
|
+
* Use `create(ClientVersionNotSupportedFailureSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export const ClientVersionNotSupportedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 7);
|
|
54
|
+
/**
|
|
55
|
+
* Describes the message temporal.api.errordetails.v1.ServerVersionNotSupportedFailure.
|
|
56
|
+
* Use `create(ServerVersionNotSupportedFailureSchema)` to create a new message.
|
|
57
|
+
*/
|
|
58
|
+
export const ServerVersionNotSupportedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 8);
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message temporal.api.errordetails.v1.CancellationAlreadyRequestedFailure.
|
|
61
|
+
* Use `create(CancellationAlreadyRequestedFailureSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export const CancellationAlreadyRequestedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 9);
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message temporal.api.errordetails.v1.QueryFailedFailure.
|
|
66
|
+
* Use `create(QueryFailedFailureSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const QueryFailedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 10);
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message temporal.api.errordetails.v1.PermissionDeniedFailure.
|
|
71
|
+
* Use `create(PermissionDeniedFailureSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export const PermissionDeniedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 11);
|
|
74
|
+
/**
|
|
75
|
+
* Describes the message temporal.api.errordetails.v1.ResourceExhaustedFailure.
|
|
76
|
+
* Use `create(ResourceExhaustedFailureSchema)` to create a new message.
|
|
77
|
+
*/
|
|
78
|
+
export const ResourceExhaustedFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 12);
|
|
79
|
+
/**
|
|
80
|
+
* Describes the message temporal.api.errordetails.v1.SystemWorkflowFailure.
|
|
81
|
+
* Use `create(SystemWorkflowFailureSchema)` to create a new message.
|
|
82
|
+
*/
|
|
83
|
+
export const SystemWorkflowFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 13);
|
|
84
|
+
/**
|
|
85
|
+
* Describes the message temporal.api.errordetails.v1.WorkflowNotReadyFailure.
|
|
86
|
+
* Use `create(WorkflowNotReadyFailureSchema)` to create a new message.
|
|
87
|
+
*/
|
|
88
|
+
export const WorkflowNotReadyFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 14);
|
|
89
|
+
/**
|
|
90
|
+
* Describes the message temporal.api.errordetails.v1.NewerBuildExistsFailure.
|
|
91
|
+
* Use `create(NewerBuildExistsFailureSchema)` to create a new message.
|
|
92
|
+
*/
|
|
93
|
+
export const NewerBuildExistsFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 15);
|
|
94
|
+
/**
|
|
95
|
+
* Describes the message temporal.api.errordetails.v1.MultiOperationExecutionFailure.
|
|
96
|
+
* Use `create(MultiOperationExecutionFailureSchema)` to create a new message.
|
|
97
|
+
*/
|
|
98
|
+
export const MultiOperationExecutionFailureSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 16);
|
|
99
|
+
/**
|
|
100
|
+
* Describes the message temporal.api.errordetails.v1.MultiOperationExecutionFailure.OperationStatus.
|
|
101
|
+
* Use `create(MultiOperationExecutionFailure_OperationStatusSchema)` to create a new message.
|
|
102
|
+
*/
|
|
103
|
+
export const MultiOperationExecutionFailure_OperationStatusSchema = /*@__PURE__*/ messageDesc(file_temporal_api_errordetails_v1_message, 16, 0);
|
|
104
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/errordetails/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { History } from "../../history/v1/message_pb.js";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file temporal/api/export/v1/message.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_temporal_api_export_v1_message: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message temporal.api.export.v1.WorkflowExecution
|
|
10
|
+
*/
|
|
11
|
+
export type WorkflowExecution = Message<"temporal.api.export.v1.WorkflowExecution"> & {
|
|
12
|
+
/**
|
|
13
|
+
* @generated from field: temporal.api.history.v1.History history = 1;
|
|
14
|
+
*/
|
|
15
|
+
history?: History;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message temporal.api.export.v1.WorkflowExecution.
|
|
19
|
+
* Use `create(WorkflowExecutionSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export declare const WorkflowExecutionSchema: GenMessage<WorkflowExecution>;
|
|
22
|
+
/**
|
|
23
|
+
* WorkflowExecutions is used by the Cloud Export feature to deserialize
|
|
24
|
+
* the exported file. It encapsulates a collection of workflow execution information.
|
|
25
|
+
*
|
|
26
|
+
* @generated from message temporal.api.export.v1.WorkflowExecutions
|
|
27
|
+
*/
|
|
28
|
+
export type WorkflowExecutions = Message<"temporal.api.export.v1.WorkflowExecutions"> & {
|
|
29
|
+
/**
|
|
30
|
+
* @generated from field: repeated temporal.api.export.v1.WorkflowExecution items = 1;
|
|
31
|
+
*/
|
|
32
|
+
items: WorkflowExecution[];
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Describes the message temporal.api.export.v1.WorkflowExecutions.
|
|
36
|
+
* Use `create(WorkflowExecutionsSchema)` to create a new message.
|
|
37
|
+
*/
|
|
38
|
+
export declare const WorkflowExecutionsSchema: GenMessage<WorkflowExecutions>;
|
|
39
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/export/v1/message_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gCAAgC,CAAC;AAE9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,mCAAmC,EAAE,OACue,CAAC;AAE1hB;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,OAAO,CAAC,0CAA0C,CAAC,GAAG;IACpF;;OAEG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,iBAAiB,CACb,CAAC;AAEtD;;;;;GAKG;AACH,MAAM,MAAM,kBAAkB,GAAG,OAAO,CAAC,2CAA2C,CAAC,GAAG;IACtF;;OAEG;IACH,KAAK,EAAE,iBAAiB,EAAE,CAAC;CAC5B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,wBAAwB,EAAE,UAAU,CAAC,kBAAkB,CACf,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/export/v1/message.proto (package temporal.api.export.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_temporal_api_history_v1_message } from "../../history/v1/message_pb.js";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file temporal/api/export/v1/message.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_temporal_api_export_v1_message = /*@__PURE__*/ fileDesc("CiR0ZW1wb3JhbC9hcGkvZXhwb3J0L3YxL21lc3NhZ2UucHJvdG8SFnRlbXBvcmFsLmFwaS5leHBvcnQudjEiRgoRV29ya2Zsb3dFeGVjdXRpb24SMQoHaGlzdG9yeRgBIAEoCzIgLnRlbXBvcmFsLmFwaS5oaXN0b3J5LnYxLkhpc3RvcnkiTgoSV29ya2Zsb3dFeGVjdXRpb25zEjgKBWl0ZW1zGAEgAygLMikudGVtcG9yYWwuYXBpLmV4cG9ydC52MS5Xb3JrZmxvd0V4ZWN1dGlvbkKJAQoZaW8udGVtcG9yYWwuYXBpLmV4cG9ydC52MUIMTWVzc2FnZVByb3RvUAFaI2dvLnRlbXBvcmFsLmlvL2FwaS9leHBvcnQvdjE7ZXhwb3J0qgIYVGVtcG9yYWxpby5BcGkuRXhwb3J0LlYx6gIbVGVtcG9yYWxpbzo6QXBpOjpFeHBvcnQ6OlYxYgZwcm90bzM", [file_temporal_api_history_v1_message]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message temporal.api.export.v1.WorkflowExecution.
|
|
12
|
+
* Use `create(WorkflowExecutionSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const WorkflowExecutionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_export_v1_message, 0);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message temporal.api.export.v1.WorkflowExecutions.
|
|
17
|
+
* Use `create(WorkflowExecutionsSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const WorkflowExecutionsSchema = /*@__PURE__*/ messageDesc(file_temporal_api_export_v1_message, 1);
|
|
20
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/export/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,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAGtF;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAY,aAAa,CACvE,QAAQ,CAAC,qeAAqe,EAAE,CAAC,oCAAoC,CAAC,CAAC,CAAC;AAY1hB;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAetD;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC"}
|