Skip to content
Merged
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 @@ -13150,6 +13150,10 @@
"workflowPause": {
"type": "boolean",
"title": "True if the namespace supports pausing workflows"
},
"standaloneActivities": {
"type": "boolean",
"title": "True if the namespace supports standalone activities"
}
},
"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 @@ -10262,6 +10262,9 @@ components:
workflowPause:
type: boolean
description: True if the namespace supports pausing workflows
standaloneActivities:
type: boolean
description: True if the namespace supports standalone activities
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 @@ -40,6 +40,8 @@ message NamespaceInfo {
bool reported_problems_search_attribute = 5;
// True if the namespace supports pausing workflows
bool workflow_pause = 6;
// True if the namespace supports standalone activities
bool standalone_activities = 7;
}

// Namespace configured limits
Expand Down
Loading