@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 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/taskqueue/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/taskqueue/v1/message.proto (package temporal.api.taskqueue.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_google_protobuf_duration, file_google_protobuf_timestamp, file_google_protobuf_wrappers } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
import { file_temporal_api_enums_v1_task_queue } from "../../enums/v1/task_queue_pb.js";
|
|
7
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
8
|
+
import { file_temporal_api_deployment_v1_message } from "../../deployment/v1/message_pb.js";
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file temporal/api/taskqueue/v1/message.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_temporal_api_taskqueue_v1_message = /*@__PURE__*/ fileDesc("Cid0ZW1wb3JhbC9hcGkvdGFza3F1ZXVlL3YxL21lc3NhZ2UucHJvdG8SGXRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEiYgoJVGFza1F1ZXVlEgwKBG5hbWUYASABKAkSMgoEa2luZBgCIAEoDjIkLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5UYXNrUXVldWVLaW5kEhMKC25vcm1hbF9uYW1lGAMgASgJIk8KEVRhc2tRdWV1ZU1ldGFkYXRhEjoKFG1heF90YXNrc19wZXJfc2Vjb25kGAEgASgLMhwuZ29vZ2xlLnByb3RvYnVmLkRvdWJsZVZhbHVlItoCChdUYXNrUXVldWVWZXJzaW9uaW5nSW5mbxJXChpjdXJyZW50X2RlcGxveW1lbnRfdmVyc2lvbhgHIAEoCzIzLnRlbXBvcmFsLmFwaS5kZXBsb3ltZW50LnYxLldvcmtlckRlcGxveW1lbnRWZXJzaW9uEhsKD2N1cnJlbnRfdmVyc2lvbhgBIAEoCUICGAESVwoacmFtcGluZ19kZXBsb3ltZW50X3ZlcnNpb24YCSABKAsyMy50ZW1wb3JhbC5hcGkuZGVwbG95bWVudC52MS5Xb3JrZXJEZXBsb3ltZW50VmVyc2lvbhIbCg9yYW1waW5nX3ZlcnNpb24YAiABKAlCAhgBEiIKGnJhbXBpbmdfdmVyc2lvbl9wZXJjZW50YWdlGAMgASgCEi8KC3VwZGF0ZV90aW1lGAQgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJXChlUYXNrUXVldWVWZXJzaW9uU2VsZWN0aW9uEhEKCWJ1aWxkX2lkcxgBIAMoCRITCgt1bnZlcnNpb25lZBgCIAEoCBISCgphbGxfYWN0aXZlGAMgASgIIpUCChRUYXNrUXVldWVWZXJzaW9uSW5mbxJSCgp0eXBlc19pbmZvGAEgAygLMj4udGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVWZXJzaW9uSW5mby5UeXBlc0luZm9FbnRyeRJJChF0YXNrX3JlYWNoYWJpbGl0eRgCIAEoDjIuLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5CdWlsZElkVGFza1JlYWNoYWJpbGl0eRpeCg5UeXBlc0luZm9FbnRyeRILCgNrZXkYASABKAUSOwoFdmFsdWUYAiABKAsyLC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZVR5cGVJbmZvOgI4ASKFAQoRVGFza1F1ZXVlVHlwZUluZm8SNgoHcG9sbGVycxgBIAMoCzIlLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuUG9sbGVySW5mbxI4CgVzdGF0cxgCIAEoCzIpLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlU3RhdHMipAEKDlRhc2tRdWV1ZVN0YXRzEiEKGWFwcHJveGltYXRlX2JhY2tsb2dfY291bnQYASABKAMSOgoXYXBwcm94aW1hdGVfYmFja2xvZ19hZ2UYAiABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb24SFgoOdGFza3NfYWRkX3JhdGUYAyABKAISGwoTdGFza3NfZGlzcGF0Y2hfcmF0ZRgEIAEoAiKsAQoPVGFza1F1ZXVlU3RhdHVzEhoKEmJhY2tsb2dfY291bnRfaGludBgBIAEoAxISCgpyZWFkX2xldmVsGAIgASgDEhEKCWFja19sZXZlbBgDIAEoAxIXCg9yYXRlX3Blcl9zZWNvbmQYBCABKAESPQoNdGFza19pZF9ibG9jaxgFIAEoCzImLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza0lkQmxvY2siLwoLVGFza0lkQmxvY2sSEAoIc3RhcnRfaWQYASABKAMSDgoGZW5kX2lkGAIgASgDIkIKGlRhc2tRdWV1ZVBhcnRpdGlvbk1ldGFkYXRhEgsKA2tleRgBIAEoCRIXCg9vd25lcl9ob3N0X25hbWUYAiABKAkimgIKClBvbGxlckluZm8SNAoQbGFzdF9hY2Nlc3NfdGltZRgBIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASEAoIaWRlbnRpdHkYAiABKAkSFwoPcmF0ZV9wZXJfc2Vjb25kGAMgASgBEloKG3dvcmtlcl92ZXJzaW9uX2NhcGFiaWxpdGllcxgEIAEoCzIxLnRlbXBvcmFsLmFwaS5jb21tb24udjEuV29ya2VyVmVyc2lvbkNhcGFiaWxpdGllc0ICGAESTwoSZGVwbG95bWVudF9vcHRpb25zGAUgASgLMjMudGVtcG9yYWwuYXBpLmRlcGxveW1lbnQudjEuV29ya2VyRGVwbG95bWVudE9wdGlvbnMimgEKGVN0aWNreUV4ZWN1dGlvbkF0dHJpYnV0ZXMSPwoRd29ya2VyX3Rhc2tfcXVldWUYASABKAsyJC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLlRhc2tRdWV1ZRI8ChlzY2hlZHVsZV90b19zdGFydF90aW1lb3V0GAIgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uIikKFENvbXBhdGlibGVWZXJzaW9uU2V0EhEKCWJ1aWxkX2lkcxgBIAMoCSJqChVUYXNrUXVldWVSZWFjaGFiaWxpdHkSEgoKdGFza19xdWV1ZRgBIAEoCRI9CgxyZWFjaGFiaWxpdHkYAiADKA4yJy50ZW1wb3JhbC5hcGkuZW51bXMudjEuVGFza1JlYWNoYWJpbGl0eSJ6ChNCdWlsZElkUmVhY2hhYmlsaXR5EhAKCGJ1aWxkX2lkGAEgASgJElEKF3Rhc2tfcXVldWVfcmVhY2hhYmlsaXR5GAIgAygLMjAudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5UYXNrUXVldWVSZWFjaGFiaWxpdHkiKwoQUmFtcEJ5UGVyY2VudGFnZRIXCg9yYW1wX3BlcmNlbnRhZ2UYASABKAIigAEKFUJ1aWxkSWRBc3NpZ25tZW50UnVsZRIXCg90YXJnZXRfYnVpbGRfaWQYASABKAkSRgoPcGVyY2VudGFnZV9yYW1wGAMgASgLMisudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5SYW1wQnlQZXJjZW50YWdlSABCBgoEcmFtcCJRCh1Db21wYXRpYmxlQnVpbGRJZFJlZGlyZWN0UnVsZRIXCg9zb3VyY2VfYnVpbGRfaWQYASABKAkSFwoPdGFyZ2V0X2J1aWxkX2lkGAIgASgJIpMBCiBUaW1lc3RhbXBlZEJ1aWxkSWRBc3NpZ25tZW50UnVsZRI+CgRydWxlGAEgASgLMjAudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5CdWlsZElkQXNzaWdubWVudFJ1bGUSLwoLY3JlYXRlX3RpbWUYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIqMBCihUaW1lc3RhbXBlZENvbXBhdGlibGVCdWlsZElkUmVkaXJlY3RSdWxlEkYKBHJ1bGUYASABKAsyOC50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkNvbXBhdGlibGVCdWlsZElkUmVkaXJlY3RSdWxlEi8KC2NyZWF0ZV90aW1lGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCI+ChVQb2xsZXJTY2FsaW5nRGVjaXNpb24SJQodcG9sbF9yZXF1ZXN0X2RlbHRhX3N1Z2dlc3Rpb24YASABKAUiKAoJUmF0ZUxpbWl0EhsKE3JlcXVlc3RzX3Blcl9zZWNvbmQYASABKAIiagoOQ29uZmlnTWV0YWRhdGESDgoGcmVhc29uGAEgASgJEhcKD3VwZGF0ZV9pZGVudGl0eRgCIAEoCRIvCgt1cGRhdGVfdGltZRgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiiAEKD1JhdGVMaW1pdENvbmZpZxI4CgpyYXRlX2xpbWl0GAEgASgLMiQudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5SYXRlTGltaXQSOwoIbWV0YWRhdGEYAiABKAsyKS50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxLkNvbmZpZ01ldGFkYXRhItkCCg9UYXNrUXVldWVDb25maWcSRAoQcXVldWVfcmF0ZV9saW1pdBgBIAEoCzIqLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuUmF0ZUxpbWl0Q29uZmlnElQKIGZhaXJuZXNzX2tleXNfcmF0ZV9saW1pdF9kZWZhdWx0GAIgASgLMioudGVtcG9yYWwuYXBpLnRhc2txdWV1ZS52MS5SYXRlTGltaXRDb25maWcSagoZZmFpcm5lc3Nfd2VpZ2h0X292ZXJyaWRlcxgDIAMoCzJHLnRlbXBvcmFsLmFwaS50YXNrcXVldWUudjEuVGFza1F1ZXVlQ29uZmlnLkZhaXJuZXNzV2VpZ2h0T3ZlcnJpZGVzRW50cnkaPgocRmFpcm5lc3NXZWlnaHRPdmVycmlkZXNFbnRyeRILCgNrZXkYASABKAkSDQoFdmFsdWUYAiABKAI6AjgBQpgBChxpby50ZW1wb3JhbC5hcGkudGFza3F1ZXVlLnYxQgxNZXNzYWdlUHJvdG9QAVopZ28udGVtcG9yYWwuaW8vYXBpL3Rhc2txdWV1ZS92MTt0YXNrcXVldWWqAhtUZW1wb3JhbGlvLkFwaS5UYXNrUXVldWUuVjHqAh5UZW1wb3JhbGlvOjpBcGk6OlRhc2tRdWV1ZTo6VjFiBnByb3RvMw", [file_google_protobuf_duration, file_google_protobuf_timestamp, file_google_protobuf_wrappers, file_temporal_api_enums_v1_task_queue, file_temporal_api_common_v1_message, file_temporal_api_deployment_v1_message]);
|
|
13
|
+
/**
|
|
14
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueue.
|
|
15
|
+
* Use `create(TaskQueueSchema)` to create a new message.
|
|
16
|
+
*/
|
|
17
|
+
export const TaskQueueSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 0);
|
|
18
|
+
/**
|
|
19
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueMetadata.
|
|
20
|
+
* Use `create(TaskQueueMetadataSchema)` to create a new message.
|
|
21
|
+
*/
|
|
22
|
+
export const TaskQueueMetadataSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 1);
|
|
23
|
+
/**
|
|
24
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueVersioningInfo.
|
|
25
|
+
* Use `create(TaskQueueVersioningInfoSchema)` to create a new message.
|
|
26
|
+
*/
|
|
27
|
+
export const TaskQueueVersioningInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 2);
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueVersionSelection.
|
|
30
|
+
* Use `create(TaskQueueVersionSelectionSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const TaskQueueVersionSelectionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 3);
|
|
33
|
+
/**
|
|
34
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueVersionInfo.
|
|
35
|
+
* Use `create(TaskQueueVersionInfoSchema)` to create a new message.
|
|
36
|
+
*/
|
|
37
|
+
export const TaskQueueVersionInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 4);
|
|
38
|
+
/**
|
|
39
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueTypeInfo.
|
|
40
|
+
* Use `create(TaskQueueTypeInfoSchema)` to create a new message.
|
|
41
|
+
*/
|
|
42
|
+
export const TaskQueueTypeInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 5);
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueStats.
|
|
45
|
+
* Use `create(TaskQueueStatsSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export const TaskQueueStatsSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 6);
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueStatus.
|
|
50
|
+
* Use `create(TaskQueueStatusSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export const TaskQueueStatusSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 7);
|
|
53
|
+
/**
|
|
54
|
+
* Describes the message temporal.api.taskqueue.v1.TaskIdBlock.
|
|
55
|
+
* Use `create(TaskIdBlockSchema)` to create a new message.
|
|
56
|
+
*/
|
|
57
|
+
export const TaskIdBlockSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 8);
|
|
58
|
+
/**
|
|
59
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueuePartitionMetadata.
|
|
60
|
+
* Use `create(TaskQueuePartitionMetadataSchema)` to create a new message.
|
|
61
|
+
*/
|
|
62
|
+
export const TaskQueuePartitionMetadataSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 9);
|
|
63
|
+
/**
|
|
64
|
+
* Describes the message temporal.api.taskqueue.v1.PollerInfo.
|
|
65
|
+
* Use `create(PollerInfoSchema)` to create a new message.
|
|
66
|
+
*/
|
|
67
|
+
export const PollerInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 10);
|
|
68
|
+
/**
|
|
69
|
+
* Describes the message temporal.api.taskqueue.v1.StickyExecutionAttributes.
|
|
70
|
+
* Use `create(StickyExecutionAttributesSchema)` to create a new message.
|
|
71
|
+
*/
|
|
72
|
+
export const StickyExecutionAttributesSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 11);
|
|
73
|
+
/**
|
|
74
|
+
* Describes the message temporal.api.taskqueue.v1.CompatibleVersionSet.
|
|
75
|
+
* Use `create(CompatibleVersionSetSchema)` to create a new message.
|
|
76
|
+
*/
|
|
77
|
+
export const CompatibleVersionSetSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 12);
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueReachability.
|
|
80
|
+
* Use `create(TaskQueueReachabilitySchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export const TaskQueueReachabilitySchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 13);
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message temporal.api.taskqueue.v1.BuildIdReachability.
|
|
85
|
+
* Use `create(BuildIdReachabilitySchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export const BuildIdReachabilitySchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 14);
|
|
88
|
+
/**
|
|
89
|
+
* Describes the message temporal.api.taskqueue.v1.RampByPercentage.
|
|
90
|
+
* Use `create(RampByPercentageSchema)` to create a new message.
|
|
91
|
+
*/
|
|
92
|
+
export const RampByPercentageSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 15);
|
|
93
|
+
/**
|
|
94
|
+
* Describes the message temporal.api.taskqueue.v1.BuildIdAssignmentRule.
|
|
95
|
+
* Use `create(BuildIdAssignmentRuleSchema)` to create a new message.
|
|
96
|
+
*/
|
|
97
|
+
export const BuildIdAssignmentRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 16);
|
|
98
|
+
/**
|
|
99
|
+
* Describes the message temporal.api.taskqueue.v1.CompatibleBuildIdRedirectRule.
|
|
100
|
+
* Use `create(CompatibleBuildIdRedirectRuleSchema)` to create a new message.
|
|
101
|
+
*/
|
|
102
|
+
export const CompatibleBuildIdRedirectRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 17);
|
|
103
|
+
/**
|
|
104
|
+
* Describes the message temporal.api.taskqueue.v1.TimestampedBuildIdAssignmentRule.
|
|
105
|
+
* Use `create(TimestampedBuildIdAssignmentRuleSchema)` to create a new message.
|
|
106
|
+
*/
|
|
107
|
+
export const TimestampedBuildIdAssignmentRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 18);
|
|
108
|
+
/**
|
|
109
|
+
* Describes the message temporal.api.taskqueue.v1.TimestampedCompatibleBuildIdRedirectRule.
|
|
110
|
+
* Use `create(TimestampedCompatibleBuildIdRedirectRuleSchema)` to create a new message.
|
|
111
|
+
*/
|
|
112
|
+
export const TimestampedCompatibleBuildIdRedirectRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 19);
|
|
113
|
+
/**
|
|
114
|
+
* Describes the message temporal.api.taskqueue.v1.PollerScalingDecision.
|
|
115
|
+
* Use `create(PollerScalingDecisionSchema)` to create a new message.
|
|
116
|
+
*/
|
|
117
|
+
export const PollerScalingDecisionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 20);
|
|
118
|
+
/**
|
|
119
|
+
* Describes the message temporal.api.taskqueue.v1.RateLimit.
|
|
120
|
+
* Use `create(RateLimitSchema)` to create a new message.
|
|
121
|
+
*/
|
|
122
|
+
export const RateLimitSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 21);
|
|
123
|
+
/**
|
|
124
|
+
* Describes the message temporal.api.taskqueue.v1.ConfigMetadata.
|
|
125
|
+
* Use `create(ConfigMetadataSchema)` to create a new message.
|
|
126
|
+
*/
|
|
127
|
+
export const ConfigMetadataSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 22);
|
|
128
|
+
/**
|
|
129
|
+
* Describes the message temporal.api.taskqueue.v1.RateLimitConfig.
|
|
130
|
+
* Use `create(RateLimitConfigSchema)` to create a new message.
|
|
131
|
+
*/
|
|
132
|
+
export const RateLimitConfigSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 23);
|
|
133
|
+
/**
|
|
134
|
+
* Describes the message temporal.api.taskqueue.v1.TaskQueueConfig.
|
|
135
|
+
* Use `create(TaskQueueConfigSchema)` to create a new message.
|
|
136
|
+
*/
|
|
137
|
+
export const TaskQueueConfigSchema = /*@__PURE__*/ messageDesc(file_temporal_api_taskqueue_v1_message, 24);
|
|
138
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/taskqueue/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,230 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Header, Payloads, WorkflowExecution } from "../../common/v1/message_pb.js";
|
|
3
|
+
import type { UpdateWorkflowExecutionLifecycleStage } from "../../enums/v1/update_pb.js";
|
|
4
|
+
import type { Failure } from "../../failure/v1/message_pb.js";
|
|
5
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file temporal/api/update/v1/message.proto.
|
|
8
|
+
*/
|
|
9
|
+
export declare const file_temporal_api_update_v1_message: GenFile;
|
|
10
|
+
/**
|
|
11
|
+
* Specifies client's intent to wait for Update results.
|
|
12
|
+
*
|
|
13
|
+
* @generated from message temporal.api.update.v1.WaitPolicy
|
|
14
|
+
*/
|
|
15
|
+
export type WaitPolicy = Message<"temporal.api.update.v1.WaitPolicy"> & {
|
|
16
|
+
/**
|
|
17
|
+
* Indicates the Update lifecycle stage that the Update must reach before
|
|
18
|
+
* API call is returned.
|
|
19
|
+
* NOTE: This field works together with API call timeout which is limited by
|
|
20
|
+
* server timeout (maximum wait time). If server timeout is expired before
|
|
21
|
+
* user specified timeout, API call returns even if specified stage is not reached.
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage lifecycle_stage = 1;
|
|
24
|
+
*/
|
|
25
|
+
lifecycleStage: UpdateWorkflowExecutionLifecycleStage;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message temporal.api.update.v1.WaitPolicy.
|
|
29
|
+
* Use `create(WaitPolicySchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
export declare const WaitPolicySchema: GenMessage<WaitPolicy>;
|
|
32
|
+
/**
|
|
33
|
+
* The data needed by a client to refer to a previously invoked Workflow Update.
|
|
34
|
+
*
|
|
35
|
+
* @generated from message temporal.api.update.v1.UpdateRef
|
|
36
|
+
*/
|
|
37
|
+
export type UpdateRef = Message<"temporal.api.update.v1.UpdateRef"> & {
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: temporal.api.common.v1.WorkflowExecution workflow_execution = 1;
|
|
40
|
+
*/
|
|
41
|
+
workflowExecution?: WorkflowExecution;
|
|
42
|
+
/**
|
|
43
|
+
* @generated from field: string update_id = 2;
|
|
44
|
+
*/
|
|
45
|
+
updateId: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message temporal.api.update.v1.UpdateRef.
|
|
49
|
+
* Use `create(UpdateRefSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export declare const UpdateRefSchema: GenMessage<UpdateRef>;
|
|
52
|
+
/**
|
|
53
|
+
* The outcome of a Workflow Update: success or failure.
|
|
54
|
+
*
|
|
55
|
+
* @generated from message temporal.api.update.v1.Outcome
|
|
56
|
+
*/
|
|
57
|
+
export type Outcome = Message<"temporal.api.update.v1.Outcome"> & {
|
|
58
|
+
/**
|
|
59
|
+
* @generated from oneof temporal.api.update.v1.Outcome.value
|
|
60
|
+
*/
|
|
61
|
+
value: {
|
|
62
|
+
/**
|
|
63
|
+
* @generated from field: temporal.api.common.v1.Payloads success = 1;
|
|
64
|
+
*/
|
|
65
|
+
value: Payloads;
|
|
66
|
+
case: "success";
|
|
67
|
+
} | {
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: temporal.api.failure.v1.Failure failure = 2;
|
|
70
|
+
*/
|
|
71
|
+
value: Failure;
|
|
72
|
+
case: "failure";
|
|
73
|
+
} | {
|
|
74
|
+
case: undefined;
|
|
75
|
+
value?: undefined;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
/**
|
|
79
|
+
* Describes the message temporal.api.update.v1.Outcome.
|
|
80
|
+
* Use `create(OutcomeSchema)` to create a new message.
|
|
81
|
+
*/
|
|
82
|
+
export declare const OutcomeSchema: GenMessage<Outcome>;
|
|
83
|
+
/**
|
|
84
|
+
* Metadata about a Workflow Update.
|
|
85
|
+
*
|
|
86
|
+
* @generated from message temporal.api.update.v1.Meta
|
|
87
|
+
*/
|
|
88
|
+
export type Meta = Message<"temporal.api.update.v1.Meta"> & {
|
|
89
|
+
/**
|
|
90
|
+
* An ID with workflow-scoped uniqueness for this Update.
|
|
91
|
+
*
|
|
92
|
+
* @generated from field: string update_id = 1;
|
|
93
|
+
*/
|
|
94
|
+
updateId: string;
|
|
95
|
+
/**
|
|
96
|
+
* A string identifying the agent that requested this Update.
|
|
97
|
+
*
|
|
98
|
+
* @generated from field: string identity = 2;
|
|
99
|
+
*/
|
|
100
|
+
identity: string;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* Describes the message temporal.api.update.v1.Meta.
|
|
104
|
+
* Use `create(MetaSchema)` to create a new message.
|
|
105
|
+
*/
|
|
106
|
+
export declare const MetaSchema: GenMessage<Meta>;
|
|
107
|
+
/**
|
|
108
|
+
* @generated from message temporal.api.update.v1.Input
|
|
109
|
+
*/
|
|
110
|
+
export type Input = Message<"temporal.api.update.v1.Input"> & {
|
|
111
|
+
/**
|
|
112
|
+
* Headers that are passed with the Update from the requesting entity.
|
|
113
|
+
* These can include things like auth or tracing tokens.
|
|
114
|
+
*
|
|
115
|
+
* @generated from field: temporal.api.common.v1.Header header = 1;
|
|
116
|
+
*/
|
|
117
|
+
header?: Header;
|
|
118
|
+
/**
|
|
119
|
+
* The name of the Update handler to invoke on the target Workflow.
|
|
120
|
+
*
|
|
121
|
+
* @generated from field: string name = 2;
|
|
122
|
+
*/
|
|
123
|
+
name: string;
|
|
124
|
+
/**
|
|
125
|
+
* The arguments to pass to the named Update handler.
|
|
126
|
+
*
|
|
127
|
+
* @generated from field: temporal.api.common.v1.Payloads args = 3;
|
|
128
|
+
*/
|
|
129
|
+
args?: Payloads;
|
|
130
|
+
};
|
|
131
|
+
/**
|
|
132
|
+
* Describes the message temporal.api.update.v1.Input.
|
|
133
|
+
* Use `create(InputSchema)` to create a new message.
|
|
134
|
+
*/
|
|
135
|
+
export declare const InputSchema: GenMessage<Input>;
|
|
136
|
+
/**
|
|
137
|
+
* The client request that triggers a Workflow Update.
|
|
138
|
+
*
|
|
139
|
+
* @generated from message temporal.api.update.v1.Request
|
|
140
|
+
*/
|
|
141
|
+
export type Request = Message<"temporal.api.update.v1.Request"> & {
|
|
142
|
+
/**
|
|
143
|
+
* @generated from field: temporal.api.update.v1.Meta meta = 1;
|
|
144
|
+
*/
|
|
145
|
+
meta?: Meta;
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: temporal.api.update.v1.Input input = 2;
|
|
148
|
+
*/
|
|
149
|
+
input?: Input;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Describes the message temporal.api.update.v1.Request.
|
|
153
|
+
* Use `create(RequestSchema)` to create a new message.
|
|
154
|
+
*/
|
|
155
|
+
export declare const RequestSchema: GenMessage<Request>;
|
|
156
|
+
/**
|
|
157
|
+
* An Update protocol message indicating that a Workflow Update has been rejected.
|
|
158
|
+
*
|
|
159
|
+
* @generated from message temporal.api.update.v1.Rejection
|
|
160
|
+
*/
|
|
161
|
+
export type Rejection = Message<"temporal.api.update.v1.Rejection"> & {
|
|
162
|
+
/**
|
|
163
|
+
* @generated from field: string rejected_request_message_id = 1;
|
|
164
|
+
*/
|
|
165
|
+
rejectedRequestMessageId: string;
|
|
166
|
+
/**
|
|
167
|
+
* @generated from field: int64 rejected_request_sequencing_event_id = 2;
|
|
168
|
+
*/
|
|
169
|
+
rejectedRequestSequencingEventId: bigint;
|
|
170
|
+
/**
|
|
171
|
+
* @generated from field: temporal.api.update.v1.Request rejected_request = 3;
|
|
172
|
+
*/
|
|
173
|
+
rejectedRequest?: Request;
|
|
174
|
+
/**
|
|
175
|
+
* @generated from field: temporal.api.failure.v1.Failure failure = 4;
|
|
176
|
+
*/
|
|
177
|
+
failure?: Failure;
|
|
178
|
+
};
|
|
179
|
+
/**
|
|
180
|
+
* Describes the message temporal.api.update.v1.Rejection.
|
|
181
|
+
* Use `create(RejectionSchema)` to create a new message.
|
|
182
|
+
*/
|
|
183
|
+
export declare const RejectionSchema: GenMessage<Rejection>;
|
|
184
|
+
/**
|
|
185
|
+
* An Update protocol message indicating that a Workflow Update has
|
|
186
|
+
* been accepted (i.e. passed the worker-side validation phase).
|
|
187
|
+
*
|
|
188
|
+
* @generated from message temporal.api.update.v1.Acceptance
|
|
189
|
+
*/
|
|
190
|
+
export type Acceptance = Message<"temporal.api.update.v1.Acceptance"> & {
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: string accepted_request_message_id = 1;
|
|
193
|
+
*/
|
|
194
|
+
acceptedRequestMessageId: string;
|
|
195
|
+
/**
|
|
196
|
+
* @generated from field: int64 accepted_request_sequencing_event_id = 2;
|
|
197
|
+
*/
|
|
198
|
+
acceptedRequestSequencingEventId: bigint;
|
|
199
|
+
/**
|
|
200
|
+
* @generated from field: temporal.api.update.v1.Request accepted_request = 3;
|
|
201
|
+
*/
|
|
202
|
+
acceptedRequest?: Request;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* Describes the message temporal.api.update.v1.Acceptance.
|
|
206
|
+
* Use `create(AcceptanceSchema)` to create a new message.
|
|
207
|
+
*/
|
|
208
|
+
export declare const AcceptanceSchema: GenMessage<Acceptance>;
|
|
209
|
+
/**
|
|
210
|
+
* An Update protocol message indicating that a Workflow Update has
|
|
211
|
+
* completed with the contained outcome.
|
|
212
|
+
*
|
|
213
|
+
* @generated from message temporal.api.update.v1.Response
|
|
214
|
+
*/
|
|
215
|
+
export type Response = Message<"temporal.api.update.v1.Response"> & {
|
|
216
|
+
/**
|
|
217
|
+
* @generated from field: temporal.api.update.v1.Meta meta = 1;
|
|
218
|
+
*/
|
|
219
|
+
meta?: Meta;
|
|
220
|
+
/**
|
|
221
|
+
* @generated from field: temporal.api.update.v1.Outcome outcome = 2;
|
|
222
|
+
*/
|
|
223
|
+
outcome?: Outcome;
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* Describes the message temporal.api.update.v1.Response.
|
|
227
|
+
* Use `create(ResponseSchema)` to create a new message.
|
|
228
|
+
*/
|
|
229
|
+
export declare const ResponseSchema: GenMessage<Response>;
|
|
230
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/update/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/update/v1/message.proto (package temporal.api.update.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
6
|
+
import { file_temporal_api_enums_v1_update } from "../../enums/v1/update_pb.js";
|
|
7
|
+
import { file_temporal_api_failure_v1_message } from "../../failure/v1/message_pb.js";
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file temporal/api/update/v1/message.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_temporal_api_update_v1_message = /*@__PURE__*/ fileDesc("CiR0ZW1wb3JhbC9hcGkvdXBkYXRlL3YxL21lc3NhZ2UucHJvdG8SFnRlbXBvcmFsLmFwaS51cGRhdGUudjEiYwoKV2FpdFBvbGljeRJVCg9saWZlY3ljbGVfc3RhZ2UYASABKA4yPC50ZW1wb3JhbC5hcGkuZW51bXMudjEuVXBkYXRlV29ya2Zsb3dFeGVjdXRpb25MaWZlY3ljbGVTdGFnZSJlCglVcGRhdGVSZWYSRQoSd29ya2Zsb3dfZXhlY3V0aW9uGAEgASgLMikudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5Xb3JrZmxvd0V4ZWN1dGlvbhIRCgl1cGRhdGVfaWQYAiABKAkifAoHT3V0Y29tZRIzCgdzdWNjZXNzGAEgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2Fkc0gAEjMKB2ZhaWx1cmUYAiABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlSABCBwoFdmFsdWUiKwoETWV0YRIRCgl1cGRhdGVfaWQYASABKAkSEAoIaWRlbnRpdHkYAiABKAkidQoFSW5wdXQSLgoGaGVhZGVyGAEgASgLMh4udGVtcG9yYWwuYXBpLmNvbW1vbi52MS5IZWFkZXISDAoEbmFtZRgCIAEoCRIuCgRhcmdzGAMgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcyJjCgdSZXF1ZXN0EioKBG1ldGEYASABKAsyHC50ZW1wb3JhbC5hcGkudXBkYXRlLnYxLk1ldGESLAoFaW5wdXQYAiABKAsyHS50ZW1wb3JhbC5hcGkudXBkYXRlLnYxLklucHV0IswBCglSZWplY3Rpb24SIwobcmVqZWN0ZWRfcmVxdWVzdF9tZXNzYWdlX2lkGAEgASgJEiwKJHJlamVjdGVkX3JlcXVlc3Rfc2VxdWVuY2luZ19ldmVudF9pZBgCIAEoAxI5ChByZWplY3RlZF9yZXF1ZXN0GAMgASgLMh8udGVtcG9yYWwuYXBpLnVwZGF0ZS52MS5SZXF1ZXN0EjEKB2ZhaWx1cmUYBCABKAsyIC50ZW1wb3JhbC5hcGkuZmFpbHVyZS52MS5GYWlsdXJlIpoBCgpBY2NlcHRhbmNlEiMKG2FjY2VwdGVkX3JlcXVlc3RfbWVzc2FnZV9pZBgBIAEoCRIsCiRhY2NlcHRlZF9yZXF1ZXN0X3NlcXVlbmNpbmdfZXZlbnRfaWQYAiABKAMSOQoQYWNjZXB0ZWRfcmVxdWVzdBgDIAEoCzIfLnRlbXBvcmFsLmFwaS51cGRhdGUudjEuUmVxdWVzdCJoCghSZXNwb25zZRIqCgRtZXRhGAEgASgLMhwudGVtcG9yYWwuYXBpLnVwZGF0ZS52MS5NZXRhEjAKB291dGNvbWUYAiABKAsyHy50ZW1wb3JhbC5hcGkudXBkYXRlLnYxLk91dGNvbWVCiQEKGWlvLnRlbXBvcmFsLmFwaS51cGRhdGUudjFCDE1lc3NhZ2VQcm90b1ABWiNnby50ZW1wb3JhbC5pby9hcGkvdXBkYXRlL3YxO3VwZGF0ZaoCGFRlbXBvcmFsaW8uQXBpLlVwZGF0ZS5WMeoCG1RlbXBvcmFsaW86OkFwaTo6VXBkYXRlOjpWMWIGcHJvdG8z", [file_temporal_api_common_v1_message, file_temporal_api_enums_v1_update, file_temporal_api_failure_v1_message]);
|
|
12
|
+
/**
|
|
13
|
+
* Describes the message temporal.api.update.v1.WaitPolicy.
|
|
14
|
+
* Use `create(WaitPolicySchema)` to create a new message.
|
|
15
|
+
*/
|
|
16
|
+
export const WaitPolicySchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 0);
|
|
17
|
+
/**
|
|
18
|
+
* Describes the message temporal.api.update.v1.UpdateRef.
|
|
19
|
+
* Use `create(UpdateRefSchema)` to create a new message.
|
|
20
|
+
*/
|
|
21
|
+
export const UpdateRefSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 1);
|
|
22
|
+
/**
|
|
23
|
+
* Describes the message temporal.api.update.v1.Outcome.
|
|
24
|
+
* Use `create(OutcomeSchema)` to create a new message.
|
|
25
|
+
*/
|
|
26
|
+
export const OutcomeSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 2);
|
|
27
|
+
/**
|
|
28
|
+
* Describes the message temporal.api.update.v1.Meta.
|
|
29
|
+
* Use `create(MetaSchema)` to create a new message.
|
|
30
|
+
*/
|
|
31
|
+
export const MetaSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 3);
|
|
32
|
+
/**
|
|
33
|
+
* Describes the message temporal.api.update.v1.Input.
|
|
34
|
+
* Use `create(InputSchema)` to create a new message.
|
|
35
|
+
*/
|
|
36
|
+
export const InputSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 4);
|
|
37
|
+
/**
|
|
38
|
+
* Describes the message temporal.api.update.v1.Request.
|
|
39
|
+
* Use `create(RequestSchema)` to create a new message.
|
|
40
|
+
*/
|
|
41
|
+
export const RequestSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 5);
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message temporal.api.update.v1.Rejection.
|
|
44
|
+
* Use `create(RejectionSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export const RejectionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 6);
|
|
47
|
+
/**
|
|
48
|
+
* Describes the message temporal.api.update.v1.Acceptance.
|
|
49
|
+
* Use `create(AcceptanceSchema)` to create a new message.
|
|
50
|
+
*/
|
|
51
|
+
export const AcceptanceSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 7);
|
|
52
|
+
/**
|
|
53
|
+
* Describes the message temporal.api.update.v1.Response.
|
|
54
|
+
* Use `create(ResponseSchema)` to create a new message.
|
|
55
|
+
*/
|
|
56
|
+
export const ResponseSchema = /*@__PURE__*/ messageDesc(file_temporal_api_update_v1_message, 8);
|
|
57
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/update/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,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,iCAAiC,EAAE,MAAM,6BAA6B,CAAC;AAEhF,OAAO,EAAE,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAGtF;;GAEG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAAY,aAAa,CACvE,QAAQ,CAAC,sqDAAsqD,EAAE,CAAC,mCAAmC,EAAE,iCAAiC,EAAE,oCAAoC,CAAC,CAAC,CAAC;AAoBnyD;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAmBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAA0B,aAAa,CACjE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AA0BtD;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAwB,aAAa,CAC7D,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAuBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,UAAU,GAAqB,aAAa,CACvD,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AA6BtD;;;GAGG;AACH,MAAM,CAAC,MAAM,WAAW,GAAsB,aAAa,CACzD,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAmBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,aAAa,GAAwB,aAAa,CAC7D,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AA6BtD;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAA0B,aAAa,CACjE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAyBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAA2B,aAAa,CACnE,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC;AAoBtD;;;GAGG;AACH,MAAM,CAAC,MAAM,cAAc,GAAyB,aAAa,CAC/D,WAAW,CAAC,mCAAmC,EAAE,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { Severity } from "../../enums/v1/common_pb.js";
|
|
4
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
5
|
+
/**
|
|
6
|
+
* Describes the file temporal/api/version/v1/message.proto.
|
|
7
|
+
*/
|
|
8
|
+
export declare const file_temporal_api_version_v1_message: GenFile;
|
|
9
|
+
/**
|
|
10
|
+
* ReleaseInfo contains information about specific version of temporal.
|
|
11
|
+
*
|
|
12
|
+
* @generated from message temporal.api.version.v1.ReleaseInfo
|
|
13
|
+
*/
|
|
14
|
+
export type ReleaseInfo = Message<"temporal.api.version.v1.ReleaseInfo"> & {
|
|
15
|
+
/**
|
|
16
|
+
* @generated from field: string version = 1;
|
|
17
|
+
*/
|
|
18
|
+
version: string;
|
|
19
|
+
/**
|
|
20
|
+
* @generated from field: google.protobuf.Timestamp release_time = 2;
|
|
21
|
+
*/
|
|
22
|
+
releaseTime?: Timestamp;
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: string notes = 3;
|
|
25
|
+
*/
|
|
26
|
+
notes: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message temporal.api.version.v1.ReleaseInfo.
|
|
30
|
+
* Use `create(ReleaseInfoSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export declare const ReleaseInfoSchema: GenMessage<ReleaseInfo>;
|
|
33
|
+
/**
|
|
34
|
+
* Alert contains notification and severity.
|
|
35
|
+
*
|
|
36
|
+
* @generated from message temporal.api.version.v1.Alert
|
|
37
|
+
*/
|
|
38
|
+
export type Alert = Message<"temporal.api.version.v1.Alert"> & {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from field: string message = 1;
|
|
41
|
+
*/
|
|
42
|
+
message: string;
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: temporal.api.enums.v1.Severity severity = 2;
|
|
45
|
+
*/
|
|
46
|
+
severity: Severity;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Describes the message temporal.api.version.v1.Alert.
|
|
50
|
+
* Use `create(AlertSchema)` to create a new message.
|
|
51
|
+
*/
|
|
52
|
+
export declare const AlertSchema: GenMessage<Alert>;
|
|
53
|
+
/**
|
|
54
|
+
* VersionInfo contains details about current and recommended release versions as well as alerts and upgrade instructions.
|
|
55
|
+
*
|
|
56
|
+
* @generated from message temporal.api.version.v1.VersionInfo
|
|
57
|
+
*/
|
|
58
|
+
export type VersionInfo = Message<"temporal.api.version.v1.VersionInfo"> & {
|
|
59
|
+
/**
|
|
60
|
+
* @generated from field: temporal.api.version.v1.ReleaseInfo current = 1;
|
|
61
|
+
*/
|
|
62
|
+
current?: ReleaseInfo;
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: temporal.api.version.v1.ReleaseInfo recommended = 2;
|
|
65
|
+
*/
|
|
66
|
+
recommended?: ReleaseInfo;
|
|
67
|
+
/**
|
|
68
|
+
* @generated from field: string instructions = 3;
|
|
69
|
+
*/
|
|
70
|
+
instructions: string;
|
|
71
|
+
/**
|
|
72
|
+
* @generated from field: repeated temporal.api.version.v1.Alert alerts = 4;
|
|
73
|
+
*/
|
|
74
|
+
alerts: Alert[];
|
|
75
|
+
/**
|
|
76
|
+
* @generated from field: google.protobuf.Timestamp last_update_time = 5;
|
|
77
|
+
*/
|
|
78
|
+
lastUpdateTime?: Timestamp;
|
|
79
|
+
};
|
|
80
|
+
/**
|
|
81
|
+
* Describes the message temporal.api.version.v1.VersionInfo.
|
|
82
|
+
* Use `create(VersionInfoSchema)` to create a new message.
|
|
83
|
+
*/
|
|
84
|
+
export declare const VersionInfoSchema: GenMessage<VersionInfo>;
|
|
85
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/version/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,QAAQ,EAAE,MAAM,6BAA6B,CAAC;AAE5D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,oBAAoB,CAAC;AAElD;;GAEG;AACH,eAAO,MAAM,oCAAoC,EAAE,OAC43B,CAAC;AAEh7B;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IACzE;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC;IAExB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,WAAW,CACA,CAAC;AAEvD;;;;GAIG;AACH,MAAM,MAAM,KAAK,GAAG,OAAO,CAAC,+BAA+B,CAAC,GAAG;IAC7D;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,QAAQ,EAAE,QAAQ,CAAC;CACpB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,KAAK,CACY,CAAC;AAEvD;;;;GAIG;AACH,MAAM,MAAM,WAAW,GAAG,OAAO,CAAC,qCAAqC,CAAC,GAAG;IACzE;;OAEG;IACH,OAAO,CAAC,EAAE,WAAW,CAAC;IAEtB;;OAEG;IACH,WAAW,CAAC,EAAE,WAAW,CAAC;IAE1B;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,MAAM,EAAE,KAAK,EAAE,CAAC;IAEhB;;OAEG;IACH,cAAc,CAAC,EAAE,SAAS,CAAC;CAC5B,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,WAAW,CACA,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/version/v1/message.proto (package temporal.api.version.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_common } from "../../enums/v1/common_pb.js";
|
|
7
|
+
/**
|
|
8
|
+
* Describes the file temporal/api/version/v1/message.proto.
|
|
9
|
+
*/
|
|
10
|
+
export const file_temporal_api_version_v1_message = /*@__PURE__*/ fileDesc("CiV0ZW1wb3JhbC9hcGkvdmVyc2lvbi92MS9tZXNzYWdlLnByb3RvEhd0ZW1wb3JhbC5hcGkudmVyc2lvbi52MSJfCgtSZWxlYXNlSW5mbxIPCgd2ZXJzaW9uGAEgASgJEjAKDHJlbGVhc2VfdGltZRgCIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASDQoFbm90ZXMYAyABKAkiSwoFQWxlcnQSDwoHbWVzc2FnZRgBIAEoCRIxCghzZXZlcml0eRgCIAEoDjIfLnRlbXBvcmFsLmFwaS5lbnVtcy52MS5TZXZlcml0eSL7AQoLVmVyc2lvbkluZm8SNQoHY3VycmVudBgBIAEoCzIkLnRlbXBvcmFsLmFwaS52ZXJzaW9uLnYxLlJlbGVhc2VJbmZvEjkKC3JlY29tbWVuZGVkGAIgASgLMiQudGVtcG9yYWwuYXBpLnZlcnNpb24udjEuUmVsZWFzZUluZm8SFAoMaW5zdHJ1Y3Rpb25zGAMgASgJEi4KBmFsZXJ0cxgEIAMoCzIeLnRlbXBvcmFsLmFwaS52ZXJzaW9uLnYxLkFsZXJ0EjQKEGxhc3RfdXBkYXRlX3RpbWUYBSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wQo4BChppby50ZW1wb3JhbC5hcGkudmVyc2lvbi52MUIMTWVzc2FnZVByb3RvUAFaJWdvLnRlbXBvcmFsLmlvL2FwaS92ZXJzaW9uL3YxO3ZlcnNpb26qAhlUZW1wb3JhbGlvLkFwaS5WZXJzaW9uLlYx6gIcVGVtcG9yYWxpbzo6QXBpOjpWZXJzaW9uOjpWMWIGcHJvdG8z", [file_google_protobuf_timestamp, file_temporal_api_enums_v1_common]);
|
|
11
|
+
/**
|
|
12
|
+
* Describes the message temporal.api.version.v1.ReleaseInfo.
|
|
13
|
+
* Use `create(ReleaseInfoSchema)` to create a new message.
|
|
14
|
+
*/
|
|
15
|
+
export const ReleaseInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_version_v1_message, 0);
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message temporal.api.version.v1.Alert.
|
|
18
|
+
* Use `create(AlertSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const AlertSchema = /*@__PURE__*/ messageDesc(file_temporal_api_version_v1_message, 1);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message temporal.api.version.v1.VersionInfo.
|
|
23
|
+
* Use `create(VersionInfoSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const VersionInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_version_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/version/v1/message_pb.ts"],"names":[],"mappings":"AAAA,qFAAqF;AACrF,8GAA8G;AAC9G,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAErE,OAAO,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAExE,OAAO,EAAE,iCAAiC,EAAE,MAAM,6BAA6B,CAAC;AAGhF;;GAEG;AACH,MAAM,CAAC,MAAM,oCAAoC,GAAY,aAAa,CACxE,QAAQ,CAAC,81BAA81B,EAAE,CAAC,8BAA8B,EAAE,iCAAiC,CAAC,CAAC,CAAC;AAwBh7B;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAmBvD;;;GAGG;AACH,MAAM,CAAC,MAAM,WAAW,GAAsB,aAAa,CACzD,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC;AAkCvD;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA4B,aAAa,CACrE,WAAW,CAAC,oCAAoC,EAAE,CAAC,CAAC,CAAC"}
|