fix: keyboard shortcuts in rundown

This commit is contained in:
Carlos Valente
2025-07-14 20:58:50 +02:00
committed by Carlos Valente
parent ad2ef3b53f
commit abe9012f20
4 changed files with 69 additions and 45 deletions
@@ -1,15 +1,15 @@
import type { OntimeEntry } from '../../definitions/core/OntimeEntry.js';
import type { EntryId, OntimeEntry } from '../../definitions/core/OntimeEntry.js';
export type PatchWithId<T extends OntimeEntry = OntimeEntry> = Partial<T> & { id: string };
export type PatchWithId<T extends OntimeEntry = OntimeEntry> = Partial<T> & { id: EntryId };
export type EventPostPayload = Partial<OntimeEntry> & {
after?: string;
before?: string;
after?: EntryId;
before?: EntryId;
};
export type TransientEventPayload = Partial<OntimeEntry> & {
after?: string;
before?: string;
after?: EntryId;
before?: EntryId;
};
export type ProjectRundown = {