diff --git a/openapi/openapiv2.json b/openapi/openapiv2.json index 3eeda5de9..8b590b6aa 100644 --- a/openapi/openapiv2.json +++ b/openapi/openapiv2.json @@ -16913,6 +16913,10 @@ "standaloneActivityBatchOperations": { "type": "boolean", "description": "True if the namespace supports batch operations for standalone activities." + }, + "standaloneActivityOperatorCommands": { + "type": "boolean", + "description": "True if the namespace supports standalone activity operator commands." } }, "description": "Namespace capability details. Should contain what features are enabled in a namespace." diff --git a/openapi/openapiv3.yaml b/openapi/openapiv3.yaml index 71e444e29..0e4c9a7ef 100644 --- a/openapi/openapiv3.yaml +++ b/openapi/openapiv3.yaml @@ -13304,6 +13304,9 @@ components: standaloneActivityBatchOperations: type: boolean description: True if the namespace supports batch operations for standalone activities. + standaloneActivityOperatorCommands: + type: boolean + description: True if the namespace supports standalone activity operator commands. description: Namespace capability details. Should contain what features are enabled in a namespace. NamespaceInfo_Limits: type: object diff --git a/temporal/api/namespace/v1/message.proto b/temporal/api/namespace/v1/message.proto index e3dd1a235..561bf0f21 100644 --- a/temporal/api/namespace/v1/message.proto +++ b/temporal/api/namespace/v1/message.proto @@ -64,6 +64,8 @@ message NamespaceInfo { bool standalone_activity_start_delay = 15; // True if the namespace supports batch operations for standalone activities. bool standalone_activity_batch_operations = 16; + // True if the namespace supports standalone activity operator commands. + bool standalone_activity_operator_commands = 17; } // Namespace configured limits