@wix/create-app 0.0.141 → 0.0.142
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/index.js +598 -291
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -58071,6 +58071,7 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
58071
58071
|
FailedToRemoveEnvironmentVariable: {},
|
|
58072
58072
|
FailedToUploadStaticFiles: {},
|
|
58073
58073
|
FailedCreatingAppProject: {},
|
|
58074
|
+
FailedToGetAppProject: {},
|
|
58074
58075
|
FailedCreatingAppDeployment: {},
|
|
58075
58076
|
FailedFinalizingAppDeployment: {},
|
|
58076
58077
|
FailedCreatingNewFunnelProject: {},
|
|
@@ -58143,6 +58144,7 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58143
58144
|
NonInteractiveTerminal: {},
|
|
58144
58145
|
FailedToWatchFiles: {},
|
|
58145
58146
|
InvalidApiKey: {},
|
|
58147
|
+
AccountWasDeleted: {},
|
|
58146
58148
|
CliAppVersionMismatch: (0, import_variant11.fields)(),
|
|
58147
58149
|
NetworkError: {},
|
|
58148
58150
|
AppForVersionNotFound: (0, import_variant11.fields)(),
|
|
@@ -58194,7 +58196,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58194
58196
|
MissingPresetCssForSiteComponent: (0, import_variant11.fields)(),
|
|
58195
58197
|
AppInstallerSiteNotFound: (0, import_variant11.fields)(),
|
|
58196
58198
|
EAccessPermissionDenied: {},
|
|
58197
|
-
InvalidSiteComponentElementItem: (0, import_variant11.fields)()
|
|
58199
|
+
InvalidSiteComponentElementItem: (0, import_variant11.fields)(),
|
|
58200
|
+
TrustedAppIsNotMarkedAsInternal: {}
|
|
58198
58201
|
});
|
|
58199
58202
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
58200
58203
|
...CliSystemErrorCode,
|
|
@@ -58504,12 +58507,16 @@ function fixHostExceptions(host) {
|
|
|
58504
58507
|
return host.replace("create.editorx.com", "editor.editorx.com");
|
|
58505
58508
|
}
|
|
58506
58509
|
function resolveMappingsByDomain(domain, domainToMappings) {
|
|
58507
|
-
const mappings = domainToMappings[domain]
|
|
58510
|
+
const mappings = domainToMappings[domain];
|
|
58508
58511
|
if (mappings) {
|
|
58509
58512
|
return mappings;
|
|
58510
58513
|
}
|
|
58511
58514
|
const rootDomainMappings = resolveRootDomain(domain, domainToMappings);
|
|
58512
58515
|
if (!rootDomainMappings) {
|
|
58516
|
+
const userMappings = domainToMappings[USER_DOMAIN];
|
|
58517
|
+
if (userMappings) {
|
|
58518
|
+
return userMappings;
|
|
58519
|
+
}
|
|
58513
58520
|
if (isBaseDomain(domain)) {
|
|
58514
58521
|
return domainToMappings[wwwBaseDomain];
|
|
58515
58522
|
}
|
|
@@ -59545,6 +59552,12 @@ var AuthClient = class {
|
|
|
59545
59552
|
cause: error
|
|
59546
59553
|
});
|
|
59547
59554
|
}
|
|
59555
|
+
if (isHttpError(error) && error.response?.status === 404 && isHttpApplicationError(error) && error.response.data.details.applicationError.code === "48886") {
|
|
59556
|
+
throw new CliError({
|
|
59557
|
+
code: CliErrorCode.AccountWasDeleted(),
|
|
59558
|
+
cause: error
|
|
59559
|
+
});
|
|
59560
|
+
}
|
|
59548
59561
|
throw new CliError({
|
|
59549
59562
|
code: CliErrorCode.FailedToGetMyAccount(),
|
|
59550
59563
|
cause: error
|
|
@@ -68246,6 +68259,9 @@ function getErrorComponent(code, cause) {
|
|
|
68246
68259
|
InvalidApiKey: () => {
|
|
68247
68260
|
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You used invalid API key to log in." });
|
|
68248
68261
|
},
|
|
68262
|
+
AccountWasDeleted: () => {
|
|
68263
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The account you are trying to log in to has been deleted." });
|
|
68264
|
+
},
|
|
68249
68265
|
SiteConfiguredRequired: () => {
|
|
68250
68266
|
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You must provide a `--site` in the command options." });
|
|
68251
68267
|
},
|
|
@@ -68853,7 +68869,10 @@ ${errorMessage2}`
|
|
|
68853
68869
|
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to upload static files." });
|
|
68854
68870
|
},
|
|
68855
68871
|
FailedCreatingAppProject: () => {
|
|
68856
|
-
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error
|
|
68872
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while creating an app project." });
|
|
68873
|
+
},
|
|
68874
|
+
FailedToGetAppProject: () => {
|
|
68875
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while getting an app project." });
|
|
68857
68876
|
},
|
|
68858
68877
|
FailedCreatingAppDeployment: () => {
|
|
68859
68878
|
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occoured while creating an app deployment." });
|
|
@@ -68945,6 +68964,15 @@ ${errorMessage2}`
|
|
|
68945
68964
|
message: `Site component element config is invalid at ${elementPath}`
|
|
68946
68965
|
}
|
|
68947
68966
|
);
|
|
68967
|
+
},
|
|
68968
|
+
TrustedAppIsNotMarkedAsInternal: () => {
|
|
68969
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68970
|
+
ErrorMessage,
|
|
68971
|
+
{
|
|
68972
|
+
message: "Your component configuration is incorrect. It's encountering the error 'scriptAsset is not supported'. This typically indicates that your app isn't recognized as a Wix App.",
|
|
68973
|
+
hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the 'Wix App' toggle is enabled."
|
|
68974
|
+
}
|
|
68975
|
+
);
|
|
68948
68976
|
}
|
|
68949
68977
|
});
|
|
68950
68978
|
}
|
|
@@ -73635,7 +73663,7 @@ function reportCommandStartEvent({
|
|
|
73635
73663
|
var package_default = {
|
|
73636
73664
|
name: "@wix/create-app",
|
|
73637
73665
|
description: "Create Wix apps",
|
|
73638
|
-
version: "0.0.
|
|
73666
|
+
version: "0.0.142",
|
|
73639
73667
|
author: "Ihor Machuzhak",
|
|
73640
73668
|
bin: "bin/index.cjs",
|
|
73641
73669
|
devDependencies: {
|
|
@@ -73645,7 +73673,7 @@ var package_default = {
|
|
|
73645
73673
|
"@types/react": "^18.3.3",
|
|
73646
73674
|
"@types/semver": "^7.5.8",
|
|
73647
73675
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
73648
|
-
"@wix/bi-logger-dev-tools-data": "^1.
|
|
73676
|
+
"@wix/bi-logger-dev-tools-data": "^1.125.0",
|
|
73649
73677
|
"@wix/cli-auth": "workspace:*",
|
|
73650
73678
|
"@wix/cli-error": "workspace:*",
|
|
73651
73679
|
"@wix/cli-error-reporting": "workspace:*",
|
|
@@ -77091,6 +77119,10 @@ var _appData = { components: "_component", pricingModels: "_pricingModel" };
|
|
|
77091
77119
|
var _appEmbedData = { image: "_media" };
|
|
77092
77120
|
var _appointment = { description: "_richContent" };
|
|
77093
77121
|
var _arrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
77122
|
+
var _arrayOptions = {
|
|
77123
|
+
objectOptions: "_objectOptions",
|
|
77124
|
+
arrayOptions: "_arrayOptions"
|
|
77125
|
+
};
|
|
77094
77126
|
var _arrayType = { items: "_arrayTypeArrayItems" };
|
|
77095
77127
|
var _arrayTypeArrayItems = {
|
|
77096
77128
|
numberOptions: "_numberType",
|
|
@@ -77099,6 +77131,7 @@ var _arrayTypeArrayItems = {
|
|
|
77099
77131
|
var _audioData = { audio: "_media", coverImage: "_media" };
|
|
77100
77132
|
var _authenticatorConfig = { expectedInputs: "_expectedInputs" };
|
|
77101
77133
|
var _background = { image: "_media" };
|
|
77134
|
+
var _backgroundImage = { media: "_media" };
|
|
77102
77135
|
var _billing = {
|
|
77103
77136
|
monthlyPrice: "DOUBLE",
|
|
77104
77137
|
yearlyPrice: "DOUBLE",
|
|
@@ -77117,12 +77150,14 @@ var _checkboxGroup = {
|
|
|
77117
77150
|
media: "_mediaItem"
|
|
77118
77151
|
};
|
|
77119
77152
|
var _checkboxGroupOption = { media: "_mediaItem" };
|
|
77153
|
+
var _collection = { fields: "_dataComponentField" };
|
|
77120
77154
|
var _commonImage = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
77121
77155
|
var _component = { compData: "_componentData" };
|
|
77122
77156
|
var _componentData = {
|
|
77123
77157
|
widgetComponentData: "_widgetComponentData",
|
|
77124
77158
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
77125
77159
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
77160
|
+
dataComponent: "_dataComponent",
|
|
77126
77161
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
77127
77162
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
77128
77163
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -77144,6 +77179,11 @@ var _cssNumber = {
|
|
|
77144
77179
|
maximum: "google.protobuf.FloatValue",
|
|
77145
77180
|
multipleOf: "google.protobuf.FloatValue"
|
|
77146
77181
|
};
|
|
77182
|
+
var _dataComponent = { collections: "_collection" };
|
|
77183
|
+
var _dataComponentField = {
|
|
77184
|
+
objectOptions: "_objectOptions",
|
|
77185
|
+
arrayOptions: "_arrayOptions"
|
|
77186
|
+
};
|
|
77147
77187
|
var _dataItem = {
|
|
77148
77188
|
number: "__Number",
|
|
77149
77189
|
arrayItems: "_arrayItems",
|
|
@@ -77167,7 +77207,6 @@ var _displayField = { richContentOptions: "_richContentOptions" };
|
|
|
77167
77207
|
var _donationInput = { description: "_richContent", media: "_mediaItem" };
|
|
77168
77208
|
var _dropdown = { description: "_richContent", media: "_mediaItem" };
|
|
77169
77209
|
var _editorElement = {
|
|
77170
|
-
style: "Map#_styleItem",
|
|
77171
77210
|
data: "Map#_dataItem",
|
|
77172
77211
|
elements: "Map#_elementItem",
|
|
77173
77212
|
presets: "Map#_presetItem",
|
|
@@ -77244,6 +77283,10 @@ var _item = { image: "_itemImage", video: "_video" };
|
|
|
77244
77283
|
var _itemImage = { media: "_media" };
|
|
77245
77284
|
var _itemLayout = { group: "_group" };
|
|
77246
77285
|
var _itemStyle = { ratio: "google.protobuf.DoubleValue" };
|
|
77286
|
+
var _layoutData = {
|
|
77287
|
+
backgroundImage: "_backgroundImage",
|
|
77288
|
+
backdropImage: "_backgroundImage"
|
|
77289
|
+
};
|
|
77247
77290
|
var _mapData = { mapSettings: "_mapSettings" };
|
|
77248
77291
|
var _mapSettings = {
|
|
77249
77292
|
lat: "google.protobuf.DoubleValue",
|
|
@@ -77267,6 +77310,7 @@ var _node = {
|
|
|
77267
77310
|
appEmbedData: "_appEmbedData",
|
|
77268
77311
|
videoData: "_videoData",
|
|
77269
77312
|
audioData: "_audioData",
|
|
77313
|
+
layoutData: "_layoutData",
|
|
77270
77314
|
nodes: "_node"
|
|
77271
77315
|
};
|
|
77272
77316
|
var _numberInput = {
|
|
@@ -77280,6 +77324,11 @@ var _numberType = {
|
|
|
77280
77324
|
multipleOf: "google.protobuf.DoubleValue",
|
|
77281
77325
|
enum: "google.protobuf.DoubleValue"
|
|
77282
77326
|
};
|
|
77327
|
+
var _objectField = {
|
|
77328
|
+
objectOptions: "_objectOptions",
|
|
77329
|
+
arrayOptions: "_arrayOptions"
|
|
77330
|
+
};
|
|
77331
|
+
var _objectOptions = { fields: "_objectField" };
|
|
77283
77332
|
var _objectType = { properties: "Map#_propertiesType" };
|
|
77284
77333
|
var _orCondition = { conditions: "_conditionNode" };
|
|
77285
77334
|
var _packageDimension = {
|
|
@@ -77339,7 +77388,6 @@ var _radioGroup = { description: "_richContent", media: "_mediaItem" };
|
|
|
77339
77388
|
var _ratingInput = { description: "_richContent", media: "_mediaItem" };
|
|
77340
77389
|
var _refElement = {
|
|
77341
77390
|
resolvedElement: "_inlineElement",
|
|
77342
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
77343
77391
|
elements: "Map#_refInnerElementDefaults"
|
|
77344
77392
|
};
|
|
77345
77393
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -77524,17 +77572,20 @@ function getAppByVersion(payload5) {
|
|
|
77524
77572
|
_appEmbedData,
|
|
77525
77573
|
_appointment,
|
|
77526
77574
|
_arrayItems,
|
|
77575
|
+
_arrayOptions,
|
|
77527
77576
|
_arrayType,
|
|
77528
77577
|
_arrayTypeArrayItems,
|
|
77529
77578
|
_audioData,
|
|
77530
77579
|
_authenticatorConfig,
|
|
77531
77580
|
_background,
|
|
77581
|
+
_backgroundImage,
|
|
77532
77582
|
_billing,
|
|
77533
77583
|
_breakPoint,
|
|
77534
77584
|
_breakpointPresetStyleOverrides,
|
|
77535
77585
|
_checkbox,
|
|
77536
77586
|
_checkboxGroup,
|
|
77537
77587
|
_checkboxGroupOption,
|
|
77588
|
+
_collection,
|
|
77538
77589
|
_commonImage,
|
|
77539
77590
|
_component,
|
|
77540
77591
|
_componentData,
|
|
@@ -77542,6 +77593,8 @@ function getAppByVersion(payload5) {
|
|
|
77542
77593
|
_conditionNode,
|
|
77543
77594
|
_cssCustomPropertyItem,
|
|
77544
77595
|
_cssNumber,
|
|
77596
|
+
_dataComponent,
|
|
77597
|
+
_dataComponentField,
|
|
77545
77598
|
_dataItem,
|
|
77546
77599
|
_dataItems,
|
|
77547
77600
|
_dateInput,
|
|
@@ -77579,6 +77632,7 @@ function getAppByVersion(payload5) {
|
|
|
77579
77632
|
_itemImage,
|
|
77580
77633
|
_itemLayout,
|
|
77581
77634
|
_itemStyle,
|
|
77635
|
+
_layoutData,
|
|
77582
77636
|
_mapData,
|
|
77583
77637
|
_mapSettings,
|
|
77584
77638
|
_media,
|
|
@@ -77589,6 +77643,8 @@ function getAppByVersion(payload5) {
|
|
|
77589
77643
|
_node,
|
|
77590
77644
|
_numberInput,
|
|
77591
77645
|
_numberType,
|
|
77646
|
+
_objectField,
|
|
77647
|
+
_objectOptions,
|
|
77592
77648
|
_objectType,
|
|
77593
77649
|
_orCondition,
|
|
77594
77650
|
_packageDimension,
|
|
@@ -77781,6 +77837,9 @@ function createApp(payload5) {
|
|
|
77781
77837
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77782
77838
|
method: "POST",
|
|
77783
77839
|
methodFqn: "wix.devcenter.apps.v1.AppsService.CreateApp",
|
|
77840
|
+
migrationOptions: {
|
|
77841
|
+
optInTransformResponse: true
|
|
77842
|
+
},
|
|
77784
77843
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77785
77844
|
protoPath: "/v1/apps",
|
|
77786
77845
|
data: serializedData,
|
|
@@ -77805,6 +77864,9 @@ function getApp(payload5) {
|
|
|
77805
77864
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77806
77865
|
method: "GET",
|
|
77807
77866
|
methodFqn: "wix.devcenter.apps.v1.AppsService.GetApp",
|
|
77867
|
+
migrationOptions: {
|
|
77868
|
+
optInTransformResponse: true
|
|
77869
|
+
},
|
|
77808
77870
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77809
77871
|
protoPath: "/v1/apps/{appId}",
|
|
77810
77872
|
data: serializedData,
|
|
@@ -77829,6 +77891,9 @@ function queryApp(payload5) {
|
|
|
77829
77891
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77830
77892
|
method: "POST",
|
|
77831
77893
|
methodFqn: "wix.devcenter.apps.v1.AppsService.QueryApp",
|
|
77894
|
+
migrationOptions: {
|
|
77895
|
+
optInTransformResponse: true
|
|
77896
|
+
},
|
|
77832
77897
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77833
77898
|
protoPath: "/v1/apps/query",
|
|
77834
77899
|
data: serializedData,
|
|
@@ -77893,6 +77958,9 @@ function createOAuthApp(payload5) {
|
|
|
77893
77958
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
77894
77959
|
method: "POST",
|
|
77895
77960
|
methodFqn: "wix.headless.v1.OAuthAppService.CreateOAuthApp",
|
|
77961
|
+
migrationOptions: {
|
|
77962
|
+
optInTransformResponse: true
|
|
77963
|
+
},
|
|
77896
77964
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
77897
77965
|
protoPath: "/v1/oauth-apps",
|
|
77898
77966
|
data: serializedData,
|
|
@@ -77919,6 +77987,9 @@ function updateOAuthApp(payload5) {
|
|
|
77919
77987
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
77920
77988
|
method: "PATCH",
|
|
77921
77989
|
methodFqn: "wix.headless.v1.OAuthAppService.UpdateOAuthApp",
|
|
77990
|
+
migrationOptions: {
|
|
77991
|
+
optInTransformResponse: true
|
|
77992
|
+
},
|
|
77922
77993
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
77923
77994
|
protoPath: "/v1/oauth-apps/{oAuthApp.id}",
|
|
77924
77995
|
data: serializedData,
|
|
@@ -78109,6 +78180,9 @@ function createDevelopmentSite(payload5) {
|
|
|
78109
78180
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78110
78181
|
method: "POST",
|
|
78111
78182
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.CreateDevelopmentSite",
|
|
78183
|
+
migrationOptions: {
|
|
78184
|
+
optInTransformResponse: true
|
|
78185
|
+
},
|
|
78112
78186
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78113
78187
|
protoPath: "/v1/development-sites",
|
|
78114
78188
|
data: serializedData,
|
|
@@ -78133,6 +78207,9 @@ function getDevelopmentSites(payload5) {
|
|
|
78133
78207
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78134
78208
|
method: "GET",
|
|
78135
78209
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSites",
|
|
78210
|
+
migrationOptions: {
|
|
78211
|
+
optInTransformResponse: true
|
|
78212
|
+
},
|
|
78136
78213
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78137
78214
|
protoPath: "/v1/development-sites",
|
|
78138
78215
|
data: serializedData,
|
|
@@ -78157,6 +78234,9 @@ function getDevelopmentSitesLimit(payload5) {
|
|
|
78157
78234
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78158
78235
|
method: "GET",
|
|
78159
78236
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSitesLimit",
|
|
78237
|
+
migrationOptions: {
|
|
78238
|
+
optInTransformResponse: true
|
|
78239
|
+
},
|
|
78160
78240
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78161
78241
|
protoPath: "/v1/development-sites-limit",
|
|
78162
78242
|
data: serializedData,
|
|
@@ -78476,10 +78556,15 @@ var _arrayItems2 = {
|
|
|
78476
78556
|
numberOptions: "_numberType",
|
|
78477
78557
|
objectOptions: "_objectType"
|
|
78478
78558
|
};
|
|
78559
|
+
var _arrayOptions2 = {
|
|
78560
|
+
objectOptions: "_objectOptions",
|
|
78561
|
+
arrayOptions: "_arrayOptions"
|
|
78562
|
+
};
|
|
78479
78563
|
var _arrayType2 = { items: "_arrayItems" };
|
|
78480
78564
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
78481
78565
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
78482
78566
|
var _background2 = { image: "_media" };
|
|
78567
|
+
var _backgroundImage2 = { media: "_media" };
|
|
78483
78568
|
var _breakPoint2 = { items: "_itemLayout" };
|
|
78484
78569
|
var _breakpointPresetStyleOverrides2 = {
|
|
78485
78570
|
default: "_presetStyleOverrides",
|
|
@@ -78491,6 +78576,7 @@ var _checkboxGroup2 = {
|
|
|
78491
78576
|
options: "_option",
|
|
78492
78577
|
media: "_mediaItem"
|
|
78493
78578
|
};
|
|
78579
|
+
var _collection2 = { fields: "_dataComponentField" };
|
|
78494
78580
|
var _commonImage2 = {
|
|
78495
78581
|
urlExpirationDate: "google.protobuf.Timestamp",
|
|
78496
78582
|
focalPoint: "_focalPoint"
|
|
@@ -78500,6 +78586,7 @@ var _componentData2 = {
|
|
|
78500
78586
|
widgetComponentData: "_widgetComponentData",
|
|
78501
78587
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
78502
78588
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
78589
|
+
dataComponent: "_dataComponent",
|
|
78503
78590
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
78504
78591
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
78505
78592
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -78520,6 +78607,11 @@ var _cssNumber2 = {
|
|
|
78520
78607
|
maximum: "google.protobuf.FloatValue",
|
|
78521
78608
|
multipleOf: "google.protobuf.FloatValue"
|
|
78522
78609
|
};
|
|
78610
|
+
var _dataComponent2 = { collections: "_collection" };
|
|
78611
|
+
var _dataComponentField2 = {
|
|
78612
|
+
objectOptions: "_objectOptions",
|
|
78613
|
+
arrayOptions: "_arrayOptions"
|
|
78614
|
+
};
|
|
78523
78615
|
var _dataItem2 = {
|
|
78524
78616
|
number: "_api_Number",
|
|
78525
78617
|
arrayItems: "_apiArrayItems",
|
|
@@ -78544,7 +78636,6 @@ var _displayField2 = { richContentOptions: "_richContentOptions" };
|
|
|
78544
78636
|
var _donationInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
78545
78637
|
var _dropdown2 = { description: "_richContent", media: "_mediaItem" };
|
|
78546
78638
|
var _editorElement2 = {
|
|
78547
|
-
style: "Map#_styleItem",
|
|
78548
78639
|
data: "Map#_dataItem",
|
|
78549
78640
|
elements: "Map#_elementItem",
|
|
78550
78641
|
presets: "Map#_presetItem",
|
|
@@ -78613,6 +78704,10 @@ var _item2 = { image: "_itemImage", video: "_video" };
|
|
|
78613
78704
|
var _itemImage2 = { media: "_media" };
|
|
78614
78705
|
var _itemLayout2 = { group: "_group" };
|
|
78615
78706
|
var _itemStyle2 = { ratio: "google.protobuf.DoubleValue" };
|
|
78707
|
+
var _layoutData2 = {
|
|
78708
|
+
backgroundImage: "_backgroundImage",
|
|
78709
|
+
backdropImage: "_backgroundImage"
|
|
78710
|
+
};
|
|
78616
78711
|
var _managedApp = {
|
|
78617
78712
|
premiumInfo: "_premiumInfo",
|
|
78618
78713
|
components: "_component",
|
|
@@ -78640,6 +78735,7 @@ var _node2 = {
|
|
|
78640
78735
|
appEmbedData: "_appEmbedData",
|
|
78641
78736
|
videoData: "_videoData",
|
|
78642
78737
|
audioData: "_audioData",
|
|
78738
|
+
layoutData: "_layoutData",
|
|
78643
78739
|
nodes: "_node"
|
|
78644
78740
|
};
|
|
78645
78741
|
var _numberInput2 = {
|
|
@@ -78653,6 +78749,11 @@ var _numberType2 = {
|
|
|
78653
78749
|
multipleOf: "google.protobuf.DoubleValue",
|
|
78654
78750
|
enum: "google.protobuf.DoubleValue"
|
|
78655
78751
|
};
|
|
78752
|
+
var _objectField2 = {
|
|
78753
|
+
objectOptions: "_objectOptions",
|
|
78754
|
+
arrayOptions: "_arrayOptions"
|
|
78755
|
+
};
|
|
78756
|
+
var _objectOptions2 = { fields: "_objectField" };
|
|
78656
78757
|
var _objectType2 = { properties: "Map#_propertiesType" };
|
|
78657
78758
|
var _option = { media: "_mediaItem" };
|
|
78658
78759
|
var _orCondition2 = { conditions: "_conditionNode" };
|
|
@@ -78713,7 +78814,6 @@ var _radioGroup2 = { description: "_richContent", media: "_mediaItem" };
|
|
|
78713
78814
|
var _ratingInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
78714
78815
|
var _refElement2 = {
|
|
78715
78816
|
resolvedElement: "_inlineElement",
|
|
78716
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
78717
78817
|
elements: "Map#_refInnerElementDefaults"
|
|
78718
78818
|
};
|
|
78719
78819
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -78853,20 +78953,25 @@ function managedApps(payload5) {
|
|
|
78853
78953
|
_appEmbedData: _appEmbedData2,
|
|
78854
78954
|
_appointment: _appointment2,
|
|
78855
78955
|
_arrayItems: _arrayItems2,
|
|
78956
|
+
_arrayOptions: _arrayOptions2,
|
|
78856
78957
|
_arrayType: _arrayType2,
|
|
78857
78958
|
_audioData: _audioData2,
|
|
78858
78959
|
_authenticatorConfig: _authenticatorConfig2,
|
|
78859
78960
|
_background: _background2,
|
|
78961
|
+
_backgroundImage: _backgroundImage2,
|
|
78860
78962
|
_breakPoint: _breakPoint2,
|
|
78861
78963
|
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
78862
78964
|
_checkbox: _checkbox2,
|
|
78863
78965
|
_checkboxGroup: _checkboxGroup2,
|
|
78966
|
+
_collection: _collection2,
|
|
78864
78967
|
_commonImage: _commonImage2,
|
|
78865
78968
|
_component: _component2,
|
|
78866
78969
|
_componentData: _componentData2,
|
|
78867
78970
|
_conditionNode: _conditionNode2,
|
|
78868
78971
|
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
78869
78972
|
_cssNumber: _cssNumber2,
|
|
78973
|
+
_dataComponent: _dataComponent2,
|
|
78974
|
+
_dataComponentField: _dataComponentField2,
|
|
78870
78975
|
_dataItem: _dataItem2,
|
|
78871
78976
|
_dataItems: _dataItems2,
|
|
78872
78977
|
_dateInput: _dateInput2,
|
|
@@ -78906,6 +79011,7 @@ function managedApps(payload5) {
|
|
|
78906
79011
|
_itemImage: _itemImage2,
|
|
78907
79012
|
_itemLayout: _itemLayout2,
|
|
78908
79013
|
_itemStyle: _itemStyle2,
|
|
79014
|
+
_layoutData: _layoutData2,
|
|
78909
79015
|
_managedApp,
|
|
78910
79016
|
_mapData: _mapData2,
|
|
78911
79017
|
_mapSettings: _mapSettings2,
|
|
@@ -78917,6 +79023,8 @@ function managedApps(payload5) {
|
|
|
78917
79023
|
_node: _node2,
|
|
78918
79024
|
_numberInput: _numberInput2,
|
|
78919
79025
|
_numberType: _numberType2,
|
|
79026
|
+
_objectField: _objectField2,
|
|
79027
|
+
_objectOptions: _objectOptions2,
|
|
78920
79028
|
_objectType: _objectType2,
|
|
78921
79029
|
_option,
|
|
78922
79030
|
_orCondition: _orCondition2,
|
|
@@ -79248,6 +79356,10 @@ var ComponentType;
|
|
|
79248
79356
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
79249
79357
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
79250
79358
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
79359
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
79360
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
79361
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
79362
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
79251
79363
|
})(ComponentType || (ComponentType = {}));
|
|
79252
79364
|
var WidgetVertical;
|
|
79253
79365
|
(function(WidgetVertical3) {
|
|
@@ -79436,6 +79548,47 @@ var ExtensionType;
|
|
|
79436
79548
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
79437
79549
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
79438
79550
|
})(ExtensionType || (ExtensionType = {}));
|
|
79551
|
+
var DataComponentFieldType;
|
|
79552
|
+
(function(DataComponentFieldType3) {
|
|
79553
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
79554
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
79555
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
79556
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
79557
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
79558
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
79559
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
79560
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
79561
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
79562
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
79563
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
79564
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
79565
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
79566
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
79567
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
79568
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
79569
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
79570
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
79571
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
79572
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
79573
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
79574
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
79575
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
79576
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
79577
|
+
})(DataComponentFieldType || (DataComponentFieldType = {}));
|
|
79578
|
+
var AccessLevel;
|
|
79579
|
+
(function(AccessLevel3) {
|
|
79580
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
79581
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
79582
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
79583
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
79584
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
79585
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
79586
|
+
})(AccessLevel || (AccessLevel = {}));
|
|
79587
|
+
var Order;
|
|
79588
|
+
(function(Order3) {
|
|
79589
|
+
Order3["ASC"] = "ASC";
|
|
79590
|
+
Order3["DESC"] = "DESC";
|
|
79591
|
+
})(Order || (Order = {}));
|
|
79439
79592
|
var PrimitiveType;
|
|
79440
79593
|
(function(PrimitiveType3) {
|
|
79441
79594
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -79514,11 +79667,17 @@ var Type;
|
|
|
79514
79667
|
Type3["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
79515
79668
|
Type3["GENERIC"] = "GENERIC";
|
|
79516
79669
|
})(Type || (Type = {}));
|
|
79670
|
+
var IntegrationType;
|
|
79671
|
+
(function(IntegrationType3) {
|
|
79672
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
79673
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
79674
|
+
})(IntegrationType || (IntegrationType = {}));
|
|
79517
79675
|
var SourceType;
|
|
79518
79676
|
(function(SourceType3) {
|
|
79519
79677
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
79520
79678
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
79521
79679
|
SourceType3["WIX_API"] = "WIX_API";
|
|
79680
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
79522
79681
|
})(SourceType || (SourceType = {}));
|
|
79523
79682
|
var ExecutionType;
|
|
79524
79683
|
(function(ExecutionType3) {
|
|
@@ -79855,6 +80014,7 @@ var Source;
|
|
|
79855
80014
|
(function(Source2) {
|
|
79856
80015
|
Source2["HTML"] = "HTML";
|
|
79857
80016
|
Source2["ADSENSE"] = "ADSENSE";
|
|
80017
|
+
Source2["AI"] = "AI";
|
|
79858
80018
|
})(Source || (Source = {}));
|
|
79859
80019
|
var StylesPosition;
|
|
79860
80020
|
(function(StylesPosition3) {
|
|
@@ -79982,6 +80142,35 @@ var NullValue;
|
|
|
79982
80142
|
(function(NullValue3) {
|
|
79983
80143
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
79984
80144
|
})(NullValue || (NullValue = {}));
|
|
80145
|
+
var Scaling;
|
|
80146
|
+
(function(Scaling3) {
|
|
80147
|
+
Scaling3["AUTO"] = "AUTO";
|
|
80148
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
80149
|
+
Scaling3["COVER"] = "COVER";
|
|
80150
|
+
})(Scaling || (Scaling = {}));
|
|
80151
|
+
var LayoutDataImagePosition;
|
|
80152
|
+
(function(LayoutDataImagePosition3) {
|
|
80153
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
80154
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
80155
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
80156
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
80157
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
80158
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
80159
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
80160
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
80161
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
80162
|
+
})(LayoutDataImagePosition || (LayoutDataImagePosition = {}));
|
|
80163
|
+
var VerticalAlignmentAlignment;
|
|
80164
|
+
(function(VerticalAlignmentAlignment3) {
|
|
80165
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
80166
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
80167
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
80168
|
+
})(VerticalAlignmentAlignment || (VerticalAlignmentAlignment = {}));
|
|
80169
|
+
var ResponsivenessBehaviour;
|
|
80170
|
+
(function(ResponsivenessBehaviour3) {
|
|
80171
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
80172
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
80173
|
+
})(ResponsivenessBehaviour || (ResponsivenessBehaviour = {}));
|
|
79985
80174
|
var CalendarType;
|
|
79986
80175
|
(function(CalendarType3) {
|
|
79987
80176
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -80082,6 +80271,8 @@ var PlanFormDefaultSection;
|
|
|
80082
80271
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
80083
80272
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
80084
80273
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
80274
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
80275
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
80085
80276
|
})(PlanFormDefaultSection || (PlanFormDefaultSection = {}));
|
|
80086
80277
|
var PlanPeriodUnit;
|
|
80087
80278
|
(function(PlanPeriodUnit3) {
|
|
@@ -80605,6 +80796,11 @@ var PanelContentType;
|
|
|
80605
80796
|
PanelContentType3["url"] = "url";
|
|
80606
80797
|
PanelContentType3["code"] = "code";
|
|
80607
80798
|
})(PanelContentType || (PanelContentType = {}));
|
|
80799
|
+
var PanelMode;
|
|
80800
|
+
(function(PanelMode3) {
|
|
80801
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
80802
|
+
PanelMode3["overlay"] = "overlay";
|
|
80803
|
+
})(PanelMode || (PanelMode = {}));
|
|
80608
80804
|
var StorageType;
|
|
80609
80805
|
(function(StorageType3) {
|
|
80610
80806
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -80653,6 +80849,150 @@ var Scope3;
|
|
|
80653
80849
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
80654
80850
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
80655
80851
|
})(Scope3 || (Scope3 = {}));
|
|
80852
|
+
var DataType;
|
|
80853
|
+
(function(DataType3) {
|
|
80854
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
80855
|
+
DataType3["text"] = "text";
|
|
80856
|
+
DataType3["textEnum"] = "textEnum";
|
|
80857
|
+
DataType3["number"] = "number";
|
|
80858
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
80859
|
+
DataType3["a11y"] = "a11y";
|
|
80860
|
+
DataType3["link"] = "link";
|
|
80861
|
+
DataType3["image"] = "image";
|
|
80862
|
+
DataType3["video"] = "video";
|
|
80863
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
80864
|
+
DataType3["audio"] = "audio";
|
|
80865
|
+
DataType3["schema"] = "schema";
|
|
80866
|
+
DataType3["localDate"] = "localDate";
|
|
80867
|
+
DataType3["localTime"] = "localTime";
|
|
80868
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
80869
|
+
DataType3["webUrl"] = "webUrl";
|
|
80870
|
+
DataType3["email"] = "email";
|
|
80871
|
+
DataType3["phone"] = "phone";
|
|
80872
|
+
DataType3["hostname"] = "hostname";
|
|
80873
|
+
DataType3["regex"] = "regex";
|
|
80874
|
+
DataType3["guid"] = "guid";
|
|
80875
|
+
DataType3["richText"] = "richText";
|
|
80876
|
+
DataType3["container"] = "container";
|
|
80877
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
80878
|
+
DataType3["direction"] = "direction";
|
|
80879
|
+
DataType3["menuItems"] = "menuItems";
|
|
80880
|
+
DataType3["data"] = "data";
|
|
80881
|
+
})(DataType || (DataType = {}));
|
|
80882
|
+
var A11yAttributes;
|
|
80883
|
+
(function(A11yAttributes3) {
|
|
80884
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
80885
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
80886
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
80887
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
80888
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
80889
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
80890
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
80891
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
80892
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
80893
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
80894
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
80895
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
80896
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
80897
|
+
A11yAttributes3["role"] = "role";
|
|
80898
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
80899
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
80900
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
80901
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
80902
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
80903
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
80904
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
80905
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
80906
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
80907
|
+
A11yAttributes3["tag"] = "tag";
|
|
80908
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
80909
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
80910
|
+
})(A11yAttributes || (A11yAttributes = {}));
|
|
80911
|
+
var LinkType;
|
|
80912
|
+
(function(LinkType3) {
|
|
80913
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
80914
|
+
LinkType3["externalLink"] = "externalLink";
|
|
80915
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
80916
|
+
LinkType3["emailLink"] = "emailLink";
|
|
80917
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
80918
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
80919
|
+
LinkType3["pageLink"] = "pageLink";
|
|
80920
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
80921
|
+
LinkType3["documentLink"] = "documentLink";
|
|
80922
|
+
LinkType3["popupLink"] = "popupLink";
|
|
80923
|
+
LinkType3["addressLink"] = "addressLink";
|
|
80924
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
80925
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
80926
|
+
})(LinkType || (LinkType = {}));
|
|
80927
|
+
var ContainerType;
|
|
80928
|
+
(function(ContainerType3) {
|
|
80929
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
80930
|
+
ContainerType3["simple"] = "simple";
|
|
80931
|
+
ContainerType3["slot"] = "slot";
|
|
80932
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
80933
|
+
ContainerType3["template"] = "template";
|
|
80934
|
+
})(ContainerType || (ContainerType = {}));
|
|
80935
|
+
var ResizeDirection;
|
|
80936
|
+
(function(ResizeDirection3) {
|
|
80937
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
80938
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
80939
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
80940
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80941
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
80942
|
+
ResizeDirection3["none"] = "none";
|
|
80943
|
+
})(ResizeDirection || (ResizeDirection = {}));
|
|
80944
|
+
var RichTextAbilities;
|
|
80945
|
+
(function(RichTextAbilities3) {
|
|
80946
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
80947
|
+
RichTextAbilities3["font"] = "font";
|
|
80948
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
80949
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
80950
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
80951
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
80952
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
80953
|
+
RichTextAbilities3["color"] = "color";
|
|
80954
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
80955
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
80956
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
80957
|
+
RichTextAbilities3["direction"] = "direction";
|
|
80958
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
80959
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
80960
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
80961
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
80962
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
80963
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
80964
|
+
var ImageCategoryTypes;
|
|
80965
|
+
(function(ImageCategoryTypes3) {
|
|
80966
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
80967
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
80968
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
80969
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
80970
|
+
var VideoCategoryTypes;
|
|
80971
|
+
(function(VideoCategoryTypes3) {
|
|
80972
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
80973
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
80974
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
80975
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
80976
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
80977
|
+
var VectorArtCategoryTypes;
|
|
80978
|
+
(function(VectorArtCategoryTypes3) {
|
|
80979
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
80980
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
80981
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
80982
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
80983
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
80984
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
80985
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
80986
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
80987
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
80988
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
80989
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
80990
|
+
var ElementTypeEnumElementType;
|
|
80991
|
+
(function(ElementTypeEnumElementType2) {
|
|
80992
|
+
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
80993
|
+
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
80994
|
+
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
80995
|
+
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
80656
80996
|
var CssPropertyType;
|
|
80657
80997
|
(function(CssPropertyType3) {
|
|
80658
80998
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -80942,22 +81282,6 @@ var BackgroundModeEnum;
|
|
|
80942
81282
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
80943
81283
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
80944
81284
|
})(BackgroundModeEnum || (BackgroundModeEnum = {}));
|
|
80945
|
-
var ImageCategoryTypes;
|
|
80946
|
-
(function(ImageCategoryTypes3) {
|
|
80947
|
-
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
80948
|
-
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
80949
|
-
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
80950
|
-
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
80951
|
-
var VectorArtCategoryTypes;
|
|
80952
|
-
(function(VectorArtCategoryTypes3) {
|
|
80953
|
-
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
80954
|
-
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
80955
|
-
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
80956
|
-
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
80957
|
-
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
80958
|
-
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
80959
|
-
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
80960
|
-
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
80961
81285
|
var CssDataTypeEnumCssDataType;
|
|
80962
81286
|
(function(CssDataTypeEnumCssDataType3) {
|
|
80963
81287
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -80972,131 +81296,6 @@ var CssDataTypeEnumCssDataType;
|
|
|
80972
81296
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
80973
81297
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
80974
81298
|
})(CssDataTypeEnumCssDataType || (CssDataTypeEnumCssDataType = {}));
|
|
80975
|
-
var DataType;
|
|
80976
|
-
(function(DataType3) {
|
|
80977
|
-
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
80978
|
-
DataType3["text"] = "text";
|
|
80979
|
-
DataType3["textEnum"] = "textEnum";
|
|
80980
|
-
DataType3["number"] = "number";
|
|
80981
|
-
DataType3["booleanValue"] = "booleanValue";
|
|
80982
|
-
DataType3["a11y"] = "a11y";
|
|
80983
|
-
DataType3["link"] = "link";
|
|
80984
|
-
DataType3["image"] = "image";
|
|
80985
|
-
DataType3["video"] = "video";
|
|
80986
|
-
DataType3["vectorArt"] = "vectorArt";
|
|
80987
|
-
DataType3["audio"] = "audio";
|
|
80988
|
-
DataType3["schema"] = "schema";
|
|
80989
|
-
DataType3["localDate"] = "localDate";
|
|
80990
|
-
DataType3["localTime"] = "localTime";
|
|
80991
|
-
DataType3["localDateTime"] = "localDateTime";
|
|
80992
|
-
DataType3["webUrl"] = "webUrl";
|
|
80993
|
-
DataType3["email"] = "email";
|
|
80994
|
-
DataType3["phone"] = "phone";
|
|
80995
|
-
DataType3["hostname"] = "hostname";
|
|
80996
|
-
DataType3["regex"] = "regex";
|
|
80997
|
-
DataType3["guid"] = "guid";
|
|
80998
|
-
DataType3["richText"] = "richText";
|
|
80999
|
-
DataType3["container"] = "container";
|
|
81000
|
-
DataType3["arrayItems"] = "arrayItems";
|
|
81001
|
-
DataType3["direction"] = "direction";
|
|
81002
|
-
DataType3["menuItems"] = "menuItems";
|
|
81003
|
-
DataType3["data"] = "data";
|
|
81004
|
-
})(DataType || (DataType = {}));
|
|
81005
|
-
var A11yAttributes;
|
|
81006
|
-
(function(A11yAttributes3) {
|
|
81007
|
-
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
81008
|
-
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
81009
|
-
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
81010
|
-
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
81011
|
-
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
81012
|
-
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
81013
|
-
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
81014
|
-
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
81015
|
-
A11yAttributes3["multiline"] = "multiline";
|
|
81016
|
-
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
81017
|
-
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
81018
|
-
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
81019
|
-
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
81020
|
-
A11yAttributes3["role"] = "role";
|
|
81021
|
-
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
81022
|
-
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
81023
|
-
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
81024
|
-
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
81025
|
-
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
81026
|
-
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
81027
|
-
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
81028
|
-
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
81029
|
-
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
81030
|
-
A11yAttributes3["tag"] = "tag";
|
|
81031
|
-
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
81032
|
-
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
81033
|
-
})(A11yAttributes || (A11yAttributes = {}));
|
|
81034
|
-
var LinkType;
|
|
81035
|
-
(function(LinkType3) {
|
|
81036
|
-
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
81037
|
-
LinkType3["externalLink"] = "externalLink";
|
|
81038
|
-
LinkType3["anchorLink"] = "anchorLink";
|
|
81039
|
-
LinkType3["emailLink"] = "emailLink";
|
|
81040
|
-
LinkType3["phoneLink"] = "phoneLink";
|
|
81041
|
-
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
81042
|
-
LinkType3["pageLink"] = "pageLink";
|
|
81043
|
-
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
81044
|
-
LinkType3["documentLink"] = "documentLink";
|
|
81045
|
-
LinkType3["popupLink"] = "popupLink";
|
|
81046
|
-
LinkType3["addressLink"] = "addressLink";
|
|
81047
|
-
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
81048
|
-
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
81049
|
-
})(LinkType || (LinkType = {}));
|
|
81050
|
-
var ContainerType;
|
|
81051
|
-
(function(ContainerType3) {
|
|
81052
|
-
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
81053
|
-
ContainerType3["simple"] = "simple";
|
|
81054
|
-
ContainerType3["slot"] = "slot";
|
|
81055
|
-
ContainerType3["placeholder"] = "placeholder";
|
|
81056
|
-
ContainerType3["template"] = "template";
|
|
81057
|
-
})(ContainerType || (ContainerType = {}));
|
|
81058
|
-
var ResizeDirection;
|
|
81059
|
-
(function(ResizeDirection3) {
|
|
81060
|
-
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
81061
|
-
ResizeDirection3["horizontal"] = "horizontal";
|
|
81062
|
-
ResizeDirection3["vertical"] = "vertical";
|
|
81063
|
-
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
81064
|
-
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
81065
|
-
ResizeDirection3["none"] = "none";
|
|
81066
|
-
})(ResizeDirection || (ResizeDirection = {}));
|
|
81067
|
-
var RichTextAbilities;
|
|
81068
|
-
(function(RichTextAbilities3) {
|
|
81069
|
-
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
81070
|
-
RichTextAbilities3["font"] = "font";
|
|
81071
|
-
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
81072
|
-
RichTextAbilities3["fontSize"] = "fontSize";
|
|
81073
|
-
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
81074
|
-
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
81075
|
-
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
81076
|
-
RichTextAbilities3["color"] = "color";
|
|
81077
|
-
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
81078
|
-
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
81079
|
-
RichTextAbilities3["textAlign"] = "textAlign";
|
|
81080
|
-
RichTextAbilities3["direction"] = "direction";
|
|
81081
|
-
RichTextAbilities3["marginStart"] = "marginStart";
|
|
81082
|
-
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
81083
|
-
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
81084
|
-
RichTextAbilities3["numberedList"] = "numberedList";
|
|
81085
|
-
RichTextAbilities3["seoTag"] = "seoTag";
|
|
81086
|
-
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
81087
|
-
var VideoCategoryTypes;
|
|
81088
|
-
(function(VideoCategoryTypes3) {
|
|
81089
|
-
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
81090
|
-
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
81091
|
-
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
81092
|
-
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
81093
|
-
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
81094
|
-
var ElementTypeEnumElementType;
|
|
81095
|
-
(function(ElementTypeEnumElementType2) {
|
|
81096
|
-
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
81097
|
-
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
81098
|
-
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
81099
|
-
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
81100
81299
|
var ActionType;
|
|
81101
81300
|
(function(ActionType3) {
|
|
81102
81301
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -81222,6 +81421,9 @@ var GroupType;
|
|
|
81222
81421
|
GroupType3["borderRadius"] = "borderRadius";
|
|
81223
81422
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
81224
81423
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
81424
|
+
GroupType3["borderColor"] = "borderColor";
|
|
81425
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
81426
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
81225
81427
|
GroupType3["font"] = "font";
|
|
81226
81428
|
GroupType3["textDecoration"] = "textDecoration";
|
|
81227
81429
|
GroupType3["gap"] = "gap";
|
|
@@ -81443,6 +81645,8 @@ var TimeConstraintType;
|
|
|
81443
81645
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
81444
81646
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
81445
81647
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
81648
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
81649
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
81446
81650
|
})(TimeConstraintType || (TimeConstraintType = {}));
|
|
81447
81651
|
var ValueConstraintType;
|
|
81448
81652
|
(function(ValueConstraintType3) {
|
|
@@ -81612,6 +81816,9 @@ function createShareUrl(payload5) {
|
|
|
81612
81816
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
81613
81817
|
method: "POST",
|
|
81614
81818
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
81819
|
+
migrationOptions: {
|
|
81820
|
+
optInTransformResponse: true
|
|
81821
|
+
},
|
|
81615
81822
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
81616
81823
|
protoPath: "/v1/share-url",
|
|
81617
81824
|
data: serializedData,
|
|
@@ -81638,6 +81845,9 @@ function listShareUrls(payload5) {
|
|
|
81638
81845
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
81639
81846
|
method: "GET",
|
|
81640
81847
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
81848
|
+
migrationOptions: {
|
|
81849
|
+
optInTransformResponse: true
|
|
81850
|
+
},
|
|
81641
81851
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
81642
81852
|
protoPath: "/v1/share-urls",
|
|
81643
81853
|
data: serializedData,
|
|
@@ -81905,6 +82115,10 @@ var ComponentType2;
|
|
|
81905
82115
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
81906
82116
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
81907
82117
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
82118
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
82119
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
82120
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
82121
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
81908
82122
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
81909
82123
|
var WidgetVertical2;
|
|
81910
82124
|
(function(WidgetVertical3) {
|
|
@@ -82093,6 +82307,47 @@ var ExtensionType2;
|
|
|
82093
82307
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
82094
82308
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
82095
82309
|
})(ExtensionType2 || (ExtensionType2 = {}));
|
|
82310
|
+
var DataComponentFieldType2;
|
|
82311
|
+
(function(DataComponentFieldType3) {
|
|
82312
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
82313
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
82314
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
82315
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
82316
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
82317
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
82318
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
82319
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
82320
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
82321
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
82322
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
82323
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
82324
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
82325
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
82326
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
82327
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
82328
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
82329
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
82330
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
82331
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
82332
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
82333
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
82334
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
82335
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
82336
|
+
})(DataComponentFieldType2 || (DataComponentFieldType2 = {}));
|
|
82337
|
+
var AccessLevel2;
|
|
82338
|
+
(function(AccessLevel3) {
|
|
82339
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
82340
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
82341
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
82342
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
82343
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
82344
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
82345
|
+
})(AccessLevel2 || (AccessLevel2 = {}));
|
|
82346
|
+
var Order2;
|
|
82347
|
+
(function(Order3) {
|
|
82348
|
+
Order3["ASC"] = "ASC";
|
|
82349
|
+
Order3["DESC"] = "DESC";
|
|
82350
|
+
})(Order2 || (Order2 = {}));
|
|
82096
82351
|
var PrimitiveType2;
|
|
82097
82352
|
(function(PrimitiveType3) {
|
|
82098
82353
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -82171,11 +82426,17 @@ var ActionSPIConfigInterfaceConfigurationType;
|
|
|
82171
82426
|
ActionSPIConfigInterfaceConfigurationType2["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
82172
82427
|
ActionSPIConfigInterfaceConfigurationType2["GENERIC"] = "GENERIC";
|
|
82173
82428
|
})(ActionSPIConfigInterfaceConfigurationType || (ActionSPIConfigInterfaceConfigurationType = {}));
|
|
82429
|
+
var IntegrationType2;
|
|
82430
|
+
(function(IntegrationType3) {
|
|
82431
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
82432
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
82433
|
+
})(IntegrationType2 || (IntegrationType2 = {}));
|
|
82174
82434
|
var SourceType2;
|
|
82175
82435
|
(function(SourceType3) {
|
|
82176
82436
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
82177
82437
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
82178
82438
|
SourceType3["WIX_API"] = "WIX_API";
|
|
82439
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
82179
82440
|
})(SourceType2 || (SourceType2 = {}));
|
|
82180
82441
|
var ExecutionType2;
|
|
82181
82442
|
(function(ExecutionType3) {
|
|
@@ -82512,6 +82773,7 @@ var HTMLDataSource;
|
|
|
82512
82773
|
(function(HTMLDataSource2) {
|
|
82513
82774
|
HTMLDataSource2["HTML"] = "HTML";
|
|
82514
82775
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
82776
|
+
HTMLDataSource2["AI"] = "AI";
|
|
82515
82777
|
})(HTMLDataSource || (HTMLDataSource = {}));
|
|
82516
82778
|
var StylesPosition2;
|
|
82517
82779
|
(function(StylesPosition3) {
|
|
@@ -82639,6 +82901,35 @@ var NullValue2;
|
|
|
82639
82901
|
(function(NullValue3) {
|
|
82640
82902
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
82641
82903
|
})(NullValue2 || (NullValue2 = {}));
|
|
82904
|
+
var Scaling2;
|
|
82905
|
+
(function(Scaling3) {
|
|
82906
|
+
Scaling3["AUTO"] = "AUTO";
|
|
82907
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
82908
|
+
Scaling3["COVER"] = "COVER";
|
|
82909
|
+
})(Scaling2 || (Scaling2 = {}));
|
|
82910
|
+
var LayoutDataImagePosition2;
|
|
82911
|
+
(function(LayoutDataImagePosition3) {
|
|
82912
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
82913
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
82914
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
82915
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
82916
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
82917
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
82918
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
82919
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
82920
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
82921
|
+
})(LayoutDataImagePosition2 || (LayoutDataImagePosition2 = {}));
|
|
82922
|
+
var VerticalAlignmentAlignment2;
|
|
82923
|
+
(function(VerticalAlignmentAlignment3) {
|
|
82924
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
82925
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
82926
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
82927
|
+
})(VerticalAlignmentAlignment2 || (VerticalAlignmentAlignment2 = {}));
|
|
82928
|
+
var ResponsivenessBehaviour2;
|
|
82929
|
+
(function(ResponsivenessBehaviour3) {
|
|
82930
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
82931
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
82932
|
+
})(ResponsivenessBehaviour2 || (ResponsivenessBehaviour2 = {}));
|
|
82642
82933
|
var CalendarType2;
|
|
82643
82934
|
(function(CalendarType3) {
|
|
82644
82935
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -82739,6 +83030,8 @@ var PlanFormDefaultSection2;
|
|
|
82739
83030
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
82740
83031
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
82741
83032
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
83033
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
83034
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
82742
83035
|
})(PlanFormDefaultSection2 || (PlanFormDefaultSection2 = {}));
|
|
82743
83036
|
var PlanPeriodUnit2;
|
|
82744
83037
|
(function(PlanPeriodUnit3) {
|
|
@@ -83262,6 +83555,11 @@ var PanelContentType2;
|
|
|
83262
83555
|
PanelContentType3["url"] = "url";
|
|
83263
83556
|
PanelContentType3["code"] = "code";
|
|
83264
83557
|
})(PanelContentType2 || (PanelContentType2 = {}));
|
|
83558
|
+
var PanelMode2;
|
|
83559
|
+
(function(PanelMode3) {
|
|
83560
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
83561
|
+
PanelMode3["overlay"] = "overlay";
|
|
83562
|
+
})(PanelMode2 || (PanelMode2 = {}));
|
|
83265
83563
|
var StorageType2;
|
|
83266
83564
|
(function(StorageType3) {
|
|
83267
83565
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -83310,6 +83608,150 @@ var Scope4;
|
|
|
83310
83608
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
83311
83609
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
83312
83610
|
})(Scope4 || (Scope4 = {}));
|
|
83611
|
+
var DataType2;
|
|
83612
|
+
(function(DataType3) {
|
|
83613
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
83614
|
+
DataType3["text"] = "text";
|
|
83615
|
+
DataType3["textEnum"] = "textEnum";
|
|
83616
|
+
DataType3["number"] = "number";
|
|
83617
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
83618
|
+
DataType3["a11y"] = "a11y";
|
|
83619
|
+
DataType3["link"] = "link";
|
|
83620
|
+
DataType3["image"] = "image";
|
|
83621
|
+
DataType3["video"] = "video";
|
|
83622
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
83623
|
+
DataType3["audio"] = "audio";
|
|
83624
|
+
DataType3["schema"] = "schema";
|
|
83625
|
+
DataType3["localDate"] = "localDate";
|
|
83626
|
+
DataType3["localTime"] = "localTime";
|
|
83627
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
83628
|
+
DataType3["webUrl"] = "webUrl";
|
|
83629
|
+
DataType3["email"] = "email";
|
|
83630
|
+
DataType3["phone"] = "phone";
|
|
83631
|
+
DataType3["hostname"] = "hostname";
|
|
83632
|
+
DataType3["regex"] = "regex";
|
|
83633
|
+
DataType3["guid"] = "guid";
|
|
83634
|
+
DataType3["richText"] = "richText";
|
|
83635
|
+
DataType3["container"] = "container";
|
|
83636
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
83637
|
+
DataType3["direction"] = "direction";
|
|
83638
|
+
DataType3["menuItems"] = "menuItems";
|
|
83639
|
+
DataType3["data"] = "data";
|
|
83640
|
+
})(DataType2 || (DataType2 = {}));
|
|
83641
|
+
var A11yAttributes2;
|
|
83642
|
+
(function(A11yAttributes3) {
|
|
83643
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
83644
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
83645
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
83646
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
83647
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
83648
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
83649
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
83650
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
83651
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
83652
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
83653
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
83654
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
83655
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
83656
|
+
A11yAttributes3["role"] = "role";
|
|
83657
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
83658
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
83659
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
83660
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
83661
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
83662
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
83663
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
83664
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
83665
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
83666
|
+
A11yAttributes3["tag"] = "tag";
|
|
83667
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
83668
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
83669
|
+
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
83670
|
+
var LinkType2;
|
|
83671
|
+
(function(LinkType3) {
|
|
83672
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
83673
|
+
LinkType3["externalLink"] = "externalLink";
|
|
83674
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
83675
|
+
LinkType3["emailLink"] = "emailLink";
|
|
83676
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
83677
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
83678
|
+
LinkType3["pageLink"] = "pageLink";
|
|
83679
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
83680
|
+
LinkType3["documentLink"] = "documentLink";
|
|
83681
|
+
LinkType3["popupLink"] = "popupLink";
|
|
83682
|
+
LinkType3["addressLink"] = "addressLink";
|
|
83683
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
83684
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
83685
|
+
})(LinkType2 || (LinkType2 = {}));
|
|
83686
|
+
var ContainerType2;
|
|
83687
|
+
(function(ContainerType3) {
|
|
83688
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
83689
|
+
ContainerType3["simple"] = "simple";
|
|
83690
|
+
ContainerType3["slot"] = "slot";
|
|
83691
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
83692
|
+
ContainerType3["template"] = "template";
|
|
83693
|
+
})(ContainerType2 || (ContainerType2 = {}));
|
|
83694
|
+
var ResizeDirection2;
|
|
83695
|
+
(function(ResizeDirection3) {
|
|
83696
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
83697
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
83698
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
83699
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
83700
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
83701
|
+
ResizeDirection3["none"] = "none";
|
|
83702
|
+
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
83703
|
+
var RichTextAbilities2;
|
|
83704
|
+
(function(RichTextAbilities3) {
|
|
83705
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
83706
|
+
RichTextAbilities3["font"] = "font";
|
|
83707
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
83708
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
83709
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
83710
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
83711
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
83712
|
+
RichTextAbilities3["color"] = "color";
|
|
83713
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
83714
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
83715
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
83716
|
+
RichTextAbilities3["direction"] = "direction";
|
|
83717
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
83718
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
83719
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
83720
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
83721
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
83722
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
83723
|
+
var ImageCategoryTypes2;
|
|
83724
|
+
(function(ImageCategoryTypes3) {
|
|
83725
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
83726
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
83727
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
83728
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
83729
|
+
var VideoCategoryTypes2;
|
|
83730
|
+
(function(VideoCategoryTypes3) {
|
|
83731
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
83732
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
83733
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
83734
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
83735
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
83736
|
+
var VectorArtCategoryTypes2;
|
|
83737
|
+
(function(VectorArtCategoryTypes3) {
|
|
83738
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
83739
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
83740
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
83741
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
83742
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
83743
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
83744
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
83745
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
83746
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
83747
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
83748
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
83749
|
+
var ElementType2;
|
|
83750
|
+
(function(ElementType3) {
|
|
83751
|
+
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
83752
|
+
ElementType3["inlineElement"] = "inlineElement";
|
|
83753
|
+
ElementType3["refElement"] = "refElement";
|
|
83754
|
+
})(ElementType2 || (ElementType2 = {}));
|
|
83313
83755
|
var CssPropertyType2;
|
|
83314
83756
|
(function(CssPropertyType3) {
|
|
83315
83757
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -83599,22 +84041,6 @@ var BackgroundModeEnum2;
|
|
|
83599
84041
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
83600
84042
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
83601
84043
|
})(BackgroundModeEnum2 || (BackgroundModeEnum2 = {}));
|
|
83602
|
-
var ImageCategoryTypes2;
|
|
83603
|
-
(function(ImageCategoryTypes3) {
|
|
83604
|
-
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
83605
|
-
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
83606
|
-
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
83607
|
-
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
83608
|
-
var VectorArtCategoryTypes2;
|
|
83609
|
-
(function(VectorArtCategoryTypes3) {
|
|
83610
|
-
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
83611
|
-
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
83612
|
-
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
83613
|
-
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
83614
|
-
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
83615
|
-
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
83616
|
-
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
83617
|
-
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
83618
84044
|
var CssDataTypeEnumCssDataType2;
|
|
83619
84045
|
(function(CssDataTypeEnumCssDataType3) {
|
|
83620
84046
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -83629,131 +84055,6 @@ var CssDataTypeEnumCssDataType2;
|
|
|
83629
84055
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
83630
84056
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
83631
84057
|
})(CssDataTypeEnumCssDataType2 || (CssDataTypeEnumCssDataType2 = {}));
|
|
83632
|
-
var DataType2;
|
|
83633
|
-
(function(DataType3) {
|
|
83634
|
-
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
83635
|
-
DataType3["text"] = "text";
|
|
83636
|
-
DataType3["textEnum"] = "textEnum";
|
|
83637
|
-
DataType3["number"] = "number";
|
|
83638
|
-
DataType3["booleanValue"] = "booleanValue";
|
|
83639
|
-
DataType3["a11y"] = "a11y";
|
|
83640
|
-
DataType3["link"] = "link";
|
|
83641
|
-
DataType3["image"] = "image";
|
|
83642
|
-
DataType3["video"] = "video";
|
|
83643
|
-
DataType3["vectorArt"] = "vectorArt";
|
|
83644
|
-
DataType3["audio"] = "audio";
|
|
83645
|
-
DataType3["schema"] = "schema";
|
|
83646
|
-
DataType3["localDate"] = "localDate";
|
|
83647
|
-
DataType3["localTime"] = "localTime";
|
|
83648
|
-
DataType3["localDateTime"] = "localDateTime";
|
|
83649
|
-
DataType3["webUrl"] = "webUrl";
|
|
83650
|
-
DataType3["email"] = "email";
|
|
83651
|
-
DataType3["phone"] = "phone";
|
|
83652
|
-
DataType3["hostname"] = "hostname";
|
|
83653
|
-
DataType3["regex"] = "regex";
|
|
83654
|
-
DataType3["guid"] = "guid";
|
|
83655
|
-
DataType3["richText"] = "richText";
|
|
83656
|
-
DataType3["container"] = "container";
|
|
83657
|
-
DataType3["arrayItems"] = "arrayItems";
|
|
83658
|
-
DataType3["direction"] = "direction";
|
|
83659
|
-
DataType3["menuItems"] = "menuItems";
|
|
83660
|
-
DataType3["data"] = "data";
|
|
83661
|
-
})(DataType2 || (DataType2 = {}));
|
|
83662
|
-
var A11yAttributes2;
|
|
83663
|
-
(function(A11yAttributes3) {
|
|
83664
|
-
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
83665
|
-
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
83666
|
-
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
83667
|
-
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
83668
|
-
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
83669
|
-
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
83670
|
-
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
83671
|
-
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
83672
|
-
A11yAttributes3["multiline"] = "multiline";
|
|
83673
|
-
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
83674
|
-
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
83675
|
-
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
83676
|
-
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
83677
|
-
A11yAttributes3["role"] = "role";
|
|
83678
|
-
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
83679
|
-
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
83680
|
-
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
83681
|
-
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
83682
|
-
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
83683
|
-
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
83684
|
-
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
83685
|
-
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
83686
|
-
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
83687
|
-
A11yAttributes3["tag"] = "tag";
|
|
83688
|
-
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
83689
|
-
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
83690
|
-
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
83691
|
-
var LinkType2;
|
|
83692
|
-
(function(LinkType3) {
|
|
83693
|
-
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
83694
|
-
LinkType3["externalLink"] = "externalLink";
|
|
83695
|
-
LinkType3["anchorLink"] = "anchorLink";
|
|
83696
|
-
LinkType3["emailLink"] = "emailLink";
|
|
83697
|
-
LinkType3["phoneLink"] = "phoneLink";
|
|
83698
|
-
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
83699
|
-
LinkType3["pageLink"] = "pageLink";
|
|
83700
|
-
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
83701
|
-
LinkType3["documentLink"] = "documentLink";
|
|
83702
|
-
LinkType3["popupLink"] = "popupLink";
|
|
83703
|
-
LinkType3["addressLink"] = "addressLink";
|
|
83704
|
-
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
83705
|
-
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
83706
|
-
})(LinkType2 || (LinkType2 = {}));
|
|
83707
|
-
var ContainerType2;
|
|
83708
|
-
(function(ContainerType3) {
|
|
83709
|
-
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
83710
|
-
ContainerType3["simple"] = "simple";
|
|
83711
|
-
ContainerType3["slot"] = "slot";
|
|
83712
|
-
ContainerType3["placeholder"] = "placeholder";
|
|
83713
|
-
ContainerType3["template"] = "template";
|
|
83714
|
-
})(ContainerType2 || (ContainerType2 = {}));
|
|
83715
|
-
var ResizeDirection2;
|
|
83716
|
-
(function(ResizeDirection3) {
|
|
83717
|
-
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
83718
|
-
ResizeDirection3["horizontal"] = "horizontal";
|
|
83719
|
-
ResizeDirection3["vertical"] = "vertical";
|
|
83720
|
-
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
83721
|
-
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
83722
|
-
ResizeDirection3["none"] = "none";
|
|
83723
|
-
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
83724
|
-
var RichTextAbilities2;
|
|
83725
|
-
(function(RichTextAbilities3) {
|
|
83726
|
-
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
83727
|
-
RichTextAbilities3["font"] = "font";
|
|
83728
|
-
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
83729
|
-
RichTextAbilities3["fontSize"] = "fontSize";
|
|
83730
|
-
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
83731
|
-
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
83732
|
-
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
83733
|
-
RichTextAbilities3["color"] = "color";
|
|
83734
|
-
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
83735
|
-
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
83736
|
-
RichTextAbilities3["textAlign"] = "textAlign";
|
|
83737
|
-
RichTextAbilities3["direction"] = "direction";
|
|
83738
|
-
RichTextAbilities3["marginStart"] = "marginStart";
|
|
83739
|
-
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
83740
|
-
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
83741
|
-
RichTextAbilities3["numberedList"] = "numberedList";
|
|
83742
|
-
RichTextAbilities3["seoTag"] = "seoTag";
|
|
83743
|
-
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
83744
|
-
var VideoCategoryTypes2;
|
|
83745
|
-
(function(VideoCategoryTypes3) {
|
|
83746
|
-
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
83747
|
-
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
83748
|
-
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
83749
|
-
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
83750
|
-
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
83751
|
-
var ElementType2;
|
|
83752
|
-
(function(ElementType3) {
|
|
83753
|
-
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
83754
|
-
ElementType3["inlineElement"] = "inlineElement";
|
|
83755
|
-
ElementType3["refElement"] = "refElement";
|
|
83756
|
-
})(ElementType2 || (ElementType2 = {}));
|
|
83757
84058
|
var ActionType2;
|
|
83758
84059
|
(function(ActionType3) {
|
|
83759
84060
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -83879,6 +84180,9 @@ var GroupType2;
|
|
|
83879
84180
|
GroupType3["borderRadius"] = "borderRadius";
|
|
83880
84181
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
83881
84182
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
84183
|
+
GroupType3["borderColor"] = "borderColor";
|
|
84184
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
84185
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
83882
84186
|
GroupType3["font"] = "font";
|
|
83883
84187
|
GroupType3["textDecoration"] = "textDecoration";
|
|
83884
84188
|
GroupType3["gap"] = "gap";
|
|
@@ -84100,6 +84404,8 @@ var TimeConstraintType2;
|
|
|
84100
84404
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
84101
84405
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
84102
84406
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
84407
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
84408
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
84103
84409
|
})(TimeConstraintType2 || (TimeConstraintType2 = {}));
|
|
84104
84410
|
var ValueConstraintType2;
|
|
84105
84411
|
(function(ValueConstraintType3) {
|
|
@@ -84230,6 +84536,7 @@ var CreatedByType;
|
|
|
84230
84536
|
(function(CreatedByType2) {
|
|
84231
84537
|
CreatedByType2["USER"] = "USER";
|
|
84232
84538
|
CreatedByType2["APP"] = "APP";
|
|
84539
|
+
CreatedByType2["CODE_GEN"] = "CODE_GEN";
|
|
84233
84540
|
})(CreatedByType || (CreatedByType = {}));
|
|
84234
84541
|
var ShowConsentBehaviour;
|
|
84235
84542
|
(function(ShowConsentBehaviour2) {
|