Variable WorldNotificationPayloadSchemaConst

WorldNotificationPayloadSchema: ZodObject<{
    actorPlayerId: ZodString;
    createdAt: ZodString;
    description: ZodString;
    id: ZodString;
    kind: ZodEnum<["message_like", "message_love", "message_reply", "room_join", "peer_call_invite", "peer_call_declined"]>;
    messageRequestId: ZodOptional<ZodString>;
    metadata: ZodDefault<ZodRecord<ZodString, ZodUnknown>>;
    targetPlayerId: ZodOptional<ZodString>;
    title: ZodString;
}, "strip", ZodTypeAny, {
    actorPlayerId: string;
    createdAt: string;
    description: string;
    id: string;
    kind:
        | "message_like"
        | "message_love"
        | "message_reply"
        | "room_join"
        | "peer_call_invite"
        | "peer_call_declined";
    messageRequestId?: string;
    metadata: Record<string, unknown>;
    targetPlayerId?: string;
    title: string;
}, {
    actorPlayerId: string;
    createdAt: string;
    description: string;
    id: string;
    kind:
        | "message_like"
        | "message_love"
        | "message_reply"
        | "room_join"
        | "peer_call_invite"
        | "peer_call_declined";
    messageRequestId?: string;
    metadata?: Record<string, unknown>;
    targetPlayerId?: string;
    title: string;
}> = ...