@wix/create-app 0.0.109 → 0.0.111
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 +516 -464
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/templates/app/package.json.ejs +2 -1
- package/templates/app/src/env.d.ts.ejs +1 -0
package/build/index.js
CHANGED
|
@@ -44854,7 +44854,7 @@ var require_loader = __commonJS({
|
|
|
44854
44854
|
simpleEscapeMap[i2] = simpleEscapeSequence(i2);
|
|
44855
44855
|
}
|
|
44856
44856
|
var i2;
|
|
44857
|
-
function
|
|
44857
|
+
function State3(input, options) {
|
|
44858
44858
|
this.input = input;
|
|
44859
44859
|
this.filename = options["filename"] || null;
|
|
44860
44860
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
@@ -45821,7 +45821,7 @@ var require_loader = __commonJS({
|
|
|
45821
45821
|
input = input.slice(1);
|
|
45822
45822
|
}
|
|
45823
45823
|
}
|
|
45824
|
-
var state = new
|
|
45824
|
+
var state = new State3(input, options);
|
|
45825
45825
|
var nullpos = input.indexOf("\0");
|
|
45826
45826
|
if (nullpos !== -1) {
|
|
45827
45827
|
state.position = nullpos;
|
|
@@ -45981,7 +45981,7 @@ var require_dumper = __commonJS({
|
|
|
45981
45981
|
}
|
|
45982
45982
|
return "\\" + handle + common2.repeat("0", length - string.length) + string;
|
|
45983
45983
|
}
|
|
45984
|
-
function
|
|
45984
|
+
function State3(options) {
|
|
45985
45985
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
45986
45986
|
this.indent = Math.max(1, options["indent"] || 2);
|
|
45987
45987
|
this.noArrayIndent = options["noArrayIndent"] || false;
|
|
@@ -46412,7 +46412,7 @@ var require_dumper = __commonJS({
|
|
|
46412
46412
|
}
|
|
46413
46413
|
function dump(input, options) {
|
|
46414
46414
|
options = options || {};
|
|
46415
|
-
var state = new
|
|
46415
|
+
var state = new State3(options);
|
|
46416
46416
|
if (!state.noRefs) getDuplicateReferences(input, state);
|
|
46417
46417
|
if (writeNode(state, 0, input, true, true)) return state.dump + "\n";
|
|
46418
46418
|
return "";
|
|
@@ -57181,7 +57181,12 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
57181
57181
|
FailedToGetSdkSlotData: {},
|
|
57182
57182
|
FailedToListComponentByComponentType: {},
|
|
57183
57183
|
FailedToParseBackofficeExtensionContainer: {},
|
|
57184
|
-
FailedToParseBackofficePages: {}
|
|
57184
|
+
FailedToParseBackofficePages: {},
|
|
57185
|
+
FailedToPullEnvironment: {},
|
|
57186
|
+
FailedToSetEnvironmentVariable: {},
|
|
57187
|
+
FailedToRemoveEnvironmentVariable: {},
|
|
57188
|
+
FailedToUploadStaticFiles: {},
|
|
57189
|
+
FailedToUploadServerFiles: {}
|
|
57185
57190
|
});
|
|
57186
57191
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
57187
57192
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -57286,7 +57291,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
57286
57291
|
SiteComponentConfigNotFound: (0, import_variant11.fields)(),
|
|
57287
57292
|
FailedToImportCliApp: {},
|
|
57288
57293
|
FailedToCleanDistFolder: {},
|
|
57289
|
-
FailedToIdentifyProgramFlow: (0, import_variant11.fields)()
|
|
57294
|
+
FailedToIdentifyProgramFlow: (0, import_variant11.fields)(),
|
|
57295
|
+
BuildOutputMissing: (0, import_variant11.fields)()
|
|
57290
57296
|
});
|
|
57291
57297
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
57292
57298
|
...CliSystemErrorCode,
|
|
@@ -67751,6 +67757,31 @@ ${errorMessage2}`
|
|
|
67751
67757
|
hint: "Ensure that you are executing the command from inside a project directory."
|
|
67752
67758
|
}
|
|
67753
67759
|
);
|
|
67760
|
+
},
|
|
67761
|
+
FailedToPullEnvironment: () => {
|
|
67762
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to pull environment variables." });
|
|
67763
|
+
},
|
|
67764
|
+
FailedToSetEnvironmentVariable: () => {
|
|
67765
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to set/update environment variable." });
|
|
67766
|
+
},
|
|
67767
|
+
FailedToRemoveEnvironmentVariable: () => {
|
|
67768
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to remove environment variable." });
|
|
67769
|
+
},
|
|
67770
|
+
FailedToUploadStaticFiles: () => {
|
|
67771
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to upload static files." });
|
|
67772
|
+
},
|
|
67773
|
+
FailedToUploadServerFiles: () => {
|
|
67774
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to upload server files." });
|
|
67775
|
+
},
|
|
67776
|
+
BuildOutputMissing: ({ reason }) => {
|
|
67777
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
67778
|
+
ErrorMessage,
|
|
67779
|
+
{
|
|
67780
|
+
message: "Project build output is missing",
|
|
67781
|
+
explanation: reason,
|
|
67782
|
+
hint: "Build the project before proceeding."
|
|
67783
|
+
}
|
|
67784
|
+
);
|
|
67754
67785
|
}
|
|
67755
67786
|
});
|
|
67756
67787
|
}
|
|
@@ -71244,7 +71275,7 @@ function reportCommandStartEvent({
|
|
|
71244
71275
|
var package_default = {
|
|
71245
71276
|
name: "@wix/create-app",
|
|
71246
71277
|
description: "Create Wix apps",
|
|
71247
|
-
version: "0.0.
|
|
71278
|
+
version: "0.0.111",
|
|
71248
71279
|
author: "Ihor Machuzhak",
|
|
71249
71280
|
bin: "bin/index.cjs",
|
|
71250
71281
|
devDependencies: {
|
|
@@ -73120,6 +73151,12 @@ var NPM = class {
|
|
|
73120
73151
|
getRunCmd() {
|
|
73121
73152
|
return "npm run";
|
|
73122
73153
|
}
|
|
73154
|
+
getRunBinaryCmd(args) {
|
|
73155
|
+
return {
|
|
73156
|
+
file: "npx",
|
|
73157
|
+
args: ["--no-install"].concat(args)
|
|
73158
|
+
};
|
|
73159
|
+
}
|
|
73123
73160
|
async setup(_cwd) {
|
|
73124
73161
|
if ((0, import_variant26.isType)(this.repoType, RepoType.Monorepo)) {
|
|
73125
73162
|
throw new CliError({
|
|
@@ -73189,6 +73226,12 @@ var Yarn = class {
|
|
|
73189
73226
|
getRunCmd() {
|
|
73190
73227
|
return "yarn";
|
|
73191
73228
|
}
|
|
73229
|
+
getRunBinaryCmd(args) {
|
|
73230
|
+
return {
|
|
73231
|
+
file: "yarn",
|
|
73232
|
+
args: ["run"].concat(args)
|
|
73233
|
+
};
|
|
73234
|
+
}
|
|
73192
73235
|
async setup(packageFolder) {
|
|
73193
73236
|
return (0, import_variant27.matcher)(this.repoType).when(["None", "Polyrepo"], async () => {
|
|
73194
73237
|
if (this.name === "yarn-berry") {
|
|
@@ -74655,17 +74698,18 @@ init_esm_shims();
|
|
|
74655
74698
|
// ../dev-center-client/src/dev-center-client.ts
|
|
74656
74699
|
init_esm_shims();
|
|
74657
74700
|
|
|
74658
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app/build/es/http.impl.js
|
|
74701
|
+
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-old/build/es/http.impl.js
|
|
74659
74702
|
init_esm_shims();
|
|
74660
74703
|
var __Array = {
|
|
74661
74704
|
checkboxGroupOptions: "_checkboxGroup",
|
|
74662
74705
|
validation: "_arrayType"
|
|
74663
74706
|
};
|
|
74664
74707
|
var __Boolean = { checkboxOptions: "_checkbox" };
|
|
74708
|
+
var __Function = { description: "_description" };
|
|
74665
74709
|
var __Number = {
|
|
74666
|
-
|
|
74667
|
-
|
|
74668
|
-
|
|
74710
|
+
minimum: "google.protobuf.FloatValue",
|
|
74711
|
+
maximum: "google.protobuf.FloatValue",
|
|
74712
|
+
multipleOf: "google.protobuf.FloatValue"
|
|
74669
74713
|
};
|
|
74670
74714
|
var __Object = { validation: "_objectType" };
|
|
74671
74715
|
var __String = {
|
|
@@ -74679,42 +74723,36 @@ var __String = {
|
|
|
74679
74723
|
datePickerOptions: "_datePicker"
|
|
74680
74724
|
};
|
|
74681
74725
|
var _actionProviderSPIConfig = { actionConfig: "_actionSPIConfig" };
|
|
74682
|
-
var _actionSPIConfig = { icon: "
|
|
74726
|
+
var _actionSPIConfig = { icon: "_wixCommonImage" };
|
|
74683
74727
|
var _adminConfigurableTextInput = {
|
|
74684
74728
|
requiredSettings: "google.protobuf.FieldMask",
|
|
74685
74729
|
adminConfigurableSettings: "google.protobuf.FieldMask"
|
|
74686
74730
|
};
|
|
74687
74731
|
var _andCondition = { conditions: "_conditionNode" };
|
|
74688
|
-
var _api_Number = {
|
|
74689
|
-
minimum: "google.protobuf.FloatValue",
|
|
74690
|
-
maximum: "google.protobuf.FloatValue",
|
|
74691
|
-
multipleOf: "google.protobuf.FloatValue"
|
|
74692
|
-
};
|
|
74693
|
-
var _apiArrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
74694
74732
|
var _appData = { components: "_component", pricingModels: "_pricingModel" };
|
|
74695
74733
|
var _appEmbedData = { image: "_media" };
|
|
74696
|
-
var _arrayItems = {
|
|
74734
|
+
var _arrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
74735
|
+
var _arrayType = { items: "_arrayTypeArrayItems" };
|
|
74736
|
+
var _arrayTypeArrayItems = {
|
|
74697
74737
|
numberOptions: "_numberType",
|
|
74698
74738
|
objectOptions: "_objectType"
|
|
74699
74739
|
};
|
|
74700
|
-
var _arrayType = { items: "_arrayItems" };
|
|
74701
74740
|
var _audioData = { audio: "_media", coverImage: "_media" };
|
|
74702
74741
|
var _authenticatorConfig = { expectedInputs: "_expectedInputs" };
|
|
74703
74742
|
var _background = { image: "_media" };
|
|
74704
|
-
var _backOfficeCustomization = { sidebarConfig: "_sidebarConfig" };
|
|
74705
74743
|
var _billing = {
|
|
74706
74744
|
monthlyPrice: "DOUBLE",
|
|
74707
74745
|
yearlyPrice: "DOUBLE",
|
|
74708
74746
|
oneTimePrice: "DOUBLE",
|
|
74709
74747
|
meteredBilling: "_meteredBilling"
|
|
74710
74748
|
};
|
|
74711
|
-
var _category = { children: "_sidebarChildItem" };
|
|
74712
74749
|
var _checkbox = { label: "_richContent" };
|
|
74713
|
-
var _checkboxGroup = {
|
|
74714
|
-
|
|
74715
|
-
|
|
74716
|
-
focalPoint: "_focalPoint"
|
|
74750
|
+
var _checkboxGroup = {
|
|
74751
|
+
description: "_richContent",
|
|
74752
|
+
options: "_checkboxGroupOption"
|
|
74717
74753
|
};
|
|
74754
|
+
var _checkboxGroupOption = { media: "_mediaItem" };
|
|
74755
|
+
var _commonImage = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
74718
74756
|
var _component = { compData: "_componentData" };
|
|
74719
74757
|
var _componentData = {
|
|
74720
74758
|
widgetComponentData: "_widgetComponentData",
|
|
@@ -74728,19 +74766,19 @@ var _componentData = {
|
|
|
74728
74766
|
multilingualTranslationSchema: "_multilingualTranslationSchema",
|
|
74729
74767
|
formTemplate: "_formTemplate",
|
|
74730
74768
|
functionsShopPriceProvider: "_functionsShopPriceSpiConfig",
|
|
74731
|
-
function: "
|
|
74769
|
+
function: "__Function",
|
|
74732
74770
|
papiProvider: "_pluginConfig",
|
|
74733
74771
|
multilingualTranslationSchemaGroup: "_schemaGroup",
|
|
74734
|
-
editorReactComponent: "_editorReactComponent"
|
|
74735
|
-
backOfficeCustomization: "_backOfficeCustomization"
|
|
74772
|
+
editorReactComponent: "_editorReactComponent"
|
|
74736
74773
|
};
|
|
74774
|
+
var _componentsMultilineAddress = { description: "_richContent" };
|
|
74737
74775
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
74738
|
-
var _dataItem = { number: "
|
|
74776
|
+
var _dataItem = { number: "__Number", arrayItems: "_arrayItems" };
|
|
74739
74777
|
var _dataItems = { items: "Map#_dataItem" };
|
|
74740
74778
|
var _dateInput = { description: "_richContent" };
|
|
74741
74779
|
var _datePicker = { description: "_richContent" };
|
|
74742
74780
|
var _dateTimeInput = { description: "_richContent" };
|
|
74743
|
-
var _description = { representativeImage: "
|
|
74781
|
+
var _description = { representativeImage: "_wixCommonImage" };
|
|
74744
74782
|
var _design = { poll: "_pollDesign" };
|
|
74745
74783
|
var _devCenterTestingComponentData = {
|
|
74746
74784
|
translatableMessageInOneOf: "_messageContainingTranslatables",
|
|
@@ -74784,7 +74822,6 @@ var _formTemplate = {
|
|
|
74784
74822
|
rules: "_v2Rule",
|
|
74785
74823
|
submitSettings: "_submitSettings"
|
|
74786
74824
|
};
|
|
74787
|
-
var _function = { description: "_description" };
|
|
74788
74825
|
var _functionsShopPriceSpiConfig = {
|
|
74789
74826
|
shopNumber: "google.protobuf.DoubleValue"
|
|
74790
74827
|
};
|
|
@@ -74805,17 +74842,19 @@ var _inlineElement = {
|
|
|
74805
74842
|
};
|
|
74806
74843
|
var _inputField = {
|
|
74807
74844
|
stringOptions: "__String",
|
|
74808
|
-
numberOptions: "
|
|
74845
|
+
numberOptions: "_inputField_Number",
|
|
74809
74846
|
booleanOptions: "__Boolean",
|
|
74810
74847
|
arrayOptions: "__Array",
|
|
74811
74848
|
objectOptions: "__Object",
|
|
74812
74849
|
wixFileOptions: "_wixFile",
|
|
74813
74850
|
paymentOptions: "_payment",
|
|
74814
|
-
multilineAddressOptions: "_inputFieldMultilineAddress"
|
|
74815
|
-
};
|
|
74816
|
-
var _inputFieldMultilineAddress = {
|
|
74817
74851
|
multilineAddressOptions: "_multilineAddress"
|
|
74818
74852
|
};
|
|
74853
|
+
var _inputField_Number = {
|
|
74854
|
+
numberInputOptions: "_numberInput",
|
|
74855
|
+
ratingInputOptions: "_ratingInput",
|
|
74856
|
+
validation: "_numberType"
|
|
74857
|
+
};
|
|
74819
74858
|
var _item = { image: "_itemImage", video: "_video" };
|
|
74820
74859
|
var _itemImage = { media: "_media" };
|
|
74821
74860
|
var _itemStyle = { ratio: "google.protobuf.DoubleValue" };
|
|
@@ -74825,7 +74864,7 @@ var _mapSettings = {
|
|
|
74825
74864
|
lng: "google.protobuf.DoubleValue"
|
|
74826
74865
|
};
|
|
74827
74866
|
var _media = { duration: "google.protobuf.DoubleValue" };
|
|
74828
|
-
var _mediaItem = { image: "
|
|
74867
|
+
var _mediaItem = { image: "_commonImage" };
|
|
74829
74868
|
var _messageContainingTranslatables = {
|
|
74830
74869
|
innerTranslatableRichContent: "_richContent"
|
|
74831
74870
|
};
|
|
@@ -74833,7 +74872,9 @@ var _meteredBilling = {
|
|
|
74833
74872
|
monthlyBaseFee: "DOUBLE",
|
|
74834
74873
|
additionalCharges: "google.protobuf.DoubleValue"
|
|
74835
74874
|
};
|
|
74836
|
-
var _multilineAddress = {
|
|
74875
|
+
var _multilineAddress = {
|
|
74876
|
+
multilineAddressOptions: "_componentsMultilineAddress"
|
|
74877
|
+
};
|
|
74837
74878
|
var _multilingualTranslationSchema = { referenceData: "_schema" };
|
|
74838
74879
|
var _node = {
|
|
74839
74880
|
galleryData: "_galleryData",
|
|
@@ -74856,7 +74897,6 @@ var _numberType = {
|
|
|
74856
74897
|
enum: "google.protobuf.DoubleValue"
|
|
74857
74898
|
};
|
|
74858
74899
|
var _objectType = { properties: "Map#_propertiesType" };
|
|
74859
|
-
var _option = { media: "_mediaItem" };
|
|
74860
74900
|
var _orCondition = { conditions: "_conditionNode" };
|
|
74861
74901
|
var _packageDimension = {
|
|
74862
74902
|
width: "DOUBLE",
|
|
@@ -74881,7 +74921,7 @@ var _predefinedExpectedInput = {
|
|
|
74881
74921
|
var _predefinedExpectedInputConfiguration = {
|
|
74882
74922
|
textInput: "_adminConfigurableTextInput"
|
|
74883
74923
|
};
|
|
74884
|
-
var _presetEditorPresence = { wixMediaThumbnail: "
|
|
74924
|
+
var _presetEditorPresence = { wixMediaThumbnail: "_wixCommonImage" };
|
|
74885
74925
|
var _presetItem = { elementsStyleDefaults: "Map#_elementStyleDefaults" };
|
|
74886
74926
|
var _pricingModel = { plans: "_plan" };
|
|
74887
74927
|
var _productCheckboxGroup = {
|
|
@@ -74893,8 +74933,6 @@ var _propertiesType = {
|
|
|
74893
74933
|
numberOptions: "_numberType",
|
|
74894
74934
|
arrayOptions: "_arrayType"
|
|
74895
74935
|
};
|
|
74896
|
-
var _queryAppRequest = {};
|
|
74897
|
-
var _queryAppResponse = { apps: "_v1App" };
|
|
74898
74936
|
var _radioGroup = { description: "_richContent" };
|
|
74899
74937
|
var _ratingInput = { description: "_richContent" };
|
|
74900
74938
|
var _refElement = { resolvedElement: "_inlineElement" };
|
|
@@ -74911,9 +74949,6 @@ var _schemaGroup = {
|
|
|
74911
74949
|
};
|
|
74912
74950
|
var _shippingLabelCarrierSpiConfig = { packageTypes: "_packageType" };
|
|
74913
74951
|
var _shippingProviderConfig = { shippingPrice: "DOUBLE" };
|
|
74914
|
-
var _sidebarChildItem = { category: "_category" };
|
|
74915
|
-
var _sidebarConfig = { sidebarItems: "_sidebarRootItem" };
|
|
74916
|
-
var _sidebarRootItem = { category: "_category" };
|
|
74917
74952
|
var _signature = { description: "_richContent" };
|
|
74918
74953
|
var _studioWidgetComponentData = {
|
|
74919
74954
|
widgetDisplay: "_widgetDisplay",
|
|
@@ -74923,17 +74958,6 @@ var _submitSettings = { thankYouMessageOptions: "_thankYouMessageOptions" };
|
|
|
74923
74958
|
var _textInput = { description: "_richContent" };
|
|
74924
74959
|
var _thankYouMessageOptions = { richContent: "_richContent" };
|
|
74925
74960
|
var _timeInput = { description: "_richContent" };
|
|
74926
|
-
var _upstreamWixCommonImage = {
|
|
74927
|
-
urlExpirationDate: "google.protobuf.Timestamp"
|
|
74928
|
-
};
|
|
74929
|
-
var _v1App = {
|
|
74930
|
-
createdDate: "google.protobuf.Timestamp",
|
|
74931
|
-
updatedDate: "google.protobuf.Timestamp"
|
|
74932
|
-
};
|
|
74933
|
-
var _v1CreateAppRequest = { app: "_v1App" };
|
|
74934
|
-
var _v1CreateAppResponse = { app: "_v1App" };
|
|
74935
|
-
var _v1GetAppRequest = {};
|
|
74936
|
-
var _v1GetAppResponse = { app: "_v1App" };
|
|
74937
74961
|
var _v1Metadata = {
|
|
74938
74962
|
createdTimestamp: "google.protobuf.Timestamp",
|
|
74939
74963
|
updatedTimestamp: "google.protobuf.Timestamp"
|
|
@@ -74945,6 +74969,10 @@ var _videoData = { video: "_media", thumbnail: "_media" };
|
|
|
74945
74969
|
var _widgetComponentData = { widgetDisplay: "_widgetDisplay" };
|
|
74946
74970
|
var _widgetDisplay = { price: "google.protobuf.FloatValue" };
|
|
74947
74971
|
var _widgetOutOfIframeComponentData = { widgetData: "_widgetComponentData" };
|
|
74972
|
+
var _wixCommonImage = {
|
|
74973
|
+
urlExpirationDate: "google.protobuf.Timestamp",
|
|
74974
|
+
focalPoint: "_focalPoint"
|
|
74975
|
+
};
|
|
74948
74976
|
var _wixFile = {
|
|
74949
74977
|
fileUploadOptions: "_fileUpload",
|
|
74950
74978
|
signatureOptions: "_signature"
|
|
@@ -75062,6 +75090,171 @@ function resolveComWixpressAppserviceApiAppsUrl(opts) {
|
|
|
75062
75090
|
};
|
|
75063
75091
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
75064
75092
|
}
|
|
75093
|
+
function getAppByVersion(payload5) {
|
|
75094
|
+
var _a3 = serializer(_getAppByVersionRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
75095
|
+
var fromRes = serializer(_getAppResponse, {
|
|
75096
|
+
__Array,
|
|
75097
|
+
__Boolean,
|
|
75098
|
+
__Function,
|
|
75099
|
+
__Number,
|
|
75100
|
+
__Object,
|
|
75101
|
+
__String,
|
|
75102
|
+
_actionProviderSPIConfig,
|
|
75103
|
+
_actionSPIConfig,
|
|
75104
|
+
_adminConfigurableTextInput,
|
|
75105
|
+
_andCondition,
|
|
75106
|
+
_appData,
|
|
75107
|
+
_appEmbedData,
|
|
75108
|
+
_arrayItems,
|
|
75109
|
+
_arrayType,
|
|
75110
|
+
_arrayTypeArrayItems,
|
|
75111
|
+
_audioData,
|
|
75112
|
+
_authenticatorConfig,
|
|
75113
|
+
_background,
|
|
75114
|
+
_billing,
|
|
75115
|
+
_checkbox,
|
|
75116
|
+
_checkboxGroup,
|
|
75117
|
+
_checkboxGroupOption,
|
|
75118
|
+
_commonImage,
|
|
75119
|
+
_component,
|
|
75120
|
+
_componentData,
|
|
75121
|
+
_componentsMultilineAddress,
|
|
75122
|
+
_conditionNode,
|
|
75123
|
+
_dataItem,
|
|
75124
|
+
_dataItems,
|
|
75125
|
+
_dateInput,
|
|
75126
|
+
_datePicker,
|
|
75127
|
+
_dateTimeInput,
|
|
75128
|
+
_description,
|
|
75129
|
+
_design,
|
|
75130
|
+
_devCenterTestingComponentData,
|
|
75131
|
+
_displayField,
|
|
75132
|
+
_donationInput,
|
|
75133
|
+
_dropdown,
|
|
75134
|
+
_editorElement,
|
|
75135
|
+
_editorPresence,
|
|
75136
|
+
_editorReactComponent,
|
|
75137
|
+
_elementDefaults,
|
|
75138
|
+
_elementItem,
|
|
75139
|
+
_elementStyleDefaults,
|
|
75140
|
+
_expectedInputs,
|
|
75141
|
+
_field,
|
|
75142
|
+
_fileUpload,
|
|
75143
|
+
_focalPoint,
|
|
75144
|
+
_formTemplate,
|
|
75145
|
+
_functionsShopPriceSpiConfig,
|
|
75146
|
+
_galleryData,
|
|
75147
|
+
_galleryOptions,
|
|
75148
|
+
_image,
|
|
75149
|
+
_imageData,
|
|
75150
|
+
_inlineElement,
|
|
75151
|
+
_inputField,
|
|
75152
|
+
_inputField_Number,
|
|
75153
|
+
_item,
|
|
75154
|
+
_itemImage,
|
|
75155
|
+
_itemStyle,
|
|
75156
|
+
_mapData,
|
|
75157
|
+
_mapSettings,
|
|
75158
|
+
_media,
|
|
75159
|
+
_mediaItem,
|
|
75160
|
+
_messageContainingTranslatables,
|
|
75161
|
+
_meteredBilling,
|
|
75162
|
+
_multilineAddress,
|
|
75163
|
+
_multilingualTranslationSchema,
|
|
75164
|
+
_node,
|
|
75165
|
+
_numberInput,
|
|
75166
|
+
_numberType,
|
|
75167
|
+
_objectType,
|
|
75168
|
+
_orCondition,
|
|
75169
|
+
_packageDimension,
|
|
75170
|
+
_packageType,
|
|
75171
|
+
_payment,
|
|
75172
|
+
_phoneInput,
|
|
75173
|
+
_plan,
|
|
75174
|
+
_pluginConfig,
|
|
75175
|
+
_poll,
|
|
75176
|
+
_pollData,
|
|
75177
|
+
_pollDesign,
|
|
75178
|
+
_pollOption,
|
|
75179
|
+
_predefinedExpectedInput,
|
|
75180
|
+
_predefinedExpectedInputConfiguration,
|
|
75181
|
+
_presetEditorPresence,
|
|
75182
|
+
_presetItem,
|
|
75183
|
+
_pricingModel,
|
|
75184
|
+
_productCheckboxGroup,
|
|
75185
|
+
_productCheckboxGroupOption,
|
|
75186
|
+
_propertiesType,
|
|
75187
|
+
_radioGroup,
|
|
75188
|
+
_ratingInput,
|
|
75189
|
+
_refElement,
|
|
75190
|
+
_richContent,
|
|
75191
|
+
_richContentOptions,
|
|
75192
|
+
_schema,
|
|
75193
|
+
_schemaGroup,
|
|
75194
|
+
_shippingLabelCarrierSpiConfig,
|
|
75195
|
+
_shippingProviderConfig,
|
|
75196
|
+
_signature,
|
|
75197
|
+
_studioWidgetComponentData,
|
|
75198
|
+
_submitSettings,
|
|
75199
|
+
_textInput,
|
|
75200
|
+
_thankYouMessageOptions,
|
|
75201
|
+
_timeInput,
|
|
75202
|
+
_v1Metadata,
|
|
75203
|
+
_v1SchemaField,
|
|
75204
|
+
_v2Rule,
|
|
75205
|
+
_video,
|
|
75206
|
+
_videoData,
|
|
75207
|
+
_widgetComponentData,
|
|
75208
|
+
_widgetDisplay,
|
|
75209
|
+
_widgetOutOfIframeComponentData,
|
|
75210
|
+
_wixCommonImage,
|
|
75211
|
+
_wixFile
|
|
75212
|
+
}).fromJSON;
|
|
75213
|
+
function __getAppByVersion(_a4) {
|
|
75214
|
+
var host = _a4.host;
|
|
75215
|
+
var serializedData = toReq(payload5);
|
|
75216
|
+
var metadata = {
|
|
75217
|
+
entityFqdn: "wix.devcenter.apps.v1.app_old",
|
|
75218
|
+
method: "GET",
|
|
75219
|
+
methodFqn: "com.wixpress.appservice.api.Apps.GetAppByVersion",
|
|
75220
|
+
url: resolveComWixpressAppserviceApiAppsUrl({
|
|
75221
|
+
protoPath: "/v1/apps/{appId}/version/{version}",
|
|
75222
|
+
data: serializedData,
|
|
75223
|
+
host
|
|
75224
|
+
}),
|
|
75225
|
+
params: toURLSearchParams(serializedData),
|
|
75226
|
+
transformResponse: fromRes,
|
|
75227
|
+
fallback: [
|
|
75228
|
+
{
|
|
75229
|
+
method: "GET",
|
|
75230
|
+
url: resolveComWixpressAppserviceApiAppsUrl({
|
|
75231
|
+
protoPath: "/v1/apps/{appId}/version/{version}",
|
|
75232
|
+
data: serializedData,
|
|
75233
|
+
host
|
|
75234
|
+
}),
|
|
75235
|
+
params: toURLSearchParams(serializedData)
|
|
75236
|
+
}
|
|
75237
|
+
]
|
|
75238
|
+
};
|
|
75239
|
+
return metadata;
|
|
75240
|
+
}
|
|
75241
|
+
__getAppByVersion.fromReq = fromReq;
|
|
75242
|
+
__getAppByVersion.__isAmbassador = true;
|
|
75243
|
+
return __getAppByVersion;
|
|
75244
|
+
}
|
|
75245
|
+
|
|
75246
|
+
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app/build/es/http.impl.js
|
|
75247
|
+
init_esm_shims();
|
|
75248
|
+
var _queryAppRequest = {};
|
|
75249
|
+
var _queryAppResponse = { apps: "_v1App" };
|
|
75250
|
+
var _v1App = {
|
|
75251
|
+
createdDate: "google.protobuf.Timestamp",
|
|
75252
|
+
updatedDate: "google.protobuf.Timestamp"
|
|
75253
|
+
};
|
|
75254
|
+
var _v1CreateAppRequest = { app: "_v1App" };
|
|
75255
|
+
var _v1CreateAppResponse = { app: "_v1App" };
|
|
75256
|
+
var _v1GetAppRequest = {};
|
|
75257
|
+
var _v1GetAppResponse = { app: "_v1App" };
|
|
75065
75258
|
function resolveWixDevcenterAppsV1AppsServiceUrl(opts) {
|
|
75066
75259
|
var domainToMappings = {
|
|
75067
75260
|
"editor._base_domain_": [
|
|
@@ -75211,163 +75404,6 @@ function queryApp(payload5) {
|
|
|
75211
75404
|
__queryApp.__isAmbassador = true;
|
|
75212
75405
|
return __queryApp;
|
|
75213
75406
|
}
|
|
75214
|
-
function getAppByVersion(payload5) {
|
|
75215
|
-
var _a3 = serializer(_getAppByVersionRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
75216
|
-
var fromRes = serializer(_getAppResponse, {
|
|
75217
|
-
__Array,
|
|
75218
|
-
__Boolean,
|
|
75219
|
-
__Number,
|
|
75220
|
-
__Object,
|
|
75221
|
-
__String,
|
|
75222
|
-
_actionProviderSPIConfig,
|
|
75223
|
-
_actionSPIConfig,
|
|
75224
|
-
_adminConfigurableTextInput,
|
|
75225
|
-
_andCondition,
|
|
75226
|
-
_apiArrayItems,
|
|
75227
|
-
_api_Number,
|
|
75228
|
-
_appData,
|
|
75229
|
-
_appEmbedData,
|
|
75230
|
-
_arrayItems,
|
|
75231
|
-
_arrayType,
|
|
75232
|
-
_audioData,
|
|
75233
|
-
_authenticatorConfig,
|
|
75234
|
-
_backOfficeCustomization,
|
|
75235
|
-
_background,
|
|
75236
|
-
_billing,
|
|
75237
|
-
_category,
|
|
75238
|
-
_checkbox,
|
|
75239
|
-
_checkboxGroup,
|
|
75240
|
-
_commonImage,
|
|
75241
|
-
_component,
|
|
75242
|
-
_componentData,
|
|
75243
|
-
_conditionNode,
|
|
75244
|
-
_dataItem,
|
|
75245
|
-
_dataItems,
|
|
75246
|
-
_dateInput,
|
|
75247
|
-
_datePicker,
|
|
75248
|
-
_dateTimeInput,
|
|
75249
|
-
_description,
|
|
75250
|
-
_design,
|
|
75251
|
-
_devCenterTestingComponentData,
|
|
75252
|
-
_displayField,
|
|
75253
|
-
_donationInput,
|
|
75254
|
-
_dropdown,
|
|
75255
|
-
_editorElement,
|
|
75256
|
-
_editorPresence,
|
|
75257
|
-
_editorReactComponent,
|
|
75258
|
-
_elementDefaults,
|
|
75259
|
-
_elementItem,
|
|
75260
|
-
_elementStyleDefaults,
|
|
75261
|
-
_expectedInputs,
|
|
75262
|
-
_field,
|
|
75263
|
-
_fileUpload,
|
|
75264
|
-
_focalPoint,
|
|
75265
|
-
_formTemplate,
|
|
75266
|
-
_function,
|
|
75267
|
-
_functionsShopPriceSpiConfig,
|
|
75268
|
-
_galleryData,
|
|
75269
|
-
_galleryOptions,
|
|
75270
|
-
_image,
|
|
75271
|
-
_imageData,
|
|
75272
|
-
_inlineElement,
|
|
75273
|
-
_inputField,
|
|
75274
|
-
_inputFieldMultilineAddress,
|
|
75275
|
-
_item,
|
|
75276
|
-
_itemImage,
|
|
75277
|
-
_itemStyle,
|
|
75278
|
-
_mapData,
|
|
75279
|
-
_mapSettings,
|
|
75280
|
-
_media,
|
|
75281
|
-
_mediaItem,
|
|
75282
|
-
_messageContainingTranslatables,
|
|
75283
|
-
_meteredBilling,
|
|
75284
|
-
_multilineAddress,
|
|
75285
|
-
_multilingualTranslationSchema,
|
|
75286
|
-
_node,
|
|
75287
|
-
_numberInput,
|
|
75288
|
-
_numberType,
|
|
75289
|
-
_objectType,
|
|
75290
|
-
_option,
|
|
75291
|
-
_orCondition,
|
|
75292
|
-
_packageDimension,
|
|
75293
|
-
_packageType,
|
|
75294
|
-
_payment,
|
|
75295
|
-
_phoneInput,
|
|
75296
|
-
_plan,
|
|
75297
|
-
_pluginConfig,
|
|
75298
|
-
_poll,
|
|
75299
|
-
_pollData,
|
|
75300
|
-
_pollDesign,
|
|
75301
|
-
_pollOption,
|
|
75302
|
-
_predefinedExpectedInput,
|
|
75303
|
-
_predefinedExpectedInputConfiguration,
|
|
75304
|
-
_presetEditorPresence,
|
|
75305
|
-
_presetItem,
|
|
75306
|
-
_pricingModel,
|
|
75307
|
-
_productCheckboxGroup,
|
|
75308
|
-
_productCheckboxGroupOption,
|
|
75309
|
-
_propertiesType,
|
|
75310
|
-
_radioGroup,
|
|
75311
|
-
_ratingInput,
|
|
75312
|
-
_refElement,
|
|
75313
|
-
_richContent,
|
|
75314
|
-
_richContentOptions,
|
|
75315
|
-
_schema,
|
|
75316
|
-
_schemaGroup,
|
|
75317
|
-
_shippingLabelCarrierSpiConfig,
|
|
75318
|
-
_shippingProviderConfig,
|
|
75319
|
-
_sidebarChildItem,
|
|
75320
|
-
_sidebarConfig,
|
|
75321
|
-
_sidebarRootItem,
|
|
75322
|
-
_signature,
|
|
75323
|
-
_studioWidgetComponentData,
|
|
75324
|
-
_submitSettings,
|
|
75325
|
-
_textInput,
|
|
75326
|
-
_thankYouMessageOptions,
|
|
75327
|
-
_timeInput,
|
|
75328
|
-
_upstreamWixCommonImage,
|
|
75329
|
-
_v1Metadata,
|
|
75330
|
-
_v1SchemaField,
|
|
75331
|
-
_v2Rule,
|
|
75332
|
-
_video,
|
|
75333
|
-
_videoData,
|
|
75334
|
-
_widgetComponentData,
|
|
75335
|
-
_widgetDisplay,
|
|
75336
|
-
_widgetOutOfIframeComponentData,
|
|
75337
|
-
_wixFile
|
|
75338
|
-
}).fromJSON;
|
|
75339
|
-
function __getAppByVersion(_a4) {
|
|
75340
|
-
var host = _a4.host;
|
|
75341
|
-
var serializedData = toReq(payload5);
|
|
75342
|
-
var metadata = {
|
|
75343
|
-
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
75344
|
-
method: "GET",
|
|
75345
|
-
methodFqn: "com.wixpress.appservice.api.Apps.GetAppByVersion",
|
|
75346
|
-
url: resolveComWixpressAppserviceApiAppsUrl({
|
|
75347
|
-
protoPath: "/v1/apps/{appId}/version/{version}",
|
|
75348
|
-
data: serializedData,
|
|
75349
|
-
host
|
|
75350
|
-
}),
|
|
75351
|
-
params: toURLSearchParams(serializedData),
|
|
75352
|
-
transformResponse: fromRes,
|
|
75353
|
-
fallback: [
|
|
75354
|
-
{
|
|
75355
|
-
method: "GET",
|
|
75356
|
-
url: resolveComWixpressAppserviceApiAppsUrl({
|
|
75357
|
-
protoPath: "/v1/apps/{appId}/version/{version}",
|
|
75358
|
-
data: serializedData,
|
|
75359
|
-
host
|
|
75360
|
-
}),
|
|
75361
|
-
params: toURLSearchParams(serializedData)
|
|
75362
|
-
}
|
|
75363
|
-
]
|
|
75364
|
-
};
|
|
75365
|
-
return metadata;
|
|
75366
|
-
}
|
|
75367
|
-
__getAppByVersion.fromReq = fromReq;
|
|
75368
|
-
__getAppByVersion.__isAmbassador = true;
|
|
75369
|
-
return __getAppByVersion;
|
|
75370
|
-
}
|
|
75371
75407
|
|
|
75372
75408
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/http.impl.js
|
|
75373
75409
|
init_esm_shims();
|
|
@@ -75460,11 +75496,11 @@ function queryAppVersion(payload5) {
|
|
|
75460
75496
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/types.impl.js
|
|
75461
75497
|
init_esm_shims();
|
|
75462
75498
|
var State;
|
|
75463
|
-
(function(
|
|
75464
|
-
|
|
75465
|
-
|
|
75466
|
-
|
|
75467
|
-
|
|
75499
|
+
(function(State3) {
|
|
75500
|
+
State3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
75501
|
+
State3["UNLOCKED_DRAFT"] = "UNLOCKED_DRAFT";
|
|
75502
|
+
State3["LOCKED_DRAFT"] = "LOCKED_DRAFT";
|
|
75503
|
+
State3["PRODUCTION"] = "PRODUCTION";
|
|
75468
75504
|
})(State || (State = {}));
|
|
75469
75505
|
var Status;
|
|
75470
75506
|
(function(Status5) {
|
|
@@ -75473,11 +75509,11 @@ var Status;
|
|
|
75473
75509
|
Status5["ARCHIVED"] = "ARCHIVED";
|
|
75474
75510
|
})(Status || (Status = {}));
|
|
75475
75511
|
var CreatedByType;
|
|
75476
|
-
(function(
|
|
75477
|
-
|
|
75478
|
-
|
|
75479
|
-
|
|
75480
|
-
|
|
75512
|
+
(function(CreatedByType3) {
|
|
75513
|
+
CreatedByType3["UNKNOWN_CREATED_BY"] = "UNKNOWN_CREATED_BY";
|
|
75514
|
+
CreatedByType3["USER"] = "USER";
|
|
75515
|
+
CreatedByType3["SERVICE"] = "SERVICE";
|
|
75516
|
+
CreatedByType3["ACCOUNT"] = "ACCOUNT";
|
|
75481
75517
|
})(CreatedByType || (CreatedByType = {}));
|
|
75482
75518
|
var PromoteStrategy;
|
|
75483
75519
|
(function(PromoteStrategy2) {
|
|
@@ -75498,9 +75534,9 @@ var VersionStatus;
|
|
|
75498
75534
|
VersionStatus3["RELEASED"] = "RELEASED";
|
|
75499
75535
|
})(VersionStatus || (VersionStatus = {}));
|
|
75500
75536
|
var SortOrder;
|
|
75501
|
-
(function(
|
|
75502
|
-
|
|
75503
|
-
|
|
75537
|
+
(function(SortOrder2) {
|
|
75538
|
+
SortOrder2["ASC"] = "ASC";
|
|
75539
|
+
SortOrder2["DESC"] = "DESC";
|
|
75504
75540
|
})(SortOrder || (SortOrder = {}));
|
|
75505
75541
|
var PlanStatus;
|
|
75506
75542
|
(function(PlanStatus3) {
|
|
@@ -76049,12 +76085,12 @@ var _adminConfigurableTextInput2 = {
|
|
|
76049
76085
|
adminConfigurableSettings: "google.protobuf.FieldMask"
|
|
76050
76086
|
};
|
|
76051
76087
|
var _andCondition2 = { conditions: "_conditionNode" };
|
|
76052
|
-
var
|
|
76088
|
+
var _api_Number = {
|
|
76053
76089
|
minimum: "google.protobuf.FloatValue",
|
|
76054
76090
|
maximum: "google.protobuf.FloatValue",
|
|
76055
76091
|
multipleOf: "google.protobuf.FloatValue"
|
|
76056
76092
|
};
|
|
76057
|
-
var
|
|
76093
|
+
var _apiArrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
76058
76094
|
var _appEmbedData2 = { image: "_media" };
|
|
76059
76095
|
var _arrayItems2 = {
|
|
76060
76096
|
numberOptions: "_numberType",
|
|
@@ -76064,8 +76100,8 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
76064
76100
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
76065
76101
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
76066
76102
|
var _background2 = { image: "_media" };
|
|
76067
|
-
var
|
|
76068
|
-
var
|
|
76103
|
+
var _backOfficeCustomization = { sidebarConfig: "_sidebarConfig" };
|
|
76104
|
+
var _category = { children: "_sidebarChildItem" };
|
|
76069
76105
|
var _checkbox2 = { label: "_richContent" };
|
|
76070
76106
|
var _checkboxGroup2 = { description: "_richContent", options: "_option" };
|
|
76071
76107
|
var _commonImage2 = {
|
|
@@ -76143,7 +76179,7 @@ var _formTemplate2 = {
|
|
|
76143
76179
|
submitSettings: "_submitSettings"
|
|
76144
76180
|
};
|
|
76145
76181
|
var _freeTrialData = { endDate: "google.protobuf.Timestamp" };
|
|
76146
|
-
var
|
|
76182
|
+
var _function = { description: "_description" };
|
|
76147
76183
|
var _functionsShopPriceSpiConfig2 = {
|
|
76148
76184
|
shopNumber: "google.protobuf.DoubleValue"
|
|
76149
76185
|
};
|
|
@@ -76167,7 +76203,7 @@ var _inputField2 = {
|
|
|
76167
76203
|
paymentOptions: "_payment",
|
|
76168
76204
|
multilineAddressOptions: "_inputFieldMultilineAddress"
|
|
76169
76205
|
};
|
|
76170
|
-
var
|
|
76206
|
+
var _inputFieldMultilineAddress = {
|
|
76171
76207
|
multilineAddressOptions: "_multilineAddress"
|
|
76172
76208
|
};
|
|
76173
76209
|
var _item2 = { image: "_itemImage", video: "_video" };
|
|
@@ -76213,7 +76249,7 @@ var _numberType2 = {
|
|
|
76213
76249
|
enum: "google.protobuf.DoubleValue"
|
|
76214
76250
|
};
|
|
76215
76251
|
var _objectType2 = { properties: "Map#_propertiesType" };
|
|
76216
|
-
var
|
|
76252
|
+
var _option = { media: "_mediaItem" };
|
|
76217
76253
|
var _orCondition2 = { conditions: "_conditionNode" };
|
|
76218
76254
|
var _packageDimension2 = {
|
|
76219
76255
|
width: "DOUBLE",
|
|
@@ -76270,9 +76306,9 @@ var _schemaGroup2 = {
|
|
|
76270
76306
|
};
|
|
76271
76307
|
var _shippingLabelCarrierSpiConfig2 = { packageTypes: "_packageType" };
|
|
76272
76308
|
var _shippingProviderConfig2 = { shippingPrice: "DOUBLE" };
|
|
76273
|
-
var
|
|
76274
|
-
var
|
|
76275
|
-
var
|
|
76309
|
+
var _sidebarChildItem = { category: "_category" };
|
|
76310
|
+
var _sidebarConfig = { sidebarItems: "_sidebarRootItem" };
|
|
76311
|
+
var _sidebarRootItem = { category: "_category" };
|
|
76276
76312
|
var _signature2 = { description: "_richContent" };
|
|
76277
76313
|
var _studioWidgetComponentData2 = {
|
|
76278
76314
|
widgetDisplay: "_widgetDisplay",
|
|
@@ -76282,7 +76318,7 @@ var _submitSettings2 = { thankYouMessageOptions: "_thankYouMessageOptions" };
|
|
|
76282
76318
|
var _textInput2 = { description: "_richContent" };
|
|
76283
76319
|
var _thankYouMessageOptions2 = { richContent: "_richContent" };
|
|
76284
76320
|
var _timeInput2 = { description: "_richContent" };
|
|
76285
|
-
var
|
|
76321
|
+
var _upstreamWixCommonImage = {
|
|
76286
76322
|
urlExpirationDate: "google.protobuf.Timestamp"
|
|
76287
76323
|
};
|
|
76288
76324
|
var _v1Metadata2 = {
|
|
@@ -76377,16 +76413,16 @@ function managedApps(payload5) {
|
|
|
76377
76413
|
_actionSPIConfig: _actionSPIConfig2,
|
|
76378
76414
|
_adminConfigurableTextInput: _adminConfigurableTextInput2,
|
|
76379
76415
|
_andCondition: _andCondition2,
|
|
76380
|
-
_apiArrayItems
|
|
76381
|
-
_api_Number
|
|
76416
|
+
_apiArrayItems,
|
|
76417
|
+
_api_Number,
|
|
76382
76418
|
_appEmbedData: _appEmbedData2,
|
|
76383
76419
|
_arrayItems: _arrayItems2,
|
|
76384
76420
|
_arrayType: _arrayType2,
|
|
76385
76421
|
_audioData: _audioData2,
|
|
76386
76422
|
_authenticatorConfig: _authenticatorConfig2,
|
|
76387
|
-
_backOfficeCustomization
|
|
76423
|
+
_backOfficeCustomization,
|
|
76388
76424
|
_background: _background2,
|
|
76389
|
-
_category
|
|
76425
|
+
_category,
|
|
76390
76426
|
_checkbox: _checkbox2,
|
|
76391
76427
|
_checkboxGroup: _checkboxGroup2,
|
|
76392
76428
|
_commonImage: _commonImage2,
|
|
@@ -76417,7 +76453,7 @@ function managedApps(payload5) {
|
|
|
76417
76453
|
_focalPoint: _focalPoint2,
|
|
76418
76454
|
_formTemplate: _formTemplate2,
|
|
76419
76455
|
_freeTrialData,
|
|
76420
|
-
_function
|
|
76456
|
+
_function,
|
|
76421
76457
|
_functionsShopPriceSpiConfig: _functionsShopPriceSpiConfig2,
|
|
76422
76458
|
_galleryData: _galleryData2,
|
|
76423
76459
|
_galleryOptions: _galleryOptions2,
|
|
@@ -76425,7 +76461,7 @@ function managedApps(payload5) {
|
|
|
76425
76461
|
_imageData: _imageData2,
|
|
76426
76462
|
_inlineElement: _inlineElement2,
|
|
76427
76463
|
_inputField: _inputField2,
|
|
76428
|
-
_inputFieldMultilineAddress
|
|
76464
|
+
_inputFieldMultilineAddress,
|
|
76429
76465
|
_item: _item2,
|
|
76430
76466
|
_itemImage: _itemImage2,
|
|
76431
76467
|
_itemStyle: _itemStyle2,
|
|
@@ -76441,7 +76477,7 @@ function managedApps(payload5) {
|
|
|
76441
76477
|
_numberInput: _numberInput2,
|
|
76442
76478
|
_numberType: _numberType2,
|
|
76443
76479
|
_objectType: _objectType2,
|
|
76444
|
-
_option
|
|
76480
|
+
_option,
|
|
76445
76481
|
_orCondition: _orCondition2,
|
|
76446
76482
|
_packageDimension: _packageDimension2,
|
|
76447
76483
|
_packageType: _packageType2,
|
|
@@ -76471,16 +76507,16 @@ function managedApps(payload5) {
|
|
|
76471
76507
|
_schemaGroup: _schemaGroup2,
|
|
76472
76508
|
_shippingLabelCarrierSpiConfig: _shippingLabelCarrierSpiConfig2,
|
|
76473
76509
|
_shippingProviderConfig: _shippingProviderConfig2,
|
|
76474
|
-
_sidebarChildItem
|
|
76475
|
-
_sidebarConfig
|
|
76476
|
-
_sidebarRootItem
|
|
76510
|
+
_sidebarChildItem,
|
|
76511
|
+
_sidebarConfig,
|
|
76512
|
+
_sidebarRootItem,
|
|
76477
76513
|
_signature: _signature2,
|
|
76478
76514
|
_studioWidgetComponentData: _studioWidgetComponentData2,
|
|
76479
76515
|
_submitSettings: _submitSettings2,
|
|
76480
76516
|
_textInput: _textInput2,
|
|
76481
76517
|
_thankYouMessageOptions: _thankYouMessageOptions2,
|
|
76482
76518
|
_timeInput: _timeInput2,
|
|
76483
|
-
_upstreamWixCommonImage
|
|
76519
|
+
_upstreamWixCommonImage,
|
|
76484
76520
|
_v1Metadata: _v1Metadata2,
|
|
76485
76521
|
_v1SchemaField: _v1SchemaField2,
|
|
76486
76522
|
_v2Rule: _v2Rule2,
|
|
@@ -76812,10 +76848,10 @@ var PluginInterface;
|
|
|
76812
76848
|
PluginInterface3["CART"] = "CART";
|
|
76813
76849
|
})(PluginInterface || (PluginInterface = {}));
|
|
76814
76850
|
var ExtensionExposureExposure;
|
|
76815
|
-
(function(
|
|
76816
|
-
|
|
76817
|
-
|
|
76818
|
-
|
|
76851
|
+
(function(ExtensionExposureExposure2) {
|
|
76852
|
+
ExtensionExposureExposure2["PRIVATE"] = "PRIVATE";
|
|
76853
|
+
ExtensionExposureExposure2["INTERNAL"] = "INTERNAL";
|
|
76854
|
+
ExtensionExposureExposure2["PUBLIC"] = "PUBLIC";
|
|
76819
76855
|
})(ExtensionExposureExposure || (ExtensionExposureExposure = {}));
|
|
76820
76856
|
var Maturity;
|
|
76821
76857
|
(function(Maturity3) {
|
|
@@ -77323,9 +77359,9 @@ var GIFType;
|
|
|
77323
77359
|
GIFType3["STICKER"] = "STICKER";
|
|
77324
77360
|
})(GIFType || (GIFType = {}));
|
|
77325
77361
|
var Source;
|
|
77326
|
-
(function(
|
|
77327
|
-
|
|
77328
|
-
|
|
77362
|
+
(function(Source2) {
|
|
77363
|
+
Source2["HTML"] = "HTML";
|
|
77364
|
+
Source2["ADSENSE"] = "ADSENSE";
|
|
77329
77365
|
})(Source || (Source = {}));
|
|
77330
77366
|
var StylesPosition;
|
|
77331
77367
|
(function(StylesPosition3) {
|
|
@@ -77463,11 +77499,11 @@ var NavigationType;
|
|
|
77463
77499
|
NavigationType3["MODAL"] = "MODAL";
|
|
77464
77500
|
})(NavigationType || (NavigationType = {}));
|
|
77465
77501
|
var State2;
|
|
77466
|
-
(function(
|
|
77467
|
-
|
|
77468
|
-
|
|
77469
|
-
|
|
77470
|
-
|
|
77502
|
+
(function(State3) {
|
|
77503
|
+
State3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
77504
|
+
State3["DEFAULT_ON"] = "DEFAULT_ON";
|
|
77505
|
+
State3["DEFAULT_OFF"] = "DEFAULT_OFF";
|
|
77506
|
+
State3["ALWAYS_ON"] = "ALWAYS_ON";
|
|
77471
77507
|
})(State2 || (State2 = {}));
|
|
77472
77508
|
var NotificationTopicState;
|
|
77473
77509
|
(function(NotificationTopicState3) {
|
|
@@ -77525,10 +77561,10 @@ var UserNotificationDataRecipientFilterType;
|
|
|
77525
77561
|
UserNotificationDataRecipientFilterType3["SITE_CONTRIBUTORS"] = "SITE_CONTRIBUTORS";
|
|
77526
77562
|
})(UserNotificationDataRecipientFilterType || (UserNotificationDataRecipientFilterType = {}));
|
|
77527
77563
|
var UserNotificationDataInitiatorType;
|
|
77528
|
-
(function(
|
|
77529
|
-
|
|
77530
|
-
|
|
77531
|
-
|
|
77564
|
+
(function(UserNotificationDataInitiatorType2) {
|
|
77565
|
+
UserNotificationDataInitiatorType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
77566
|
+
UserNotificationDataInitiatorType2["WIX_USER"] = "WIX_USER";
|
|
77567
|
+
UserNotificationDataInitiatorType2["WIX_APP"] = "WIX_APP";
|
|
77532
77568
|
})(UserNotificationDataInitiatorType || (UserNotificationDataInitiatorType = {}));
|
|
77533
77569
|
var Level;
|
|
77534
77570
|
(function(Level3) {
|
|
@@ -77633,10 +77669,10 @@ var HeightMode;
|
|
|
77633
77669
|
HeightMode3["FIXED"] = "FIXED";
|
|
77634
77670
|
})(HeightMode || (HeightMode = {}));
|
|
77635
77671
|
var FieldFieldType;
|
|
77636
|
-
(function(
|
|
77637
|
-
|
|
77638
|
-
|
|
77639
|
-
|
|
77672
|
+
(function(FieldFieldType2) {
|
|
77673
|
+
FieldFieldType2["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
77674
|
+
FieldFieldType2["INPUT"] = "INPUT";
|
|
77675
|
+
FieldFieldType2["DISPLAY"] = "DISPLAY";
|
|
77640
77676
|
})(FieldFieldType || (FieldFieldType = {}));
|
|
77641
77677
|
var Format;
|
|
77642
77678
|
(function(Format3) {
|
|
@@ -77958,11 +77994,11 @@ var ImportanceLevel;
|
|
|
77958
77994
|
ImportanceLevel3["HIGH"] = "HIGH";
|
|
77959
77995
|
})(ImportanceLevel || (ImportanceLevel = {}));
|
|
77960
77996
|
var PanelSizeWidth;
|
|
77961
|
-
(function(
|
|
77962
|
-
|
|
77963
|
-
|
|
77964
|
-
|
|
77965
|
-
|
|
77997
|
+
(function(PanelSizeWidth2) {
|
|
77998
|
+
PanelSizeWidth2["UNKNOWN_WIDTH"] = "UNKNOWN_WIDTH";
|
|
77999
|
+
PanelSizeWidth2["SMALL"] = "SMALL";
|
|
78000
|
+
PanelSizeWidth2["MEDIUM"] = "MEDIUM";
|
|
78001
|
+
PanelSizeWidth2["LARGE"] = "LARGE";
|
|
77966
78002
|
})(PanelSizeWidth || (PanelSizeWidth = {}));
|
|
77967
78003
|
var PanelContentType;
|
|
77968
78004
|
(function(PanelContentType3) {
|
|
@@ -78202,10 +78238,10 @@ var ContainerType;
|
|
|
78202
78238
|
ContainerType3["placeholder"] = "placeholder";
|
|
78203
78239
|
})(ContainerType || (ContainerType = {}));
|
|
78204
78240
|
var ElementTypeEnumElementType;
|
|
78205
|
-
(function(
|
|
78206
|
-
|
|
78207
|
-
|
|
78208
|
-
|
|
78241
|
+
(function(ElementTypeEnumElementType2) {
|
|
78242
|
+
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
78243
|
+
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
78244
|
+
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
78209
78245
|
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
78210
78246
|
var ActionType;
|
|
78211
78247
|
(function(ActionType3) {
|
|
@@ -78296,10 +78332,10 @@ var RestrictionLevel;
|
|
|
78296
78332
|
RestrictionLevel3["LOCKED"] = "LOCKED";
|
|
78297
78333
|
})(RestrictionLevel || (RestrictionLevel = {}));
|
|
78298
78334
|
var Theme;
|
|
78299
|
-
(function(
|
|
78300
|
-
|
|
78301
|
-
|
|
78302
|
-
|
|
78335
|
+
(function(Theme2) {
|
|
78336
|
+
Theme2["UNKNOWN_THEME"] = "UNKNOWN_THEME";
|
|
78337
|
+
Theme2["DARK"] = "DARK";
|
|
78338
|
+
Theme2["LIGHT"] = "LIGHT";
|
|
78303
78339
|
})(Theme || (Theme = {}));
|
|
78304
78340
|
var SidebarDataType;
|
|
78305
78341
|
(function(SidebarDataType3) {
|
|
@@ -78384,70 +78420,8 @@ function createAppPermission(payload5) {
|
|
|
78384
78420
|
// ../dev-center-client/src/schemas.ts
|
|
78385
78421
|
init_esm_shims();
|
|
78386
78422
|
|
|
78387
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app/build/es/types.impl.js
|
|
78423
|
+
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-old/build/es/types.impl.js
|
|
78388
78424
|
init_esm_shims();
|
|
78389
|
-
var V1Status;
|
|
78390
|
-
(function(V1Status2) {
|
|
78391
|
-
V1Status2["ACTIVE"] = "ACTIVE";
|
|
78392
|
-
V1Status2["DEPRECATED"] = "DEPRECATED";
|
|
78393
|
-
V1Status2["ARCHIVED"] = "ARCHIVED";
|
|
78394
|
-
})(V1Status || (V1Status = {}));
|
|
78395
|
-
var AppType2;
|
|
78396
|
-
(function(AppType4) {
|
|
78397
|
-
AppType4["SITE_APP"] = "SITE_APP";
|
|
78398
|
-
AppType4["API_KEY"] = "API_KEY";
|
|
78399
|
-
AppType4["VELO_APP"] = "VELO_APP";
|
|
78400
|
-
AppType4["PRIVATE_APP"] = "PRIVATE_APP";
|
|
78401
|
-
AppType4["HEADLESS"] = "HEADLESS";
|
|
78402
|
-
AppType4["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
78403
|
-
})(AppType2 || (AppType2 = {}));
|
|
78404
|
-
var CreatedByType2;
|
|
78405
|
-
(function(CreatedByType4) {
|
|
78406
|
-
CreatedByType4["USER"] = "USER";
|
|
78407
|
-
CreatedByType4["APP"] = "APP";
|
|
78408
|
-
})(CreatedByType2 || (CreatedByType2 = {}));
|
|
78409
|
-
var ShowConsentBehaviour;
|
|
78410
|
-
(function(ShowConsentBehaviour3) {
|
|
78411
|
-
ShowConsentBehaviour3["DEFAULT_BEHAVIOUR"] = "DEFAULT_BEHAVIOUR";
|
|
78412
|
-
ShowConsentBehaviour3["SHOW_CONSENT"] = "SHOW_CONSENT";
|
|
78413
|
-
ShowConsentBehaviour3["SKIP_CONSENT"] = "SKIP_CONSENT";
|
|
78414
|
-
})(ShowConsentBehaviour || (ShowConsentBehaviour = {}));
|
|
78415
|
-
var RedirectTarget;
|
|
78416
|
-
(function(RedirectTarget3) {
|
|
78417
|
-
RedirectTarget3["UNKNOWN_REDIRECT_TARGET"] = "UNKNOWN_REDIRECT_TARGET";
|
|
78418
|
-
RedirectTarget3["DASHBOARD"] = "DASHBOARD";
|
|
78419
|
-
RedirectTarget3["EDITOR"] = "EDITOR";
|
|
78420
|
-
})(RedirectTarget || (RedirectTarget = {}));
|
|
78421
|
-
var OpenButtonAction;
|
|
78422
|
-
(function(OpenButtonAction3) {
|
|
78423
|
-
OpenButtonAction3["UNKNOWN_ACTION"] = "UNKNOWN_ACTION";
|
|
78424
|
-
OpenButtonAction3["OPEN_COMPONENT_ID"] = "OPEN_COMPONENT_ID";
|
|
78425
|
-
})(OpenButtonAction || (OpenButtonAction = {}));
|
|
78426
|
-
var NamespaceType;
|
|
78427
|
-
(function(NamespaceType3) {
|
|
78428
|
-
NamespaceType3["ACCOUNT"] = "ACCOUNT";
|
|
78429
|
-
NamespaceType3["COMPANY"] = "COMPANY";
|
|
78430
|
-
})(NamespaceType || (NamespaceType = {}));
|
|
78431
|
-
var SortOrder2;
|
|
78432
|
-
(function(SortOrder3) {
|
|
78433
|
-
SortOrder3["ASC"] = "ASC";
|
|
78434
|
-
SortOrder3["DESC"] = "DESC";
|
|
78435
|
-
})(SortOrder2 || (SortOrder2 = {}));
|
|
78436
|
-
var AppChangedEventAction;
|
|
78437
|
-
(function(AppChangedEventAction2) {
|
|
78438
|
-
AppChangedEventAction2["CREATED"] = "CREATED";
|
|
78439
|
-
AppChangedEventAction2["UPDATED"] = "UPDATED";
|
|
78440
|
-
AppChangedEventAction2["DEPRECATED"] = "DEPRECATED";
|
|
78441
|
-
AppChangedEventAction2["DELETED"] = "DELETED";
|
|
78442
|
-
})(AppChangedEventAction || (AppChangedEventAction = {}));
|
|
78443
|
-
var WebhookIdentityType2;
|
|
78444
|
-
(function(WebhookIdentityType3) {
|
|
78445
|
-
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
78446
|
-
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
78447
|
-
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
78448
|
-
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
78449
|
-
WebhookIdentityType3["APP"] = "APP";
|
|
78450
|
-
})(WebhookIdentityType2 || (WebhookIdentityType2 = {}));
|
|
78451
78425
|
var Classification;
|
|
78452
78426
|
(function(Classification2) {
|
|
78453
78427
|
Classification2["SITE_APP"] = "SITE_APP";
|
|
@@ -78651,6 +78625,13 @@ var ComponentType2;
|
|
|
78651
78625
|
ComponentType3["EVENTS_EVENT_BADGES"] = "EVENTS_EVENT_BADGES";
|
|
78652
78626
|
ComponentType3["BILLING_OPERATION"] = "BILLING_OPERATION";
|
|
78653
78627
|
ComponentType3["BACK_OFFICE_CUSTOMIZATION"] = "BACK_OFFICE_CUSTOMIZATION";
|
|
78628
|
+
ComponentType3["COMPONENT_ENRICHER_PROVIDER"] = "COMPONENT_ENRICHER_PROVIDER";
|
|
78629
|
+
ComponentType3["BACK_OFFICE_RESTRICTED_CUSTOMIZATION"] = "BACK_OFFICE_RESTRICTED_CUSTOMIZATION";
|
|
78630
|
+
ComponentType3["EDITOR_APP_PREVIEWS_POC"] = "EDITOR_APP_PREVIEWS_POC";
|
|
78631
|
+
ComponentType3["LEGENDS_PERSONA_CONFIGURATION"] = "LEGENDS_PERSONA_CONFIGURATION";
|
|
78632
|
+
ComponentType3["WIX_HOSTING_APP_DEPLOYMENT_PROVIDER"] = "WIX_HOSTING_APP_DEPLOYMENT_PROVIDER";
|
|
78633
|
+
ComponentType3["BACKEND_WORKER"] = "BACKEND_WORKER";
|
|
78634
|
+
ComponentType3["EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER"] = "EVENT_TIME_SLOTS_CONFIGURATION_PROVIDER";
|
|
78654
78635
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
78655
78636
|
var WidgetVertical2;
|
|
78656
78637
|
(function(WidgetVertical3) {
|
|
@@ -78724,12 +78705,12 @@ var PluginInterface2;
|
|
|
78724
78705
|
PluginInterface3["BOOKINGS_CALENDAR"] = "BOOKINGS_CALENDAR";
|
|
78725
78706
|
PluginInterface3["CART"] = "CART";
|
|
78726
78707
|
})(PluginInterface2 || (PluginInterface2 = {}));
|
|
78727
|
-
var
|
|
78728
|
-
(function(
|
|
78729
|
-
|
|
78730
|
-
|
|
78731
|
-
|
|
78732
|
-
})(
|
|
78708
|
+
var Exposure2;
|
|
78709
|
+
(function(Exposure3) {
|
|
78710
|
+
Exposure3["PRIVATE"] = "PRIVATE";
|
|
78711
|
+
Exposure3["INTERNAL"] = "INTERNAL";
|
|
78712
|
+
Exposure3["PUBLIC"] = "PUBLIC";
|
|
78713
|
+
})(Exposure2 || (Exposure2 = {}));
|
|
78733
78714
|
var Maturity2;
|
|
78734
78715
|
(function(Maturity3) {
|
|
78735
78716
|
Maturity3["ALPHA"] = "ALPHA";
|
|
@@ -78809,11 +78790,11 @@ var DefaultTextStyle2;
|
|
|
78809
78790
|
DefaultTextStyle3["PARAGRAPH"] = "PARAGRAPH";
|
|
78810
78791
|
DefaultTextStyle3["LOWER_HIERARCHY_TEXTS"] = "LOWER_HIERARCHY_TEXTS";
|
|
78811
78792
|
})(DefaultTextStyle2 || (DefaultTextStyle2 = {}));
|
|
78812
|
-
var
|
|
78813
|
-
(function(
|
|
78814
|
-
|
|
78815
|
-
|
|
78816
|
-
})(
|
|
78793
|
+
var WebComponentDataElementType;
|
|
78794
|
+
(function(WebComponentDataElementType2) {
|
|
78795
|
+
WebComponentDataElementType2["WIDGET"] = "WIDGET";
|
|
78796
|
+
WebComponentDataElementType2["PAGE"] = "PAGE";
|
|
78797
|
+
})(WebComponentDataElementType || (WebComponentDataElementType = {}));
|
|
78817
78798
|
var ScriptType2;
|
|
78818
78799
|
(function(ScriptType3) {
|
|
78819
78800
|
ScriptType3["NO_SCRIPT_TYPE"] = "NO_SCRIPT_TYPE";
|
|
@@ -78854,13 +78835,13 @@ var SimpleType2;
|
|
|
78854
78835
|
SimpleType3["PHONE"] = "PHONE";
|
|
78855
78836
|
SimpleType3["CONTACT_ID"] = "CONTACT_ID";
|
|
78856
78837
|
})(SimpleType2 || (SimpleType2 = {}));
|
|
78857
|
-
var
|
|
78858
|
-
(function(
|
|
78859
|
-
|
|
78860
|
-
|
|
78861
|
-
|
|
78862
|
-
|
|
78863
|
-
})(
|
|
78838
|
+
var SchemaFieldExposure;
|
|
78839
|
+
(function(SchemaFieldExposure2) {
|
|
78840
|
+
SchemaFieldExposure2["UNKNOWN_EXPOSURE"] = "UNKNOWN_EXPOSURE";
|
|
78841
|
+
SchemaFieldExposure2["SETUP"] = "SETUP";
|
|
78842
|
+
SchemaFieldExposure2["HIDDEN"] = "HIDDEN";
|
|
78843
|
+
SchemaFieldExposure2["EXPOSED"] = "EXPOSED";
|
|
78844
|
+
})(SchemaFieldExposure || (SchemaFieldExposure = {}));
|
|
78864
78845
|
var PartialPaymentRestriction2;
|
|
78865
78846
|
(function(PartialPaymentRestriction3) {
|
|
78866
78847
|
PartialPaymentRestriction3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -78905,12 +78886,12 @@ var HookType2;
|
|
|
78905
78886
|
HookType3["BEFORE"] = "BEFORE";
|
|
78906
78887
|
HookType3["AFTER"] = "AFTER";
|
|
78907
78888
|
})(HookType2 || (HookType2 = {}));
|
|
78908
|
-
var
|
|
78909
|
-
(function(
|
|
78910
|
-
|
|
78911
|
-
|
|
78912
|
-
|
|
78913
|
-
})(
|
|
78889
|
+
var ActionSPIConfigInterfaceConfigurationType;
|
|
78890
|
+
(function(ActionSPIConfigInterfaceConfigurationType2) {
|
|
78891
|
+
ActionSPIConfigInterfaceConfigurationType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
78892
|
+
ActionSPIConfigInterfaceConfigurationType2["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
78893
|
+
ActionSPIConfigInterfaceConfigurationType2["GENERIC"] = "GENERIC";
|
|
78894
|
+
})(ActionSPIConfigInterfaceConfigurationType || (ActionSPIConfigInterfaceConfigurationType = {}));
|
|
78914
78895
|
var SourceType2;
|
|
78915
78896
|
(function(SourceType3) {
|
|
78916
78897
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
@@ -79235,11 +79216,11 @@ var GIFType2;
|
|
|
79235
79216
|
GIFType3["NORMAL"] = "NORMAL";
|
|
79236
79217
|
GIFType3["STICKER"] = "STICKER";
|
|
79237
79218
|
})(GIFType2 || (GIFType2 = {}));
|
|
79238
|
-
var
|
|
79239
|
-
(function(
|
|
79240
|
-
|
|
79241
|
-
|
|
79242
|
-
})(
|
|
79219
|
+
var HTMLDataSource;
|
|
79220
|
+
(function(HTMLDataSource2) {
|
|
79221
|
+
HTMLDataSource2["HTML"] = "HTML";
|
|
79222
|
+
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
79223
|
+
})(HTMLDataSource || (HTMLDataSource = {}));
|
|
79243
79224
|
var StylesPosition2;
|
|
79244
79225
|
(function(StylesPosition3) {
|
|
79245
79226
|
StylesPosition3["START"] = "START";
|
|
@@ -79293,18 +79274,19 @@ var DecorationType2;
|
|
|
79293
79274
|
DecorationType3["COLOR"] = "COLOR";
|
|
79294
79275
|
DecorationType3["FONT_SIZE"] = "FONT_SIZE";
|
|
79295
79276
|
DecorationType3["EXTERNAL"] = "EXTERNAL";
|
|
79277
|
+
DecorationType3["STRIKETHROUGH"] = "STRIKETHROUGH";
|
|
79296
79278
|
})(DecorationType2 || (DecorationType2 = {}));
|
|
79297
79279
|
var FontType2;
|
|
79298
79280
|
(function(FontType3) {
|
|
79299
79281
|
FontType3["PX"] = "PX";
|
|
79300
79282
|
FontType3["EM"] = "EM";
|
|
79301
79283
|
})(FontType2 || (FontType2 = {}));
|
|
79302
|
-
var
|
|
79303
|
-
(function(
|
|
79304
|
-
|
|
79305
|
-
|
|
79306
|
-
|
|
79307
|
-
})(
|
|
79284
|
+
var AppType2;
|
|
79285
|
+
(function(AppType4) {
|
|
79286
|
+
AppType4["PRODUCT"] = "PRODUCT";
|
|
79287
|
+
AppType4["EVENT"] = "EVENT";
|
|
79288
|
+
AppType4["BOOKING"] = "BOOKING";
|
|
79289
|
+
})(AppType2 || (AppType2 = {}));
|
|
79308
79290
|
var InitialExpandedItems2;
|
|
79309
79291
|
(function(InitialExpandedItems3) {
|
|
79310
79292
|
InitialExpandedItems3["FIRST"] = "FIRST";
|
|
@@ -79375,13 +79357,13 @@ var NavigationType2;
|
|
|
79375
79357
|
NavigationType3["NAVIGATE"] = "NAVIGATE";
|
|
79376
79358
|
NavigationType3["MODAL"] = "MODAL";
|
|
79377
79359
|
})(NavigationType2 || (NavigationType2 = {}));
|
|
79378
|
-
var
|
|
79379
|
-
(function(
|
|
79380
|
-
|
|
79381
|
-
|
|
79382
|
-
|
|
79383
|
-
|
|
79384
|
-
})(
|
|
79360
|
+
var PingSettingsGroupComponentDataState;
|
|
79361
|
+
(function(PingSettingsGroupComponentDataState2) {
|
|
79362
|
+
PingSettingsGroupComponentDataState2["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
79363
|
+
PingSettingsGroupComponentDataState2["DEFAULT_ON"] = "DEFAULT_ON";
|
|
79364
|
+
PingSettingsGroupComponentDataState2["DEFAULT_OFF"] = "DEFAULT_OFF";
|
|
79365
|
+
PingSettingsGroupComponentDataState2["ALWAYS_ON"] = "ALWAYS_ON";
|
|
79366
|
+
})(PingSettingsGroupComponentDataState || (PingSettingsGroupComponentDataState = {}));
|
|
79385
79367
|
var NotificationTopicState2;
|
|
79386
79368
|
(function(NotificationTopicState3) {
|
|
79387
79369
|
NotificationTopicState3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
@@ -79437,12 +79419,12 @@ var UserNotificationDataRecipientFilterType2;
|
|
|
79437
79419
|
UserNotificationDataRecipientFilterType3["WIX_USERS"] = "WIX_USERS";
|
|
79438
79420
|
UserNotificationDataRecipientFilterType3["SITE_CONTRIBUTORS"] = "SITE_CONTRIBUTORS";
|
|
79439
79421
|
})(UserNotificationDataRecipientFilterType2 || (UserNotificationDataRecipientFilterType2 = {}));
|
|
79440
|
-
var
|
|
79441
|
-
(function(
|
|
79442
|
-
|
|
79443
|
-
|
|
79444
|
-
|
|
79445
|
-
})(
|
|
79422
|
+
var InitiatorType2;
|
|
79423
|
+
(function(InitiatorType3) {
|
|
79424
|
+
InitiatorType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
79425
|
+
InitiatorType3["WIX_USER"] = "WIX_USER";
|
|
79426
|
+
InitiatorType3["WIX_APP"] = "WIX_APP";
|
|
79427
|
+
})(InitiatorType2 || (InitiatorType2 = {}));
|
|
79446
79428
|
var Level2;
|
|
79447
79429
|
(function(Level3) {
|
|
79448
79430
|
Level3["UNKNOWN_LEVEL"] = "UNKNOWN_LEVEL";
|
|
@@ -79503,12 +79485,12 @@ var RecipientFilterType2;
|
|
|
79503
79485
|
RecipientFilterType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
79504
79486
|
RecipientFilterType3["CONTACTS"] = "CONTACTS";
|
|
79505
79487
|
})(RecipientFilterType2 || (RecipientFilterType2 = {}));
|
|
79506
|
-
var
|
|
79507
|
-
(function(
|
|
79508
|
-
|
|
79509
|
-
|
|
79510
|
-
|
|
79511
|
-
})(
|
|
79488
|
+
var Type2;
|
|
79489
|
+
(function(Type3) {
|
|
79490
|
+
Type3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
79491
|
+
Type3["CONTACT"] = "CONTACT";
|
|
79492
|
+
Type3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
79493
|
+
})(Type2 || (Type2 = {}));
|
|
79512
79494
|
var Environment2;
|
|
79513
79495
|
(function(Environment3) {
|
|
79514
79496
|
Environment3["LIVE_SITE"] = "LIVE_SITE";
|
|
@@ -79520,19 +79502,19 @@ var SchemaScope2;
|
|
|
79520
79502
|
SchemaScope3["GLOBAL"] = "GLOBAL";
|
|
79521
79503
|
SchemaScope3["SITE"] = "SITE";
|
|
79522
79504
|
})(SchemaScope2 || (SchemaScope2 = {}));
|
|
79523
|
-
var
|
|
79524
|
-
(function(
|
|
79525
|
-
|
|
79526
|
-
|
|
79527
|
-
|
|
79528
|
-
|
|
79529
|
-
|
|
79530
|
-
|
|
79531
|
-
|
|
79532
|
-
|
|
79533
|
-
|
|
79534
|
-
|
|
79535
|
-
})(
|
|
79505
|
+
var SchemaFieldFieldType;
|
|
79506
|
+
(function(SchemaFieldFieldType2) {
|
|
79507
|
+
SchemaFieldFieldType2["UNDEFINED_TYPE"] = "UNDEFINED_TYPE";
|
|
79508
|
+
SchemaFieldFieldType2["SHORT_TEXT"] = "SHORT_TEXT";
|
|
79509
|
+
SchemaFieldFieldType2["LONG_TEXT"] = "LONG_TEXT";
|
|
79510
|
+
SchemaFieldFieldType2["HTML"] = "HTML";
|
|
79511
|
+
SchemaFieldFieldType2["RICH_CONTENT"] = "RICH_CONTENT";
|
|
79512
|
+
SchemaFieldFieldType2["IMAGE"] = "IMAGE";
|
|
79513
|
+
SchemaFieldFieldType2["IMAGE_LINK"] = "IMAGE_LINK";
|
|
79514
|
+
SchemaFieldFieldType2["JSON"] = "JSON";
|
|
79515
|
+
SchemaFieldFieldType2["VIDEO"] = "VIDEO";
|
|
79516
|
+
SchemaFieldFieldType2["DOCUMENT"] = "DOCUMENT";
|
|
79517
|
+
})(SchemaFieldFieldType || (SchemaFieldFieldType = {}));
|
|
79536
79518
|
var CustomElementScriptType2;
|
|
79537
79519
|
(function(CustomElementScriptType3) {
|
|
79538
79520
|
CustomElementScriptType3["NONE"] = "NONE";
|
|
@@ -79545,12 +79527,12 @@ var HeightMode2;
|
|
|
79545
79527
|
HeightMode3["AUTO"] = "AUTO";
|
|
79546
79528
|
HeightMode3["FIXED"] = "FIXED";
|
|
79547
79529
|
})(HeightMode2 || (HeightMode2 = {}));
|
|
79548
|
-
var
|
|
79549
|
-
(function(
|
|
79550
|
-
|
|
79551
|
-
|
|
79552
|
-
|
|
79553
|
-
})(
|
|
79530
|
+
var FieldType2;
|
|
79531
|
+
(function(FieldType3) {
|
|
79532
|
+
FieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
79533
|
+
FieldType3["INPUT"] = "INPUT";
|
|
79534
|
+
FieldType3["DISPLAY"] = "DISPLAY";
|
|
79535
|
+
})(FieldType2 || (FieldType2 = {}));
|
|
79554
79536
|
var Format2;
|
|
79555
79537
|
(function(Format3) {
|
|
79556
79538
|
Format3["UNKNOWN_FORMAT"] = "UNKNOWN_FORMAT";
|
|
@@ -79809,6 +79791,19 @@ var EditableProperties2;
|
|
|
79809
79791
|
EditableProperties3["INPUT_VALUE_LIMITS"] = "INPUT_VALUE_LIMITS";
|
|
79810
79792
|
EditableProperties3["DEFAULT_VALUE"] = "DEFAULT_VALUE";
|
|
79811
79793
|
})(EditableProperties2 || (EditableProperties2 = {}));
|
|
79794
|
+
var RequiredIndicator;
|
|
79795
|
+
(function(RequiredIndicator2) {
|
|
79796
|
+
RequiredIndicator2["UNKNOWN_INDICATOR"] = "UNKNOWN_INDICATOR";
|
|
79797
|
+
RequiredIndicator2["ASTERISK"] = "ASTERISK";
|
|
79798
|
+
RequiredIndicator2["TEXT"] = "TEXT";
|
|
79799
|
+
RequiredIndicator2["NONE"] = "NONE";
|
|
79800
|
+
})(RequiredIndicator || (RequiredIndicator = {}));
|
|
79801
|
+
var RequiredIndicatorPlacement;
|
|
79802
|
+
(function(RequiredIndicatorPlacement2) {
|
|
79803
|
+
RequiredIndicatorPlacement2["UNKNOWN_PLACEMENT"] = "UNKNOWN_PLACEMENT";
|
|
79804
|
+
RequiredIndicatorPlacement2["AFTER_FIELD_TITLE"] = "AFTER_FIELD_TITLE";
|
|
79805
|
+
RequiredIndicatorPlacement2["BEFORE_FIELD_TITLE"] = "BEFORE_FIELD_TITLE";
|
|
79806
|
+
})(RequiredIndicatorPlacement || (RequiredIndicatorPlacement = {}));
|
|
79812
79807
|
var WixCodePublishTaskName2;
|
|
79813
79808
|
(function(WixCodePublishTaskName3) {
|
|
79814
79809
|
WixCodePublishTaskName3["UNKNOWN"] = "UNKNOWN";
|
|
@@ -79855,6 +79850,7 @@ var MonitoringType2;
|
|
|
79855
79850
|
(function(MonitoringType3) {
|
|
79856
79851
|
MonitoringType3["UNKNOWN_PROVIDER"] = "UNKNOWN_PROVIDER";
|
|
79857
79852
|
MonitoringType3["SENTRY"] = "SENTRY";
|
|
79853
|
+
MonitoringType3["PANORAMA"] = "PANORAMA";
|
|
79858
79854
|
})(MonitoringType2 || (MonitoringType2 = {}));
|
|
79859
79855
|
var Escalation2;
|
|
79860
79856
|
(function(Escalation3) {
|
|
@@ -79870,13 +79866,13 @@ var ImportanceLevel2;
|
|
|
79870
79866
|
ImportanceLevel3["MEDIUM"] = "MEDIUM";
|
|
79871
79867
|
ImportanceLevel3["HIGH"] = "HIGH";
|
|
79872
79868
|
})(ImportanceLevel2 || (ImportanceLevel2 = {}));
|
|
79873
|
-
var
|
|
79874
|
-
(function(
|
|
79875
|
-
|
|
79876
|
-
|
|
79877
|
-
|
|
79878
|
-
|
|
79879
|
-
})(
|
|
79869
|
+
var Width;
|
|
79870
|
+
(function(Width2) {
|
|
79871
|
+
Width2["UNKNOWN_WIDTH"] = "UNKNOWN_WIDTH";
|
|
79872
|
+
Width2["SMALL"] = "SMALL";
|
|
79873
|
+
Width2["MEDIUM"] = "MEDIUM";
|
|
79874
|
+
Width2["LARGE"] = "LARGE";
|
|
79875
|
+
})(Width || (Width = {}));
|
|
79880
79876
|
var PanelContentType2;
|
|
79881
79877
|
(function(PanelContentType3) {
|
|
79882
79878
|
PanelContentType3["UNKNOWN_PanelContentType"] = "UNKNOWN_PanelContentType";
|
|
@@ -79943,6 +79939,7 @@ var CssPropertyType2;
|
|
|
79943
79939
|
CssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
79944
79940
|
CssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
79945
79941
|
CssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
79942
|
+
CssPropertyType3["fill"] = "fill";
|
|
79946
79943
|
CssPropertyType3["margin"] = "margin";
|
|
79947
79944
|
CssPropertyType3["marginTop"] = "marginTop";
|
|
79948
79945
|
CssPropertyType3["marginRight"] = "marginRight";
|
|
@@ -80007,6 +80004,7 @@ var CssPropertyType2;
|
|
|
80007
80004
|
CssPropertyType3["textAlign"] = "textAlign";
|
|
80008
80005
|
CssPropertyType3["textTransform"] = "textTransform";
|
|
80009
80006
|
CssPropertyType3["textShadow"] = "textShadow";
|
|
80007
|
+
CssPropertyType3["textOverflow"] = "textOverflow";
|
|
80010
80008
|
CssPropertyType3["textDecoration"] = "textDecoration";
|
|
80011
80009
|
CssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
80012
80010
|
CssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
@@ -80022,6 +80020,14 @@ var CssPropertyType2;
|
|
|
80022
80020
|
CssPropertyType3["gap"] = "gap";
|
|
80023
80021
|
CssPropertyType3["height"] = "height";
|
|
80024
80022
|
CssPropertyType3["width"] = "width";
|
|
80023
|
+
CssPropertyType3["columnGap"] = "columnGap";
|
|
80024
|
+
CssPropertyType3["rowGap"] = "rowGap";
|
|
80025
|
+
CssPropertyType3["filter"] = "filter";
|
|
80026
|
+
CssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
80027
|
+
CssPropertyType3["objectFit"] = "objectFit";
|
|
80028
|
+
CssPropertyType3["objectPosition"] = "objectPosition";
|
|
80029
|
+
CssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
80030
|
+
CssPropertyType3["isolation"] = "isolation";
|
|
80025
80031
|
})(CssPropertyType2 || (CssPropertyType2 = {}));
|
|
80026
80032
|
var CssDataType2;
|
|
80027
80033
|
(function(CssDataType3) {
|
|
@@ -80033,7 +80039,23 @@ var CssDataType2;
|
|
|
80033
80039
|
CssDataType3["percentage"] = "percentage";
|
|
80034
80040
|
CssDataType3["lengthPercentage"] = "lengthPercentage";
|
|
80035
80041
|
CssDataType3["blendMode"] = "blendMode";
|
|
80042
|
+
CssDataType3["customEnum"] = "customEnum";
|
|
80043
|
+
CssDataType3["string"] = "string";
|
|
80036
80044
|
})(CssDataType2 || (CssDataType2 = {}));
|
|
80045
|
+
var FilterFunction;
|
|
80046
|
+
(function(FilterFunction2) {
|
|
80047
|
+
FilterFunction2["UNKNOWN_FilterFunctions"] = "UNKNOWN_FilterFunctions";
|
|
80048
|
+
FilterFunction2["blur"] = "blur";
|
|
80049
|
+
FilterFunction2["brightness"] = "brightness";
|
|
80050
|
+
FilterFunction2["contrast"] = "contrast";
|
|
80051
|
+
FilterFunction2["drop_shadow"] = "drop_shadow";
|
|
80052
|
+
FilterFunction2["grayscale"] = "grayscale";
|
|
80053
|
+
FilterFunction2["hue_rotate"] = "hue_rotate";
|
|
80054
|
+
FilterFunction2["invert"] = "invert";
|
|
80055
|
+
FilterFunction2["opacity"] = "opacity";
|
|
80056
|
+
FilterFunction2["sepia"] = "sepia";
|
|
80057
|
+
FilterFunction2["saturate"] = "saturate";
|
|
80058
|
+
})(FilterFunction || (FilterFunction = {}));
|
|
80037
80059
|
var DataType2;
|
|
80038
80060
|
(function(DataType3) {
|
|
80039
80061
|
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
@@ -80114,12 +80136,12 @@ var ContainerType2;
|
|
|
80114
80136
|
ContainerType3["slot"] = "slot";
|
|
80115
80137
|
ContainerType3["placeholder"] = "placeholder";
|
|
80116
80138
|
})(ContainerType2 || (ContainerType2 = {}));
|
|
80117
|
-
var
|
|
80118
|
-
(function(
|
|
80119
|
-
|
|
80120
|
-
|
|
80121
|
-
|
|
80122
|
-
})(
|
|
80139
|
+
var ElementType2;
|
|
80140
|
+
(function(ElementType3) {
|
|
80141
|
+
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
80142
|
+
ElementType3["inlineElement"] = "inlineElement";
|
|
80143
|
+
ElementType3["refElement"] = "refElement";
|
|
80144
|
+
})(ElementType2 || (ElementType2 = {}));
|
|
80123
80145
|
var ActionType2;
|
|
80124
80146
|
(function(ActionType3) {
|
|
80125
80147
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -80127,6 +80149,7 @@ var ActionType2;
|
|
|
80127
80149
|
ActionType3["event"] = "event";
|
|
80128
80150
|
ActionType3["panel"] = "panel";
|
|
80129
80151
|
ActionType3["forward"] = "forward";
|
|
80152
|
+
ActionType3["style"] = "style";
|
|
80130
80153
|
})(ActionType2 || (ActionType2 = {}));
|
|
80131
80154
|
var PanelType2;
|
|
80132
80155
|
(function(PanelType3) {
|
|
@@ -80144,6 +80167,13 @@ var ActionName2;
|
|
|
80144
80167
|
ActionName3["dashboard"] = "dashboard";
|
|
80145
80168
|
ActionName3["custom"] = "custom";
|
|
80146
80169
|
})(ActionName2 || (ActionName2 = {}));
|
|
80170
|
+
var SizingType;
|
|
80171
|
+
(function(SizingType2) {
|
|
80172
|
+
SizingType2["UNKNOWN_SizingType"] = "UNKNOWN_SizingType";
|
|
80173
|
+
SizingType2["content"] = "content";
|
|
80174
|
+
SizingType2["stretched"] = "stretched";
|
|
80175
|
+
SizingType2["pixels"] = "pixels";
|
|
80176
|
+
})(SizingType || (SizingType = {}));
|
|
80147
80177
|
var ResizeDirection2;
|
|
80148
80178
|
(function(ResizeDirection3) {
|
|
80149
80179
|
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
@@ -80208,12 +80238,6 @@ var RestrictionLevel2;
|
|
|
80208
80238
|
RestrictionLevel3["WARNING"] = "WARNING";
|
|
80209
80239
|
RestrictionLevel3["LOCKED"] = "LOCKED";
|
|
80210
80240
|
})(RestrictionLevel2 || (RestrictionLevel2 = {}));
|
|
80211
|
-
var Theme2;
|
|
80212
|
-
(function(Theme3) {
|
|
80213
|
-
Theme3["UNKNOWN_THEME"] = "UNKNOWN_THEME";
|
|
80214
|
-
Theme3["DARK"] = "DARK";
|
|
80215
|
-
Theme3["LIGHT"] = "LIGHT";
|
|
80216
|
-
})(Theme2 || (Theme2 = {}));
|
|
80217
80241
|
var SidebarDataType2;
|
|
80218
80242
|
(function(SidebarDataType3) {
|
|
80219
80243
|
SidebarDataType3["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
@@ -80221,6 +80245,13 @@ var SidebarDataType2;
|
|
|
80221
80245
|
SidebarDataType3["PAGE"] = "PAGE";
|
|
80222
80246
|
SidebarDataType3["SEPARATOR"] = "SEPARATOR";
|
|
80223
80247
|
})(SidebarDataType2 || (SidebarDataType2 = {}));
|
|
80248
|
+
var SidebarEntityType;
|
|
80249
|
+
(function(SidebarEntityType2) {
|
|
80250
|
+
SidebarEntityType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
80251
|
+
SidebarEntityType2["CATEGORY"] = "CATEGORY";
|
|
80252
|
+
SidebarEntityType2["PAGE"] = "PAGE";
|
|
80253
|
+
SidebarEntityType2["APP"] = "APP";
|
|
80254
|
+
})(SidebarEntityType || (SidebarEntityType = {}));
|
|
80224
80255
|
var OpenConsentIn2;
|
|
80225
80256
|
(function(OpenConsentIn3) {
|
|
80226
80257
|
OpenConsentIn3["NONE_VALUE"] = "NONE_VALUE";
|
|
@@ -80266,6 +80297,14 @@ var TranslationType;
|
|
|
80266
80297
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
80267
80298
|
TranslationType2["COMPONENT"] = "COMPONENT";
|
|
80268
80299
|
})(TranslationType || (TranslationType = {}));
|
|
80300
|
+
var WebhookIdentityType2;
|
|
80301
|
+
(function(WebhookIdentityType3) {
|
|
80302
|
+
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
80303
|
+
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
80304
|
+
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
80305
|
+
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
80306
|
+
WebhookIdentityType3["APP"] = "APP";
|
|
80307
|
+
})(WebhookIdentityType2 || (WebhookIdentityType2 = {}));
|
|
80269
80308
|
|
|
80270
80309
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-template/build/es/types.impl.js
|
|
80271
80310
|
init_esm_shims();
|
|
@@ -80288,12 +80327,12 @@ var DeploymentHostType;
|
|
|
80288
80327
|
DeploymentHostType2["VERCEL"] = "VERCEL";
|
|
80289
80328
|
DeploymentHostType2["NETLIFY"] = "NETLIFY";
|
|
80290
80329
|
})(DeploymentHostType || (DeploymentHostType = {}));
|
|
80291
|
-
var
|
|
80292
|
-
(function(
|
|
80293
|
-
|
|
80294
|
-
|
|
80295
|
-
|
|
80296
|
-
})(
|
|
80330
|
+
var NamespaceType;
|
|
80331
|
+
(function(NamespaceType2) {
|
|
80332
|
+
NamespaceType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
80333
|
+
NamespaceType2["ACCOUNT"] = "ACCOUNT";
|
|
80334
|
+
NamespaceType2["COMPANY"] = "COMPANY";
|
|
80335
|
+
})(NamespaceType || (NamespaceType = {}));
|
|
80297
80336
|
var Status4;
|
|
80298
80337
|
(function(Status5) {
|
|
80299
80338
|
Status5["ACTIVE"] = "ACTIVE";
|
|
@@ -80309,28 +80348,28 @@ var AppType3;
|
|
|
80309
80348
|
AppType4["HEADLESS"] = "HEADLESS";
|
|
80310
80349
|
AppType4["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
80311
80350
|
})(AppType3 || (AppType3 = {}));
|
|
80312
|
-
var
|
|
80313
|
-
(function(
|
|
80314
|
-
|
|
80315
|
-
|
|
80316
|
-
})(
|
|
80317
|
-
var
|
|
80318
|
-
(function(
|
|
80319
|
-
|
|
80320
|
-
|
|
80321
|
-
|
|
80322
|
-
})(
|
|
80323
|
-
var
|
|
80324
|
-
(function(
|
|
80325
|
-
|
|
80326
|
-
|
|
80327
|
-
|
|
80328
|
-
})(
|
|
80329
|
-
var
|
|
80330
|
-
(function(
|
|
80331
|
-
|
|
80332
|
-
|
|
80333
|
-
})(
|
|
80351
|
+
var CreatedByType2;
|
|
80352
|
+
(function(CreatedByType3) {
|
|
80353
|
+
CreatedByType3["USER"] = "USER";
|
|
80354
|
+
CreatedByType3["APP"] = "APP";
|
|
80355
|
+
})(CreatedByType2 || (CreatedByType2 = {}));
|
|
80356
|
+
var ShowConsentBehaviour;
|
|
80357
|
+
(function(ShowConsentBehaviour2) {
|
|
80358
|
+
ShowConsentBehaviour2["DEFAULT_BEHAVIOUR"] = "DEFAULT_BEHAVIOUR";
|
|
80359
|
+
ShowConsentBehaviour2["SHOW_CONSENT"] = "SHOW_CONSENT";
|
|
80360
|
+
ShowConsentBehaviour2["SKIP_CONSENT"] = "SKIP_CONSENT";
|
|
80361
|
+
})(ShowConsentBehaviour || (ShowConsentBehaviour = {}));
|
|
80362
|
+
var RedirectTarget;
|
|
80363
|
+
(function(RedirectTarget2) {
|
|
80364
|
+
RedirectTarget2["UNKNOWN_REDIRECT_TARGET"] = "UNKNOWN_REDIRECT_TARGET";
|
|
80365
|
+
RedirectTarget2["DASHBOARD"] = "DASHBOARD";
|
|
80366
|
+
RedirectTarget2["EDITOR"] = "EDITOR";
|
|
80367
|
+
})(RedirectTarget || (RedirectTarget = {}));
|
|
80368
|
+
var OpenButtonAction;
|
|
80369
|
+
(function(OpenButtonAction2) {
|
|
80370
|
+
OpenButtonAction2["UNKNOWN_ACTION"] = "UNKNOWN_ACTION";
|
|
80371
|
+
OpenButtonAction2["OPEN_COMPONENT_ID"] = "OPEN_COMPONENT_ID";
|
|
80372
|
+
})(OpenButtonAction || (OpenButtonAction = {}));
|
|
80334
80373
|
|
|
80335
80374
|
// ../dev-center-client/src/schemas.ts
|
|
80336
80375
|
var createAppSchema = z.object({
|
|
@@ -80361,6 +80400,19 @@ var monitoringSchema = z.object({
|
|
|
80361
80400
|
sentryOptions: z.object({
|
|
80362
80401
|
dsn: z.string().url()
|
|
80363
80402
|
})
|
|
80403
|
+
}),
|
|
80404
|
+
z.object({
|
|
80405
|
+
type: z.literal(MonitoringType2.PANORAMA),
|
|
80406
|
+
panoramaOptions: z.object({
|
|
80407
|
+
sentry: z.object({
|
|
80408
|
+
dsn: z.string().url()
|
|
80409
|
+
}).optional(),
|
|
80410
|
+
project: z.object({
|
|
80411
|
+
groupId: z.string(),
|
|
80412
|
+
artifactId: z.string(),
|
|
80413
|
+
fingerprint: z.string()
|
|
80414
|
+
})
|
|
80415
|
+
})
|
|
80364
80416
|
})
|
|
80365
80417
|
])
|
|
80366
80418
|
})
|