@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,464 @@
|
|
|
1
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { Duration, FieldMask, Timestamp } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { ActivityOptions } from "../../activity/v1/message_pb.js";
|
|
4
|
+
import type { Header, Payloads, ResetOptions } from "../../common/v1/message_pb.js";
|
|
5
|
+
import type { BatchOperationState } from "../../enums/v1/batch_operation_pb.js";
|
|
6
|
+
import type { ResetReapplyType, ResetType } from "../../enums/v1/reset_pb.js";
|
|
7
|
+
import type { WorkflowRuleSpec } from "../../rules/v1/message_pb.js";
|
|
8
|
+
import type { PostResetOperation, WorkflowExecutionOptions } from "../../workflow/v1/message_pb.js";
|
|
9
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
10
|
+
/**
|
|
11
|
+
* Describes the file temporal/api/batch/v1/message.proto.
|
|
12
|
+
*/
|
|
13
|
+
export declare const file_temporal_api_batch_v1_message: GenFile;
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message temporal.api.batch.v1.BatchOperationInfo
|
|
16
|
+
*/
|
|
17
|
+
export type BatchOperationInfo = Message<"temporal.api.batch.v1.BatchOperationInfo"> & {
|
|
18
|
+
/**
|
|
19
|
+
* Batch job ID
|
|
20
|
+
*
|
|
21
|
+
* @generated from field: string job_id = 1;
|
|
22
|
+
*/
|
|
23
|
+
jobId: string;
|
|
24
|
+
/**
|
|
25
|
+
* Batch operation state
|
|
26
|
+
*
|
|
27
|
+
* @generated from field: temporal.api.enums.v1.BatchOperationState state = 2;
|
|
28
|
+
*/
|
|
29
|
+
state: BatchOperationState;
|
|
30
|
+
/**
|
|
31
|
+
* Batch operation start time
|
|
32
|
+
*
|
|
33
|
+
* @generated from field: google.protobuf.Timestamp start_time = 3;
|
|
34
|
+
*/
|
|
35
|
+
startTime?: Timestamp;
|
|
36
|
+
/**
|
|
37
|
+
* Batch operation close time
|
|
38
|
+
*
|
|
39
|
+
* @generated from field: google.protobuf.Timestamp close_time = 4;
|
|
40
|
+
*/
|
|
41
|
+
closeTime?: Timestamp;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Describes the message temporal.api.batch.v1.BatchOperationInfo.
|
|
45
|
+
* Use `create(BatchOperationInfoSchema)` to create a new message.
|
|
46
|
+
*/
|
|
47
|
+
export declare const BatchOperationInfoSchema: GenMessage<BatchOperationInfo>;
|
|
48
|
+
/**
|
|
49
|
+
* BatchOperationTermination sends terminate requests to batch workflows.
|
|
50
|
+
* Keep the parameter in sync with temporal.api.workflowservice.v1.TerminateWorkflowExecutionRequest.
|
|
51
|
+
* Ignore first_execution_run_id because this is used for single workflow operation.
|
|
52
|
+
*
|
|
53
|
+
* @generated from message temporal.api.batch.v1.BatchOperationTermination
|
|
54
|
+
*/
|
|
55
|
+
export type BatchOperationTermination = Message<"temporal.api.batch.v1.BatchOperationTermination"> & {
|
|
56
|
+
/**
|
|
57
|
+
* Serialized value(s) to provide to the termination event
|
|
58
|
+
*
|
|
59
|
+
* @generated from field: temporal.api.common.v1.Payloads details = 1;
|
|
60
|
+
*/
|
|
61
|
+
details?: Payloads;
|
|
62
|
+
/**
|
|
63
|
+
* The identity of the worker/client
|
|
64
|
+
*
|
|
65
|
+
* @generated from field: string identity = 2;
|
|
66
|
+
*/
|
|
67
|
+
identity: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message temporal.api.batch.v1.BatchOperationTermination.
|
|
71
|
+
* Use `create(BatchOperationTerminationSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export declare const BatchOperationTerminationSchema: GenMessage<BatchOperationTermination>;
|
|
74
|
+
/**
|
|
75
|
+
* BatchOperationSignal sends signals to batch workflows.
|
|
76
|
+
* Keep the parameter in sync with temporal.api.workflowservice.v1.SignalWorkflowExecutionRequest.
|
|
77
|
+
*
|
|
78
|
+
* @generated from message temporal.api.batch.v1.BatchOperationSignal
|
|
79
|
+
*/
|
|
80
|
+
export type BatchOperationSignal = Message<"temporal.api.batch.v1.BatchOperationSignal"> & {
|
|
81
|
+
/**
|
|
82
|
+
* The workflow author-defined name of the signal to send to the workflow
|
|
83
|
+
*
|
|
84
|
+
* @generated from field: string signal = 1;
|
|
85
|
+
*/
|
|
86
|
+
signal: string;
|
|
87
|
+
/**
|
|
88
|
+
* Serialized value(s) to provide with the signal
|
|
89
|
+
*
|
|
90
|
+
* @generated from field: temporal.api.common.v1.Payloads input = 2;
|
|
91
|
+
*/
|
|
92
|
+
input?: Payloads;
|
|
93
|
+
/**
|
|
94
|
+
* Headers that are passed with the signal to the processing workflow.
|
|
95
|
+
* These can include things like auth or tracing tokens.
|
|
96
|
+
*
|
|
97
|
+
* @generated from field: temporal.api.common.v1.Header header = 3;
|
|
98
|
+
*/
|
|
99
|
+
header?: Header;
|
|
100
|
+
/**
|
|
101
|
+
* The identity of the worker/client
|
|
102
|
+
*
|
|
103
|
+
* @generated from field: string identity = 4;
|
|
104
|
+
*/
|
|
105
|
+
identity: string;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* Describes the message temporal.api.batch.v1.BatchOperationSignal.
|
|
109
|
+
* Use `create(BatchOperationSignalSchema)` to create a new message.
|
|
110
|
+
*/
|
|
111
|
+
export declare const BatchOperationSignalSchema: GenMessage<BatchOperationSignal>;
|
|
112
|
+
/**
|
|
113
|
+
* BatchOperationCancellation sends cancel requests to batch workflows.
|
|
114
|
+
* Keep the parameter in sync with temporal.api.workflowservice.v1.RequestCancelWorkflowExecutionRequest.
|
|
115
|
+
* Ignore first_execution_run_id because this is used for single workflow operation.
|
|
116
|
+
*
|
|
117
|
+
* @generated from message temporal.api.batch.v1.BatchOperationCancellation
|
|
118
|
+
*/
|
|
119
|
+
export type BatchOperationCancellation = Message<"temporal.api.batch.v1.BatchOperationCancellation"> & {
|
|
120
|
+
/**
|
|
121
|
+
* The identity of the worker/client
|
|
122
|
+
*
|
|
123
|
+
* @generated from field: string identity = 1;
|
|
124
|
+
*/
|
|
125
|
+
identity: string;
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Describes the message temporal.api.batch.v1.BatchOperationCancellation.
|
|
129
|
+
* Use `create(BatchOperationCancellationSchema)` to create a new message.
|
|
130
|
+
*/
|
|
131
|
+
export declare const BatchOperationCancellationSchema: GenMessage<BatchOperationCancellation>;
|
|
132
|
+
/**
|
|
133
|
+
* BatchOperationDeletion sends deletion requests to batch workflows.
|
|
134
|
+
* Keep the parameter in sync with temporal.api.workflowservice.v1.DeleteWorkflowExecutionRequest.
|
|
135
|
+
*
|
|
136
|
+
* @generated from message temporal.api.batch.v1.BatchOperationDeletion
|
|
137
|
+
*/
|
|
138
|
+
export type BatchOperationDeletion = Message<"temporal.api.batch.v1.BatchOperationDeletion"> & {
|
|
139
|
+
/**
|
|
140
|
+
* The identity of the worker/client
|
|
141
|
+
*
|
|
142
|
+
* @generated from field: string identity = 1;
|
|
143
|
+
*/
|
|
144
|
+
identity: string;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Describes the message temporal.api.batch.v1.BatchOperationDeletion.
|
|
148
|
+
* Use `create(BatchOperationDeletionSchema)` to create a new message.
|
|
149
|
+
*/
|
|
150
|
+
export declare const BatchOperationDeletionSchema: GenMessage<BatchOperationDeletion>;
|
|
151
|
+
/**
|
|
152
|
+
* BatchOperationReset sends reset requests to batch workflows.
|
|
153
|
+
* Keep the parameter in sync with temporal.api.workflowservice.v1.ResetWorkflowExecutionRequest.
|
|
154
|
+
*
|
|
155
|
+
* @generated from message temporal.api.batch.v1.BatchOperationReset
|
|
156
|
+
*/
|
|
157
|
+
export type BatchOperationReset = Message<"temporal.api.batch.v1.BatchOperationReset"> & {
|
|
158
|
+
/**
|
|
159
|
+
* The identity of the worker/client.
|
|
160
|
+
*
|
|
161
|
+
* @generated from field: string identity = 3;
|
|
162
|
+
*/
|
|
163
|
+
identity: string;
|
|
164
|
+
/**
|
|
165
|
+
* Describes what to reset to and how. If set, `reset_type` and `reset_reapply_type` are ignored.
|
|
166
|
+
*
|
|
167
|
+
* @generated from field: temporal.api.common.v1.ResetOptions options = 4;
|
|
168
|
+
*/
|
|
169
|
+
options?: ResetOptions;
|
|
170
|
+
/**
|
|
171
|
+
* Deprecated. Use `options`.
|
|
172
|
+
*
|
|
173
|
+
* @generated from field: temporal.api.enums.v1.ResetType reset_type = 1 [deprecated = true];
|
|
174
|
+
* @deprecated
|
|
175
|
+
*/
|
|
176
|
+
resetType: ResetType;
|
|
177
|
+
/**
|
|
178
|
+
* Deprecated. Use `options`.
|
|
179
|
+
*
|
|
180
|
+
* @generated from field: temporal.api.enums.v1.ResetReapplyType reset_reapply_type = 2 [deprecated = true];
|
|
181
|
+
* @deprecated
|
|
182
|
+
*/
|
|
183
|
+
resetReapplyType: ResetReapplyType;
|
|
184
|
+
/**
|
|
185
|
+
* Operations to perform after the workflow has been reset. These operations will be applied
|
|
186
|
+
* to the *new* run of the workflow execution in the order they are provided.
|
|
187
|
+
* All operations are applied to the workflow before the first new workflow task is generated
|
|
188
|
+
*
|
|
189
|
+
* @generated from field: repeated temporal.api.workflow.v1.PostResetOperation post_reset_operations = 5;
|
|
190
|
+
*/
|
|
191
|
+
postResetOperations: PostResetOperation[];
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* Describes the message temporal.api.batch.v1.BatchOperationReset.
|
|
195
|
+
* Use `create(BatchOperationResetSchema)` to create a new message.
|
|
196
|
+
*/
|
|
197
|
+
export declare const BatchOperationResetSchema: GenMessage<BatchOperationReset>;
|
|
198
|
+
/**
|
|
199
|
+
* BatchOperationUpdateWorkflowExecutionOptions sends UpdateWorkflowExecutionOptions requests to batch workflows.
|
|
200
|
+
* Keep the parameters in sync with temporal.api.workflowservice.v1.UpdateWorkflowExecutionOptionsRequest.
|
|
201
|
+
*
|
|
202
|
+
* @generated from message temporal.api.batch.v1.BatchOperationUpdateWorkflowExecutionOptions
|
|
203
|
+
*/
|
|
204
|
+
export type BatchOperationUpdateWorkflowExecutionOptions = Message<"temporal.api.batch.v1.BatchOperationUpdateWorkflowExecutionOptions"> & {
|
|
205
|
+
/**
|
|
206
|
+
* The identity of the worker/client.
|
|
207
|
+
*
|
|
208
|
+
* @generated from field: string identity = 1;
|
|
209
|
+
*/
|
|
210
|
+
identity: string;
|
|
211
|
+
/**
|
|
212
|
+
* Update Workflow options that were originally specified via StartWorkflowExecution. Partial updates are accepted and controlled by update_mask.
|
|
213
|
+
*
|
|
214
|
+
* @generated from field: temporal.api.workflow.v1.WorkflowExecutionOptions workflow_execution_options = 2;
|
|
215
|
+
*/
|
|
216
|
+
workflowExecutionOptions?: WorkflowExecutionOptions;
|
|
217
|
+
/**
|
|
218
|
+
* Controls which fields from `workflow_execution_options` will be applied.
|
|
219
|
+
* To unset a field, set it to null and use the update mask to indicate that it should be mutated.
|
|
220
|
+
*
|
|
221
|
+
* @generated from field: google.protobuf.FieldMask update_mask = 3;
|
|
222
|
+
*/
|
|
223
|
+
updateMask?: FieldMask;
|
|
224
|
+
};
|
|
225
|
+
/**
|
|
226
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUpdateWorkflowExecutionOptions.
|
|
227
|
+
* Use `create(BatchOperationUpdateWorkflowExecutionOptionsSchema)` to create a new message.
|
|
228
|
+
*/
|
|
229
|
+
export declare const BatchOperationUpdateWorkflowExecutionOptionsSchema: GenMessage<BatchOperationUpdateWorkflowExecutionOptions>;
|
|
230
|
+
/**
|
|
231
|
+
* BatchOperationUnpauseActivities sends unpause requests to batch workflows.
|
|
232
|
+
*
|
|
233
|
+
* @generated from message temporal.api.batch.v1.BatchOperationUnpauseActivities
|
|
234
|
+
*/
|
|
235
|
+
export type BatchOperationUnpauseActivities = Message<"temporal.api.batch.v1.BatchOperationUnpauseActivities"> & {
|
|
236
|
+
/**
|
|
237
|
+
* The identity of the worker/client.
|
|
238
|
+
*
|
|
239
|
+
* @generated from field: string identity = 1;
|
|
240
|
+
*/
|
|
241
|
+
identity: string;
|
|
242
|
+
/**
|
|
243
|
+
* The activity to unpause. If match_all is set to true, all activities will be unpaused.
|
|
244
|
+
*
|
|
245
|
+
* @generated from oneof temporal.api.batch.v1.BatchOperationUnpauseActivities.activity
|
|
246
|
+
*/
|
|
247
|
+
activity: {
|
|
248
|
+
/**
|
|
249
|
+
* @generated from field: string type = 2;
|
|
250
|
+
*/
|
|
251
|
+
value: string;
|
|
252
|
+
case: "type";
|
|
253
|
+
} | {
|
|
254
|
+
/**
|
|
255
|
+
* @generated from field: bool match_all = 3;
|
|
256
|
+
*/
|
|
257
|
+
value: boolean;
|
|
258
|
+
case: "matchAll";
|
|
259
|
+
} | {
|
|
260
|
+
case: undefined;
|
|
261
|
+
value?: undefined;
|
|
262
|
+
};
|
|
263
|
+
/**
|
|
264
|
+
* Setting this flag will also reset the number of attempts.
|
|
265
|
+
*
|
|
266
|
+
* @generated from field: bool reset_attempts = 4;
|
|
267
|
+
*/
|
|
268
|
+
resetAttempts: boolean;
|
|
269
|
+
/**
|
|
270
|
+
* Setting this flag will also reset the heartbeat details.
|
|
271
|
+
*
|
|
272
|
+
* @generated from field: bool reset_heartbeat = 5;
|
|
273
|
+
*/
|
|
274
|
+
resetHeartbeat: boolean;
|
|
275
|
+
/**
|
|
276
|
+
* If set, the activity will start at a random time within the specified jitter
|
|
277
|
+
* duration, introducing variability to the start time.
|
|
278
|
+
*
|
|
279
|
+
* @generated from field: google.protobuf.Duration jitter = 6;
|
|
280
|
+
*/
|
|
281
|
+
jitter?: Duration;
|
|
282
|
+
};
|
|
283
|
+
/**
|
|
284
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUnpauseActivities.
|
|
285
|
+
* Use `create(BatchOperationUnpauseActivitiesSchema)` to create a new message.
|
|
286
|
+
*/
|
|
287
|
+
export declare const BatchOperationUnpauseActivitiesSchema: GenMessage<BatchOperationUnpauseActivities>;
|
|
288
|
+
/**
|
|
289
|
+
* BatchOperationTriggerWorkflowRule sends TriggerWorkflowRule requests to batch workflows.
|
|
290
|
+
*
|
|
291
|
+
* @generated from message temporal.api.batch.v1.BatchOperationTriggerWorkflowRule
|
|
292
|
+
*/
|
|
293
|
+
export type BatchOperationTriggerWorkflowRule = Message<"temporal.api.batch.v1.BatchOperationTriggerWorkflowRule"> & {
|
|
294
|
+
/**
|
|
295
|
+
* The identity of the worker/client.
|
|
296
|
+
*
|
|
297
|
+
* @generated from field: string identity = 1;
|
|
298
|
+
*/
|
|
299
|
+
identity: string;
|
|
300
|
+
/**
|
|
301
|
+
* @generated from oneof temporal.api.batch.v1.BatchOperationTriggerWorkflowRule.rule
|
|
302
|
+
*/
|
|
303
|
+
rule: {
|
|
304
|
+
/**
|
|
305
|
+
* ID of existing rule.
|
|
306
|
+
*
|
|
307
|
+
* @generated from field: string id = 2;
|
|
308
|
+
*/
|
|
309
|
+
value: string;
|
|
310
|
+
case: "id";
|
|
311
|
+
} | {
|
|
312
|
+
/**
|
|
313
|
+
* Rule specification to be applied to the workflow without creating a new rule.
|
|
314
|
+
*
|
|
315
|
+
* @generated from field: temporal.api.rules.v1.WorkflowRuleSpec spec = 3;
|
|
316
|
+
*/
|
|
317
|
+
value: WorkflowRuleSpec;
|
|
318
|
+
case: "spec";
|
|
319
|
+
} | {
|
|
320
|
+
case: undefined;
|
|
321
|
+
value?: undefined;
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
/**
|
|
325
|
+
* Describes the message temporal.api.batch.v1.BatchOperationTriggerWorkflowRule.
|
|
326
|
+
* Use `create(BatchOperationTriggerWorkflowRuleSchema)` to create a new message.
|
|
327
|
+
*/
|
|
328
|
+
export declare const BatchOperationTriggerWorkflowRuleSchema: GenMessage<BatchOperationTriggerWorkflowRule>;
|
|
329
|
+
/**
|
|
330
|
+
* BatchOperationResetActivities sends activity reset requests in a batch.
|
|
331
|
+
* NOTE: keep in sync with temporal.api.workflowservice.v1.ResetActivityRequest
|
|
332
|
+
*
|
|
333
|
+
* @generated from message temporal.api.batch.v1.BatchOperationResetActivities
|
|
334
|
+
*/
|
|
335
|
+
export type BatchOperationResetActivities = Message<"temporal.api.batch.v1.BatchOperationResetActivities"> & {
|
|
336
|
+
/**
|
|
337
|
+
* The identity of the worker/client.
|
|
338
|
+
*
|
|
339
|
+
* @generated from field: string identity = 1;
|
|
340
|
+
*/
|
|
341
|
+
identity: string;
|
|
342
|
+
/**
|
|
343
|
+
* The activities to reset. If match_all is set to true, all activities will be reset.
|
|
344
|
+
*
|
|
345
|
+
* @generated from oneof temporal.api.batch.v1.BatchOperationResetActivities.activity
|
|
346
|
+
*/
|
|
347
|
+
activity: {
|
|
348
|
+
/**
|
|
349
|
+
* @generated from field: string type = 2;
|
|
350
|
+
*/
|
|
351
|
+
value: string;
|
|
352
|
+
case: "type";
|
|
353
|
+
} | {
|
|
354
|
+
/**
|
|
355
|
+
* @generated from field: bool match_all = 3;
|
|
356
|
+
*/
|
|
357
|
+
value: boolean;
|
|
358
|
+
case: "matchAll";
|
|
359
|
+
} | {
|
|
360
|
+
case: undefined;
|
|
361
|
+
value?: undefined;
|
|
362
|
+
};
|
|
363
|
+
/**
|
|
364
|
+
* Setting this flag will also reset the number of attempts.
|
|
365
|
+
*
|
|
366
|
+
* @generated from field: bool reset_attempts = 4;
|
|
367
|
+
*/
|
|
368
|
+
resetAttempts: boolean;
|
|
369
|
+
/**
|
|
370
|
+
* Setting this flag will also reset the heartbeat details.
|
|
371
|
+
*
|
|
372
|
+
* @generated from field: bool reset_heartbeat = 5;
|
|
373
|
+
*/
|
|
374
|
+
resetHeartbeat: boolean;
|
|
375
|
+
/**
|
|
376
|
+
* If activity is paused, it will remain paused after reset
|
|
377
|
+
*
|
|
378
|
+
* @generated from field: bool keep_paused = 6;
|
|
379
|
+
*/
|
|
380
|
+
keepPaused: boolean;
|
|
381
|
+
/**
|
|
382
|
+
* If set, the activity will start at a random time within the specified jitter
|
|
383
|
+
* duration, introducing variability to the start time.
|
|
384
|
+
*
|
|
385
|
+
* @generated from field: google.protobuf.Duration jitter = 7;
|
|
386
|
+
*/
|
|
387
|
+
jitter?: Duration;
|
|
388
|
+
/**
|
|
389
|
+
* If set, the activity options will be restored to the defaults.
|
|
390
|
+
* Default options are then options activity was created with.
|
|
391
|
+
* They are part of the first ActivityTaskScheduled event.
|
|
392
|
+
*
|
|
393
|
+
* @generated from field: bool restore_original_options = 8;
|
|
394
|
+
*/
|
|
395
|
+
restoreOriginalOptions: boolean;
|
|
396
|
+
};
|
|
397
|
+
/**
|
|
398
|
+
* Describes the message temporal.api.batch.v1.BatchOperationResetActivities.
|
|
399
|
+
* Use `create(BatchOperationResetActivitiesSchema)` to create a new message.
|
|
400
|
+
*/
|
|
401
|
+
export declare const BatchOperationResetActivitiesSchema: GenMessage<BatchOperationResetActivities>;
|
|
402
|
+
/**
|
|
403
|
+
* BatchOperationUpdateActivityOptions sends an update-activity-options requests in a batch.
|
|
404
|
+
* NOTE: keep in sync with temporal.api.workflowservice.v1.UpdateActivityRequest
|
|
405
|
+
*
|
|
406
|
+
* @generated from message temporal.api.batch.v1.BatchOperationUpdateActivityOptions
|
|
407
|
+
*/
|
|
408
|
+
export type BatchOperationUpdateActivityOptions = Message<"temporal.api.batch.v1.BatchOperationUpdateActivityOptions"> & {
|
|
409
|
+
/**
|
|
410
|
+
* The identity of the worker/client.
|
|
411
|
+
*
|
|
412
|
+
* @generated from field: string identity = 1;
|
|
413
|
+
*/
|
|
414
|
+
identity: string;
|
|
415
|
+
/**
|
|
416
|
+
* The activity to update. If match_all is set to true, all activities will be updated.
|
|
417
|
+
*
|
|
418
|
+
* @generated from oneof temporal.api.batch.v1.BatchOperationUpdateActivityOptions.activity
|
|
419
|
+
*/
|
|
420
|
+
activity: {
|
|
421
|
+
/**
|
|
422
|
+
* @generated from field: string type = 2;
|
|
423
|
+
*/
|
|
424
|
+
value: string;
|
|
425
|
+
case: "type";
|
|
426
|
+
} | {
|
|
427
|
+
/**
|
|
428
|
+
* @generated from field: bool match_all = 3;
|
|
429
|
+
*/
|
|
430
|
+
value: boolean;
|
|
431
|
+
case: "matchAll";
|
|
432
|
+
} | {
|
|
433
|
+
case: undefined;
|
|
434
|
+
value?: undefined;
|
|
435
|
+
};
|
|
436
|
+
/**
|
|
437
|
+
* Update Activity options. Partial updates are accepted and controlled by update_mask.
|
|
438
|
+
*
|
|
439
|
+
* @generated from field: temporal.api.activity.v1.ActivityOptions activity_options = 4;
|
|
440
|
+
*/
|
|
441
|
+
activityOptions?: ActivityOptions;
|
|
442
|
+
/**
|
|
443
|
+
* Controls which fields from `activity_options` will be applied
|
|
444
|
+
*
|
|
445
|
+
* @generated from field: google.protobuf.FieldMask update_mask = 5;
|
|
446
|
+
*/
|
|
447
|
+
updateMask?: FieldMask;
|
|
448
|
+
/**
|
|
449
|
+
* If set, the activity options will be restored to the default.
|
|
450
|
+
* Default options are then options activity was created with.
|
|
451
|
+
* They are part of the first ActivityTaskScheduled event.
|
|
452
|
+
* This flag cannot be combined with any other option; if you supply
|
|
453
|
+
* restore_original together with other options, the request will be rejected.
|
|
454
|
+
*
|
|
455
|
+
* @generated from field: bool restore_original = 6;
|
|
456
|
+
*/
|
|
457
|
+
restoreOriginal: boolean;
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUpdateActivityOptions.
|
|
461
|
+
* Use `create(BatchOperationUpdateActivityOptionsSchema)` to create a new message.
|
|
462
|
+
*/
|
|
463
|
+
export declare const BatchOperationUpdateActivityOptionsSchema: GenMessage<BatchOperationUpdateActivityOptions>;
|
|
464
|
+
//# sourceMappingURL=message_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.d.ts","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/batch/v1/message_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.0 with parameter "target=ts,import_extension=js"
|
|
2
|
+
// @generated from file temporal/api/batch/v1/message.proto (package temporal.api.batch.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_google_protobuf_duration, file_google_protobuf_field_mask, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
import { file_temporal_api_activity_v1_message } from "../../activity/v1/message_pb.js";
|
|
7
|
+
import { file_temporal_api_common_v1_message } from "../../common/v1/message_pb.js";
|
|
8
|
+
import { file_temporal_api_enums_v1_batch_operation } from "../../enums/v1/batch_operation_pb.js";
|
|
9
|
+
import { file_temporal_api_enums_v1_reset } from "../../enums/v1/reset_pb.js";
|
|
10
|
+
import { file_temporal_api_rules_v1_message } from "../../rules/v1/message_pb.js";
|
|
11
|
+
import { file_temporal_api_workflow_v1_message } from "../../workflow/v1/message_pb.js";
|
|
12
|
+
/**
|
|
13
|
+
* Describes the file temporal/api/batch/v1/message.proto.
|
|
14
|
+
*/
|
|
15
|
+
export const file_temporal_api_batch_v1_message = /*@__PURE__*/ fileDesc("CiN0ZW1wb3JhbC9hcGkvYmF0Y2gvdjEvbWVzc2FnZS5wcm90bxIVdGVtcG9yYWwuYXBpLmJhdGNoLnYxIr8BChJCYXRjaE9wZXJhdGlvbkluZm8SDgoGam9iX2lkGAEgASgJEjkKBXN0YXRlGAIgASgOMioudGVtcG9yYWwuYXBpLmVudW1zLnYxLkJhdGNoT3BlcmF0aW9uU3RhdGUSLgoKc3RhcnRfdGltZRgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASLgoKY2xvc2VfdGltZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiYAoZQmF0Y2hPcGVyYXRpb25UZXJtaW5hdGlvbhIxCgdkZXRhaWxzGAEgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIQCghpZGVudGl0eRgCIAEoCSKZAQoUQmF0Y2hPcGVyYXRpb25TaWduYWwSDgoGc2lnbmFsGAEgASgJEi8KBWlucHV0GAIgASgLMiAudGVtcG9yYWwuYXBpLmNvbW1vbi52MS5QYXlsb2FkcxIuCgZoZWFkZXIYAyABKAsyHi50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLkhlYWRlchIQCghpZGVudGl0eRgEIAEoCSIuChpCYXRjaE9wZXJhdGlvbkNhbmNlbGxhdGlvbhIQCghpZGVudGl0eRgBIAEoCSIqChZCYXRjaE9wZXJhdGlvbkRlbGV0aW9uEhAKCGlkZW50aXR5GAEgASgJIq4CChNCYXRjaE9wZXJhdGlvblJlc2V0EhAKCGlkZW50aXR5GAMgASgJEjUKB29wdGlvbnMYBCABKAsyJC50ZW1wb3JhbC5hcGkuY29tbW9uLnYxLlJlc2V0T3B0aW9ucxI4CgpyZXNldF90eXBlGAEgASgOMiAudGVtcG9yYWwuYXBpLmVudW1zLnYxLlJlc2V0VHlwZUICGAESRwoScmVzZXRfcmVhcHBseV90eXBlGAIgASgOMicudGVtcG9yYWwuYXBpLmVudW1zLnYxLlJlc2V0UmVhcHBseVR5cGVCAhgBEksKFXBvc3RfcmVzZXRfb3BlcmF0aW9ucxgFIAMoCzIsLnRlbXBvcmFsLmFwaS53b3JrZmxvdy52MS5Qb3N0UmVzZXRPcGVyYXRpb24iyQEKLEJhdGNoT3BlcmF0aW9uVXBkYXRlV29ya2Zsb3dFeGVjdXRpb25PcHRpb25zEhAKCGlkZW50aXR5GAEgASgJElYKGndvcmtmbG93X2V4ZWN1dGlvbl9vcHRpb25zGAIgASgLMjIudGVtcG9yYWwuYXBpLndvcmtmbG93LnYxLldvcmtmbG93RXhlY3V0aW9uT3B0aW9ucxIvCgt1cGRhdGVfbWFzaxgDIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5GaWVsZE1hc2siwAEKH0JhdGNoT3BlcmF0aW9uVW5wYXVzZUFjdGl2aXRpZXMSEAoIaWRlbnRpdHkYASABKAkSDgoEdHlwZRgCIAEoCUgAEhMKCW1hdGNoX2FsbBgDIAEoCEgAEhYKDnJlc2V0X2F0dGVtcHRzGAQgASgIEhcKD3Jlc2V0X2hlYXJ0YmVhdBgFIAEoCBIpCgZqaXR0ZXIYBiABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb25CCgoIYWN0aXZpdHkihAEKIUJhdGNoT3BlcmF0aW9uVHJpZ2dlcldvcmtmbG93UnVsZRIQCghpZGVudGl0eRgBIAEoCRIMCgJpZBgCIAEoCUgAEjcKBHNwZWMYAyABKAsyJy50ZW1wb3JhbC5hcGkucnVsZXMudjEuV29ya2Zsb3dSdWxlU3BlY0gAQgYKBHJ1bGUi9QEKHUJhdGNoT3BlcmF0aW9uUmVzZXRBY3Rpdml0aWVzEhAKCGlkZW50aXR5GAEgASgJEg4KBHR5cGUYAiABKAlIABITCgltYXRjaF9hbGwYAyABKAhIABIWCg5yZXNldF9hdHRlbXB0cxgEIAEoCBIXCg9yZXNldF9oZWFydGJlYXQYBSABKAgSEwoLa2VlcF9wYXVzZWQYBiABKAgSKQoGaml0dGVyGAcgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uEiAKGHJlc3RvcmVfb3JpZ2luYWxfb3B0aW9ucxgIIAEoCEIKCghhY3Rpdml0eSL4AQojQmF0Y2hPcGVyYXRpb25VcGRhdGVBY3Rpdml0eU9wdGlvbnMSEAoIaWRlbnRpdHkYASABKAkSDgoEdHlwZRgCIAEoCUgAEhMKCW1hdGNoX2FsbBgDIAEoCEgAEkMKEGFjdGl2aXR5X29wdGlvbnMYBCABKAsyKS50ZW1wb3JhbC5hcGkuYWN0aXZpdHkudjEuQWN0aXZpdHlPcHRpb25zEi8KC3VwZGF0ZV9tYXNrGAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLkZpZWxkTWFzaxIYChByZXN0b3JlX29yaWdpbmFsGAYgASgIQgoKCGFjdGl2aXR5QoQBChhpby50ZW1wb3JhbC5hcGkuYmF0Y2gudjFCDE1lc3NhZ2VQcm90b1ABWiFnby50ZW1wb3JhbC5pby9hcGkvYmF0Y2gvdjE7YmF0Y2iqAhdUZW1wb3JhbGlvLkFwaS5CYXRjaC5WMeoCGlRlbXBvcmFsaW86OkFwaTo6QmF0Y2g6OlYxYgZwcm90bzM", [file_google_protobuf_duration, file_google_protobuf_field_mask, file_google_protobuf_timestamp, file_temporal_api_activity_v1_message, file_temporal_api_common_v1_message, file_temporal_api_enums_v1_batch_operation, file_temporal_api_enums_v1_reset, file_temporal_api_rules_v1_message, file_temporal_api_workflow_v1_message]);
|
|
16
|
+
/**
|
|
17
|
+
* Describes the message temporal.api.batch.v1.BatchOperationInfo.
|
|
18
|
+
* Use `create(BatchOperationInfoSchema)` to create a new message.
|
|
19
|
+
*/
|
|
20
|
+
export const BatchOperationInfoSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 0);
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message temporal.api.batch.v1.BatchOperationTermination.
|
|
23
|
+
* Use `create(BatchOperationTerminationSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const BatchOperationTerminationSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 1);
|
|
26
|
+
/**
|
|
27
|
+
* Describes the message temporal.api.batch.v1.BatchOperationSignal.
|
|
28
|
+
* Use `create(BatchOperationSignalSchema)` to create a new message.
|
|
29
|
+
*/
|
|
30
|
+
export const BatchOperationSignalSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 2);
|
|
31
|
+
/**
|
|
32
|
+
* Describes the message temporal.api.batch.v1.BatchOperationCancellation.
|
|
33
|
+
* Use `create(BatchOperationCancellationSchema)` to create a new message.
|
|
34
|
+
*/
|
|
35
|
+
export const BatchOperationCancellationSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 3);
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message temporal.api.batch.v1.BatchOperationDeletion.
|
|
38
|
+
* Use `create(BatchOperationDeletionSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export const BatchOperationDeletionSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 4);
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message temporal.api.batch.v1.BatchOperationReset.
|
|
43
|
+
* Use `create(BatchOperationResetSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export const BatchOperationResetSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 5);
|
|
46
|
+
/**
|
|
47
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUpdateWorkflowExecutionOptions.
|
|
48
|
+
* Use `create(BatchOperationUpdateWorkflowExecutionOptionsSchema)` to create a new message.
|
|
49
|
+
*/
|
|
50
|
+
export const BatchOperationUpdateWorkflowExecutionOptionsSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 6);
|
|
51
|
+
/**
|
|
52
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUnpauseActivities.
|
|
53
|
+
* Use `create(BatchOperationUnpauseActivitiesSchema)` to create a new message.
|
|
54
|
+
*/
|
|
55
|
+
export const BatchOperationUnpauseActivitiesSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 7);
|
|
56
|
+
/**
|
|
57
|
+
* Describes the message temporal.api.batch.v1.BatchOperationTriggerWorkflowRule.
|
|
58
|
+
* Use `create(BatchOperationTriggerWorkflowRuleSchema)` to create a new message.
|
|
59
|
+
*/
|
|
60
|
+
export const BatchOperationTriggerWorkflowRuleSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 8);
|
|
61
|
+
/**
|
|
62
|
+
* Describes the message temporal.api.batch.v1.BatchOperationResetActivities.
|
|
63
|
+
* Use `create(BatchOperationResetActivitiesSchema)` to create a new message.
|
|
64
|
+
*/
|
|
65
|
+
export const BatchOperationResetActivitiesSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 9);
|
|
66
|
+
/**
|
|
67
|
+
* Describes the message temporal.api.batch.v1.BatchOperationUpdateActivityOptions.
|
|
68
|
+
* Use `create(BatchOperationUpdateActivityOptionsSchema)` to create a new message.
|
|
69
|
+
*/
|
|
70
|
+
export const BatchOperationUpdateActivityOptionsSchema = /*@__PURE__*/ messageDesc(file_temporal_api_batch_v1_message, 10);
|
|
71
|
+
//# sourceMappingURL=message_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"message_pb.js","sourceRoot":"","sources":["../../../../../../../src/proto/temporal/api/batch/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,6BAA6B,EAAE,+BAA+B,EAAE,8BAA8B,EAAE,MAAM,wBAAwB,CAAC;AAExI,OAAO,EAAE,qCAAqC,EAAE,MAAM,iCAAiC,CAAC;AAExF,OAAO,EAAE,mCAAmC,EAAE,MAAM,+BAA+B,CAAC;AAEpF,OAAO,EAAE,0CAA0C,EAAE,MAAM,sCAAsC,CAAC;AAElG,OAAO,EAAE,gCAAgC,EAAE,MAAM,4BAA4B,CAAC;AAE9E,OAAO,EAAE,kCAAkC,EAAE,MAAM,8BAA8B,CAAC;AAElF,OAAO,EAAE,qCAAqC,EAAE,MAAM,iCAAiC,CAAC;AAGxF;;GAEG;AACH,MAAM,CAAC,MAAM,kCAAkC,GAAY,aAAa,CACtE,QAAQ,CAAC,ytFAAytF,EAAE,CAAC,6BAA6B,EAAE,+BAA+B,EAAE,8BAA8B,EAAE,qCAAqC,EAAE,mCAAmC,EAAE,0CAA0C,EAAE,gCAAgC,EAAE,kCAAkC,EAAE,qCAAqC,CAAC,CAAC,CAAC;AAmC7iG;;;GAGG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAAmC,aAAa,CACnF,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAyBrD;;;GAGG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAA0C,aAAa,CACjG,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAuCrD;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAkBrD;;;GAGG;AACH,MAAM,CAAC,MAAM,gCAAgC,GAA2C,aAAa,CACnG,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAiBrD;;;GAGG;AACH,MAAM,CAAC,MAAM,4BAA4B,GAAuC,aAAa,CAC3F,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAiDrD;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAgCrD;;;GAGG;AACH,MAAM,CAAC,MAAM,kDAAkD,GAA6D,aAAa,CACvI,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAyDrD;;;GAGG;AACH,MAAM,CAAC,MAAM,qCAAqC,GAAgD,aAAa,CAC7G,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AAqCrD;;;GAGG;AACH,MAAM,CAAC,MAAM,uCAAuC,GAAkD,aAAa,CACjH,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AA0ErD;;;GAGG;AACH,MAAM,CAAC,MAAM,mCAAmC,GAA8C,aAAa,CACzG,WAAW,CAAC,kCAAkC,EAAE,CAAC,CAAC,CAAC;AA6DrD;;;GAGG;AACH,MAAM,CAAC,MAAM,yCAAyC,GAAoD,aAAa,CACrH,WAAW,CAAC,kCAAkC,EAAE,EAAE,CAAC,CAAC"}
|