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
8 changes: 8 additions & 0 deletions openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -16804,6 +16804,14 @@
"workflowTaskCompletionPagination": {
"type": "boolean",
"description": "True if the namespace supports pagination of `RespondWorkflowTaskCompleted` request."
},
"standaloneActivityStartDelay": {
"type": "boolean",
"description": "True if the namespace supports start delay for standalone activities."
},
"standaloneActivityStartBatchOperations": {
"type": "boolean",
"description": "True if the namespace supports batch operations for standalone activities."
}
},
"description": "Namespace capability details. Should contain what features are enabled in a namespace."
Expand Down
6 changes: 6 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13204,6 +13204,12 @@ components:
workflowTaskCompletionPagination:
type: boolean
description: True if the namespace supports pagination of `RespondWorkflowTaskCompleted` request.
standaloneActivityStartDelay:
type: boolean
description: True if the namespace supports start delay for standalone activities.
standaloneActivityStartBatchOperations:
type: boolean
description: True if the namespace supports batch operations for standalone activities.
description: Namespace capability details. Should contain what features are enabled in a namespace.
NamespaceInfo_Limits:
type: object
Expand Down
4 changes: 4 additions & 0 deletions temporal/api/namespace/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ message NamespaceInfo {
bool poller_autoscaling_auto_enroll = 13;
// True if the namespace supports pagination of `RespondWorkflowTaskCompleted` request.
bool workflow_task_completion_pagination = 14;
// True if the namespace supports start delay for standalone activities.
Comment thread
spkane31 marked this conversation as resolved.
bool standalone_activity_start_delay = 15;
// True if the namespace supports batch operations for standalone activities.
bool standalone_activity_start_batch_operations = 16;
}

// Namespace configured limits
Expand Down
Loading