@wix/create-headless-site 0.0.11 → 0.0.13
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 +417 -365
- package/build/index.js.map +1 -1
- package/package.json +4 -4
package/build/index.js
CHANGED
|
@@ -53043,7 +53043,7 @@ var require_lib2 = __commonJS({
|
|
|
53043
53043
|
}
|
|
53044
53044
|
}
|
|
53045
53045
|
};
|
|
53046
|
-
var
|
|
53046
|
+
var State2 = class _State {
|
|
53047
53047
|
constructor() {
|
|
53048
53048
|
this.flags = 1024;
|
|
53049
53049
|
this.startIndex = void 0;
|
|
@@ -53542,7 +53542,7 @@ var require_lib2 = __commonJS({
|
|
|
53542
53542
|
throw this.raise(Errors.UnterminatedTemplate, buildPosition(pos, lineStart, curLine));
|
|
53543
53543
|
}
|
|
53544
53544
|
});
|
|
53545
|
-
this.state = new
|
|
53545
|
+
this.state = new State2();
|
|
53546
53546
|
this.state.init(options);
|
|
53547
53547
|
this.input = input;
|
|
53548
53548
|
this.length = input.length;
|
|
@@ -64261,7 +64261,7 @@ var require_loader = __commonJS({
|
|
|
64261
64261
|
simpleEscapeMap[i2] = simpleEscapeSequence(i2);
|
|
64262
64262
|
}
|
|
64263
64263
|
var i2;
|
|
64264
|
-
function
|
|
64264
|
+
function State2(input, options) {
|
|
64265
64265
|
this.input = input;
|
|
64266
64266
|
this.filename = options["filename"] || null;
|
|
64267
64267
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
@@ -65228,7 +65228,7 @@ var require_loader = __commonJS({
|
|
|
65228
65228
|
input = input.slice(1);
|
|
65229
65229
|
}
|
|
65230
65230
|
}
|
|
65231
|
-
var state = new
|
|
65231
|
+
var state = new State2(input, options);
|
|
65232
65232
|
var nullpos = input.indexOf("\0");
|
|
65233
65233
|
if (nullpos !== -1) {
|
|
65234
65234
|
state.position = nullpos;
|
|
@@ -65388,7 +65388,7 @@ var require_dumper = __commonJS({
|
|
|
65388
65388
|
}
|
|
65389
65389
|
return "\\" + handle + common2.repeat("0", length - string.length) + string;
|
|
65390
65390
|
}
|
|
65391
|
-
function
|
|
65391
|
+
function State2(options) {
|
|
65392
65392
|
this.schema = options["schema"] || DEFAULT_FULL_SCHEMA;
|
|
65393
65393
|
this.indent = Math.max(1, options["indent"] || 2);
|
|
65394
65394
|
this.noArrayIndent = options["noArrayIndent"] || false;
|
|
@@ -65819,7 +65819,7 @@ var require_dumper = __commonJS({
|
|
|
65819
65819
|
}
|
|
65820
65820
|
function dump(input, options) {
|
|
65821
65821
|
options = options || {};
|
|
65822
|
-
var state = new
|
|
65822
|
+
var state = new State2(options);
|
|
65823
65823
|
if (!state.noRefs) getDuplicateReferences(input, state);
|
|
65824
65824
|
if (writeNode(state, 0, input, true, true)) return state.dump + "\n";
|
|
65825
65825
|
return "";
|
|
@@ -79368,7 +79368,6 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
79368
79368
|
FailedToDeployDocument: {},
|
|
79369
79369
|
WaitForEditorInstallationStateFailure: {},
|
|
79370
79370
|
EditorPendingInstallationCheckTimedout: {},
|
|
79371
|
-
FailedToParseLatestVersion: (0, import_variant11.fields)(),
|
|
79372
79371
|
FailedToGetMonitoringLoaderScript: (0, import_variant11.fields)(),
|
|
79373
79372
|
FailedToFetchWixLockFile: {},
|
|
79374
79373
|
FailedToGetSdkSlotData: {},
|
|
@@ -79385,7 +79384,8 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
79385
79384
|
FailedCreatingNewFunnelProject: {},
|
|
79386
79385
|
FailedToFindAstroConfig: {},
|
|
79387
79386
|
FailedToCreateShareUrl: {},
|
|
79388
|
-
FailedToListShareUrls: {}
|
|
79387
|
+
FailedToListShareUrls: {},
|
|
79388
|
+
FailedToParseNextVersion: (0, import_variant11.fields)()
|
|
79389
79389
|
});
|
|
79390
79390
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
79391
79391
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -79476,7 +79476,6 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
79476
79476
|
FailedToApplySiteFsManagerExternalUpdates: {},
|
|
79477
79477
|
ServeDeprecated: (0, import_variant11.fields)(),
|
|
79478
79478
|
CannotFindConfigReferencedAsset: (0, import_variant11.fields)(),
|
|
79479
|
-
CannotReleaseLockedApplication: {},
|
|
79480
79479
|
FailedToCreateIntellisenseAdapter: {},
|
|
79481
79480
|
FailedToInitIntellisenseAdapterTypes: {},
|
|
79482
79481
|
FailedToUpdateIntellisenseAdapterTypes: {},
|
|
@@ -80339,6 +80338,18 @@ function resolveWixIdentityOauth2V1Oauth2NgUrl(opts) {
|
|
|
80339
80338
|
{
|
|
80340
80339
|
srcPath: "/v1/oauth/authorize",
|
|
80341
80340
|
destPath: "/v1/oauth/authorize"
|
|
80341
|
+
},
|
|
80342
|
+
{
|
|
80343
|
+
srcPath: "/v1/oauth/user-info",
|
|
80344
|
+
destPath: "/v1/oauth/user-info"
|
|
80345
|
+
},
|
|
80346
|
+
{
|
|
80347
|
+
srcPath: "/iam/wix-idp/v1/oauth/token",
|
|
80348
|
+
destPath: "/v1/oauth/token"
|
|
80349
|
+
},
|
|
80350
|
+
{
|
|
80351
|
+
srcPath: "/iam/wix-idp/v1/oauth/user-info",
|
|
80352
|
+
destPath: "/v1/oauth/user-info"
|
|
80342
80353
|
}
|
|
80343
80354
|
],
|
|
80344
80355
|
_: [
|
|
@@ -80358,6 +80369,30 @@ function resolveWixIdentityOauth2V1Oauth2NgUrl(opts) {
|
|
|
80358
80369
|
srcPath: "/oauth2-ng",
|
|
80359
80370
|
destPath: ""
|
|
80360
80371
|
}
|
|
80372
|
+
],
|
|
80373
|
+
"apps._base_domain_": [
|
|
80374
|
+
{
|
|
80375
|
+
srcPath: "/oauth2/callback",
|
|
80376
|
+
destPath: "/oauth2/callback"
|
|
80377
|
+
}
|
|
80378
|
+
],
|
|
80379
|
+
"editor._base_domain_": [
|
|
80380
|
+
{
|
|
80381
|
+
srcPath: "/oauth2/callback",
|
|
80382
|
+
destPath: "/oauth2/callback"
|
|
80383
|
+
}
|
|
80384
|
+
],
|
|
80385
|
+
"blocks._base_domain_": [
|
|
80386
|
+
{
|
|
80387
|
+
srcPath: "/oauth2/callback",
|
|
80388
|
+
destPath: "/oauth2/callback"
|
|
80389
|
+
}
|
|
80390
|
+
],
|
|
80391
|
+
"create.editorx": [
|
|
80392
|
+
{
|
|
80393
|
+
srcPath: "/oauth2/callback",
|
|
80394
|
+
destPath: "/oauth2/callback"
|
|
80395
|
+
}
|
|
80361
80396
|
]
|
|
80362
80397
|
};
|
|
80363
80398
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
@@ -90050,15 +90085,6 @@ function getErrorComponent(code, cause) {
|
|
|
90050
90085
|
}
|
|
90051
90086
|
);
|
|
90052
90087
|
},
|
|
90053
|
-
CannotReleaseLockedApplication: () => {
|
|
90054
|
-
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90055
|
-
ErrorMessage,
|
|
90056
|
-
{
|
|
90057
|
-
message: "A new version of the app can not be released at this point.",
|
|
90058
|
-
explanation: "We\u2019re reviewing this app. You can\u2019t update new changes while it\u2019s in review."
|
|
90059
|
-
}
|
|
90060
|
-
);
|
|
90061
|
-
},
|
|
90062
90088
|
FailedToCreateIntellisenseAdapter: () => {
|
|
90063
90089
|
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90064
90090
|
ErrorMessage,
|
|
@@ -90193,14 +90219,6 @@ ${errorMessage}`
|
|
|
90193
90219
|
/* @__PURE__ */ import_react78.default.createElement(Text2, null, content.trim())
|
|
90194
90220
|
))))));
|
|
90195
90221
|
},
|
|
90196
|
-
FailedToParseLatestVersion: ({ version }) => {
|
|
90197
|
-
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90198
|
-
SystemErrorMessage,
|
|
90199
|
-
{
|
|
90200
|
-
message: `The version "${version}" produced by the system does not conform to the expected semantic versioning format and could not be parsed.`
|
|
90201
|
-
}
|
|
90202
|
-
);
|
|
90203
|
-
},
|
|
90204
90222
|
FailedToFetchWixLockFile: () => {
|
|
90205
90223
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: `Failed to fetch "wix.lock" file.` });
|
|
90206
90224
|
},
|
|
@@ -90352,6 +90370,14 @@ ${errorMessage}`
|
|
|
90352
90370
|
},
|
|
90353
90371
|
FailedToListShareUrls: () => {
|
|
90354
90372
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to list preview URLs." });
|
|
90373
|
+
},
|
|
90374
|
+
FailedToParseNextVersion: ({ version }) => {
|
|
90375
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90376
|
+
SystemErrorMessage,
|
|
90377
|
+
{
|
|
90378
|
+
message: `The version "${version}" produced by the system does not conform to the expected semantic versioning format and could not be parsed.`
|
|
90379
|
+
}
|
|
90380
|
+
);
|
|
90355
90381
|
}
|
|
90356
90382
|
});
|
|
90357
90383
|
}
|
|
@@ -93862,16 +93888,16 @@ function wixCliCliError(params) {
|
|
|
93862
93888
|
var package_default = {
|
|
93863
93889
|
name: "@wix/create-headless-site",
|
|
93864
93890
|
description: "Headless site creation wizard",
|
|
93865
|
-
version: "0.0.
|
|
93891
|
+
version: "0.0.13",
|
|
93866
93892
|
bin: "bin/index.cjs",
|
|
93867
93893
|
devDependencies: {
|
|
93868
93894
|
"@commander-js/extra-typings": "^13.0.0",
|
|
93869
93895
|
"@types/react": "^18.3.3",
|
|
93870
93896
|
"@types/semver": "^7.5.8",
|
|
93871
93897
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
93872
|
-
"@wix/ambassador-funnel-projects-v1-project": "^1.0.
|
|
93898
|
+
"@wix/ambassador-funnel-projects-v1-project": "^1.0.8",
|
|
93873
93899
|
"@wix/backend-as-a-service-client": "workspace:*",
|
|
93874
|
-
"@wix/bi-logger-dev-tools-data": "^1.
|
|
93900
|
+
"@wix/bi-logger-dev-tools-data": "^1.116.0",
|
|
93875
93901
|
"@wix/cli-astro-definitions": "workspace:*",
|
|
93876
93902
|
"@wix/cli-auth": "workspace:*",
|
|
93877
93903
|
"@wix/cli-core-definitions": "workspace:*",
|
|
@@ -96570,26 +96596,7 @@ init_esm_shims();
|
|
|
96570
96596
|
var _createProjectRequest = {};
|
|
96571
96597
|
var _createProjectResponse = {};
|
|
96572
96598
|
function resolveWixApiFunnelProjectProjectsServiceUrl(opts) {
|
|
96573
|
-
var domainToMappings = {
|
|
96574
|
-
"www.wixapis.com": [
|
|
96575
|
-
{
|
|
96576
|
-
srcPath: "/funnel/projects",
|
|
96577
|
-
destPath: ""
|
|
96578
|
-
}
|
|
96579
|
-
],
|
|
96580
|
-
"*.dev.wix-code.com": [
|
|
96581
|
-
{
|
|
96582
|
-
srcPath: "/_api/funnel-projects-service",
|
|
96583
|
-
destPath: ""
|
|
96584
|
-
}
|
|
96585
|
-
],
|
|
96586
|
-
_: [
|
|
96587
|
-
{
|
|
96588
|
-
srcPath: "/_api/funnel-projects-service",
|
|
96589
|
-
destPath: ""
|
|
96590
|
-
}
|
|
96591
|
-
]
|
|
96592
|
-
};
|
|
96599
|
+
var domainToMappings = {};
|
|
96593
96600
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
96594
96601
|
}
|
|
96595
96602
|
function createProject(payload5) {
|
|
@@ -96625,6 +96632,7 @@ var Type;
|
|
|
96625
96632
|
Type5["WIX"] = "WIX";
|
|
96626
96633
|
Type5["HEADLESS"] = "HEADLESS";
|
|
96627
96634
|
Type5["BRANDED_APP"] = "BRANDED_APP";
|
|
96635
|
+
Type5["VIBE"] = "VIBE";
|
|
96628
96636
|
})(Type || (Type = {}));
|
|
96629
96637
|
|
|
96630
96638
|
// src/clients/funnel-projects/schemas.ts
|
|
@@ -96792,6 +96800,7 @@ var _componentData = {
|
|
|
96792
96800
|
};
|
|
96793
96801
|
var _componentsMultilineAddress = { description: "_richContent" };
|
|
96794
96802
|
var _conditionNode = { and: "_andCondition", or: "_orCondition" };
|
|
96803
|
+
var _cssCustomPropertyItem = { number: "_cssNumber" };
|
|
96795
96804
|
var _cssNumber = {
|
|
96796
96805
|
minimum: "google.protobuf.FloatValue",
|
|
96797
96806
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -96819,7 +96828,8 @@ var _editorElement = {
|
|
|
96819
96828
|
style: "Map#_styleItem",
|
|
96820
96829
|
data: "Map#_dataItem",
|
|
96821
96830
|
elements: "Map#_elementItem",
|
|
96822
|
-
presets: "Map#_presetItem"
|
|
96831
|
+
presets: "Map#_presetItem",
|
|
96832
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
96823
96833
|
};
|
|
96824
96834
|
var _editorPresence = { presetsEditorPresence: "_presetEditorPresence" };
|
|
96825
96835
|
var _editorReactComponent = { editorElement: "_editorElement" };
|
|
@@ -96860,7 +96870,8 @@ var _inlineElement = {
|
|
|
96860
96870
|
style: "Map#_styleItem",
|
|
96861
96871
|
data: "Map#_dataItem",
|
|
96862
96872
|
elements: "Map#_elementItem",
|
|
96863
|
-
presets: "Map#_presetItem"
|
|
96873
|
+
presets: "Map#_presetItem",
|
|
96874
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
96864
96875
|
};
|
|
96865
96876
|
var _inputField = {
|
|
96866
96877
|
stringOptions: "__String",
|
|
@@ -96944,9 +96955,14 @@ var _predefinedExpectedInputConfiguration = {
|
|
|
96944
96955
|
textInput: "_adminConfigurableTextInput"
|
|
96945
96956
|
};
|
|
96946
96957
|
var _presetEditorPresence = { wixMediaThumbnail: "_wixCommonImage" };
|
|
96958
|
+
var _presetElementDefaults = { elements: "Map#_presetInnerElementDefaults" };
|
|
96959
|
+
var _presetInnerElementDefaults = {
|
|
96960
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
96961
|
+
};
|
|
96947
96962
|
var _presetItem = {
|
|
96948
96963
|
styleDefaults: "_presetStyleDefaults",
|
|
96949
|
-
styleOverrides: "_breakpointPresetStyleOverrides"
|
|
96964
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
96965
|
+
presetDefaults: "_presetElementDefaults"
|
|
96950
96966
|
};
|
|
96951
96967
|
var _presetStyleDefaults = { elements: "Map#_elementStyleDefaults" };
|
|
96952
96968
|
var _presetStyleOverrides = { elements: "Map#_elementStyleOverrides" };
|
|
@@ -97154,6 +97170,7 @@ function getAppByVersion(payload5) {
|
|
|
97154
97170
|
_componentData,
|
|
97155
97171
|
_componentsMultilineAddress,
|
|
97156
97172
|
_conditionNode,
|
|
97173
|
+
_cssCustomPropertyItem,
|
|
97157
97174
|
_cssNumber,
|
|
97158
97175
|
_dataItem,
|
|
97159
97176
|
_dataItems,
|
|
@@ -97214,6 +97231,8 @@ function getAppByVersion(payload5) {
|
|
|
97214
97231
|
_predefinedExpectedInput,
|
|
97215
97232
|
_predefinedExpectedInputConfiguration,
|
|
97216
97233
|
_presetEditorPresence,
|
|
97234
|
+
_presetElementDefaults,
|
|
97235
|
+
_presetInnerElementDefaults,
|
|
97217
97236
|
_presetItem,
|
|
97218
97237
|
_presetStyleDefaults,
|
|
97219
97238
|
_presetStyleOverrides,
|
|
@@ -97534,176 +97553,6 @@ function updateOAuthApp(payload5) {
|
|
|
97534
97553
|
return __updateOAuthApp;
|
|
97535
97554
|
}
|
|
97536
97555
|
|
|
97537
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/http.impl.js
|
|
97538
|
-
init_esm_shims();
|
|
97539
|
-
var _appVersion = {
|
|
97540
|
-
createdDate: "google.protobuf.Timestamp",
|
|
97541
|
-
updatedDate: "google.protobuf.Timestamp"
|
|
97542
|
-
};
|
|
97543
|
-
var _queryAppVersionRequest = {};
|
|
97544
|
-
var _queryAppVersionResponse = { appVersions: "_appVersion" };
|
|
97545
|
-
function resolveWixDevcenterAppsVersionsV1AppVersionsServiceUrl(opts) {
|
|
97546
|
-
var domainToMappings = {
|
|
97547
|
-
"bo._base_domain_": [
|
|
97548
|
-
{
|
|
97549
|
-
srcPath: "/app-versions",
|
|
97550
|
-
destPath: ""
|
|
97551
|
-
}
|
|
97552
|
-
],
|
|
97553
|
-
"wixbo.ai": [
|
|
97554
|
-
{
|
|
97555
|
-
srcPath: "/app-versions",
|
|
97556
|
-
destPath: ""
|
|
97557
|
-
}
|
|
97558
|
-
],
|
|
97559
|
-
"wix-bo.com": [
|
|
97560
|
-
{
|
|
97561
|
-
srcPath: "/app-versions",
|
|
97562
|
-
destPath: ""
|
|
97563
|
-
}
|
|
97564
|
-
],
|
|
97565
|
-
"dev._base_domain_": [
|
|
97566
|
-
{
|
|
97567
|
-
srcPath: "/app-versions",
|
|
97568
|
-
destPath: ""
|
|
97569
|
-
}
|
|
97570
|
-
],
|
|
97571
|
-
"editor._base_domain_": [
|
|
97572
|
-
{
|
|
97573
|
-
srcPath: "/_api/app-versions",
|
|
97574
|
-
destPath: ""
|
|
97575
|
-
}
|
|
97576
|
-
],
|
|
97577
|
-
"blocks._base_domain_": [
|
|
97578
|
-
{
|
|
97579
|
-
srcPath: "/_api/app-versions",
|
|
97580
|
-
destPath: ""
|
|
97581
|
-
}
|
|
97582
|
-
],
|
|
97583
|
-
"create.editorx": [
|
|
97584
|
-
{
|
|
97585
|
-
srcPath: "/_api/app-versions",
|
|
97586
|
-
destPath: ""
|
|
97587
|
-
}
|
|
97588
|
-
],
|
|
97589
|
-
"manage._base_domain_": [
|
|
97590
|
-
{
|
|
97591
|
-
srcPath: "/_api/app-versions",
|
|
97592
|
-
destPath: ""
|
|
97593
|
-
}
|
|
97594
|
-
]
|
|
97595
|
-
};
|
|
97596
|
-
return resolveUrl(Object.assign(opts, { domainToMappings }));
|
|
97597
|
-
}
|
|
97598
|
-
function queryAppVersion(payload5) {
|
|
97599
|
-
var _a3 = serializer(_queryAppVersionRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
97600
|
-
var fromRes = serializer(_queryAppVersionResponse, {
|
|
97601
|
-
_appVersion
|
|
97602
|
-
}).fromJSON;
|
|
97603
|
-
function __queryAppVersion(_a4) {
|
|
97604
|
-
var host = _a4.host;
|
|
97605
|
-
var serializedData = toReq(payload5);
|
|
97606
|
-
var metadata = {
|
|
97607
|
-
entityFqdn: "wix.devcenter.apps.v1.app_version",
|
|
97608
|
-
method: "POST",
|
|
97609
|
-
methodFqn: "wix.devcenter.apps.versions.v1.AppVersionsService.QueryAppVersion",
|
|
97610
|
-
url: resolveWixDevcenterAppsVersionsV1AppVersionsServiceUrl({
|
|
97611
|
-
protoPath: "/v1/app-versions/query",
|
|
97612
|
-
data: serializedData,
|
|
97613
|
-
host
|
|
97614
|
-
}),
|
|
97615
|
-
data: serializedData,
|
|
97616
|
-
transformResponse: fromRes
|
|
97617
|
-
};
|
|
97618
|
-
return metadata;
|
|
97619
|
-
}
|
|
97620
|
-
__queryAppVersion.fromReq = fromReq;
|
|
97621
|
-
__queryAppVersion.__isAmbassador = true;
|
|
97622
|
-
return __queryAppVersion;
|
|
97623
|
-
}
|
|
97624
|
-
|
|
97625
|
-
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-version/build/es/types.impl.js
|
|
97626
|
-
init_esm_shims();
|
|
97627
|
-
var State;
|
|
97628
|
-
(function(State3) {
|
|
97629
|
-
State3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
97630
|
-
State3["UNLOCKED_DRAFT"] = "UNLOCKED_DRAFT";
|
|
97631
|
-
State3["LOCKED_DRAFT"] = "LOCKED_DRAFT";
|
|
97632
|
-
State3["PRODUCTION"] = "PRODUCTION";
|
|
97633
|
-
})(State || (State = {}));
|
|
97634
|
-
var Status;
|
|
97635
|
-
(function(Status5) {
|
|
97636
|
-
Status5["UNKNOWN"] = "UNKNOWN";
|
|
97637
|
-
Status5["DEPRECATED"] = "DEPRECATED";
|
|
97638
|
-
Status5["ARCHIVED"] = "ARCHIVED";
|
|
97639
|
-
})(Status || (Status = {}));
|
|
97640
|
-
var CreatedByType;
|
|
97641
|
-
(function(CreatedByType3) {
|
|
97642
|
-
CreatedByType3["UNKNOWN_CREATED_BY"] = "UNKNOWN_CREATED_BY";
|
|
97643
|
-
CreatedByType3["USER"] = "USER";
|
|
97644
|
-
CreatedByType3["SERVICE"] = "SERVICE";
|
|
97645
|
-
CreatedByType3["ACCOUNT"] = "ACCOUNT";
|
|
97646
|
-
})(CreatedByType || (CreatedByType = {}));
|
|
97647
|
-
var PromoteStrategy;
|
|
97648
|
-
(function(PromoteStrategy2) {
|
|
97649
|
-
PromoteStrategy2["UNKNOWN_STRATEGY"] = "UNKNOWN_STRATEGY";
|
|
97650
|
-
PromoteStrategy2["ENTIRE_APP"] = "ENTIRE_APP";
|
|
97651
|
-
})(PromoteStrategy || (PromoteStrategy = {}));
|
|
97652
|
-
var VersionStatus;
|
|
97653
|
-
(function(VersionStatus3) {
|
|
97654
|
-
VersionStatus3["NONE_STATUS"] = "NONE_STATUS";
|
|
97655
|
-
VersionStatus3["DRAFT"] = "DRAFT";
|
|
97656
|
-
VersionStatus3["SUBMITTED"] = "SUBMITTED";
|
|
97657
|
-
VersionStatus3["IN_REVIEW"] = "IN_REVIEW";
|
|
97658
|
-
VersionStatus3["APPROVED"] = "APPROVED";
|
|
97659
|
-
VersionStatus3["PUBLISHED"] = "PUBLISHED";
|
|
97660
|
-
VersionStatus3["DECLINED"] = "DECLINED";
|
|
97661
|
-
VersionStatus3["ARCHIVED"] = "ARCHIVED";
|
|
97662
|
-
VersionStatus3["HIDDEN"] = "HIDDEN";
|
|
97663
|
-
VersionStatus3["RELEASED"] = "RELEASED";
|
|
97664
|
-
})(VersionStatus || (VersionStatus = {}));
|
|
97665
|
-
var SortOrder;
|
|
97666
|
-
(function(SortOrder2) {
|
|
97667
|
-
SortOrder2["ASC"] = "ASC";
|
|
97668
|
-
SortOrder2["DESC"] = "DESC";
|
|
97669
|
-
})(SortOrder || (SortOrder = {}));
|
|
97670
|
-
var PlanStatus;
|
|
97671
|
-
(function(PlanStatus3) {
|
|
97672
|
-
PlanStatus3["UNKNOWN"] = "UNKNOWN";
|
|
97673
|
-
PlanStatus3["VISIBLE"] = "VISIBLE";
|
|
97674
|
-
PlanStatus3["HIDDEN"] = "HIDDEN";
|
|
97675
|
-
})(PlanStatus || (PlanStatus = {}));
|
|
97676
|
-
var PlanDescription;
|
|
97677
|
-
(function(PlanDescription3) {
|
|
97678
|
-
PlanDescription3["UNKNOWN_DESCRIPTION"] = "UNKNOWN_DESCRIPTION";
|
|
97679
|
-
PlanDescription3["BENEFITS"] = "BENEFITS";
|
|
97680
|
-
PlanDescription3["CUSTOM_TEXT"] = "CUSTOM_TEXT";
|
|
97681
|
-
})(PlanDescription || (PlanDescription = {}));
|
|
97682
|
-
var BusinessModel;
|
|
97683
|
-
(function(BusinessModel3) {
|
|
97684
|
-
BusinessModel3["None"] = "None";
|
|
97685
|
-
BusinessModel3["FREEMIUM"] = "FREEMIUM";
|
|
97686
|
-
BusinessModel3["PREMIUM"] = "PREMIUM";
|
|
97687
|
-
BusinessModel3["FREE"] = "FREE";
|
|
97688
|
-
BusinessModel3["WIX_PREMIUM"] = "WIX_PREMIUM";
|
|
97689
|
-
BusinessModel3["DYNAMIC"] = "DYNAMIC";
|
|
97690
|
-
})(BusinessModel || (BusinessModel = {}));
|
|
97691
|
-
var Action;
|
|
97692
|
-
(function(Action2) {
|
|
97693
|
-
Action2["CREATED"] = "CREATED";
|
|
97694
|
-
Action2["UPDATED"] = "UPDATED";
|
|
97695
|
-
Action2["RESTORED"] = "RESTORED";
|
|
97696
|
-
Action2["DELETED"] = "DELETED";
|
|
97697
|
-
})(Action || (Action = {}));
|
|
97698
|
-
var WebhookIdentityType;
|
|
97699
|
-
(function(WebhookIdentityType4) {
|
|
97700
|
-
WebhookIdentityType4["UNKNOWN"] = "UNKNOWN";
|
|
97701
|
-
WebhookIdentityType4["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
97702
|
-
WebhookIdentityType4["MEMBER"] = "MEMBER";
|
|
97703
|
-
WebhookIdentityType4["WIX_USER"] = "WIX_USER";
|
|
97704
|
-
WebhookIdentityType4["APP"] = "APP";
|
|
97705
|
-
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
97706
|
-
|
|
97707
97556
|
// ../../node_modules/@wix/ambassador-devcenter-myapps-v1-my-app/build/es/http.impl.js
|
|
97708
97557
|
init_esm_shims();
|
|
97709
97558
|
var _myApp = {
|
|
@@ -98258,6 +98107,7 @@ var _componentData2 = {
|
|
|
98258
98107
|
editorReactComponent: "_editorReactComponent"
|
|
98259
98108
|
};
|
|
98260
98109
|
var _conditionNode2 = { and: "_andCondition", or: "_orCondition" };
|
|
98110
|
+
var _cssCustomPropertyItem2 = { number: "_cssNumber" };
|
|
98261
98111
|
var _cssNumber2 = {
|
|
98262
98112
|
minimum: "google.protobuf.FloatValue",
|
|
98263
98113
|
maximum: "google.protobuf.FloatValue",
|
|
@@ -98286,7 +98136,8 @@ var _editorElement2 = {
|
|
|
98286
98136
|
style: "Map#_styleItem",
|
|
98287
98137
|
data: "Map#_dataItem",
|
|
98288
98138
|
elements: "Map#_elementItem",
|
|
98289
|
-
presets: "Map#_presetItem"
|
|
98139
|
+
presets: "Map#_presetItem",
|
|
98140
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
98290
98141
|
};
|
|
98291
98142
|
var _editorPresence2 = { presetsEditorPresence: "_presetEditorPresence" };
|
|
98292
98143
|
var _editorReactComponent2 = { editorElement: "_editorElement" };
|
|
@@ -98324,7 +98175,8 @@ var _inlineElement2 = {
|
|
|
98324
98175
|
style: "Map#_styleItem",
|
|
98325
98176
|
data: "Map#_dataItem",
|
|
98326
98177
|
elements: "Map#_elementItem",
|
|
98327
|
-
presets: "Map#_presetItem"
|
|
98178
|
+
presets: "Map#_presetItem",
|
|
98179
|
+
cssCustomProperties: "Map#_cssCustomPropertyItem"
|
|
98328
98180
|
};
|
|
98329
98181
|
var _inputField2 = {
|
|
98330
98182
|
stringOptions: "__String",
|
|
@@ -98408,9 +98260,14 @@ var _predefinedExpectedInputConfiguration2 = {
|
|
|
98408
98260
|
};
|
|
98409
98261
|
var _premiumInfo = { freeTrialData: "_freeTrialData" };
|
|
98410
98262
|
var _presetEditorPresence2 = { wixMediaThumbnail: "_commonImage" };
|
|
98263
|
+
var _presetElementDefaults2 = { elements: "Map#_presetInnerElementDefaults" };
|
|
98264
|
+
var _presetInnerElementDefaults2 = {
|
|
98265
|
+
elements: "Map#_presetInnerElementDefaults"
|
|
98266
|
+
};
|
|
98411
98267
|
var _presetItem2 = {
|
|
98412
98268
|
styleDefaults: "_presetStyleDefaults",
|
|
98413
|
-
styleOverrides: "_breakpointPresetStyleOverrides"
|
|
98269
|
+
styleOverrides: "_breakpointPresetStyleOverrides",
|
|
98270
|
+
presetDefaults: "_presetElementDefaults"
|
|
98414
98271
|
};
|
|
98415
98272
|
var _presetStyleDefaults2 = { elements: "Map#_elementStyleDefaults" };
|
|
98416
98273
|
var _presetStyleOverrides2 = { elements: "Map#_elementStyleOverrides" };
|
|
@@ -98569,6 +98426,7 @@ function managedApps(payload5) {
|
|
|
98569
98426
|
_component: _component2,
|
|
98570
98427
|
_componentData: _componentData2,
|
|
98571
98428
|
_conditionNode: _conditionNode2,
|
|
98429
|
+
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
98572
98430
|
_cssNumber: _cssNumber2,
|
|
98573
98431
|
_dataItem: _dataItem2,
|
|
98574
98432
|
_dataItems: _dataItems2,
|
|
@@ -98633,6 +98491,8 @@ function managedApps(payload5) {
|
|
|
98633
98491
|
_predefinedExpectedInputConfiguration: _predefinedExpectedInputConfiguration2,
|
|
98634
98492
|
_premiumInfo,
|
|
98635
98493
|
_presetEditorPresence: _presetEditorPresence2,
|
|
98494
|
+
_presetElementDefaults: _presetElementDefaults2,
|
|
98495
|
+
_presetInnerElementDefaults: _presetInnerElementDefaults2,
|
|
98636
98496
|
_presetItem: _presetItem2,
|
|
98637
98497
|
_presetStyleDefaults: _presetStyleDefaults2,
|
|
98638
98498
|
_presetStyleOverrides: _presetStyleOverrides2,
|
|
@@ -98929,7 +98789,7 @@ var ComponentType;
|
|
|
98929
98789
|
ComponentType3["WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN"] = "WIX_PAYMENTS_PROVIDER_ACCOUNT_SERVICE_PLUGIN";
|
|
98930
98790
|
ComponentType3["CONTACTS_SEGMENTS_V2_FILTER_PROVIDER"] = "CONTACTS_SEGMENTS_V2_FILTER_PROVIDER";
|
|
98931
98791
|
ComponentType3["ANALYTICS_PRODUCT_CATALOG"] = "ANALYTICS_PRODUCT_CATALOG";
|
|
98932
|
-
ComponentType3["
|
|
98792
|
+
ComponentType3["SITE_MIGRATION"] = "SITE_MIGRATION";
|
|
98933
98793
|
})(ComponentType || (ComponentType = {}));
|
|
98934
98794
|
var WidgetVertical;
|
|
98935
98795
|
(function(WidgetVertical3) {
|
|
@@ -99229,6 +99089,8 @@ var BackOfficeHostingPlatforms;
|
|
|
99229
99089
|
BackOfficeHostingPlatforms3["DATA"] = "DATA";
|
|
99230
99090
|
BackOfficeHostingPlatforms3["LITE_DASHBOARD"] = "LITE_DASHBOARD";
|
|
99231
99091
|
BackOfficeHostingPlatforms3["PICASSO_EDITOR"] = "PICASSO_EDITOR";
|
|
99092
|
+
BackOfficeHostingPlatforms3["BASE44_DASHBOARD_POC"] = "BASE44_DASHBOARD_POC";
|
|
99093
|
+
BackOfficeHostingPlatforms3["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
99232
99094
|
})(BackOfficeHostingPlatforms || (BackOfficeHostingPlatforms = {}));
|
|
99233
99095
|
var DtsDefinitionType;
|
|
99234
99096
|
(function(DtsDefinitionType3) {
|
|
@@ -99281,11 +99143,11 @@ var Domain;
|
|
|
99281
99143
|
Domain3["USER"] = "USER";
|
|
99282
99144
|
Domain3["WIX"] = "WIX";
|
|
99283
99145
|
})(Domain || (Domain = {}));
|
|
99284
|
-
var
|
|
99285
|
-
(function(
|
|
99286
|
-
|
|
99287
|
-
|
|
99288
|
-
})(
|
|
99146
|
+
var Status;
|
|
99147
|
+
(function(Status4) {
|
|
99148
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
99149
|
+
Status4["INACTIVE"] = "INACTIVE";
|
|
99150
|
+
})(Status || (Status = {}));
|
|
99289
99151
|
var TextInputDisplayType;
|
|
99290
99152
|
(function(TextInputDisplayType3) {
|
|
99291
99153
|
TextInputDisplayType3["TEXT"] = "TEXT";
|
|
@@ -99698,13 +99560,13 @@ var NavigationType;
|
|
|
99698
99560
|
NavigationType3["NAVIGATE"] = "NAVIGATE";
|
|
99699
99561
|
NavigationType3["MODAL"] = "MODAL";
|
|
99700
99562
|
})(NavigationType || (NavigationType = {}));
|
|
99701
|
-
var
|
|
99702
|
-
(function(
|
|
99703
|
-
|
|
99704
|
-
|
|
99705
|
-
|
|
99706
|
-
|
|
99707
|
-
})(
|
|
99563
|
+
var State;
|
|
99564
|
+
(function(State2) {
|
|
99565
|
+
State2["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
99566
|
+
State2["DEFAULT_ON"] = "DEFAULT_ON";
|
|
99567
|
+
State2["DEFAULT_OFF"] = "DEFAULT_OFF";
|
|
99568
|
+
State2["ALWAYS_ON"] = "ALWAYS_ON";
|
|
99569
|
+
})(State || (State = {}));
|
|
99708
99570
|
var NotificationTopicState;
|
|
99709
99571
|
(function(NotificationTopicState3) {
|
|
99710
99572
|
NotificationTopicState3["UNKNOWN_STATE"] = "UNKNOWN_STATE";
|
|
@@ -100718,6 +100580,8 @@ var ActionType;
|
|
|
100718
100580
|
ActionType3["forward"] = "forward";
|
|
100719
100581
|
ActionType3["style"] = "style";
|
|
100720
100582
|
ActionType3["displayGroup"] = "displayGroup";
|
|
100583
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
100584
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
100721
100585
|
})(ActionType || (ActionType = {}));
|
|
100722
100586
|
var PanelType;
|
|
100723
100587
|
(function(PanelType3) {
|
|
@@ -100814,6 +100678,7 @@ var GroupType;
|
|
|
100814
100678
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
100815
100679
|
GroupType3["cssDataType"] = "cssDataType";
|
|
100816
100680
|
GroupType3["dataType"] = "dataType";
|
|
100681
|
+
GroupType3["preset"] = "preset";
|
|
100817
100682
|
GroupType3["background"] = "background";
|
|
100818
100683
|
GroupType3["margin"] = "margin";
|
|
100819
100684
|
GroupType3["padding"] = "padding";
|
|
@@ -100828,7 +100693,128 @@ var GroupType;
|
|
|
100828
100693
|
GroupType3["font"] = "font";
|
|
100829
100694
|
GroupType3["textDecoration"] = "textDecoration";
|
|
100830
100695
|
GroupType3["gap"] = "gap";
|
|
100696
|
+
GroupType3["arrayItems"] = "arrayItems";
|
|
100697
|
+
GroupType3["arrayItem"] = "arrayItem";
|
|
100698
|
+
GroupType3["listItem"] = "listItem";
|
|
100831
100699
|
})(GroupType || (GroupType = {}));
|
|
100700
|
+
var CssPropertyEnumCssPropertyType;
|
|
100701
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
100702
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
100703
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
100704
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
100705
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
100706
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
100707
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
100708
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
100709
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
100710
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
100711
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
100712
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
100713
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
100714
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
100715
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
100716
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
100717
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
100718
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
100719
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
100720
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
100721
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
100722
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
100723
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
100724
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
100725
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
100726
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
100727
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
100728
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
100729
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
100730
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
100731
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
100732
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
100733
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
100734
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
100735
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
100736
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
100737
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
100738
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
100739
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
100740
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
100741
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
100742
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
100743
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
100744
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
100745
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
100746
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
100747
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
100748
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
100749
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
100750
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
100751
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
100752
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
100753
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
100754
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
100755
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
100756
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
100757
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
100758
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
100759
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
100760
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
100761
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
100762
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
100763
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
100764
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
100765
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
100766
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
100767
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
100768
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
100769
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
100770
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
100771
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
100772
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
100773
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
100774
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
100775
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
100776
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
100777
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
100778
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
100779
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
100780
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
100781
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
100782
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
100783
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
100784
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
100785
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
100786
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
100787
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
100788
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
100789
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
100790
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
100791
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
100792
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
100793
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
100794
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
100795
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
100796
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
100797
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
100798
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
100799
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
100800
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
100801
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
100802
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
100803
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
100804
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
100805
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
100806
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
100807
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
100808
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
100809
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
100810
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
100811
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
100812
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
100813
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
100814
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
100815
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
100816
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
100817
|
+
})(CssPropertyEnumCssPropertyType || (CssPropertyEnumCssPropertyType = {}));
|
|
100832
100818
|
var InteractionsTrigger;
|
|
100833
100819
|
(function(InteractionsTrigger3) {
|
|
100834
100820
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -101123,14 +101109,14 @@ var VersionType;
|
|
|
101123
101109
|
VersionType2["LATEST_VERSION"] = "LATEST_VERSION";
|
|
101124
101110
|
VersionType2["DEV_VERSION"] = "DEV_VERSION";
|
|
101125
101111
|
})(VersionType || (VersionType = {}));
|
|
101126
|
-
var
|
|
101127
|
-
(function(
|
|
101128
|
-
|
|
101129
|
-
|
|
101130
|
-
|
|
101131
|
-
|
|
101132
|
-
|
|
101133
|
-
})(
|
|
101112
|
+
var WebhookIdentityType;
|
|
101113
|
+
(function(WebhookIdentityType3) {
|
|
101114
|
+
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
101115
|
+
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
101116
|
+
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
101117
|
+
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
101118
|
+
WebhookIdentityType3["APP"] = "APP";
|
|
101119
|
+
})(WebhookIdentityType || (WebhookIdentityType = {}));
|
|
101134
101120
|
|
|
101135
101121
|
// ../dev-center-client/src/schemas.ts
|
|
101136
101122
|
init_esm_shims();
|
|
@@ -101146,19 +101132,19 @@ var Classification;
|
|
|
101146
101132
|
Classification2["HEADLESS"] = "HEADLESS";
|
|
101147
101133
|
Classification2["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
101148
101134
|
})(Classification || (Classification = {}));
|
|
101149
|
-
var
|
|
101150
|
-
(function(
|
|
101151
|
-
|
|
101152
|
-
|
|
101153
|
-
|
|
101154
|
-
|
|
101155
|
-
|
|
101156
|
-
|
|
101157
|
-
|
|
101158
|
-
|
|
101159
|
-
|
|
101160
|
-
|
|
101161
|
-
})(
|
|
101135
|
+
var VersionStatus;
|
|
101136
|
+
(function(VersionStatus2) {
|
|
101137
|
+
VersionStatus2["NONE_STATUS"] = "NONE_STATUS";
|
|
101138
|
+
VersionStatus2["DRAFT"] = "DRAFT";
|
|
101139
|
+
VersionStatus2["SUBMITTED"] = "SUBMITTED";
|
|
101140
|
+
VersionStatus2["IN_REVIEW"] = "IN_REVIEW";
|
|
101141
|
+
VersionStatus2["APPROVED"] = "APPROVED";
|
|
101142
|
+
VersionStatus2["PUBLISHED"] = "PUBLISHED";
|
|
101143
|
+
VersionStatus2["DECLINED"] = "DECLINED";
|
|
101144
|
+
VersionStatus2["ARCHIVED"] = "ARCHIVED";
|
|
101145
|
+
VersionStatus2["HIDDEN"] = "HIDDEN";
|
|
101146
|
+
VersionStatus2["RELEASED"] = "RELEASED";
|
|
101147
|
+
})(VersionStatus || (VersionStatus = {}));
|
|
101162
101148
|
var ComponentType2;
|
|
101163
101149
|
(function(ComponentType3) {
|
|
101164
101150
|
ComponentType3["NONE"] = "NONE";
|
|
@@ -101653,6 +101639,8 @@ var BackOfficeHostingPlatforms2;
|
|
|
101653
101639
|
BackOfficeHostingPlatforms3["DATA"] = "DATA";
|
|
101654
101640
|
BackOfficeHostingPlatforms3["LITE_DASHBOARD"] = "LITE_DASHBOARD";
|
|
101655
101641
|
BackOfficeHostingPlatforms3["PICASSO_EDITOR"] = "PICASSO_EDITOR";
|
|
101642
|
+
BackOfficeHostingPlatforms3["BASE44_DASHBOARD_POC"] = "BASE44_DASHBOARD_POC";
|
|
101643
|
+
BackOfficeHostingPlatforms3["WIXEL_EDITOR"] = "WIXEL_EDITOR";
|
|
101656
101644
|
})(BackOfficeHostingPlatforms2 || (BackOfficeHostingPlatforms2 = {}));
|
|
101657
101645
|
var DtsDefinitionType2;
|
|
101658
101646
|
(function(DtsDefinitionType3) {
|
|
@@ -101705,11 +101693,11 @@ var Domain2;
|
|
|
101705
101693
|
Domain3["USER"] = "USER";
|
|
101706
101694
|
Domain3["WIX"] = "WIX";
|
|
101707
101695
|
})(Domain2 || (Domain2 = {}));
|
|
101708
|
-
var
|
|
101709
|
-
(function(
|
|
101710
|
-
|
|
101711
|
-
|
|
101712
|
-
})(
|
|
101696
|
+
var Status2;
|
|
101697
|
+
(function(Status4) {
|
|
101698
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
101699
|
+
Status4["INACTIVE"] = "INACTIVE";
|
|
101700
|
+
})(Status2 || (Status2 = {}));
|
|
101713
101701
|
var TextInputDisplayType2;
|
|
101714
101702
|
(function(TextInputDisplayType3) {
|
|
101715
101703
|
TextInputDisplayType3["TEXT"] = "TEXT";
|
|
@@ -103142,6 +103130,8 @@ var ActionType2;
|
|
|
103142
103130
|
ActionType3["forward"] = "forward";
|
|
103143
103131
|
ActionType3["style"] = "style";
|
|
103144
103132
|
ActionType3["displayGroup"] = "displayGroup";
|
|
103133
|
+
ActionType3["cssProperty"] = "cssProperty";
|
|
103134
|
+
ActionType3["cssCustomProperty"] = "cssCustomProperty";
|
|
103145
103135
|
})(ActionType2 || (ActionType2 = {}));
|
|
103146
103136
|
var PanelType2;
|
|
103147
103137
|
(function(PanelType3) {
|
|
@@ -103238,6 +103228,7 @@ var GroupType2;
|
|
|
103238
103228
|
GroupType3["UNKNOWN_GroupType"] = "UNKNOWN_GroupType";
|
|
103239
103229
|
GroupType3["cssDataType"] = "cssDataType";
|
|
103240
103230
|
GroupType3["dataType"] = "dataType";
|
|
103231
|
+
GroupType3["preset"] = "preset";
|
|
103241
103232
|
GroupType3["background"] = "background";
|
|
103242
103233
|
GroupType3["margin"] = "margin";
|
|
103243
103234
|
GroupType3["padding"] = "padding";
|
|
@@ -103252,7 +103243,128 @@ var GroupType2;
|
|
|
103252
103243
|
GroupType3["font"] = "font";
|
|
103253
103244
|
GroupType3["textDecoration"] = "textDecoration";
|
|
103254
103245
|
GroupType3["gap"] = "gap";
|
|
103246
|
+
GroupType3["arrayItems"] = "arrayItems";
|
|
103247
|
+
GroupType3["arrayItem"] = "arrayItem";
|
|
103248
|
+
GroupType3["listItem"] = "listItem";
|
|
103255
103249
|
})(GroupType2 || (GroupType2 = {}));
|
|
103250
|
+
var CssPropertyEnumCssPropertyType2;
|
|
103251
|
+
(function(CssPropertyEnumCssPropertyType3) {
|
|
103252
|
+
CssPropertyEnumCssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
103253
|
+
CssPropertyEnumCssPropertyType3["number"] = "number";
|
|
103254
|
+
CssPropertyEnumCssPropertyType3["string"] = "string";
|
|
103255
|
+
CssPropertyEnumCssPropertyType3["angle"] = "angle";
|
|
103256
|
+
CssPropertyEnumCssPropertyType3["length"] = "length";
|
|
103257
|
+
CssPropertyEnumCssPropertyType3["percentage"] = "percentage";
|
|
103258
|
+
CssPropertyEnumCssPropertyType3["lengthPercentage"] = "lengthPercentage";
|
|
103259
|
+
CssPropertyEnumCssPropertyType3["blendMode"] = "blendMode";
|
|
103260
|
+
CssPropertyEnumCssPropertyType3["customEnum"] = "customEnum";
|
|
103261
|
+
CssPropertyEnumCssPropertyType3["time"] = "time";
|
|
103262
|
+
CssPropertyEnumCssPropertyType3["background"] = "background";
|
|
103263
|
+
CssPropertyEnumCssPropertyType3["backgroundSize"] = "backgroundSize";
|
|
103264
|
+
CssPropertyEnumCssPropertyType3["backgroundColor"] = "backgroundColor";
|
|
103265
|
+
CssPropertyEnumCssPropertyType3["backgroundImage"] = "backgroundImage";
|
|
103266
|
+
CssPropertyEnumCssPropertyType3["backgroundClip"] = "backgroundClip";
|
|
103267
|
+
CssPropertyEnumCssPropertyType3["backgroundOrigin"] = "backgroundOrigin";
|
|
103268
|
+
CssPropertyEnumCssPropertyType3["backgroundPosition"] = "backgroundPosition";
|
|
103269
|
+
CssPropertyEnumCssPropertyType3["backgroundRepeat"] = "backgroundRepeat";
|
|
103270
|
+
CssPropertyEnumCssPropertyType3["backgroundAttachment"] = "backgroundAttachment";
|
|
103271
|
+
CssPropertyEnumCssPropertyType3["margin"] = "margin";
|
|
103272
|
+
CssPropertyEnumCssPropertyType3["marginTop"] = "marginTop";
|
|
103273
|
+
CssPropertyEnumCssPropertyType3["marginRight"] = "marginRight";
|
|
103274
|
+
CssPropertyEnumCssPropertyType3["marginBottom"] = "marginBottom";
|
|
103275
|
+
CssPropertyEnumCssPropertyType3["marginLeft"] = "marginLeft";
|
|
103276
|
+
CssPropertyEnumCssPropertyType3["marginInlineStart"] = "marginInlineStart";
|
|
103277
|
+
CssPropertyEnumCssPropertyType3["marginInlineEnd"] = "marginInlineEnd";
|
|
103278
|
+
CssPropertyEnumCssPropertyType3["padding"] = "padding";
|
|
103279
|
+
CssPropertyEnumCssPropertyType3["paddingTop"] = "paddingTop";
|
|
103280
|
+
CssPropertyEnumCssPropertyType3["paddingRight"] = "paddingRight";
|
|
103281
|
+
CssPropertyEnumCssPropertyType3["paddingBottom"] = "paddingBottom";
|
|
103282
|
+
CssPropertyEnumCssPropertyType3["paddingLeft"] = "paddingLeft";
|
|
103283
|
+
CssPropertyEnumCssPropertyType3["paddingInlineStart"] = "paddingInlineStart";
|
|
103284
|
+
CssPropertyEnumCssPropertyType3["paddingInlineEnd"] = "paddingInlineEnd";
|
|
103285
|
+
CssPropertyEnumCssPropertyType3["border"] = "border";
|
|
103286
|
+
CssPropertyEnumCssPropertyType3["borderWidth"] = "borderWidth";
|
|
103287
|
+
CssPropertyEnumCssPropertyType3["borderStyle"] = "borderStyle";
|
|
103288
|
+
CssPropertyEnumCssPropertyType3["borderColor"] = "borderColor";
|
|
103289
|
+
CssPropertyEnumCssPropertyType3["borderTop"] = "borderTop";
|
|
103290
|
+
CssPropertyEnumCssPropertyType3["borderTopColor"] = "borderTopColor";
|
|
103291
|
+
CssPropertyEnumCssPropertyType3["borderTopWidth"] = "borderTopWidth";
|
|
103292
|
+
CssPropertyEnumCssPropertyType3["borderTopStyle"] = "borderTopStyle";
|
|
103293
|
+
CssPropertyEnumCssPropertyType3["borderRight"] = "borderRight";
|
|
103294
|
+
CssPropertyEnumCssPropertyType3["borderRightColor"] = "borderRightColor";
|
|
103295
|
+
CssPropertyEnumCssPropertyType3["borderRightWidth"] = "borderRightWidth";
|
|
103296
|
+
CssPropertyEnumCssPropertyType3["borderRightStyle"] = "borderRightStyle";
|
|
103297
|
+
CssPropertyEnumCssPropertyType3["borderBottom"] = "borderBottom";
|
|
103298
|
+
CssPropertyEnumCssPropertyType3["borderBottomColor"] = "borderBottomColor";
|
|
103299
|
+
CssPropertyEnumCssPropertyType3["borderBottomWidth"] = "borderBottomWidth";
|
|
103300
|
+
CssPropertyEnumCssPropertyType3["borderBottomStyle"] = "borderBottomStyle";
|
|
103301
|
+
CssPropertyEnumCssPropertyType3["borderLeft"] = "borderLeft";
|
|
103302
|
+
CssPropertyEnumCssPropertyType3["borderLeftColor"] = "borderLeftColor";
|
|
103303
|
+
CssPropertyEnumCssPropertyType3["borderLeftWidth"] = "borderLeftWidth";
|
|
103304
|
+
CssPropertyEnumCssPropertyType3["borderLeftStyle"] = "borderLeftStyle";
|
|
103305
|
+
CssPropertyEnumCssPropertyType3["borderInlineStart"] = "borderInlineStart";
|
|
103306
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartColor"] = "borderInlineStartColor";
|
|
103307
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
103308
|
+
CssPropertyEnumCssPropertyType3["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
103309
|
+
CssPropertyEnumCssPropertyType3["borderInlineEnd"] = "borderInlineEnd";
|
|
103310
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndColor"] = "borderInlineEndColor";
|
|
103311
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
103312
|
+
CssPropertyEnumCssPropertyType3["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
103313
|
+
CssPropertyEnumCssPropertyType3["borderRadius"] = "borderRadius";
|
|
103314
|
+
CssPropertyEnumCssPropertyType3["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
103315
|
+
CssPropertyEnumCssPropertyType3["borderTopRightRadius"] = "borderTopRightRadius";
|
|
103316
|
+
CssPropertyEnumCssPropertyType3["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
103317
|
+
CssPropertyEnumCssPropertyType3["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
103318
|
+
CssPropertyEnumCssPropertyType3["borderStartStartRadius"] = "borderStartStartRadius";
|
|
103319
|
+
CssPropertyEnumCssPropertyType3["borderStartEndRadius"] = "borderStartEndRadius";
|
|
103320
|
+
CssPropertyEnumCssPropertyType3["borderEndStartRadius"] = "borderEndStartRadius";
|
|
103321
|
+
CssPropertyEnumCssPropertyType3["borderEndEndRadius"] = "borderEndEndRadius";
|
|
103322
|
+
CssPropertyEnumCssPropertyType3["font"] = "font";
|
|
103323
|
+
CssPropertyEnumCssPropertyType3["fontFamily"] = "fontFamily";
|
|
103324
|
+
CssPropertyEnumCssPropertyType3["fontSize"] = "fontSize";
|
|
103325
|
+
CssPropertyEnumCssPropertyType3["fontStretch"] = "fontStretch";
|
|
103326
|
+
CssPropertyEnumCssPropertyType3["fontStyle"] = "fontStyle";
|
|
103327
|
+
CssPropertyEnumCssPropertyType3["fontVariant"] = "fontVariant";
|
|
103328
|
+
CssPropertyEnumCssPropertyType3["fontWeight"] = "fontWeight";
|
|
103329
|
+
CssPropertyEnumCssPropertyType3["lineHeight"] = "lineHeight";
|
|
103330
|
+
CssPropertyEnumCssPropertyType3["color"] = "color";
|
|
103331
|
+
CssPropertyEnumCssPropertyType3["letterSpacing"] = "letterSpacing";
|
|
103332
|
+
CssPropertyEnumCssPropertyType3["writingMode"] = "writingMode";
|
|
103333
|
+
CssPropertyEnumCssPropertyType3["textAlign"] = "textAlign";
|
|
103334
|
+
CssPropertyEnumCssPropertyType3["textTransform"] = "textTransform";
|
|
103335
|
+
CssPropertyEnumCssPropertyType3["textShadow"] = "textShadow";
|
|
103336
|
+
CssPropertyEnumCssPropertyType3["textOverflow"] = "textOverflow";
|
|
103337
|
+
CssPropertyEnumCssPropertyType3["textIndent"] = "textIndent";
|
|
103338
|
+
CssPropertyEnumCssPropertyType3["textDecoration"] = "textDecoration";
|
|
103339
|
+
CssPropertyEnumCssPropertyType3["textDecorationColor"] = "textDecorationColor";
|
|
103340
|
+
CssPropertyEnumCssPropertyType3["textDecorationLine"] = "textDecorationLine";
|
|
103341
|
+
CssPropertyEnumCssPropertyType3["textDecorationStyle"] = "textDecorationStyle";
|
|
103342
|
+
CssPropertyEnumCssPropertyType3["textDecorationThickness"] = "textDecorationThickness";
|
|
103343
|
+
CssPropertyEnumCssPropertyType3["boxShadow"] = "boxShadow";
|
|
103344
|
+
CssPropertyEnumCssPropertyType3["opacity"] = "opacity";
|
|
103345
|
+
CssPropertyEnumCssPropertyType3["overflow"] = "overflow";
|
|
103346
|
+
CssPropertyEnumCssPropertyType3["display"] = "display";
|
|
103347
|
+
CssPropertyEnumCssPropertyType3["alignSelf"] = "alignSelf";
|
|
103348
|
+
CssPropertyEnumCssPropertyType3["justifyContent"] = "justifyContent";
|
|
103349
|
+
CssPropertyEnumCssPropertyType3["alignItems"] = "alignItems";
|
|
103350
|
+
CssPropertyEnumCssPropertyType3["flexDirection"] = "flexDirection";
|
|
103351
|
+
CssPropertyEnumCssPropertyType3["height"] = "height";
|
|
103352
|
+
CssPropertyEnumCssPropertyType3["width"] = "width";
|
|
103353
|
+
CssPropertyEnumCssPropertyType3["gap"] = "gap";
|
|
103354
|
+
CssPropertyEnumCssPropertyType3["columnGap"] = "columnGap";
|
|
103355
|
+
CssPropertyEnumCssPropertyType3["rowGap"] = "rowGap";
|
|
103356
|
+
CssPropertyEnumCssPropertyType3["filter"] = "filter";
|
|
103357
|
+
CssPropertyEnumCssPropertyType3["backdropFilter"] = "backdropFilter";
|
|
103358
|
+
CssPropertyEnumCssPropertyType3["objectFit"] = "objectFit";
|
|
103359
|
+
CssPropertyEnumCssPropertyType3["objectPosition"] = "objectPosition";
|
|
103360
|
+
CssPropertyEnumCssPropertyType3["mixBlendMode"] = "mixBlendMode";
|
|
103361
|
+
CssPropertyEnumCssPropertyType3["isolation"] = "isolation";
|
|
103362
|
+
CssPropertyEnumCssPropertyType3["stroke"] = "stroke";
|
|
103363
|
+
CssPropertyEnumCssPropertyType3["strokeWidth"] = "strokeWidth";
|
|
103364
|
+
CssPropertyEnumCssPropertyType3["strokeOpacity"] = "strokeOpacity";
|
|
103365
|
+
CssPropertyEnumCssPropertyType3["fill"] = "fill";
|
|
103366
|
+
CssPropertyEnumCssPropertyType3["fillOpacity"] = "fillOpacity";
|
|
103367
|
+
})(CssPropertyEnumCssPropertyType2 || (CssPropertyEnumCssPropertyType2 = {}));
|
|
103256
103368
|
var InteractionsTrigger2;
|
|
103257
103369
|
(function(InteractionsTrigger3) {
|
|
103258
103370
|
InteractionsTrigger3["UNKNOWN_TRIGGER"] = "UNKNOWN_TRIGGER";
|
|
@@ -103376,40 +103488,40 @@ var MediaType;
|
|
|
103376
103488
|
MediaType2["IMAGE"] = "IMAGE";
|
|
103377
103489
|
MediaType2["YOUTUBE"] = "YOUTUBE";
|
|
103378
103490
|
})(MediaType || (MediaType = {}));
|
|
103379
|
-
var
|
|
103380
|
-
(function(
|
|
103381
|
-
|
|
103382
|
-
|
|
103383
|
-
|
|
103384
|
-
})(
|
|
103385
|
-
var
|
|
103386
|
-
(function(
|
|
103387
|
-
|
|
103388
|
-
|
|
103389
|
-
|
|
103390
|
-
})(
|
|
103391
|
-
var
|
|
103392
|
-
(function(
|
|
103393
|
-
|
|
103394
|
-
|
|
103395
|
-
|
|
103396
|
-
|
|
103397
|
-
|
|
103398
|
-
|
|
103399
|
-
})(
|
|
103491
|
+
var PlanStatus;
|
|
103492
|
+
(function(PlanStatus2) {
|
|
103493
|
+
PlanStatus2["UNKNOWN"] = "UNKNOWN";
|
|
103494
|
+
PlanStatus2["VISIBLE"] = "VISIBLE";
|
|
103495
|
+
PlanStatus2["HIDDEN"] = "HIDDEN";
|
|
103496
|
+
})(PlanStatus || (PlanStatus = {}));
|
|
103497
|
+
var PlanDescription;
|
|
103498
|
+
(function(PlanDescription2) {
|
|
103499
|
+
PlanDescription2["UNKNOWN_DESCRIPTION"] = "UNKNOWN_DESCRIPTION";
|
|
103500
|
+
PlanDescription2["BENEFITS"] = "BENEFITS";
|
|
103501
|
+
PlanDescription2["CUSTOM_TEXT"] = "CUSTOM_TEXT";
|
|
103502
|
+
})(PlanDescription || (PlanDescription = {}));
|
|
103503
|
+
var BusinessModel;
|
|
103504
|
+
(function(BusinessModel2) {
|
|
103505
|
+
BusinessModel2["None"] = "None";
|
|
103506
|
+
BusinessModel2["FREEMIUM"] = "FREEMIUM";
|
|
103507
|
+
BusinessModel2["PREMIUM"] = "PREMIUM";
|
|
103508
|
+
BusinessModel2["FREE"] = "FREE";
|
|
103509
|
+
BusinessModel2["WIX_PREMIUM"] = "WIX_PREMIUM";
|
|
103510
|
+
BusinessModel2["DYNAMIC"] = "DYNAMIC";
|
|
103511
|
+
})(BusinessModel || (BusinessModel = {}));
|
|
103400
103512
|
var TranslationType;
|
|
103401
103513
|
(function(TranslationType2) {
|
|
103402
103514
|
TranslationType2["UNINITIALIZED"] = "UNINITIALIZED";
|
|
103403
103515
|
TranslationType2["COMPONENT"] = "COMPONENT";
|
|
103404
103516
|
})(TranslationType || (TranslationType = {}));
|
|
103405
|
-
var
|
|
103406
|
-
(function(
|
|
103407
|
-
|
|
103408
|
-
|
|
103409
|
-
|
|
103410
|
-
|
|
103411
|
-
|
|
103412
|
-
})(
|
|
103517
|
+
var WebhookIdentityType2;
|
|
103518
|
+
(function(WebhookIdentityType3) {
|
|
103519
|
+
WebhookIdentityType3["UNKNOWN"] = "UNKNOWN";
|
|
103520
|
+
WebhookIdentityType3["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
103521
|
+
WebhookIdentityType3["MEMBER"] = "MEMBER";
|
|
103522
|
+
WebhookIdentityType3["WIX_USER"] = "WIX_USER";
|
|
103523
|
+
WebhookIdentityType3["APP"] = "APP";
|
|
103524
|
+
})(WebhookIdentityType2 || (WebhookIdentityType2 = {}));
|
|
103413
103525
|
|
|
103414
103526
|
// ../../node_modules/@wix/ambassador-devcenter-apps-v1-app-template/build/es/types.impl.js
|
|
103415
103527
|
init_esm_shims();
|
|
@@ -103438,12 +103550,12 @@ var NamespaceType;
|
|
|
103438
103550
|
NamespaceType2["ACCOUNT"] = "ACCOUNT";
|
|
103439
103551
|
NamespaceType2["COMPANY"] = "COMPANY";
|
|
103440
103552
|
})(NamespaceType || (NamespaceType = {}));
|
|
103441
|
-
var
|
|
103442
|
-
(function(
|
|
103443
|
-
|
|
103444
|
-
|
|
103445
|
-
|
|
103446
|
-
})(
|
|
103553
|
+
var Status3;
|
|
103554
|
+
(function(Status4) {
|
|
103555
|
+
Status4["ACTIVE"] = "ACTIVE";
|
|
103556
|
+
Status4["DEPRECATED"] = "DEPRECATED";
|
|
103557
|
+
Status4["ARCHIVED"] = "ARCHIVED";
|
|
103558
|
+
})(Status3 || (Status3 = {}));
|
|
103447
103559
|
var AppType3;
|
|
103448
103560
|
(function(AppType4) {
|
|
103449
103561
|
AppType4["SITE_APP"] = "SITE_APP";
|
|
@@ -103453,11 +103565,11 @@ var AppType3;
|
|
|
103453
103565
|
AppType4["HEADLESS"] = "HEADLESS";
|
|
103454
103566
|
AppType4["FUNCTION_ACTIVATION_APP"] = "FUNCTION_ACTIVATION_APP";
|
|
103455
103567
|
})(AppType3 || (AppType3 = {}));
|
|
103456
|
-
var
|
|
103457
|
-
(function(
|
|
103458
|
-
|
|
103459
|
-
|
|
103460
|
-
})(
|
|
103568
|
+
var CreatedByType;
|
|
103569
|
+
(function(CreatedByType2) {
|
|
103570
|
+
CreatedByType2["USER"] = "USER";
|
|
103571
|
+
CreatedByType2["APP"] = "APP";
|
|
103572
|
+
})(CreatedByType || (CreatedByType = {}));
|
|
103461
103573
|
var ShowConsentBehaviour;
|
|
103462
103574
|
(function(ShowConsentBehaviour2) {
|
|
103463
103575
|
ShowConsentBehaviour2["DEFAULT_BEHAVIOUR"] = "DEFAULT_BEHAVIOUR";
|
|
@@ -103518,19 +103630,6 @@ var appByVersionSchema = z.object({
|
|
|
103518
103630
|
components: componentsSchema
|
|
103519
103631
|
})
|
|
103520
103632
|
});
|
|
103521
|
-
var appVersionSchema = z.object({
|
|
103522
|
-
appVersions: z.array(
|
|
103523
|
-
z.object({
|
|
103524
|
-
/** Application ID */
|
|
103525
|
-
id: z.string(),
|
|
103526
|
-
fullVersion: z.string().optional().default("0.0.0"),
|
|
103527
|
-
/** indicates if this is the draft instance of the version. */
|
|
103528
|
-
state: z.string().optional(),
|
|
103529
|
-
/** status of the app */
|
|
103530
|
-
status: z.string().optional()
|
|
103531
|
-
})
|
|
103532
|
-
)
|
|
103533
|
-
});
|
|
103534
103633
|
var appSecretsSchema = z.object({
|
|
103535
103634
|
appSecret: z.string(),
|
|
103536
103635
|
webhookPublicKey: z.string()
|
|
@@ -103731,55 +103830,8 @@ var DevCenterClient = class {
|
|
|
103731
103830
|
});
|
|
103732
103831
|
}
|
|
103733
103832
|
};
|
|
103734
|
-
queryAppVersion = async ({ appId }) => {
|
|
103735
|
-
try {
|
|
103736
|
-
const { data } = await pRetry(
|
|
103737
|
-
() => this.httpClient.request(
|
|
103738
|
-
queryAppVersion({
|
|
103739
|
-
query: {
|
|
103740
|
-
paging: {
|
|
103741
|
-
limit: 1
|
|
103742
|
-
},
|
|
103743
|
-
filter: { appId },
|
|
103744
|
-
sort: [{ fieldName: "updatedDate", order: SortOrder.DESC }]
|
|
103745
|
-
}
|
|
103746
|
-
})
|
|
103747
|
-
),
|
|
103748
|
-
this.retryOptions
|
|
103749
|
-
);
|
|
103750
|
-
const parsedData = appVersionSchema.parse(data);
|
|
103751
|
-
const lastVersion = parsedData.appVersions[0];
|
|
103752
|
-
if (!lastVersion) {
|
|
103753
|
-
throw new CliError({
|
|
103754
|
-
code: CliErrorCode.AppForVersionNotFound({
|
|
103755
|
-
version: "latest"
|
|
103756
|
-
}),
|
|
103757
|
-
cause: null
|
|
103758
|
-
});
|
|
103759
|
-
}
|
|
103760
|
-
return {
|
|
103761
|
-
latestVersion: lastVersion.fullVersion,
|
|
103762
|
-
isPublished: lastVersion.state === State.PRODUCTION,
|
|
103763
|
-
isLocked: lastVersion.state === State.LOCKED_DRAFT
|
|
103764
|
-
};
|
|
103765
|
-
} catch (cause) {
|
|
103766
|
-
if (isHttpError(cause) && cause.response?.status === 404) {
|
|
103767
|
-
throw new CliError({
|
|
103768
|
-
code: CliErrorCode.AppForVersionNotFound({
|
|
103769
|
-
version: "latest"
|
|
103770
|
-
}),
|
|
103771
|
-
cause
|
|
103772
|
-
});
|
|
103773
|
-
}
|
|
103774
|
-
throw new CliError({
|
|
103775
|
-
code: CliErrorCode.FailedToFetchAppForVersion(),
|
|
103776
|
-
cause
|
|
103777
|
-
});
|
|
103778
|
-
}
|
|
103779
|
-
};
|
|
103780
103833
|
/**
|
|
103781
103834
|
* This method is deprecated.
|
|
103782
|
-
* Use `queryAppVersion()` if you need to get information about app version.
|
|
103783
103835
|
*/
|
|
103784
103836
|
getAppByVersion = async ({
|
|
103785
103837
|
appId,
|
|
@@ -104575,7 +104627,7 @@ var StaticFileUploadSchema = z.object({
|
|
|
104575
104627
|
|
|
104576
104628
|
// ../backend-as-a-service-client/src/backend-as-a-service-client.ts
|
|
104577
104629
|
var { minRetryTimeout: minRetryTimeout2 } = getTestOverrides();
|
|
104578
|
-
var APP_PROJECT_TYPE_ID = "
|
|
104630
|
+
var APP_PROJECT_TYPE_ID = "eb363dea-85a0-4159-9b05-949542be5079";
|
|
104579
104631
|
var BackendAsAServiceClient = class {
|
|
104580
104632
|
constructor(httpClient) {
|
|
104581
104633
|
this.httpClient = httpClient;
|