@wix/app-extensions 1.0.68 → 1.0.69

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.
@@ -1188,6 +1188,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
1188
1188
  ComponentType2["CONNECTOR_CONFIG"] = "CONNECTOR_CONFIG";
1189
1189
  ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
1190
1190
  ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
1191
+ ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
1191
1192
  return ComponentType2;
1192
1193
  })(ComponentType || {});
1193
1194
  var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
@@ -1501,15 +1502,15 @@ var BooleanComponentType = /* @__PURE__ */ ((BooleanComponentType2) => {
1501
1502
  BooleanComponentType2["CHECKBOX"] = "CHECKBOX";
1502
1503
  return BooleanComponentType2;
1503
1504
  })(BooleanComponentType || {});
1504
- var ItemType = /* @__PURE__ */ ((ItemType2) => {
1505
- ItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
1506
- ItemType2["STRING"] = "STRING";
1507
- ItemType2["NUMBER"] = "NUMBER";
1508
- ItemType2["BOOLEAN"] = "BOOLEAN";
1509
- ItemType2["INTEGER"] = "INTEGER";
1510
- ItemType2["OBJECT"] = "OBJECT";
1511
- return ItemType2;
1512
- })(ItemType || {});
1505
+ var ArrayItemsItemType = /* @__PURE__ */ ((ArrayItemsItemType2) => {
1506
+ ArrayItemsItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
1507
+ ArrayItemsItemType2["STRING"] = "STRING";
1508
+ ArrayItemsItemType2["NUMBER"] = "NUMBER";
1509
+ ArrayItemsItemType2["BOOLEAN"] = "BOOLEAN";
1510
+ ArrayItemsItemType2["INTEGER"] = "INTEGER";
1511
+ ArrayItemsItemType2["OBJECT"] = "OBJECT";
1512
+ return ArrayItemsItemType2;
1513
+ })(ArrayItemsItemType || {});
1513
1514
  var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
1514
1515
  PropertiesTypeEnum2["UNKNOWN_PROPERTY_TYPE"] = "UNKNOWN_PROPERTY_TYPE";
1515
1516
  PropertiesTypeEnum2["STRING"] = "STRING";
@@ -2901,6 +2902,7 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
2901
2902
  EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
2902
2903
  EditorType2["STUDIO_EDITOR_TYPE"] = "STUDIO_EDITOR_TYPE";
2903
2904
  EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
2905
+ EditorType2["STUDIO_2_EDITOR_TYPE"] = "STUDIO_2_EDITOR_TYPE";
2904
2906
  return EditorType2;
2905
2907
  })(EditorType || {});
2906
2908
  var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
@@ -2946,6 +2948,20 @@ var AuthType = /* @__PURE__ */ ((AuthType2) => {
2946
2948
  AuthType2["API_KEY"] = "API_KEY";
2947
2949
  return AuthType2;
2948
2950
  })(AuthType || {});
2951
+ var ItemType = /* @__PURE__ */ ((ItemType2) => {
2952
+ ItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
2953
+ ItemType2["CUSTOM_ELEMENT"] = "CUSTOM_ELEMENT";
2954
+ ItemType2["EDITOR_REACT_COMPONENT"] = "EDITOR_REACT_COMPONENT";
2955
+ ItemType2["COMPOSITION"] = "COMPOSITION";
2956
+ return ItemType2;
2957
+ })(ItemType || {});
2958
+ var ApiGroupType = /* @__PURE__ */ ((ApiGroupType2) => {
2959
+ ApiGroupType2["UNKNOWN_GROUP_TYPE"] = "UNKNOWN_GROUP_TYPE";
2960
+ ApiGroupType2["PAGES"] = "PAGES";
2961
+ ApiGroupType2["SECTIONS"] = "SECTIONS";
2962
+ ApiGroupType2["COMPONENTS"] = "COMPONENTS";
2963
+ return ApiGroupType2;
2964
+ })(ApiGroupType || {});
2949
2965
  var Exposure = /* @__PURE__ */ ((Exposure2) => {
2950
2966
  Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
2951
2967
  Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
@@ -5758,6 +5774,18 @@ function oauthClientConfiguration({
5758
5774
  compData: { oauthClientConfiguration: data }
5759
5775
  };
5760
5776
  }
5777
+ function editorExposure({
5778
+ id,
5779
+ data,
5780
+ name
5781
+ }) {
5782
+ return {
5783
+ compId: id,
5784
+ compName: name,
5785
+ compType: "EDITOR_EXPOSURE" /* EDITOR_EXPOSURE */,
5786
+ compData: { editorExposure: data }
5787
+ };
5788
+ }
5761
5789
  export {
5762
5790
  A11yAttributes,
5763
5791
  AcceptedDirectMessageType,
@@ -5774,11 +5802,13 @@ export {
5774
5802
  AlgorithmType,
5775
5803
  Alignment,
5776
5804
  AndroidStyle,
5805
+ ApiGroupType,
5777
5806
  AppExecutionType,
5778
5807
  AppType,
5779
5808
  AppointmentFormat,
5780
5809
  Archetype,
5781
5810
  ArrayComponentType,
5811
+ ArrayItemsItemType,
5782
5812
  AspectRatio,
5783
5813
  AssetType,
5784
5814
  AuthType,
@@ -6146,6 +6176,7 @@ export {
6146
6176
  editorAddon,
6147
6177
  editorAppPreviewsPoc,
6148
6178
  editorContextProvider,
6179
+ editorExposure,
6149
6180
  editorFunctionLibrary,
6150
6181
  editorInstallation,
6151
6182
  editorReactComponent,