@wix/auto_sdk_data-extension-schema_schemas 1.0.91 → 1.0.93

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.
@@ -13256,7 +13256,7 @@ interface EditorElement {
13256
13256
  /**
13257
13257
  * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)
13258
13258
  * @minLength 4
13259
- * @maxLength 50
13259
+ * @maxLength 300
13260
13260
  */
13261
13261
  selector?: string;
13262
13262
  /**
@@ -13790,13 +13790,19 @@ declare enum VectorArtCategoryTypes {
13790
13790
  SHAPE_BASIC = "SHAPE_BASIC",
13791
13791
  /** Vector Art Shapes - mapped to SHAPE_ART */
13792
13792
  SHAPE_ART = "SHAPE_ART",
13793
- /** Social Icons - mapped to ICON_SOCIAL */
13793
+ /** Social Icons - deprecated use SHAPE_SOCIAL instead */
13794
13794
  ICON_SOCIAL = "ICON_SOCIAL",
13795
13795
  /** Location Icons - mapped to SHAPE_LOCATION */
13796
- SHAPE_LOCATION = "SHAPE_LOCATION"
13796
+ SHAPE_LOCATION = "SHAPE_LOCATION",
13797
+ /** Documents Icons - mapped to SHAPE_DOCUMENTS */
13798
+ SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
13799
+ /** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
13800
+ SHAPE_SOCIAL = "SHAPE_SOCIAL",
13801
+ /** Arrow Icons - mapped to SHAPE_ARROWS */
13802
+ SHAPE_ARROWS = "SHAPE_ARROWS"
13797
13803
  }
13798
13804
  /** @enumType */
13799
- type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
13805
+ type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
13800
13806
  /** DEPRECATED: This message is deprecated and will be removed in the future */
13801
13807
  interface CustomEnum {
13802
13808
  /**
@@ -14371,9 +14377,9 @@ declare enum ElementType {
14371
14377
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14372
14378
  interface InlineElement {
14373
14379
  /**
14374
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14380
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14375
14381
  * @minLength 4
14376
- * @maxLength 50
14382
+ * @maxLength 300
14377
14383
  */
14378
14384
  selector?: string;
14379
14385
  /**
@@ -15848,9 +15854,9 @@ interface RefElement {
15848
15854
  */
15849
15855
  type?: string;
15850
15856
  /**
15851
- * The override of the used element selector
15857
+ * The override of the used element selector, full path from root
15852
15858
  * @minLength 4
15853
- * @maxLength 50
15859
+ * @maxLength 300
15854
15860
  */
15855
15861
  selector?: string;
15856
15862
  /**
@@ -2373,6 +2373,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
2373
2373
  VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
2374
2374
  VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
2375
2375
  VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
2376
+ VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
2377
+ VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
2378
+ VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
2376
2379
  return VectorArtCategoryTypes2;
2377
2380
  })(VectorArtCategoryTypes || {});
2378
2381
  var CssDataType = /* @__PURE__ */ ((CssDataType2) => {