feat: Add component strucutre for calls and super basic livekit implementation
This commit is contained in:
parent
cdb0fdbf76
commit
b7266da61f
20 changed files with 284 additions and 45 deletions
|
|
@ -153,6 +153,16 @@ export const ttp = {
|
|||
timestamp: z.number(),
|
||||
}),
|
||||
},
|
||||
|
||||
// Calls
|
||||
get_call_data: {
|
||||
request: z.object({
|
||||
call_id: z.string(),
|
||||
}),
|
||||
response: z.object({
|
||||
someInfo: z.string(),
|
||||
}),
|
||||
},
|
||||
} satisfies Record<string, { request: z.ZodType; response: z.ZodType }>;
|
||||
|
||||
export type TTP = typeof ttp;
|
||||
|
|
|
|||
Loading…
Reference in a new issue