diff --git a/generated/.tailcallrc.graphql b/generated/.tailcallrc.graphql index 76c7f0aa08..9efc3d86a1 100644 --- a/generated/.tailcallrc.graphql +++ b/generated/.tailcallrc.graphql @@ -431,6 +431,13 @@ directive @upstream( The User-Agent header value to be used in HTTP requests. @default `Tailcall/1.0` """ userAgent: String + """ + A boolean value that determines whether to verify certificates. Setting this as `false` + will make tailcall accept self-signed certificates. NOTE: use this *only* during + development or testing. It is highly recommended to keep this enabled (`true`) in + production. + """ + verifySSL: Boolean ) on SCHEMA """ diff --git a/generated/.tailcallrc.schema.json b/generated/.tailcallrc.schema.json index 8d72151d21..6f20d154bf 100644 --- a/generated/.tailcallrc.schema.json +++ b/generated/.tailcallrc.schema.json @@ -1661,6 +1661,13 @@ "string", "null" ] + }, + "verifySSL": { + "description": "A boolean value that determines whether to verify certificates. Setting this as `false` will make tailcall accept self-signed certificates. NOTE: use this *only* during development or testing. It is highly recommended to keep this enabled (`true`) in production.", + "type": [ + "boolean", + "null" + ] } }, "additionalProperties": false