contentful-ui-extensions-sdk
Advanced tools
Comparing version 3.16.0 to 3.16.1
{ | ||
"name": "contentful-ui-extensions-sdk", | ||
"description": "SDK to develop custom UI Extension for the Contentful Web App", | ||
"version": "3.16.0", | ||
"version": "3.16.1", | ||
"author": "Contentful GmbH", | ||
@@ -6,0 +6,0 @@ "license": "MIT", |
@@ -122,5 +122,5 @@ export declare type EntityType = 'Entry' | 'Asset'; | ||
export interface EntryAPI { | ||
/** Returns metadata for an entry. */ | ||
/** Returns sys for an entry. */ | ||
getSys: () => EntrySys; | ||
/** Calls the callback with metadata every time that metadata changes. */ | ||
/** Calls the callback with sys every time that sys changes. */ | ||
onSysChanged: (callback: (sys: EntrySys) => void) => Function; | ||
@@ -131,2 +131,6 @@ /** Allows to control the values of all other fields in the current entry. */ | ||
}; | ||
/** Optional metadata on an entry */ | ||
metadata?: { | ||
tags?: Link[]; | ||
}; | ||
} | ||
@@ -133,0 +137,0 @@ export interface ContentTypeField { |
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
64935
1254