feat: update TypeScript definitions for ICSStatus Literal type

- OpenAPI generation now properly reflects Literal['enabled', 'disabled'] type
- Improves type safety for frontend consumers of the API
- Applied automatic formatting via pre-commit hooks
This commit is contained in:
2025-09-11 09:25:15 -06:00
parent aff01ba789
commit 540ad7897d

View File

@@ -953,8 +953,11 @@ export interface components {
}; };
/** ICSStatus */ /** ICSStatus */
ICSStatus: { ICSStatus: {
/** Status */ /**
status: string; * Status
* @enum {string}
*/
status: "enabled" | "disabled";
/** Last Sync */ /** Last Sync */
last_sync?: string | null; last_sync?: string | null;
/** Next Sync */ /** Next Sync */