contentful-migration 4.23.2 → 4.24.0
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 +3 -4
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
|
|
1
|
+
# [4.24.0](https://github.com/contentful/contentful-migration/compare/v4.23.2...v4.24.0) (2024-10-01)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
*
|
|
7
|
-
* ts errors ([#1358](https://github.com/contentful/contentful-migration/issues/1358)) ([b20125c](https://github.com/contentful/contentful-migration/commit/b20125c36a4ba78af9174066c2fb888cf5b8aaf7))
|
|
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))
|
|
8
7
|
|
|
9
8
|
# Change Log
|
|
10
9
|
|
package/index.d.ts
CHANGED
|
@@ -161,12 +161,18 @@ export interface IValidation {
|
|
|
161
161
|
[validation: string]: any
|
|
162
162
|
}
|
|
163
163
|
|
|
164
|
-
export interface
|
|
164
|
+
export interface ContentfulEntryResource {
|
|
165
165
|
type: 'Contentful:Entry'
|
|
166
166
|
source: string
|
|
167
167
|
contentTypes: string[]
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
+
export interface ExternalResource {
|
|
171
|
+
type: string
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
export type AllowedResource = ContentfulEntryResource | ExternalResource
|
|
175
|
+
|
|
170
176
|
export type WidgetSettingsValue = number | boolean | string | undefined
|
|
171
177
|
|
|
172
178
|
export interface IEditorInterfaceOptions {
|