Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

contentful-ui-extensions-sdk

Package Overview
Dependencies
Maintainers
4
Versions
195
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

contentful-ui-extensions-sdk - npm Package Compare versions

Comparing version 3.16.1 to 3.17.0

2

package.json
{
"name": "contentful-ui-extensions-sdk",
"description": "SDK to develop custom UI Extension for the Contentful Web App",
"version": "3.16.1",
"version": "3.17.0",
"author": "Contentful GmbH",

@@ -6,0 +6,0 @@ "license": "MIT",

@@ -453,3 +453,3 @@ export declare type EntityType = 'Entry' | 'Asset';

user: string;
extension: string;
extension?: string;
app?: string;

@@ -508,7 +508,7 @@ space: string;

/** A set of IDs actual for the extension */
ids: Pick<IdsAPI, 'entry' | 'contentType' | 'environment' | 'space' | 'extension' | 'user'>;
ids: Omit<IdsAPI, 'field'>;
};
export declare type SidebarExtensionSDK = BaseExtensionSDK & SharedEditorSDK & {
/** A set of IDs actual for the extension */
ids: Pick<IdsAPI, 'entry' | 'contentType' | 'environment' | 'space' | 'extension' | 'user'>;
ids: Omit<IdsAPI, 'field'>;
/** Methods to update the size of the iframe the extension is contained within. */

@@ -527,3 +527,3 @@ window: WindowAPI;

/** A set of IDs actual for the extension */
ids: Pick<IdsAPI, 'environment' | 'space' | 'extension' | 'user'>;
ids: Omit<IdsAPI, 'field' | 'entry' | 'contentType'>;
/** Closes the dialog and resolves openExtension promise with data */

@@ -536,3 +536,3 @@ close: (data?: any) => void;

/** A set of IDs actual for the extension */
ids: Pick<IdsAPI, 'environment' | 'space' | 'extension' | 'user'>;
ids: Omit<IdsAPI, 'field' | 'entry' | 'contentType'>;
};

@@ -553,3 +553,5 @@ export interface AppConfigAPI {

/** A set of IDs actual for the app */
ids: Pick<IdsAPI, 'environment' | 'space' | 'app' | 'user'>;
ids: Omit<IdsAPI, 'extension' | 'field' | 'entry' | 'contentType' | 'app'> & {
app: string;
};
app: AppConfigAPI;

@@ -556,0 +558,0 @@ };

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc