Skip to content

Commit 7cece98

Browse files
committed
feat: add memo field to UpdateScheduleRequest
Adds Memo field (field 8) to UpdateScheduleRequest with merge semantics for updating schedule memo on CHASM-backed schedules.
1 parent db5f593 commit 7cece98

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

temporal/api/workflowservice/v1/request_response.proto

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,6 +1355,13 @@ message UpdateScheduleRequest {
13551355
// Note: you cannot only update the search attributes with `UpdateScheduleRequest`,
13561356
// you must also set the `schedule` field; otherwise, it will unset the schedule.
13571357
temporal.api.common.v1.SearchAttributes search_attributes = 7;
1358+
1359+
// Schedule memo to update. Uses merge semantics:
1360+
// - Fields with non-nil values are upserted.
1361+
// - Fields with nil/empty values are deleted.
1362+
// - Fields not present are left unchanged.
1363+
// Do not set this field if you do not want to update the memo.
1364+
temporal.api.common.v1.Memo memo = 8;
13581365
}
13591366

13601367
message UpdateScheduleResponse {

0 commit comments

Comments
 (0)