@wix/app-extensions 1.0.68 → 1.0.70
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/build/cjs/index.d.ts +3 -2
- package/build/cjs/index.js +43 -9
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +40 -9
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +195 -9
- package/build/trusted/cjs/index.js +43 -9
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +195 -9
- package/build/trusted/es/index.mjs +40 -9
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -35,11 +35,13 @@ __export(index_exports, {
|
|
|
35
35
|
AlgorithmType: () => AlgorithmType,
|
|
36
36
|
Alignment: () => Alignment,
|
|
37
37
|
AndroidStyle: () => AndroidStyle,
|
|
38
|
+
ApiGroupType: () => ApiGroupType,
|
|
38
39
|
AppExecutionType: () => AppExecutionType,
|
|
39
40
|
AppType: () => AppType,
|
|
40
41
|
AppointmentFormat: () => AppointmentFormat,
|
|
41
42
|
Archetype: () => Archetype,
|
|
42
43
|
ArrayComponentType: () => ArrayComponentType,
|
|
44
|
+
ArrayItemsItemType: () => ArrayItemsItemType,
|
|
43
45
|
AspectRatio: () => AspectRatio,
|
|
44
46
|
AssetType: () => AssetType,
|
|
45
47
|
AuthType: () => AuthType,
|
|
@@ -407,6 +409,7 @@ __export(index_exports, {
|
|
|
407
409
|
editorAddon: () => editorAddon,
|
|
408
410
|
editorAppPreviewsPoc: () => editorAppPreviewsPoc,
|
|
409
411
|
editorContextProvider: () => editorContextProvider,
|
|
412
|
+
editorExposure: () => editorExposure,
|
|
410
413
|
editorFunctionLibrary: () => editorFunctionLibrary,
|
|
411
414
|
editorInstallation: () => editorInstallation,
|
|
412
415
|
editorReactComponent: () => editorReactComponent,
|
|
@@ -1734,6 +1737,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1734
1737
|
ComponentType2["CONNECTOR_CONFIG"] = "CONNECTOR_CONFIG";
|
|
1735
1738
|
ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
|
|
1736
1739
|
ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
|
|
1740
|
+
ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
|
|
1737
1741
|
return ComponentType2;
|
|
1738
1742
|
})(ComponentType || {});
|
|
1739
1743
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2047,15 +2051,15 @@ var BooleanComponentType = /* @__PURE__ */ ((BooleanComponentType2) => {
|
|
|
2047
2051
|
BooleanComponentType2["CHECKBOX"] = "CHECKBOX";
|
|
2048
2052
|
return BooleanComponentType2;
|
|
2049
2053
|
})(BooleanComponentType || {});
|
|
2050
|
-
var
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
return
|
|
2058
|
-
})(
|
|
2054
|
+
var ArrayItemsItemType = /* @__PURE__ */ ((ArrayItemsItemType2) => {
|
|
2055
|
+
ArrayItemsItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
|
|
2056
|
+
ArrayItemsItemType2["STRING"] = "STRING";
|
|
2057
|
+
ArrayItemsItemType2["NUMBER"] = "NUMBER";
|
|
2058
|
+
ArrayItemsItemType2["BOOLEAN"] = "BOOLEAN";
|
|
2059
|
+
ArrayItemsItemType2["INTEGER"] = "INTEGER";
|
|
2060
|
+
ArrayItemsItemType2["OBJECT"] = "OBJECT";
|
|
2061
|
+
return ArrayItemsItemType2;
|
|
2062
|
+
})(ArrayItemsItemType || {});
|
|
2059
2063
|
var PropertiesTypeEnum = /* @__PURE__ */ ((PropertiesTypeEnum2) => {
|
|
2060
2064
|
PropertiesTypeEnum2["UNKNOWN_PROPERTY_TYPE"] = "UNKNOWN_PROPERTY_TYPE";
|
|
2061
2065
|
PropertiesTypeEnum2["STRING"] = "STRING";
|
|
@@ -3447,6 +3451,7 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
|
3447
3451
|
EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
|
|
3448
3452
|
EditorType2["STUDIO_EDITOR_TYPE"] = "STUDIO_EDITOR_TYPE";
|
|
3449
3453
|
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
3454
|
+
EditorType2["STUDIO_2_EDITOR_TYPE"] = "STUDIO_2_EDITOR_TYPE";
|
|
3450
3455
|
return EditorType2;
|
|
3451
3456
|
})(EditorType || {});
|
|
3452
3457
|
var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
|
|
@@ -3492,6 +3497,20 @@ var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
|
3492
3497
|
AuthType2["API_KEY"] = "API_KEY";
|
|
3493
3498
|
return AuthType2;
|
|
3494
3499
|
})(AuthType || {});
|
|
3500
|
+
var ItemType = /* @__PURE__ */ ((ItemType2) => {
|
|
3501
|
+
ItemType2["UNKNOWN_ITEM_TYPE"] = "UNKNOWN_ITEM_TYPE";
|
|
3502
|
+
ItemType2["CUSTOM_ELEMENT"] = "CUSTOM_ELEMENT";
|
|
3503
|
+
ItemType2["EDITOR_REACT_COMPONENT"] = "EDITOR_REACT_COMPONENT";
|
|
3504
|
+
ItemType2["COMPOSITION"] = "COMPOSITION";
|
|
3505
|
+
return ItemType2;
|
|
3506
|
+
})(ItemType || {});
|
|
3507
|
+
var ApiGroupType = /* @__PURE__ */ ((ApiGroupType2) => {
|
|
3508
|
+
ApiGroupType2["UNKNOWN_GROUP_TYPE"] = "UNKNOWN_GROUP_TYPE";
|
|
3509
|
+
ApiGroupType2["PAGES"] = "PAGES";
|
|
3510
|
+
ApiGroupType2["SECTIONS"] = "SECTIONS";
|
|
3511
|
+
ApiGroupType2["COMPONENTS"] = "COMPONENTS";
|
|
3512
|
+
return ApiGroupType2;
|
|
3513
|
+
})(ApiGroupType || {});
|
|
3495
3514
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
3496
3515
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
3497
3516
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -6304,6 +6323,18 @@ function oauthClientConfiguration({
|
|
|
6304
6323
|
compData: { oauthClientConfiguration: data }
|
|
6305
6324
|
};
|
|
6306
6325
|
}
|
|
6326
|
+
function editorExposure({
|
|
6327
|
+
id,
|
|
6328
|
+
data,
|
|
6329
|
+
name
|
|
6330
|
+
}) {
|
|
6331
|
+
return {
|
|
6332
|
+
compId: id,
|
|
6333
|
+
compName: name,
|
|
6334
|
+
compType: "EDITOR_EXPOSURE" /* EDITOR_EXPOSURE */,
|
|
6335
|
+
compData: { editorExposure: data }
|
|
6336
|
+
};
|
|
6337
|
+
}
|
|
6307
6338
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6308
6339
|
0 && (module.exports = {
|
|
6309
6340
|
A11yAttributes,
|
|
@@ -6321,11 +6352,13 @@ function oauthClientConfiguration({
|
|
|
6321
6352
|
AlgorithmType,
|
|
6322
6353
|
Alignment,
|
|
6323
6354
|
AndroidStyle,
|
|
6355
|
+
ApiGroupType,
|
|
6324
6356
|
AppExecutionType,
|
|
6325
6357
|
AppType,
|
|
6326
6358
|
AppointmentFormat,
|
|
6327
6359
|
Archetype,
|
|
6328
6360
|
ArrayComponentType,
|
|
6361
|
+
ArrayItemsItemType,
|
|
6329
6362
|
AspectRatio,
|
|
6330
6363
|
AssetType,
|
|
6331
6364
|
AuthType,
|
|
@@ -6693,6 +6726,7 @@ function oauthClientConfiguration({
|
|
|
6693
6726
|
editorAddon,
|
|
6694
6727
|
editorAppPreviewsPoc,
|
|
6695
6728
|
editorContextProvider,
|
|
6729
|
+
editorExposure,
|
|
6696
6730
|
editorFunctionLibrary,
|
|
6697
6731
|
editorInstallation,
|
|
6698
6732
|
editorReactComponent,
|