Skip to content
Draft
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 @@ -7331,6 +7331,10 @@
"type": "string"
},
"description": "Header to attach to callback request."
},
"token": {
"type": "string",
"format": "byte"
}
}
},
Expand Down
3 changes: 3 additions & 0 deletions openapi/openapiv3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7342,6 +7342,9 @@ components:
additionalProperties:
type: string
description: Header to attach to callback request.
token:
type: string
format: bytes
CanceledFailureInfo:
type: object
properties:
Expand Down
1 change: 1 addition & 0 deletions temporal/api/common/v1/message.proto
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ message Callback {
string url = 1;
// Header to attach to callback request.
map<string, string> header = 2;
bytes token = 3;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
bytes token = 3;
// A token that is used to recreated context when handling the callback request.
// Supported from server version 1.30.
bytes token = 3;

}

// Callbacks to be delivered internally within the system.
Expand Down
Loading