mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-22 05:09:05 +00:00
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:
7
www/app/reflector-api.d.ts
vendored
7
www/app/reflector-api.d.ts
vendored
@@ -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 */
|
||||||
|
|||||||
Reference in New Issue
Block a user