Adjust all endpoints and methods to tranga/postgres-Server-V2.

Search working.
This commit is contained in:
2025-03-13 20:08:37 +01:00
parent 0402f9e6d0
commit 84520d8e18
36 changed files with 729 additions and 976 deletions

View File

@ -0,0 +1,9 @@
export default interface ICoverFormatRequestRecord {
size: Size;
}
export interface Size {
width: number;
height: number;
isEmpty: boolean;
}

View File

@ -0,0 +1,5 @@
export default interface IGotifyRecord {
endpoint: string;
appToken: string;
priority: number;
}

View File

@ -0,0 +1,4 @@
export default interface IModifyJobRecord {
recurrenceMs: number;
enabled: boolean;
}

View File

@ -0,0 +1,7 @@
export default interface INtfyRecord {
endpoint: string;
username: string;
password: string;
topic: string;
priority: number;
}

View File

@ -0,0 +1,3 @@
export default interface IlunaseaRecord {
id: string;
}