Esposter
    Preparing search index...

    Variable scheduledMessageJobPayloadSchemaConst

    scheduledMessageJobPayloadSchema: ZodDiscriminatedUnion<
        [
            ZodObject<
                {
                    text: ZodPipe<
                        ZodPipe<ZodString, ZodTransform<string, string>>,
                        ZodString,
                    >;
                    type: ZodLiteral<Reminder>;
                },
                $strip,
            >,
            ZodObject<
                {
                    message: ZodPipe<
                        ZodPipe<ZodString, ZodTransform<string, string>>,
                        ZodString,
                    >;
                    type: ZodLiteral<ScheduledMessage>;
                },
                $strip,
            >,
        ],
        "type",
    > = ...