This commit is contained in:
2026-03-21 15:41:30 -04:00
parent 197a1577c2
commit ba919bbde4
19 changed files with 824 additions and 198 deletions

View File

@@ -0,0 +1,13 @@
/**
* Generated by orval v8.5.3 🍺
* Do not edit manually.
* AnthoLume API v1
* REST API for AnthoLume document management system
* OpenAPI spec version: 1.0.0
*/
export interface ConfigResponse {
version: string;
search_enabled: boolean;
registration_enabled: boolean;
}

View File

@@ -9,6 +9,7 @@
export * from './activity';
export * from './activityResponse';
export * from './backupType';
export * from './configResponse';
export * from './createDocumentBody';
export * from './databaseInfo';
export * from './device';
@@ -33,6 +34,7 @@ export * from './importResult';
export * from './importResultsResponse';
export * from './importResultStatus';
export * from './importType';
export * from './infoResponse';
export * from './leaderboardData';
export * from './leaderboardEntry';
export * from './logEntry';

View File

@@ -0,0 +1,13 @@
/**
* Generated by orval v8.5.3 🍺
* Do not edit manually.
* AnthoLume API v1
* REST API for AnthoLume document management system
* OpenAPI spec version: 1.0.0
*/
export interface InfoResponse {
version: string;
search_enabled: boolean;
registration_enabled: boolean;
}