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 CHANGED
@@ -1,10 +1,9 @@
1
- ## [4.23.2](https://github.com/contentful/contentful-migration/compare/v4.23.1...v4.23.2) (2024-08-15)
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
- ### Bug Fixes
4
+ ### Features
5
5
 
6
- * bump contentful-management to include axios vuln fix ([#1345](https://github.com/contentful/contentful-migration/issues/1345)) ([ae5f532](https://github.com/contentful/contentful-migration/commit/ae5f5329880e21d9f3c4e07de15913df60a91731))
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 AllowedResource {
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "contentful-migration",
3
- "version": "4.23.2",
3
+ "version": "4.24.0",
4
4
  "description": "Migration tooling for contentful",
5
5
  "author": "Contentful GmbH",
6
6
  "license": "MIT",