export type GetForegroundProcessRequest = {
id: string
type: 'getForegroundProcess'
payload: {
sessionId: string
}
export type ConfirmForegroundProcessRequest = Omit<GetForegroundProcessRequest, 'type'> & {
type: 'confirmForegroundProcess'