@wix/create-app 0.0.125 → 0.0.127
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 +701 -73
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -57999,7 +57999,9 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
57999
57999
|
FailedCreatingAppDeployment: {},
|
|
58000
58000
|
FailedFinalizingAppDeployment: {},
|
|
58001
58001
|
FailedCreatingNewFunnelProject: {},
|
|
58002
|
-
FailedToFindAstroConfig: {}
|
|
58002
|
+
FailedToFindAstroConfig: {},
|
|
58003
|
+
FailedToCreateShareUrl: {},
|
|
58004
|
+
FailedToListShareUrls: {}
|
|
58003
58005
|
});
|
|
58004
58006
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
58005
58007
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -58099,6 +58101,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58099
58101
|
DeploymentPipelineFailed: (0, import_variant11.fields)(),
|
|
58100
58102
|
InsufficientNonInterractiveReleaseParameters: {},
|
|
58101
58103
|
AppNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58104
|
+
ProjectNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58105
|
+
BusinessNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58102
58106
|
CannotReleaseMinorInNoninteractive: {},
|
|
58103
58107
|
SiteComponentConfigNotFound: (0, import_variant11.fields)(),
|
|
58104
58108
|
SiteComponentPanelConfigNotFound: (0, import_variant11.fields)(),
|
|
@@ -58112,7 +58116,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58112
58116
|
AppReleaseConfigViolations: (0, import_variant11.fields)(),
|
|
58113
58117
|
ProjectIsAlreadyLinked: {},
|
|
58114
58118
|
ProjectIsNotLinkable: {},
|
|
58115
|
-
MissingPresetCssForSiteComponent: (0, import_variant11.fields)()
|
|
58119
|
+
MissingPresetCssForSiteComponent: (0, import_variant11.fields)(),
|
|
58120
|
+
AppInstallerSiteNotFound: (0, import_variant11.fields)()
|
|
58116
58121
|
});
|
|
58117
58122
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
58118
58123
|
...CliSystemErrorCode,
|
|
@@ -68629,6 +68634,24 @@ ${errorMessage2}`
|
|
|
68629
68634
|
}
|
|
68630
68635
|
);
|
|
68631
68636
|
},
|
|
68637
|
+
ProjectNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68638
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68639
|
+
ErrorMessage,
|
|
68640
|
+
{
|
|
68641
|
+
message: errorMessage2,
|
|
68642
|
+
hint: "Failed to create a new application with the specified parameters. Please modify the parameters or switch to interactive mode."
|
|
68643
|
+
}
|
|
68644
|
+
);
|
|
68645
|
+
},
|
|
68646
|
+
BusinessNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68647
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68648
|
+
ErrorMessage,
|
|
68649
|
+
{
|
|
68650
|
+
message: errorMessage2,
|
|
68651
|
+
hint: "Failed to create a new application with provided Business Name. Please modify the parameters or switch to interactive mode."
|
|
68652
|
+
}
|
|
68653
|
+
);
|
|
68654
|
+
},
|
|
68632
68655
|
CannotReleaseMinorInNoninteractive: () => {
|
|
68633
68656
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68634
68657
|
ErrorMessage,
|
|
@@ -68735,6 +68758,21 @@ ${errorMessage2}`
|
|
|
68735
68758
|
message: `Site component "${componentId}" is missing preset CSS file for the preset key "${presetName}".`
|
|
68736
68759
|
}
|
|
68737
68760
|
);
|
|
68761
|
+
},
|
|
68762
|
+
AppInstallerSiteNotFound: ({ siteId }) => {
|
|
68763
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68764
|
+
ErrorMessage,
|
|
68765
|
+
{
|
|
68766
|
+
message: `Site with ID "${siteId}" not found.`,
|
|
68767
|
+
hint: "Please make sure the site exists and you have access to it."
|
|
68768
|
+
}
|
|
68769
|
+
);
|
|
68770
|
+
},
|
|
68771
|
+
FailedToCreateShareUrl: () => {
|
|
68772
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create preview URL." });
|
|
68773
|
+
},
|
|
68774
|
+
FailedToListShareUrls: () => {
|
|
68775
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to list preview URLs." });
|
|
68738
68776
|
}
|
|
68739
68777
|
});
|
|
68740
68778
|
}
|
|
@@ -72270,7 +72308,7 @@ function reportCommandStartEvent({
|
|
|
72270
72308
|
var package_default = {
|
|
72271
72309
|
name: "@wix/create-app",
|
|
72272
72310
|
description: "Create Wix apps",
|
|
72273
|
-
version: "0.0.
|
|
72311
|
+
version: "0.0.127",
|
|
72274
72312
|
author: "Ihor Machuzhak",
|
|
72275
72313
|
bin: "bin/index.cjs",
|
|
72276
72314
|
devDependencies: {
|
|
@@ -75735,6 +75773,10 @@ var _billing = {
|
|
|
75735
75773
|
oneTimePrice: "DOUBLE",
|
|
75736
75774
|
meteredBilling: "_meteredBilling"
|
|
75737
75775
|
};
|
|
75776
|
+
var _breakpointPresetStyleOverrides = {
|
|
75777
|
+
default: "_presetStyleOverrides",
|
|
75778
|
+
small: "_presetStyleOverrides"
|
|
75779
|
+
};
|
|
75738
75780
|
var _checkbox = { label: "_richContent" };
|
|
75739
75781
|
var _checkboxGroup = {
|
|
75740
75782
|
description: "_richContent",
|
|
@@ -75762,6 +75804,7 @@ var _componentData = {
|
|
|
75762
75804
|
};
|
|
75763
75805
|
var _componentsMultilineAddress = { description: "_richContent" };
|
|
75764
75806
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
75807
|
+
var _cssCustomPropertyItem = { number: "_cssNumber" };
|
|
75765
75808
|
var _cssNumber = {
|
|
75766
75809
|
minimum: "google.protobuf.FloatValue",
|
|
75767
75810
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -75789,7 +75832,8 @@ var _editorElement = {
|
|
|
75789
75832
|
style: "Map#_styleItem",
|
|
75790
75833
|
data: "Map#_dataItem",
|
|
75791
75834
|
elements: "Map#_elementItem",
|
|
75792
|
-
presets: "Map#_presetItem"
|
|
75835
|
+
presets: "Map#_presetItem",
|
|
75836
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75793
75837
|
};
|
|
75794
75838
|
var _editorPresence = { presetsEditorPresence: "_presetEditorPresence" };
|
|
75795
75839
|
var _editorReactComponent = { editorElement: "_editorElement" };
|
|
@@ -75798,6 +75842,7 @@ var _elementItem = {
|
|
|
75798
75842
|
refElement: "_refElement"
|
|
75799
75843
|
};
|
|
75800
75844
|
var _elementStyleDefaults = { elements: "Map#_elementStyleDefaults" };
|
|
75845
|
+
var _elementStyleOverrides = { elements: "Map#_elementStyleOverrides" };
|
|
75801
75846
|
var _expectedInputs = {
|
|
75802
75847
|
expectedStartInputs: "_predefinedExpectedInput",
|
|
75803
75848
|
expectedVerifyInputs: "_predefinedExpectedInput"
|
|
@@ -75829,7 +75874,8 @@ var _inlineElement = {
|
|
|
75829
75874
|
style: "Map#_styleItem",
|
|
75830
75875
|
data: "Map#_dataItem",
|
|
75831
75876
|
elements: "Map#_elementItem",
|
|
75832
|
-
presets: "Map#_presetItem"
|
|
75877
|
+
presets: "Map#_presetItem",
|
|
75878
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75833
75879
|
};
|
|
75834
75880
|
var _inputField = {
|
|
75835
75881
|
stringOptions: "__String",
|
|
@@ -75913,7 +75959,17 @@ var _predefinedExpectedInputConfiguration = {
|
|
|
75913
75959
|
textInput: "_adminConfigurableTextInput"
|
|
75914
75960
|
};
|
|
75915
75961
|
var _presetEditorPresence = { wixMediaThumbnail: "_wixCommonImage" };
|
|
75916
|
-
var
|
|
75962
|
+
var _presetElementDefaults = { elements: "Map#_presetInnerElementDefaults" };
|
|
75963
|
+
var _presetInnerElementDefaults = {
|
|
75964
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
75965
|
+
};
|
|
75966
|
+
var _presetItem = {
|
|
75967
|
+
styleDefaults: "_presetStyleDefaults",
|
|
75968
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
75969
|
+
presetDefaults: "_presetElementDefaults"
|
|
75970
|
+
};
|
|
75971
|
+
var _presetStyleDefaults = { elements: "Map#_elementStyleDefaults" };
|
|
75972
|
+
var _presetStyleOverrides = { elements: "Map#_elementStyleOverrides" };
|
|
75917
75973
|
var _pricingModel = { plans: "_plan" };
|
|
75918
75974
|
var _productCheckboxGroup = {
|
|
75919
75975
|
description: "_richContent",
|
|
@@ -75928,7 +75984,8 @@ var _radioGroup = { description: "_richContent" };
|
|
|
75928
75984
|
var _ratingInput = { description: "_richContent" };
|
|
75929
75985
|
var _refElement = {
|
|
75930
75986
|
resolvedElement: "_inlineElement",
|
|
75931
|
-
elementsDefaults: "Map#_refInnerElementDefaults"
|
|
75987
|
+
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
75988
|
+
elements: "Map#_refInnerElementDefaults"
|
|
75932
75989
|
};
|
|
75933
75990
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
75934
75991
|
var _richContent = { nodes: "_node", metadata: "_v1Metadata" };
|
|
@@ -76108,6 +76165,7 @@ function getAppByVersion(payload5) {
|
|
|
76108
76165
|
_authenticatorConfig,
|
|
76109
76166
|
_background,
|
|
76110
76167
|
_billing,
|
|
76168
|
+
_breakpointPresetStyleOverrides,
|
|
76111
76169
|
_checkbox,
|
|
76112
76170
|
_checkboxGroup,
|
|
76113
76171
|
_checkboxGroupOption,
|
|
@@ -76116,6 +76174,7 @@ function getAppByVersion(payload5) {
|
|
|
76116
76174
|
_componentData,
|
|
76117
76175
|
_componentsMultilineAddress,
|
|
76118
76176
|
_conditionNode,
|
|
76177
|
+
_cssCustomPropertyItem,
|
|
76119
76178
|
_cssNumber,
|
|
76120
76179
|
_dataItem,
|
|
76121
76180
|
_dataItems,
|
|
@@ -76133,6 +76192,7 @@ function getAppByVersion(payload5) {
|
|
|
76133
76192
|
_editorReactComponent,
|
|
76134
76193
|
_elementItem,
|
|
76135
76194
|
_elementStyleDefaults,
|
|
76195
|
+
_elementStyleOverrides,
|
|
76136
76196
|
_expectedInputs,
|
|
76137
76197
|
_field,
|
|
76138
76198
|
_fileUpload,
|
|
@@ -76175,7 +76235,11 @@ function getAppByVersion(payload5) {
|
|
|
76175
76235
|
_predefinedExpectedInput,
|
|
76176
76236
|
_predefinedExpectedInputConfiguration,
|
|
76177
76237
|
_presetEditorPresence,
|
|
76238
|
+
_presetElementDefaults,
|
|
76239
|
+
_presetInnerElementDefaults,
|
|
76178
76240
|
_presetItem,
|
|
76241
|
+
_presetStyleDefaults,
|
|
76242
|
+
_presetStyleOverrides,
|
|
76179
76243
|
_pricingModel,
|
|
76180
76244
|
_productCheckboxGroup,
|
|
76181
76245
|
_productCheckboxGroupOption,
|
|
@@ -76655,12 +76719,12 @@ var Action;
|
|
|
76655
76719
|
Action2["DELETED"] = "DELETED";
|
|
76656
76720
|
})(Action || (Action = {}));
|
|
76657
76721
|
var WebhookIdentityType;
|
|
76658
|
-
(function(
|
|
76659
|
-
|
|
76660
|
-
|
|
76661
|
-
|
|
76662
|
-
|
|
76663
|
-
|
|
76722
|
+
(function(WebhookIdentityType4) {
|
|
76723
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
76724
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
76725
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
76726
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
76727
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
76664
76728
|
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
76665
76729
|
|
|
76666
76730
|
// ../../node_modules/@wix/ambassador-devcenter-myapps-v1-my-app/build/es/http.impl.js
|
|
@@ -77188,6 +77252,10 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
77188
77252
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
77189
77253
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
77190
77254
|
var _background2 = { image: "_media" };
|
|
77255
|
+
var _breakpointPresetStyleOverrides2 = {
|
|
77256
|
+
default: "_presetStyleOverrides",
|
|
77257
|
+
small: "_presetStyleOverrides"
|
|
77258
|
+
};
|
|
77191
77259
|
var _checkbox2 = { label: "_richContent" };
|
|
77192
77260
|
var _checkboxGroup2 = { description: "_richContent", options: "_option" };
|
|
77193
77261
|
var _commonImage2 = {
|
|
@@ -77213,6 +77281,7 @@ var _componentData2 = {
|
|
|
77213
77281
|
editorReactComponent: "_editorReactComponent"
|
|
77214
77282
|
};
|
|
77215
77283
|
var _conditionNode2 = { and: "_andCondition", or: "_orCondition" };
|
|
77284
|
+
var _cssCustomPropertyItem2 = { number: "_cssNumber" };
|
|
77216
77285
|
var _cssNumber2 = {
|
|
77217
77286
|
minimum: "google.protobuf.FloatValue",
|
|
77218
77287
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -77241,7 +77310,8 @@ var _editorElement2 = {
|
|
|
77241
77310
|
style: "Map#_styleItem",
|
|
77242
77311
|
data: "Map#_dataItem",
|
|
77243
77312
|
elements: "Map#_elementItem",
|
|
77244
|
-
presets: "Map#_presetItem"
|
|
77313
|
+
presets: "Map#_presetItem",
|
|
77314
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77245
77315
|
};
|
|
77246
77316
|
var _editorPresence2 = { presetsEditorPresence: "_presetEditorPresence" };
|
|
77247
77317
|
var _editorReactComponent2 = { editorElement: "_editorElement" };
|
|
@@ -77250,6 +77320,7 @@ var _elementItem2 = {
|
|
|
77250
77320
|
refElement: "_refElement"
|
|
77251
77321
|
};
|
|
77252
77322
|
var _elementStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
77323
|
+
var _elementStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
77253
77324
|
var _expectedInputs2 = {
|
|
77254
77325
|
expectedStartInputs: "_predefinedExpectedInput",
|
|
77255
77326
|
expectedVerifyInputs: "_predefinedExpectedInput"
|
|
@@ -77278,7 +77349,8 @@ var _inlineElement2 = {
|
|
|
77278
77349
|
style: "Map#_styleItem",
|
|
77279
77350
|
data: "Map#_dataItem",
|
|
77280
77351
|
elements: "Map#_elementItem",
|
|
77281
|
-
presets: "Map#_presetItem"
|
|
77352
|
+
presets: "Map#_presetItem",
|
|
77353
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77282
77354
|
};
|
|
77283
77355
|
var _inputField2 = {
|
|
77284
77356
|
stringOptions: "__String",
|
|
@@ -77362,7 +77434,17 @@ var _predefinedExpectedInputConfiguration2 = {
|
|
|
77362
77434
|
};
|
|
77363
77435
|
var _premiumInfo = { freeTrialData: "_freeTrialData" };
|
|
77364
77436
|
var _presetEditorPresence2 = { wixMediaThumbnail: "_commonImage" };
|
|
77365
|
-
var
|
|
77437
|
+
var _presetElementDefaults2 = { elements: "Map#_presetInnerElementDefaults" };
|
|
77438
|
+
var _presetInnerElementDefaults2 = {
|
|
77439
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
77440
|
+
};
|
|
77441
|
+
var _presetItem2 = {
|
|
77442
|
+
styleDefaults: "_presetStyleDefaults",
|
|
77443
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
77444
|
+
presetDefaults: "_presetElementDefaults"
|
|
77445
|
+
};
|
|
77446
|
+
var _presetStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
77447
|
+
var _presetStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
77366
77448
|
var _pricingDetails = { discount: "_discount" };
|
|
77367
77449
|
var _productCheckboxGroup2 = {
|
|
77368
77450
|
description: "_richContent",
|
|
@@ -77377,7 +77459,8 @@ var _radioGroup2 = { description: "_richContent" };
|
|
|
77377
77459
|
var _ratingInput2 = { description: "_richContent" };
|
|
77378
77460
|
var _refElement2 = {
|
|
77379
77461
|
resolvedElement: "_inlineElement",
|
|
77380
|
-
elementsDefaults: "Map#_refInnerElementDefaults"
|
|
77462
|
+
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
77463
|
+
elements: "Map#_refInnerElementDefaults"
|
|
77381
77464
|
};
|
|
77382
77465
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
77383
77466
|
var _richContent2 = { nodes: "_node", metadata: "_v1Metadata" };
|
|
@@ -77510,12 +77593,14 @@ function managedApps(payload5) {
|
|
|
77510
77593
|
_audioData: _audioData2,
|
|
77511
77594
|
_authenticatorConfig: _authenticatorConfig2,
|
|
77512
77595
|
_background: _background2,
|
|
77596
|
+
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
77513
77597
|
_checkbox: _checkbox2,
|
|
77514
77598
|
_checkboxGroup: _checkboxGroup2,
|
|
77515
77599
|
_commonImage: _commonImage2,
|
|
77516
77600
|
_component: _component2,
|
|
77517
77601
|
_componentData: _componentData2,
|
|
77518
77602
|
_conditionNode: _conditionNode2,
|
|
77603
|
+
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
77519
77604
|
_cssNumber: _cssNumber2,
|
|
77520
77605
|
_dataItem: _dataItem2,
|
|
77521
77606
|
_dataItems: _dataItems2,
|
|
@@ -77534,6 +77619,7 @@ function managedApps(payload5) {
|
|
|
77534
77619
|
_editorReactComponent: _editorReactComponent2,
|
|
77535
77620
|
_elementItem: _elementItem2,
|
|
77536
77621
|
_elementStyleDefaults: _elementStyleDefaults2,
|
|
77622
|
+
_elementStyleOverrides: _elementStyleOverrides2,
|
|
77537
77623
|
_expectedInputs: _expectedInputs2,
|
|
77538
77624
|
_field: _field2,
|
|
77539
77625
|
_fileUpload: _fileUpload2,
|
|
@@ -77579,7 +77665,11 @@ function managedApps(payload5) {
|
|
|
77579
77665
|
_predefinedExpectedInputConfiguration: _predefinedExpectedInputConfiguration2,
|
|
77580
77666
|
_premiumInfo,
|
|
77581
77667
|
_presetEditorPresence: _presetEditorPresence2,
|
|
77668
|
+
_presetElementDefaults: _presetElementDefaults2,
|
|
77669
|
+
_presetInnerElementDefaults: _presetInnerElementDefaults2,
|
|
77582
77670
|
_presetItem: _presetItem2,
|
|
77671
|
+
_presetStyleDefaults: _presetStyleDefaults2,
|
|
77672
|
+
_presetStyleOverrides: _presetStyleOverrides2,
|
|
77583
77673
|
_pricingDetails,
|
|
77584
77674
|
_productCheckboxGroup: _productCheckboxGroup2,
|
|
77585
77675
|
_productCheckboxGroupOption: _productCheckboxGroupOption2,
|
|
@@ -77873,6 +77963,7 @@ var ComponentType;
|
|
|
77873
77963
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
77874
77964
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
77875
77965
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
77966
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
77876
77967
|
})(ComponentType || (ComponentType = {}));
|
|
77877
77968
|
var WidgetVertical;
|
|
77878
77969
|
(function(WidgetVertical3) {
|
|
@@ -78267,6 +78358,7 @@ var Tag;
|
|
|
78267
78358
|
Tag3["MY_BUSINESS"] = "MY_BUSINESS";
|
|
78268
78359
|
Tag3["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
|
|
78269
78360
|
Tag3["GET_PAID"] = "GET_PAID";
|
|
78361
|
+
Tag3["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
|
|
78270
78362
|
})(Tag || (Tag = {}));
|
|
78271
78363
|
var FilterSelectionType;
|
|
78272
78364
|
(function(FilterSelectionType3) {
|
|
@@ -79498,6 +79590,21 @@ var BackgroundModeEnum;
|
|
|
79498
79590
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
79499
79591
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
79500
79592
|
})(BackgroundModeEnum || (BackgroundModeEnum = {}));
|
|
79593
|
+
var ImageCategoryTypes;
|
|
79594
|
+
(function(ImageCategoryTypes3) {
|
|
79595
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
79596
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
79597
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
79598
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
79599
|
+
var VectorArtCategoryTypes;
|
|
79600
|
+
(function(VectorArtCategoryTypes3) {
|
|
79601
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
79602
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
79603
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
79604
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
79605
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
79606
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
79607
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
79501
79608
|
var CssDataTypeEnumCssDataType;
|
|
79502
79609
|
(function(CssDataTypeEnumCssDataType3) {
|
|
79503
79610
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -79603,6 +79710,33 @@ var ResizeDirection;
|
|
|
79603
79710
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
79604
79711
|
ResizeDirection3["none"] = "none";
|
|
79605
79712
|
})(ResizeDirection || (ResizeDirection = {}));
|
|
79713
|
+
var RichTextAbilities;
|
|
79714
|
+
(function(RichTextAbilities3) {
|
|
79715
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
79716
|
+
RichTextAbilities3["font"] = "font";
|
|
79717
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
79718
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
79719
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
79720
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
79721
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
79722
|
+
RichTextAbilities3["color"] = "color";
|
|
79723
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
79724
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
79725
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
79726
|
+
RichTextAbilities3["direction"] = "direction";
|
|
79727
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
79728
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
79729
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
79730
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
79731
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
79732
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
79733
|
+
var VideoCategoryTypes;
|
|
79734
|
+
(function(VideoCategoryTypes3) {
|
|
79735
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
79736
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
79737
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
79738
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
79739
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
79606
79740
|
var ElementTypeEnumElementType;
|
|
79607
79741
|
(function(ElementTypeEnumElementType2) {
|
|
79608
79742
|
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -79618,6 +79752,8 @@ var ActionType;
|
|
|
79618
79752
|
ActionType3["forward"] = "forward";
|
|
79619
79753
|
ActionType3["style"] = "style";
|
|
79620
79754
|
ActionType3["displayGroup"] = "displayGroup";
|
|
79755
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
79756
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
79621
79757
|
})(ActionType || (ActionType = {}));
|
|
79622
79758
|
var PanelType;
|
|
79623
79759
|
(function(PanelType3) {
|
|
@@ -79635,6 +79771,7 @@ var ActionName;
|
|
|
79635
79771
|
ActionName3["dashboard"] = "dashboard";
|
|
79636
79772
|
ActionName3["custom"] = "custom";
|
|
79637
79773
|
ActionName3["manageMenu"] = "manageMenu";
|
|
79774
|
+
ActionName3["container"] = "container";
|
|
79638
79775
|
})(ActionName || (ActionName = {}));
|
|
79639
79776
|
var SizingType;
|
|
79640
79777
|
(function(SizingType3) {
|
|
@@ -79643,6 +79780,20 @@ var SizingType;
|
|
|
79643
79780
|
SizingType3["stretched"] = "stretched";
|
|
79644
79781
|
SizingType3["pixels"] = "pixels";
|
|
79645
79782
|
})(SizingType || (SizingType = {}));
|
|
79783
|
+
var BreakpointEnumBreakpoint;
|
|
79784
|
+
(function(BreakpointEnumBreakpoint3) {
|
|
79785
|
+
BreakpointEnumBreakpoint3["UNKNOWN_Breakpoint"] = "UNKNOWN_Breakpoint";
|
|
79786
|
+
BreakpointEnumBreakpoint3["small"] = "small";
|
|
79787
|
+
BreakpointEnumBreakpoint3["large"] = "large";
|
|
79788
|
+
})(BreakpointEnumBreakpoint || (BreakpointEnumBreakpoint = {}));
|
|
79789
|
+
var ContentResizeDirection;
|
|
79790
|
+
(function(ContentResizeDirection3) {
|
|
79791
|
+
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
79792
|
+
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
79793
|
+
ContentResizeDirection3["vertical"] = "vertical";
|
|
79794
|
+
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
79795
|
+
ContentResizeDirection3["none"] = "none";
|
|
79796
|
+
})(ContentResizeDirection || (ContentResizeDirection = {}));
|
|
79646
79797
|
var Archetype;
|
|
79647
79798
|
(function(Archetype3) {
|
|
79648
79799
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -79683,6 +79834,8 @@ var Archetype;
|
|
|
79683
79834
|
Archetype3["Captcha"] = "Captcha";
|
|
79684
79835
|
Archetype3["VectorArt"] = "VectorArt";
|
|
79685
79836
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
79837
|
+
Archetype3["Cart"] = "Cart";
|
|
79838
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
79686
79839
|
})(Archetype || (Archetype = {}));
|
|
79687
79840
|
var NativeStateType;
|
|
79688
79841
|
(function(NativeStateType3) {
|
|
@@ -79693,33 +79846,146 @@ var NativeStateType;
|
|
|
79693
79846
|
NativeStateType3["invalid"] = "invalid";
|
|
79694
79847
|
})(NativeStateType || (NativeStateType = {}));
|
|
79695
79848
|
var GroupType;
|
|
79696
|
-
(function(
|
|
79697
|
-
|
|
79698
|
-
|
|
79699
|
-
|
|
79700
|
-
|
|
79701
|
-
|
|
79702
|
-
|
|
79703
|
-
|
|
79704
|
-
|
|
79705
|
-
|
|
79706
|
-
|
|
79707
|
-
|
|
79708
|
-
|
|
79709
|
-
|
|
79710
|
-
|
|
79711
|
-
|
|
79712
|
-
|
|
79713
|
-
|
|
79849
|
+
(function(GroupType3) {
|
|
79850
|
+
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
79851
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
79852
|
+
GroupType3["dataType"] = "dataType";
|
|
79853
|
+
GroupType3["preset"] = "preset";
|
|
79854
|
+
GroupType3["background"] = "background";
|
|
79855
|
+
GroupType3["margin"] = "margin";
|
|
79856
|
+
GroupType3["padding"] = "padding";
|
|
79857
|
+
GroupType3["border"] = "border";
|
|
79858
|
+
GroupType3["borderTop"] = "borderTop";
|
|
79859
|
+
GroupType3["borderRight"] = "borderRight";
|
|
79860
|
+
GroupType3["borderBottom"] = "borderBottom";
|
|
79861
|
+
GroupType3["borderLeft"] = "borderLeft";
|
|
79862
|
+
GroupType3["borderRadius"] = "borderRadius";
|
|
79863
|
+
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
79864
|
+
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
79865
|
+
GroupType3["font"] = "font";
|
|
79866
|
+
GroupType3["textDecoration"] = "textDecoration";
|
|
79867
|
+
GroupType3["gap"] = "gap";
|
|
79868
|
+
GroupType3["arrayItems"] = "arrayItems";
|
|
79869
|
+
GroupType3["arrayItem"] = "arrayItem";
|
|
79714
79870
|
})(GroupType || (GroupType = {}));
|
|
79715
|
-
var
|
|
79716
|
-
(function(
|
|
79717
|
-
|
|
79718
|
-
|
|
79719
|
-
|
|
79720
|
-
|
|
79721
|
-
|
|
79722
|
-
|
|
79871
|
+
var CssPropertyEnumCssPropertyType;
|
|
79872
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
79873
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
79874
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
79875
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
79876
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
79877
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
79878
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
79879
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
79880
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
79881
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
79882
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
79883
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
79884
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
79885
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
79886
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
79887
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
79888
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
79889
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
79890
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
79891
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
79892
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
79893
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
79894
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
79895
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
79896
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
79897
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
79898
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
79899
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
79900
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
79901
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
79902
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
79903
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
79904
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
79905
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
79906
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
79907
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
79908
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
79909
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
79910
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
79911
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
79912
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
79913
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
79914
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
79915
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
79916
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
79917
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
79918
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
79919
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
79920
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
79921
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
79922
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
79923
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
79924
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
79925
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
79926
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
79927
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
79928
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
79929
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
79930
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
79931
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
79932
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
79933
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
79934
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
79935
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
79936
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
79937
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
79938
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
79939
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
79940
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
79941
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
79942
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
79943
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
79944
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
79945
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
79946
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
79947
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
79948
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
79949
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
79950
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
79951
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
79952
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
79953
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
79954
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
79955
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
79956
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
79957
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
79958
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
79959
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
79960
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
79961
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
79962
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
79963
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
79964
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
79965
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
79966
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
79967
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
79968
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
79969
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
79970
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
79971
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
79972
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
79973
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
79974
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
79975
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
79976
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
79977
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
79978
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
79979
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
79980
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
79981
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
79982
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
79983
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
79984
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
79985
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
79986
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
79987
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
79988
|
+
})(CssPropertyEnumCssPropertyType || (CssPropertyEnumCssPropertyType = {}));
|
|
79723
79989
|
var InteractionsTrigger;
|
|
79724
79990
|
(function(InteractionsTrigger3) {
|
|
79725
79991
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -79915,6 +80181,114 @@ function createAppPermission(payload5) {
|
|
|
79915
80181
|
return __createAppPermission;
|
|
79916
80182
|
}
|
|
79917
80183
|
|
|
80184
|
+
// ../../node_modules/@wix/ambassador-devcenter-v1-share-url/build/es/http.impl.js
|
|
80185
|
+
init_esm_shims();
|
|
80186
|
+
var _createShareUrlRequest = { shareUrl: "_shareUrl" };
|
|
80187
|
+
var _createShareUrlResponse = { shareUrl: "_shareUrl" };
|
|
80188
|
+
var _listShareUrlsRequest = {};
|
|
80189
|
+
var _listShareUrlsResponse = { shareUrls: "_shareUrl" };
|
|
80190
|
+
var _shareUrl = {
|
|
80191
|
+
createdDate: "google.protobuf.Timestamp",
|
|
80192
|
+
updatedDate: "google.protobuf.Timestamp"
|
|
80193
|
+
};
|
|
80194
|
+
function resolveWixDevcenterV1AppShareUrlServiceUrl(opts) {
|
|
80195
|
+
var domainToMappings = {
|
|
80196
|
+
"manage._base_domain_": [
|
|
80197
|
+
{
|
|
80198
|
+
srcPath: "/_api/app-share-url-service",
|
|
80199
|
+
destPath: ""
|
|
80200
|
+
}
|
|
80201
|
+
],
|
|
80202
|
+
"dev._base_domain_": [
|
|
80203
|
+
{
|
|
80204
|
+
srcPath: "/_api/app-share-url-service",
|
|
80205
|
+
destPath: ""
|
|
80206
|
+
}
|
|
80207
|
+
],
|
|
80208
|
+
"www._base_domain_": [
|
|
80209
|
+
{
|
|
80210
|
+
srcPath: "/_api/app-share-url-service",
|
|
80211
|
+
destPath: ""
|
|
80212
|
+
}
|
|
80213
|
+
]
|
|
80214
|
+
};
|
|
80215
|
+
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
80216
|
+
}
|
|
80217
|
+
function createShareUrl(payload5) {
|
|
80218
|
+
var _a3 = serializer(_createShareUrlRequest, { _shareUrl }), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
80219
|
+
var fromRes = serializer(_createShareUrlResponse, {
|
|
80220
|
+
_shareUrl
|
|
80221
|
+
}).fromJSON;
|
|
80222
|
+
function __createShareUrl(_a4) {
|
|
80223
|
+
var host = _a4.host;
|
|
80224
|
+
var serializedData = toReq(payload5);
|
|
80225
|
+
var metadata = {
|
|
80226
|
+
entityFqdn: "wix.devcenter.v1.share_url",
|
|
80227
|
+
method: "POST",
|
|
80228
|
+
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
80229
|
+
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
80230
|
+
protoPath: "/v1/share-url",
|
|
80231
|
+
data: serializedData,
|
|
80232
|
+
host
|
|
80233
|
+
}),
|
|
80234
|
+
data: serializedData,
|
|
80235
|
+
transformResponse: fromRes
|
|
80236
|
+
};
|
|
80237
|
+
return metadata;
|
|
80238
|
+
}
|
|
80239
|
+
__createShareUrl.fromReq = fromReq;
|
|
80240
|
+
__createShareUrl.__isAmbassador = true;
|
|
80241
|
+
return __createShareUrl;
|
|
80242
|
+
}
|
|
80243
|
+
function listShareUrls(payload5) {
|
|
80244
|
+
var _a3 = serializer(_listShareUrlsRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
80245
|
+
var fromRes = serializer(_listShareUrlsResponse, {
|
|
80246
|
+
_shareUrl
|
|
80247
|
+
}).fromJSON;
|
|
80248
|
+
function __listShareUrls(_a4) {
|
|
80249
|
+
var host = _a4.host;
|
|
80250
|
+
var serializedData = toReq(payload5);
|
|
80251
|
+
var metadata = {
|
|
80252
|
+
entityFqdn: "wix.devcenter.v1.share_url",
|
|
80253
|
+
method: "GET",
|
|
80254
|
+
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
80255
|
+
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
80256
|
+
protoPath: "/v1/share-urls",
|
|
80257
|
+
data: serializedData,
|
|
80258
|
+
host
|
|
80259
|
+
}),
|
|
80260
|
+
params: toURLSearchParams(serializedData),
|
|
80261
|
+
transformResponse: fromRes
|
|
80262
|
+
};
|
|
80263
|
+
return metadata;
|
|
80264
|
+
}
|
|
80265
|
+
__listShareUrls.fromReq = fromReq;
|
|
80266
|
+
__listShareUrls.__isAmbassador = true;
|
|
80267
|
+
return __listShareUrls;
|
|
80268
|
+
}
|
|
80269
|
+
|
|
80270
|
+
// ../../node_modules/@wix/ambassador-devcenter-v1-share-url/build/es/types.impl.js
|
|
80271
|
+
init_esm_shims();
|
|
80272
|
+
var ActivationStatus;
|
|
80273
|
+
(function(ActivationStatus2) {
|
|
80274
|
+
ActivationStatus2["ENABLED"] = "ENABLED";
|
|
80275
|
+
ActivationStatus2["DISABLED"] = "DISABLED";
|
|
80276
|
+
})(ActivationStatus || (ActivationStatus = {}));
|
|
80277
|
+
var VersionType;
|
|
80278
|
+
(function(VersionType2) {
|
|
80279
|
+
VersionType2["BEST_VERSION"] = "BEST_VERSION";
|
|
80280
|
+
VersionType2["LATEST_VERSION"] = "LATEST_VERSION";
|
|
80281
|
+
VersionType2["DEV_VERSION"] = "DEV_VERSION";
|
|
80282
|
+
})(VersionType || (VersionType = {}));
|
|
80283
|
+
var WebhookIdentityType2;
|
|
80284
|
+
(function(WebhookIdentityType4) {
|
|
80285
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
80286
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
80287
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
80288
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
80289
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
80290
|
+
})(WebhookIdentityType2 || (WebhookIdentityType2 = {}));
|
|
80291
|
+
|
|
79918
80292
|
// ../dev-center-client/src/schemas.ts
|
|
79919
80293
|
init_esm_shims();
|
|
79920
80294
|
|
|
@@ -80136,6 +80510,7 @@ var ComponentType2;
|
|
|
80136
80510
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
80137
80511
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
80138
80512
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
80513
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
80139
80514
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
80140
80515
|
var WidgetVertical2;
|
|
80141
80516
|
(function(WidgetVertical3) {
|
|
@@ -80530,6 +80905,7 @@ var Tag2;
|
|
|
80530
80905
|
Tag3["MY_BUSINESS"] = "MY_BUSINESS";
|
|
80531
80906
|
Tag3["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
|
|
80532
80907
|
Tag3["GET_PAID"] = "GET_PAID";
|
|
80908
|
+
Tag3["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
|
|
80533
80909
|
})(Tag2 || (Tag2 = {}));
|
|
80534
80910
|
var FilterSelectionType2;
|
|
80535
80911
|
(function(FilterSelectionType3) {
|
|
@@ -81761,6 +82137,21 @@ var BackgroundModeEnum2;
|
|
|
81761
82137
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
81762
82138
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
81763
82139
|
})(BackgroundModeEnum2 || (BackgroundModeEnum2 = {}));
|
|
82140
|
+
var ImageCategoryTypes2;
|
|
82141
|
+
(function(ImageCategoryTypes3) {
|
|
82142
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
82143
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
82144
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
82145
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
82146
|
+
var VectorArtCategoryTypes2;
|
|
82147
|
+
(function(VectorArtCategoryTypes3) {
|
|
82148
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
82149
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
82150
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
82151
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
82152
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
82153
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
82154
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
81764
82155
|
var CssDataTypeEnumCssDataType2;
|
|
81765
82156
|
(function(CssDataTypeEnumCssDataType3) {
|
|
81766
82157
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -81866,6 +82257,33 @@ var ResizeDirection2;
|
|
|
81866
82257
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
81867
82258
|
ResizeDirection3["none"] = "none";
|
|
81868
82259
|
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
82260
|
+
var RichTextAbilities2;
|
|
82261
|
+
(function(RichTextAbilities3) {
|
|
82262
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
82263
|
+
RichTextAbilities3["font"] = "font";
|
|
82264
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
82265
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
82266
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
82267
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
82268
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
82269
|
+
RichTextAbilities3["color"] = "color";
|
|
82270
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
82271
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
82272
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
82273
|
+
RichTextAbilities3["direction"] = "direction";
|
|
82274
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
82275
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
82276
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
82277
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
82278
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
82279
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
82280
|
+
var VideoCategoryTypes2;
|
|
82281
|
+
(function(VideoCategoryTypes3) {
|
|
82282
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
82283
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
82284
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
82285
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
82286
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
81869
82287
|
var ElementType2;
|
|
81870
82288
|
(function(ElementType3) {
|
|
81871
82289
|
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -81880,6 +82298,9 @@ var ActionType2;
|
|
|
81880
82298
|
ActionType3["panel"] = "panel";
|
|
81881
82299
|
ActionType3["forward"] = "forward";
|
|
81882
82300
|
ActionType3["style"] = "style";
|
|
82301
|
+
ActionType3["displayGroup"] = "displayGroup";
|
|
82302
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
82303
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
81883
82304
|
})(ActionType2 || (ActionType2 = {}));
|
|
81884
82305
|
var PanelType2;
|
|
81885
82306
|
(function(PanelType3) {
|
|
@@ -81897,6 +82318,7 @@ var ActionName2;
|
|
|
81897
82318
|
ActionName3["dashboard"] = "dashboard";
|
|
81898
82319
|
ActionName3["custom"] = "custom";
|
|
81899
82320
|
ActionName3["manageMenu"] = "manageMenu";
|
|
82321
|
+
ActionName3["container"] = "container";
|
|
81900
82322
|
})(ActionName2 || (ActionName2 = {}));
|
|
81901
82323
|
var SizingType2;
|
|
81902
82324
|
(function(SizingType3) {
|
|
@@ -81905,6 +82327,20 @@ var SizingType2;
|
|
|
81905
82327
|
SizingType3["stretched"] = "stretched";
|
|
81906
82328
|
SizingType3["pixels"] = "pixels";
|
|
81907
82329
|
})(SizingType2 || (SizingType2 = {}));
|
|
82330
|
+
var BreakpointEnumBreakpoint2;
|
|
82331
|
+
(function(BreakpointEnumBreakpoint3) {
|
|
82332
|
+
BreakpointEnumBreakpoint3["UNKNOWN_Breakpoint"] = "UNKNOWN_Breakpoint";
|
|
82333
|
+
BreakpointEnumBreakpoint3["small"] = "small";
|
|
82334
|
+
BreakpointEnumBreakpoint3["large"] = "large";
|
|
82335
|
+
})(BreakpointEnumBreakpoint2 || (BreakpointEnumBreakpoint2 = {}));
|
|
82336
|
+
var ContentResizeDirection2;
|
|
82337
|
+
(function(ContentResizeDirection3) {
|
|
82338
|
+
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
82339
|
+
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
82340
|
+
ContentResizeDirection3["vertical"] = "vertical";
|
|
82341
|
+
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
82342
|
+
ContentResizeDirection3["none"] = "none";
|
|
82343
|
+
})(ContentResizeDirection2 || (ContentResizeDirection2 = {}));
|
|
81908
82344
|
var Archetype2;
|
|
81909
82345
|
(function(Archetype3) {
|
|
81910
82346
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -81945,6 +82381,8 @@ var Archetype2;
|
|
|
81945
82381
|
Archetype3["Captcha"] = "Captcha";
|
|
81946
82382
|
Archetype3["VectorArt"] = "VectorArt";
|
|
81947
82383
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
82384
|
+
Archetype3["Cart"] = "Cart";
|
|
82385
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
81948
82386
|
})(Archetype2 || (Archetype2 = {}));
|
|
81949
82387
|
var NativeStateType2;
|
|
81950
82388
|
(function(NativeStateType3) {
|
|
@@ -81954,14 +82392,144 @@ var NativeStateType2;
|
|
|
81954
82392
|
NativeStateType3["disabled"] = "disabled";
|
|
81955
82393
|
NativeStateType3["invalid"] = "invalid";
|
|
81956
82394
|
})(NativeStateType2 || (NativeStateType2 = {}));
|
|
81957
|
-
var
|
|
81958
|
-
(function(
|
|
81959
|
-
|
|
81960
|
-
|
|
81961
|
-
|
|
81962
|
-
|
|
81963
|
-
|
|
81964
|
-
|
|
82395
|
+
var GroupType2;
|
|
82396
|
+
(function(GroupType3) {
|
|
82397
|
+
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
82398
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
82399
|
+
GroupType3["dataType"] = "dataType";
|
|
82400
|
+
GroupType3["background"] = "background";
|
|
82401
|
+
GroupType3["margin"] = "margin";
|
|
82402
|
+
GroupType3["padding"] = "padding";
|
|
82403
|
+
GroupType3["border"] = "border";
|
|
82404
|
+
GroupType3["borderTop"] = "borderTop";
|
|
82405
|
+
GroupType3["borderRight"] = "borderRight";
|
|
82406
|
+
GroupType3["borderBottom"] = "borderBottom";
|
|
82407
|
+
GroupType3["borderLeft"] = "borderLeft";
|
|
82408
|
+
GroupType3["borderRadius"] = "borderRadius";
|
|
82409
|
+
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
82410
|
+
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
82411
|
+
GroupType3["font"] = "font";
|
|
82412
|
+
GroupType3["textDecoration"] = "textDecoration";
|
|
82413
|
+
GroupType3["gap"] = "gap";
|
|
82414
|
+
})(GroupType2 || (GroupType2 = {}));
|
|
82415
|
+
var CssPropertyEnumCssPropertyType2;
|
|
82416
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
82417
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
82418
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
82419
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
82420
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
82421
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
82422
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
82423
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
82424
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
82425
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
82426
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
82427
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
82428
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
82429
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
82430
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
82431
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
82432
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
82433
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
82434
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
82435
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
82436
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
82437
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
82438
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
82439
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
82440
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
82441
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
82442
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
82443
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
82444
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
82445
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
82446
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
82447
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
82448
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
82449
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
82450
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
82451
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
82452
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
82453
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
82454
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
82455
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
82456
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
82457
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
82458
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
82459
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
82460
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
82461
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
82462
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
82463
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
82464
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
82465
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
82466
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
82467
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
82468
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
82469
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
82470
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
82471
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
82472
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
82473
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
82474
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
82475
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
82476
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
82477
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
82478
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
82479
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
82480
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
82481
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
82482
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
82483
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
82484
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
82485
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
82486
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
82487
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
82488
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
82489
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
82490
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
82491
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
82492
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
82493
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
82494
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
82495
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
82496
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
82497
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
82498
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
82499
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
82500
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
82501
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
82502
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
82503
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
82504
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
82505
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
82506
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
82507
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
82508
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
82509
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
82510
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
82511
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
82512
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
82513
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
82514
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
82515
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
82516
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
82517
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
82518
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
82519
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
82520
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
82521
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
82522
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
82523
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
82524
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
82525
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
82526
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
82527
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
82528
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
82529
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
82530
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
82531
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
82532
|
+
})(CssPropertyEnumCssPropertyType2 || (CssPropertyEnumCssPropertyType2 = {}));
|
|
81965
82533
|
var InteractionsTrigger2;
|
|
81966
82534
|
(function(InteractionsTrigger3) {
|
|
81967
82535
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -82111,14 +82679,14 @@ var TranslationType;
|
|
|
82111
82679
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
82112
82680
|
TranslationType2["COMPONENT"] = "COMPONENT";
|
|
82113
82681
|
})(TranslationType || (TranslationType = {}));
|
|
82114
|
-
var
|
|
82115
|
-
(function(
|
|
82116
|
-
|
|
82117
|
-
|
|
82118
|
-
|
|
82119
|
-
|
|
82120
|
-
|
|
82121
|
-
})(
|
|
82682
|
+
var WebhookIdentityType3;
|
|
82683
|
+
(function(WebhookIdentityType4) {
|
|
82684
|
+
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
82685
|
+
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
82686
|
+
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
82687
|
+
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
82688
|
+
WebhookIdentityType4["APP"] = "APP";
|
|
82689
|
+
})(WebhookIdentityType3 || (WebhookIdentityType3 = {}));
|
|
82122
82690
|
|
|
82123
82691
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-template/build/es/types.impl.js
|
|
82124
82692
|
init_esm_shims();
|
|
@@ -82249,14 +82817,19 @@ var appSchema = z.object({
|
|
|
82249
82817
|
appSecrets: appSecretsSchema
|
|
82250
82818
|
})
|
|
82251
82819
|
});
|
|
82820
|
+
var developmentSiteSchema = z.object({
|
|
82821
|
+
id: z.string(),
|
|
82822
|
+
siteName: z.string()
|
|
82823
|
+
}).transform(({ id, siteName }) => ({
|
|
82824
|
+
id,
|
|
82825
|
+
displayName: siteName.replaceAll("-", " "),
|
|
82826
|
+
viewUrl: ""
|
|
82827
|
+
}));
|
|
82252
82828
|
var createDevelopmentSiteSchema = z.object({
|
|
82253
|
-
developmentSite:
|
|
82254
|
-
id: z.string(),
|
|
82255
|
-
siteName: z.string()
|
|
82256
|
-
})
|
|
82829
|
+
developmentSite: developmentSiteSchema
|
|
82257
82830
|
});
|
|
82258
82831
|
var getDevelopmentSitesSchema = z.object({
|
|
82259
|
-
developmentSites: z.array(
|
|
82832
|
+
developmentSites: z.array(developmentSiteSchema)
|
|
82260
82833
|
});
|
|
82261
82834
|
var getDevelopmentSitesLimitSchema = z.object({
|
|
82262
82835
|
limit: z.number()
|
|
@@ -82316,6 +82889,17 @@ var queryAppTemplateSchema = z.object({
|
|
|
82316
82889
|
var cliAppTemplateSchema = appTemplateSchema.extend({
|
|
82317
82890
|
cliCloneData: cliCLoneDataSchema
|
|
82318
82891
|
});
|
|
82892
|
+
var shareUrlSchema = z.object({
|
|
82893
|
+
versionType: z.nativeEnum(VersionType),
|
|
82894
|
+
installationUrl: z.string().url(),
|
|
82895
|
+
tinyInstallationUrl: z.string().url().optional()
|
|
82896
|
+
});
|
|
82897
|
+
var createShareUrlSchema = z.object({
|
|
82898
|
+
shareUrl: shareUrlSchema
|
|
82899
|
+
});
|
|
82900
|
+
var listShareUrlsSchema = z.object({
|
|
82901
|
+
shareUrls: z.array(shareUrlSchema)
|
|
82902
|
+
});
|
|
82319
82903
|
|
|
82320
82904
|
// ../dev-center-client/src/dev-center-client.ts
|
|
82321
82905
|
var EMPTY_SITE_TEMPLATE = "24bafe8a-7c80-4b63-8a71-08752062f246";
|
|
@@ -82509,13 +83093,7 @@ var DevCenterClient = class {
|
|
|
82509
83093
|
),
|
|
82510
83094
|
this.retryOptions
|
|
82511
83095
|
);
|
|
82512
|
-
|
|
82513
|
-
const site = {
|
|
82514
|
-
id,
|
|
82515
|
-
displayName: siteName.replaceAll("-", " "),
|
|
82516
|
-
viewUrl: ""
|
|
82517
|
-
};
|
|
82518
|
-
return site;
|
|
83096
|
+
return createDevelopmentSiteSchema.parse(data).developmentSite;
|
|
82519
83097
|
} catch (e2) {
|
|
82520
83098
|
throw new CliError({
|
|
82521
83099
|
code: CliErrorCode.FailedToCreateDevelopmentSite(),
|
|
@@ -82523,13 +83101,13 @@ var DevCenterClient = class {
|
|
|
82523
83101
|
});
|
|
82524
83102
|
}
|
|
82525
83103
|
};
|
|
82526
|
-
|
|
83104
|
+
getDevSites = async () => {
|
|
82527
83105
|
try {
|
|
82528
83106
|
const { data } = await pRetry(
|
|
82529
83107
|
() => this.httpClient.request(getDevelopmentSites({})),
|
|
82530
83108
|
this.retryOptions
|
|
82531
83109
|
);
|
|
82532
|
-
return getDevelopmentSitesSchema.parse(data).developmentSites
|
|
83110
|
+
return getDevelopmentSitesSchema.parse(data).developmentSites;
|
|
82533
83111
|
} catch (e2) {
|
|
82534
83112
|
throw new CliError({
|
|
82535
83113
|
code: CliErrorCode.FailedToGetDevelopmentSites(),
|
|
@@ -82537,6 +83115,14 @@ var DevCenterClient = class {
|
|
|
82537
83115
|
});
|
|
82538
83116
|
}
|
|
82539
83117
|
};
|
|
83118
|
+
getDevSitesCount = async () => {
|
|
83119
|
+
const developmentSites = await this.getDevSites();
|
|
83120
|
+
return developmentSites.length;
|
|
83121
|
+
};
|
|
83122
|
+
getDevSite = async (id) => {
|
|
83123
|
+
const developmentSites = await this.getDevSites();
|
|
83124
|
+
return developmentSites.find((site) => site.id === id) ?? null;
|
|
83125
|
+
};
|
|
82540
83126
|
getDeveloperApps = async () => {
|
|
82541
83127
|
try {
|
|
82542
83128
|
const { data } = await pRetry(
|
|
@@ -82742,6 +83328,48 @@ var DevCenterClient = class {
|
|
|
82742
83328
|
const installationDetails = await this.getAppInstallationDetails(appId);
|
|
82743
83329
|
return installationDetails?.group === AppGroup.INSTALLED && installationDetails.incompleteSetupReason !== IncompleteSetupReason.PENDING_EDITOR;
|
|
82744
83330
|
};
|
|
83331
|
+
createShareUrl = async (shareUrl) => {
|
|
83332
|
+
try {
|
|
83333
|
+
const { data } = await this.httpClient.request(
|
|
83334
|
+
createShareUrl({
|
|
83335
|
+
shareUrl,
|
|
83336
|
+
disableExistingWithSameType: true,
|
|
83337
|
+
shareUrlIdParameter: ":shareUrlId",
|
|
83338
|
+
urlTemplate: "https://wix.com/app-market/test/:shareUrlId"
|
|
83339
|
+
})
|
|
83340
|
+
);
|
|
83341
|
+
return createShareUrlSchema.parse(data).shareUrl;
|
|
83342
|
+
} catch (e2) {
|
|
83343
|
+
throw new CliError({
|
|
83344
|
+
code: CliErrorCode.FailedToCreateShareUrl(),
|
|
83345
|
+
cause: e2
|
|
83346
|
+
});
|
|
83347
|
+
}
|
|
83348
|
+
};
|
|
83349
|
+
listShareUrls = async (appId) => {
|
|
83350
|
+
try {
|
|
83351
|
+
const { data } = await pRetry(
|
|
83352
|
+
() => this.httpClient.request(listShareUrls({ appId })),
|
|
83353
|
+
this.retryOptions
|
|
83354
|
+
);
|
|
83355
|
+
return listShareUrlsSchema.parse(data).shareUrls;
|
|
83356
|
+
} catch (e2) {
|
|
83357
|
+
throw new CliError({
|
|
83358
|
+
code: CliErrorCode.FailedToListShareUrls(),
|
|
83359
|
+
cause: e2
|
|
83360
|
+
});
|
|
83361
|
+
}
|
|
83362
|
+
};
|
|
83363
|
+
resolveDevVersionShareUrl = async (appId) => {
|
|
83364
|
+
const shareUrls = await this.listShareUrls(appId);
|
|
83365
|
+
const devVersionShareUrl = shareUrls.find(
|
|
83366
|
+
(shareUrl) => shareUrl.versionType === VersionType.DEV_VERSION
|
|
83367
|
+
);
|
|
83368
|
+
if (devVersionShareUrl) {
|
|
83369
|
+
return devVersionShareUrl;
|
|
83370
|
+
}
|
|
83371
|
+
return this.createShareUrl({ appId, versionType: VersionType.DEV_VERSION });
|
|
83372
|
+
};
|
|
82745
83373
|
};
|
|
82746
83374
|
|
|
82747
83375
|
// ../dev-center-client/src/useDevCenterClient.ts
|