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 @@ -12386,6 +12386,10 @@
"workerHeartbeats": {
"type": "boolean",
"title": "True if the namespace supports worker heartbeats"
},
"reportedProblemsSearchAttribute": {
"type": "boolean",
"title": "True if the namespace supports reported problems search attribute"
}
},
"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 @@ -9213,6 +9213,9 @@ components:
workerHeartbeats:
type: boolean
description: True if the namespace supports worker heartbeats
reportedProblemsSearchAttribute:
type: boolean
description: True if the namespace supports reported problems search attribute
description: Namespace capability details. Should contain what features are enabled in a namespace.
NamespaceReplicationConfig:
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 @@ -36,6 +36,8 @@ message NamespaceInfo {
bool async_update = 3;
// True if the namespace supports worker heartbeats
bool worker_heartbeats = 4;
// True if the namespace supports reported problems search attribute
bool reported_problems_search_attribute = 5;
}

// Whether scheduled workflows are supported on this namespace. This is only needed
Expand Down
Loading