@wix/create-app 0.0.126 → 0.0.128
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 +670 -345
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -45652,7 +45652,7 @@ var require_loader = __commonJS({
|
|
|
45652
45652
|
simpleEscapeMap[i2] = simpleEscapeSequence(i2);
|
|
45653
45653
|
}
|
|
45654
45654
|
var i2;
|
|
45655
|
-
function
|
|
45655
|
+
function State2(input, options) {
|
|
45656
45656
|
this.input = input;
|
|
45657
45657
|
this.filename = options["filename"] || null;
|
|
45658
45658
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
@@ -46619,7 +46619,7 @@ var require_loader = __commonJS({
|
|
|
46619
46619
|
input = input.slice(1);
|
|
46620
46620
|
}
|
|
46621
46621
|
}
|
|
46622
|
-
var state = new
|
|
46622
|
+
var state = new State2(input, options);
|
|
46623
46623
|
var nullpos = input.indexOf("\0");
|
|
46624
46624
|
if (nullpos !== -1) {
|
|
46625
46625
|
state.position = nullpos;
|
|
@@ -46779,7 +46779,7 @@ var require_dumper = __commonJS({
|
|
|
46779
46779
|
}
|
|
46780
46780
|
return "\\" + handle + common2.repeat("0", length - string.length) + string;
|
|
46781
46781
|
}
|
|
46782
|
-
function
|
|
46782
|
+
function State2(options) {
|
|
46783
46783
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
46784
46784
|
this.indent = Math.max(1, options["indent"] || 2);
|
|
46785
46785
|
this.noArrayIndent = options["noArrayIndent"] || false;
|
|
@@ -47210,7 +47210,7 @@ var require_dumper = __commonJS({
|
|
|
47210
47210
|
}
|
|
47211
47211
|
function dump(input, options) {
|
|
47212
47212
|
options = options || {};
|
|
47213
|
-
var state = new
|
|
47213
|
+
var state = new State2(options);
|
|
47214
47214
|
if (!state.noRefs) getDuplicateReferences(input, state);
|
|
47215
47215
|
if (writeNode(state, 0, input, true, true)) return state.dump + "\n";
|
|
47216
47216
|
return "";
|
|
@@ -57984,7 +57984,6 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
57984
57984
|
FailedToDeployDocument: {},
|
|
57985
57985
|
WaitForEditorInstallationStateFailure: {},
|
|
57986
57986
|
EditorPendingInstallationCheckTimedout: {},
|
|
57987
|
-
FailedToParseLatestVersion: (0, import_variant11.fields)(),
|
|
57988
57987
|
FailedToGetMonitoringLoaderScript: (0, import_variant11.fields)(),
|
|
57989
57988
|
FailedToFetchWixLockFile: {},
|
|
57990
57989
|
FailedToGetSdkSlotData: {},
|
|
@@ -57999,7 +57998,10 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
57999
57998
|
FailedCreatingAppDeployment: {},
|
|
58000
57999
|
FailedFinalizingAppDeployment: {},
|
|
58001
58000
|
FailedCreatingNewFunnelProject: {},
|
|
58002
|
-
FailedToFindAstroConfig: {}
|
|
58001
|
+
FailedToFindAstroConfig: {},
|
|
58002
|
+
FailedToCreateShareUrl: {},
|
|
58003
|
+
FailedToListShareUrls: {},
|
|
58004
|
+
FailedToParseNextVersion: (0, import_variant11.fields)()
|
|
58003
58005
|
});
|
|
58004
58006
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
58005
58007
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -58090,7 +58092,6 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58090
58092
|
FailedToApplySiteFsManagerExternalUpdates: {},
|
|
58091
58093
|
ServeDeprecated: (0, import_variant11.fields)(),
|
|
58092
58094
|
CannotFindConfigReferencedAsset: (0, import_variant11.fields)(),
|
|
58093
|
-
CannotReleaseLockedApplication: {},
|
|
58094
58095
|
FailedToCreateIntellisenseAdapter: {},
|
|
58095
58096
|
FailedToInitIntellisenseAdapterTypes: {},
|
|
58096
58097
|
FailedToUpdateIntellisenseAdapterTypes: {},
|
|
@@ -58099,6 +58100,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
58099
58100
|
DeploymentPipelineFailed: (0, import_variant11.fields)(),
|
|
58100
58101
|
InsufficientNonInterractiveReleaseParameters: {},
|
|
58101
58102
|
AppNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58103
|
+
ProjectNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58104
|
+
BusinessNameArgumentIsInvalid: (0, import_variant11.fields)(),
|
|
58102
58105
|
CannotReleaseMinorInNoninteractive: {},
|
|
58103
58106
|
SiteComponentConfigNotFound: (0, import_variant11.fields)(),
|
|
58104
58107
|
SiteComponentPanelConfigNotFound: (0, import_variant11.fields)(),
|
|
@@ -68467,15 +68470,6 @@ function getErrorComponent(code, cause) {
|
|
|
68467
68470
|
}
|
|
68468
68471
|
);
|
|
68469
68472
|
},
|
|
68470
|
-
CannotReleaseLockedApplication: () => {
|
|
68471
|
-
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68472
|
-
ErrorMessage,
|
|
68473
|
-
{
|
|
68474
|
-
message: "A new version of the app can not be released at this point.",
|
|
68475
|
-
explanation: "We\u2019re reviewing this app. You can\u2019t update new changes while it\u2019s in review."
|
|
68476
|
-
}
|
|
68477
|
-
);
|
|
68478
|
-
},
|
|
68479
68473
|
FailedToCreateIntellisenseAdapter: () => {
|
|
68480
68474
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68481
68475
|
ErrorMessage,
|
|
@@ -68610,18 +68604,19 @@ ${errorMessage2}`
|
|
|
68610
68604
|
/* @__PURE__ */ import_react77.default.createElement(Text2, null, content.trim())
|
|
68611
68605
|
))))));
|
|
68612
68606
|
},
|
|
68613
|
-
|
|
68607
|
+
FailedToFetchWixLockFile: () => {
|
|
68608
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Failed to fetch "wix.lock" file.` });
|
|
68609
|
+
},
|
|
68610
|
+
AppNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68614
68611
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68615
|
-
|
|
68612
|
+
ErrorMessage,
|
|
68616
68613
|
{
|
|
68617
|
-
message:
|
|
68614
|
+
message: errorMessage2,
|
|
68615
|
+
hint: "Failed to create a new application with the specified parameters. Please modify the parameters or switch to interactive mode."
|
|
68618
68616
|
}
|
|
68619
68617
|
);
|
|
68620
68618
|
},
|
|
68621
|
-
|
|
68622
|
-
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Failed to fetch "wix.lock" file.` });
|
|
68623
|
-
},
|
|
68624
|
-
AppNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68619
|
+
ProjectNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68625
68620
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68626
68621
|
ErrorMessage,
|
|
68627
68622
|
{
|
|
@@ -68630,6 +68625,15 @@ ${errorMessage2}`
|
|
|
68630
68625
|
}
|
|
68631
68626
|
);
|
|
68632
68627
|
},
|
|
68628
|
+
BusinessNameArgumentIsInvalid: ({ errorMessage: errorMessage2 }) => {
|
|
68629
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68630
|
+
ErrorMessage,
|
|
68631
|
+
{
|
|
68632
|
+
message: errorMessage2,
|
|
68633
|
+
hint: "Failed to create a new application with provided Business Name. Please modify the parameters or switch to interactive mode."
|
|
68634
|
+
}
|
|
68635
|
+
);
|
|
68636
|
+
},
|
|
68633
68637
|
CannotReleaseMinorInNoninteractive: () => {
|
|
68634
68638
|
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68635
68639
|
ErrorMessage,
|
|
@@ -68745,6 +68749,20 @@ ${errorMessage2}`
|
|
|
68745
68749
|
hint: "Please make sure the site exists and you have access to it."
|
|
68746
68750
|
}
|
|
68747
68751
|
);
|
|
68752
|
+
},
|
|
68753
|
+
FailedToCreateShareUrl: () => {
|
|
68754
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create preview URL." });
|
|
68755
|
+
},
|
|
68756
|
+
FailedToListShareUrls: () => {
|
|
68757
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to list preview URLs." });
|
|
68758
|
+
},
|
|
68759
|
+
FailedToParseNextVersion: ({ version }) => {
|
|
68760
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(
|
|
68761
|
+
SystemErrorMessage,
|
|
68762
|
+
{
|
|
68763
|
+
message: `The version "${version}" produced by the system does not conform to the expected semantic versioning format and could not be parsed.`
|
|
68764
|
+
}
|
|
68765
|
+
);
|
|
68748
68766
|
}
|
|
68749
68767
|
});
|
|
68750
68768
|
}
|
|
@@ -72280,7 +72298,7 @@ function reportCommandStartEvent({
|
|
|
72280
72298
|
var package_default = {
|
|
72281
72299
|
name: "@wix/create-app",
|
|
72282
72300
|
description: "Create Wix apps",
|
|
72283
|
-
version: "0.0.
|
|
72301
|
+
version: "0.0.128",
|
|
72284
72302
|
author: "Ihor Machuzhak",
|
|
72285
72303
|
bin: "bin/index.cjs",
|
|
72286
72304
|
devDependencies: {
|
|
@@ -75776,6 +75794,7 @@ var _componentData = {
|
|
|
75776
75794
|
};
|
|
75777
75795
|
var _componentsMultilineAddress = { description: "_richContent" };
|
|
75778
75796
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
75797
|
+
var _cssCustomPropertyItem = { number: "_cssNumber" };
|
|
75779
75798
|
var _cssNumber = {
|
|
75780
75799
|
minimum: "google.protobuf.FloatValue",
|
|
75781
75800
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -75803,7 +75822,8 @@ var _editorElement = {
|
|
|
75803
75822
|
style: "Map#_styleItem",
|
|
75804
75823
|
data: "Map#_dataItem",
|
|
75805
75824
|
elements: "Map#_elementItem",
|
|
75806
|
-
presets: "Map#_presetItem"
|
|
75825
|
+
presets: "Map#_presetItem",
|
|
75826
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75807
75827
|
};
|
|
75808
75828
|
var _editorPresence = { presetsEditorPresence: "_presetEditorPresence" };
|
|
75809
75829
|
var _editorReactComponent = { editorElement: "_editorElement" };
|
|
@@ -75844,7 +75864,8 @@ var _inlineElement = {
|
|
|
75844
75864
|
style: "Map#_styleItem",
|
|
75845
75865
|
data: "Map#_dataItem",
|
|
75846
75866
|
elements: "Map#_elementItem",
|
|
75847
|
-
presets: "Map#_presetItem"
|
|
75867
|
+
presets: "Map#_presetItem",
|
|
75868
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
75848
75869
|
};
|
|
75849
75870
|
var _inputField = {
|
|
75850
75871
|
stringOptions: "__String",
|
|
@@ -75928,9 +75949,14 @@ var _predefinedExpectedInputConfiguration = {
|
|
|
75928
75949
|
textInput: "_adminConfigurableTextInput"
|
|
75929
75950
|
};
|
|
75930
75951
|
var _presetEditorPresence = { wixMediaThumbnail: "_wixCommonImage" };
|
|
75952
|
+
var _presetElementDefaults = { elements: "Map#_presetInnerElementDefaults" };
|
|
75953
|
+
var _presetInnerElementDefaults = {
|
|
75954
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
75955
|
+
};
|
|
75931
75956
|
var _presetItem = {
|
|
75932
75957
|
styleDefaults: "_presetStyleDefaults",
|
|
75933
|
-
styleOverrides: "_breakpointPresetStyleOverrides"
|
|
75958
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
75959
|
+
presetDefaults: "_presetElementDefaults"
|
|
75934
75960
|
};
|
|
75935
75961
|
var _presetStyleDefaults = { elements: "Map#_elementStyleDefaults" };
|
|
75936
75962
|
var _presetStyleOverrides = { elements: "Map#_elementStyleOverrides" };
|
|
@@ -75949,10 +75975,8 @@ var _ratingInput = { description: "_richContent" };
|
|
|
75949
75975
|
var _refElement = {
|
|
75950
75976
|
resolvedElement: "_inlineElement",
|
|
75951
75977
|
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
75952
|
-
elements: "Map#_refInnerElementDefaults"
|
|
75953
|
-
styleOverrides: "_refElementStyleOverrides"
|
|
75978
|
+
elements: "Map#_refInnerElementDefaults"
|
|
75954
75979
|
};
|
|
75955
|
-
var _refElementStyleOverrides = { elements: "Map#_refElementStyleOverrides" };
|
|
75956
75980
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
75957
75981
|
var _richContent = { nodes: "_node", metadata: "_v1Metadata" };
|
|
75958
75982
|
var _richContentOptions = { richContent: "_richContent" };
|
|
@@ -76140,6 +76164,7 @@ function getAppByVersion(payload5) {
|
|
|
76140
76164
|
_componentData,
|
|
76141
76165
|
_componentsMultilineAddress,
|
|
76142
76166
|
_conditionNode,
|
|
76167
|
+
_cssCustomPropertyItem,
|
|
76143
76168
|
_cssNumber,
|
|
76144
76169
|
_dataItem,
|
|
76145
76170
|
_dataItems,
|
|
@@ -76200,6 +76225,8 @@ function getAppByVersion(payload5) {
|
|
|
76200
76225
|
_predefinedExpectedInput,
|
|
76201
76226
|
_predefinedExpectedInputConfiguration,
|
|
76202
76227
|
_presetEditorPresence,
|
|
76228
|
+
_presetElementDefaults,
|
|
76229
|
+
_presetInnerElementDefaults,
|
|
76203
76230
|
_presetItem,
|
|
76204
76231
|
_presetStyleDefaults,
|
|
76205
76232
|
_presetStyleOverrides,
|
|
@@ -76210,7 +76237,6 @@ function getAppByVersion(payload5) {
|
|
|
76210
76237
|
_radioGroup,
|
|
76211
76238
|
_ratingInput,
|
|
76212
76239
|
_refElement,
|
|
76213
|
-
_refElementStyleOverrides,
|
|
76214
76240
|
_refInnerElementDefaults,
|
|
76215
76241
|
_richContent,
|
|
76216
76242
|
_richContentOptions,
|
|
@@ -76521,176 +76547,6 @@ function updateOAuthApp(payload5) {
|
|
|
76521
76547
|
return __updateOAuthApp;
|
|
76522
76548
|
}
|
|
76523
76549
|
|
|
76524
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/http.impl.js
|
|
76525
|
-
init_esm_shims();
|
|
76526
|
-
var _appVersion = {
|
|
76527
|
-
createdDate: "google.protobuf.Timestamp",
|
|
76528
|
-
updatedDate: "google.protobuf.Timestamp"
|
|
76529
|
-
};
|
|
76530
|
-
var _queryAppVersionRequest = {};
|
|
76531
|
-
var _queryAppVersionResponse = { appVersions: "_appVersion" };
|
|
76532
|
-
function resolveWixDevcenterAppsVersionsV1AppVersionsServiceUrl(opts) {
|
|
76533
|
-
var domainToMappings = {
|
|
76534
|
-
"bo._base_domain_": [
|
|
76535
|
-
{
|
|
76536
|
-
srcPath: "/app-versions",
|
|
76537
|
-
destPath: ""
|
|
76538
|
-
}
|
|
76539
|
-
],
|
|
76540
|
-
"wixbo.ai": [
|
|
76541
|
-
{
|
|
76542
|
-
srcPath: "/app-versions",
|
|
76543
|
-
destPath: ""
|
|
76544
|
-
}
|
|
76545
|
-
],
|
|
76546
|
-
"wix-bo.com": [
|
|
76547
|
-
{
|
|
76548
|
-
srcPath: "/app-versions",
|
|
76549
|
-
destPath: ""
|
|
76550
|
-
}
|
|
76551
|
-
],
|
|
76552
|
-
"dev._base_domain_": [
|
|
76553
|
-
{
|
|
76554
|
-
srcPath: "/app-versions",
|
|
76555
|
-
destPath: ""
|
|
76556
|
-
}
|
|
76557
|
-
],
|
|
76558
|
-
"editor._base_domain_": [
|
|
76559
|
-
{
|
|
76560
|
-
srcPath: "/_api/app-versions",
|
|
76561
|
-
destPath: ""
|
|
76562
|
-
}
|
|
76563
|
-
],
|
|
76564
|
-
"blocks._base_domain_": [
|
|
76565
|
-
{
|
|
76566
|
-
srcPath: "/_api/app-versions",
|
|
76567
|
-
destPath: ""
|
|
76568
|
-
}
|
|
76569
|
-
],
|
|
76570
|
-
"create.editorx": [
|
|
76571
|
-
{
|
|
76572
|
-
srcPath: "/_api/app-versions",
|
|
76573
|
-
destPath: ""
|
|
76574
|
-
}
|
|
76575
|
-
],
|
|
76576
|
-
"manage._base_domain_": [
|
|
76577
|
-
{
|
|
76578
|
-
srcPath: "/_api/app-versions",
|
|
76579
|
-
destPath: ""
|
|
76580
|
-
}
|
|
76581
|
-
]
|
|
76582
|
-
};
|
|
76583
|
-
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
76584
|
-
}
|
|
76585
|
-
function queryAppVersion(payload5) {
|
|
76586
|
-
var _a3 = serializer(_queryAppVersionRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
76587
|
-
var fromRes = serializer(_queryAppVersionResponse, {
|
|
76588
|
-
_appVersion
|
|
76589
|
-
}).fromJSON;
|
|
76590
|
-
function __queryAppVersion(_a4) {
|
|
76591
|
-
var host = _a4.host;
|
|
76592
|
-
var serializedData = toReq(payload5);
|
|
76593
|
-
var metadata = {
|
|
76594
|
-
entityFqdn: "wix.devcenter.apps.v1.app_version",
|
|
76595
|
-
method: "POST",
|
|
76596
|
-
methodFqn: "wix.devcenter.apps.versions.v1.AppVersionsService.QueryAppVersion",
|
|
76597
|
-
url: resolveWixDevcenterAppsVersionsV1AppVersionsServiceUrl({
|
|
76598
|
-
protoPath: "/v1/app-versions/query",
|
|
76599
|
-
data: serializedData,
|
|
76600
|
-
host
|
|
76601
|
-
}),
|
|
76602
|
-
data: serializedData,
|
|
76603
|
-
transformResponse: fromRes
|
|
76604
|
-
};
|
|
76605
|
-
return metadata;
|
|
76606
|
-
}
|
|
76607
|
-
__queryAppVersion.fromReq = fromReq;
|
|
76608
|
-
__queryAppVersion.__isAmbassador = true;
|
|
76609
|
-
return __queryAppVersion;
|
|
76610
|
-
}
|
|
76611
|
-
|
|
76612
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/types.impl.js
|
|
76613
|
-
init_esm_shims();
|
|
76614
|
-
var State;
|
|
76615
|
-
(function(State3) {
|
|
76616
|
-
State3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
76617
|
-
State3["UNLOCKED_DRAFT"] = "UNLOCKED_DRAFT";
|
|
76618
|
-
State3["LOCKED_DRAFT"] = "LOCKED_DRAFT";
|
|
76619
|
-
State3["PRODUCTION"] = "PRODUCTION";
|
|
76620
|
-
})(State || (State = {}));
|
|
76621
|
-
var Status;
|
|
76622
|
-
(function(Status5) {
|
|
76623
|
-
Status5["UNKNOWN"] = "UNKNOWN";
|
|
76624
|
-
Status5["DEPRECATED"] = "DEPRECATED";
|
|
76625
|
-
Status5["ARCHIVED"] = "ARCHIVED";
|
|
76626
|
-
})(Status || (Status = {}));
|
|
76627
|
-
var CreatedByType;
|
|
76628
|
-
(function(CreatedByType3) {
|
|
76629
|
-
CreatedByType3["UNKNOWN_CREATED_BY"] = "UNKNOWN_CREATED_BY";
|
|
76630
|
-
CreatedByType3["USER"] = "USER";
|
|
76631
|
-
CreatedByType3["SERVICE"] = "SERVICE";
|
|
76632
|
-
CreatedByType3["ACCOUNT"] = "ACCOUNT";
|
|
76633
|
-
})(CreatedByType || (CreatedByType = {}));
|
|
76634
|
-
var PromoteStrategy;
|
|
76635
|
-
(function(PromoteStrategy2) {
|
|
76636
|
-
PromoteStrategy2["UNKNOWN_STRATEGY"] = "UNKNOWN_STRATEGY";
|
|
76637
|
-
PromoteStrategy2["ENTIRE_APP"] = "ENTIRE_APP";
|
|
76638
|
-
})(PromoteStrategy || (PromoteStrategy = {}));
|
|
76639
|
-
var VersionStatus;
|
|
76640
|
-
(function(VersionStatus3) {
|
|
76641
|
-
VersionStatus3["NONE_STATUS"] = "NONE_STATUS";
|
|
76642
|
-
VersionStatus3["DRAFT"] = "DRAFT";
|
|
76643
|
-
VersionStatus3["SUBMITTED"] = "SUBMITTED";
|
|
76644
|
-
VersionStatus3["IN_REVIEW"] = "IN_REVIEW";
|
|
76645
|
-
VersionStatus3["APPROVED"] = "APPROVED";
|
|
76646
|
-
VersionStatus3["PUBLISHED"] = "PUBLISHED";
|
|
76647
|
-
VersionStatus3["DECLINED"] = "DECLINED";
|
|
76648
|
-
VersionStatus3["ARCHIVED"] = "ARCHIVED";
|
|
76649
|
-
VersionStatus3["HIDDEN"] = "HIDDEN";
|
|
76650
|
-
VersionStatus3["RELEASED"] = "RELEASED";
|
|
76651
|
-
})(VersionStatus || (VersionStatus = {}));
|
|
76652
|
-
var SortOrder;
|
|
76653
|
-
(function(SortOrder2) {
|
|
76654
|
-
SortOrder2["ASC"] = "ASC";
|
|
76655
|
-
SortOrder2["DESC"] = "DESC";
|
|
76656
|
-
})(SortOrder || (SortOrder = {}));
|
|
76657
|
-
var PlanStatus;
|
|
76658
|
-
(function(PlanStatus3) {
|
|
76659
|
-
PlanStatus3["UNKNOWN"] = "UNKNOWN";
|
|
76660
|
-
PlanStatus3["VISIBLE"] = "VISIBLE";
|
|
76661
|
-
PlanStatus3["HIDDEN"] = "HIDDEN";
|
|
76662
|
-
})(PlanStatus || (PlanStatus = {}));
|
|
76663
|
-
var PlanDescription;
|
|
76664
|
-
(function(PlanDescription3) {
|
|
76665
|
-
PlanDescription3["UNKNOWN_DESCRIPTION"] = "UNKNOWN_DESCRIPTION";
|
|
76666
|
-
PlanDescription3["BENEFITS"] = "BENEFITS";
|
|
76667
|
-
PlanDescription3["CUSTOM_TEXT"] = "CUSTOM_TEXT";
|
|
76668
|
-
})(PlanDescription || (PlanDescription = {}));
|
|
76669
|
-
var BusinessModel;
|
|
76670
|
-
(function(BusinessModel3) {
|
|
76671
|
-
BusinessModel3["None"] = "None";
|
|
76672
|
-
BusinessModel3["FREEMIUM"] = "FREEMIUM";
|
|
76673
|
-
BusinessModel3["PREMIUM"] = "PREMIUM";
|
|
76674
|
-
BusinessModel3["FREE"] = "FREE";
|
|
76675
|
-
BusinessModel3["WIX_PREMIUM"] = "WIX_PREMIUM";
|
|
76676
|
-
BusinessModel3["DYNAMIC"] = "DYNAMIC";
|
|
76677
|
-
})(BusinessModel || (BusinessModel = {}));
|
|
76678
|
-
var Action;
|
|
76679
|
-
(function(Action2) {
|
|
76680
|
-
Action2["CREATED"] = "CREATED";
|
|
76681
|
-
Action2["UPDATED"] = "UPDATED";
|
|
76682
|
-
Action2["RESTORED"] = "RESTORED";
|
|
76683
|
-
Action2["DELETED"] = "DELETED";
|
|
76684
|
-
})(Action || (Action = {}));
|
|
76685
|
-
var WebhookIdentityType;
|
|
76686
|
-
(function(WebhookIdentityType3) {
|
|
76687
|
-
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
76688
|
-
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
76689
|
-
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
76690
|
-
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
76691
|
-
WebhookIdentityType3["APP"] = "APP";
|
|
76692
|
-
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
76693
|
-
|
|
76694
76550
|
// ../../node_modules/@wix/ambassador-devcenter-myapps-v1-my-app/build/es/http.impl.js
|
|
76695
76551
|
init_esm_shims();
|
|
76696
76552
|
var _myApp = {
|
|
@@ -77216,6 +77072,10 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
77216
77072
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
77217
77073
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
77218
77074
|
var _background2 = { image: "_media" };
|
|
77075
|
+
var _breakpointPresetStyleOverrides2 = {
|
|
77076
|
+
default: "_presetStyleOverrides",
|
|
77077
|
+
small: "_presetStyleOverrides"
|
|
77078
|
+
};
|
|
77219
77079
|
var _checkbox2 = { label: "_richContent" };
|
|
77220
77080
|
var _checkboxGroup2 = { description: "_richContent", options: "_option" };
|
|
77221
77081
|
var _commonImage2 = {
|
|
@@ -77241,6 +77101,7 @@ var _componentData2 = {
|
|
|
77241
77101
|
editorReactComponent: "_editorReactComponent"
|
|
77242
77102
|
};
|
|
77243
77103
|
var _conditionNode2 = { and: "_andCondition", or: "_orCondition" };
|
|
77104
|
+
var _cssCustomPropertyItem2 = { number: "_cssNumber" };
|
|
77244
77105
|
var _cssNumber2 = {
|
|
77245
77106
|
minimum: "google.protobuf.FloatValue",
|
|
77246
77107
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -77269,7 +77130,8 @@ var _editorElement2 = {
|
|
|
77269
77130
|
style: "Map#_styleItem",
|
|
77270
77131
|
data: "Map#_dataItem",
|
|
77271
77132
|
elements: "Map#_elementItem",
|
|
77272
|
-
presets: "Map#_presetItem"
|
|
77133
|
+
presets: "Map#_presetItem",
|
|
77134
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77273
77135
|
};
|
|
77274
77136
|
var _editorPresence2 = { presetsEditorPresence: "_presetEditorPresence" };
|
|
77275
77137
|
var _editorReactComponent2 = { editorElement: "_editorElement" };
|
|
@@ -77278,6 +77140,7 @@ var _elementItem2 = {
|
|
|
77278
77140
|
refElement: "_refElement"
|
|
77279
77141
|
};
|
|
77280
77142
|
var _elementStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
77143
|
+
var _elementStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
77281
77144
|
var _expectedInputs2 = {
|
|
77282
77145
|
expectedStartInputs: "_predefinedExpectedInput",
|
|
77283
77146
|
expectedVerifyInputs: "_predefinedExpectedInput"
|
|
@@ -77306,7 +77169,8 @@ var _inlineElement2 = {
|
|
|
77306
77169
|
style: "Map#_styleItem",
|
|
77307
77170
|
data: "Map#_dataItem",
|
|
77308
77171
|
elements: "Map#_elementItem",
|
|
77309
|
-
presets: "Map#_presetItem"
|
|
77172
|
+
presets: "Map#_presetItem",
|
|
77173
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
77310
77174
|
};
|
|
77311
77175
|
var _inputField2 = {
|
|
77312
77176
|
stringOptions: "__String",
|
|
@@ -77390,7 +77254,17 @@ var _predefinedExpectedInputConfiguration2 = {
|
|
|
77390
77254
|
};
|
|
77391
77255
|
var _premiumInfo = { freeTrialData: "_freeTrialData" };
|
|
77392
77256
|
var _presetEditorPresence2 = { wixMediaThumbnail: "_commonImage" };
|
|
77393
|
-
var
|
|
77257
|
+
var _presetElementDefaults2 = { elements: "Map#_presetInnerElementDefaults" };
|
|
77258
|
+
var _presetInnerElementDefaults2 = {
|
|
77259
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
77260
|
+
};
|
|
77261
|
+
var _presetItem2 = {
|
|
77262
|
+
styleDefaults: "_presetStyleDefaults",
|
|
77263
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
77264
|
+
presetDefaults: "_presetElementDefaults"
|
|
77265
|
+
};
|
|
77266
|
+
var _presetStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
77267
|
+
var _presetStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
77394
77268
|
var _pricingDetails = { discount: "_discount" };
|
|
77395
77269
|
var _productCheckboxGroup2 = {
|
|
77396
77270
|
description: "_richContent",
|
|
@@ -77405,7 +77279,8 @@ var _radioGroup2 = { description: "_richContent" };
|
|
|
77405
77279
|
var _ratingInput2 = { description: "_richContent" };
|
|
77406
77280
|
var _refElement2 = {
|
|
77407
77281
|
resolvedElement: "_inlineElement",
|
|
77408
|
-
elementsDefaults: "Map#_refInnerElementDefaults"
|
|
77282
|
+
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
77283
|
+
elements: "Map#_refInnerElementDefaults"
|
|
77409
77284
|
};
|
|
77410
77285
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
77411
77286
|
var _richContent2 = { nodes: "_node", metadata: "_v1Metadata" };
|
|
@@ -77538,12 +77413,14 @@ function managedApps(payload5) {
|
|
|
77538
77413
|
_audioData: _audioData2,
|
|
77539
77414
|
_authenticatorConfig: _authenticatorConfig2,
|
|
77540
77415
|
_background: _background2,
|
|
77416
|
+
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
77541
77417
|
_checkbox: _checkbox2,
|
|
77542
77418
|
_checkboxGroup: _checkboxGroup2,
|
|
77543
77419
|
_commonImage: _commonImage2,
|
|
77544
77420
|
_component: _component2,
|
|
77545
77421
|
_componentData: _componentData2,
|
|
77546
77422
|
_conditionNode: _conditionNode2,
|
|
77423
|
+
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
77547
77424
|
_cssNumber: _cssNumber2,
|
|
77548
77425
|
_dataItem: _dataItem2,
|
|
77549
77426
|
_dataItems: _dataItems2,
|
|
@@ -77562,6 +77439,7 @@ function managedApps(payload5) {
|
|
|
77562
77439
|
_editorReactComponent: _editorReactComponent2,
|
|
77563
77440
|
_elementItem: _elementItem2,
|
|
77564
77441
|
_elementStyleDefaults: _elementStyleDefaults2,
|
|
77442
|
+
_elementStyleOverrides: _elementStyleOverrides2,
|
|
77565
77443
|
_expectedInputs: _expectedInputs2,
|
|
77566
77444
|
_field: _field2,
|
|
77567
77445
|
_fileUpload: _fileUpload2,
|
|
@@ -77607,7 +77485,11 @@ function managedApps(payload5) {
|
|
|
77607
77485
|
_predefinedExpectedInputConfiguration: _predefinedExpectedInputConfiguration2,
|
|
77608
77486
|
_premiumInfo,
|
|
77609
77487
|
_presetEditorPresence: _presetEditorPresence2,
|
|
77488
|
+
_presetElementDefaults: _presetElementDefaults2,
|
|
77489
|
+
_presetInnerElementDefaults: _presetInnerElementDefaults2,
|
|
77610
77490
|
_presetItem: _presetItem2,
|
|
77491
|
+
_presetStyleDefaults: _presetStyleDefaults2,
|
|
77492
|
+
_presetStyleOverrides: _presetStyleOverrides2,
|
|
77611
77493
|
_pricingDetails,
|
|
77612
77494
|
_productCheckboxGroup: _productCheckboxGroup2,
|
|
77613
77495
|
_productCheckboxGroupOption: _productCheckboxGroupOption2,
|
|
@@ -77901,6 +77783,7 @@ var ComponentType;
|
|
|
77901
77783
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
77902
77784
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
77903
77785
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
77786
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
77904
77787
|
})(ComponentType || (ComponentType = {}));
|
|
77905
77788
|
var WidgetVertical;
|
|
77906
77789
|
(function(WidgetVertical3) {
|
|
@@ -78252,11 +78135,11 @@ var Domain;
|
|
|
78252
78135
|
Domain3["USER"] = "USER";
|
|
78253
78136
|
Domain3["WIX"] = "WIX";
|
|
78254
78137
|
})(Domain || (Domain = {}));
|
|
78255
|
-
var
|
|
78256
|
-
(function(
|
|
78257
|
-
|
|
78258
|
-
|
|
78259
|
-
})(
|
|
78138
|
+
var Status;
|
|
78139
|
+
(function(Status4) {
|
|
78140
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
78141
|
+
Status4["INACTIVE"] = "INACTIVE";
|
|
78142
|
+
})(Status || (Status = {}));
|
|
78260
78143
|
var TextInputDisplayType;
|
|
78261
78144
|
(function(TextInputDisplayType3) {
|
|
78262
78145
|
TextInputDisplayType3["TEXT"] = "TEXT";
|
|
@@ -78295,6 +78178,7 @@ var Tag;
|
|
|
78295
78178
|
Tag3["MY_BUSINESS"] = "MY_BUSINESS";
|
|
78296
78179
|
Tag3["PIPELINE_LINKED_ENTITY"] = "PIPELINE_LINKED_ENTITY";
|
|
78297
78180
|
Tag3["GET_PAID"] = "GET_PAID";
|
|
78181
|
+
Tag3["PIPELINE_CARD_CATALOG_ITEM"] = "PIPELINE_CARD_CATALOG_ITEM";
|
|
78298
78182
|
})(Tag || (Tag = {}));
|
|
78299
78183
|
var FilterSelectionType;
|
|
78300
78184
|
(function(FilterSelectionType3) {
|
|
@@ -78668,13 +78552,13 @@ var NavigationType;
|
|
|
78668
78552
|
NavigationType3["NAVIGATE"] = "NAVIGATE";
|
|
78669
78553
|
NavigationType3["MODAL"] = "MODAL";
|
|
78670
78554
|
})(NavigationType || (NavigationType = {}));
|
|
78671
|
-
var
|
|
78672
|
-
(function(
|
|
78673
|
-
|
|
78674
|
-
|
|
78675
|
-
|
|
78676
|
-
|
|
78677
|
-
})(
|
|
78555
|
+
var State;
|
|
78556
|
+
(function(State2) {
|
|
78557
|
+
State2["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
78558
|
+
State2["DEFAULT_ON"] = "DEFAULT_ON";
|
|
78559
|
+
State2["DEFAULT_OFF"] = "DEFAULT_OFF";
|
|
78560
|
+
State2["ALWAYS_ON"] = "ALWAYS_ON";
|
|
78561
|
+
})(State || (State = {}));
|
|
78678
78562
|
var NotificationTopicState;
|
|
78679
78563
|
(function(NotificationTopicState3) {
|
|
78680
78564
|
NotificationTopicState3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
@@ -79526,6 +79410,21 @@ var BackgroundModeEnum;
|
|
|
79526
79410
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
79527
79411
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
79528
79412
|
})(BackgroundModeEnum || (BackgroundModeEnum = {}));
|
|
79413
|
+
var ImageCategoryTypes;
|
|
79414
|
+
(function(ImageCategoryTypes3) {
|
|
79415
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
79416
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
79417
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
79418
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
79419
|
+
var VectorArtCategoryTypes;
|
|
79420
|
+
(function(VectorArtCategoryTypes3) {
|
|
79421
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
79422
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
79423
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
79424
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
79425
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
79426
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
79427
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
79529
79428
|
var CssDataTypeEnumCssDataType;
|
|
79530
79429
|
(function(CssDataTypeEnumCssDataType3) {
|
|
79531
79430
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -79631,6 +79530,33 @@ var ResizeDirection;
|
|
|
79631
79530
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
79632
79531
|
ResizeDirection3["none"] = "none";
|
|
79633
79532
|
})(ResizeDirection || (ResizeDirection = {}));
|
|
79533
|
+
var RichTextAbilities;
|
|
79534
|
+
(function(RichTextAbilities3) {
|
|
79535
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
79536
|
+
RichTextAbilities3["font"] = "font";
|
|
79537
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
79538
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
79539
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
79540
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
79541
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
79542
|
+
RichTextAbilities3["color"] = "color";
|
|
79543
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
79544
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
79545
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
79546
|
+
RichTextAbilities3["direction"] = "direction";
|
|
79547
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
79548
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
79549
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
79550
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
79551
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
79552
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
79553
|
+
var VideoCategoryTypes;
|
|
79554
|
+
(function(VideoCategoryTypes3) {
|
|
79555
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
79556
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
79557
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
79558
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
79559
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
79634
79560
|
var ElementTypeEnumElementType;
|
|
79635
79561
|
(function(ElementTypeEnumElementType2) {
|
|
79636
79562
|
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -79646,6 +79572,8 @@ var ActionType;
|
|
|
79646
79572
|
ActionType3["forward"] = "forward";
|
|
79647
79573
|
ActionType3["style"] = "style";
|
|
79648
79574
|
ActionType3["displayGroup"] = "displayGroup";
|
|
79575
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
79576
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
79649
79577
|
})(ActionType || (ActionType = {}));
|
|
79650
79578
|
var PanelType;
|
|
79651
79579
|
(function(PanelType3) {
|
|
@@ -79663,6 +79591,7 @@ var ActionName;
|
|
|
79663
79591
|
ActionName3["dashboard"] = "dashboard";
|
|
79664
79592
|
ActionName3["custom"] = "custom";
|
|
79665
79593
|
ActionName3["manageMenu"] = "manageMenu";
|
|
79594
|
+
ActionName3["container"] = "container";
|
|
79666
79595
|
})(ActionName || (ActionName = {}));
|
|
79667
79596
|
var SizingType;
|
|
79668
79597
|
(function(SizingType3) {
|
|
@@ -79671,6 +79600,20 @@ var SizingType;
|
|
|
79671
79600
|
SizingType3["stretched"] = "stretched";
|
|
79672
79601
|
SizingType3["pixels"] = "pixels";
|
|
79673
79602
|
})(SizingType || (SizingType = {}));
|
|
79603
|
+
var BreakpointEnumBreakpoint;
|
|
79604
|
+
(function(BreakpointEnumBreakpoint3) {
|
|
79605
|
+
BreakpointEnumBreakpoint3["UNKNOWN_Breakpoint"] = "UNKNOWN_Breakpoint";
|
|
79606
|
+
BreakpointEnumBreakpoint3["small"] = "small";
|
|
79607
|
+
BreakpointEnumBreakpoint3["large"] = "large";
|
|
79608
|
+
})(BreakpointEnumBreakpoint || (BreakpointEnumBreakpoint = {}));
|
|
79609
|
+
var ContentResizeDirection;
|
|
79610
|
+
(function(ContentResizeDirection3) {
|
|
79611
|
+
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
79612
|
+
ContentResizeDirection3["horizontal"] = "horizontal";
|
|
79613
|
+
ContentResizeDirection3["vertical"] = "vertical";
|
|
79614
|
+
ContentResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
79615
|
+
ContentResizeDirection3["none"] = "none";
|
|
79616
|
+
})(ContentResizeDirection || (ContentResizeDirection = {}));
|
|
79674
79617
|
var Archetype;
|
|
79675
79618
|
(function(Archetype3) {
|
|
79676
79619
|
Archetype3["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
@@ -79711,6 +79654,8 @@ var Archetype;
|
|
|
79711
79654
|
Archetype3["Captcha"] = "Captcha";
|
|
79712
79655
|
Archetype3["VectorArt"] = "VectorArt";
|
|
79713
79656
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
79657
|
+
Archetype3["Cart"] = "Cart";
|
|
79658
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
79714
79659
|
})(Archetype || (Archetype = {}));
|
|
79715
79660
|
var NativeStateType;
|
|
79716
79661
|
(function(NativeStateType3) {
|
|
@@ -79723,8 +79668,9 @@ var NativeStateType;
|
|
|
79723
79668
|
var GroupType;
|
|
79724
79669
|
(function(GroupType3) {
|
|
79725
79670
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
79726
|
-
GroupType3["
|
|
79727
|
-
GroupType3["
|
|
79671
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
79672
|
+
GroupType3["dataType"] = "dataType";
|
|
79673
|
+
GroupType3["preset"] = "preset";
|
|
79728
79674
|
GroupType3["background"] = "background";
|
|
79729
79675
|
GroupType3["margin"] = "margin";
|
|
79730
79676
|
GroupType3["padding"] = "padding";
|
|
@@ -79739,15 +79685,127 @@ var GroupType;
|
|
|
79739
79685
|
GroupType3["font"] = "font";
|
|
79740
79686
|
GroupType3["textDecoration"] = "textDecoration";
|
|
79741
79687
|
GroupType3["gap"] = "gap";
|
|
79688
|
+
GroupType3["arrayItems"] = "arrayItems";
|
|
79689
|
+
GroupType3["arrayItem"] = "arrayItem";
|
|
79742
79690
|
})(GroupType || (GroupType = {}));
|
|
79743
|
-
var
|
|
79744
|
-
(function(
|
|
79745
|
-
|
|
79746
|
-
|
|
79747
|
-
|
|
79748
|
-
|
|
79749
|
-
|
|
79750
|
-
|
|
79691
|
+
var CssPropertyEnumCssPropertyType;
|
|
79692
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
79693
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
79694
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
79695
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
79696
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
79697
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
79698
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
79699
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
79700
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
79701
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
79702
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
79703
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
79704
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
79705
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
79706
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
79707
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
79708
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
79709
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
79710
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
79711
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
79712
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
79713
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
79714
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
79715
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
79716
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
79717
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
79718
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
79719
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
79720
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
79721
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
79722
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
79723
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
79724
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
79725
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
79726
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
79727
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
79728
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
79729
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
79730
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
79731
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
79732
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
79733
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
79734
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
79735
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
79736
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
79737
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
79738
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
79739
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
79740
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
79741
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
79742
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
79743
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
79744
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
79745
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
79746
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
79747
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
79748
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
79749
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
79750
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
79751
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
79752
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
79753
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
79754
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
79755
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
79756
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
79757
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
79758
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
79759
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
79760
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
79761
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
79762
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
79763
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
79764
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
79765
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
79766
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
79767
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
79768
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
79769
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
79770
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
79771
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
79772
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
79773
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
79774
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
79775
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
79776
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
79777
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
79778
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
79779
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
79780
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
79781
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
79782
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
79783
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
79784
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
79785
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
79786
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
79787
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
79788
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
79789
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
79790
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
79791
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
79792
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
79793
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
79794
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
79795
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
79796
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
79797
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
79798
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
79799
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
79800
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
79801
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
79802
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
79803
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
79804
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
79805
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
79806
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
79807
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
79808
|
+
})(CssPropertyEnumCssPropertyType || (CssPropertyEnumCssPropertyType = {}));
|
|
79751
79809
|
var InteractionsTrigger;
|
|
79752
79810
|
(function(InteractionsTrigger3) {
|
|
79753
79811
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -79943,6 +80001,114 @@ function createAppPermission(payload5) {
|
|
|
79943
80001
|
return __createAppPermission;
|
|
79944
80002
|
}
|
|
79945
80003
|
|
|
80004
|
+
// ../../node_modules/@wix/ambassador-devcenter-v1-share-url/build/es/http.impl.js
|
|
80005
|
+
init_esm_shims();
|
|
80006
|
+
var _createShareUrlRequest = { shareUrl: "_shareUrl" };
|
|
80007
|
+
var _createShareUrlResponse = { shareUrl: "_shareUrl" };
|
|
80008
|
+
var _listShareUrlsRequest = {};
|
|
80009
|
+
var _listShareUrlsResponse = { shareUrls: "_shareUrl" };
|
|
80010
|
+
var _shareUrl = {
|
|
80011
|
+
createdDate: "google.protobuf.Timestamp",
|
|
80012
|
+
updatedDate: "google.protobuf.Timestamp"
|
|
80013
|
+
};
|
|
80014
|
+
function resolveWixDevcenterV1AppShareUrlServiceUrl(opts) {
|
|
80015
|
+
var domainToMappings = {
|
|
80016
|
+
"manage._base_domain_": [
|
|
80017
|
+
{
|
|
80018
|
+
srcPath: "/_api/app-share-url-service",
|
|
80019
|
+
destPath: ""
|
|
80020
|
+
}
|
|
80021
|
+
],
|
|
80022
|
+
"dev._base_domain_": [
|
|
80023
|
+
{
|
|
80024
|
+
srcPath: "/_api/app-share-url-service",
|
|
80025
|
+
destPath: ""
|
|
80026
|
+
}
|
|
80027
|
+
],
|
|
80028
|
+
"www._base_domain_": [
|
|
80029
|
+
{
|
|
80030
|
+
srcPath: "/_api/app-share-url-service",
|
|
80031
|
+
destPath: ""
|
|
80032
|
+
}
|
|
80033
|
+
]
|
|
80034
|
+
};
|
|
80035
|
+
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
80036
|
+
}
|
|
80037
|
+
function createShareUrl(payload5) {
|
|
80038
|
+
var _a3 = serializer(_createShareUrlRequest, { _shareUrl }), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
80039
|
+
var fromRes = serializer(_createShareUrlResponse, {
|
|
80040
|
+
_shareUrl
|
|
80041
|
+
}).fromJSON;
|
|
80042
|
+
function __createShareUrl(_a4) {
|
|
80043
|
+
var host = _a4.host;
|
|
80044
|
+
var serializedData = toReq(payload5);
|
|
80045
|
+
var metadata = {
|
|
80046
|
+
entityFqdn: "wix.devcenter.v1.share_url",
|
|
80047
|
+
method: "POST",
|
|
80048
|
+
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
80049
|
+
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
80050
|
+
protoPath: "/v1/share-url",
|
|
80051
|
+
data: serializedData,
|
|
80052
|
+
host
|
|
80053
|
+
}),
|
|
80054
|
+
data: serializedData,
|
|
80055
|
+
transformResponse: fromRes
|
|
80056
|
+
};
|
|
80057
|
+
return metadata;
|
|
80058
|
+
}
|
|
80059
|
+
__createShareUrl.fromReq = fromReq;
|
|
80060
|
+
__createShareUrl.__isAmbassador = true;
|
|
80061
|
+
return __createShareUrl;
|
|
80062
|
+
}
|
|
80063
|
+
function listShareUrls(payload5) {
|
|
80064
|
+
var _a3 = serializer(_listShareUrlsRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
80065
|
+
var fromRes = serializer(_listShareUrlsResponse, {
|
|
80066
|
+
_shareUrl
|
|
80067
|
+
}).fromJSON;
|
|
80068
|
+
function __listShareUrls(_a4) {
|
|
80069
|
+
var host = _a4.host;
|
|
80070
|
+
var serializedData = toReq(payload5);
|
|
80071
|
+
var metadata = {
|
|
80072
|
+
entityFqdn: "wix.devcenter.v1.share_url",
|
|
80073
|
+
method: "GET",
|
|
80074
|
+
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
80075
|
+
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
80076
|
+
protoPath: "/v1/share-urls",
|
|
80077
|
+
data: serializedData,
|
|
80078
|
+
host
|
|
80079
|
+
}),
|
|
80080
|
+
params: toURLSearchParams(serializedData),
|
|
80081
|
+
transformResponse: fromRes
|
|
80082
|
+
};
|
|
80083
|
+
return metadata;
|
|
80084
|
+
}
|
|
80085
|
+
__listShareUrls.fromReq = fromReq;
|
|
80086
|
+
__listShareUrls.__isAmbassador = true;
|
|
80087
|
+
return __listShareUrls;
|
|
80088
|
+
}
|
|
80089
|
+
|
|
80090
|
+
// ../../node_modules/@wix/ambassador-devcenter-v1-share-url/build/es/types.impl.js
|
|
80091
|
+
init_esm_shims();
|
|
80092
|
+
var ActivationStatus;
|
|
80093
|
+
(function(ActivationStatus2) {
|
|
80094
|
+
ActivationStatus2["ENABLED"] = "ENABLED";
|
|
80095
|
+
ActivationStatus2["DISABLED"] = "DISABLED";
|
|
80096
|
+
})(ActivationStatus || (ActivationStatus = {}));
|
|
80097
|
+
var VersionType;
|
|
80098
|
+
(function(VersionType2) {
|
|
80099
|
+
VersionType2["BEST_VERSION"] = "BEST_VERSION";
|
|
80100
|
+
VersionType2["LATEST_VERSION"] = "LATEST_VERSION";
|
|
80101
|
+
VersionType2["DEV_VERSION"] = "DEV_VERSION";
|
|
80102
|
+
})(VersionType || (VersionType = {}));
|
|
80103
|
+
var WebhookIdentityType;
|
|
80104
|
+
(function(WebhookIdentityType3) {
|
|
80105
|
+
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
80106
|
+
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
80107
|
+
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
80108
|
+
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
80109
|
+
WebhookIdentityType3["APP"] = "APP";
|
|
80110
|
+
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
80111
|
+
|
|
79946
80112
|
// ../dev-center-client/src/schemas.ts
|
|
79947
80113
|
init_esm_shims();
|
|
79948
80114
|
|
|
@@ -79957,19 +80123,19 @@ var Classification;
|
|
|
79957
80123
|
Classification2["HEADLESS"] = "HEADLESS";
|
|
79958
80124
|
Classification2["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
79959
80125
|
})(Classification || (Classification = {}));
|
|
79960
|
-
var
|
|
79961
|
-
(function(
|
|
79962
|
-
|
|
79963
|
-
|
|
79964
|
-
|
|
79965
|
-
|
|
79966
|
-
|
|
79967
|
-
|
|
79968
|
-
|
|
79969
|
-
|
|
79970
|
-
|
|
79971
|
-
|
|
79972
|
-
})(
|
|
80126
|
+
var VersionStatus;
|
|
80127
|
+
(function(VersionStatus2) {
|
|
80128
|
+
VersionStatus2["NONE_STATUS"] = "NONE_STATUS";
|
|
80129
|
+
VersionStatus2["DRAFT"] = "DRAFT";
|
|
80130
|
+
VersionStatus2["SUBMITTED"] = "SUBMITTED";
|
|
80131
|
+
VersionStatus2["IN_REVIEW"] = "IN_REVIEW";
|
|
80132
|
+
VersionStatus2["APPROVED"] = "APPROVED";
|
|
80133
|
+
VersionStatus2["PUBLISHED"] = "PUBLISHED";
|
|
80134
|
+
VersionStatus2["DECLINED"] = "DECLINED";
|
|
80135
|
+
VersionStatus2["ARCHIVED"] = "ARCHIVED";
|
|
80136
|
+
VersionStatus2["HIDDEN"] = "HIDDEN";
|
|
80137
|
+
VersionStatus2["RELEASED"] = "RELEASED";
|
|
80138
|
+
})(VersionStatus || (VersionStatus = {}));
|
|
79973
80139
|
var ComponentType2;
|
|
79974
80140
|
(function(ComponentType3) {
|
|
79975
80141
|
ComponentType3["NONE"] = "NONE";
|
|
@@ -80164,6 +80330,7 @@ var ComponentType2;
|
|
|
80164
80330
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
80165
80331
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
80166
80332
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
80333
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
80167
80334
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
80168
80335
|
var WidgetVertical2;
|
|
80169
80336
|
(function(WidgetVertical3) {
|
|
@@ -80515,11 +80682,11 @@ var Domain2;
|
|
|
80515
80682
|
Domain3["USER"] = "USER";
|
|
80516
80683
|
Domain3["WIX"] = "WIX";
|
|
80517
80684
|
})(Domain2 || (Domain2 = {}));
|
|
80518
|
-
var
|
|
80519
|
-
(function(
|
|
80520
|
-
|
|
80521
|
-
|
|
80522
|
-
})(
|
|
80685
|
+
var Status2;
|
|
80686
|
+
(function(Status4) {
|
|
80687
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
80688
|
+
Status4["INACTIVE"] = "INACTIVE";
|
|
80689
|
+
})(Status2 || (Status2 = {}));
|
|
80523
80690
|
var TextInputDisplayType2;
|
|
80524
80691
|
(function(TextInputDisplayType3) {
|
|
80525
80692
|
TextInputDisplayType3["TEXT"] = "TEXT";
|
|
@@ -81790,6 +81957,21 @@ var BackgroundModeEnum2;
|
|
|
81790
81957
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
81791
81958
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
81792
81959
|
})(BackgroundModeEnum2 || (BackgroundModeEnum2 = {}));
|
|
81960
|
+
var ImageCategoryTypes2;
|
|
81961
|
+
(function(ImageCategoryTypes3) {
|
|
81962
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
81963
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
81964
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
81965
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
81966
|
+
var VectorArtCategoryTypes2;
|
|
81967
|
+
(function(VectorArtCategoryTypes3) {
|
|
81968
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
81969
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
81970
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
81971
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
81972
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
81973
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
81974
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
81793
81975
|
var CssDataTypeEnumCssDataType2;
|
|
81794
81976
|
(function(CssDataTypeEnumCssDataType3) {
|
|
81795
81977
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -81895,6 +82077,33 @@ var ResizeDirection2;
|
|
|
81895
82077
|
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
81896
82078
|
ResizeDirection3["none"] = "none";
|
|
81897
82079
|
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
82080
|
+
var RichTextAbilities2;
|
|
82081
|
+
(function(RichTextAbilities3) {
|
|
82082
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
82083
|
+
RichTextAbilities3["font"] = "font";
|
|
82084
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
82085
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
82086
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
82087
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
82088
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
82089
|
+
RichTextAbilities3["color"] = "color";
|
|
82090
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
82091
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
82092
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
82093
|
+
RichTextAbilities3["direction"] = "direction";
|
|
82094
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
82095
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
82096
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
82097
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
82098
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
82099
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
82100
|
+
var VideoCategoryTypes2;
|
|
82101
|
+
(function(VideoCategoryTypes3) {
|
|
82102
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
82103
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
82104
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
82105
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
82106
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
81898
82107
|
var ElementType2;
|
|
81899
82108
|
(function(ElementType3) {
|
|
81900
82109
|
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
@@ -81910,6 +82119,8 @@ var ActionType2;
|
|
|
81910
82119
|
ActionType3["forward"] = "forward";
|
|
81911
82120
|
ActionType3["style"] = "style";
|
|
81912
82121
|
ActionType3["displayGroup"] = "displayGroup";
|
|
82122
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
82123
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
81913
82124
|
})(ActionType2 || (ActionType2 = {}));
|
|
81914
82125
|
var PanelType2;
|
|
81915
82126
|
(function(PanelType3) {
|
|
@@ -81927,6 +82138,7 @@ var ActionName2;
|
|
|
81927
82138
|
ActionName3["dashboard"] = "dashboard";
|
|
81928
82139
|
ActionName3["custom"] = "custom";
|
|
81929
82140
|
ActionName3["manageMenu"] = "manageMenu";
|
|
82141
|
+
ActionName3["container"] = "container";
|
|
81930
82142
|
})(ActionName2 || (ActionName2 = {}));
|
|
81931
82143
|
var SizingType2;
|
|
81932
82144
|
(function(SizingType3) {
|
|
@@ -81935,12 +82147,12 @@ var SizingType2;
|
|
|
81935
82147
|
SizingType3["stretched"] = "stretched";
|
|
81936
82148
|
SizingType3["pixels"] = "pixels";
|
|
81937
82149
|
})(SizingType2 || (SizingType2 = {}));
|
|
81938
|
-
var
|
|
81939
|
-
(function(
|
|
81940
|
-
|
|
81941
|
-
|
|
81942
|
-
|
|
81943
|
-
})(
|
|
82150
|
+
var BreakpointEnumBreakpoint2;
|
|
82151
|
+
(function(BreakpointEnumBreakpoint3) {
|
|
82152
|
+
BreakpointEnumBreakpoint3["UNKNOWN_Breakpoint"] = "UNKNOWN_Breakpoint";
|
|
82153
|
+
BreakpointEnumBreakpoint3["small"] = "small";
|
|
82154
|
+
BreakpointEnumBreakpoint3["large"] = "large";
|
|
82155
|
+
})(BreakpointEnumBreakpoint2 || (BreakpointEnumBreakpoint2 = {}));
|
|
81944
82156
|
var ContentResizeDirection2;
|
|
81945
82157
|
(function(ContentResizeDirection3) {
|
|
81946
82158
|
ContentResizeDirection3["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
@@ -81989,6 +82201,8 @@ var Archetype2;
|
|
|
81989
82201
|
Archetype3["Captcha"] = "Captcha";
|
|
81990
82202
|
Archetype3["VectorArt"] = "VectorArt";
|
|
81991
82203
|
Archetype3["AnimatedGraphic"] = "AnimatedGraphic";
|
|
82204
|
+
Archetype3["Cart"] = "Cart";
|
|
82205
|
+
Archetype3["ContactForm"] = "ContactForm";
|
|
81992
82206
|
})(Archetype2 || (Archetype2 = {}));
|
|
81993
82207
|
var NativeStateType2;
|
|
81994
82208
|
(function(NativeStateType3) {
|
|
@@ -82001,8 +82215,8 @@ var NativeStateType2;
|
|
|
82001
82215
|
var GroupType2;
|
|
82002
82216
|
(function(GroupType3) {
|
|
82003
82217
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
82004
|
-
GroupType3["
|
|
82005
|
-
GroupType3["
|
|
82218
|
+
GroupType3["cssDataType"] = "cssDataType";
|
|
82219
|
+
GroupType3["dataType"] = "dataType";
|
|
82006
82220
|
GroupType3["background"] = "background";
|
|
82007
82221
|
GroupType3["margin"] = "margin";
|
|
82008
82222
|
GroupType3["padding"] = "padding";
|
|
@@ -82018,6 +82232,124 @@ var GroupType2;
|
|
|
82018
82232
|
GroupType3["textDecoration"] = "textDecoration";
|
|
82019
82233
|
GroupType3["gap"] = "gap";
|
|
82020
82234
|
})(GroupType2 || (GroupType2 = {}));
|
|
82235
|
+
var CssPropertyEnumCssPropertyType2;
|
|
82236
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
82237
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
82238
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
82239
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
82240
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
82241
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
82242
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
82243
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
82244
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
82245
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
82246
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
82247
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
82248
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
82249
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
82250
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
82251
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
82252
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
82253
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
82254
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
82255
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
82256
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
82257
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
82258
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
82259
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
82260
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
82261
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
82262
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
82263
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
82264
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
82265
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
82266
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
82267
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
82268
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
82269
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
82270
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
82271
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
82272
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
82273
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
82274
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
82275
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
82276
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
82277
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
82278
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
82279
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
82280
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
82281
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
82282
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
82283
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
82284
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
82285
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
82286
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
82287
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
82288
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
82289
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
82290
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
82291
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
82292
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
82293
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
82294
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
82295
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
82296
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
82297
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
82298
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
82299
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
82300
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
82301
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
82302
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
82303
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
82304
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
82305
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
82306
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
82307
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
82308
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
82309
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
82310
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
82311
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
82312
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
82313
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
82314
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
82315
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
82316
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
82317
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
82318
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
82319
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
82320
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
82321
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
82322
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
82323
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
82324
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
82325
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
82326
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
82327
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
82328
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
82329
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
82330
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
82331
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
82332
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
82333
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
82334
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
82335
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
82336
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
82337
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
82338
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
82339
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
82340
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
82341
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
82342
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
82343
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
82344
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
82345
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
82346
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
82347
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
82348
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
82349
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
82350
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
82351
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
82352
|
+
})(CssPropertyEnumCssPropertyType2 || (CssPropertyEnumCssPropertyType2 = {}));
|
|
82021
82353
|
var InteractionsTrigger2;
|
|
82022
82354
|
(function(InteractionsTrigger3) {
|
|
82023
82355
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -82141,27 +82473,27 @@ var MediaType;
|
|
|
82141
82473
|
MediaType2["IMAGE"] = "IMAGE";
|
|
82142
82474
|
MediaType2["YOUTUBE"] = "YOUTUBE";
|
|
82143
82475
|
})(MediaType || (MediaType = {}));
|
|
82144
|
-
var
|
|
82145
|
-
(function(
|
|
82146
|
-
|
|
82147
|
-
|
|
82148
|
-
|
|
82149
|
-
})(
|
|
82150
|
-
var
|
|
82151
|
-
(function(
|
|
82152
|
-
|
|
82153
|
-
|
|
82154
|
-
|
|
82155
|
-
})(
|
|
82156
|
-
var
|
|
82157
|
-
(function(
|
|
82158
|
-
|
|
82159
|
-
|
|
82160
|
-
|
|
82161
|
-
|
|
82162
|
-
|
|
82163
|
-
|
|
82164
|
-
})(
|
|
82476
|
+
var PlanStatus;
|
|
82477
|
+
(function(PlanStatus2) {
|
|
82478
|
+
PlanStatus2["UNKNOWN"] = "UNKNOWN";
|
|
82479
|
+
PlanStatus2["VISIBLE"] = "VISIBLE";
|
|
82480
|
+
PlanStatus2["HIDDEN"] = "HIDDEN";
|
|
82481
|
+
})(PlanStatus || (PlanStatus = {}));
|
|
82482
|
+
var PlanDescription;
|
|
82483
|
+
(function(PlanDescription2) {
|
|
82484
|
+
PlanDescription2["UNKNOWN_DESCRIPTION"] = "UNKNOWN_DESCRIPTION";
|
|
82485
|
+
PlanDescription2["BENEFITS"] = "BENEFITS";
|
|
82486
|
+
PlanDescription2["CUSTOM_TEXT"] = "CUSTOM_TEXT";
|
|
82487
|
+
})(PlanDescription || (PlanDescription = {}));
|
|
82488
|
+
var BusinessModel;
|
|
82489
|
+
(function(BusinessModel2) {
|
|
82490
|
+
BusinessModel2["None"] = "None";
|
|
82491
|
+
BusinessModel2["FREEMIUM"] = "FREEMIUM";
|
|
82492
|
+
BusinessModel2["PREMIUM"] = "PREMIUM";
|
|
82493
|
+
BusinessModel2["FREE"] = "FREE";
|
|
82494
|
+
BusinessModel2["WIX_PREMIUM"] = "WIX_PREMIUM";
|
|
82495
|
+
BusinessModel2["DYNAMIC"] = "DYNAMIC";
|
|
82496
|
+
})(BusinessModel || (BusinessModel = {}));
|
|
82165
82497
|
var TranslationType;
|
|
82166
82498
|
(function(TranslationType2) {
|
|
82167
82499
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
@@ -82203,12 +82535,12 @@ var NamespaceType;
|
|
|
82203
82535
|
NamespaceType2["ACCOUNT"] = "ACCOUNT";
|
|
82204
82536
|
NamespaceType2["COMPANY"] = "COMPANY";
|
|
82205
82537
|
})(NamespaceType || (NamespaceType = {}));
|
|
82206
|
-
var
|
|
82207
|
-
(function(
|
|
82208
|
-
|
|
82209
|
-
|
|
82210
|
-
|
|
82211
|
-
})(
|
|
82538
|
+
var Status3;
|
|
82539
|
+
(function(Status4) {
|
|
82540
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
82541
|
+
Status4["DEPRECATED"] = "DEPRECATED";
|
|
82542
|
+
Status4["ARCHIVED"] = "ARCHIVED";
|
|
82543
|
+
})(Status3 || (Status3 = {}));
|
|
82212
82544
|
var AppType3;
|
|
82213
82545
|
(function(AppType4) {
|
|
82214
82546
|
AppType4["SITE_APP"] = "SITE_APP";
|
|
@@ -82218,11 +82550,11 @@ var AppType3;
|
|
|
82218
82550
|
AppType4["HEADLESS"] = "HEADLESS";
|
|
82219
82551
|
AppType4["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
82220
82552
|
})(AppType3 || (AppType3 = {}));
|
|
82221
|
-
var
|
|
82222
|
-
(function(
|
|
82223
|
-
|
|
82224
|
-
|
|
82225
|
-
})(
|
|
82553
|
+
var CreatedByType;
|
|
82554
|
+
(function(CreatedByType2) {
|
|
82555
|
+
CreatedByType2["USER"] = "USER";
|
|
82556
|
+
CreatedByType2["APP"] = "APP";
|
|
82557
|
+
})(CreatedByType || (CreatedByType = {}));
|
|
82226
82558
|
var ShowConsentBehaviour;
|
|
82227
82559
|
(function(ShowConsentBehaviour2) {
|
|
82228
82560
|
ShowConsentBehaviour2["DEFAULT_BEHAVIOUR"] = "DEFAULT_BEHAVIOUR";
|
|
@@ -82283,19 +82615,6 @@ var appByVersionSchema = z.object({
|
|
|
82283
82615
|
components: componentsSchema
|
|
82284
82616
|
})
|
|
82285
82617
|
});
|
|
82286
|
-
var appVersionSchema = z.object({
|
|
82287
|
-
appVersions: z.array(
|
|
82288
|
-
z.object({
|
|
82289
|
-
/** Application ID */
|
|
82290
|
-
id: z.string(),
|
|
82291
|
-
fullVersion: z.string().optional().default("0.0.0"),
|
|
82292
|
-
/** indicates if this is the draft instance of the version. */
|
|
82293
|
-
state: z.string().optional(),
|
|
82294
|
-
/** status of the app */
|
|
82295
|
-
status: z.string().optional()
|
|
82296
|
-
})
|
|
82297
|
-
)
|
|
82298
|
-
});
|
|
82299
82618
|
var appSecretsSchema = z.object({
|
|
82300
82619
|
appSecret: z.string(),
|
|
82301
82620
|
webhookPublicKey: z.string()
|
|
@@ -82377,6 +82696,17 @@ var queryAppTemplateSchema = z.object({
|
|
|
82377
82696
|
var cliAppTemplateSchema = appTemplateSchema.extend({
|
|
82378
82697
|
cliCloneData: cliCLoneDataSchema
|
|
82379
82698
|
});
|
|
82699
|
+
var shareUrlSchema = z.object({
|
|
82700
|
+
versionType: z.nativeEnum(VersionType),
|
|
82701
|
+
installationUrl: z.string().url(),
|
|
82702
|
+
tinyInstallationUrl: z.string().url().optional()
|
|
82703
|
+
});
|
|
82704
|
+
var createShareUrlSchema = z.object({
|
|
82705
|
+
shareUrl: shareUrlSchema
|
|
82706
|
+
});
|
|
82707
|
+
var listShareUrlsSchema = z.object({
|
|
82708
|
+
shareUrls: z.array(shareUrlSchema)
|
|
82709
|
+
});
|
|
82380
82710
|
|
|
82381
82711
|
// ../dev-center-client/src/dev-center-client.ts
|
|
82382
82712
|
var EMPTY_SITE_TEMPLATE = "24bafe8a-7c80-4b63-8a71-08752062f246";
|
|
@@ -82485,55 +82815,8 @@ var DevCenterClient = class {
|
|
|
82485
82815
|
});
|
|
82486
82816
|
}
|
|
82487
82817
|
};
|
|
82488
|
-
queryAppVersion = async ({ appId }) => {
|
|
82489
|
-
try {
|
|
82490
|
-
const { data } = await pRetry(
|
|
82491
|
-
() => this.httpClient.request(
|
|
82492
|
-
queryAppVersion({
|
|
82493
|
-
query: {
|
|
82494
|
-
paging: {
|
|
82495
|
-
limit: 1
|
|
82496
|
-
},
|
|
82497
|
-
filter: { appId },
|
|
82498
|
-
sort: [{ fieldName: "updatedDate", order: SortOrder.DESC }]
|
|
82499
|
-
}
|
|
82500
|
-
})
|
|
82501
|
-
),
|
|
82502
|
-
this.retryOptions
|
|
82503
|
-
);
|
|
82504
|
-
const parsedData = appVersionSchema.parse(data);
|
|
82505
|
-
const lastVersion = parsedData.appVersions[0];
|
|
82506
|
-
if (!lastVersion) {
|
|
82507
|
-
throw new CliError({
|
|
82508
|
-
code: CliErrorCode.AppForVersionNotFound({
|
|
82509
|
-
version: "latest"
|
|
82510
|
-
}),
|
|
82511
|
-
cause: null
|
|
82512
|
-
});
|
|
82513
|
-
}
|
|
82514
|
-
return {
|
|
82515
|
-
latestVersion: lastVersion.fullVersion,
|
|
82516
|
-
isPublished: lastVersion.state === State.PRODUCTION,
|
|
82517
|
-
isLocked: lastVersion.state === State.LOCKED_DRAFT
|
|
82518
|
-
};
|
|
82519
|
-
} catch (cause) {
|
|
82520
|
-
if (isHttpError(cause) && cause.response?.status === 404) {
|
|
82521
|
-
throw new CliError({
|
|
82522
|
-
code: CliErrorCode.AppForVersionNotFound({
|
|
82523
|
-
version: "latest"
|
|
82524
|
-
}),
|
|
82525
|
-
cause
|
|
82526
|
-
});
|
|
82527
|
-
}
|
|
82528
|
-
throw new CliError({
|
|
82529
|
-
code: CliErrorCode.FailedToFetchAppForVersion(),
|
|
82530
|
-
cause
|
|
82531
|
-
});
|
|
82532
|
-
}
|
|
82533
|
-
};
|
|
82534
82818
|
/**
|
|
82535
82819
|
* This method is deprecated.
|
|
82536
|
-
* Use `queryAppVersion()` if you need to get information about app version.
|
|
82537
82820
|
*/
|
|
82538
82821
|
getAppByVersion = async ({
|
|
82539
82822
|
appId,
|
|
@@ -82805,6 +83088,48 @@ var DevCenterClient = class {
|
|
|
82805
83088
|
const installationDetails = await this.getAppInstallationDetails(appId);
|
|
82806
83089
|
return installationDetails?.group === AppGroup.INSTALLED && installationDetails.incompleteSetupReason !== IncompleteSetupReason.PENDING_EDITOR;
|
|
82807
83090
|
};
|
|
83091
|
+
createShareUrl = async (shareUrl) => {
|
|
83092
|
+
try {
|
|
83093
|
+
const { data } = await this.httpClient.request(
|
|
83094
|
+
createShareUrl({
|
|
83095
|
+
shareUrl,
|
|
83096
|
+
disableExistingWithSameType: true,
|
|
83097
|
+
shareUrlIdParameter: ":shareUrlId",
|
|
83098
|
+
urlTemplate: "https://wix.com/app-market/test/:shareUrlId"
|
|
83099
|
+
})
|
|
83100
|
+
);
|
|
83101
|
+
return createShareUrlSchema.parse(data).shareUrl;
|
|
83102
|
+
} catch (e2) {
|
|
83103
|
+
throw new CliError({
|
|
83104
|
+
code: CliErrorCode.FailedToCreateShareUrl(),
|
|
83105
|
+
cause: e2
|
|
83106
|
+
});
|
|
83107
|
+
}
|
|
83108
|
+
};
|
|
83109
|
+
listShareUrls = async (appId) => {
|
|
83110
|
+
try {
|
|
83111
|
+
const { data } = await pRetry(
|
|
83112
|
+
() => this.httpClient.request(listShareUrls({ appId })),
|
|
83113
|
+
this.retryOptions
|
|
83114
|
+
);
|
|
83115
|
+
return listShareUrlsSchema.parse(data).shareUrls;
|
|
83116
|
+
} catch (e2) {
|
|
83117
|
+
throw new CliError({
|
|
83118
|
+
code: CliErrorCode.FailedToListShareUrls(),
|
|
83119
|
+
cause: e2
|
|
83120
|
+
});
|
|
83121
|
+
}
|
|
83122
|
+
};
|
|
83123
|
+
resolveDevVersionShareUrl = async (appId) => {
|
|
83124
|
+
const shareUrls = await this.listShareUrls(appId);
|
|
83125
|
+
const devVersionShareUrl = shareUrls.find(
|
|
83126
|
+
(shareUrl) => shareUrl.versionType === VersionType.DEV_VERSION
|
|
83127
|
+
);
|
|
83128
|
+
if (devVersionShareUrl) {
|
|
83129
|
+
return devVersionShareUrl;
|
|
83130
|
+
}
|
|
83131
|
+
return this.createShareUrl({ appId, versionType: VersionType.DEV_VERSION });
|
|
83132
|
+
};
|
|
82808
83133
|
};
|
|
82809
83134
|
|
|
82810
83135
|
// ../dev-center-client/src/useDevCenterClient.ts
|