fix(scheduling-webui): submit participant revisions

This commit is contained in:
2026-07-22 03:40:10 +02:00
parent 448546e487
commit 27fa24cf4d
4 changed files with 13 additions and 3 deletions
+2
View File
@@ -27,6 +27,7 @@ export type SchedulingCandidateSlot = {
export type SchedulingParticipant = {
id: string;
revision?: string | null;
is_current_participant: boolean;
respondent_id?: string | null;
display_name?: string | null;
@@ -168,6 +169,7 @@ export type SchedulingCandidateSlotReconcilePayload = SchedulingCandidateSlotPay
export type SchedulingParticipantReconcilePayload = SchedulingParticipantPayload & {
id?: string;
revision?: string;
};
export type SchedulingCandidateSlotUpdatePayload = {