From 0c533fd7805bb1a43c201bfad2e22c3bf10ef25d Mon Sep 17 00:00:00 2001 From: Alex Patterson Date: Wed, 30 Dec 2020 18:31:26 -0500 Subject: [PATCH] secure_distribution has wrong type If I am following https://cloudinary.com/documentation/cloudinary_sdks#configuration_parameters correctly the type should be string. But it seems that a boolean is acceptable. Changing to string to see if someone can take a look if this is accurate. I should be able to place my cname in here. --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 006f6c7b..f2558ca3 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -334,7 +334,7 @@ declare module 'cloudinary' { api_key?: string; api_secret?: string; private_cdn?: boolean; - secure_distribution?: boolean; + secure_distribution?: string; force_version?: boolean; ssl_detected?: boolean; secure?: boolean;