@wix/create-app 0.0.126 → 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 +610 -45
- 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)(),
|
|
@@ -68630,6 +68634,24 @@ ${errorMessage2}`
|
|
|
68630
68634
|
}
|
|
68631
68635
|
);
|
|
68632
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
|
+
},
|
|
68633
68655
|
CannotReleaseMinorInNoninteractive: () => {
|
|
68634
68656
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68635
68657
|
ErrorMessage,
|
|
@@ -68745,6 +68767,12 @@ ${errorMessage2}`
|
|
|
68745
68767
|
hint: "Please make sure the site exists and you have access to it."
|
|
68746
68768
|
}
|
|
68747
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." });
|
|
68748
68776
|
}
|
|
68749
68777
|
});
|
|
68750
68778
|
}
|
|
@@ -72280,7 +72308,7 @@ function reportCommandStartEvent({
|
|
|
72280
72308
|
var package_default = {
|
|
72281
72309
|
name: "@wix/create-app",
|
|
72282
72310
|
description: "Create Wix apps",
|
|
72283
|
-
version: "0.0.
|
|
72311
|
+
version: "0.0.127",
|
|
72284
72312
|
author: "Ihor Machuzhak",
|
|
72285
72313
|
bin: "bin/index.cjs",
|
|
72286
72314
|
devDependencies: {
|
|
@@ -75776,6 +75804,7 @@ var _componentData = {
|
|
|
75776
75804
|
};
|
|
75777
75805
|
var _componentsMultilineAddress = { description: "_richContent" };
|
|
75778
75806
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
75807
|
+
var _cssCustomPropertyItem = { number: "_cssNumber" };
|
|
75779
75808
|
var _cssNumber = {
|
|
75780
75809
|
minimum: "google.protobuf.FloatValue",
|
|
75781
75810
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -75803,7 +75832,8 @@ var _editorElement = {
|
|
|
75803
75832
|
style: "Map#_styleItem",
|
|
75804
75833
|
data: "Map#_dataItem",
|
|
75805
75834
|
elements: "Map#_elementItem",
|
|
75806
|
-
presets: "Map#_presetItem"
|
|
75835
|
+
presets: "Map#_presetItem",
|
|
75836
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75807
75837
|
};
|
|
75808
75838
|
var _editorPresence = { presetsEditorPresence: "_presetEditorPresence" };
|
|
75809
75839
|
var _editorReactComponent = { editorElement: "_editorElement" };
|
|
@@ -75844,7 +75874,8 @@ var _inlineElement = {
|
|
|
75844
75874
|
style: "Map#_styleItem",
|
|
75845
75875
|
data: "Map#_dataItem",
|
|
75846
75876
|
elements: "Map#_elementItem",
|
|
75847
|
-
presets: "Map#_presetItem"
|
|
75877
|
+
presets: "Map#_presetItem",
|
|
75878
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75848
75879
|
};
|
|
75849
75880
|
var _inputField = {
|
|
75850
75881
|
stringOptions: "__String",
|
|
@@ -75928,9 +75959,14 @@ var _predefinedExpectedInputConfiguration = {
|
|
|
75928
75959
|
textInput: "_adminConfigurableTextInput"
|
|
75929
75960
|
};
|
|
75930
75961
|
var _presetEditorPresence = { wixMediaThumbnail: "_wixCommonImage" };
|
|
75962
|
+
var _presetElementDefaults = { elements: "Map#_presetInnerElementDefaults" };
|
|
75963
|
+
var _presetInnerElementDefaults = {
|
|
75964
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
75965
|
+
};
|
|
75931
75966
|
var _presetItem = {
|
|
75932
75967
|
styleDefaults: "_presetStyleDefaults",
|
|
75933
|
-
styleOverrides: "_breakpointPresetStyleOverrides"
|
|
75968
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
75969
|
+
presetDefaults: "_presetElementDefaults"
|
|
75934
75970
|
};
|
|
75935
75971
|
var _presetStyleDefaults = { elements: "Map#_elementStyleDefaults" };
|
|
75936
75972
|
var _presetStyleOverrides = { elements: "Map#_elementStyleOverrides" };
|
|
@@ -75949,10 +75985,8 @@ var _ratingInput = { description: "_richContent" };
|
|
|
75949
75985
|
var _refElement = {
|
|
75950
75986
|
resolvedElement: "_inlineElement",
|
|
75951
75987
|
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
75952
|
-
elements: "Map#_refInnerElementDefaults"
|
|
75953
|
-
styleOverrides: "_refElementStyleOverrides"
|
|
75988
|
+
elements: "Map#_refInnerElementDefaults"
|
|
75954
75989
|
};
|
|
75955
|
-
var _refElementStyleOverrides = { elements: "Map#_refElementStyleOverrides" };
|
|
75956
75990
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
75957
75991
|
var _richContent = { nodes: "_node", metadata: "_v1Metadata" };
|
|
75958
75992
|
var _richContentOptions = { richContent: "_richContent" };
|
|
@@ -76140,6 +76174,7 @@ function getAppByVersion(payload5) {
|
|
|
76140
76174
|
_componentData,
|
|
76141
76175
|
_componentsMultilineAddress,
|
|
76142
76176
|
_conditionNode,
|
|
76177
|
+
_cssCustomPropertyItem,
|
|
76143
76178
|
_cssNumber,
|
|
76144
76179
|
_dataItem,
|
|
76145
76180
|
_dataItems,
|
|
@@ -76200,6 +76235,8 @@ function getAppByVersion(payload5) {
|
|
|
76200
76235
|
_predefinedExpectedInput,
|
|
76201
76236
|
_predefinedExpectedInputConfiguration,
|
|
76202
76237
|
_presetEditorPresence,
|
|
76238
|
+
_presetElementDefaults,
|
|
76239
|
+
_presetInnerElementDefaults,
|
|
76203
76240
|
_presetItem,
|
|
76204
76241
|
_presetStyleDefaults,
|
|
76205
76242
|
_presetStyleOverrides,
|
|
@@ -76210,7 +76247,6 @@ function getAppByVersion(payload5) {
|
|
|
76210
76247
|
_radioGroup,
|
|
76211
76248
|
_ratingInput,
|
|
76212
76249
|
_refElement,
|
|
76213
|
-
_refElementStyleOverrides,
|
|
76214
76250
|
_refInnerElementDefaults,
|
|
76215
76251
|
_richContent,
|
|
76216
76252
|
_richContentOptions,
|
|
@@ -76683,12 +76719,12 @@ var Action;
|
|
|
76683
76719
|
Action2["DELETED"] = "DELETED";
|
|
76684
76720
|
})(Action || (Action = {}));
|
|
76685
76721
|
var WebhookIdentityType;
|
|
76686
|
-
(function(
|
|
76687
|
-
|
|
76688
|
-
|
|
76689
|
-
|
|
76690
|
-
|
|
76691
|
-
|
|
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";
|
|
76692
76728
|
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
76693
76729
|
|
|
76694
76730
|
// ../../node_modules/@wix/ambassador-devcenter-myapps-v1-my-app/build/es/http.impl.js
|
|
@@ -77216,6 +77252,10 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
77216
77252
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
77217
77253
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
77218
77254
|
var _background2 = { image: "_media" };
|
|
77255
|
+
var _breakpointPresetStyleOverrides2 = {
|
|
77256
|
+
default: "_presetStyleOverrides",
|
|
77257
|
+
small: "_presetStyleOverrides"
|
|
77258
|
+
};
|
|
77219
77259
|
var _checkbox2 = { label: "_richContent" };
|
|
77220
77260
|
var _checkboxGroup2 = { description: "_richContent", options: "_option" };
|
|
77221
77261
|
var _commonImage2 = {
|
|
@@ -77241,6 +77281,7 @@ var _componentData2 = {
|
|
|
77241
77281
|
editorReactComponent: "_editorReactComponent"
|
|
77242
77282
|
};
|
|
77243
77283
|
var _conditionNode2 = { and: "_andCondition", or: "_orCondition" };
|
|
77284
|
+
var _cssCustomPropertyItem2 = { number: "_cssNumber" };
|
|
77244
77285
|
var _cssNumber2 = {
|
|
77245
77286
|
minimum: "google.protobuf.FloatValue",
|
|
77246
77287
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -77269,7 +77310,8 @@ var _editorElement2 = {
|
|
|
77269
77310
|
style: "Map#_styleItem",
|
|
77270
77311
|
data: "Map#_dataItem",
|
|
77271
77312
|
elements: "Map#_elementItem",
|
|
77272
|
-
presets: "Map#_presetItem"
|
|
77313
|
+
presets: "Map#_presetItem",
|
|
77314
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77273
77315
|
};
|
|
77274
77316
|
var _editorPresence2 = { presetsEditorPresence: "_presetEditorPresence" };
|
|
77275
77317
|
var _editorReactComponent2 = { editorElement: "_editorElement" };
|
|
@@ -77278,6 +77320,7 @@ var _elementItem2 = {
|
|
|
77278
77320
|
refElement: "_refElement"
|
|
77279
77321
|
};
|
|
77280
77322
|
var _elementStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
77323
|
+
var _elementStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
77281
77324
|
var _expectedInputs2 = {
|
|
77282
77325
|
expectedStartInputs: "_predefinedExpectedInput",
|
|
77283
77326
|
expectedVerifyInputs: "_predefinedExpectedInput"
|
|
@@ -77306,7 +77349,8 @@ var _inlineElement2 = {
|
|
|
77306
77349
|
style: "Map#_styleItem",
|
|
77307
77350
|
data: "Map#_dataItem",
|
|
77308
77351
|
elements: "Map#_elementItem",
|
|
77309
|
-
presets: "Map#_presetItem"
|
|
77352
|
+
presets: "Map#_presetItem",
|
|
77353
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77310
77354
|
};
|
|
77311
77355
|
var _inputField2 = {
|
|
77312
77356
|
stringOptions: "__String",
|
|
@@ -77390,7 +77434,17 @@ var _predefinedExpectedInputConfiguration2 = {
|
|
|
77390
77434
|
};
|
|
77391
77435
|
var _premiumInfo = { freeTrialData: "_freeTrialData" };
|
|
77392
77436
|
var _presetEditorPresence2 = { wixMediaThumbnail: "_commonImage" };
|
|
77393
|
-
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" };
|
|
77394
77448
|
var _pricingDetails = { discount: "_discount" };
|
|
77395
77449
|
var _productCheckboxGroup2 = {
|
|
77396
77450
|
description: "_richContent",
|
|
@@ -77405,7 +77459,8 @@ var _radioGroup2 = { description: "_richContent" };
|
|
|
77405
77459
|
var _ratingInput2 = { description: "_richContent" };
|
|
77406
77460
|
var _refElement2 = {
|
|
77407
77461
|
resolvedElement: "_inlineElement",
|
|
77408
|
-
elementsDefaults: "Map#_refInnerElementDefaults"
|
|
77462
|
+
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
77463
|
+
elements: "Map#_refInnerElementDefaults"
|
|
77409
77464
|
};
|
|
77410
77465
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
77411
77466
|
var _richContent2 = { nodes: "_node", metadata: "_v1Metadata" };
|
|
@@ -77538,12 +77593,14 @@ function managedApps(payload5) {
|
|
|
77538
77593
|
_audioData: _audioData2,
|
|
77539
77594
|
_authenticatorConfig: _authenticatorConfig2,
|
|
77540
77595
|
_background: _background2,
|
|
77596
|
+
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
77541
77597
|
_checkbox: _checkbox2,
|
|
77542
77598
|
_checkboxGroup: _checkboxGroup2,
|
|
77543
77599
|
_commonImage: _commonImage2,
|
|
77544
77600
|
_component: _component2,
|
|
77545
77601
|
_componentData: _componentData2,
|
|
77546
77602
|
_conditionNode: _conditionNode2,
|
|
77603
|
+
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
77547
77604
|
_cssNumber: _cssNumber2,
|
|
77548
77605
|
_dataItem: _dataItem2,
|
|
77549
77606
|
_dataItems: _dataItems2,
|
|
@@ -77562,6 +77619,7 @@ function managedApps(payload5) {
|
|
|
77562
77619
|
_editorReactComponent: _editorReactComponent2,
|
|
77563
77620
|
_elementItem: _elementItem2,
|
|
77564
77621
|
_elementStyleDefaults: _elementStyleDefaults2,
|
|
77622
|
+
_elementStyleOverrides: _elementStyleOverrides2,
|
|
77565
77623
|
_expectedInputs: _expectedInputs2,
|
|
77566
77624
|
_field: _field2,
|
|
77567
77625
|
_fileUpload: _fileUpload2,
|
|
@@ -77607,7 +77665,11 @@ function managedApps(payload5) {
|
|
|
77607
77665
|
_predefinedExpectedInputConfiguration: _predefinedExpectedInputConfiguration2,
|
|
77608
77666
|
_premiumInfo,
|
|
77609
77667
|
_presetEditorPresence: _presetEditorPresence2,
|
|
77668
|
+
_presetElementDefaults: _presetElementDefaults2,
|
|
77669
|
+
_presetInnerElementDefaults: _presetInnerElementDefaults2,
|
|
77610
77670
|
_presetItem: _presetItem2,
|
|
77671
|
+
_presetStyleDefaults: _presetStyleDefaults2,
|
|
77672
|
+
_presetStyleOverrides: _presetStyleOverrides2,
|
|
77611
77673
|
_pricingDetails,
|
|
77612
77674
|
_productCheckboxGroup: _productCheckboxGroup2,
|
|
77613
77675
|
_productCheckboxGroupOption: _productCheckboxGroupOption2,
|
|
@@ -77901,6 +77963,7 @@ var ComponentType;
|
|
|
77901
77963
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
77902
77964
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
77903
77965
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
77966
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
77904
77967
|
})(ComponentType || (ComponentType = {}));
|
|
77905
77968
|
var WidgetVertical;
|
|
77906
77969
|
(function(WidgetVertical3) {
|
|
@@ -78295,6 +78358,7 @@ var Tag;
|
|
|
78295
78358
|
Tag3["MY_BUSINESS"] = "MY_BUSINESS";
|
|
78296
78359
|
Tag3["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
|
|
78297
78360
|
Tag3["GET_PAID"] = "GET_PAID";
|
|
78361
|
+
Tag3["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
|
|
78298
78362
|
})(Tag || (Tag = {}));
|
|
78299
78363
|
var FilterSelectionType;
|
|
78300
78364
|
(function(FilterSelectionType3) {
|
|
@@ -79526,6 +79590,21 @@ var BackgroundModeEnum;
|
|
|
79526
79590
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
79527
79591
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
79528
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 = {}));
|
|
79529
79608
|
var CssDataTypeEnumCssDataType;
|
|
79530
79609
|
(function(CssDataTypeEnumCssDataType3) {
|
|
79531
79610
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -79631,6 +79710,33 @@ var ResizeDirection;
|
|
|
79631
79710
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
79632
79711
|
ResizeDirection3["none"] = "none";
|
|
79633
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 = {}));
|
|
79634
79740
|
var ElementTypeEnumElementType;
|
|
79635
79741
|
(function(ElementTypeEnumElementType2) {
|
|
79636
79742
|
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -79646,6 +79752,8 @@ var ActionType;
|
|
|
79646
79752
|
ActionType3["forward"] = "forward";
|
|
79647
79753
|
ActionType3["style"] = "style";
|
|
79648
79754
|
ActionType3["displayGroup"] = "displayGroup";
|
|
79755
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
79756
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
79649
79757
|
})(ActionType || (ActionType = {}));
|
|
79650
79758
|
var PanelType;
|
|
79651
79759
|
(function(PanelType3) {
|
|
@@ -79663,6 +79771,7 @@ var ActionName;
|
|
|
79663
79771
|
ActionName3["dashboard"] = "dashboard";
|
|
79664
79772
|
ActionName3["custom"] = "custom";
|
|
79665
79773
|
ActionName3["manageMenu"] = "manageMenu";
|
|
79774
|
+
ActionName3["container"] = "container";
|
|
79666
79775
|
})(ActionName || (ActionName = {}));
|
|
79667
79776
|
var SizingType;
|
|
79668
79777
|
(function(SizingType3) {
|
|
@@ -79671,6 +79780,20 @@ var SizingType;
|
|
|
79671
79780
|
SizingType3["stretched"] = "stretched";
|
|
79672
79781
|
SizingType3["pixels"] = "pixels";
|
|
79673
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 = {}));
|
|
79674
79797
|
var Archetype;
|
|
79675
79798
|
(function(Archetype3) {
|
|
79676
79799
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -79711,6 +79834,8 @@ var Archetype;
|
|
|
79711
79834
|
Archetype3["Captcha"] = "Captcha";
|
|
79712
79835
|
Archetype3["VectorArt"] = "VectorArt";
|
|
79713
79836
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
79837
|
+
Archetype3["Cart"] = "Cart";
|
|
79838
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
79714
79839
|
})(Archetype || (Archetype = {}));
|
|
79715
79840
|
var NativeStateType;
|
|
79716
79841
|
(function(NativeStateType3) {
|
|
@@ -79723,8 +79848,9 @@ var NativeStateType;
|
|
|
79723
79848
|
var GroupType;
|
|
79724
79849
|
(function(GroupType3) {
|
|
79725
79850
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
79726
|
-
GroupType3["
|
|
79727
|
-
GroupType3["
|
|
79851
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
79852
|
+
GroupType3["dataType"] = "dataType";
|
|
79853
|
+
GroupType3["preset"] = "preset";
|
|
79728
79854
|
GroupType3["background"] = "background";
|
|
79729
79855
|
GroupType3["margin"] = "margin";
|
|
79730
79856
|
GroupType3["padding"] = "padding";
|
|
@@ -79739,15 +79865,127 @@ var GroupType;
|
|
|
79739
79865
|
GroupType3["font"] = "font";
|
|
79740
79866
|
GroupType3["textDecoration"] = "textDecoration";
|
|
79741
79867
|
GroupType3["gap"] = "gap";
|
|
79868
|
+
GroupType3["arrayItems"] = "arrayItems";
|
|
79869
|
+
GroupType3["arrayItem"] = "arrayItem";
|
|
79742
79870
|
})(GroupType || (GroupType = {}));
|
|
79743
|
-
var
|
|
79744
|
-
(function(
|
|
79745
|
-
|
|
79746
|
-
|
|
79747
|
-
|
|
79748
|
-
|
|
79749
|
-
|
|
79750
|
-
|
|
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 = {}));
|
|
79751
79989
|
var InteractionsTrigger;
|
|
79752
79990
|
(function(InteractionsTrigger3) {
|
|
79753
79991
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -79943,6 +80181,114 @@ function createAppPermission(payload5) {
|
|
|
79943
80181
|
return __createAppPermission;
|
|
79944
80182
|
}
|
|
79945
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
|
+
|
|
79946
80292
|
// ../dev-center-client/src/schemas.ts
|
|
79947
80293
|
init_esm_shims();
|
|
79948
80294
|
|
|
@@ -80164,6 +80510,7 @@ var ComponentType2;
|
|
|
80164
80510
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
80165
80511
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
80166
80512
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
80513
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
80167
80514
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
80168
80515
|
var WidgetVertical2;
|
|
80169
80516
|
(function(WidgetVertical3) {
|
|
@@ -81790,6 +82137,21 @@ var BackgroundModeEnum2;
|
|
|
81790
82137
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
81791
82138
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
81792
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 = {}));
|
|
81793
82155
|
var CssDataTypeEnumCssDataType2;
|
|
81794
82156
|
(function(CssDataTypeEnumCssDataType3) {
|
|
81795
82157
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -81895,6 +82257,33 @@ var ResizeDirection2;
|
|
|
81895
82257
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
81896
82258
|
ResizeDirection3["none"] = "none";
|
|
81897
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 = {}));
|
|
81898
82287
|
var ElementType2;
|
|
81899
82288
|
(function(ElementType3) {
|
|
81900
82289
|
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -81910,6 +82299,8 @@ var ActionType2;
|
|
|
81910
82299
|
ActionType3["forward"] = "forward";
|
|
81911
82300
|
ActionType3["style"] = "style";
|
|
81912
82301
|
ActionType3["displayGroup"] = "displayGroup";
|
|
82302
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
82303
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
81913
82304
|
})(ActionType2 || (ActionType2 = {}));
|
|
81914
82305
|
var PanelType2;
|
|
81915
82306
|
(function(PanelType3) {
|
|
@@ -81927,6 +82318,7 @@ var ActionName2;
|
|
|
81927
82318
|
ActionName3["dashboard"] = "dashboard";
|
|
81928
82319
|
ActionName3["custom"] = "custom";
|
|
81929
82320
|
ActionName3["manageMenu"] = "manageMenu";
|
|
82321
|
+
ActionName3["container"] = "container";
|
|
81930
82322
|
})(ActionName2 || (ActionName2 = {}));
|
|
81931
82323
|
var SizingType2;
|
|
81932
82324
|
(function(SizingType3) {
|
|
@@ -81935,12 +82327,12 @@ var SizingType2;
|
|
|
81935
82327
|
SizingType3["stretched"] = "stretched";
|
|
81936
82328
|
SizingType3["pixels"] = "pixels";
|
|
81937
82329
|
})(SizingType2 || (SizingType2 = {}));
|
|
81938
|
-
var
|
|
81939
|
-
(function(
|
|
81940
|
-
|
|
81941
|
-
|
|
81942
|
-
|
|
81943
|
-
})(
|
|
82330
|
+
var BreakpointEnumBreakpoint2;
|
|
82331
|
+
(function(BreakpointEnumBreakpoint3) {
|
|
82332
|
+
BreakpointEnumBreakpoint3["UNKNOWN_Breakpoint"] = "UNKNOWN_Breakpoint";
|
|
82333
|
+
BreakpointEnumBreakpoint3["small"] = "small";
|
|
82334
|
+
BreakpointEnumBreakpoint3["large"] = "large";
|
|
82335
|
+
})(BreakpointEnumBreakpoint2 || (BreakpointEnumBreakpoint2 = {}));
|
|
81944
82336
|
var ContentResizeDirection2;
|
|
81945
82337
|
(function(ContentResizeDirection3) {
|
|
81946
82338
|
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
@@ -81989,6 +82381,8 @@ var Archetype2;
|
|
|
81989
82381
|
Archetype3["Captcha"] = "Captcha";
|
|
81990
82382
|
Archetype3["VectorArt"] = "VectorArt";
|
|
81991
82383
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
82384
|
+
Archetype3["Cart"] = "Cart";
|
|
82385
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
81992
82386
|
})(Archetype2 || (Archetype2 = {}));
|
|
81993
82387
|
var NativeStateType2;
|
|
81994
82388
|
(function(NativeStateType3) {
|
|
@@ -82001,8 +82395,8 @@ var NativeStateType2;
|
|
|
82001
82395
|
var GroupType2;
|
|
82002
82396
|
(function(GroupType3) {
|
|
82003
82397
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
82004
|
-
GroupType3["
|
|
82005
|
-
GroupType3["
|
|
82398
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
82399
|
+
GroupType3["dataType"] = "dataType";
|
|
82006
82400
|
GroupType3["background"] = "background";
|
|
82007
82401
|
GroupType3["margin"] = "margin";
|
|
82008
82402
|
GroupType3["padding"] = "padding";
|
|
@@ -82018,6 +82412,124 @@ var GroupType2;
|
|
|
82018
82412
|
GroupType3["textDecoration"] = "textDecoration";
|
|
82019
82413
|
GroupType3["gap"] = "gap";
|
|
82020
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 = {}));
|
|
82021
82533
|
var InteractionsTrigger2;
|
|
82022
82534
|
(function(InteractionsTrigger3) {
|
|
82023
82535
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -82167,14 +82679,14 @@ var TranslationType;
|
|
|
82167
82679
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
82168
82680
|
TranslationType2["COMPONENT"] = "COMPONENT";
|
|
82169
82681
|
})(TranslationType || (TranslationType = {}));
|
|
82170
|
-
var
|
|
82171
|
-
(function(
|
|
82172
|
-
|
|
82173
|
-
|
|
82174
|
-
|
|
82175
|
-
|
|
82176
|
-
|
|
82177
|
-
})(
|
|
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 = {}));
|
|
82178
82690
|
|
|
82179
82691
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-template/build/es/types.impl.js
|
|
82180
82692
|
init_esm_shims();
|
|
@@ -82377,6 +82889,17 @@ var queryAppTemplateSchema = z.object({
|
|
|
82377
82889
|
var cliAppTemplateSchema = appTemplateSchema.extend({
|
|
82378
82890
|
cliCloneData: cliCLoneDataSchema
|
|
82379
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
|
+
});
|
|
82380
82903
|
|
|
82381
82904
|
// ../dev-center-client/src/dev-center-client.ts
|
|
82382
82905
|
var EMPTY_SITE_TEMPLATE = "24bafe8a-7c80-4b63-8a71-08752062f246";
|
|
@@ -82805,6 +83328,48 @@ var DevCenterClient = class {
|
|
|
82805
83328
|
const installationDetails = await this.getAppInstallationDetails(appId);
|
|
82806
83329
|
return installationDetails?.group === AppGroup.INSTALLED && installationDetails.incompleteSetupReason !== IncompleteSetupReason.PENDING_EDITOR;
|
|
82807
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
|
+
};
|
|
82808
83373
|
};
|
|
82809
83374
|
|
|
82810
83375
|
// ../dev-center-client/src/useDevCenterClient.ts
|