CloverPaymentIntegrationSchema: ZodObject<
    {
        access_token: ZodString;
        merchantId: ZodString;
        refresh_token: ZodString;
        access_token_expiration: ZodNumber;
        refresh_token_expiration: ZodNumber;
        enabled: ZodDefault<ZodBoolean>;
    },
    "strip",
    ZodTypeAny,
    {
        access_token: string;
        merchantId: string;
        refresh_token: string;
        access_token_expiration: number;
        refresh_token_expiration: number;
        enabled: boolean;
    },
    {
        access_token: string;
        merchantId: string;
        refresh_token: string;
        access_token_expiration: number;
        refresh_token_expiration: number;
        enabled?: boolean;
    },
> = ...

Schema for Clover payment integration configuration Contains authentication tokens and merchant settings

const cloverIntegration = {
access_token: "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
merchantId: "J9M2NQK8VH2R1",
refresh_token: "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
access_token_expiration: 1640995200,
refresh_token_expiration: 1643587200,
enabled: true
};