mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat(spotlight): add search settings link * feat(search-engine): add to manage pages * feat(spotlight): add children option for external search engines * chore: revert search settings * fix: deepsource issue * fix: inconsistent breadcrum placement * chore: address pull request feedback
35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { appSchemas } from "./app";
|
|
import { boardSchemas } from "./board";
|
|
import { commonSchemas } from "./common";
|
|
import { groupSchemas } from "./group";
|
|
import { iconsSchemas } from "./icons";
|
|
import { integrationSchemas } from "./integration";
|
|
import { locationSchemas } from "./location";
|
|
import { searchEngineSchemas } from "./search-engine";
|
|
import { userSchemas } from "./user";
|
|
import { widgetSchemas } from "./widgets";
|
|
|
|
export const validation = {
|
|
user: userSchemas,
|
|
group: groupSchemas,
|
|
integration: integrationSchemas,
|
|
board: boardSchemas,
|
|
app: appSchemas,
|
|
widget: widgetSchemas,
|
|
location: locationSchemas,
|
|
icons: iconsSchemas,
|
|
searchEngine: searchEngineSchemas,
|
|
common: commonSchemas,
|
|
};
|
|
|
|
export { oldmarrImportConfigurationSchema, superRefineJsonImportFile } from "./board";
|
|
export type { OldmarrImportConfiguration } from "./board";
|
|
export {
|
|
createSectionSchema,
|
|
itemAdvancedOptionsSchema,
|
|
sharedItemSchema,
|
|
type BoardItemAdvancedOptions,
|
|
type BoardItemIntegration,
|
|
} from "./shared";
|
|
export { passwordRequirements } from "./user";
|