diff --git a/packages/cli/src/constructs/api-check.ts b/packages/cli/src/constructs/api-check.ts index dd67bec2..d293489c 100644 --- a/packages/cli/src/constructs/api-check.ts +++ b/packages/cli/src/constructs/api-check.ts @@ -194,6 +194,7 @@ export type HttpRequestMethod = | 'delete' | 'DELETE' | 'options' | 'OPTIONS' +export type IPFamily = 'IPv4' | 'IPv6' export interface BasicAuth { username: string password: string @@ -209,6 +210,7 @@ export type ApiCheckDefaultConfig = { export interface Request { url: string, method: HttpRequestMethod, + ipFamily?: IPFamily, followRedirects?: boolean, skipSSL?: boolean, /**