mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 17:00:54 +01:00
* feat(pihole): add support for v6 * fix: add session-store to keep using same session for pi-hole requests * chore: address pull request feedback * fix: import issue * fix: other import errors
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
import { createListChannel, createQueueChannel, createSubPubChannel } from "./lib/channel";
|
|
|
|
export {
|
|
createCacheChannel,
|
|
createItemAndIntegrationChannel,
|
|
createItemChannel,
|
|
createIntegrationOptionsChannel,
|
|
createWidgetOptionsChannel,
|
|
createChannelWithLatestAndEvents,
|
|
handshakeAsync,
|
|
createSubPubChannel,
|
|
createGetSetChannel,
|
|
} from "./lib/channel";
|
|
|
|
export const exampleChannel = createSubPubChannel<{ message: string }>("example");
|
|
export const pingChannel = createSubPubChannel<{ url: string; statusCode: number } | { url: string; error: string }>(
|
|
"ping",
|
|
);
|
|
export const pingUrlChannel = createListChannel<string>("ping-url");
|
|
|
|
export const homeAssistantEntityState = createSubPubChannel<{
|
|
entityId: string;
|
|
state: string;
|
|
}>("home-assistant/entity-state");
|
|
|
|
export const queueChannel = createQueueChannel<{
|
|
name: string;
|
|
executionDate: Date;
|
|
data: unknown;
|
|
}>("common-queue");
|
|
|
|
export interface LoggerMessage {
|
|
message: string;
|
|
level: string;
|
|
timestamp: string;
|
|
}
|
|
|
|
export const loggingChannel = createSubPubChannel<LoggerMessage>("logging");
|