Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
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.

Not understanding this necessarily. I see "ATTACH PROPOSAL HERE" in the description. Can you clarify this from the description:

Allows the SDK to explicitly attach the New Nexus Callback Token to a Callback.

What do SDKs need to do?

Copy link
Author

Choose a reason for hiding this comment

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

my bad, forgot to move it back to draft. I'll share a proposal soon to clarify

}

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