@wix/app-extensions 1.0.54 → 1.0.56
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.js +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +15 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +91 -21
- package/build/trusted/cjs/index.js +17 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +91 -21
- package/build/trusted/es/index.mjs +15 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -155,6 +155,7 @@ __export(index_exports, {
|
|
|
155
155
|
IntegrationType: () => IntegrationType,
|
|
156
156
|
Intent: () => Intent,
|
|
157
157
|
InterfaceConfigurationType: () => InterfaceConfigurationType,
|
|
158
|
+
ItemField: () => ItemField,
|
|
158
159
|
ItemType: () => ItemType,
|
|
159
160
|
Layout: () => Layout,
|
|
160
161
|
LayoutDataBackgroundType: () => LayoutDataBackgroundType,
|
|
@@ -178,6 +179,7 @@ __export(index_exports, {
|
|
|
178
179
|
MonitoringType: () => MonitoringType,
|
|
179
180
|
MpaNavigation: () => MpaNavigation,
|
|
180
181
|
NativeStateType: () => NativeStateType,
|
|
182
|
+
NavigationMenu: () => NavigationMenu,
|
|
181
183
|
NavigationType: () => NavigationType,
|
|
182
184
|
NodeType: () => NodeType,
|
|
183
185
|
NotificationTopicState: () => NotificationTopicState,
|
|
@@ -2452,6 +2454,13 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
|
|
|
2452
2454
|
DataType2["sort"] = "sort";
|
|
2453
2455
|
return DataType2;
|
|
2454
2456
|
})(DataType || {});
|
|
2457
|
+
var ItemField = /* @__PURE__ */ ((ItemField2) => {
|
|
2458
|
+
ItemField2["ID"] = "ID";
|
|
2459
|
+
ItemField2["NAME"] = "NAME";
|
|
2460
|
+
ItemField2["DESCRIPTION"] = "DESCRIPTION";
|
|
2461
|
+
ItemField2["NOTE"] = "NOTE";
|
|
2462
|
+
return ItemField2;
|
|
2463
|
+
})(ItemField || {});
|
|
2455
2464
|
var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
|
|
2456
2465
|
A11yAttributes2["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
2457
2466
|
A11yAttributes2["tabIndex"] = "tabIndex";
|
|
@@ -3394,6 +3403,12 @@ var ScopeType = /* @__PURE__ */ ((ScopeType2) => {
|
|
|
3394
3403
|
ScopeType2["AUTOMATION_ACTION"] = "AUTOMATION_ACTION";
|
|
3395
3404
|
return ScopeType2;
|
|
3396
3405
|
})(ScopeType || {});
|
|
3406
|
+
var NavigationMenu = /* @__PURE__ */ ((NavigationMenu2) => {
|
|
3407
|
+
NavigationMenu2["NAVIGATION_MENU_UNSPECIFIED"] = "NAVIGATION_MENU_UNSPECIFIED";
|
|
3408
|
+
NavigationMenu2["NAVIGATION_MENU_SITE_DEFAULT"] = "NAVIGATION_MENU_SITE_DEFAULT";
|
|
3409
|
+
NavigationMenu2["NAVIGATION_MENU_ACCOUNT"] = "NAVIGATION_MENU_ACCOUNT";
|
|
3410
|
+
return NavigationMenu2;
|
|
3411
|
+
})(NavigationMenu || {});
|
|
3397
3412
|
var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
3398
3413
|
EditorType2["UNKNOWN_EDITOR_TYPE"] = "UNKNOWN_EDITOR_TYPE";
|
|
3399
3414
|
EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
|
|
@@ -6327,6 +6342,7 @@ function bookingsPlatformPremiumValidation({
|
|
|
6327
6342
|
IntegrationType,
|
|
6328
6343
|
Intent,
|
|
6329
6344
|
InterfaceConfigurationType,
|
|
6345
|
+
ItemField,
|
|
6330
6346
|
ItemType,
|
|
6331
6347
|
Layout,
|
|
6332
6348
|
LayoutDataBackgroundType,
|
|
@@ -6350,6 +6366,7 @@ function bookingsPlatformPremiumValidation({
|
|
|
6350
6366
|
MonitoringType,
|
|
6351
6367
|
MpaNavigation,
|
|
6352
6368
|
NativeStateType,
|
|
6369
|
+
NavigationMenu,
|
|
6353
6370
|
NavigationType,
|
|
6354
6371
|
NodeType,
|
|
6355
6372
|
NotificationTopicState,
|