contentful-migration 4.24.0 → 4.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -6
- package/index.d.ts +14 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Features
|
|
5
|
-
|
|
6
|
-
* allow external resources to be set ([#1400](https://github.com/contentful/contentful-migration/issues/1400)) ([bbd3eb6](https://github.com/contentful/contentful-migration/commit/bbd3eb6026068c184b07bc5634d60c3ecae2efe9))
|
|
1
|
+
## [4.25.1](https://github.com/contentful/contentful-migration/compare/v4.25.0...v4.25.1) (2024-10-21)
|
|
7
2
|
|
|
8
3
|
# Change Log
|
|
9
4
|
|
package/index.d.ts
CHANGED
|
@@ -207,6 +207,12 @@ export interface IFieldGroupWidgetSettings {
|
|
|
207
207
|
[setting: string]: WidgetSettingsValue
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
+
export interface IEntryEditor {
|
|
211
|
+
widgetNamespace: 'editor-builtin' | 'builtin' | 'extension' | 'app',
|
|
212
|
+
widgetId: string,
|
|
213
|
+
settings?: IEditorInterfaceOptions
|
|
214
|
+
}
|
|
215
|
+
|
|
210
216
|
export interface ContentType {
|
|
211
217
|
id: string
|
|
212
218
|
instanceId: string
|
|
@@ -245,11 +251,18 @@ export interface ContentType {
|
|
|
245
251
|
* @param settings Widget settings
|
|
246
252
|
*/
|
|
247
253
|
configureEntryEditor(
|
|
248
|
-
widgetNamespace: 'builtin' | 'extension' | 'app',
|
|
254
|
+
widgetNamespace: 'editor-builtin' | 'builtin' | 'extension' | 'app',
|
|
249
255
|
widgetId: string,
|
|
250
256
|
settings?: IEditorInterfaceOptions
|
|
251
257
|
): void
|
|
252
258
|
|
|
259
|
+
/**
|
|
260
|
+
* Similar to configureEntryEditor, but allows configuring multiple entry editors at once.
|
|
261
|
+
*
|
|
262
|
+
* @param entryEditors An array of entry editor configurations.
|
|
263
|
+
*/
|
|
264
|
+
configureEntryEditors(entryEditors: IEntryEditor[]): void
|
|
265
|
+
|
|
253
266
|
/**
|
|
254
267
|
* Changes the control of given field's ID.
|
|
255
268
|
*
|