Added useDarkMode hook for detecting dark mode setting dynamically (#3019)

This commit is contained in:
Zane
2025-06-20 15:05:58 -07:00
committed by GitHub
parent 12dc952077
commit 4b39e74918
3 changed files with 57 additions and 1 deletions
+8
View File
@@ -910,6 +910,14 @@ export type CreateScheduleData = {
};
export type CreateScheduleErrors = {
/**
* Invalid cron expression or recipe file
*/
400: unknown;
/**
* Job ID already exists
*/
409: unknown;
/**
* Internal server error
*/