@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.
@@ -13273,7 +13273,7 @@ interface EditorElement {
13273
13273
  /**
13274
13274
  * DOM Query selector for this element that we can use to find it when rendering it (preferably a className)
13275
13275
  * @minLength 4
13276
- * @maxLength 50
13276
+ * @maxLength 300
13277
13277
  */
13278
13278
  selector?: string;
13279
13279
  /**
@@ -13807,13 +13807,19 @@ declare enum VectorArtCategoryTypes {
13807
13807
  SHAPE_BASIC = "SHAPE_BASIC",
13808
13808
  /** Vector Art Shapes - mapped to SHAPE_ART */
13809
13809
  SHAPE_ART = "SHAPE_ART",
13810
- /** Social Icons - mapped to ICON_SOCIAL */
13810
+ /** Social Icons - deprecated use SHAPE_SOCIAL instead */
13811
13811
  ICON_SOCIAL = "ICON_SOCIAL",
13812
13812
  /** Location Icons - mapped to SHAPE_LOCATION */
13813
- SHAPE_LOCATION = "SHAPE_LOCATION"
13813
+ SHAPE_LOCATION = "SHAPE_LOCATION",
13814
+ /** Documents Icons - mapped to SHAPE_DOCUMENTS */
13815
+ SHAPE_DOCUMENTS = "SHAPE_DOCUMENTS",
13816
+ /** Social Icons - mapped to SHAPE_SOCIAL from type SVG */
13817
+ SHAPE_SOCIAL = "SHAPE_SOCIAL",
13818
+ /** Arrow Icons - mapped to SHAPE_ARROWS */
13819
+ SHAPE_ARROWS = "SHAPE_ARROWS"
13814
13820
  }
13815
13821
  /** @enumType */
13816
- type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION';
13822
+ type VectorArtCategoryTypesWithLiterals = VectorArtCategoryTypes | 'UNKNOWN_VectorArtCategoryTypes' | 'SHAPE_ALL' | 'SHAPE_BASIC' | 'SHAPE_ART' | 'ICON_SOCIAL' | 'SHAPE_LOCATION' | 'SHAPE_DOCUMENTS' | 'SHAPE_SOCIAL' | 'SHAPE_ARROWS';
13817
13823
  /** DEPRECATED: This message is deprecated and will be removed in the future */
13818
13824
  interface CustomEnum {
13819
13825
  /**
@@ -14388,9 +14394,9 @@ declare enum ElementType {
14388
14394
  type ElementTypeWithLiterals = ElementType | 'UNKNOWN_ElementType' | 'inlineElement' | 'refElement';
14389
14395
  interface InlineElement {
14390
14396
  /**
14391
- * Relative DOM Query selector for this element. We assume nesting by it's parent elements for CSS Vars scoping.
14397
+ * Relative DOM Query selector for this element to the component root. We assume nesting by it's parent elements for CSS Vars scoping.
14392
14398
  * @minLength 4
14393
- * @maxLength 50
14399
+ * @maxLength 300
14394
14400
  */
14395
14401
  selector?: string;
14396
14402
  /**
@@ -15865,9 +15871,9 @@ interface RefElement {
15865
15871
  */
15866
15872
  type?: string;
15867
15873
  /**
15868
- * The override of the used element selector
15874
+ * The override of the used element selector, full path from root
15869
15875
  * @minLength 4
15870
- * @maxLength 50
15876
+ * @maxLength 300
15871
15877
  */
15872
15878
  selector?: string;
15873
15879
  /**
@@ -2110,6 +2110,9 @@ var VectorArtCategoryTypes = /* @__PURE__ */ ((VectorArtCategoryTypes2) => {
2110
2110
  VectorArtCategoryTypes2["SHAPE_ART"] = "SHAPE_ART";
2111
2111
  VectorArtCategoryTypes2["ICON_SOCIAL"] = "ICON_SOCIAL";
2112
2112
  VectorArtCategoryTypes2["SHAPE_LOCATION"] = "SHAPE_LOCATION";
2113
+ VectorArtCategoryTypes2["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
2114
+ VectorArtCategoryTypes2["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
2115
+ VectorArtCategoryTypes2["SHAPE_ARROWS"] = "SHAPE_ARROWS";
2113
2116
  return VectorArtCategoryTypes2;
2114
2117
  })(VectorArtCategoryTypes || {});
2115
2118
  var CssDataType = /* @__PURE__ */ ((CssDataType2) => {