mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
27 lines
392 B
TypeScript
27 lines
392 B
TypeScript
export const $UpdateParticipant = {
|
|
properties: {
|
|
speaker: {
|
|
type: "any-of",
|
|
contains: [
|
|
{
|
|
type: "number",
|
|
},
|
|
{
|
|
type: "null",
|
|
},
|
|
],
|
|
},
|
|
name: {
|
|
type: "any-of",
|
|
contains: [
|
|
{
|
|
type: "string",
|
|
},
|
|
{
|
|
type: "null",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
} as const;
|