@wix/create-app 0.0.141 → 0.0.143
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 +603 -292
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -58071,13 +58071,15 @@ 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: {},
|
|
58077
58078
|
FailedToFindAstroConfig: {},
|
|
58078
58079
|
FailedToCreateShareUrl: {},
|
|
58079
58080
|
FailedToListShareUrls: {},
|
|
58080
|
-
FailedToParseNextVersion: (0, import_variant11.fields)()
|
|
58081
|
+
FailedToParseNextVersion: (0, import_variant11.fields)(),
|
|
58082
|
+
FailedToDistributeClientManifestUpdate: {}
|
|
58081
58083
|
});
|
|
58082
58084
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
58083
58085
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -58143,6 +58145,7 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58143
58145
|
NonInteractiveTerminal: {},
|
|
58144
58146
|
FailedToWatchFiles: {},
|
|
58145
58147
|
InvalidApiKey: {},
|
|
58148
|
+
AccountWasDeleted: {},
|
|
58146
58149
|
CliAppVersionMismatch: (0, import_variant11.fields)(),
|
|
58147
58150
|
NetworkError: {},
|
|
58148
58151
|
AppForVersionNotFound: (0, import_variant11.fields)(),
|
|
@@ -58194,7 +58197,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58194
58197
|
MissingPresetCssForSiteComponent: (0, import_variant11.fields)(),
|
|
58195
58198
|
AppInstallerSiteNotFound: (0, import_variant11.fields)(),
|
|
58196
58199
|
EAccessPermissionDenied: {},
|
|
58197
|
-
InvalidSiteComponentElementItem: (0, import_variant11.fields)()
|
|
58200
|
+
InvalidSiteComponentElementItem: (0, import_variant11.fields)(),
|
|
58201
|
+
TrustedAppIsNotMarkedAsInternal: {}
|
|
58198
58202
|
});
|
|
58199
58203
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
58200
58204
|
...CliSystemErrorCode,
|
|
@@ -58504,12 +58508,16 @@ function fixHostExceptions(host) {
|
|
|
58504
58508
|
return host.replace("create.editorx.com", "editor.editorx.com");
|
|
58505
58509
|
}
|
|
58506
58510
|
function resolveMappingsByDomain(domain, domainToMappings) {
|
|
58507
|
-
const mappings = domainToMappings[domain]
|
|
58511
|
+
const mappings = domainToMappings[domain];
|
|
58508
58512
|
if (mappings) {
|
|
58509
58513
|
return mappings;
|
|
58510
58514
|
}
|
|
58511
58515
|
const rootDomainMappings = resolveRootDomain(domain, domainToMappings);
|
|
58512
58516
|
if (!rootDomainMappings) {
|
|
58517
|
+
const userMappings = domainToMappings[USER_DOMAIN];
|
|
58518
|
+
if (userMappings) {
|
|
58519
|
+
return userMappings;
|
|
58520
|
+
}
|
|
58513
58521
|
if (isBaseDomain(domain)) {
|
|
58514
58522
|
return domainToMappings[wwwBaseDomain];
|
|
58515
58523
|
}
|
|
@@ -59545,6 +59553,12 @@ var AuthClient = class {
|
|
|
59545
59553
|
cause: error
|
|
59546
59554
|
});
|
|
59547
59555
|
}
|
|
59556
|
+
if (isHttpError(error) && error.response?.status === 404 && isHttpApplicationError(error) && error.response.data.details.applicationError.code === "48886") {
|
|
59557
|
+
throw new CliError({
|
|
59558
|
+
code: CliErrorCode.AccountWasDeleted(),
|
|
59559
|
+
cause: error
|
|
59560
|
+
});
|
|
59561
|
+
}
|
|
59548
59562
|
throw new CliError({
|
|
59549
59563
|
code: CliErrorCode.FailedToGetMyAccount(),
|
|
59550
59564
|
cause: error
|
|
@@ -68246,6 +68260,9 @@ function getErrorComponent(code, cause) {
|
|
|
68246
68260
|
InvalidApiKey: () => {
|
|
68247
68261
|
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You used invalid API key to log in." });
|
|
68248
68262
|
},
|
|
68263
|
+
AccountWasDeleted: () => {
|
|
68264
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The account you are trying to log in to has been deleted." });
|
|
68265
|
+
},
|
|
68249
68266
|
SiteConfiguredRequired: () => {
|
|
68250
68267
|
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You must provide a `--site` in the command options." });
|
|
68251
68268
|
},
|
|
@@ -68853,7 +68870,10 @@ ${errorMessage2}`
|
|
|
68853
68870
|
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to upload static files." });
|
|
68854
68871
|
},
|
|
68855
68872
|
FailedCreatingAppProject: () => {
|
|
68856
|
-
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error
|
|
68873
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while creating an app project." });
|
|
68874
|
+
},
|
|
68875
|
+
FailedToGetAppProject: () => {
|
|
68876
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while getting an app project." });
|
|
68857
68877
|
},
|
|
68858
68878
|
FailedCreatingAppDeployment: () => {
|
|
68859
68879
|
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occoured while creating an app deployment." });
|
|
@@ -68937,6 +68957,9 @@ ${errorMessage2}`
|
|
|
68937
68957
|
}
|
|
68938
68958
|
);
|
|
68939
68959
|
},
|
|
68960
|
+
FailedToDistributeClientManifestUpdate: () => {
|
|
68961
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to distribute client manifest update." });
|
|
68962
|
+
},
|
|
68940
68963
|
InvalidSiteComponentElementItem: ({ elementPath }) => {
|
|
68941
68964
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68942
68965
|
ErrorMessage,
|
|
@@ -68945,6 +68968,15 @@ ${errorMessage2}`
|
|
|
68945
68968
|
message: `Site component element config is invalid at ${elementPath}`
|
|
68946
68969
|
}
|
|
68947
68970
|
);
|
|
68971
|
+
},
|
|
68972
|
+
TrustedAppIsNotMarkedAsInternal: () => {
|
|
68973
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68974
|
+
ErrorMessage,
|
|
68975
|
+
{
|
|
68976
|
+
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.",
|
|
68977
|
+
hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the 'Wix App' toggle is enabled."
|
|
68978
|
+
}
|
|
68979
|
+
);
|
|
68948
68980
|
}
|
|
68949
68981
|
});
|
|
68950
68982
|
}
|
|
@@ -73635,7 +73667,7 @@ function reportCommandStartEvent({
|
|
|
73635
73667
|
var package_default = {
|
|
73636
73668
|
name: "@wix/create-app",
|
|
73637
73669
|
description: "Create Wix apps",
|
|
73638
|
-
version: "0.0.
|
|
73670
|
+
version: "0.0.143",
|
|
73639
73671
|
author: "Ihor Machuzhak",
|
|
73640
73672
|
bin: "bin/index.cjs",
|
|
73641
73673
|
devDependencies: {
|
|
@@ -73645,7 +73677,7 @@ var package_default = {
|
|
|
73645
73677
|
"@types/react": "^18.3.3",
|
|
73646
73678
|
"@types/semver": "^7.5.8",
|
|
73647
73679
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
73648
|
-
"@wix/bi-logger-dev-tools-data": "^1.
|
|
73680
|
+
"@wix/bi-logger-dev-tools-data": "^1.125.0",
|
|
73649
73681
|
"@wix/cli-auth": "workspace:*",
|
|
73650
73682
|
"@wix/cli-error": "workspace:*",
|
|
73651
73683
|
"@wix/cli-error-reporting": "workspace:*",
|
|
@@ -77091,6 +77123,10 @@ var _appData = { components: "_component", pricingModels: "_pricingModel" };
|
|
|
77091
77123
|
var _appEmbedData = { image: "_media" };
|
|
77092
77124
|
var _appointment = { description: "_richContent" };
|
|
77093
77125
|
var _arrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
77126
|
+
var _arrayOptions = {
|
|
77127
|
+
objectOptions: "_objectOptions",
|
|
77128
|
+
arrayOptions: "_arrayOptions"
|
|
77129
|
+
};
|
|
77094
77130
|
var _arrayType = { items: "_arrayTypeArrayItems" };
|
|
77095
77131
|
var _arrayTypeArrayItems = {
|
|
77096
77132
|
numberOptions: "_numberType",
|
|
@@ -77099,6 +77135,7 @@ var _arrayTypeArrayItems = {
|
|
|
77099
77135
|
var _audioData = { audio: "_media", coverImage: "_media" };
|
|
77100
77136
|
var _authenticatorConfig = { expectedInputs: "_expectedInputs" };
|
|
77101
77137
|
var _background = { image: "_media" };
|
|
77138
|
+
var _backgroundImage = { media: "_media" };
|
|
77102
77139
|
var _billing = {
|
|
77103
77140
|
monthlyPrice: "DOUBLE",
|
|
77104
77141
|
yearlyPrice: "DOUBLE",
|
|
@@ -77117,12 +77154,14 @@ var _checkboxGroup = {
|
|
|
77117
77154
|
media: "_mediaItem"
|
|
77118
77155
|
};
|
|
77119
77156
|
var _checkboxGroupOption = { media: "_mediaItem" };
|
|
77157
|
+
var _collection = { fields: "_dataComponentField" };
|
|
77120
77158
|
var _commonImage = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
77121
77159
|
var _component = { compData: "_componentData" };
|
|
77122
77160
|
var _componentData = {
|
|
77123
77161
|
widgetComponentData: "_widgetComponentData",
|
|
77124
77162
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
77125
77163
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
77164
|
+
dataComponent: "_dataComponent",
|
|
77126
77165
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
77127
77166
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
77128
77167
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -77144,6 +77183,11 @@ var _cssNumber = {
|
|
|
77144
77183
|
maximum: "google.protobuf.FloatValue",
|
|
77145
77184
|
multipleOf: "google.protobuf.FloatValue"
|
|
77146
77185
|
};
|
|
77186
|
+
var _dataComponent = { collections: "_collection" };
|
|
77187
|
+
var _dataComponentField = {
|
|
77188
|
+
objectOptions: "_objectOptions",
|
|
77189
|
+
arrayOptions: "_arrayOptions"
|
|
77190
|
+
};
|
|
77147
77191
|
var _dataItem = {
|
|
77148
77192
|
number: "__Number",
|
|
77149
77193
|
arrayItems: "_arrayItems",
|
|
@@ -77167,7 +77211,6 @@ var _displayField = { richContentOptions: "_richContentOptions" };
|
|
|
77167
77211
|
var _donationInput = { description: "_richContent", media: "_mediaItem" };
|
|
77168
77212
|
var _dropdown = { description: "_richContent", media: "_mediaItem" };
|
|
77169
77213
|
var _editorElement = {
|
|
77170
|
-
style: "Map#_styleItem",
|
|
77171
77214
|
data: "Map#_dataItem",
|
|
77172
77215
|
elements: "Map#_elementItem",
|
|
77173
77216
|
presets: "Map#_presetItem",
|
|
@@ -77244,6 +77287,10 @@ var _item = { image: "_itemImage", video: "_video" };
|
|
|
77244
77287
|
var _itemImage = { media: "_media" };
|
|
77245
77288
|
var _itemLayout = { group: "_group" };
|
|
77246
77289
|
var _itemStyle = { ratio: "google.protobuf.DoubleValue" };
|
|
77290
|
+
var _layoutData = {
|
|
77291
|
+
backgroundImage: "_backgroundImage",
|
|
77292
|
+
backdropImage: "_backgroundImage"
|
|
77293
|
+
};
|
|
77247
77294
|
var _mapData = { mapSettings: "_mapSettings" };
|
|
77248
77295
|
var _mapSettings = {
|
|
77249
77296
|
lat: "google.protobuf.DoubleValue",
|
|
@@ -77267,6 +77314,7 @@ var _node = {
|
|
|
77267
77314
|
appEmbedData: "_appEmbedData",
|
|
77268
77315
|
videoData: "_videoData",
|
|
77269
77316
|
audioData: "_audioData",
|
|
77317
|
+
layoutData: "_layoutData",
|
|
77270
77318
|
nodes: "_node"
|
|
77271
77319
|
};
|
|
77272
77320
|
var _numberInput = {
|
|
@@ -77280,6 +77328,11 @@ var _numberType = {
|
|
|
77280
77328
|
multipleOf: "google.protobuf.DoubleValue",
|
|
77281
77329
|
enum: "google.protobuf.DoubleValue"
|
|
77282
77330
|
};
|
|
77331
|
+
var _objectField = {
|
|
77332
|
+
objectOptions: "_objectOptions",
|
|
77333
|
+
arrayOptions: "_arrayOptions"
|
|
77334
|
+
};
|
|
77335
|
+
var _objectOptions = { fields: "_objectField" };
|
|
77283
77336
|
var _objectType = { properties: "Map#_propertiesType" };
|
|
77284
77337
|
var _orCondition = { conditions: "_conditionNode" };
|
|
77285
77338
|
var _packageDimension = {
|
|
@@ -77339,7 +77392,6 @@ var _radioGroup = { description: "_richContent", media: "_mediaItem" };
|
|
|
77339
77392
|
var _ratingInput = { description: "_richContent", media: "_mediaItem" };
|
|
77340
77393
|
var _refElement = {
|
|
77341
77394
|
resolvedElement: "_inlineElement",
|
|
77342
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
77343
77395
|
elements: "Map#_refInnerElementDefaults"
|
|
77344
77396
|
};
|
|
77345
77397
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -77524,17 +77576,20 @@ function getAppByVersion(payload5) {
|
|
|
77524
77576
|
_appEmbedData,
|
|
77525
77577
|
_appointment,
|
|
77526
77578
|
_arrayItems,
|
|
77579
|
+
_arrayOptions,
|
|
77527
77580
|
_arrayType,
|
|
77528
77581
|
_arrayTypeArrayItems,
|
|
77529
77582
|
_audioData,
|
|
77530
77583
|
_authenticatorConfig,
|
|
77531
77584
|
_background,
|
|
77585
|
+
_backgroundImage,
|
|
77532
77586
|
_billing,
|
|
77533
77587
|
_breakPoint,
|
|
77534
77588
|
_breakpointPresetStyleOverrides,
|
|
77535
77589
|
_checkbox,
|
|
77536
77590
|
_checkboxGroup,
|
|
77537
77591
|
_checkboxGroupOption,
|
|
77592
|
+
_collection,
|
|
77538
77593
|
_commonImage,
|
|
77539
77594
|
_component,
|
|
77540
77595
|
_componentData,
|
|
@@ -77542,6 +77597,8 @@ function getAppByVersion(payload5) {
|
|
|
77542
77597
|
_conditionNode,
|
|
77543
77598
|
_cssCustomPropertyItem,
|
|
77544
77599
|
_cssNumber,
|
|
77600
|
+
_dataComponent,
|
|
77601
|
+
_dataComponentField,
|
|
77545
77602
|
_dataItem,
|
|
77546
77603
|
_dataItems,
|
|
77547
77604
|
_dateInput,
|
|
@@ -77579,6 +77636,7 @@ function getAppByVersion(payload5) {
|
|
|
77579
77636
|
_itemImage,
|
|
77580
77637
|
_itemLayout,
|
|
77581
77638
|
_itemStyle,
|
|
77639
|
+
_layoutData,
|
|
77582
77640
|
_mapData,
|
|
77583
77641
|
_mapSettings,
|
|
77584
77642
|
_media,
|
|
@@ -77589,6 +77647,8 @@ function getAppByVersion(payload5) {
|
|
|
77589
77647
|
_node,
|
|
77590
77648
|
_numberInput,
|
|
77591
77649
|
_numberType,
|
|
77650
|
+
_objectField,
|
|
77651
|
+
_objectOptions,
|
|
77592
77652
|
_objectType,
|
|
77593
77653
|
_orCondition,
|
|
77594
77654
|
_packageDimension,
|
|
@@ -77781,6 +77841,9 @@ function createApp(payload5) {
|
|
|
77781
77841
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77782
77842
|
method: "POST",
|
|
77783
77843
|
methodFqn: "wix.devcenter.apps.v1.AppsService.CreateApp",
|
|
77844
|
+
migrationOptions: {
|
|
77845
|
+
optInTransformResponse: true
|
|
77846
|
+
},
|
|
77784
77847
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77785
77848
|
protoPath: "/v1/apps",
|
|
77786
77849
|
data: serializedData,
|
|
@@ -77805,6 +77868,9 @@ function getApp(payload5) {
|
|
|
77805
77868
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77806
77869
|
method: "GET",
|
|
77807
77870
|
methodFqn: "wix.devcenter.apps.v1.AppsService.GetApp",
|
|
77871
|
+
migrationOptions: {
|
|
77872
|
+
optInTransformResponse: true
|
|
77873
|
+
},
|
|
77808
77874
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77809
77875
|
protoPath: "/v1/apps/{appId}",
|
|
77810
77876
|
data: serializedData,
|
|
@@ -77829,6 +77895,9 @@ function queryApp(payload5) {
|
|
|
77829
77895
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
77830
77896
|
method: "POST",
|
|
77831
77897
|
methodFqn: "wix.devcenter.apps.v1.AppsService.QueryApp",
|
|
77898
|
+
migrationOptions: {
|
|
77899
|
+
optInTransformResponse: true
|
|
77900
|
+
},
|
|
77832
77901
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
77833
77902
|
protoPath: "/v1/apps/query",
|
|
77834
77903
|
data: serializedData,
|
|
@@ -77893,6 +77962,9 @@ function createOAuthApp(payload5) {
|
|
|
77893
77962
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
77894
77963
|
method: "POST",
|
|
77895
77964
|
methodFqn: "wix.headless.v1.OAuthAppService.CreateOAuthApp",
|
|
77965
|
+
migrationOptions: {
|
|
77966
|
+
optInTransformResponse: true
|
|
77967
|
+
},
|
|
77896
77968
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
77897
77969
|
protoPath: "/v1/oauth-apps",
|
|
77898
77970
|
data: serializedData,
|
|
@@ -77919,6 +77991,9 @@ function updateOAuthApp(payload5) {
|
|
|
77919
77991
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
77920
77992
|
method: "PATCH",
|
|
77921
77993
|
methodFqn: "wix.headless.v1.OAuthAppService.UpdateOAuthApp",
|
|
77994
|
+
migrationOptions: {
|
|
77995
|
+
optInTransformResponse: true
|
|
77996
|
+
},
|
|
77922
77997
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
77923
77998
|
protoPath: "/v1/oauth-apps/{oAuthApp.id}",
|
|
77924
77999
|
data: serializedData,
|
|
@@ -78109,6 +78184,9 @@ function createDevelopmentSite(payload5) {
|
|
|
78109
78184
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78110
78185
|
method: "POST",
|
|
78111
78186
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.CreateDevelopmentSite",
|
|
78187
|
+
migrationOptions: {
|
|
78188
|
+
optInTransformResponse: true
|
|
78189
|
+
},
|
|
78112
78190
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78113
78191
|
protoPath: "/v1/development-sites",
|
|
78114
78192
|
data: serializedData,
|
|
@@ -78133,6 +78211,9 @@ function getDevelopmentSites(payload5) {
|
|
|
78133
78211
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78134
78212
|
method: "GET",
|
|
78135
78213
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSites",
|
|
78214
|
+
migrationOptions: {
|
|
78215
|
+
optInTransformResponse: true
|
|
78216
|
+
},
|
|
78136
78217
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78137
78218
|
protoPath: "/v1/development-sites",
|
|
78138
78219
|
data: serializedData,
|
|
@@ -78157,6 +78238,9 @@ function getDevelopmentSitesLimit(payload5) {
|
|
|
78157
78238
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
78158
78239
|
method: "GET",
|
|
78159
78240
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSitesLimit",
|
|
78241
|
+
migrationOptions: {
|
|
78242
|
+
optInTransformResponse: true
|
|
78243
|
+
},
|
|
78160
78244
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
78161
78245
|
protoPath: "/v1/development-sites-limit",
|
|
78162
78246
|
data: serializedData,
|
|
@@ -78476,10 +78560,15 @@ var _arrayItems2 = {
|
|
|
78476
78560
|
numberOptions: "_numberType",
|
|
78477
78561
|
objectOptions: "_objectType"
|
|
78478
78562
|
};
|
|
78563
|
+
var _arrayOptions2 = {
|
|
78564
|
+
objectOptions: "_objectOptions",
|
|
78565
|
+
arrayOptions: "_arrayOptions"
|
|
78566
|
+
};
|
|
78479
78567
|
var _arrayType2 = { items: "_arrayItems" };
|
|
78480
78568
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
78481
78569
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
78482
78570
|
var _background2 = { image: "_media" };
|
|
78571
|
+
var _backgroundImage2 = { media: "_media" };
|
|
78483
78572
|
var _breakPoint2 = { items: "_itemLayout" };
|
|
78484
78573
|
var _breakpointPresetStyleOverrides2 = {
|
|
78485
78574
|
default: "_presetStyleOverrides",
|
|
@@ -78491,6 +78580,7 @@ var _checkboxGroup2 = {
|
|
|
78491
78580
|
options: "_option",
|
|
78492
78581
|
media: "_mediaItem"
|
|
78493
78582
|
};
|
|
78583
|
+
var _collection2 = { fields: "_dataComponentField" };
|
|
78494
78584
|
var _commonImage2 = {
|
|
78495
78585
|
urlExpirationDate: "google.protobuf.Timestamp",
|
|
78496
78586
|
focalPoint: "_focalPoint"
|
|
@@ -78500,6 +78590,7 @@ var _componentData2 = {
|
|
|
78500
78590
|
widgetComponentData: "_widgetComponentData",
|
|
78501
78591
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
78502
78592
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
78593
|
+
dataComponent: "_dataComponent",
|
|
78503
78594
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
78504
78595
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
78505
78596
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -78520,6 +78611,11 @@ var _cssNumber2 = {
|
|
|
78520
78611
|
maximum: "google.protobuf.FloatValue",
|
|
78521
78612
|
multipleOf: "google.protobuf.FloatValue"
|
|
78522
78613
|
};
|
|
78614
|
+
var _dataComponent2 = { collections: "_collection" };
|
|
78615
|
+
var _dataComponentField2 = {
|
|
78616
|
+
objectOptions: "_objectOptions",
|
|
78617
|
+
arrayOptions: "_arrayOptions"
|
|
78618
|
+
};
|
|
78523
78619
|
var _dataItem2 = {
|
|
78524
78620
|
number: "_api_Number",
|
|
78525
78621
|
arrayItems: "_apiArrayItems",
|
|
@@ -78544,7 +78640,6 @@ var _displayField2 = { richContentOptions: "_richContentOptions" };
|
|
|
78544
78640
|
var _donationInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
78545
78641
|
var _dropdown2 = { description: "_richContent", media: "_mediaItem" };
|
|
78546
78642
|
var _editorElement2 = {
|
|
78547
|
-
style: "Map#_styleItem",
|
|
78548
78643
|
data: "Map#_dataItem",
|
|
78549
78644
|
elements: "Map#_elementItem",
|
|
78550
78645
|
presets: "Map#_presetItem",
|
|
@@ -78613,6 +78708,10 @@ var _item2 = { image: "_itemImage", video: "_video" };
|
|
|
78613
78708
|
var _itemImage2 = { media: "_media" };
|
|
78614
78709
|
var _itemLayout2 = { group: "_group" };
|
|
78615
78710
|
var _itemStyle2 = { ratio: "google.protobuf.DoubleValue" };
|
|
78711
|
+
var _layoutData2 = {
|
|
78712
|
+
backgroundImage: "_backgroundImage",
|
|
78713
|
+
backdropImage: "_backgroundImage"
|
|
78714
|
+
};
|
|
78616
78715
|
var _managedApp = {
|
|
78617
78716
|
premiumInfo: "_premiumInfo",
|
|
78618
78717
|
components: "_component",
|
|
@@ -78640,6 +78739,7 @@ var _node2 = {
|
|
|
78640
78739
|
appEmbedData: "_appEmbedData",
|
|
78641
78740
|
videoData: "_videoData",
|
|
78642
78741
|
audioData: "_audioData",
|
|
78742
|
+
layoutData: "_layoutData",
|
|
78643
78743
|
nodes: "_node"
|
|
78644
78744
|
};
|
|
78645
78745
|
var _numberInput2 = {
|
|
@@ -78653,6 +78753,11 @@ var _numberType2 = {
|
|
|
78653
78753
|
multipleOf: "google.protobuf.DoubleValue",
|
|
78654
78754
|
enum: "google.protobuf.DoubleValue"
|
|
78655
78755
|
};
|
|
78756
|
+
var _objectField2 = {
|
|
78757
|
+
objectOptions: "_objectOptions",
|
|
78758
|
+
arrayOptions: "_arrayOptions"
|
|
78759
|
+
};
|
|
78760
|
+
var _objectOptions2 = { fields: "_objectField" };
|
|
78656
78761
|
var _objectType2 = { properties: "Map#_propertiesType" };
|
|
78657
78762
|
var _option = { media: "_mediaItem" };
|
|
78658
78763
|
var _orCondition2 = { conditions: "_conditionNode" };
|
|
@@ -78713,7 +78818,6 @@ var _radioGroup2 = { description: "_richContent", media: "_mediaItem" };
|
|
|
78713
78818
|
var _ratingInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
78714
78819
|
var _refElement2 = {
|
|
78715
78820
|
resolvedElement: "_inlineElement",
|
|
78716
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
78717
78821
|
elements: "Map#_refInnerElementDefaults"
|
|
78718
78822
|
};
|
|
78719
78823
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -78853,20 +78957,25 @@ function managedApps(payload5) {
|
|
|
78853
78957
|
_appEmbedData: _appEmbedData2,
|
|
78854
78958
|
_appointment: _appointment2,
|
|
78855
78959
|
_arrayItems: _arrayItems2,
|
|
78960
|
+
_arrayOptions: _arrayOptions2,
|
|
78856
78961
|
_arrayType: _arrayType2,
|
|
78857
78962
|
_audioData: _audioData2,
|
|
78858
78963
|
_authenticatorConfig: _authenticatorConfig2,
|
|
78859
78964
|
_background: _background2,
|
|
78965
|
+
_backgroundImage: _backgroundImage2,
|
|
78860
78966
|
_breakPoint: _breakPoint2,
|
|
78861
78967
|
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
78862
78968
|
_checkbox: _checkbox2,
|
|
78863
78969
|
_checkboxGroup: _checkboxGroup2,
|
|
78970
|
+
_collection: _collection2,
|
|
78864
78971
|
_commonImage: _commonImage2,
|
|
78865
78972
|
_component: _component2,
|
|
78866
78973
|
_componentData: _componentData2,
|
|
78867
78974
|
_conditionNode: _conditionNode2,
|
|
78868
78975
|
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
78869
78976
|
_cssNumber: _cssNumber2,
|
|
78977
|
+
_dataComponent: _dataComponent2,
|
|
78978
|
+
_dataComponentField: _dataComponentField2,
|
|
78870
78979
|
_dataItem: _dataItem2,
|
|
78871
78980
|
_dataItems: _dataItems2,
|
|
78872
78981
|
_dateInput: _dateInput2,
|
|
@@ -78906,6 +79015,7 @@ function managedApps(payload5) {
|
|
|
78906
79015
|
_itemImage: _itemImage2,
|
|
78907
79016
|
_itemLayout: _itemLayout2,
|
|
78908
79017
|
_itemStyle: _itemStyle2,
|
|
79018
|
+
_layoutData: _layoutData2,
|
|
78909
79019
|
_managedApp,
|
|
78910
79020
|
_mapData: _mapData2,
|
|
78911
79021
|
_mapSettings: _mapSettings2,
|
|
@@ -78917,6 +79027,8 @@ function managedApps(payload5) {
|
|
|
78917
79027
|
_node: _node2,
|
|
78918
79028
|
_numberInput: _numberInput2,
|
|
78919
79029
|
_numberType: _numberType2,
|
|
79030
|
+
_objectField: _objectField2,
|
|
79031
|
+
_objectOptions: _objectOptions2,
|
|
78920
79032
|
_objectType: _objectType2,
|
|
78921
79033
|
_option,
|
|
78922
79034
|
_orCondition: _orCondition2,
|
|
@@ -79248,6 +79360,10 @@ var ComponentType;
|
|
|
79248
79360
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
79249
79361
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
79250
79362
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
79363
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
79364
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
79365
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
79366
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
79251
79367
|
})(ComponentType || (ComponentType = {}));
|
|
79252
79368
|
var WidgetVertical;
|
|
79253
79369
|
(function(WidgetVertical3) {
|
|
@@ -79436,6 +79552,47 @@ var ExtensionType;
|
|
|
79436
79552
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
79437
79553
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
79438
79554
|
})(ExtensionType || (ExtensionType = {}));
|
|
79555
|
+
var DataComponentFieldType;
|
|
79556
|
+
(function(DataComponentFieldType3) {
|
|
79557
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
79558
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
79559
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
79560
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
79561
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
79562
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
79563
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
79564
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
79565
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
79566
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
79567
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
79568
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
79569
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
79570
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
79571
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
79572
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
79573
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
79574
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
79575
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
79576
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
79577
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
79578
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
79579
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
79580
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
79581
|
+
})(DataComponentFieldType || (DataComponentFieldType = {}));
|
|
79582
|
+
var AccessLevel;
|
|
79583
|
+
(function(AccessLevel3) {
|
|
79584
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
79585
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
79586
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
79587
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
79588
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
79589
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
79590
|
+
})(AccessLevel || (AccessLevel = {}));
|
|
79591
|
+
var Order;
|
|
79592
|
+
(function(Order3) {
|
|
79593
|
+
Order3["ASC"] = "ASC";
|
|
79594
|
+
Order3["DESC"] = "DESC";
|
|
79595
|
+
})(Order || (Order = {}));
|
|
79439
79596
|
var PrimitiveType;
|
|
79440
79597
|
(function(PrimitiveType3) {
|
|
79441
79598
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -79514,11 +79671,17 @@ var Type;
|
|
|
79514
79671
|
Type3["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
79515
79672
|
Type3["GENERIC"] = "GENERIC";
|
|
79516
79673
|
})(Type || (Type = {}));
|
|
79674
|
+
var IntegrationType;
|
|
79675
|
+
(function(IntegrationType3) {
|
|
79676
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
79677
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
79678
|
+
})(IntegrationType || (IntegrationType = {}));
|
|
79517
79679
|
var SourceType;
|
|
79518
79680
|
(function(SourceType3) {
|
|
79519
79681
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
79520
79682
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
79521
79683
|
SourceType3["WIX_API"] = "WIX_API";
|
|
79684
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
79522
79685
|
})(SourceType || (SourceType = {}));
|
|
79523
79686
|
var ExecutionType;
|
|
79524
79687
|
(function(ExecutionType3) {
|
|
@@ -79855,6 +80018,7 @@ var Source;
|
|
|
79855
80018
|
(function(Source2) {
|
|
79856
80019
|
Source2["HTML"] = "HTML";
|
|
79857
80020
|
Source2["ADSENSE"] = "ADSENSE";
|
|
80021
|
+
Source2["AI"] = "AI";
|
|
79858
80022
|
})(Source || (Source = {}));
|
|
79859
80023
|
var StylesPosition;
|
|
79860
80024
|
(function(StylesPosition3) {
|
|
@@ -79982,6 +80146,35 @@ var NullValue;
|
|
|
79982
80146
|
(function(NullValue3) {
|
|
79983
80147
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
79984
80148
|
})(NullValue || (NullValue = {}));
|
|
80149
|
+
var Scaling;
|
|
80150
|
+
(function(Scaling3) {
|
|
80151
|
+
Scaling3["AUTO"] = "AUTO";
|
|
80152
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
80153
|
+
Scaling3["COVER"] = "COVER";
|
|
80154
|
+
})(Scaling || (Scaling = {}));
|
|
80155
|
+
var LayoutDataImagePosition;
|
|
80156
|
+
(function(LayoutDataImagePosition3) {
|
|
80157
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
80158
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
80159
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
80160
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
80161
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
80162
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
80163
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
80164
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
80165
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
80166
|
+
})(LayoutDataImagePosition || (LayoutDataImagePosition = {}));
|
|
80167
|
+
var VerticalAlignmentAlignment;
|
|
80168
|
+
(function(VerticalAlignmentAlignment3) {
|
|
80169
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
80170
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
80171
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
80172
|
+
})(VerticalAlignmentAlignment || (VerticalAlignmentAlignment = {}));
|
|
80173
|
+
var ResponsivenessBehaviour;
|
|
80174
|
+
(function(ResponsivenessBehaviour3) {
|
|
80175
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
80176
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
80177
|
+
})(ResponsivenessBehaviour || (ResponsivenessBehaviour = {}));
|
|
79985
80178
|
var CalendarType;
|
|
79986
80179
|
(function(CalendarType3) {
|
|
79987
80180
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -80082,6 +80275,8 @@ var PlanFormDefaultSection;
|
|
|
80082
80275
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
80083
80276
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
80084
80277
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
80278
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
80279
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
80085
80280
|
})(PlanFormDefaultSection || (PlanFormDefaultSection = {}));
|
|
80086
80281
|
var PlanPeriodUnit;
|
|
80087
80282
|
(function(PlanPeriodUnit3) {
|
|
@@ -80605,6 +80800,11 @@ var PanelContentType;
|
|
|
80605
80800
|
PanelContentType3["url"] = "url";
|
|
80606
80801
|
PanelContentType3["code"] = "code";
|
|
80607
80802
|
})(PanelContentType || (PanelContentType = {}));
|
|
80803
|
+
var PanelMode;
|
|
80804
|
+
(function(PanelMode3) {
|
|
80805
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
80806
|
+
PanelMode3["overlay"] = "overlay";
|
|
80807
|
+
})(PanelMode || (PanelMode = {}));
|
|
80608
80808
|
var StorageType;
|
|
80609
80809
|
(function(StorageType3) {
|
|
80610
80810
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -80653,6 +80853,150 @@ var Scope3;
|
|
|
80653
80853
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
80654
80854
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
80655
80855
|
})(Scope3 || (Scope3 = {}));
|
|
80856
|
+
var DataType;
|
|
80857
|
+
(function(DataType3) {
|
|
80858
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
80859
|
+
DataType3["text"] = "text";
|
|
80860
|
+
DataType3["textEnum"] = "textEnum";
|
|
80861
|
+
DataType3["number"] = "number";
|
|
80862
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
80863
|
+
DataType3["a11y"] = "a11y";
|
|
80864
|
+
DataType3["link"] = "link";
|
|
80865
|
+
DataType3["image"] = "image";
|
|
80866
|
+
DataType3["video"] = "video";
|
|
80867
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
80868
|
+
DataType3["audio"] = "audio";
|
|
80869
|
+
DataType3["schema"] = "schema";
|
|
80870
|
+
DataType3["localDate"] = "localDate";
|
|
80871
|
+
DataType3["localTime"] = "localTime";
|
|
80872
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
80873
|
+
DataType3["webUrl"] = "webUrl";
|
|
80874
|
+
DataType3["email"] = "email";
|
|
80875
|
+
DataType3["phone"] = "phone";
|
|
80876
|
+
DataType3["hostname"] = "hostname";
|
|
80877
|
+
DataType3["regex"] = "regex";
|
|
80878
|
+
DataType3["guid"] = "guid";
|
|
80879
|
+
DataType3["richText"] = "richText";
|
|
80880
|
+
DataType3["container"] = "container";
|
|
80881
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
80882
|
+
DataType3["direction"] = "direction";
|
|
80883
|
+
DataType3["menuItems"] = "menuItems";
|
|
80884
|
+
DataType3["data"] = "data";
|
|
80885
|
+
})(DataType || (DataType = {}));
|
|
80886
|
+
var A11yAttributes;
|
|
80887
|
+
(function(A11yAttributes3) {
|
|
80888
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
80889
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
80890
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
80891
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
80892
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
80893
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
80894
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
80895
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
80896
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
80897
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
80898
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
80899
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
80900
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
80901
|
+
A11yAttributes3["role"] = "role";
|
|
80902
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
80903
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
80904
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
80905
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
80906
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
80907
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
80908
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
80909
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
80910
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
80911
|
+
A11yAttributes3["tag"] = "tag";
|
|
80912
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
80913
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
80914
|
+
})(A11yAttributes || (A11yAttributes = {}));
|
|
80915
|
+
var LinkType;
|
|
80916
|
+
(function(LinkType3) {
|
|
80917
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
80918
|
+
LinkType3["externalLink"] = "externalLink";
|
|
80919
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
80920
|
+
LinkType3["emailLink"] = "emailLink";
|
|
80921
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
80922
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
80923
|
+
LinkType3["pageLink"] = "pageLink";
|
|
80924
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
80925
|
+
LinkType3["documentLink"] = "documentLink";
|
|
80926
|
+
LinkType3["popupLink"] = "popupLink";
|
|
80927
|
+
LinkType3["addressLink"] = "addressLink";
|
|
80928
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
80929
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
80930
|
+
})(LinkType || (LinkType = {}));
|
|
80931
|
+
var ContainerType;
|
|
80932
|
+
(function(ContainerType3) {
|
|
80933
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
80934
|
+
ContainerType3["simple"] = "simple";
|
|
80935
|
+
ContainerType3["slot"] = "slot";
|
|
80936
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
80937
|
+
ContainerType3["template"] = "template";
|
|
80938
|
+
})(ContainerType || (ContainerType = {}));
|
|
80939
|
+
var ResizeDirection;
|
|
80940
|
+
(function(ResizeDirection3) {
|
|
80941
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
80942
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
80943
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
80944
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80945
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
80946
|
+
ResizeDirection3["none"] = "none";
|
|
80947
|
+
})(ResizeDirection || (ResizeDirection = {}));
|
|
80948
|
+
var RichTextAbilities;
|
|
80949
|
+
(function(RichTextAbilities3) {
|
|
80950
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
80951
|
+
RichTextAbilities3["font"] = "font";
|
|
80952
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
80953
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
80954
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
80955
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
80956
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
80957
|
+
RichTextAbilities3["color"] = "color";
|
|
80958
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
80959
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
80960
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
80961
|
+
RichTextAbilities3["direction"] = "direction";
|
|
80962
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
80963
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
80964
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
80965
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
80966
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
80967
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
80968
|
+
var ImageCategoryTypes;
|
|
80969
|
+
(function(ImageCategoryTypes3) {
|
|
80970
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
80971
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
80972
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
80973
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
80974
|
+
var VideoCategoryTypes;
|
|
80975
|
+
(function(VideoCategoryTypes3) {
|
|
80976
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
80977
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
80978
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
80979
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
80980
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
80981
|
+
var VectorArtCategoryTypes;
|
|
80982
|
+
(function(VectorArtCategoryTypes3) {
|
|
80983
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
80984
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
80985
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
80986
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
80987
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
80988
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
80989
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
80990
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
80991
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
80992
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
80993
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
80994
|
+
var ElementTypeEnumElementType;
|
|
80995
|
+
(function(ElementTypeEnumElementType2) {
|
|
80996
|
+
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
80997
|
+
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
80998
|
+
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
80999
|
+
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
80656
81000
|
var CssPropertyType;
|
|
80657
81001
|
(function(CssPropertyType3) {
|
|
80658
81002
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -80942,22 +81286,6 @@ var BackgroundModeEnum;
|
|
|
80942
81286
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
80943
81287
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
80944
81288
|
})(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
81289
|
var CssDataTypeEnumCssDataType;
|
|
80962
81290
|
(function(CssDataTypeEnumCssDataType3) {
|
|
80963
81291
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -80972,131 +81300,6 @@ var CssDataTypeEnumCssDataType;
|
|
|
80972
81300
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
80973
81301
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
80974
81302
|
})(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
81303
|
var ActionType;
|
|
81101
81304
|
(function(ActionType3) {
|
|
81102
81305
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -81222,6 +81425,9 @@ var GroupType;
|
|
|
81222
81425
|
GroupType3["borderRadius"] = "borderRadius";
|
|
81223
81426
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
81224
81427
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
81428
|
+
GroupType3["borderColor"] = "borderColor";
|
|
81429
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
81430
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
81225
81431
|
GroupType3["font"] = "font";
|
|
81226
81432
|
GroupType3["textDecoration"] = "textDecoration";
|
|
81227
81433
|
GroupType3["gap"] = "gap";
|
|
@@ -81443,6 +81649,8 @@ var TimeConstraintType;
|
|
|
81443
81649
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
81444
81650
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
81445
81651
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
81652
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
81653
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
81446
81654
|
})(TimeConstraintType || (TimeConstraintType = {}));
|
|
81447
81655
|
var ValueConstraintType;
|
|
81448
81656
|
(function(ValueConstraintType3) {
|
|
@@ -81612,6 +81820,9 @@ function createShareUrl(payload5) {
|
|
|
81612
81820
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
81613
81821
|
method: "POST",
|
|
81614
81822
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
81823
|
+
migrationOptions: {
|
|
81824
|
+
optInTransformResponse: true
|
|
81825
|
+
},
|
|
81615
81826
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
81616
81827
|
protoPath: "/v1/share-url",
|
|
81617
81828
|
data: serializedData,
|
|
@@ -81638,6 +81849,9 @@ function listShareUrls(payload5) {
|
|
|
81638
81849
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
81639
81850
|
method: "GET",
|
|
81640
81851
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
81852
|
+
migrationOptions: {
|
|
81853
|
+
optInTransformResponse: true
|
|
81854
|
+
},
|
|
81641
81855
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
81642
81856
|
protoPath: "/v1/share-urls",
|
|
81643
81857
|
data: serializedData,
|
|
@@ -81905,6 +82119,10 @@ var ComponentType2;
|
|
|
81905
82119
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
81906
82120
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
81907
82121
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
82122
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
82123
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
82124
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
82125
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
81908
82126
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
81909
82127
|
var WidgetVertical2;
|
|
81910
82128
|
(function(WidgetVertical3) {
|
|
@@ -82093,6 +82311,47 @@ var ExtensionType2;
|
|
|
82093
82311
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
82094
82312
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
82095
82313
|
})(ExtensionType2 || (ExtensionType2 = {}));
|
|
82314
|
+
var DataComponentFieldType2;
|
|
82315
|
+
(function(DataComponentFieldType3) {
|
|
82316
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
82317
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
82318
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
82319
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
82320
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
82321
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
82322
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
82323
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
82324
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
82325
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
82326
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
82327
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
82328
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
82329
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
82330
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
82331
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
82332
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
82333
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
82334
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
82335
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
82336
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
82337
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
82338
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
82339
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
82340
|
+
})(DataComponentFieldType2 || (DataComponentFieldType2 = {}));
|
|
82341
|
+
var AccessLevel2;
|
|
82342
|
+
(function(AccessLevel3) {
|
|
82343
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
82344
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
82345
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
82346
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
82347
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
82348
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
82349
|
+
})(AccessLevel2 || (AccessLevel2 = {}));
|
|
82350
|
+
var Order2;
|
|
82351
|
+
(function(Order3) {
|
|
82352
|
+
Order3["ASC"] = "ASC";
|
|
82353
|
+
Order3["DESC"] = "DESC";
|
|
82354
|
+
})(Order2 || (Order2 = {}));
|
|
82096
82355
|
var PrimitiveType2;
|
|
82097
82356
|
(function(PrimitiveType3) {
|
|
82098
82357
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -82171,11 +82430,17 @@ var ActionSPIConfigInterfaceConfigurationType;
|
|
|
82171
82430
|
ActionSPIConfigInterfaceConfigurationType2["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
82172
82431
|
ActionSPIConfigInterfaceConfigurationType2["GENERIC"] = "GENERIC";
|
|
82173
82432
|
})(ActionSPIConfigInterfaceConfigurationType || (ActionSPIConfigInterfaceConfigurationType = {}));
|
|
82433
|
+
var IntegrationType2;
|
|
82434
|
+
(function(IntegrationType3) {
|
|
82435
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
82436
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
82437
|
+
})(IntegrationType2 || (IntegrationType2 = {}));
|
|
82174
82438
|
var SourceType2;
|
|
82175
82439
|
(function(SourceType3) {
|
|
82176
82440
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
82177
82441
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
82178
82442
|
SourceType3["WIX_API"] = "WIX_API";
|
|
82443
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
82179
82444
|
})(SourceType2 || (SourceType2 = {}));
|
|
82180
82445
|
var ExecutionType2;
|
|
82181
82446
|
(function(ExecutionType3) {
|
|
@@ -82512,6 +82777,7 @@ var HTMLDataSource;
|
|
|
82512
82777
|
(function(HTMLDataSource2) {
|
|
82513
82778
|
HTMLDataSource2["HTML"] = "HTML";
|
|
82514
82779
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
82780
|
+
HTMLDataSource2["AI"] = "AI";
|
|
82515
82781
|
})(HTMLDataSource || (HTMLDataSource = {}));
|
|
82516
82782
|
var StylesPosition2;
|
|
82517
82783
|
(function(StylesPosition3) {
|
|
@@ -82639,6 +82905,35 @@ var NullValue2;
|
|
|
82639
82905
|
(function(NullValue3) {
|
|
82640
82906
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
82641
82907
|
})(NullValue2 || (NullValue2 = {}));
|
|
82908
|
+
var Scaling2;
|
|
82909
|
+
(function(Scaling3) {
|
|
82910
|
+
Scaling3["AUTO"] = "AUTO";
|
|
82911
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
82912
|
+
Scaling3["COVER"] = "COVER";
|
|
82913
|
+
})(Scaling2 || (Scaling2 = {}));
|
|
82914
|
+
var LayoutDataImagePosition2;
|
|
82915
|
+
(function(LayoutDataImagePosition3) {
|
|
82916
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
82917
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
82918
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
82919
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
82920
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
82921
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
82922
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
82923
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
82924
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
82925
|
+
})(LayoutDataImagePosition2 || (LayoutDataImagePosition2 = {}));
|
|
82926
|
+
var VerticalAlignmentAlignment2;
|
|
82927
|
+
(function(VerticalAlignmentAlignment3) {
|
|
82928
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
82929
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
82930
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
82931
|
+
})(VerticalAlignmentAlignment2 || (VerticalAlignmentAlignment2 = {}));
|
|
82932
|
+
var ResponsivenessBehaviour2;
|
|
82933
|
+
(function(ResponsivenessBehaviour3) {
|
|
82934
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
82935
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
82936
|
+
})(ResponsivenessBehaviour2 || (ResponsivenessBehaviour2 = {}));
|
|
82642
82937
|
var CalendarType2;
|
|
82643
82938
|
(function(CalendarType3) {
|
|
82644
82939
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -82739,6 +83034,8 @@ var PlanFormDefaultSection2;
|
|
|
82739
83034
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
82740
83035
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
82741
83036
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
83037
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
83038
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
82742
83039
|
})(PlanFormDefaultSection2 || (PlanFormDefaultSection2 = {}));
|
|
82743
83040
|
var PlanPeriodUnit2;
|
|
82744
83041
|
(function(PlanPeriodUnit3) {
|
|
@@ -83262,6 +83559,11 @@ var PanelContentType2;
|
|
|
83262
83559
|
PanelContentType3["url"] = "url";
|
|
83263
83560
|
PanelContentType3["code"] = "code";
|
|
83264
83561
|
})(PanelContentType2 || (PanelContentType2 = {}));
|
|
83562
|
+
var PanelMode2;
|
|
83563
|
+
(function(PanelMode3) {
|
|
83564
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
83565
|
+
PanelMode3["overlay"] = "overlay";
|
|
83566
|
+
})(PanelMode2 || (PanelMode2 = {}));
|
|
83265
83567
|
var StorageType2;
|
|
83266
83568
|
(function(StorageType3) {
|
|
83267
83569
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -83310,6 +83612,150 @@ var Scope4;
|
|
|
83310
83612
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
83311
83613
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
83312
83614
|
})(Scope4 || (Scope4 = {}));
|
|
83615
|
+
var DataType2;
|
|
83616
|
+
(function(DataType3) {
|
|
83617
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
83618
|
+
DataType3["text"] = "text";
|
|
83619
|
+
DataType3["textEnum"] = "textEnum";
|
|
83620
|
+
DataType3["number"] = "number";
|
|
83621
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
83622
|
+
DataType3["a11y"] = "a11y";
|
|
83623
|
+
DataType3["link"] = "link";
|
|
83624
|
+
DataType3["image"] = "image";
|
|
83625
|
+
DataType3["video"] = "video";
|
|
83626
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
83627
|
+
DataType3["audio"] = "audio";
|
|
83628
|
+
DataType3["schema"] = "schema";
|
|
83629
|
+
DataType3["localDate"] = "localDate";
|
|
83630
|
+
DataType3["localTime"] = "localTime";
|
|
83631
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
83632
|
+
DataType3["webUrl"] = "webUrl";
|
|
83633
|
+
DataType3["email"] = "email";
|
|
83634
|
+
DataType3["phone"] = "phone";
|
|
83635
|
+
DataType3["hostname"] = "hostname";
|
|
83636
|
+
DataType3["regex"] = "regex";
|
|
83637
|
+
DataType3["guid"] = "guid";
|
|
83638
|
+
DataType3["richText"] = "richText";
|
|
83639
|
+
DataType3["container"] = "container";
|
|
83640
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
83641
|
+
DataType3["direction"] = "direction";
|
|
83642
|
+
DataType3["menuItems"] = "menuItems";
|
|
83643
|
+
DataType3["data"] = "data";
|
|
83644
|
+
})(DataType2 || (DataType2 = {}));
|
|
83645
|
+
var A11yAttributes2;
|
|
83646
|
+
(function(A11yAttributes3) {
|
|
83647
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
83648
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
83649
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
83650
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
83651
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
83652
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
83653
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
83654
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
83655
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
83656
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
83657
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
83658
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
83659
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
83660
|
+
A11yAttributes3["role"] = "role";
|
|
83661
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
83662
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
83663
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
83664
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
83665
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
83666
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
83667
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
83668
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
83669
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
83670
|
+
A11yAttributes3["tag"] = "tag";
|
|
83671
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
83672
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
83673
|
+
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
83674
|
+
var LinkType2;
|
|
83675
|
+
(function(LinkType3) {
|
|
83676
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
83677
|
+
LinkType3["externalLink"] = "externalLink";
|
|
83678
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
83679
|
+
LinkType3["emailLink"] = "emailLink";
|
|
83680
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
83681
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
83682
|
+
LinkType3["pageLink"] = "pageLink";
|
|
83683
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
83684
|
+
LinkType3["documentLink"] = "documentLink";
|
|
83685
|
+
LinkType3["popupLink"] = "popupLink";
|
|
83686
|
+
LinkType3["addressLink"] = "addressLink";
|
|
83687
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
83688
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
83689
|
+
})(LinkType2 || (LinkType2 = {}));
|
|
83690
|
+
var ContainerType2;
|
|
83691
|
+
(function(ContainerType3) {
|
|
83692
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
83693
|
+
ContainerType3["simple"] = "simple";
|
|
83694
|
+
ContainerType3["slot"] = "slot";
|
|
83695
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
83696
|
+
ContainerType3["template"] = "template";
|
|
83697
|
+
})(ContainerType2 || (ContainerType2 = {}));
|
|
83698
|
+
var ResizeDirection2;
|
|
83699
|
+
(function(ResizeDirection3) {
|
|
83700
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
83701
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
83702
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
83703
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
83704
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
83705
|
+
ResizeDirection3["none"] = "none";
|
|
83706
|
+
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
83707
|
+
var RichTextAbilities2;
|
|
83708
|
+
(function(RichTextAbilities3) {
|
|
83709
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
83710
|
+
RichTextAbilities3["font"] = "font";
|
|
83711
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
83712
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
83713
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
83714
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
83715
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
83716
|
+
RichTextAbilities3["color"] = "color";
|
|
83717
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
83718
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
83719
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
83720
|
+
RichTextAbilities3["direction"] = "direction";
|
|
83721
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
83722
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
83723
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
83724
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
83725
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
83726
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
83727
|
+
var ImageCategoryTypes2;
|
|
83728
|
+
(function(ImageCategoryTypes3) {
|
|
83729
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
83730
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
83731
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
83732
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
83733
|
+
var VideoCategoryTypes2;
|
|
83734
|
+
(function(VideoCategoryTypes3) {
|
|
83735
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
83736
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
83737
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
83738
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
83739
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
83740
|
+
var VectorArtCategoryTypes2;
|
|
83741
|
+
(function(VectorArtCategoryTypes3) {
|
|
83742
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
83743
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
83744
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
83745
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
83746
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
83747
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
83748
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
83749
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
83750
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
83751
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
83752
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
83753
|
+
var ElementType2;
|
|
83754
|
+
(function(ElementType3) {
|
|
83755
|
+
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
83756
|
+
ElementType3["inlineElement"] = "inlineElement";
|
|
83757
|
+
ElementType3["refElement"] = "refElement";
|
|
83758
|
+
})(ElementType2 || (ElementType2 = {}));
|
|
83313
83759
|
var CssPropertyType2;
|
|
83314
83760
|
(function(CssPropertyType3) {
|
|
83315
83761
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -83599,22 +84045,6 @@ var BackgroundModeEnum2;
|
|
|
83599
84045
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
83600
84046
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
83601
84047
|
})(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
84048
|
var CssDataTypeEnumCssDataType2;
|
|
83619
84049
|
(function(CssDataTypeEnumCssDataType3) {
|
|
83620
84050
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -83629,131 +84059,6 @@ var CssDataTypeEnumCssDataType2;
|
|
|
83629
84059
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
83630
84060
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
83631
84061
|
})(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
84062
|
var ActionType2;
|
|
83758
84063
|
(function(ActionType3) {
|
|
83759
84064
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -83879,6 +84184,9 @@ var GroupType2;
|
|
|
83879
84184
|
GroupType3["borderRadius"] = "borderRadius";
|
|
83880
84185
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
83881
84186
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
84187
|
+
GroupType3["borderColor"] = "borderColor";
|
|
84188
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
84189
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
83882
84190
|
GroupType3["font"] = "font";
|
|
83883
84191
|
GroupType3["textDecoration"] = "textDecoration";
|
|
83884
84192
|
GroupType3["gap"] = "gap";
|
|
@@ -84100,6 +84408,8 @@ var TimeConstraintType2;
|
|
|
84100
84408
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
84101
84409
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
84102
84410
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
84411
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
84412
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
84103
84413
|
})(TimeConstraintType2 || (TimeConstraintType2 = {}));
|
|
84104
84414
|
var ValueConstraintType2;
|
|
84105
84415
|
(function(ValueConstraintType3) {
|
|
@@ -84230,6 +84540,7 @@ var CreatedByType;
|
|
|
84230
84540
|
(function(CreatedByType2) {
|
|
84231
84541
|
CreatedByType2["USER"] = "USER";
|
|
84232
84542
|
CreatedByType2["APP"] = "APP";
|
|
84543
|
+
CreatedByType2["CODE_GEN"] = "CODE_GEN";
|
|
84233
84544
|
})(CreatedByType || (CreatedByType = {}));
|
|
84234
84545
|
var ShowConsentBehaviour;
|
|
84235
84546
|
(function(ShowConsentBehaviour2) {
|