Skip to content

Commit

Permalink
secure_distribution has wrong type (#462)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Alex Patterson authored Dec 31, 2020
1 parent 71416ae commit 1dea1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1dea1ea

Please sign in to comment.