Variable checkBlockSchemaConst

checkBlockSchema: ZodObject<{
    maxAgeInDays: ZodOptional<ZodNumber>;
    network: ZodEffects<ZodString, string, string>;
}, "strip", ZodTypeAny, {
    maxAgeInDays?: number;
    network: string;
}, {
    maxAgeInDays?: number;
    network: string;
}> = ...

Type declaration

  • maxAgeInDays: ZodOptional<ZodNumber>

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API. The value is capped by your current subscription tier. (Up to 30 on Standard, 60 on Basic, 365 on Premium).

  • network: ZodEffects<ZodString, string, string>

    Single IPv4/IPv6 address block in CIDR format. The value is capped by your current subscription tier. (Up to /24 on Standard, /20 on Basic, /16 on Premium).

Type declaration

  • Optional maxAgeInDays?: number

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API. The value is capped by your current subscription tier. (Up to 30 on Standard, 60 on Basic, 365 on Premium).

  • network: string

    Single IPv4/IPv6 address block in CIDR format. The value is capped by your current subscription tier. (Up to /24 on Standard, /20 on Basic, /16 on Premium).

Type declaration

  • Optional maxAgeInDays?: number

    Show latest reports based on n days. Accepted values between 1 and 365, defaults to 30 by the API. The value is capped by your current subscription tier. (Up to 30 on Standard, 60 on Basic, 365 on Premium).

  • network: string

    Single IPv4/IPv6 address block in CIDR format. The value is capped by your current subscription tier. (Up to /24 on Standard, /20 on Basic, /16 on Premium).

Generated using TypeDoc