@wix/create-app 0.0.113 → 0.0.115
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 +288 -128
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -57632,10 +57632,13 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
57632
57632
|
AppNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
57633
57633
|
CannotReleaseMinorInNoninteractive: {},
|
|
57634
57634
|
SiteComponentConfigNotFound: (0, import_variant11.fields)(),
|
|
57635
|
+
SiteComponentPanelConfigNotFound: (0, import_variant11.fields)(),
|
|
57636
|
+
SiteComponentPanelDoNotExists: (0, import_variant11.fields)(),
|
|
57635
57637
|
FailedToImportCliApp: {},
|
|
57636
57638
|
FailedToCleanDistFolder: {},
|
|
57637
57639
|
FailedToIdentifyProgramFlow: (0, import_variant11.fields)(),
|
|
57638
|
-
BuildOutputMissing: (0, import_variant11.fields)()
|
|
57640
|
+
BuildOutputMissing: (0, import_variant11.fields)(),
|
|
57641
|
+
FailedToCreateMonitoringVitePlugin: (0, import_variant11.fields)()
|
|
57639
57642
|
});
|
|
57640
57643
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
57641
57644
|
...CliSystemErrorCode,
|
|
@@ -58480,6 +58483,12 @@ function resolveWixIdentityOauth2V1Oauth2NgUrl(opts) {
|
|
|
58480
58483
|
srcPath: "/oauth2",
|
|
58481
58484
|
destPath: "/v1/oauth"
|
|
58482
58485
|
}
|
|
58486
|
+
],
|
|
58487
|
+
"api._api_base_domain_": [
|
|
58488
|
+
{
|
|
58489
|
+
srcPath: "/oauth2-ng",
|
|
58490
|
+
destPath: ""
|
|
58491
|
+
}
|
|
58483
58492
|
]
|
|
58484
58493
|
};
|
|
58485
58494
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -67323,7 +67332,8 @@ function getErrorComponent(code, cause) {
|
|
|
67323
67332
|
topology: () => "topology",
|
|
67324
67333
|
"site-plugin": () => "site plugin",
|
|
67325
67334
|
monitoring: () => "monitoring",
|
|
67326
|
-
"site-component": () => "site component"
|
|
67335
|
+
"site-component": () => "site component",
|
|
67336
|
+
"site-component-panel": () => "site component panel"
|
|
67327
67337
|
});
|
|
67328
67338
|
return /* @__PURE__ */ import_react78.default.createElement(Box_default, { flexDirection: "column" }, /* @__PURE__ */ import_react78.default.createElement(Text2, null, /* @__PURE__ */ import_react78.default.createElement(Text2, { bold: true }, "Duplicate ID: "), issue.id), /* @__PURE__ */ import_react78.default.createElement(Text2, { bold: true }, "Extensions:"), issue.components.map(({ name, path: path8, type }) => /* @__PURE__ */ import_react78.default.createElement(Text2, { key: path8 }, "[", typeToName(type), "] ", name, " (", path8, ")")), /* @__PURE__ */ import_react78.default.createElement(Text2, null, /* @__PURE__ */ import_react78.default.createElement(Text2, { bold: true }, "Possible GUID: "), issue.suggestedId));
|
|
67329
67339
|
};
|
|
@@ -68101,6 +68111,22 @@ ${errorMessage2}`
|
|
|
68101
68111
|
}
|
|
68102
68112
|
);
|
|
68103
68113
|
},
|
|
68114
|
+
SiteComponentPanelConfigNotFound: ({ configPath }) => {
|
|
68115
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
68116
|
+
ErrorMessage,
|
|
68117
|
+
{
|
|
68118
|
+
message: `Site component panel config not found at ${configPath}`
|
|
68119
|
+
}
|
|
68120
|
+
);
|
|
68121
|
+
},
|
|
68122
|
+
SiteComponentPanelDoNotExists: ({ panelName }) => {
|
|
68123
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
68124
|
+
ErrorMessage,
|
|
68125
|
+
{
|
|
68126
|
+
message: `Site component panel with name ${panelName} do not exist`
|
|
68127
|
+
}
|
|
68128
|
+
);
|
|
68129
|
+
},
|
|
68104
68130
|
FailedToImportCliApp: () => {
|
|
68105
68131
|
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { cause, message: "Failed to load `@wix/cli-app`." });
|
|
68106
68132
|
},
|
|
@@ -68144,6 +68170,16 @@ ${errorMessage2}`
|
|
|
68144
68170
|
hint: "Build the project before proceeding."
|
|
68145
68171
|
}
|
|
68146
68172
|
);
|
|
68173
|
+
},
|
|
68174
|
+
FailedToCreateMonitoringVitePlugin: ({ configPath }) => {
|
|
68175
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
68176
|
+
ErrorMessage,
|
|
68177
|
+
{
|
|
68178
|
+
cause,
|
|
68179
|
+
message: "Failed to setup monitoring vite plugin.",
|
|
68180
|
+
hint: `Make sure you have the correct \`monitoring\` configuration in \`${configPath}\`.`
|
|
68181
|
+
}
|
|
68182
|
+
);
|
|
68147
68183
|
}
|
|
68148
68184
|
});
|
|
68149
68185
|
}
|
|
@@ -71637,7 +71673,7 @@ function reportCommandStartEvent({
|
|
|
71637
71673
|
var package_default = {
|
|
71638
71674
|
name: "@wix/create-app",
|
|
71639
71675
|
description: "Create Wix apps",
|
|
71640
|
-
version: "0.0.
|
|
71676
|
+
version: "0.0.115",
|
|
71641
71677
|
author: "Ihor Machuzhak",
|
|
71642
71678
|
bin: "bin/index.cjs",
|
|
71643
71679
|
devDependencies: {
|
|
@@ -75135,6 +75171,11 @@ var _componentData = {
|
|
|
75135
75171
|
};
|
|
75136
75172
|
var _componentsMultilineAddress = { description: "_richContent" };
|
|
75137
75173
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
75174
|
+
var _cssNumber = {
|
|
75175
|
+
minimum: "google.protobuf.FloatValue",
|
|
75176
|
+
maximum: "google.protobuf.FloatValue",
|
|
75177
|
+
multipleOf: "google.protobuf.FloatValue"
|
|
75178
|
+
};
|
|
75138
75179
|
var _dataItem = { number: "__Number", arrayItems: "_arrayItems" };
|
|
75139
75180
|
var _dataItems = { items: "Map#_dataItem" };
|
|
75140
75181
|
var _dateInput = { description: "_richContent" };
|
|
@@ -75154,6 +75195,7 @@ var _displayField = { richContentOptions: "_richContentOptions" };
|
|
|
75154
75195
|
var _donationInput = { description: "_richContent" };
|
|
75155
75196
|
var _dropdown = { description: "_richContent" };
|
|
75156
75197
|
var _editorElement = {
|
|
75198
|
+
style: "Map#_styleItem",
|
|
75157
75199
|
data: "Map#_dataItem",
|
|
75158
75200
|
elements: "Map#_elementItem",
|
|
75159
75201
|
presets: "Map#_presetItem",
|
|
@@ -75197,6 +75239,7 @@ var _getAppResponse = {
|
|
|
75197
75239
|
var _image = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
75198
75240
|
var _imageData = { image: "_media" };
|
|
75199
75241
|
var _inlineElement = {
|
|
75242
|
+
style: "Map#_styleItem",
|
|
75200
75243
|
data: "Map#_dataItem",
|
|
75201
75244
|
elements: "Map#_elementItem",
|
|
75202
75245
|
presets: "Map#_presetItem",
|
|
@@ -75316,6 +75359,7 @@ var _studioWidgetComponentData = {
|
|
|
75316
75359
|
widgetDisplay: "_widgetDisplay",
|
|
75317
75360
|
editorPresence: "_editorPresence"
|
|
75318
75361
|
};
|
|
75362
|
+
var _styleItem = { number: "_cssNumber" };
|
|
75319
75363
|
var _submitSettings = { thankYouMessageOptions: "_thankYouMessageOptions" };
|
|
75320
75364
|
var _textInput = { description: "_richContent" };
|
|
75321
75365
|
var _thankYouMessageOptions = { richContent: "_richContent" };
|
|
@@ -75482,6 +75526,7 @@ function getAppByVersion(payload5) {
|
|
|
75482
75526
|
_componentData,
|
|
75483
75527
|
_componentsMultilineAddress,
|
|
75484
75528
|
_conditionNode,
|
|
75529
|
+
_cssNumber,
|
|
75485
75530
|
_dataItem,
|
|
75486
75531
|
_dataItems,
|
|
75487
75532
|
_dateInput,
|
|
@@ -75557,6 +75602,7 @@ function getAppByVersion(payload5) {
|
|
|
75557
75602
|
_shippingProviderConfig,
|
|
75558
75603
|
_signature,
|
|
75559
75604
|
_studioWidgetComponentData,
|
|
75605
|
+
_styleItem,
|
|
75560
75606
|
_submitSettings,
|
|
75561
75607
|
_textInput,
|
|
75562
75608
|
_thankYouMessageOptions,
|
|
@@ -76521,8 +76567,6 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
76521
76567
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
76522
76568
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
76523
76569
|
var _background2 = { image: "_media" };
|
|
76524
|
-
var _backOfficeCustomization = { sidebarConfig: "_sidebarConfig" };
|
|
76525
|
-
var _category = { children: "_sidebarChildItem" };
|
|
76526
76570
|
var _checkbox2 = { label: "_richContent" };
|
|
76527
76571
|
var _checkboxGroup2 = { description: "_richContent", options: "_option" };
|
|
76528
76572
|
var _commonImage2 = {
|
|
@@ -76545,10 +76589,14 @@ var _componentData2 = {
|
|
|
76545
76589
|
function: "_function",
|
|
76546
76590
|
papiProvider: "_pluginConfig",
|
|
76547
76591
|
multilingualTranslationSchemaGroup: "_schemaGroup",
|
|
76548
|
-
editorReactComponent: "_editorReactComponent"
|
|
76549
|
-
backOfficeCustomization: "_backOfficeCustomization"
|
|
76592
|
+
editorReactComponent: "_editorReactComponent"
|
|
76550
76593
|
};
|
|
76551
76594
|
var _conditionNode2 = { and: "_andCondition", or: "_orCondition" };
|
|
76595
|
+
var _cssNumber2 = {
|
|
76596
|
+
minimum: "google.protobuf.FloatValue",
|
|
76597
|
+
maximum: "google.protobuf.FloatValue",
|
|
76598
|
+
multipleOf: "google.protobuf.FloatValue"
|
|
76599
|
+
};
|
|
76552
76600
|
var _dataItem2 = { number: "_api_Number", arrayItems: "_apiArrayItems" };
|
|
76553
76601
|
var _dataItems2 = { items: "Map#_dataItem" };
|
|
76554
76602
|
var _dateInput2 = { description: "_richContent" };
|
|
@@ -76569,6 +76617,7 @@ var _displayField2 = { richContentOptions: "_richContentOptions" };
|
|
|
76569
76617
|
var _donationInput2 = { description: "_richContent" };
|
|
76570
76618
|
var _dropdown2 = { description: "_richContent" };
|
|
76571
76619
|
var _editorElement2 = {
|
|
76620
|
+
style: "Map#_styleItem",
|
|
76572
76621
|
data: "Map#_dataItem",
|
|
76573
76622
|
elements: "Map#_elementItem",
|
|
76574
76623
|
presets: "Map#_presetItem",
|
|
@@ -76609,6 +76658,7 @@ var _galleryOptions2 = { item: "_itemStyle" };
|
|
|
76609
76658
|
var _image2 = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
76610
76659
|
var _imageData2 = { image: "_media" };
|
|
76611
76660
|
var _inlineElement2 = {
|
|
76661
|
+
style: "Map#_styleItem",
|
|
76612
76662
|
data: "Map#_dataItem",
|
|
76613
76663
|
elements: "Map#_elementItem",
|
|
76614
76664
|
presets: "Map#_presetItem",
|
|
@@ -76727,14 +76777,12 @@ var _schemaGroup2 = {
|
|
|
76727
76777
|
};
|
|
76728
76778
|
var _shippingLabelCarrierSpiConfig2 = { packageTypes: "_packageType" };
|
|
76729
76779
|
var _shippingProviderConfig2 = { shippingPrice: "DOUBLE" };
|
|
76730
|
-
var _sidebarChildItem = { category: "_category" };
|
|
76731
|
-
var _sidebarConfig = { sidebarItems: "_sidebarRootItem" };
|
|
76732
|
-
var _sidebarRootItem = { category: "_category" };
|
|
76733
76780
|
var _signature2 = { description: "_richContent" };
|
|
76734
76781
|
var _studioWidgetComponentData2 = {
|
|
76735
76782
|
widgetDisplay: "_widgetDisplay",
|
|
76736
76783
|
editorPresence: "_editorPresence"
|
|
76737
76784
|
};
|
|
76785
|
+
var _styleItem2 = { number: "_cssNumber" };
|
|
76738
76786
|
var _submitSettings2 = { thankYouMessageOptions: "_thankYouMessageOptions" };
|
|
76739
76787
|
var _textInput2 = { description: "_richContent" };
|
|
76740
76788
|
var _thankYouMessageOptions2 = { richContent: "_richContent" };
|
|
@@ -76841,15 +76889,14 @@ function managedApps(payload5) {
|
|
|
76841
76889
|
_arrayType: _arrayType2,
|
|
76842
76890
|
_audioData: _audioData2,
|
|
76843
76891
|
_authenticatorConfig: _authenticatorConfig2,
|
|
76844
|
-
_backOfficeCustomization,
|
|
76845
76892
|
_background: _background2,
|
|
76846
|
-
_category,
|
|
76847
76893
|
_checkbox: _checkbox2,
|
|
76848
76894
|
_checkboxGroup: _checkboxGroup2,
|
|
76849
76895
|
_commonImage: _commonImage2,
|
|
76850
76896
|
_component: _component2,
|
|
76851
76897
|
_componentData: _componentData2,
|
|
76852
76898
|
_conditionNode: _conditionNode2,
|
|
76899
|
+
_cssNumber: _cssNumber2,
|
|
76853
76900
|
_dataItem: _dataItem2,
|
|
76854
76901
|
_dataItems: _dataItems2,
|
|
76855
76902
|
_dateInput: _dateInput2,
|
|
@@ -76928,11 +76975,9 @@ function managedApps(payload5) {
|
|
|
76928
76975
|
_schemaGroup: _schemaGroup2,
|
|
76929
76976
|
_shippingLabelCarrierSpiConfig: _shippingLabelCarrierSpiConfig2,
|
|
76930
76977
|
_shippingProviderConfig: _shippingProviderConfig2,
|
|
76931
|
-
_sidebarChildItem,
|
|
76932
|
-
_sidebarConfig,
|
|
76933
|
-
_sidebarRootItem,
|
|
76934
76978
|
_signature: _signature2,
|
|
76935
76979
|
_studioWidgetComponentData: _studioWidgetComponentData2,
|
|
76980
|
+
_styleItem: _styleItem2,
|
|
76936
76981
|
_submitSettings: _submitSettings2,
|
|
76937
76982
|
_textInput: _textInput2,
|
|
76938
76983
|
_thankYouMessageOptions: _thankYouMessageOptions2,
|
|
@@ -77195,6 +77240,14 @@ var ComponentType;
|
|
|
77195
77240
|
ComponentType3["EVENTS_EVENT_BADGES"] = "EVENTS_EVENT_BADGES";
|
|
77196
77241
|
ComponentType3["BILLING_OPERATION"] = "BILLING_OPERATION";
|
|
77197
77242
|
ComponentType3["BACK_OFFICE_CUSTOMIZATION"] = "BACK_OFFICE_CUSTOMIZATION";
|
|
77243
|
+
ComponentType3["COMPONENT_ENRICHER_PROVIDER"] = "COMPONENT_ENRICHER_PROVIDER";
|
|
77244
|
+
ComponentType3["BACK_OFFICE_RESTRICTED_CUSTOMIZATION"] = "BACK_OFFICE_RESTRICTED_CUSTOMIZATION";
|
|
77245
|
+
ComponentType3["EDITOR_APP_PREVIEWS_POC"] = "EDITOR_APP_PREVIEWS_POC";
|
|
77246
|
+
ComponentType3["LEGENDS_PERSONA_CONFIGURATION"] = "LEGENDS_PERSONA_CONFIGURATION";
|
|
77247
|
+
ComponentType3["WIX_HOSTING_APP_DEPLOYMENT_PROVIDER"] = "WIX_HOSTING_APP_DEPLOYMENT_PROVIDER";
|
|
77248
|
+
ComponentType3["BACKEND_WORKER"] = "BACKEND_WORKER";
|
|
77249
|
+
ComponentType3["EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER"] = "EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER";
|
|
77250
|
+
ComponentType3["WIX_HOSTING_APP_ENVIRONMENT_PROVIDER"] = "WIX_HOSTING_APP_ENVIRONMENT_PROVIDER";
|
|
77198
77251
|
})(ComponentType || (ComponentType = {}));
|
|
77199
77252
|
var WidgetVertical;
|
|
77200
77253
|
(function(WidgetVertical3) {
|
|
@@ -77837,6 +77890,7 @@ var DecorationType;
|
|
|
77837
77890
|
DecorationType3["COLOR"] = "COLOR";
|
|
77838
77891
|
DecorationType3["FONT_SIZE"] = "FONT_SIZE";
|
|
77839
77892
|
DecorationType3["EXTERNAL"] = "EXTERNAL";
|
|
77893
|
+
DecorationType3["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
77840
77894
|
})(DecorationType || (DecorationType = {}));
|
|
77841
77895
|
var FontType;
|
|
77842
77896
|
(function(FontType3) {
|
|
@@ -78353,6 +78407,19 @@ var EditableProperties;
|
|
|
78353
78407
|
EditableProperties3["INPUT_VALUE_LIMITS"] = "INPUT_VALUE_LIMITS";
|
|
78354
78408
|
EditableProperties3["DEFAULT_VALUE"] = "DEFAULT_VALUE";
|
|
78355
78409
|
})(EditableProperties || (EditableProperties = {}));
|
|
78410
|
+
var RequiredIndicator;
|
|
78411
|
+
(function(RequiredIndicator3) {
|
|
78412
|
+
RequiredIndicator3["UNKNOWN_INDICATOR"] = "UNKNOWN_INDICATOR";
|
|
78413
|
+
RequiredIndicator3["ASTERISK"] = "ASTERISK";
|
|
78414
|
+
RequiredIndicator3["TEXT"] = "TEXT";
|
|
78415
|
+
RequiredIndicator3["NONE"] = "NONE";
|
|
78416
|
+
})(RequiredIndicator || (RequiredIndicator = {}));
|
|
78417
|
+
var RequiredIndicatorPlacement;
|
|
78418
|
+
(function(RequiredIndicatorPlacement3) {
|
|
78419
|
+
RequiredIndicatorPlacement3["UNKNOWN_PLACEMENT"] = "UNKNOWN_PLACEMENT";
|
|
78420
|
+
RequiredIndicatorPlacement3["AFTER_FIELD_TITLE"] = "AFTER_FIELD_TITLE";
|
|
78421
|
+
RequiredIndicatorPlacement3["BEFORE_FIELD_TITLE"] = "BEFORE_FIELD_TITLE";
|
|
78422
|
+
})(RequiredIndicatorPlacement || (RequiredIndicatorPlacement = {}));
|
|
78356
78423
|
var WixCodePublishTaskName;
|
|
78357
78424
|
(function(WixCodePublishTaskName3) {
|
|
78358
78425
|
WixCodePublishTaskName3["UNKNOWN"] = "UNKNOWN";
|
|
@@ -78399,6 +78466,7 @@ var MonitoringType;
|
|
|
78399
78466
|
(function(MonitoringType3) {
|
|
78400
78467
|
MonitoringType3["UNKNOWN_PROVIDER"] = "UNKNOWN_PROVIDER";
|
|
78401
78468
|
MonitoringType3["SENTRY"] = "SENTRY";
|
|
78469
|
+
MonitoringType3["PANORAMA"] = "PANORAMA";
|
|
78402
78470
|
})(MonitoringType || (MonitoringType = {}));
|
|
78403
78471
|
var Escalation;
|
|
78404
78472
|
(function(Escalation3) {
|
|
@@ -78487,6 +78555,7 @@ var CssPropertyType;
|
|
|
78487
78555
|
CssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
78488
78556
|
CssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
78489
78557
|
CssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
78558
|
+
CssPropertyType3["fill"] = "fill";
|
|
78490
78559
|
CssPropertyType3["margin"] = "margin";
|
|
78491
78560
|
CssPropertyType3["marginTop"] = "marginTop";
|
|
78492
78561
|
CssPropertyType3["marginRight"] = "marginRight";
|
|
@@ -78548,9 +78617,11 @@ var CssPropertyType;
|
|
|
78548
78617
|
CssPropertyType3["lineHeight"] = "lineHeight";
|
|
78549
78618
|
CssPropertyType3["color"] = "color";
|
|
78550
78619
|
CssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
78620
|
+
CssPropertyType3["writingMode"] = "writingMode";
|
|
78551
78621
|
CssPropertyType3["textAlign"] = "textAlign";
|
|
78552
78622
|
CssPropertyType3["textTransform"] = "textTransform";
|
|
78553
78623
|
CssPropertyType3["textShadow"] = "textShadow";
|
|
78624
|
+
CssPropertyType3["textOverflow"] = "textOverflow";
|
|
78554
78625
|
CssPropertyType3["textDecoration"] = "textDecoration";
|
|
78555
78626
|
CssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
78556
78627
|
CssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
@@ -78559,6 +78630,7 @@ var CssPropertyType;
|
|
|
78559
78630
|
CssPropertyType3["boxShadow"] = "boxShadow";
|
|
78560
78631
|
CssPropertyType3["opacity"] = "opacity";
|
|
78561
78632
|
CssPropertyType3["overflow"] = "overflow";
|
|
78633
|
+
CssPropertyType3["display"] = "display";
|
|
78562
78634
|
CssPropertyType3["alignSelf"] = "alignSelf";
|
|
78563
78635
|
CssPropertyType3["justifyContent"] = "justifyContent";
|
|
78564
78636
|
CssPropertyType3["alignItems"] = "alignItems";
|
|
@@ -78566,6 +78638,14 @@ var CssPropertyType;
|
|
|
78566
78638
|
CssPropertyType3["gap"] = "gap";
|
|
78567
78639
|
CssPropertyType3["height"] = "height";
|
|
78568
78640
|
CssPropertyType3["width"] = "width";
|
|
78641
|
+
CssPropertyType3["columnGap"] = "columnGap";
|
|
78642
|
+
CssPropertyType3["rowGap"] = "rowGap";
|
|
78643
|
+
CssPropertyType3["filter"] = "filter";
|
|
78644
|
+
CssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
78645
|
+
CssPropertyType3["objectFit"] = "objectFit";
|
|
78646
|
+
CssPropertyType3["objectPosition"] = "objectPosition";
|
|
78647
|
+
CssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
78648
|
+
CssPropertyType3["isolation"] = "isolation";
|
|
78569
78649
|
})(CssPropertyType || (CssPropertyType = {}));
|
|
78570
78650
|
var CssDataType;
|
|
78571
78651
|
(function(CssDataType3) {
|
|
@@ -78577,7 +78657,50 @@ var CssDataType;
|
|
|
78577
78657
|
CssDataType3["percentage"] = "percentage";
|
|
78578
78658
|
CssDataType3["lengthPercentage"] = "lengthPercentage";
|
|
78579
78659
|
CssDataType3["blendMode"] = "blendMode";
|
|
78660
|
+
CssDataType3["customEnum"] = "customEnum";
|
|
78661
|
+
CssDataType3["string"] = "string";
|
|
78580
78662
|
})(CssDataType || (CssDataType = {}));
|
|
78663
|
+
var FilterFunction;
|
|
78664
|
+
(function(FilterFunction3) {
|
|
78665
|
+
FilterFunction3["UNKNOWN_FilterFunctions"] = "UNKNOWN_FilterFunctions";
|
|
78666
|
+
FilterFunction3["blur"] = "blur";
|
|
78667
|
+
FilterFunction3["brightness"] = "brightness";
|
|
78668
|
+
FilterFunction3["contrast"] = "contrast";
|
|
78669
|
+
FilterFunction3["drop_shadow"] = "drop_shadow";
|
|
78670
|
+
FilterFunction3["grayscale"] = "grayscale";
|
|
78671
|
+
FilterFunction3["hue_rotate"] = "hue_rotate";
|
|
78672
|
+
FilterFunction3["invert"] = "invert";
|
|
78673
|
+
FilterFunction3["opacity"] = "opacity";
|
|
78674
|
+
FilterFunction3["sepia"] = "sepia";
|
|
78675
|
+
FilterFunction3["saturate"] = "saturate";
|
|
78676
|
+
})(FilterFunction || (FilterFunction = {}));
|
|
78677
|
+
var DisplayValueEnumDisplayValue;
|
|
78678
|
+
(function(DisplayValueEnumDisplayValue3) {
|
|
78679
|
+
DisplayValueEnumDisplayValue3["UNKNOWN_DisplayValue"] = "UNKNOWN_DisplayValue";
|
|
78680
|
+
DisplayValueEnumDisplayValue3["none"] = "none";
|
|
78681
|
+
DisplayValueEnumDisplayValue3["block"] = "block";
|
|
78682
|
+
DisplayValueEnumDisplayValue3["inline"] = "inline";
|
|
78683
|
+
DisplayValueEnumDisplayValue3["flow"] = "flow";
|
|
78684
|
+
DisplayValueEnumDisplayValue3["flowRoot"] = "flowRoot";
|
|
78685
|
+
DisplayValueEnumDisplayValue3["table"] = "table";
|
|
78686
|
+
DisplayValueEnumDisplayValue3["flex"] = "flex";
|
|
78687
|
+
DisplayValueEnumDisplayValue3["grid"] = "grid";
|
|
78688
|
+
DisplayValueEnumDisplayValue3["list_item"] = "list_item";
|
|
78689
|
+
DisplayValueEnumDisplayValue3["contents"] = "contents";
|
|
78690
|
+
DisplayValueEnumDisplayValue3["inline_block"] = "inline_block";
|
|
78691
|
+
DisplayValueEnumDisplayValue3["inline_table"] = "inline_table";
|
|
78692
|
+
DisplayValueEnumDisplayValue3["inline_flex"] = "inline_flex";
|
|
78693
|
+
DisplayValueEnumDisplayValue3["inline_grid"] = "inline_grid";
|
|
78694
|
+
})(DisplayValueEnumDisplayValue || (DisplayValueEnumDisplayValue = {}));
|
|
78695
|
+
var WritingModeValue;
|
|
78696
|
+
(function(WritingModeValue3) {
|
|
78697
|
+
WritingModeValue3["UNKNOWN_WritingModeValue"] = "UNKNOWN_WritingModeValue";
|
|
78698
|
+
WritingModeValue3["horizontalTb"] = "horizontalTb";
|
|
78699
|
+
WritingModeValue3["verticalRl"] = "verticalRl";
|
|
78700
|
+
WritingModeValue3["verticalLr"] = "verticalLr";
|
|
78701
|
+
WritingModeValue3["sidewaysRl"] = "sidewaysRl";
|
|
78702
|
+
WritingModeValue3["sidewaysLr"] = "sidewaysLr";
|
|
78703
|
+
})(WritingModeValue || (WritingModeValue = {}));
|
|
78581
78704
|
var DataType;
|
|
78582
78705
|
(function(DataType3) {
|
|
78583
78706
|
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
@@ -78671,6 +78794,7 @@ var ActionType;
|
|
|
78671
78794
|
ActionType3["event"] = "event";
|
|
78672
78795
|
ActionType3["panel"] = "panel";
|
|
78673
78796
|
ActionType3["forward"] = "forward";
|
|
78797
|
+
ActionType3["style"] = "style";
|
|
78674
78798
|
})(ActionType || (ActionType = {}));
|
|
78675
78799
|
var PanelType;
|
|
78676
78800
|
(function(PanelType3) {
|
|
@@ -78688,23 +78812,13 @@ var ActionName;
|
|
|
78688
78812
|
ActionName3["dashboard"] = "dashboard";
|
|
78689
78813
|
ActionName3["custom"] = "custom";
|
|
78690
78814
|
})(ActionName || (ActionName = {}));
|
|
78691
|
-
var
|
|
78692
|
-
(function(
|
|
78693
|
-
|
|
78694
|
-
|
|
78695
|
-
|
|
78696
|
-
|
|
78697
|
-
|
|
78698
|
-
ResizeDirection3["none"] = "none";
|
|
78699
|
-
})(ResizeDirection || (ResizeDirection = {}));
|
|
78700
|
-
var ContentResizeDirection;
|
|
78701
|
-
(function(ContentResizeDirection3) {
|
|
78702
|
-
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
78703
|
-
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
78704
|
-
ContentResizeDirection3["vertical"] = "vertical";
|
|
78705
|
-
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
78706
|
-
ContentResizeDirection3["none"] = "none";
|
|
78707
|
-
})(ContentResizeDirection || (ContentResizeDirection = {}));
|
|
78815
|
+
var SizingType;
|
|
78816
|
+
(function(SizingType3) {
|
|
78817
|
+
SizingType3["UNKNOWN_SizingType"] = "UNKNOWN_SizingType";
|
|
78818
|
+
SizingType3["content"] = "content";
|
|
78819
|
+
SizingType3["stretched"] = "stretched";
|
|
78820
|
+
SizingType3["pixels"] = "pixels";
|
|
78821
|
+
})(SizingType || (SizingType = {}));
|
|
78708
78822
|
var Archetype;
|
|
78709
78823
|
(function(Archetype3) {
|
|
78710
78824
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -78746,18 +78860,35 @@ var Archetype;
|
|
|
78746
78860
|
Archetype3["VectorArt"] = "VectorArt";
|
|
78747
78861
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
78748
78862
|
})(Archetype || (Archetype = {}));
|
|
78863
|
+
var ResizeDirection;
|
|
78864
|
+
(function(ResizeDirection3) {
|
|
78865
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
78866
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
78867
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
78868
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
78869
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
78870
|
+
ResizeDirection3["none"] = "none";
|
|
78871
|
+
})(ResizeDirection || (ResizeDirection = {}));
|
|
78872
|
+
var ContentResizeDirection;
|
|
78873
|
+
(function(ContentResizeDirection3) {
|
|
78874
|
+
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
78875
|
+
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
78876
|
+
ContentResizeDirection3["vertical"] = "vertical";
|
|
78877
|
+
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
78878
|
+
ContentResizeDirection3["none"] = "none";
|
|
78879
|
+
})(ContentResizeDirection || (ContentResizeDirection = {}));
|
|
78749
78880
|
var RestrictionLevel;
|
|
78750
78881
|
(function(RestrictionLevel3) {
|
|
78751
78882
|
RestrictionLevel3["UNKNOWN_RESTRICTION_TYPE"] = "UNKNOWN_RESTRICTION_TYPE";
|
|
78752
78883
|
RestrictionLevel3["WARNING"] = "WARNING";
|
|
78753
78884
|
RestrictionLevel3["LOCKED"] = "LOCKED";
|
|
78754
78885
|
})(RestrictionLevel || (RestrictionLevel = {}));
|
|
78755
|
-
var
|
|
78756
|
-
(function(
|
|
78757
|
-
|
|
78758
|
-
|
|
78759
|
-
|
|
78760
|
-
})(
|
|
78886
|
+
var ElementDisplayOption;
|
|
78887
|
+
(function(ElementDisplayOption3) {
|
|
78888
|
+
ElementDisplayOption3["UNKNOWN_OPTION"] = "UNKNOWN_OPTION";
|
|
78889
|
+
ElementDisplayOption3["REMOVE"] = "REMOVE";
|
|
78890
|
+
ElementDisplayOption3["CUSTOMIZED"] = "CUSTOMIZED";
|
|
78891
|
+
})(ElementDisplayOption || (ElementDisplayOption = {}));
|
|
78761
78892
|
var SidebarDataType;
|
|
78762
78893
|
(function(SidebarDataType3) {
|
|
78763
78894
|
SidebarDataType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
@@ -78765,6 +78896,13 @@ var SidebarDataType;
|
|
|
78765
78896
|
SidebarDataType3["PAGE"] = "PAGE";
|
|
78766
78897
|
SidebarDataType3["SEPARATOR"] = "SEPARATOR";
|
|
78767
78898
|
})(SidebarDataType || (SidebarDataType = {}));
|
|
78899
|
+
var SidebarEntityType;
|
|
78900
|
+
(function(SidebarEntityType3) {
|
|
78901
|
+
SidebarEntityType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
78902
|
+
SidebarEntityType3["CATEGORY"] = "CATEGORY";
|
|
78903
|
+
SidebarEntityType3["PAGE"] = "PAGE";
|
|
78904
|
+
SidebarEntityType3["APP"] = "APP";
|
|
78905
|
+
})(SidebarEntityType || (SidebarEntityType = {}));
|
|
78768
78906
|
var SaleType;
|
|
78769
78907
|
(function(SaleType2) {
|
|
78770
78908
|
SaleType2["UNKNOWN_SALE_TYPE"] = "UNKNOWN_SALE_TYPE";
|
|
@@ -78807,6 +78945,24 @@ function resolveWixDevcenterAppsPermissionsV1AppPermissionsServiceUrl(opts) {
|
|
|
78807
78945
|
srcPath: "/_api/app-permissions-service",
|
|
78808
78946
|
destPath: ""
|
|
78809
78947
|
}
|
|
78948
|
+
],
|
|
78949
|
+
"www.wixapis.com": [
|
|
78950
|
+
{
|
|
78951
|
+
srcPath: "/apps/v1/app-permissions",
|
|
78952
|
+
destPath: ""
|
|
78953
|
+
}
|
|
78954
|
+
],
|
|
78955
|
+
"*.dev.wix-code.com": [
|
|
78956
|
+
{
|
|
78957
|
+
srcPath: "/_api/app-permissions-service",
|
|
78958
|
+
destPath: ""
|
|
78959
|
+
}
|
|
78960
|
+
],
|
|
78961
|
+
_: [
|
|
78962
|
+
{
|
|
78963
|
+
srcPath: "/_api/app-permissions-service",
|
|
78964
|
+
destPath: ""
|
|
78965
|
+
}
|
|
78810
78966
|
]
|
|
78811
78967
|
};
|
|
78812
78968
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -80212,19 +80368,19 @@ var EditableProperties2;
|
|
|
80212
80368
|
EditableProperties3["INPUT_VALUE_LIMITS"] = "INPUT_VALUE_LIMITS";
|
|
80213
80369
|
EditableProperties3["DEFAULT_VALUE"] = "DEFAULT_VALUE";
|
|
80214
80370
|
})(EditableProperties2 || (EditableProperties2 = {}));
|
|
80215
|
-
var
|
|
80216
|
-
(function(
|
|
80217
|
-
|
|
80218
|
-
|
|
80219
|
-
|
|
80220
|
-
|
|
80221
|
-
})(
|
|
80222
|
-
var
|
|
80223
|
-
(function(
|
|
80224
|
-
|
|
80225
|
-
|
|
80226
|
-
|
|
80227
|
-
})(
|
|
80371
|
+
var RequiredIndicator2;
|
|
80372
|
+
(function(RequiredIndicator3) {
|
|
80373
|
+
RequiredIndicator3["UNKNOWN_INDICATOR"] = "UNKNOWN_INDICATOR";
|
|
80374
|
+
RequiredIndicator3["ASTERISK"] = "ASTERISK";
|
|
80375
|
+
RequiredIndicator3["TEXT"] = "TEXT";
|
|
80376
|
+
RequiredIndicator3["NONE"] = "NONE";
|
|
80377
|
+
})(RequiredIndicator2 || (RequiredIndicator2 = {}));
|
|
80378
|
+
var RequiredIndicatorPlacement2;
|
|
80379
|
+
(function(RequiredIndicatorPlacement3) {
|
|
80380
|
+
RequiredIndicatorPlacement3["UNKNOWN_PLACEMENT"] = "UNKNOWN_PLACEMENT";
|
|
80381
|
+
RequiredIndicatorPlacement3["AFTER_FIELD_TITLE"] = "AFTER_FIELD_TITLE";
|
|
80382
|
+
RequiredIndicatorPlacement3["BEFORE_FIELD_TITLE"] = "BEFORE_FIELD_TITLE";
|
|
80383
|
+
})(RequiredIndicatorPlacement2 || (RequiredIndicatorPlacement2 = {}));
|
|
80228
80384
|
var WixCodePublishTaskName2;
|
|
80229
80385
|
(function(WixCodePublishTaskName3) {
|
|
80230
80386
|
WixCodePublishTaskName3["UNKNOWN"] = "UNKNOWN";
|
|
@@ -80422,6 +80578,7 @@ var CssPropertyType2;
|
|
|
80422
80578
|
CssPropertyType3["lineHeight"] = "lineHeight";
|
|
80423
80579
|
CssPropertyType3["color"] = "color";
|
|
80424
80580
|
CssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
80581
|
+
CssPropertyType3["writingMode"] = "writingMode";
|
|
80425
80582
|
CssPropertyType3["textAlign"] = "textAlign";
|
|
80426
80583
|
CssPropertyType3["textTransform"] = "textTransform";
|
|
80427
80584
|
CssPropertyType3["textShadow"] = "textShadow";
|
|
@@ -80434,6 +80591,7 @@ var CssPropertyType2;
|
|
|
80434
80591
|
CssPropertyType3["boxShadow"] = "boxShadow";
|
|
80435
80592
|
CssPropertyType3["opacity"] = "opacity";
|
|
80436
80593
|
CssPropertyType3["overflow"] = "overflow";
|
|
80594
|
+
CssPropertyType3["display"] = "display";
|
|
80437
80595
|
CssPropertyType3["alignSelf"] = "alignSelf";
|
|
80438
80596
|
CssPropertyType3["justifyContent"] = "justifyContent";
|
|
80439
80597
|
CssPropertyType3["alignItems"] = "alignItems";
|
|
@@ -80463,20 +80621,47 @@ var CssDataType2;
|
|
|
80463
80621
|
CssDataType3["customEnum"] = "customEnum";
|
|
80464
80622
|
CssDataType3["string"] = "string";
|
|
80465
80623
|
})(CssDataType2 || (CssDataType2 = {}));
|
|
80466
|
-
var
|
|
80467
|
-
(function(
|
|
80468
|
-
|
|
80469
|
-
|
|
80470
|
-
|
|
80471
|
-
|
|
80472
|
-
|
|
80473
|
-
|
|
80474
|
-
|
|
80475
|
-
|
|
80476
|
-
|
|
80477
|
-
|
|
80478
|
-
|
|
80479
|
-
})(
|
|
80624
|
+
var FilterFunction2;
|
|
80625
|
+
(function(FilterFunction3) {
|
|
80626
|
+
FilterFunction3["UNKNOWN_FilterFunctions"] = "UNKNOWN_FilterFunctions";
|
|
80627
|
+
FilterFunction3["blur"] = "blur";
|
|
80628
|
+
FilterFunction3["brightness"] = "brightness";
|
|
80629
|
+
FilterFunction3["contrast"] = "contrast";
|
|
80630
|
+
FilterFunction3["drop_shadow"] = "drop_shadow";
|
|
80631
|
+
FilterFunction3["grayscale"] = "grayscale";
|
|
80632
|
+
FilterFunction3["hue_rotate"] = "hue_rotate";
|
|
80633
|
+
FilterFunction3["invert"] = "invert";
|
|
80634
|
+
FilterFunction3["opacity"] = "opacity";
|
|
80635
|
+
FilterFunction3["sepia"] = "sepia";
|
|
80636
|
+
FilterFunction3["saturate"] = "saturate";
|
|
80637
|
+
})(FilterFunction2 || (FilterFunction2 = {}));
|
|
80638
|
+
var DisplayValueEnumDisplayValue2;
|
|
80639
|
+
(function(DisplayValueEnumDisplayValue3) {
|
|
80640
|
+
DisplayValueEnumDisplayValue3["UNKNOWN_DisplayValue"] = "UNKNOWN_DisplayValue";
|
|
80641
|
+
DisplayValueEnumDisplayValue3["none"] = "none";
|
|
80642
|
+
DisplayValueEnumDisplayValue3["block"] = "block";
|
|
80643
|
+
DisplayValueEnumDisplayValue3["inline"] = "inline";
|
|
80644
|
+
DisplayValueEnumDisplayValue3["flow"] = "flow";
|
|
80645
|
+
DisplayValueEnumDisplayValue3["flowRoot"] = "flowRoot";
|
|
80646
|
+
DisplayValueEnumDisplayValue3["table"] = "table";
|
|
80647
|
+
DisplayValueEnumDisplayValue3["flex"] = "flex";
|
|
80648
|
+
DisplayValueEnumDisplayValue3["grid"] = "grid";
|
|
80649
|
+
DisplayValueEnumDisplayValue3["list_item"] = "list_item";
|
|
80650
|
+
DisplayValueEnumDisplayValue3["contents"] = "contents";
|
|
80651
|
+
DisplayValueEnumDisplayValue3["inline_block"] = "inline_block";
|
|
80652
|
+
DisplayValueEnumDisplayValue3["inline_table"] = "inline_table";
|
|
80653
|
+
DisplayValueEnumDisplayValue3["inline_flex"] = "inline_flex";
|
|
80654
|
+
DisplayValueEnumDisplayValue3["inline_grid"] = "inline_grid";
|
|
80655
|
+
})(DisplayValueEnumDisplayValue2 || (DisplayValueEnumDisplayValue2 = {}));
|
|
80656
|
+
var WritingModeValue2;
|
|
80657
|
+
(function(WritingModeValue3) {
|
|
80658
|
+
WritingModeValue3["UNKNOWN_WritingModeValue"] = "UNKNOWN_WritingModeValue";
|
|
80659
|
+
WritingModeValue3["horizontalTb"] = "horizontalTb";
|
|
80660
|
+
WritingModeValue3["verticalRl"] = "verticalRl";
|
|
80661
|
+
WritingModeValue3["verticalLr"] = "verticalLr";
|
|
80662
|
+
WritingModeValue3["sidewaysRl"] = "sidewaysRl";
|
|
80663
|
+
WritingModeValue3["sidewaysLr"] = "sidewaysLr";
|
|
80664
|
+
})(WritingModeValue2 || (WritingModeValue2 = {}));
|
|
80480
80665
|
var DataType2;
|
|
80481
80666
|
(function(DataType3) {
|
|
80482
80667
|
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
@@ -80588,30 +80773,13 @@ var ActionName2;
|
|
|
80588
80773
|
ActionName3["dashboard"] = "dashboard";
|
|
80589
80774
|
ActionName3["custom"] = "custom";
|
|
80590
80775
|
})(ActionName2 || (ActionName2 = {}));
|
|
80591
|
-
var
|
|
80592
|
-
(function(
|
|
80593
|
-
|
|
80594
|
-
|
|
80595
|
-
|
|
80596
|
-
|
|
80597
|
-
})(
|
|
80598
|
-
var ResizeDirection2;
|
|
80599
|
-
(function(ResizeDirection3) {
|
|
80600
|
-
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
80601
|
-
ResizeDirection3["horizontal"] = "horizontal";
|
|
80602
|
-
ResizeDirection3["vertical"] = "vertical";
|
|
80603
|
-
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80604
|
-
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
80605
|
-
ResizeDirection3["none"] = "none";
|
|
80606
|
-
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
80607
|
-
var ContentResizeDirection2;
|
|
80608
|
-
(function(ContentResizeDirection3) {
|
|
80609
|
-
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
80610
|
-
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
80611
|
-
ContentResizeDirection3["vertical"] = "vertical";
|
|
80612
|
-
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80613
|
-
ContentResizeDirection3["none"] = "none";
|
|
80614
|
-
})(ContentResizeDirection2 || (ContentResizeDirection2 = {}));
|
|
80776
|
+
var SizingType2;
|
|
80777
|
+
(function(SizingType3) {
|
|
80778
|
+
SizingType3["UNKNOWN_SizingType"] = "UNKNOWN_SizingType";
|
|
80779
|
+
SizingType3["content"] = "content";
|
|
80780
|
+
SizingType3["stretched"] = "stretched";
|
|
80781
|
+
SizingType3["pixels"] = "pixels";
|
|
80782
|
+
})(SizingType2 || (SizingType2 = {}));
|
|
80615
80783
|
var Archetype2;
|
|
80616
80784
|
(function(Archetype3) {
|
|
80617
80785
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -80653,12 +80821,35 @@ var Archetype2;
|
|
|
80653
80821
|
Archetype3["VectorArt"] = "VectorArt";
|
|
80654
80822
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
80655
80823
|
})(Archetype2 || (Archetype2 = {}));
|
|
80824
|
+
var ResizeDirection2;
|
|
80825
|
+
(function(ResizeDirection3) {
|
|
80826
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
80827
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
80828
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
80829
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80830
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
80831
|
+
ResizeDirection3["none"] = "none";
|
|
80832
|
+
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
80833
|
+
var ContentResizeDirection2;
|
|
80834
|
+
(function(ContentResizeDirection3) {
|
|
80835
|
+
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
80836
|
+
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
80837
|
+
ContentResizeDirection3["vertical"] = "vertical";
|
|
80838
|
+
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
80839
|
+
ContentResizeDirection3["none"] = "none";
|
|
80840
|
+
})(ContentResizeDirection2 || (ContentResizeDirection2 = {}));
|
|
80656
80841
|
var RestrictionLevel2;
|
|
80657
80842
|
(function(RestrictionLevel3) {
|
|
80658
80843
|
RestrictionLevel3["UNKNOWN_RESTRICTION_TYPE"] = "UNKNOWN_RESTRICTION_TYPE";
|
|
80659
80844
|
RestrictionLevel3["WARNING"] = "WARNING";
|
|
80660
80845
|
RestrictionLevel3["LOCKED"] = "LOCKED";
|
|
80661
80846
|
})(RestrictionLevel2 || (RestrictionLevel2 = {}));
|
|
80847
|
+
var ElementDisplayOption2;
|
|
80848
|
+
(function(ElementDisplayOption3) {
|
|
80849
|
+
ElementDisplayOption3["UNKNOWN_OPTION"] = "UNKNOWN_OPTION";
|
|
80850
|
+
ElementDisplayOption3["REMOVE"] = "REMOVE";
|
|
80851
|
+
ElementDisplayOption3["CUSTOMIZED"] = "CUSTOMIZED";
|
|
80852
|
+
})(ElementDisplayOption2 || (ElementDisplayOption2 = {}));
|
|
80662
80853
|
var SidebarDataType2;
|
|
80663
80854
|
(function(SidebarDataType3) {
|
|
80664
80855
|
SidebarDataType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
@@ -80666,13 +80857,13 @@ var SidebarDataType2;
|
|
|
80666
80857
|
SidebarDataType3["PAGE"] = "PAGE";
|
|
80667
80858
|
SidebarDataType3["SEPARATOR"] = "SEPARATOR";
|
|
80668
80859
|
})(SidebarDataType2 || (SidebarDataType2 = {}));
|
|
80669
|
-
var
|
|
80670
|
-
(function(
|
|
80671
|
-
|
|
80672
|
-
|
|
80673
|
-
|
|
80674
|
-
|
|
80675
|
-
})(
|
|
80860
|
+
var SidebarEntityType2;
|
|
80861
|
+
(function(SidebarEntityType3) {
|
|
80862
|
+
SidebarEntityType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
80863
|
+
SidebarEntityType3["CATEGORY"] = "CATEGORY";
|
|
80864
|
+
SidebarEntityType3["PAGE"] = "PAGE";
|
|
80865
|
+
SidebarEntityType3["APP"] = "APP";
|
|
80866
|
+
})(SidebarEntityType2 || (SidebarEntityType2 = {}));
|
|
80676
80867
|
var OpenConsentIn2;
|
|
80677
80868
|
(function(OpenConsentIn3) {
|
|
80678
80869
|
OpenConsentIn3["NONE_VALUE"] = "NONE_VALUE";
|
|
@@ -80815,41 +81006,10 @@ var topologySchema = z.object({
|
|
|
80815
81006
|
})
|
|
80816
81007
|
})
|
|
80817
81008
|
}).passthrough();
|
|
80818
|
-
var monitoringSchema = z.object({
|
|
80819
|
-
compType: z.literal(ComponentType2.MONITORING),
|
|
80820
|
-
compId: z.string(),
|
|
80821
|
-
compName: z.string().optional(),
|
|
80822
|
-
compData: z.object({
|
|
80823
|
-
monitoring: z.discriminatedUnion("type", [
|
|
80824
|
-
z.object({
|
|
80825
|
-
type: z.literal(MonitoringType2.SENTRY),
|
|
80826
|
-
sentryOptions: z.object({
|
|
80827
|
-
dsn: z.string().url()
|
|
80828
|
-
})
|
|
80829
|
-
}),
|
|
80830
|
-
z.object({
|
|
80831
|
-
type: z.literal(MonitoringType2.PANORAMA),
|
|
80832
|
-
panoramaOptions: z.object({
|
|
80833
|
-
sentry: z.object({
|
|
80834
|
-
dsn: z.string().url()
|
|
80835
|
-
}).optional(),
|
|
80836
|
-
project: z.object({
|
|
80837
|
-
groupId: z.string(),
|
|
80838
|
-
artifactId: z.string(),
|
|
80839
|
-
fingerprint: z.string()
|
|
80840
|
-
})
|
|
80841
|
-
})
|
|
80842
|
-
})
|
|
80843
|
-
])
|
|
80844
|
-
})
|
|
80845
|
-
});
|
|
80846
81009
|
var componentsSchema = z.array(
|
|
80847
81010
|
z.discriminatedUnion("compType", [
|
|
80848
81011
|
topologySchema,
|
|
80849
|
-
|
|
80850
|
-
...Object.values(ComponentType2).filter(
|
|
80851
|
-
(type) => type !== ComponentType2.TOPOLOGY && type !== ComponentType2.MONITORING
|
|
80852
|
-
).map((type) => {
|
|
81012
|
+
...Object.values(ComponentType2).filter((type) => type !== ComponentType2.TOPOLOGY).map((type) => {
|
|
80853
81013
|
return z.object({
|
|
80854
81014
|
compId: z.string(),
|
|
80855
81015
|
compName: z.string().optional(),
|