@wix/app-extensions 1.0.9 → 1.0.11
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 +8 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +31 -11
- package/build/trusted/cjs/index.js +8 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +31 -11
- package/build/trusted/es/index.mjs +7 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -248,6 +248,7 @@ __export(index_exports, {
|
|
|
248
248
|
Type: () => Type,
|
|
249
249
|
TypedDynamicParamType: () => TypedDynamicParamType,
|
|
250
250
|
UnitType: () => UnitType,
|
|
251
|
+
UpdateMode: () => UpdateMode,
|
|
251
252
|
UploadFileFormat: () => UploadFileFormat,
|
|
252
253
|
UploadFileFormatEnumUploadFileFormat: () => UploadFileFormatEnumUploadFileFormat,
|
|
253
254
|
UserNotificationDataRecipientFilterType: () => UserNotificationDataRecipientFilterType,
|
|
@@ -3021,6 +3022,12 @@ var SidebarEntityType = /* @__PURE__ */ ((SidebarEntityType2) => {
|
|
|
3021
3022
|
SidebarEntityType2["APP"] = "APP";
|
|
3022
3023
|
return SidebarEntityType2;
|
|
3023
3024
|
})(SidebarEntityType || {});
|
|
3025
|
+
var UpdateMode = /* @__PURE__ */ ((UpdateMode2) => {
|
|
3026
|
+
UpdateMode2["UNKNOWN_UPDATE_MODE"] = "UNKNOWN_UPDATE_MODE";
|
|
3027
|
+
UpdateMode2["FULL"] = "FULL";
|
|
3028
|
+
UpdateMode2["PARTIAL"] = "PARTIAL";
|
|
3029
|
+
return UpdateMode2;
|
|
3030
|
+
})(UpdateMode || {});
|
|
3024
3031
|
var OperatorEnumOperator = /* @__PURE__ */ ((OperatorEnumOperator2) => {
|
|
3025
3032
|
OperatorEnumOperator2["UNKNOWN_OPERATOR"] = "UNKNOWN_OPERATOR";
|
|
3026
3033
|
OperatorEnumOperator2["EQ"] = "EQ";
|
|
@@ -5975,6 +5982,7 @@ function bookingActionUrlsProvider({
|
|
|
5975
5982
|
Type,
|
|
5976
5983
|
TypedDynamicParamType,
|
|
5977
5984
|
UnitType,
|
|
5985
|
+
UpdateMode,
|
|
5978
5986
|
UploadFileFormat,
|
|
5979
5987
|
UploadFileFormatEnumUploadFileFormat,
|
|
5980
5988
|
UserNotificationDataRecipientFilterType,
|