Variable AddPlaylistsMessageSchemaConst
AddPlaylistsMessageSchema: ZodObject<
{
playlists: ZodArray<
ZodObject<
{
cover: ZodNullable<ZodUnion<readonly [ZodURL, ZodURL]>>;
hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
name: ZodString;
songs: ZodArray<
ZodObject<
{
artist: ZodString;
audioURL: ZodUnion<readonly [ZodURL, ZodCustomStringFormat<(...)>]>;
cover: ZodNullable<ZodUnion<readonly [(...), (...)]>>;
hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
name: ZodString;
},
$strip,
>,
>;
subtitle: ZodOptional<ZodString>;
},
$strip,
>,
>;
type: ZodDefault<ZodLiteral<"add_playlists">>;
},
$strip,
> = ...
Schema for messages requesting to add a new playlist to the game.