Variable UpdatePlayedSongsMessageSchemaConst
UpdatePlayedSongsMessageSchema: ZodObject<
{
songs: ZodArray<
ZodObject<
{
artist: ZodString;
audioURL: ZodUnion<
readonly [ZodURL, ZodCustomStringFormat<"SoundCloudSong">],
>;
cover: ZodNullable<ZodUnion<readonly [ZodURL, ZodURL]>>;
hrefURL: ZodUnion<readonly [ZodURL, ZodURL]>;
name: ZodString;
},
$strip,
>,
>;
type: ZodDefault<ZodLiteral<"update_played_songs">>;
},
$strip,
> = ...