UNPKG

@domojs/homekit-controller

Version:

34 lines (32 loc) 4.46 kB
//eslint-disable-next-line @typescript-eslint/ban-ts-comment //@ts-ignore 6133 //eslint-disable-next-line @typescript-eslint/no-unused-vars import type {Arguments, Argument0, Argument1, Argument2, Argument3, Argument4, Argument5, Argument6, Argument7, Argument8, Argument9, Argument10, Argument11, Argument12, Argument13, Argument14, Argument15, Argument16, Argument17 } from '@akala/core'; import {Metadata, type ICommandProcessor, Container, registerCommands} from "@akala/commands"; // eslint-disable-next-line @typescript-eslint/no-namespace namespace commands { export interface container { dispatch (cmd:'$init', ...args: [Argument0<typeof import('./commands/$init.ts').default>]): ReturnType<typeof import('./commands/$init.ts').default> dispatch (cmd:'device-discovered', ...args: []): ReturnType<typeof import('./commands/device-discovered.ts').default> dispatch (cmd:'device-types.exec', ...args: [Argument0<typeof import('./commands/device-types/exec.ts').default>, Argument1<typeof import('./commands/device-types/exec.ts').default>, Argument2<typeof import('./commands/device-types/exec.ts').default>]): ReturnType<typeof import('./commands/device-types/exec.ts').default> dispatch (cmd:'setup-pair', ...args: [Argument0<typeof import('./commands/setup-pair.ts').default>, Argument2<typeof import('./commands/setup-pair.ts').default>]): ReturnType<typeof import('./commands/setup-pair.ts').default> dispatch (cmd:'verify-pair', ...args: [Argument0<typeof import('./commands/verify-pair.ts').default>]): ReturnType<typeof import('./commands/verify-pair.ts').default> } export interface proxy { '$init'(...args: [Argument0<typeof import('./commands/$init.ts').default>]): ReturnType<typeof import('./commands/$init.ts').default> 'device-discovered'(...args: []): ReturnType<typeof import('./commands/device-discovered.ts').default> 'device-types.exec'(...args: [Argument0<typeof import('./commands/device-types/exec.ts').default>, Argument1<typeof import('./commands/device-types/exec.ts').default>, Argument2<typeof import('./commands/device-types/exec.ts').default>]): ReturnType<typeof import('./commands/device-types/exec.ts').default> 'setup-pair'(...args: [Argument0<typeof import('./commands/setup-pair.ts').default>, Argument2<typeof import('./commands/setup-pair.ts').default>]): ReturnType<typeof import('./commands/setup-pair.ts').default> 'verify-pair'(...args: [Argument0<typeof import('./commands/verify-pair.ts').default>]): ReturnType<typeof import('./commands/verify-pair.ts').default> } export const meta={"name":"@domojs/homekit-controller","commands":[{"name":"$init","config":{"fs":{"inject":["params.0","$container"],"path":"dist/commands/$init.js","source":"src/commands/$init.ts"},"":{"inject":["params.0","$container"]},"cli":{"inject":["context","$container"]}}},{"name":"device-discovered","config":{"fs":{"inject":[],"path":"dist/commands/device-discovered.js","source":"src/commands/device-discovered.ts"},"":{"inject":[]}}},{"name":"device-types.exec","config":{"fs":{"inject":["params.0","params.1","params.2"],"path":"dist/commands/device-types/exec.js","source":"src/commands/device-types/exec.ts"},"":{"inject":["params.0","params.1","params.2"]},"jsonrpc":{"inject":["params.0","params.1","params.2"]},"types":{"inject":["device: string","command: string","value: unknown"]},"cli":{"usage":"exec <device> <command> [value]","inject":["options.device","options.command","params.0"]}}},{"name":"setup-pair","config":{"fs":{"inject":["params.0","http","params.1"],"path":"dist/commands/setup-pair.js","source":"src/commands/setup-pair.ts"},"":{"inject":["params.0","http","params.1"]},"http":{"method":"post","route":"/pair","inject":["body.accessory","http","body.pinCode"]},"types":{"inject":["accessory","http","pinCode"],"types":["string","import('@akala/core').Http","string"]}}},{"name":"verify-pair","config":{"fs":{"path":"dist/commands/verify-pair.js","source":"src/commands/verify-pair.ts","inject":["params.0"]},"":{"inject":["params.0"]}}}],"$schema":"https://raw.githubusercontent.com/npenin/akala/main/packages/commands/container-schema.json"} as Metadata.Container; export function connect(processor?:ICommandProcessor) { const container = new Container<void>("commands", void 0); registerCommands(meta.commands, processor, container); return container as container & Container<void>; } } export { commands as default };