Skip to content

Commit 1dea1ea

Browse files
author
Alex Patterson
authored
secure_distribution has wrong type (#462)
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.
1 parent 71416ae commit 1dea1ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ declare module 'cloudinary' {
334334
api_key?: string;
335335
api_secret?: string;
336336
private_cdn?: boolean;
337-
secure_distribution?: boolean;
337+
secure_distribution?: string;
338338
force_version?: boolean;
339339
ssl_detected?: boolean;
340340
secure?: boolean;

0 commit comments

Comments
 (0)