Esposter
    Preparing search index...

    Variable webhookMessageEntitySchemaConst

    webhookMessageEntitySchema: ZodObject<
        {
            appUser: ZodObject<
                {
                    id: ZodUUID;
                    image: ZodOptional<ZodString>;
                    name: ZodOptional<
                        ZodPipe<ZodPipe<ZodString, ZodTransform<string, string>>, ZodString>,
                    >;
                },
                $strip,
            >;
            createdAt: ZodDate;
            deletedAt: ZodNullable<ZodDate>;
            files: ZodDefault<
                ZodArray<
                    ZodObject<
                        {
                            filename: ZodString;
                            id: ZodUUID;
                            mimetype: ZodString;
                            size: ZodInt;
                        },
                        $strip,
                    >,
                >,
            >;
            isEdited: ZodOptional<ZodLiteral<true>>;
            isForward: ZodOptional<ZodLiteral<true>>;
            isPinned: ZodOptional<ZodLiteral<true>>;
            mentions: ZodDefault<ZodArray<ZodString>>;
            message: ZodDefault<
                ZodPipe<ZodPipe<ZodString, ZodTransform<string, string>>, ZodString>,
            >;
            partitionKey: ZodUUID;
            replyRowKey: ZodOptional<ZodString>;
            rowKey: ZodString;
            type: ZodLiteral<Webhook>;
            updatedAt: ZodDate;
            userId: ZodOptional<ZodUndefined>;
        },
        $strip,
    > = ...