@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,153 @@
|
|
|
1
|
+
import type { GenFile, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { AddOrUpdateRemoteClusterRequestSchema, AddOrUpdateRemoteClusterResponseSchema, AddSearchAttributesRequestSchema, AddSearchAttributesResponseSchema, CreateNexusEndpointRequestSchema, CreateNexusEndpointResponseSchema, DeleteNamespaceRequestSchema, DeleteNamespaceResponseSchema, DeleteNexusEndpointRequestSchema, DeleteNexusEndpointResponseSchema, GetNexusEndpointRequestSchema, GetNexusEndpointResponseSchema, ListClustersRequestSchema, ListClustersResponseSchema, ListNexusEndpointsRequestSchema, ListNexusEndpointsResponseSchema, ListSearchAttributesRequestSchema, ListSearchAttributesResponseSchema, RemoveRemoteClusterRequestSchema, RemoveRemoteClusterResponseSchema, RemoveSearchAttributesRequestSchema, RemoveSearchAttributesResponseSchema, UpdateNexusEndpointRequestSchema, UpdateNexusEndpointResponseSchema } from "./request_response_pb.js";
|
|
3
|
+
/**
|
|
4
|
+
* Describes the file temporal/api/operatorservice/v1/service.proto.
|
|
5
|
+
*/
|
|
6
|
+
export declare const file_temporal_api_operatorservice_v1_service: GenFile;
|
|
7
|
+
/**
|
|
8
|
+
* OperatorService API defines how Temporal SDKs and other clients interact with the Temporal server
|
|
9
|
+
* to perform administrative functions like registering a search attribute or a namespace.
|
|
10
|
+
* APIs in this file could be not compatible with Temporal Cloud, hence it's usage in SDKs should be limited by
|
|
11
|
+
* designated APIs that clearly state that they shouldn't be used by the main Application (Workflows & Activities) framework.
|
|
12
|
+
*
|
|
13
|
+
* (-- Search Attribute --)
|
|
14
|
+
*
|
|
15
|
+
* @generated from service temporal.api.operatorservice.v1.OperatorService
|
|
16
|
+
*/
|
|
17
|
+
export declare const OperatorService: GenService<{
|
|
18
|
+
/**
|
|
19
|
+
* AddSearchAttributes add custom search attributes.
|
|
20
|
+
*
|
|
21
|
+
* Returns ALREADY_EXISTS status code if a Search Attribute with any of the specified names already exists
|
|
22
|
+
* Returns INTERNAL status code with temporal.api.errordetails.v1.SystemWorkflowFailure in Error Details if registration process fails,
|
|
23
|
+
*
|
|
24
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.AddSearchAttributes
|
|
25
|
+
*/
|
|
26
|
+
addSearchAttributes: {
|
|
27
|
+
methodKind: "unary";
|
|
28
|
+
input: typeof AddSearchAttributesRequestSchema;
|
|
29
|
+
output: typeof AddSearchAttributesResponseSchema;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* RemoveSearchAttributes removes custom search attributes.
|
|
33
|
+
*
|
|
34
|
+
* Returns NOT_FOUND status code if a Search Attribute with any of the specified names is not registered
|
|
35
|
+
*
|
|
36
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.RemoveSearchAttributes
|
|
37
|
+
*/
|
|
38
|
+
removeSearchAttributes: {
|
|
39
|
+
methodKind: "unary";
|
|
40
|
+
input: typeof RemoveSearchAttributesRequestSchema;
|
|
41
|
+
output: typeof RemoveSearchAttributesResponseSchema;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* ListSearchAttributes returns comprehensive information about search attributes.
|
|
45
|
+
*
|
|
46
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.ListSearchAttributes
|
|
47
|
+
*/
|
|
48
|
+
listSearchAttributes: {
|
|
49
|
+
methodKind: "unary";
|
|
50
|
+
input: typeof ListSearchAttributesRequestSchema;
|
|
51
|
+
output: typeof ListSearchAttributesResponseSchema;
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* DeleteNamespace synchronously deletes a namespace and asynchronously reclaims all namespace resources.
|
|
55
|
+
*
|
|
56
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.DeleteNamespace
|
|
57
|
+
*/
|
|
58
|
+
deleteNamespace: {
|
|
59
|
+
methodKind: "unary";
|
|
60
|
+
input: typeof DeleteNamespaceRequestSchema;
|
|
61
|
+
output: typeof DeleteNamespaceResponseSchema;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* AddOrUpdateRemoteCluster adds or updates remote cluster.
|
|
65
|
+
*
|
|
66
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.AddOrUpdateRemoteCluster
|
|
67
|
+
*/
|
|
68
|
+
addOrUpdateRemoteCluster: {
|
|
69
|
+
methodKind: "unary";
|
|
70
|
+
input: typeof AddOrUpdateRemoteClusterRequestSchema;
|
|
71
|
+
output: typeof AddOrUpdateRemoteClusterResponseSchema;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* RemoveRemoteCluster removes remote cluster.
|
|
75
|
+
*
|
|
76
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.RemoveRemoteCluster
|
|
77
|
+
*/
|
|
78
|
+
removeRemoteCluster: {
|
|
79
|
+
methodKind: "unary";
|
|
80
|
+
input: typeof RemoveRemoteClusterRequestSchema;
|
|
81
|
+
output: typeof RemoveRemoteClusterResponseSchema;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* ListClusters returns information about Temporal clusters.
|
|
85
|
+
*
|
|
86
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.ListClusters
|
|
87
|
+
*/
|
|
88
|
+
listClusters: {
|
|
89
|
+
methodKind: "unary";
|
|
90
|
+
input: typeof ListClustersRequestSchema;
|
|
91
|
+
output: typeof ListClustersResponseSchema;
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* Get a registered Nexus endpoint by ID. The returned version can be used for optimistic updates.
|
|
95
|
+
*
|
|
96
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.GetNexusEndpoint
|
|
97
|
+
*/
|
|
98
|
+
getNexusEndpoint: {
|
|
99
|
+
methodKind: "unary";
|
|
100
|
+
input: typeof GetNexusEndpointRequestSchema;
|
|
101
|
+
output: typeof GetNexusEndpointResponseSchema;
|
|
102
|
+
};
|
|
103
|
+
/**
|
|
104
|
+
* Create a Nexus endpoint. This will fail if an endpoint with the same name is already registered with a status of
|
|
105
|
+
* ALREADY_EXISTS.
|
|
106
|
+
* Returns the created endpoint with its initial version. You may use this version for subsequent updates.
|
|
107
|
+
*
|
|
108
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.CreateNexusEndpoint
|
|
109
|
+
*/
|
|
110
|
+
createNexusEndpoint: {
|
|
111
|
+
methodKind: "unary";
|
|
112
|
+
input: typeof CreateNexusEndpointRequestSchema;
|
|
113
|
+
output: typeof CreateNexusEndpointResponseSchema;
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Optimistically update a Nexus endpoint based on provided version as obtained via the `GetNexusEndpoint` or
|
|
117
|
+
* `ListNexusEndpointResponse` APIs. This will fail with a status of FAILED_PRECONDITION if the version does not
|
|
118
|
+
* match.
|
|
119
|
+
* Returns the updated endpoint with its updated version. You may use this version for subsequent updates. You don't
|
|
120
|
+
* need to increment the version yourself. The server will increment the version for you after each update.
|
|
121
|
+
*
|
|
122
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.UpdateNexusEndpoint
|
|
123
|
+
*/
|
|
124
|
+
updateNexusEndpoint: {
|
|
125
|
+
methodKind: "unary";
|
|
126
|
+
input: typeof UpdateNexusEndpointRequestSchema;
|
|
127
|
+
output: typeof UpdateNexusEndpointResponseSchema;
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* Delete an incoming Nexus service by ID.
|
|
131
|
+
*
|
|
132
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.DeleteNexusEndpoint
|
|
133
|
+
*/
|
|
134
|
+
deleteNexusEndpoint: {
|
|
135
|
+
methodKind: "unary";
|
|
136
|
+
input: typeof DeleteNexusEndpointRequestSchema;
|
|
137
|
+
output: typeof DeleteNexusEndpointResponseSchema;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* List all Nexus endpoints for the cluster, sorted by ID in ascending order. Set page_token in the request to the
|
|
141
|
+
* next_page_token field of the previous response to get the next page of results. An empty next_page_token
|
|
142
|
+
* indicates that there are no more results. During pagination, a newly added service with an ID lexicographically
|
|
143
|
+
* earlier than the previous page's last endpoint's ID may be missed.
|
|
144
|
+
*
|
|
145
|
+
* @generated from rpc temporal.api.operatorservice.v1.OperatorService.ListNexusEndpoints
|
|
146
|
+
*/
|
|
147
|
+
listNexusEndpoints: {
|
|
148
|
+
methodKind: "unary";
|
|
149
|
+
input: typeof ListNexusEndpointsRequestSchema;
|
|
150
|
+
output: typeof ListNexusEndpointsResponseSchema;
|
|
151
|
+
};
|
|
152
|
+
}>;
|
|
153
|
+
//# sourceMappingURL=service_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/operatorservice/v1/service_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,qCAAqC,EAAE,sCAAsC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,6BAA6B,EAAE,8BAA8B,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,+BAA+B,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,kCAAkC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,mCAAmC,EAAE,oCAAoC,EAAE,gCAAgC,EAAE,iCAAiC,EAAE,MAAM,0BAA0B,CAAC;AAI/1B;;GAEG;AACH,eAAO,MAAM,4CAA4C,EAAE,OAC40G,CAAC;AAEx4G;;;;;;;;;GASG;AACH,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC;IACvC;;;;;;;OAOG;IACH,mBAAmB,EAAE;QACnB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,gCAAgC,CAAC;QAC/C,MAAM,EAAE,OAAO,iCAAiC,CAAC;KAClD,CAAC;IACF;;;;;;OAMG;IACH,sBAAsB,EAAE;QACtB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,mCAAmC,CAAC;QAClD,MAAM,EAAE,OAAO,oCAAoC,CAAC;KACrD,CAAC;IACF;;;;OAIG;IACH,oBAAoB,EAAE;QACpB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,iCAAiC,CAAC;QAChD,MAAM,EAAE,OAAO,kCAAkC,CAAC;KACnD,CAAC;IACF;;;;OAIG;IACH,eAAe,EAAE;QACf,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,4BAA4B,CAAC;QAC3C,MAAM,EAAE,OAAO,6BAA6B,CAAC;KAC9C,CAAC;IACF;;;;OAIG;IACH,wBAAwB,EAAE;QACxB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,qCAAqC,CAAC;QACpD,MAAM,EAAE,OAAO,sCAAsC,CAAC;KACvD,CAAC;IACF;;;;OAIG;IACH,mBAAmB,EAAE;QACnB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,gCAAgC,CAAC;QAC/C,MAAM,EAAE,OAAO,iCAAiC,CAAC;KAClD,CAAC;IACF;;;;OAIG;IACH,YAAY,EAAE;QACZ,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,yBAAyB,CAAC;QACxC,MAAM,EAAE,OAAO,0BAA0B,CAAC;KAC3C,CAAC;IACF;;;;OAIG;IACH,gBAAgB,EAAE;QAChB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,6BAA6B,CAAC;QAC5C,MAAM,EAAE,OAAO,8BAA8B,CAAC;KAC/C,CAAC;IACF;;;;;;OAMG;IACH,mBAAmB,EAAE;QACnB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,gCAAgC,CAAC;QAC/C,MAAM,EAAE,OAAO,iCAAiC,CAAC;KAClD,CAAC;IACF;;;;;;;;OAQG;IACH,mBAAmB,EAAE;QACnB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,gCAAgC,CAAC;QAC/C,MAAM,EAAE,OAAO,iCAAiC,CAAC;KAClD,CAAC;IACF;;;;OAIG;IACH,mBAAmB,EAAE;QACnB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,gCAAgC,CAAC;QAC/C,MAAM,EAAE,OAAO,iCAAiC,CAAC;KAClD,CAAC;IACF;;;;;;;OAOG;IACH,kBAAkB,EAAE;QAClB,UAAU,EAAE,OAAO,CAAC;QACpB,KAAK,EAAE,OAAO,+BAA+B,CAAC;QAC9C,MAAM,EAAE,OAAO,gCAAgC,CAAC;KACjD,CAAC;CACH,CAC6D,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/operatorservice/v1/service.proto (package temporal.api.operatorservice.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_temporal_api_operatorservice_v1_request_response } from "./request_response_pb.js";
|
|
6
|
+
import { file_google_api_annotations } from "../../../../google/api/annotations_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file temporal/api/operatorservice/v1/service.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_temporal_api_operatorservice_v1_service = /*@__PURE__*/ fileDesc("Ci10ZW1wb3JhbC9hcGkvb3BlcmF0b3JzZXJ2aWNlL3YxL3NlcnZpY2UucHJvdG8SH3RlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEyxhEKD09wZXJhdG9yU2VydmljZRKSAQoTQWRkU2VhcmNoQXR0cmlidXRlcxI7LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuQWRkU2VhcmNoQXR0cmlidXRlc1JlcXVlc3QaPC50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkFkZFNlYXJjaEF0dHJpYnV0ZXNSZXNwb25zZSIAEpsBChZSZW1vdmVTZWFyY2hBdHRyaWJ1dGVzEj4udGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5SZW1vdmVTZWFyY2hBdHRyaWJ1dGVzUmVxdWVzdBo/LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuUmVtb3ZlU2VhcmNoQXR0cmlidXRlc1Jlc3BvbnNlIgASggIKFExpc3RTZWFyY2hBdHRyaWJ1dGVzEjwudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5MaXN0U2VhcmNoQXR0cmlidXRlc1JlcXVlc3QaPS50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkxpc3RTZWFyY2hBdHRyaWJ1dGVzUmVzcG9uc2UibYLT5JMCZ1oyEjAvYXBpL3YxL25hbWVzcGFjZXMve25hbWVzcGFjZX0vc2VhcmNoLWF0dHJpYnV0ZXMSMS9jbHVzdGVyL25hbWVzcGFjZXMve25hbWVzcGFjZX0vc2VhcmNoLWF0dHJpYnV0ZXMShgEKD0RlbGV0ZU5hbWVzcGFjZRI3LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuRGVsZXRlTmFtZXNwYWNlUmVxdWVzdBo4LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuRGVsZXRlTmFtZXNwYWNlUmVzcG9uc2UiABKhAQoYQWRkT3JVcGRhdGVSZW1vdGVDbHVzdGVyEkAudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5BZGRPclVwZGF0ZVJlbW90ZUNsdXN0ZXJSZXF1ZXN0GkEudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5BZGRPclVwZGF0ZVJlbW90ZUNsdXN0ZXJSZXNwb25zZSIAEpIBChNSZW1vdmVSZW1vdGVDbHVzdGVyEjsudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5SZW1vdmVSZW1vdGVDbHVzdGVyUmVxdWVzdBo8LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuUmVtb3ZlUmVtb3RlQ2x1c3RlclJlc3BvbnNlIgASfQoMTGlzdENsdXN0ZXJzEjQudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5MaXN0Q2x1c3RlcnNSZXF1ZXN0GjUudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5MaXN0Q2x1c3RlcnNSZXNwb25zZSIAEs4BChBHZXROZXh1c0VuZHBvaW50EjgudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5HZXROZXh1c0VuZHBvaW50UmVxdWVzdBo5LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuR2V0TmV4dXNFbmRwb2ludFJlc3BvbnNlIkWC0+STAj9aHhIcL2FwaS92MS9uZXh1cy9lbmRwb2ludHMve2lkfRIdL2NsdXN0ZXIvbmV4dXMvZW5kcG9pbnRzL3tpZH0S0wEKE0NyZWF0ZU5leHVzRW5kcG9pbnQSOy50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkNyZWF0ZU5leHVzRW5kcG9pbnRSZXF1ZXN0GjwudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5DcmVhdGVOZXh1c0VuZHBvaW50UmVzcG9uc2UiQYLT5JMCOzoBKlocOgEqIhcvYXBpL3YxL25leHVzL2VuZHBvaW50cyIYL2NsdXN0ZXIvbmV4dXMvZW5kcG9pbnRzEusBChNVcGRhdGVOZXh1c0VuZHBvaW50EjsudGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MS5VcGRhdGVOZXh1c0VuZHBvaW50UmVxdWVzdBo8LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuVXBkYXRlTmV4dXNFbmRwb2ludFJlc3BvbnNlIlmC0+STAlM6ASpaKDoBKiIjL2FwaS92MS9uZXh1cy9lbmRwb2ludHMve2lkfS91cGRhdGUiJC9jbHVzdGVyL25leHVzL2VuZHBvaW50cy97aWR9L3VwZGF0ZRLXAQoTRGVsZXRlTmV4dXNFbmRwb2ludBI7LnRlbXBvcmFsLmFwaS5vcGVyYXRvcnNlcnZpY2UudjEuRGVsZXRlTmV4dXNFbmRwb2ludFJlcXVlc3QaPC50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkRlbGV0ZU5leHVzRW5kcG9pbnRSZXNwb25zZSJFgtPkkwI/Wh4qHC9hcGkvdjEvbmV4dXMvZW5kcG9pbnRzL3tpZH0qHS9jbHVzdGVyL25leHVzL2VuZHBvaW50cy97aWR9EsoBChJMaXN0TmV4dXNFbmRwb2ludHMSOi50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkxpc3ROZXh1c0VuZHBvaW50c1JlcXVlc3QaOy50ZW1wb3JhbC5hcGkub3BlcmF0b3JzZXJ2aWNlLnYxLkxpc3ROZXh1c0VuZHBvaW50c1Jlc3BvbnNlIjuC0+STAjVaGRIXL2FwaS92MS9uZXh1cy9lbmRwb2ludHMSGC9jbHVzdGVyL25leHVzL2VuZHBvaW50c0K2AQoiaW8udGVtcG9yYWwuYXBpLm9wZXJhdG9yc2VydmljZS52MUIMU2VydmljZVByb3RvUAFaNWdvLnRlbXBvcmFsLmlvL2FwaS9vcGVyYXRvcnNlcnZpY2UvdjE7b3BlcmF0b3JzZXJ2aWNlqgIhVGVtcG9yYWxpby5BcGkuT3BlcmF0b3JTZXJ2aWNlLlYx6gIkVGVtcG9yYWxpbzo6QXBpOjpPcGVyYXRvclNlcnZpY2U6OlYxYgZwcm90bzM", [file_temporal_api_operatorservice_v1_request_response, file_google_api_annotations]);
|
|
11
|
+
/**
|
|
12
|
+
* OperatorService API defines how Temporal SDKs and other clients interact with the Temporal server
|
|
13
|
+
* to perform administrative functions like registering a search attribute or a namespace.
|
|
14
|
+
* APIs in this file could be not compatible with Temporal Cloud, hence it's usage in SDKs should be limited by
|
|
15
|
+
* designated APIs that clearly state that they shouldn't be used by the main Application (Workflows & Activities) framework.
|
|
16
|
+
*
|
|
17
|
+
* (-- Search Attribute --)
|
|
18
|
+
*
|
|
19
|
+
* @generated from service temporal.api.operatorservice.v1.OperatorService
|
|
20
|
+
*/
|
|
21
|
+
export const OperatorService = /*@__PURE__*/ serviceDesc(file_temporal_api_operatorservice_v1_service, 0);
|
|
22
|
+
//# sourceMappingURL=service_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"service_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/operatorservice/v1/service_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,8HAA8H;AAC9H,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,qDAAqD,EAAE,MAAM,0BAA0B,CAAC;AACjG,OAAO,EAAE,2BAA2B,EAAE,MAAM,0CAA0C,CAAC;AAEvF;;GAEG;AACH,MAAM,CAAC,MAAM,4CAA4C,GAAY,aAAa,CAChF,QAAQ,CAAC,qyGAAqyG,EAAE,CAAC,qDAAqD,EAAE,2BAA2B,CAAC,CAAC,CAAC;AAEx4G;;;;;;;;;GASG;AACH,MAAM,CAAC,MAAM,eAAe,GAuIvB,aAAa,CAChB,WAAW,CAAC,4CAA4C,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Any } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { Message as Message$1 } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file temporal/api/protocol/v1/message.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_temporal_api_protocol_v1_message: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* (-- api-linter: core::0146::any=disabled
|
|
10
|
+
* aip.dev/not-precedent: We want runtime extensibility for the body field --)
|
|
11
|
+
*
|
|
12
|
+
* @generated from message temporal.api.protocol.v1.Message
|
|
13
|
+
*/
|
|
14
|
+
export type Message = Message$1<"temporal.api.protocol.v1.Message"> & {
|
|
15
|
+
/**
|
|
16
|
+
* An ID for this specific message.
|
|
17
|
+
*
|
|
18
|
+
* @generated from field: string id = 1;
|
|
19
|
+
*/
|
|
20
|
+
id: string;
|
|
21
|
+
/**
|
|
22
|
+
* Identifies the specific instance of a protocol to which this message
|
|
23
|
+
* belongs.
|
|
24
|
+
*
|
|
25
|
+
* @generated from field: string protocol_instance_id = 2;
|
|
26
|
+
*/
|
|
27
|
+
protocolInstanceId: string;
|
|
28
|
+
/**
|
|
29
|
+
* The event ID or command ID after which this message can be delivered. The
|
|
30
|
+
* effects of history up to and including this event ID should be visible to
|
|
31
|
+
* the code that handles this message. Omit to opt out of sequencing.
|
|
32
|
+
*
|
|
33
|
+
* @generated from oneof temporal.api.protocol.v1.Message.sequencing_id
|
|
34
|
+
*/
|
|
35
|
+
sequencingId: {
|
|
36
|
+
/**
|
|
37
|
+
* @generated from field: int64 event_id = 3;
|
|
38
|
+
*/
|
|
39
|
+
value: bigint;
|
|
40
|
+
case: "eventId";
|
|
41
|
+
} | {
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: int64 command_index = 4;
|
|
44
|
+
*/
|
|
45
|
+
value: bigint;
|
|
46
|
+
case: "commandIndex";
|
|
47
|
+
} | {
|
|
48
|
+
case: undefined;
|
|
49
|
+
value?: undefined;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* The opaque data carried by this message. The protocol type can be
|
|
53
|
+
* extracted from the package name of the message carried inside the Any.
|
|
54
|
+
*
|
|
55
|
+
* @generated from field: google.protobuf.Any body = 5;
|
|
56
|
+
*/
|
|
57
|
+
body?: Any;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Describes the message temporal.api.protocol.v1.Message.
|
|
61
|
+
* Use `create(MessageSchema)` to create a new message.
|
|
62
|
+
*/
|
|
63
|
+
export declare const MessageSchema: GenMessage<Message>;
|
|
64
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/protocol/v1/message_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,wBAAwB,CAAC;AAElD,OAAO,KAAK,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAE/D;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,OAC4e,CAAC;AAEjiB;;;;;GAKG;AACH,MAAM,MAAM,OAAO,GAAG,SAAS,CAAC,kCAAkC,CAAC,GAAG;IACpE;;;;OAIG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;;;;OAKG;IACH,kBAAkB,EAAE,MAAM,CAAC;IAE3B;;;;;;OAMG;IACH,YAAY,EAAE;QACZ;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,SAAS,CAAC;KACjB,GAAG;QACF;;WAEG;QACH,KAAK,EAAE,MAAM,CAAC;QACd,IAAI,EAAE,cAAc,CAAC;KACtB,GAAG;QAAE,IAAI,EAAE,SAAS,CAAC;QAAC,KAAK,CAAC,EAAE,SAAS,CAAA;KAAE,CAAC;IAE3C;;;;;OAKG;IACH,IAAI,CAAC,EAAE,GAAG,CAAC;CACZ,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,OAAO,CACS,CAAC"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/protocol/v1/message.proto (package temporal.api.protocol.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
|
+
/**
|
|
7
|
+
* Describes the file temporal/api/protocol/v1/message.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_temporal_api_protocol_v1_message = /*@__PURE__*/ fileDesc("CiZ0ZW1wb3JhbC9hcGkvcHJvdG9jb2wvdjEvbWVzc2FnZS5wcm90bxIYdGVtcG9yYWwuYXBpLnByb3RvY29sLnYxIpUBCgdNZXNzYWdlEgoKAmlkGAEgASgJEhwKFHByb3RvY29sX2luc3RhbmNlX2lkGAIgASgJEhIKCGV2ZW50X2lkGAMgASgDSAASFwoNY29tbWFuZF9pbmRleBgEIAEoA0gAEiIKBGJvZHkYBSABKAsyFC5nb29nbGUucHJvdG9idWYuQW55Qg8KDXNlcXVlbmNpbmdfaWRCkwEKG2lvLnRlbXBvcmFsLmFwaS5wcm90b2NvbC52MUIMTWVzc2FnZVByb3RvUAFaJ2dvLnRlbXBvcmFsLmlvL2FwaS9wcm90b2NvbC92MTtwcm90b2NvbKoCGlRlbXBvcmFsaW8uQXBpLlByb3RvY29sLlYx6gIdVGVtcG9yYWxpbzo6QXBpOjpQcm90b2NvbDo6VjFiBnByb3RvMw", [file_google_protobuf_any]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message temporal.api.protocol.v1.Message.
|
|
12
|
+
* Use `create(MessageSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const MessageSchema = /*@__PURE__*/ messageDesc(file_temporal_api_protocol_v1_message, 0);
|
|
15
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/protocol/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,gHAAgH;AAChH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,wBAAwB,EAAE,MAAM,wBAAwB,CAAC;AAGlE;;GAEG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAY,aAAa,CACzE,QAAQ,CAAC,wfAAwf,EAAE,CAAC,wBAAwB,CAAC,CAAC,CAAC;AAsDjiB;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAwB,aAAa,CAC7D,WAAW,CAAC,qCAAqC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { QueryResultType } from "../../enums/v1/query_pb.js";
|
|
3
|
+
import type { WorkflowExecutionStatus } from "../../enums/v1/workflow_pb.js";
|
|
4
|
+
import type { Header, Payloads } from "../../common/v1/message_pb.js";
|
|
5
|
+
import type { Failure } from "../../failure/v1/message_pb.js";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file temporal/api/query/v1/message.proto.
|
|
9
|
+
*/
|
|
10
|
+
export declare const file_temporal_api_query_v1_message: GenFile;
|
|
11
|
+
/**
|
|
12
|
+
* See https://docs.temporal.io/docs/concepts/queries/
|
|
13
|
+
*
|
|
14
|
+
* @generated from message temporal.api.query.v1.WorkflowQuery
|
|
15
|
+
*/
|
|
16
|
+
export type WorkflowQuery = Message<"temporal.api.query.v1.WorkflowQuery"> & {
|
|
17
|
+
/**
|
|
18
|
+
* The workflow-author-defined identifier of the query. Typically a function name.
|
|
19
|
+
*
|
|
20
|
+
* @generated from field: string query_type = 1;
|
|
21
|
+
*/
|
|
22
|
+
queryType: string;
|
|
23
|
+
/**
|
|
24
|
+
* Serialized arguments that will be provided to the query handler.
|
|
25
|
+
*
|
|
26
|
+
* @generated from field: temporal.api.common.v1.Payloads query_args = 2;
|
|
27
|
+
*/
|
|
28
|
+
queryArgs?: Payloads;
|
|
29
|
+
/**
|
|
30
|
+
* Headers that were passed by the caller of the query and copied by temporal
|
|
31
|
+
* server into the workflow task.
|
|
32
|
+
*
|
|
33
|
+
* @generated from field: temporal.api.common.v1.Header header = 3;
|
|
34
|
+
*/
|
|
35
|
+
header?: Header;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message temporal.api.query.v1.WorkflowQuery.
|
|
39
|
+
* Use `create(WorkflowQuerySchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export declare const WorkflowQuerySchema: GenMessage<WorkflowQuery>;
|
|
42
|
+
/**
|
|
43
|
+
* Answer to a `WorkflowQuery`
|
|
44
|
+
*
|
|
45
|
+
* @generated from message temporal.api.query.v1.WorkflowQueryResult
|
|
46
|
+
*/
|
|
47
|
+
export type WorkflowQueryResult = Message<"temporal.api.query.v1.WorkflowQueryResult"> & {
|
|
48
|
+
/**
|
|
49
|
+
* Did the query succeed or fail?
|
|
50
|
+
*
|
|
51
|
+
* @generated from field: temporal.api.enums.v1.QueryResultType result_type = 1;
|
|
52
|
+
*/
|
|
53
|
+
resultType: QueryResultType;
|
|
54
|
+
/**
|
|
55
|
+
* Set when the query succeeds with the results.
|
|
56
|
+
* Mutually exclusive with `error_message` and `failure`.
|
|
57
|
+
*
|
|
58
|
+
* @generated from field: temporal.api.common.v1.Payloads answer = 2;
|
|
59
|
+
*/
|
|
60
|
+
answer?: Payloads;
|
|
61
|
+
/**
|
|
62
|
+
* Mutually exclusive with `answer`. Set when the query fails.
|
|
63
|
+
* See also the newer `failure` field.
|
|
64
|
+
*
|
|
65
|
+
* @generated from field: string error_message = 3;
|
|
66
|
+
*/
|
|
67
|
+
errorMessage: string;
|
|
68
|
+
/**
|
|
69
|
+
* The full reason for this query failure. This field is newer than `error_message` and can be encoded by the SDK's
|
|
70
|
+
* failure converter to support E2E encryption of messages and stack traces.
|
|
71
|
+
* Mutually exclusive with `answer`. Set when the query fails.
|
|
72
|
+
*
|
|
73
|
+
* @generated from field: temporal.api.failure.v1.Failure failure = 4;
|
|
74
|
+
*/
|
|
75
|
+
failure?: Failure;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Describes the message temporal.api.query.v1.WorkflowQueryResult.
|
|
79
|
+
* Use `create(WorkflowQueryResultSchema)` to create a new message.
|
|
80
|
+
*/
|
|
81
|
+
export declare const WorkflowQueryResultSchema: GenMessage<WorkflowQueryResult>;
|
|
82
|
+
/**
|
|
83
|
+
* @generated from message temporal.api.query.v1.QueryRejected
|
|
84
|
+
*/
|
|
85
|
+
export type QueryRejected = Message<"temporal.api.query.v1.QueryRejected"> & {
|
|
86
|
+
/**
|
|
87
|
+
* @generated from field: temporal.api.enums.v1.WorkflowExecutionStatus status = 1;
|
|
88
|
+
*/
|
|
89
|
+
status: WorkflowExecutionStatus;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Describes the message temporal.api.query.v1.QueryRejected.
|
|
93
|
+
* Use `create(QueryRejectedSchema)` to create a new message.
|
|
94
|
+
*/
|
|
95
|
+
export declare const QueryRejectedSchema: GenMessage<QueryRejected>;
|
|
96
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/query/v1/message_pb.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAExE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,4BAA4B,CAAC;AAElE,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,+BAA+B,CAAC;AAE7E,OAAO,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,+BAA+B,CAAC;AAEtE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gCAAgC,CAAC;AAE9D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,kCAAkC,EAAE,OAC67B,CAAC;AAE/+B;;;;GAIG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IAC3E;;;;OAIG;IACH,SAAS,EAAE,MAAM,CAAC;IAElB;;;;OAIG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAC;IAErB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,aAAa,CACN,CAAC;AAErD;;;;GAIG;AACH,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC,2CAA2C,CAAC,GAAG;IACvF;;;;OAIG;IACH,UAAU,EAAE,eAAe,CAAC;IAE5B;;;;;OAKG;IACH,MAAM,CAAC,EAAE,QAAQ,CAAC;IAElB;;;;;OAKG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;;;;;OAMG;IACH,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,CAClB,CAAC;AAErD;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IAC3E;;OAEG;IACH,MAAM,EAAE,uBAAuB,CAAC;CACjC,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,aAAa,CACN,CAAC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/query/v1/message.proto (package temporal.api.query.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_temporal_api_enums_v1_query } from "../../enums/v1/query_pb.js";
|
|
6
|
+
import { file_temporal_api_enums_v1_workflow } from "../../enums/v1/workflow_pb.js";
|
|
7
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
8
|
+
import { file_temporal_api_failure_v1_message } from "../../failure/v1/message_pb.js";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file temporal/api/query/v1/message.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_temporal_api_query_v1_message = /*@__PURE__*/ fileDesc("CiN0ZW1wb3JhbC9hcGkvcXVlcnkvdjEvbWVzc2FnZS5wcm90bxIVdGVtcG9yYWwuYXBpLnF1ZXJ5LnYxIokBCg1Xb3JrZmxvd1F1ZXJ5EhIKCnF1ZXJ5X3R5cGUYASABKAkSNAoKcXVlcnlfYXJncxgCIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMSLgoGaGVhZGVyGAMgASgLMh4udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5IZWFkZXIizgEKE1dvcmtmbG93UXVlcnlSZXN1bHQSOwoLcmVzdWx0X3R5cGUYASABKA4yJi50ZW1wb3JhbC5hcGkuZW51bXMudjEuUXVlcnlSZXN1bHRUeXBlEjAKBmFuc3dlchgCIAEoCzIgLnRlbXBvcmFsLmFwaS5jb21tb24udjEuUGF5bG9hZHMSFQoNZXJyb3JfbWVzc2FnZRgDIAEoCRIxCgdmYWlsdXJlGAQgASgLMiAudGVtcG9yYWwuYXBpLmZhaWx1cmUudjEuRmFpbHVyZSJPCg1RdWVyeVJlamVjdGVkEj4KBnN0YXR1cxgBIAEoDjIuLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5Xb3JrZmxvd0V4ZWN1dGlvblN0YXR1c0KEAQoYaW8udGVtcG9yYWwuYXBpLnF1ZXJ5LnYxQgxNZXNzYWdlUHJvdG9QAVohZ28udGVtcG9yYWwuaW8vYXBpL3F1ZXJ5L3YxO3F1ZXJ5qgIXVGVtcG9yYWxpby5BcGkuUXVlcnkuVjHqAhpUZW1wb3JhbGlvOjpBcGk6OlF1ZXJ5OjpWMWIGcHJvdG8z", [file_temporal_api_enums_v1_query, file_temporal_api_enums_v1_workflow, file_temporal_api_common_v1_message, file_temporal_api_failure_v1_message]);
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message temporal.api.query.v1.WorkflowQuery.
|
|
15
|
+
* Use `create(WorkflowQuerySchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export const WorkflowQuerySchema = /*@__PURE__*/ messageDesc(file_temporal_api_query_v1_message, 0);
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message temporal.api.query.v1.WorkflowQueryResult.
|
|
20
|
+
* Use `create(WorkflowQueryResultSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export const WorkflowQueryResultSchema = /*@__PURE__*/ messageDesc(file_temporal_api_query_v1_message, 1);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message temporal.api.query.v1.QueryRejected.
|
|
25
|
+
* Use `create(QueryRejectedSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
export const QueryRejectedSchema = /*@__PURE__*/ messageDesc(file_temporal_api_query_v1_message, 2);
|
|
28
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/query/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,0GAA0G;AAC1G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,gCAAgC,EAAE,MAAM,4BAA4B,CAAC;AAE9E,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAGtF;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAY,aAAa,CACtE,QAAQ,CAAC,80BAA80B,EAAE,CAAC,gCAAgC,EAAE,mCAAmC,EAAE,mCAAmC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AA+B/+B;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAyCrD;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAYrD;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { ReplicationState } from "../../enums/v1/namespace_pb.js";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file temporal/api/replication/v1/message.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_temporal_api_replication_v1_message: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* @generated from message temporal.api.replication.v1.ClusterReplicationConfig
|
|
11
|
+
*/
|
|
12
|
+
export type ClusterReplicationConfig = Message<"temporal.api.replication.v1.ClusterReplicationConfig"> & {
|
|
13
|
+
/**
|
|
14
|
+
* @generated from field: string cluster_name = 1;
|
|
15
|
+
*/
|
|
16
|
+
clusterName: string;
|
|
17
|
+
};
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message temporal.api.replication.v1.ClusterReplicationConfig.
|
|
20
|
+
* Use `create(ClusterReplicationConfigSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export declare const ClusterReplicationConfigSchema: GenMessage<ClusterReplicationConfig>;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from message temporal.api.replication.v1.NamespaceReplicationConfig
|
|
25
|
+
*/
|
|
26
|
+
export type NamespaceReplicationConfig = Message<"temporal.api.replication.v1.NamespaceReplicationConfig"> & {
|
|
27
|
+
/**
|
|
28
|
+
* @generated from field: string active_cluster_name = 1;
|
|
29
|
+
*/
|
|
30
|
+
activeClusterName: string;
|
|
31
|
+
/**
|
|
32
|
+
* @generated from field: repeated temporal.api.replication.v1.ClusterReplicationConfig clusters = 2;
|
|
33
|
+
*/
|
|
34
|
+
clusters: ClusterReplicationConfig[];
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: temporal.api.enums.v1.ReplicationState state = 3;
|
|
37
|
+
*/
|
|
38
|
+
state: ReplicationState;
|
|
39
|
+
};
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message temporal.api.replication.v1.NamespaceReplicationConfig.
|
|
42
|
+
* Use `create(NamespaceReplicationConfigSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export declare const NamespaceReplicationConfigSchema: GenMessage<NamespaceReplicationConfig>;
|
|
45
|
+
/**
|
|
46
|
+
* Represents a historical replication status of a Namespace
|
|
47
|
+
*
|
|
48
|
+
* @generated from message temporal.api.replication.v1.FailoverStatus
|
|
49
|
+
*/
|
|
50
|
+
export type FailoverStatus = Message<"temporal.api.replication.v1.FailoverStatus"> & {
|
|
51
|
+
/**
|
|
52
|
+
* Timestamp when the Cluster switched to the following failover_version
|
|
53
|
+
*
|
|
54
|
+
* @generated from field: google.protobuf.Timestamp failover_time = 1;
|
|
55
|
+
*/
|
|
56
|
+
failoverTime?: Timestamp;
|
|
57
|
+
/**
|
|
58
|
+
* @generated from field: int64 failover_version = 2;
|
|
59
|
+
*/
|
|
60
|
+
failoverVersion: bigint;
|
|
61
|
+
};
|
|
62
|
+
/**
|
|
63
|
+
* Describes the message temporal.api.replication.v1.FailoverStatus.
|
|
64
|
+
* Use `create(FailoverStatusSchema)` to create a new message.
|
|
65
|
+
*/
|
|
66
|
+
export declare const FailoverStatusSchema: GenMessage<FailoverStatus>;
|
|
67
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/replication/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,gBAAgB,EAAE,MAAM,gCAAgC,CAAC;AAEvE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,wCAAwC,EAAE,OACmyB,CAAC;AAE31B;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC,sDAAsD,CAAC,GAAG;IACvG;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,8BAA8B,EAAE,UAAU,CAAC,wBAAwB,CACtB,CAAC;AAE3D;;GAEG;AACH,MAAM,MAAM,0BAA0B,GAAG,OAAO,CAAC,wDAAwD,CAAC,GAAG;IAC3G;;OAEG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,QAAQ,EAAE,wBAAwB,EAAE,CAAC;IAErC;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAC;CACzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,0BAA0B,CAC1B,CAAC;AAE3D;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,OAAO,CAAC,4CAA4C,CAAC,GAAG;IACnF;;;;OAIG;IACH,YAAY,CAAC,EAAE,SAAS,CAAC;IAEzB;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;CACzB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,cAAc,CACF,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/replication/v1/message.proto (package temporal.api.replication.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_namespace } from "../../enums/v1/namespace_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file temporal/api/replication/v1/message.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_temporal_api_replication_v1_message = /*@__PURE__*/ fileDesc("Cil0ZW1wb3JhbC9hcGkvcmVwbGljYXRpb24vdjEvbWVzc2FnZS5wcm90bxIbdGVtcG9yYWwuYXBpLnJlcGxpY2F0aW9uLnYxIjAKGENsdXN0ZXJSZXBsaWNhdGlvbkNvbmZpZxIUCgxjbHVzdGVyX25hbWUYASABKAkiugEKGk5hbWVzcGFjZVJlcGxpY2F0aW9uQ29uZmlnEhsKE2FjdGl2ZV9jbHVzdGVyX25hbWUYASABKAkSRwoIY2x1c3RlcnMYAiADKAsyNS50ZW1wb3JhbC5hcGkucmVwbGljYXRpb24udjEuQ2x1c3RlclJlcGxpY2F0aW9uQ29uZmlnEjYKBXN0YXRlGAMgASgOMicudGVtcG9yYWwuYXBpLmVudW1zLnYxLlJlcGxpY2F0aW9uU3RhdGUiXQoORmFpbG92ZXJTdGF0dXMSMQoNZmFpbG92ZXJfdGltZRgBIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASGAoQZmFpbG92ZXJfdmVyc2lvbhgCIAEoA0KiAQoeaW8udGVtcG9yYWwuYXBpLnJlcGxpY2F0aW9uLnYxQgxNZXNzYWdlUHJvdG9QAVotZ28udGVtcG9yYWwuaW8vYXBpL3JlcGxpY2F0aW9uL3YxO3JlcGxpY2F0aW9uqgIdVGVtcG9yYWxpby5BcGkuUmVwbGljYXRpb24uVjHqAiBUZW1wb3JhbGlvOjpBcGk6OlJlcGxpY2F0aW9uOjpWMWIGcHJvdG8z", [file_google_protobuf_timestamp, file_temporal_api_enums_v1_namespace]);
|
|
11
|
+
/**
|
|
12
|
+
* Describes the message temporal.api.replication.v1.ClusterReplicationConfig.
|
|
13
|
+
* Use `create(ClusterReplicationConfigSchema)` to create a new message.
|
|
14
|
+
*/
|
|
15
|
+
export const ClusterReplicationConfigSchema = /*@__PURE__*/ messageDesc(file_temporal_api_replication_v1_message, 0);
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message temporal.api.replication.v1.NamespaceReplicationConfig.
|
|
18
|
+
* Use `create(NamespaceReplicationConfigSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const NamespaceReplicationConfigSchema = /*@__PURE__*/ messageDesc(file_temporal_api_replication_v1_message, 1);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message temporal.api.replication.v1.FailoverStatus.
|
|
23
|
+
* Use `create(FailoverStatusSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const FailoverStatusSchema = /*@__PURE__*/ messageDesc(file_temporal_api_replication_v1_message, 2);
|
|
26
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/replication/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,sHAAsH;AACtH,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAExE,OAAO,EAAE,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAGtF;;GAEG;AACH,MAAM,CAAC,MAAM,wCAAwC,GAAY,aAAa,CAC5E,QAAQ,CAAC,swBAAswB,EAAE,CAAC,8BAA8B,EAAE,oCAAoC,CAAC,CAAC,CAAC;AAY31B;;;GAGG;AACH,MAAM,CAAC,MAAM,8BAA8B,GAAyC,aAAa,CAC/F,WAAW,CAAC,wCAAwC,EAAE,CAAC,CAAC,CAAC;AAsB3D;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAA2C,aAAa,CACnG,WAAW,CAAC,wCAAwC,EAAE,CAAC,CAAC,CAAC;AAqB3D;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,wCAAwC,EAAE,CAAC,CAAC,CAAC"}
|