contentful-ui-extensions-sdk
Advanced tools
Comparing version 3.11.0 to 3.11.1
{ | ||
"name": "contentful-ui-extensions-sdk", | ||
"description": "SDK to develop custom UI Extension for the Contentful Web App", | ||
"version": "3.11.0", | ||
"version": "3.11.1", | ||
"author": "Contentful GmbH", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -396,3 +396,6 @@ declare module 'contentful-ui-extensions-sdk' { | ||
/** Opens a dialog for selecting a single asset. */ | ||
selectSingleAsset: <T = Object>(options?: { locale?: string }) => Promise<T | null> | ||
selectSingleAsset: <T = Object>(options?: { | ||
locale?: string | ||
mimetypeGroups?: string[] | ||
}) => Promise<T | null> | ||
/** Opens a dialog for selecting multiple assets. */ | ||
@@ -403,2 +406,3 @@ selectMultipleAssets: <T = Object>(options?: { | ||
max?: number | ||
mimetypeGroups?: string[] | ||
}) => Promise<T[] | null> | ||
@@ -405,0 +409,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
93307
1967