@contentful/experiences-core 1.9.1-dev-20240702T1452-263f331.0 → 1.10.0-beta.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.9.1-dev-20240702T1452-263f331.0",
3
+ "version": "1.10.0-beta.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.9.1-dev-20240702T1452-263f331.0",
68
+ "@contentful/experiences-validators": "1.10.0-beta.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": "f33d28ab5844deda04acb6a036a802df8d2a00ec"
74
+ "gitHead": "1f4bab5f8065bb8da777e71dce33ccd55a82f469"
75
75
  }