import { Scry } from '../../http-api/src' import { Poke } from '../../http-api/src/types'; import { Belt, Task, SessionTask } from './types'; export const pokeTask = (session: string, task: Task): Poke => ({ app: 'herm', mark: 'herm-task', json: { session, ...task } }); export const pokeBelt = ( session: string, belt: Belt ): Poke => pokeTask(session, { belt }); //NOTE scry will return string[] export const scrySessions = (): Scry => ({ app: 'herm', path: `/sessions` });