@contentful/experiences-core 1.28.3 → 1.29.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
@@ -2,7 +2,7 @@ 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';
5
- import { ComponentDefinitionPropertyType, ComponentPropertyValue, ExperienceDataSource, ExperienceUnboundValues, Breakpoint, ExperienceComponentTree, ExperienceUsedComponents, ExperienceComponentSettings, ValuesByBreakpoint, PrimitiveValue } from '@contentful/experiences-validators';
5
+ import { ComponentDefinitionPropertyType, BindingSourceTypeEnum, ComponentPropertyValue, ExperienceDataSource, ExperienceUnboundValues, Breakpoint, ExperienceComponentTree, ExperienceUsedComponents, ExperienceComponentSettings, ValuesByBreakpoint, PrimitiveValue } from '@contentful/experiences-validators';
6
6
  export { BoundValue, Breakpoint, ComponentDefinitionPropertyType as ComponentDefinitionVariableType, ComponentPropertyValue, ComponentTreeNode, ComponentValue, DesignValue, ExperienceComponentSettings, ExperienceDataSource, ExperienceUnboundValues, PrimitiveValue, SchemaVersions, UnboundValue, ValuesByBreakpoint } from '@contentful/experiences-validators';
7
7
 
8
8
  type ComponentDefinitionVariableTypeMap = {
@@ -45,6 +45,7 @@ type ComponentDefinitionVariableValidation<T extends ComponentDefinitionProperty
45
45
  required?: boolean;
46
46
  in?: ValidationOption<T>[];
47
47
  format?: VariableFormats;
48
+ bindingSourceType?: BindingSourceTypeEnum;
48
49
  };
49
50
  interface ComponentDefinitionVariableBase<T extends ComponentDefinitionPropertyType> {
50
51
  type: T;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/experiences-core",
3
- "version": "1.28.3",
3
+ "version": "1.29.0-beta.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -69,11 +69,11 @@
69
69
  "vitest": "^2.1.1"
70
70
  },
71
71
  "dependencies": {
72
- "@contentful/experiences-validators": "1.28.3",
72
+ "@contentful/experiences-validators": "1.29.0-beta.0",
73
73
  "@contentful/rich-text-types": "^17.0.0"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "contentful": ">=10.6.0"
77
77
  },
78
- "gitHead": "1423aca86c1047673c2f24144242f48fb2dac13d"
78
+ "gitHead": "74812572ed7712a3692877d9c852fcd632b4fcf7"
79
79
  }