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 @@ -8936,6 +8936,10 @@
"identity": {
"type": "string",
"title": "The identity of the worker/client"
},
"resetOptions": {
"$ref": "#/definitions/v1ResetOptions",
"description": "Describes where to reset to and how. If set, `workflow_task_finish_event_id` is ignored."
}
}
},
Expand Down
4 changes: 4 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11898,6 +11898,10 @@ components:
identity:
type: string
description: The identity of the worker/client
resetOptions:
allOf:
- $ref: '#/components/schemas/ResetOptions'
description: Describes where to reset to and how. If set, `workflow_task_finish_event_id` is ignored.
ResetWorkflowExecutionResponse:
type: object
properties:
Expand Down
2 changes: 2 additions & 0 deletions temporal/api/workflowservice/v1/request_response.proto
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,8 @@ message ResetWorkflowExecutionRequest {
repeated temporal.api.workflow.v1.PostResetOperation post_reset_operations = 8;
// The identity of the worker/client
string identity = 9;
// Describes where to reset to and how. If set, `workflow_task_finish_event_id` is ignored.
temporal.api.common.v1.ResetOptions reset_options = 10;
}

message ResetWorkflowExecutionResponse {
Expand Down