@contentful/experiences-core 1.30.1 → 1.30.2-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,8 +2,8 @@ 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, BindingSourceTypeEnum, ComponentPropertyValue, ExperienceDataSource, ExperienceUnboundValues, Breakpoint, ExperienceComponentTree, ExperienceUsedComponents, ExperienceComponentSettings, ValuesByBreakpoint, PrimitiveValue } from '@contentful/experiences-validators';
6
- export { BoundValue, Breakpoint, ComponentDefinitionPropertyType as ComponentDefinitionVariableType, ComponentPropertyValue, ComponentTreeNode, ComponentValue, DesignValue, ExperienceComponentSettings, ExperienceDataSource, ExperienceUnboundValues, PrimitiveValue, SchemaVersions, UnboundValue, ValuesByBreakpoint } from '@contentful/experiences-validators';
5
+ import { ComponentDefinitionPropertyType, BindingSourceTypeEnum, ComponentPropertyValue, ExperienceDataSource, ExperienceUnboundValues, Breakpoint, PatternProperty, ExperienceComponentTree, ExperienceUsedComponents, ExperienceComponentSettings, ValuesByBreakpoint, PrimitiveValue } from '@contentful/experiences-validators';
6
+ export { BoundValue, Breakpoint, ComponentDefinitionPropertyType as ComponentDefinitionVariableType, ComponentPropertyValue, ComponentTreeNode, ComponentValue, DesignValue, ExperienceComponentSettings, ExperienceDataSource, ExperienceUnboundValues, PatternProperty, PatternPropertyDefinition, PrimitiveValue, SchemaVersions, UnboundValue, ValuesByBreakpoint, VariableMapping } from '@contentful/experiences-validators';
7
7
 
8
8
  type ComponentDefinitionVariableTypeMap = {
9
9
  Array: unknown[];
@@ -118,6 +118,7 @@ type ExperienceTreeNode = {
118
118
  dataSource: ExperienceDataSource;
119
119
  unboundValues: ExperienceUnboundValues;
120
120
  breakpoints: Breakpoint[];
121
+ patternProperties?: Record<string, PatternProperty>;
121
122
  pattern?: {
122
123
  id: string;
123
124
  nodeId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contentful/experiences-core",
3
- "version": "1.30.1",
3
+ "version": "1.30.2-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.30.1",
72
+ "@contentful/experiences-validators": "1.30.2-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": "f781e570b1553b3fb84bf8466dec1292fa4e4ca6"
78
+ "gitHead": "c5faff03a9adec42a7fbaa0c1a00d617dffb693d"
79
79
  }