contentful-ui-extensions-sdk
Advanced tools
Comparing version 3.10.8 to 3.10.9
{ | ||
"name": "contentful-ui-extensions-sdk", | ||
"description": "SDK to develop custom UI Extension for the Contentful Web App", | ||
"version": "3.10.8", | ||
"version": "3.10.9", | ||
"author": "Contentful GmbH", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -45,2 +45,4 @@ declare module 'contentful-ui-extensions-sdk' { | ||
publishedVersion: number | ||
deletedVersion?: number | ||
archivedVersion?: number | ||
publishedAt: string | ||
@@ -160,3 +162,3 @@ firstPublishedAt: string | ||
} | ||
fields: { [key: string]: ContentTypeField } | ||
fields: ContentTypeField[] | ||
name: string | ||
@@ -511,5 +513,5 @@ displayField: string | ||
/** Returns parameters of an App, null otherwise **/ | ||
getParameters: () => Promise<null | Object> | ||
getParameters: <T = Object>() => Promise<null | T> | ||
/** Returns current state of an App, null otherwise **/ | ||
getCurrentState: () => Promise<null | Object> | ||
getCurrentState: <T = Object>() => Promise<null | T> | ||
/** Registers a handler to be called to produce parameters for an App **/ | ||
@@ -516,0 +518,0 @@ onConfigure: (handler: Function) => Promise<void> |
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
90560
1891