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
12 changes: 11 additions & 1 deletion openapi/openapiv2.json
Original file line number Diff line number Diff line change
Expand Up @@ -16544,11 +16544,21 @@
"started": {
"type": "boolean",
"description": "If true, a new workflow was started."
},
"signalLink": {
"$ref": "#/definitions/v1Link",
"description": "Link to be associated with the WorkflowExecutionSignaled event.\nAdded on the response to propagate the backlink.\nAvailable from Temporal server 1.31 and up."
}
}
},
"v1SignalWorkflowExecutionResponse": {
"type": "object"
"type": "object",
"properties": {
"link": {
"$ref": "#/definitions/v1Link",
"description": "Link to be associated with the WorkflowExecutionSignaled event.\nAdded on the response to propagate the backlink.\nAvailable from Temporal server 1.31 and up."
}
}
},
"v1StartActivityExecutionResponse": {
"type": "object",
Expand Down
16 changes: 15 additions & 1 deletion openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14165,6 +14165,13 @@ components:
started:
type: boolean
description: If true, a new workflow was started.
signalLink:
allOf:
- $ref: '#/components/schemas/Link'
description: |-
Link to be associated with the WorkflowExecutionSignaled event.
Added on the response to propagate the backlink.
Available from Temporal server 1.31 and up.
SignalWorkflowExecutionRequest:
type: object
properties:
Expand Down Expand Up @@ -14205,7 +14212,14 @@ components:
- temporal.api.workflow.v1.PostResetOperation.SignalWorkflow.
SignalWorkflowExecutionResponse:
type: object
properties: {}
properties:
link:
allOf:
- $ref: '#/components/schemas/Link'
description: |-
Link to be associated with the WorkflowExecutionSignaled event.
Added on the response to propagate the backlink.
Available from Temporal server 1.31 and up.
StartActivityExecutionRequest:
type: object
properties:
Expand Down
8 changes: 8 additions & 0 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -793,6 +793,10 @@ message SignalWorkflowExecutionRequest {
}

message SignalWorkflowExecutionResponse {
// Link to be associated with the WorkflowExecutionSignaled event.
// Added on the response to propagate the backlink.
// Available from Temporal server 1.31 and up.
temporal.api.common.v1.Link link = 1;
}

message SignalWithStartWorkflowExecutionRequest {
Expand Down Expand Up @@ -865,6 +869,10 @@ message SignalWithStartWorkflowExecutionResponse {
string run_id = 1;
// If true, a new workflow was started.
bool started = 2;
// Link to be associated with the WorkflowExecutionSignaled event.
// Added on the response to propagate the backlink.
// Available from Temporal server 1.31 and up.
temporal.api.common.v1.Link signal_link = 3;
}

message ResetWorkflowExecutionRequest {
Expand Down
Loading