Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
3 changes: 3 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions temporal/api/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading