@contentful/experiences-core 1.9.1-dev-20240708T2121-56f0f54.0 → 1.10.0-dev-20240711T1608-55292da.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/dist/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Entry, Asset, AssetFile } from 'contentful';
|
|
1
|
+
import { Entry, Asset, AssetFile, ChainModifiers } from 'contentful';
|
|
2
2
|
import { SCROLL_STATES, OUTGOING_EVENTS, INCOMING_EVENTS, INTERNAL_EVENTS } from './constants.js';
|
|
3
3
|
import { EntityStore } from './entity/EntityStore.js';
|
|
4
4
|
import { Document } from '@contentful/rich-text-types';
|
|
@@ -215,7 +215,7 @@ type RequestedEntitiesMessage = {
|
|
|
215
215
|
entities: Array<Entry | Asset>;
|
|
216
216
|
missingEntityIds?: string[];
|
|
217
217
|
};
|
|
218
|
-
type BoundComponentPropertyTypes = string | number | boolean | AssetFile | Record<string, AssetFile | undefined> | Document | OptimizedBackgroundImageAsset | OptimizedImageAsset | Link<'Asset'> | undefined;
|
|
218
|
+
type BoundComponentPropertyTypes = string | number | boolean | AssetFile | Record<string, AssetFile | undefined> | Document | OptimizedBackgroundImageAsset | OptimizedImageAsset | Link<'Asset'> | Entry | Asset | (string | Entry | Asset<ChainModifiers, string> | undefined)[] | undefined;
|
|
219
219
|
type OptimizedImageAsset = {
|
|
220
220
|
url: string;
|
|
221
221
|
srcSet?: string[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contentful/experiences-core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.0-dev-20240711T1608-55292da.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -65,11 +65,11 @@
|
|
|
65
65
|
"vitest": "^1.0.4"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@contentful/experiences-validators": "1.
|
|
68
|
+
"@contentful/experiences-validators": "1.10.0-dev-20240711T1608-55292da.0",
|
|
69
69
|
"@contentful/rich-text-types": "^16.3.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"contentful": ">=10.6.0"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "10559e0ab9cc6e96459b773ff30d5da45f3a9766"
|
|
75
75
|
}
|