@wix/app-extensions 1.0.60 → 1.0.62
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 +44 -5
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +40 -5
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +243 -44
- package/build/trusted/cjs/index.js +44 -5
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +243 -44
- package/build/trusted/es/index.mjs +40 -5
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -840,6 +840,11 @@ var LayoutDataImagePosition = /* @__PURE__ */ ((LayoutDataImagePosition2) => {
|
|
|
840
840
|
LayoutDataImagePosition2["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
841
841
|
return LayoutDataImagePosition2;
|
|
842
842
|
})(LayoutDataImagePosition || {});
|
|
843
|
+
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
844
|
+
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
845
|
+
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
846
|
+
return LayoutDataBackgroundType2;
|
|
847
|
+
})(LayoutDataBackgroundType || {});
|
|
843
848
|
var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
844
849
|
Origin2["IMAGE"] = "IMAGE";
|
|
845
850
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
@@ -850,11 +855,6 @@ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
|
850
855
|
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
851
856
|
return BannerPosition2;
|
|
852
857
|
})(BannerPosition || {});
|
|
853
|
-
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
854
|
-
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
855
|
-
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
856
|
-
return LayoutDataBackgroundType2;
|
|
857
|
-
})(LayoutDataBackgroundType || {});
|
|
858
858
|
var BackdropType = /* @__PURE__ */ ((BackdropType2) => {
|
|
859
859
|
BackdropType2["COLOR"] = "COLOR";
|
|
860
860
|
BackdropType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1185,6 +1185,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1185
1185
|
ComponentType2["ROLLOUT_STEP_EXECUTOR"] = "ROLLOUT_STEP_EXECUTOR";
|
|
1186
1186
|
ComponentType2["BOOKINGS_PLATFORM_PREMIUM_VALIDATION"] = "BOOKINGS_PLATFORM_PREMIUM_VALIDATION";
|
|
1187
1187
|
ComponentType2["GLOBAL_CSS"] = "GLOBAL_CSS";
|
|
1188
|
+
ComponentType2["CONNECTOR_CONFIG"] = "CONNECTOR_CONFIG";
|
|
1188
1189
|
return ComponentType2;
|
|
1189
1190
|
})(ComponentType || {});
|
|
1190
1191
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2923,6 +2924,24 @@ var PremiumProviderFailurePolicy = /* @__PURE__ */ ((PremiumProviderFailurePolic
|
|
|
2923
2924
|
PremiumProviderFailurePolicy2["FAIL_CLOSED"] = "FAIL_CLOSED";
|
|
2924
2925
|
return PremiumProviderFailurePolicy2;
|
|
2925
2926
|
})(PremiumProviderFailurePolicy || {});
|
|
2927
|
+
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
2928
|
+
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
2929
|
+
ScopeSeparator2["SPACE"] = "SPACE";
|
|
2930
|
+
ScopeSeparator2["COMMA"] = "COMMA";
|
|
2931
|
+
return ScopeSeparator2;
|
|
2932
|
+
})(ScopeSeparator || {});
|
|
2933
|
+
var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
2934
|
+
TokenEndpointAuthMethod2["UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD"] = "UNKNOWN_TOKEN_ENDPOINT_AUTH_METHOD";
|
|
2935
|
+
TokenEndpointAuthMethod2["CLIENT_SECRET_POST"] = "CLIENT_SECRET_POST";
|
|
2936
|
+
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
2937
|
+
return TokenEndpointAuthMethod2;
|
|
2938
|
+
})(TokenEndpointAuthMethod || {});
|
|
2939
|
+
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
2940
|
+
AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
|
|
2941
|
+
AuthType2["OAUTH2"] = "OAUTH2";
|
|
2942
|
+
AuthType2["API_KEY"] = "API_KEY";
|
|
2943
|
+
return AuthType2;
|
|
2944
|
+
})(AuthType || {});
|
|
2926
2945
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
2927
2946
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
2928
2947
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -5699,6 +5718,18 @@ function globalCss({
|
|
|
5699
5718
|
compData: { globalCss: data }
|
|
5700
5719
|
};
|
|
5701
5720
|
}
|
|
5721
|
+
function connectorConfig({
|
|
5722
|
+
id,
|
|
5723
|
+
data,
|
|
5724
|
+
name
|
|
5725
|
+
}) {
|
|
5726
|
+
return {
|
|
5727
|
+
compId: id,
|
|
5728
|
+
compName: name,
|
|
5729
|
+
compType: "CONNECTOR_CONFIG" /* CONNECTOR_CONFIG */,
|
|
5730
|
+
compData: { connectorConfig: data }
|
|
5731
|
+
};
|
|
5732
|
+
}
|
|
5702
5733
|
export {
|
|
5703
5734
|
A11yAttributes,
|
|
5704
5735
|
AcceptedDirectMessageType,
|
|
@@ -5722,6 +5753,7 @@ export {
|
|
|
5722
5753
|
ArrayComponentType,
|
|
5723
5754
|
AspectRatio,
|
|
5724
5755
|
AssetType,
|
|
5756
|
+
AuthType,
|
|
5725
5757
|
AvatarShape,
|
|
5726
5758
|
BackOfficeHostingPlatforms,
|
|
5727
5759
|
BackOfficeScriptAssetType,
|
|
@@ -5923,6 +5955,7 @@ export {
|
|
|
5923
5955
|
SchemaFieldFieldType,
|
|
5924
5956
|
SchemaScope,
|
|
5925
5957
|
Scope,
|
|
5958
|
+
ScopeSeparator,
|
|
5926
5959
|
ScopeType,
|
|
5927
5960
|
ScriptType,
|
|
5928
5961
|
SidebarDataType,
|
|
@@ -5953,6 +5986,7 @@ export {
|
|
|
5953
5986
|
ThumbnailsAlignment,
|
|
5954
5987
|
ThumbnailsSize,
|
|
5955
5988
|
TimeConstraintType,
|
|
5989
|
+
TokenEndpointAuthMethod,
|
|
5956
5990
|
Trigger,
|
|
5957
5991
|
Type,
|
|
5958
5992
|
TypedDynamicParamType,
|
|
@@ -6046,6 +6080,7 @@ export {
|
|
|
6046
6080
|
componentReferenceDataProvider,
|
|
6047
6081
|
componentsTranslationsAdditionalFieldsProvider,
|
|
6048
6082
|
componentsValidatorProvider,
|
|
6083
|
+
connectorConfig,
|
|
6049
6084
|
contactLabels,
|
|
6050
6085
|
contactNotification,
|
|
6051
6086
|
contactsSegmentsV2FilterProvider,
|