@wix/create-headless-site 0.0.21 → 0.0.23
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 +685 -306
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -79455,6 +79455,7 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
79455
79455
|
FailedToRemoveEnvironmentVariable: {},
|
|
79456
79456
|
FailedToUploadStaticFiles: {},
|
|
79457
79457
|
FailedCreatingAppProject: {},
|
|
79458
|
+
FailedToGetAppProject: {},
|
|
79458
79459
|
FailedCreatingAppDeployment: {},
|
|
79459
79460
|
FailedFinalizingAppDeployment: {},
|
|
79460
79461
|
FailedCreatingNewFunnelProject: {},
|
|
@@ -79527,6 +79528,7 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
79527
79528
|
NonInteractiveTerminal: {},
|
|
79528
79529
|
FailedToWatchFiles: {},
|
|
79529
79530
|
InvalidApiKey: {},
|
|
79531
|
+
AccountWasDeleted: {},
|
|
79530
79532
|
CliAppVersionMismatch: (0, import_variant11.fields)(),
|
|
79531
79533
|
NetworkError: {},
|
|
79532
79534
|
AppForVersionNotFound: (0, import_variant11.fields)(),
|
|
@@ -79578,7 +79580,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
79578
79580
|
MissingPresetCssForSiteComponent: (0, import_variant11.fields)(),
|
|
79579
79581
|
AppInstallerSiteNotFound: (0, import_variant11.fields)(),
|
|
79580
79582
|
EAccessPermissionDenied: {},
|
|
79581
|
-
InvalidSiteComponentElementItem: (0, import_variant11.fields)()
|
|
79583
|
+
InvalidSiteComponentElementItem: (0, import_variant11.fields)(),
|
|
79584
|
+
TrustedAppIsNotMarkedAsInternal: {}
|
|
79582
79585
|
});
|
|
79583
79586
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
79584
79587
|
...CliSystemErrorCode,
|
|
@@ -79888,12 +79891,16 @@ function fixHostExceptions(host) {
|
|
|
79888
79891
|
return host.replace("create.editorx.com", "editor.editorx.com");
|
|
79889
79892
|
}
|
|
79890
79893
|
function resolveMappingsByDomain(domain, domainToMappings) {
|
|
79891
|
-
const mappings = domainToMappings[domain]
|
|
79894
|
+
const mappings = domainToMappings[domain];
|
|
79892
79895
|
if (mappings) {
|
|
79893
79896
|
return mappings;
|
|
79894
79897
|
}
|
|
79895
79898
|
const rootDomainMappings = resolveRootDomain(domain, domainToMappings);
|
|
79896
79899
|
if (!rootDomainMappings) {
|
|
79900
|
+
const userMappings = domainToMappings[USER_DOMAIN];
|
|
79901
|
+
if (userMappings) {
|
|
79902
|
+
return userMappings;
|
|
79903
|
+
}
|
|
79897
79904
|
if (isBaseDomain(domain)) {
|
|
79898
79905
|
return domainToMappings[wwwBaseDomain];
|
|
79899
79906
|
}
|
|
@@ -80929,6 +80936,12 @@ var AuthClient = class {
|
|
|
80929
80936
|
cause: error
|
|
80930
80937
|
});
|
|
80931
80938
|
}
|
|
80939
|
+
if (isHttpError(error) && error.response?.status === 404 && isHttpApplicationError(error) && error.response.data.details.applicationError.code === "48886") {
|
|
80940
|
+
throw new CliError({
|
|
80941
|
+
code: CliErrorCode.AccountWasDeleted(),
|
|
80942
|
+
cause: error
|
|
80943
|
+
});
|
|
80944
|
+
}
|
|
80932
80945
|
throw new CliError({
|
|
80933
80946
|
code: CliErrorCode.FailedToGetMyAccount(),
|
|
80934
80947
|
cause: error
|
|
@@ -89825,6 +89838,9 @@ function getErrorComponent(code, cause) {
|
|
|
89825
89838
|
InvalidApiKey: () => {
|
|
89826
89839
|
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "You used invalid API key to log in." });
|
|
89827
89840
|
},
|
|
89841
|
+
AccountWasDeleted: () => {
|
|
89842
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "The account you are trying to log in to has been deleted." });
|
|
89843
|
+
},
|
|
89828
89844
|
SiteConfiguredRequired: () => {
|
|
89829
89845
|
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "You must provide a `--site` in the command options." });
|
|
89830
89846
|
},
|
|
@@ -90432,7 +90448,10 @@ ${errorMessage}`
|
|
|
90432
90448
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to upload static files." });
|
|
90433
90449
|
},
|
|
90434
90450
|
FailedCreatingAppProject: () => {
|
|
90435
|
-
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error
|
|
90451
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occurred while creating an app project." });
|
|
90452
|
+
},
|
|
90453
|
+
FailedToGetAppProject: () => {
|
|
90454
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occurred while getting an app project." });
|
|
90436
90455
|
},
|
|
90437
90456
|
FailedCreatingAppDeployment: () => {
|
|
90438
90457
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occoured while creating an app deployment." });
|
|
@@ -90524,6 +90543,15 @@ ${errorMessage}`
|
|
|
90524
90543
|
message: `Site component element config is invalid at ${elementPath}`
|
|
90525
90544
|
}
|
|
90526
90545
|
);
|
|
90546
|
+
},
|
|
90547
|
+
TrustedAppIsNotMarkedAsInternal: () => {
|
|
90548
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90549
|
+
ErrorMessage,
|
|
90550
|
+
{
|
|
90551
|
+
message: "Your component configuration is incorrect. It's encountering the error 'scriptAsset is not supported'. This typically indicates that your app isn't recognized as a Wix App.",
|
|
90552
|
+
hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the 'Wix App' toggle is enabled."
|
|
90553
|
+
}
|
|
90554
|
+
);
|
|
90527
90555
|
}
|
|
90528
90556
|
});
|
|
90529
90557
|
}
|
|
@@ -95135,7 +95163,7 @@ function wixCliCliError(params) {
|
|
|
95135
95163
|
var package_default = {
|
|
95136
95164
|
name: "@wix/create-headless-site",
|
|
95137
95165
|
description: "Headless site creation wizard",
|
|
95138
|
-
version: "0.0.
|
|
95166
|
+
version: "0.0.23",
|
|
95139
95167
|
bin: "bin/index.cjs",
|
|
95140
95168
|
devDependencies: {
|
|
95141
95169
|
"@commander-js/extra-typings": "^13.0.0",
|
|
@@ -95144,7 +95172,7 @@ var package_default = {
|
|
|
95144
95172
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
95145
95173
|
"@wix/ambassador-funnel-projects-v1-project": "^1.0.15",
|
|
95146
95174
|
"@wix/backend-as-a-service-client": "workspace:*",
|
|
95147
|
-
"@wix/bi-logger-dev-tools-data": "^1.
|
|
95175
|
+
"@wix/bi-logger-dev-tools-data": "^1.125.0",
|
|
95148
95176
|
"@wix/cli-astro-definitions": "workspace:*",
|
|
95149
95177
|
"@wix/cli-auth": "workspace:*",
|
|
95150
95178
|
"@wix/cli-core-definitions": "workspace:*",
|
|
@@ -98047,6 +98075,10 @@ var _appData = { components: "_component", pricingModels: "_pricingModel" };
|
|
|
98047
98075
|
var _appEmbedData = { image: "_media" };
|
|
98048
98076
|
var _appointment = { description: "_richContent" };
|
|
98049
98077
|
var _arrayItems = { data: "_dataItems", dataItem: "_dataItem" };
|
|
98078
|
+
var _arrayOptions = {
|
|
98079
|
+
objectOptions: "_objectOptions",
|
|
98080
|
+
arrayOptions: "_arrayOptions"
|
|
98081
|
+
};
|
|
98050
98082
|
var _arrayType = { items: "_arrayTypeArrayItems" };
|
|
98051
98083
|
var _arrayTypeArrayItems = {
|
|
98052
98084
|
numberOptions: "_numberType",
|
|
@@ -98055,6 +98087,7 @@ var _arrayTypeArrayItems = {
|
|
|
98055
98087
|
var _audioData = { audio: "_media", coverImage: "_media" };
|
|
98056
98088
|
var _authenticatorConfig = { expectedInputs: "_expectedInputs" };
|
|
98057
98089
|
var _background = { image: "_media" };
|
|
98090
|
+
var _backgroundImage = { media: "_media" };
|
|
98058
98091
|
var _billing = {
|
|
98059
98092
|
monthlyPrice: "DOUBLE",
|
|
98060
98093
|
yearlyPrice: "DOUBLE",
|
|
@@ -98073,12 +98106,14 @@ var _checkboxGroup = {
|
|
|
98073
98106
|
media: "_mediaItem"
|
|
98074
98107
|
};
|
|
98075
98108
|
var _checkboxGroupOption = { media: "_mediaItem" };
|
|
98109
|
+
var _collection = { fields: "_dataComponentField" };
|
|
98076
98110
|
var _commonImage = { urlExpirationDate: "google.protobuf.Timestamp" };
|
|
98077
98111
|
var _component = { compData: "_componentData" };
|
|
98078
98112
|
var _componentData = {
|
|
98079
98113
|
widgetComponentData: "_widgetComponentData",
|
|
98080
98114
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
98081
98115
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
98116
|
+
dataComponent: "_dataComponent",
|
|
98082
98117
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
98083
98118
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
98084
98119
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -98100,6 +98135,11 @@ var _cssNumber = {
|
|
|
98100
98135
|
maximum: "google.protobuf.FloatValue",
|
|
98101
98136
|
multipleOf: "google.protobuf.FloatValue"
|
|
98102
98137
|
};
|
|
98138
|
+
var _dataComponent = { collections: "_collection" };
|
|
98139
|
+
var _dataComponentField = {
|
|
98140
|
+
objectOptions: "_objectOptions",
|
|
98141
|
+
arrayOptions: "_arrayOptions"
|
|
98142
|
+
};
|
|
98103
98143
|
var _dataItem = {
|
|
98104
98144
|
number: "__Number",
|
|
98105
98145
|
arrayItems: "_arrayItems",
|
|
@@ -98123,7 +98163,6 @@ var _displayField = { richContentOptions: "_richContentOptions" };
|
|
|
98123
98163
|
var _donationInput = { description: "_richContent", media: "_mediaItem" };
|
|
98124
98164
|
var _dropdown = { description: "_richContent", media: "_mediaItem" };
|
|
98125
98165
|
var _editorElement = {
|
|
98126
|
-
style: "Map#_styleItem",
|
|
98127
98166
|
data: "Map#_dataItem",
|
|
98128
98167
|
elements: "Map#_elementItem",
|
|
98129
98168
|
presets: "Map#_presetItem",
|
|
@@ -98200,6 +98239,10 @@ var _item = { image: "_itemImage", video: "_video" };
|
|
|
98200
98239
|
var _itemImage = { media: "_media" };
|
|
98201
98240
|
var _itemLayout = { group: "_group" };
|
|
98202
98241
|
var _itemStyle = { ratio: "google.protobuf.DoubleValue" };
|
|
98242
|
+
var _layoutData = {
|
|
98243
|
+
backgroundImage: "_backgroundImage",
|
|
98244
|
+
backdropImage: "_backgroundImage"
|
|
98245
|
+
};
|
|
98203
98246
|
var _mapData = { mapSettings: "_mapSettings" };
|
|
98204
98247
|
var _mapSettings = {
|
|
98205
98248
|
lat: "google.protobuf.DoubleValue",
|
|
@@ -98223,6 +98266,7 @@ var _node = {
|
|
|
98223
98266
|
appEmbedData: "_appEmbedData",
|
|
98224
98267
|
videoData: "_videoData",
|
|
98225
98268
|
audioData: "_audioData",
|
|
98269
|
+
layoutData: "_layoutData",
|
|
98226
98270
|
nodes: "_node"
|
|
98227
98271
|
};
|
|
98228
98272
|
var _numberInput = {
|
|
@@ -98236,6 +98280,11 @@ var _numberType = {
|
|
|
98236
98280
|
multipleOf: "google.protobuf.DoubleValue",
|
|
98237
98281
|
enum: "google.protobuf.DoubleValue"
|
|
98238
98282
|
};
|
|
98283
|
+
var _objectField = {
|
|
98284
|
+
objectOptions: "_objectOptions",
|
|
98285
|
+
arrayOptions: "_arrayOptions"
|
|
98286
|
+
};
|
|
98287
|
+
var _objectOptions = { fields: "_objectField" };
|
|
98239
98288
|
var _objectType = { properties: "Map#_propertiesType" };
|
|
98240
98289
|
var _orCondition = { conditions: "_conditionNode" };
|
|
98241
98290
|
var _packageDimension = {
|
|
@@ -98295,7 +98344,6 @@ var _radioGroup = { description: "_richContent", media: "_mediaItem" };
|
|
|
98295
98344
|
var _ratingInput = { description: "_richContent", media: "_mediaItem" };
|
|
98296
98345
|
var _refElement = {
|
|
98297
98346
|
resolvedElement: "_inlineElement",
|
|
98298
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
98299
98347
|
elements: "Map#_refInnerElementDefaults"
|
|
98300
98348
|
};
|
|
98301
98349
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -98480,17 +98528,20 @@ function getAppByVersion(payload5) {
|
|
|
98480
98528
|
_appEmbedData,
|
|
98481
98529
|
_appointment,
|
|
98482
98530
|
_arrayItems,
|
|
98531
|
+
_arrayOptions,
|
|
98483
98532
|
_arrayType,
|
|
98484
98533
|
_arrayTypeArrayItems,
|
|
98485
98534
|
_audioData,
|
|
98486
98535
|
_authenticatorConfig,
|
|
98487
98536
|
_background,
|
|
98537
|
+
_backgroundImage,
|
|
98488
98538
|
_billing,
|
|
98489
98539
|
_breakPoint,
|
|
98490
98540
|
_breakpointPresetStyleOverrides,
|
|
98491
98541
|
_checkbox,
|
|
98492
98542
|
_checkboxGroup,
|
|
98493
98543
|
_checkboxGroupOption,
|
|
98544
|
+
_collection,
|
|
98494
98545
|
_commonImage,
|
|
98495
98546
|
_component,
|
|
98496
98547
|
_componentData,
|
|
@@ -98498,6 +98549,8 @@ function getAppByVersion(payload5) {
|
|
|
98498
98549
|
_conditionNode,
|
|
98499
98550
|
_cssCustomPropertyItem,
|
|
98500
98551
|
_cssNumber,
|
|
98552
|
+
_dataComponent,
|
|
98553
|
+
_dataComponentField,
|
|
98501
98554
|
_dataItem,
|
|
98502
98555
|
_dataItems,
|
|
98503
98556
|
_dateInput,
|
|
@@ -98535,6 +98588,7 @@ function getAppByVersion(payload5) {
|
|
|
98535
98588
|
_itemImage,
|
|
98536
98589
|
_itemLayout,
|
|
98537
98590
|
_itemStyle,
|
|
98591
|
+
_layoutData,
|
|
98538
98592
|
_mapData,
|
|
98539
98593
|
_mapSettings,
|
|
98540
98594
|
_media,
|
|
@@ -98545,6 +98599,8 @@ function getAppByVersion(payload5) {
|
|
|
98545
98599
|
_node,
|
|
98546
98600
|
_numberInput,
|
|
98547
98601
|
_numberType,
|
|
98602
|
+
_objectField,
|
|
98603
|
+
_objectOptions,
|
|
98548
98604
|
_objectType,
|
|
98549
98605
|
_orCondition,
|
|
98550
98606
|
_packageDimension,
|
|
@@ -98737,6 +98793,9 @@ function createApp(payload5) {
|
|
|
98737
98793
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98738
98794
|
method: "POST",
|
|
98739
98795
|
methodFqn: "wix.devcenter.apps.v1.AppsService.CreateApp",
|
|
98796
|
+
migrationOptions: {
|
|
98797
|
+
optInTransformResponse: true
|
|
98798
|
+
},
|
|
98740
98799
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98741
98800
|
protoPath: "/v1/apps",
|
|
98742
98801
|
data: serializedData,
|
|
@@ -98761,6 +98820,9 @@ function getApp(payload5) {
|
|
|
98761
98820
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98762
98821
|
method: "GET",
|
|
98763
98822
|
methodFqn: "wix.devcenter.apps.v1.AppsService.GetApp",
|
|
98823
|
+
migrationOptions: {
|
|
98824
|
+
optInTransformResponse: true
|
|
98825
|
+
},
|
|
98764
98826
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98765
98827
|
protoPath: "/v1/apps/{appId}",
|
|
98766
98828
|
data: serializedData,
|
|
@@ -98785,6 +98847,9 @@ function queryApp(payload5) {
|
|
|
98785
98847
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98786
98848
|
method: "POST",
|
|
98787
98849
|
methodFqn: "wix.devcenter.apps.v1.AppsService.QueryApp",
|
|
98850
|
+
migrationOptions: {
|
|
98851
|
+
optInTransformResponse: true
|
|
98852
|
+
},
|
|
98788
98853
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98789
98854
|
protoPath: "/v1/apps/query",
|
|
98790
98855
|
data: serializedData,
|
|
@@ -98849,6 +98914,9 @@ function createOAuthApp(payload5) {
|
|
|
98849
98914
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
98850
98915
|
method: "POST",
|
|
98851
98916
|
methodFqn: "wix.headless.v1.OAuthAppService.CreateOAuthApp",
|
|
98917
|
+
migrationOptions: {
|
|
98918
|
+
optInTransformResponse: true
|
|
98919
|
+
},
|
|
98852
98920
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
98853
98921
|
protoPath: "/v1/oauth-apps",
|
|
98854
98922
|
data: serializedData,
|
|
@@ -98875,6 +98943,9 @@ function updateOAuthApp(payload5) {
|
|
|
98875
98943
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
98876
98944
|
method: "PATCH",
|
|
98877
98945
|
methodFqn: "wix.headless.v1.OAuthAppService.UpdateOAuthApp",
|
|
98946
|
+
migrationOptions: {
|
|
98947
|
+
optInTransformResponse: true
|
|
98948
|
+
},
|
|
98878
98949
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
98879
98950
|
protoPath: "/v1/oauth-apps/{oAuthApp.id}",
|
|
98880
98951
|
data: serializedData,
|
|
@@ -99065,6 +99136,9 @@ function createDevelopmentSite(payload5) {
|
|
|
99065
99136
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99066
99137
|
method: "POST",
|
|
99067
99138
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.CreateDevelopmentSite",
|
|
99139
|
+
migrationOptions: {
|
|
99140
|
+
optInTransformResponse: true
|
|
99141
|
+
},
|
|
99068
99142
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99069
99143
|
protoPath: "/v1/development-sites",
|
|
99070
99144
|
data: serializedData,
|
|
@@ -99089,6 +99163,9 @@ function getDevelopmentSites(payload5) {
|
|
|
99089
99163
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99090
99164
|
method: "GET",
|
|
99091
99165
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSites",
|
|
99166
|
+
migrationOptions: {
|
|
99167
|
+
optInTransformResponse: true
|
|
99168
|
+
},
|
|
99092
99169
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99093
99170
|
protoPath: "/v1/development-sites",
|
|
99094
99171
|
data: serializedData,
|
|
@@ -99113,6 +99190,9 @@ function getDevelopmentSitesLimit(payload5) {
|
|
|
99113
99190
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99114
99191
|
method: "GET",
|
|
99115
99192
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSitesLimit",
|
|
99193
|
+
migrationOptions: {
|
|
99194
|
+
optInTransformResponse: true
|
|
99195
|
+
},
|
|
99116
99196
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99117
99197
|
protoPath: "/v1/development-sites-limit",
|
|
99118
99198
|
data: serializedData,
|
|
@@ -99432,10 +99512,15 @@ var _arrayItems2 = {
|
|
|
99432
99512
|
numberOptions: "_numberType",
|
|
99433
99513
|
objectOptions: "_objectType"
|
|
99434
99514
|
};
|
|
99515
|
+
var _arrayOptions2 = {
|
|
99516
|
+
objectOptions: "_objectOptions",
|
|
99517
|
+
arrayOptions: "_arrayOptions"
|
|
99518
|
+
};
|
|
99435
99519
|
var _arrayType2 = { items: "_arrayItems" };
|
|
99436
99520
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
99437
99521
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
99438
99522
|
var _background2 = { image: "_media" };
|
|
99523
|
+
var _backgroundImage2 = { media: "_media" };
|
|
99439
99524
|
var _breakPoint2 = { items: "_itemLayout" };
|
|
99440
99525
|
var _breakpointPresetStyleOverrides2 = {
|
|
99441
99526
|
default: "_presetStyleOverrides",
|
|
@@ -99447,6 +99532,7 @@ var _checkboxGroup2 = {
|
|
|
99447
99532
|
options: "_option",
|
|
99448
99533
|
media: "_mediaItem"
|
|
99449
99534
|
};
|
|
99535
|
+
var _collection2 = { fields: "_dataComponentField" };
|
|
99450
99536
|
var _commonImage2 = {
|
|
99451
99537
|
urlExpirationDate: "google.protobuf.Timestamp",
|
|
99452
99538
|
focalPoint: "_focalPoint"
|
|
@@ -99456,6 +99542,7 @@ var _componentData2 = {
|
|
|
99456
99542
|
widgetComponentData: "_widgetComponentData",
|
|
99457
99543
|
widgetOutOfIframeData: "_widgetOutOfIframeComponentData",
|
|
99458
99544
|
studioWidgetComponentData: "_studioWidgetComponentData",
|
|
99545
|
+
dataComponent: "_dataComponent",
|
|
99459
99546
|
shippingLabelCarrier: "_shippingLabelCarrierSpiConfig",
|
|
99460
99547
|
fictionalShippingProvider: "_shippingProviderConfig",
|
|
99461
99548
|
automationsActionProvider: "_actionProviderSPIConfig",
|
|
@@ -99476,6 +99563,11 @@ var _cssNumber2 = {
|
|
|
99476
99563
|
maximum: "google.protobuf.FloatValue",
|
|
99477
99564
|
multipleOf: "google.protobuf.FloatValue"
|
|
99478
99565
|
};
|
|
99566
|
+
var _dataComponent2 = { collections: "_collection" };
|
|
99567
|
+
var _dataComponentField2 = {
|
|
99568
|
+
objectOptions: "_objectOptions",
|
|
99569
|
+
arrayOptions: "_arrayOptions"
|
|
99570
|
+
};
|
|
99479
99571
|
var _dataItem2 = {
|
|
99480
99572
|
number: "_api_Number",
|
|
99481
99573
|
arrayItems: "_apiArrayItems",
|
|
@@ -99500,7 +99592,6 @@ var _displayField2 = { richContentOptions: "_richContentOptions" };
|
|
|
99500
99592
|
var _donationInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
99501
99593
|
var _dropdown2 = { description: "_richContent", media: "_mediaItem" };
|
|
99502
99594
|
var _editorElement2 = {
|
|
99503
|
-
style: "Map#_styleItem",
|
|
99504
99595
|
data: "Map#_dataItem",
|
|
99505
99596
|
elements: "Map#_elementItem",
|
|
99506
99597
|
presets: "Map#_presetItem",
|
|
@@ -99569,6 +99660,10 @@ var _item2 = { image: "_itemImage", video: "_video" };
|
|
|
99569
99660
|
var _itemImage2 = { media: "_media" };
|
|
99570
99661
|
var _itemLayout2 = { group: "_group" };
|
|
99571
99662
|
var _itemStyle2 = { ratio: "google.protobuf.DoubleValue" };
|
|
99663
|
+
var _layoutData2 = {
|
|
99664
|
+
backgroundImage: "_backgroundImage",
|
|
99665
|
+
backdropImage: "_backgroundImage"
|
|
99666
|
+
};
|
|
99572
99667
|
var _managedApp = {
|
|
99573
99668
|
premiumInfo: "_premiumInfo",
|
|
99574
99669
|
components: "_component",
|
|
@@ -99596,6 +99691,7 @@ var _node2 = {
|
|
|
99596
99691
|
appEmbedData: "_appEmbedData",
|
|
99597
99692
|
videoData: "_videoData",
|
|
99598
99693
|
audioData: "_audioData",
|
|
99694
|
+
layoutData: "_layoutData",
|
|
99599
99695
|
nodes: "_node"
|
|
99600
99696
|
};
|
|
99601
99697
|
var _numberInput2 = {
|
|
@@ -99609,6 +99705,11 @@ var _numberType2 = {
|
|
|
99609
99705
|
multipleOf: "google.protobuf.DoubleValue",
|
|
99610
99706
|
enum: "google.protobuf.DoubleValue"
|
|
99611
99707
|
};
|
|
99708
|
+
var _objectField2 = {
|
|
99709
|
+
objectOptions: "_objectOptions",
|
|
99710
|
+
arrayOptions: "_arrayOptions"
|
|
99711
|
+
};
|
|
99712
|
+
var _objectOptions2 = { fields: "_objectField" };
|
|
99612
99713
|
var _objectType2 = { properties: "Map#_propertiesType" };
|
|
99613
99714
|
var _option = { media: "_mediaItem" };
|
|
99614
99715
|
var _orCondition2 = { conditions: "_conditionNode" };
|
|
@@ -99669,7 +99770,6 @@ var _radioGroup2 = { description: "_richContent", media: "_mediaItem" };
|
|
|
99669
99770
|
var _ratingInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
99670
99771
|
var _refElement2 = {
|
|
99671
99772
|
resolvedElement: "_inlineElement",
|
|
99672
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
99673
99773
|
elements: "Map#_refInnerElementDefaults"
|
|
99674
99774
|
};
|
|
99675
99775
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -99809,20 +99909,25 @@ function managedApps(payload5) {
|
|
|
99809
99909
|
_appEmbedData: _appEmbedData2,
|
|
99810
99910
|
_appointment: _appointment2,
|
|
99811
99911
|
_arrayItems: _arrayItems2,
|
|
99912
|
+
_arrayOptions: _arrayOptions2,
|
|
99812
99913
|
_arrayType: _arrayType2,
|
|
99813
99914
|
_audioData: _audioData2,
|
|
99814
99915
|
_authenticatorConfig: _authenticatorConfig2,
|
|
99815
99916
|
_background: _background2,
|
|
99917
|
+
_backgroundImage: _backgroundImage2,
|
|
99816
99918
|
_breakPoint: _breakPoint2,
|
|
99817
99919
|
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
99818
99920
|
_checkbox: _checkbox2,
|
|
99819
99921
|
_checkboxGroup: _checkboxGroup2,
|
|
99922
|
+
_collection: _collection2,
|
|
99820
99923
|
_commonImage: _commonImage2,
|
|
99821
99924
|
_component: _component2,
|
|
99822
99925
|
_componentData: _componentData2,
|
|
99823
99926
|
_conditionNode: _conditionNode2,
|
|
99824
99927
|
_cssCustomPropertyItem: _cssCustomPropertyItem2,
|
|
99825
99928
|
_cssNumber: _cssNumber2,
|
|
99929
|
+
_dataComponent: _dataComponent2,
|
|
99930
|
+
_dataComponentField: _dataComponentField2,
|
|
99826
99931
|
_dataItem: _dataItem2,
|
|
99827
99932
|
_dataItems: _dataItems2,
|
|
99828
99933
|
_dateInput: _dateInput2,
|
|
@@ -99862,6 +99967,7 @@ function managedApps(payload5) {
|
|
|
99862
99967
|
_itemImage: _itemImage2,
|
|
99863
99968
|
_itemLayout: _itemLayout2,
|
|
99864
99969
|
_itemStyle: _itemStyle2,
|
|
99970
|
+
_layoutData: _layoutData2,
|
|
99865
99971
|
_managedApp,
|
|
99866
99972
|
_mapData: _mapData2,
|
|
99867
99973
|
_mapSettings: _mapSettings2,
|
|
@@ -99873,6 +99979,8 @@ function managedApps(payload5) {
|
|
|
99873
99979
|
_node: _node2,
|
|
99874
99980
|
_numberInput: _numberInput2,
|
|
99875
99981
|
_numberType: _numberType2,
|
|
99982
|
+
_objectField: _objectField2,
|
|
99983
|
+
_objectOptions: _objectOptions2,
|
|
99876
99984
|
_objectType: _objectType2,
|
|
99877
99985
|
_option,
|
|
99878
99986
|
_orCondition: _orCondition2,
|
|
@@ -100204,6 +100312,10 @@ var ComponentType;
|
|
|
100204
100312
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
100205
100313
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
100206
100314
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
100315
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
100316
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
100317
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
100318
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
100207
100319
|
})(ComponentType || (ComponentType = {}));
|
|
100208
100320
|
var WidgetVertical;
|
|
100209
100321
|
(function(WidgetVertical3) {
|
|
@@ -100392,6 +100504,47 @@ var ExtensionType;
|
|
|
100392
100504
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
100393
100505
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
100394
100506
|
})(ExtensionType || (ExtensionType = {}));
|
|
100507
|
+
var DataComponentFieldType;
|
|
100508
|
+
(function(DataComponentFieldType3) {
|
|
100509
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
100510
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
100511
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
100512
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
100513
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
100514
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
100515
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
100516
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
100517
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
100518
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
100519
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
100520
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
100521
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
100522
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
100523
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
100524
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
100525
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
100526
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
100527
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
100528
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
100529
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
100530
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
100531
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
100532
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
100533
|
+
})(DataComponentFieldType || (DataComponentFieldType = {}));
|
|
100534
|
+
var AccessLevel;
|
|
100535
|
+
(function(AccessLevel3) {
|
|
100536
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
100537
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
100538
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
100539
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
100540
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
100541
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
100542
|
+
})(AccessLevel || (AccessLevel = {}));
|
|
100543
|
+
var Order;
|
|
100544
|
+
(function(Order3) {
|
|
100545
|
+
Order3["ASC"] = "ASC";
|
|
100546
|
+
Order3["DESC"] = "DESC";
|
|
100547
|
+
})(Order || (Order = {}));
|
|
100395
100548
|
var PrimitiveType;
|
|
100396
100549
|
(function(PrimitiveType3) {
|
|
100397
100550
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -100470,11 +100623,17 @@ var Type2;
|
|
|
100470
100623
|
Type5["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
100471
100624
|
Type5["GENERIC"] = "GENERIC";
|
|
100472
100625
|
})(Type2 || (Type2 = {}));
|
|
100626
|
+
var IntegrationType;
|
|
100627
|
+
(function(IntegrationType3) {
|
|
100628
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
100629
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
100630
|
+
})(IntegrationType || (IntegrationType = {}));
|
|
100473
100631
|
var SourceType;
|
|
100474
100632
|
(function(SourceType3) {
|
|
100475
100633
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
100476
100634
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
100477
100635
|
SourceType3["WIX_API"] = "WIX_API";
|
|
100636
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
100478
100637
|
})(SourceType || (SourceType = {}));
|
|
100479
100638
|
var ExecutionType;
|
|
100480
100639
|
(function(ExecutionType3) {
|
|
@@ -100811,6 +100970,7 @@ var Source;
|
|
|
100811
100970
|
(function(Source2) {
|
|
100812
100971
|
Source2["HTML"] = "HTML";
|
|
100813
100972
|
Source2["ADSENSE"] = "ADSENSE";
|
|
100973
|
+
Source2["AI"] = "AI";
|
|
100814
100974
|
})(Source || (Source = {}));
|
|
100815
100975
|
var StylesPosition;
|
|
100816
100976
|
(function(StylesPosition3) {
|
|
@@ -100938,6 +101098,35 @@ var NullValue;
|
|
|
100938
101098
|
(function(NullValue3) {
|
|
100939
101099
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
100940
101100
|
})(NullValue || (NullValue = {}));
|
|
101101
|
+
var Scaling;
|
|
101102
|
+
(function(Scaling3) {
|
|
101103
|
+
Scaling3["AUTO"] = "AUTO";
|
|
101104
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
101105
|
+
Scaling3["COVER"] = "COVER";
|
|
101106
|
+
})(Scaling || (Scaling = {}));
|
|
101107
|
+
var LayoutDataImagePosition;
|
|
101108
|
+
(function(LayoutDataImagePosition3) {
|
|
101109
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
101110
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
101111
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
101112
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
101113
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
101114
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
101115
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
101116
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
101117
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
101118
|
+
})(LayoutDataImagePosition || (LayoutDataImagePosition = {}));
|
|
101119
|
+
var VerticalAlignmentAlignment;
|
|
101120
|
+
(function(VerticalAlignmentAlignment3) {
|
|
101121
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
101122
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
101123
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
101124
|
+
})(VerticalAlignmentAlignment || (VerticalAlignmentAlignment = {}));
|
|
101125
|
+
var ResponsivenessBehaviour;
|
|
101126
|
+
(function(ResponsivenessBehaviour3) {
|
|
101127
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
101128
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
101129
|
+
})(ResponsivenessBehaviour || (ResponsivenessBehaviour = {}));
|
|
100941
101130
|
var CalendarType;
|
|
100942
101131
|
(function(CalendarType3) {
|
|
100943
101132
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -101038,6 +101227,8 @@ var PlanFormDefaultSection;
|
|
|
101038
101227
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
101039
101228
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
101040
101229
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
101230
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
101231
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
101041
101232
|
})(PlanFormDefaultSection || (PlanFormDefaultSection = {}));
|
|
101042
101233
|
var PlanPeriodUnit;
|
|
101043
101234
|
(function(PlanPeriodUnit3) {
|
|
@@ -101561,6 +101752,11 @@ var PanelContentType;
|
|
|
101561
101752
|
PanelContentType3["url"] = "url";
|
|
101562
101753
|
PanelContentType3["code"] = "code";
|
|
101563
101754
|
})(PanelContentType || (PanelContentType = {}));
|
|
101755
|
+
var PanelMode;
|
|
101756
|
+
(function(PanelMode3) {
|
|
101757
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
101758
|
+
PanelMode3["overlay"] = "overlay";
|
|
101759
|
+
})(PanelMode || (PanelMode = {}));
|
|
101564
101760
|
var StorageType;
|
|
101565
101761
|
(function(StorageType3) {
|
|
101566
101762
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -101609,6 +101805,150 @@ var Scope3;
|
|
|
101609
101805
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
101610
101806
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
101611
101807
|
})(Scope3 || (Scope3 = {}));
|
|
101808
|
+
var DataType;
|
|
101809
|
+
(function(DataType3) {
|
|
101810
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
101811
|
+
DataType3["text"] = "text";
|
|
101812
|
+
DataType3["textEnum"] = "textEnum";
|
|
101813
|
+
DataType3["number"] = "number";
|
|
101814
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
101815
|
+
DataType3["a11y"] = "a11y";
|
|
101816
|
+
DataType3["link"] = "link";
|
|
101817
|
+
DataType3["image"] = "image";
|
|
101818
|
+
DataType3["video"] = "video";
|
|
101819
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
101820
|
+
DataType3["audio"] = "audio";
|
|
101821
|
+
DataType3["schema"] = "schema";
|
|
101822
|
+
DataType3["localDate"] = "localDate";
|
|
101823
|
+
DataType3["localTime"] = "localTime";
|
|
101824
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
101825
|
+
DataType3["webUrl"] = "webUrl";
|
|
101826
|
+
DataType3["email"] = "email";
|
|
101827
|
+
DataType3["phone"] = "phone";
|
|
101828
|
+
DataType3["hostname"] = "hostname";
|
|
101829
|
+
DataType3["regex"] = "regex";
|
|
101830
|
+
DataType3["guid"] = "guid";
|
|
101831
|
+
DataType3["richText"] = "richText";
|
|
101832
|
+
DataType3["container"] = "container";
|
|
101833
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
101834
|
+
DataType3["direction"] = "direction";
|
|
101835
|
+
DataType3["menuItems"] = "menuItems";
|
|
101836
|
+
DataType3["data"] = "data";
|
|
101837
|
+
})(DataType || (DataType = {}));
|
|
101838
|
+
var A11yAttributes;
|
|
101839
|
+
(function(A11yAttributes3) {
|
|
101840
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
101841
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
101842
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
101843
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
101844
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
101845
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
101846
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
101847
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
101848
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
101849
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
101850
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
101851
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
101852
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
101853
|
+
A11yAttributes3["role"] = "role";
|
|
101854
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
101855
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
101856
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
101857
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
101858
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
101859
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
101860
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
101861
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
101862
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
101863
|
+
A11yAttributes3["tag"] = "tag";
|
|
101864
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
101865
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
101866
|
+
})(A11yAttributes || (A11yAttributes = {}));
|
|
101867
|
+
var LinkType;
|
|
101868
|
+
(function(LinkType3) {
|
|
101869
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
101870
|
+
LinkType3["externalLink"] = "externalLink";
|
|
101871
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
101872
|
+
LinkType3["emailLink"] = "emailLink";
|
|
101873
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
101874
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
101875
|
+
LinkType3["pageLink"] = "pageLink";
|
|
101876
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
101877
|
+
LinkType3["documentLink"] = "documentLink";
|
|
101878
|
+
LinkType3["popupLink"] = "popupLink";
|
|
101879
|
+
LinkType3["addressLink"] = "addressLink";
|
|
101880
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
101881
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
101882
|
+
})(LinkType || (LinkType = {}));
|
|
101883
|
+
var ContainerType;
|
|
101884
|
+
(function(ContainerType3) {
|
|
101885
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
101886
|
+
ContainerType3["simple"] = "simple";
|
|
101887
|
+
ContainerType3["slot"] = "slot";
|
|
101888
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
101889
|
+
ContainerType3["template"] = "template";
|
|
101890
|
+
})(ContainerType || (ContainerType = {}));
|
|
101891
|
+
var ResizeDirection;
|
|
101892
|
+
(function(ResizeDirection3) {
|
|
101893
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
101894
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
101895
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
101896
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
101897
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
101898
|
+
ResizeDirection3["none"] = "none";
|
|
101899
|
+
})(ResizeDirection || (ResizeDirection = {}));
|
|
101900
|
+
var RichTextAbilities;
|
|
101901
|
+
(function(RichTextAbilities3) {
|
|
101902
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
101903
|
+
RichTextAbilities3["font"] = "font";
|
|
101904
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
101905
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
101906
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
101907
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
101908
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
101909
|
+
RichTextAbilities3["color"] = "color";
|
|
101910
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
101911
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
101912
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
101913
|
+
RichTextAbilities3["direction"] = "direction";
|
|
101914
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
101915
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
101916
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
101917
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
101918
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
101919
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
101920
|
+
var ImageCategoryTypes;
|
|
101921
|
+
(function(ImageCategoryTypes3) {
|
|
101922
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
101923
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
101924
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
101925
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
101926
|
+
var VideoCategoryTypes;
|
|
101927
|
+
(function(VideoCategoryTypes3) {
|
|
101928
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
101929
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
101930
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
101931
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
101932
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
101933
|
+
var VectorArtCategoryTypes;
|
|
101934
|
+
(function(VectorArtCategoryTypes3) {
|
|
101935
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
101936
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
101937
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
101938
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
101939
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
101940
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
101941
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
101942
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
101943
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
101944
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
101945
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
101946
|
+
var ElementTypeEnumElementType;
|
|
101947
|
+
(function(ElementTypeEnumElementType2) {
|
|
101948
|
+
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
101949
|
+
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
101950
|
+
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
101951
|
+
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
101612
101952
|
var CssPropertyType;
|
|
101613
101953
|
(function(CssPropertyType3) {
|
|
101614
101954
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -101898,22 +102238,6 @@ var BackgroundModeEnum;
|
|
|
101898
102238
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
101899
102239
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
101900
102240
|
})(BackgroundModeEnum || (BackgroundModeEnum = {}));
|
|
101901
|
-
var ImageCategoryTypes;
|
|
101902
|
-
(function(ImageCategoryTypes3) {
|
|
101903
|
-
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
101904
|
-
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
101905
|
-
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
101906
|
-
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
101907
|
-
var VectorArtCategoryTypes;
|
|
101908
|
-
(function(VectorArtCategoryTypes3) {
|
|
101909
|
-
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
101910
|
-
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
101911
|
-
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
101912
|
-
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
101913
|
-
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
101914
|
-
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
101915
|
-
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
101916
|
-
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
101917
102241
|
var CssDataTypeEnumCssDataType;
|
|
101918
102242
|
(function(CssDataTypeEnumCssDataType3) {
|
|
101919
102243
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -101928,131 +102252,6 @@ var CssDataTypeEnumCssDataType;
|
|
|
101928
102252
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
101929
102253
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
101930
102254
|
})(CssDataTypeEnumCssDataType || (CssDataTypeEnumCssDataType = {}));
|
|
101931
|
-
var DataType;
|
|
101932
|
-
(function(DataType3) {
|
|
101933
|
-
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
101934
|
-
DataType3["text"] = "text";
|
|
101935
|
-
DataType3["textEnum"] = "textEnum";
|
|
101936
|
-
DataType3["number"] = "number";
|
|
101937
|
-
DataType3["booleanValue"] = "booleanValue";
|
|
101938
|
-
DataType3["a11y"] = "a11y";
|
|
101939
|
-
DataType3["link"] = "link";
|
|
101940
|
-
DataType3["image"] = "image";
|
|
101941
|
-
DataType3["video"] = "video";
|
|
101942
|
-
DataType3["vectorArt"] = "vectorArt";
|
|
101943
|
-
DataType3["audio"] = "audio";
|
|
101944
|
-
DataType3["schema"] = "schema";
|
|
101945
|
-
DataType3["localDate"] = "localDate";
|
|
101946
|
-
DataType3["localTime"] = "localTime";
|
|
101947
|
-
DataType3["localDateTime"] = "localDateTime";
|
|
101948
|
-
DataType3["webUrl"] = "webUrl";
|
|
101949
|
-
DataType3["email"] = "email";
|
|
101950
|
-
DataType3["phone"] = "phone";
|
|
101951
|
-
DataType3["hostname"] = "hostname";
|
|
101952
|
-
DataType3["regex"] = "regex";
|
|
101953
|
-
DataType3["guid"] = "guid";
|
|
101954
|
-
DataType3["richText"] = "richText";
|
|
101955
|
-
DataType3["container"] = "container";
|
|
101956
|
-
DataType3["arrayItems"] = "arrayItems";
|
|
101957
|
-
DataType3["direction"] = "direction";
|
|
101958
|
-
DataType3["menuItems"] = "menuItems";
|
|
101959
|
-
DataType3["data"] = "data";
|
|
101960
|
-
})(DataType || (DataType = {}));
|
|
101961
|
-
var A11yAttributes;
|
|
101962
|
-
(function(A11yAttributes3) {
|
|
101963
|
-
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
101964
|
-
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
101965
|
-
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
101966
|
-
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
101967
|
-
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
101968
|
-
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
101969
|
-
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
101970
|
-
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
101971
|
-
A11yAttributes3["multiline"] = "multiline";
|
|
101972
|
-
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
101973
|
-
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
101974
|
-
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
101975
|
-
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
101976
|
-
A11yAttributes3["role"] = "role";
|
|
101977
|
-
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
101978
|
-
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
101979
|
-
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
101980
|
-
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
101981
|
-
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
101982
|
-
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
101983
|
-
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
101984
|
-
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
101985
|
-
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
101986
|
-
A11yAttributes3["tag"] = "tag";
|
|
101987
|
-
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
101988
|
-
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
101989
|
-
})(A11yAttributes || (A11yAttributes = {}));
|
|
101990
|
-
var LinkType;
|
|
101991
|
-
(function(LinkType3) {
|
|
101992
|
-
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
101993
|
-
LinkType3["externalLink"] = "externalLink";
|
|
101994
|
-
LinkType3["anchorLink"] = "anchorLink";
|
|
101995
|
-
LinkType3["emailLink"] = "emailLink";
|
|
101996
|
-
LinkType3["phoneLink"] = "phoneLink";
|
|
101997
|
-
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
101998
|
-
LinkType3["pageLink"] = "pageLink";
|
|
101999
|
-
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
102000
|
-
LinkType3["documentLink"] = "documentLink";
|
|
102001
|
-
LinkType3["popupLink"] = "popupLink";
|
|
102002
|
-
LinkType3["addressLink"] = "addressLink";
|
|
102003
|
-
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
102004
|
-
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
102005
|
-
})(LinkType || (LinkType = {}));
|
|
102006
|
-
var ContainerType;
|
|
102007
|
-
(function(ContainerType3) {
|
|
102008
|
-
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
102009
|
-
ContainerType3["simple"] = "simple";
|
|
102010
|
-
ContainerType3["slot"] = "slot";
|
|
102011
|
-
ContainerType3["placeholder"] = "placeholder";
|
|
102012
|
-
ContainerType3["template"] = "template";
|
|
102013
|
-
})(ContainerType || (ContainerType = {}));
|
|
102014
|
-
var ResizeDirection;
|
|
102015
|
-
(function(ResizeDirection3) {
|
|
102016
|
-
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
102017
|
-
ResizeDirection3["horizontal"] = "horizontal";
|
|
102018
|
-
ResizeDirection3["vertical"] = "vertical";
|
|
102019
|
-
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
102020
|
-
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
102021
|
-
ResizeDirection3["none"] = "none";
|
|
102022
|
-
})(ResizeDirection || (ResizeDirection = {}));
|
|
102023
|
-
var RichTextAbilities;
|
|
102024
|
-
(function(RichTextAbilities3) {
|
|
102025
|
-
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
102026
|
-
RichTextAbilities3["font"] = "font";
|
|
102027
|
-
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
102028
|
-
RichTextAbilities3["fontSize"] = "fontSize";
|
|
102029
|
-
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
102030
|
-
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
102031
|
-
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
102032
|
-
RichTextAbilities3["color"] = "color";
|
|
102033
|
-
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
102034
|
-
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
102035
|
-
RichTextAbilities3["textAlign"] = "textAlign";
|
|
102036
|
-
RichTextAbilities3["direction"] = "direction";
|
|
102037
|
-
RichTextAbilities3["marginStart"] = "marginStart";
|
|
102038
|
-
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
102039
|
-
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
102040
|
-
RichTextAbilities3["numberedList"] = "numberedList";
|
|
102041
|
-
RichTextAbilities3["seoTag"] = "seoTag";
|
|
102042
|
-
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
102043
|
-
var VideoCategoryTypes;
|
|
102044
|
-
(function(VideoCategoryTypes3) {
|
|
102045
|
-
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
102046
|
-
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
102047
|
-
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
102048
|
-
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
102049
|
-
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
102050
|
-
var ElementTypeEnumElementType;
|
|
102051
|
-
(function(ElementTypeEnumElementType2) {
|
|
102052
|
-
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
102053
|
-
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
102054
|
-
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
102055
|
-
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
102056
102255
|
var ActionType;
|
|
102057
102256
|
(function(ActionType3) {
|
|
102058
102257
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -102178,6 +102377,9 @@ var GroupType;
|
|
|
102178
102377
|
GroupType3["borderRadius"] = "borderRadius";
|
|
102179
102378
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
102180
102379
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
102380
|
+
GroupType3["borderColor"] = "borderColor";
|
|
102381
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
102382
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
102181
102383
|
GroupType3["font"] = "font";
|
|
102182
102384
|
GroupType3["textDecoration"] = "textDecoration";
|
|
102183
102385
|
GroupType3["gap"] = "gap";
|
|
@@ -102399,6 +102601,8 @@ var TimeConstraintType;
|
|
|
102399
102601
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
102400
102602
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
102401
102603
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
102604
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
102605
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
102402
102606
|
})(TimeConstraintType || (TimeConstraintType = {}));
|
|
102403
102607
|
var ValueConstraintType;
|
|
102404
102608
|
(function(ValueConstraintType3) {
|
|
@@ -102568,6 +102772,9 @@ function createShareUrl(payload5) {
|
|
|
102568
102772
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
102569
102773
|
method: "POST",
|
|
102570
102774
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
102775
|
+
migrationOptions: {
|
|
102776
|
+
optInTransformResponse: true
|
|
102777
|
+
},
|
|
102571
102778
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
102572
102779
|
protoPath: "/v1/share-url",
|
|
102573
102780
|
data: serializedData,
|
|
@@ -102594,6 +102801,9 @@ function listShareUrls(payload5) {
|
|
|
102594
102801
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
102595
102802
|
method: "GET",
|
|
102596
102803
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
102804
|
+
migrationOptions: {
|
|
102805
|
+
optInTransformResponse: true
|
|
102806
|
+
},
|
|
102597
102807
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
102598
102808
|
protoPath: "/v1/share-urls",
|
|
102599
102809
|
data: serializedData,
|
|
@@ -102861,6 +103071,10 @@ var ComponentType2;
|
|
|
102861
103071
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
102862
103072
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
102863
103073
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
103074
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
103075
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
103076
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
103077
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
102864
103078
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
102865
103079
|
var WidgetVertical2;
|
|
102866
103080
|
(function(WidgetVertical3) {
|
|
@@ -103049,6 +103263,47 @@ var ExtensionType2;
|
|
|
103049
103263
|
ExtensionType3["ASCEND_AUTOMATION_EXTENSION"] = "ASCEND_AUTOMATION_EXTENSION";
|
|
103050
103264
|
ExtensionType3["CONTACT_LABELS_EXTENSION"] = "CONTACT_LABELS_EXTENSION";
|
|
103051
103265
|
})(ExtensionType2 || (ExtensionType2 = {}));
|
|
103266
|
+
var DataComponentFieldType2;
|
|
103267
|
+
(function(DataComponentFieldType3) {
|
|
103268
|
+
DataComponentFieldType3["UNKNOWN_FIELD_TYPE"] = "UNKNOWN_FIELD_TYPE";
|
|
103269
|
+
DataComponentFieldType3["TEXT"] = "TEXT";
|
|
103270
|
+
DataComponentFieldType3["NUMBER"] = "NUMBER";
|
|
103271
|
+
DataComponentFieldType3["DATE"] = "DATE";
|
|
103272
|
+
DataComponentFieldType3["DATETIME"] = "DATETIME";
|
|
103273
|
+
DataComponentFieldType3["IMAGE"] = "IMAGE";
|
|
103274
|
+
DataComponentFieldType3["BOOLEAN"] = "BOOLEAN";
|
|
103275
|
+
DataComponentFieldType3["DOCUMENT"] = "DOCUMENT";
|
|
103276
|
+
DataComponentFieldType3["URL"] = "URL";
|
|
103277
|
+
DataComponentFieldType3["RICH_TEXT"] = "RICH_TEXT";
|
|
103278
|
+
DataComponentFieldType3["VIDEO"] = "VIDEO";
|
|
103279
|
+
DataComponentFieldType3["ANY"] = "ANY";
|
|
103280
|
+
DataComponentFieldType3["ARRAY_STRING"] = "ARRAY_STRING";
|
|
103281
|
+
DataComponentFieldType3["ARRAY_DOCUMENT"] = "ARRAY_DOCUMENT";
|
|
103282
|
+
DataComponentFieldType3["AUDIO"] = "AUDIO";
|
|
103283
|
+
DataComponentFieldType3["TIME"] = "TIME";
|
|
103284
|
+
DataComponentFieldType3["LANGUAGE"] = "LANGUAGE";
|
|
103285
|
+
DataComponentFieldType3["RICH_CONTENT"] = "RICH_CONTENT";
|
|
103286
|
+
DataComponentFieldType3["MEDIA_GALLERY"] = "MEDIA_GALLERY";
|
|
103287
|
+
DataComponentFieldType3["ADDRESS"] = "ADDRESS";
|
|
103288
|
+
DataComponentFieldType3["REFERENCE"] = "REFERENCE";
|
|
103289
|
+
DataComponentFieldType3["MULTI_REFERENCE"] = "MULTI_REFERENCE";
|
|
103290
|
+
DataComponentFieldType3["OBJECT"] = "OBJECT";
|
|
103291
|
+
DataComponentFieldType3["ARRAY"] = "ARRAY";
|
|
103292
|
+
})(DataComponentFieldType2 || (DataComponentFieldType2 = {}));
|
|
103293
|
+
var AccessLevel2;
|
|
103294
|
+
(function(AccessLevel3) {
|
|
103295
|
+
AccessLevel3["UNDEFINED"] = "UNDEFINED";
|
|
103296
|
+
AccessLevel3["ANYONE"] = "ANYONE";
|
|
103297
|
+
AccessLevel3["SITE_MEMBER"] = "SITE_MEMBER";
|
|
103298
|
+
AccessLevel3["SITE_MEMBER_AUTHOR"] = "SITE_MEMBER_AUTHOR";
|
|
103299
|
+
AccessLevel3["CMS_EDITOR"] = "CMS_EDITOR";
|
|
103300
|
+
AccessLevel3["PRIVILEGED"] = "PRIVILEGED";
|
|
103301
|
+
})(AccessLevel2 || (AccessLevel2 = {}));
|
|
103302
|
+
var Order2;
|
|
103303
|
+
(function(Order3) {
|
|
103304
|
+
Order3["ASC"] = "ASC";
|
|
103305
|
+
Order3["DESC"] = "DESC";
|
|
103306
|
+
})(Order2 || (Order2 = {}));
|
|
103052
103307
|
var PrimitiveType2;
|
|
103053
103308
|
(function(PrimitiveType3) {
|
|
103054
103309
|
PrimitiveType3["UNKNOWN_PRIMITIVE_TYPE"] = "UNKNOWN_PRIMITIVE_TYPE";
|
|
@@ -103127,11 +103382,17 @@ var ActionSPIConfigInterfaceConfigurationType;
|
|
|
103127
103382
|
ActionSPIConfigInterfaceConfigurationType2["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
103128
103383
|
ActionSPIConfigInterfaceConfigurationType2["GENERIC"] = "GENERIC";
|
|
103129
103384
|
})(ActionSPIConfigInterfaceConfigurationType || (ActionSPIConfigInterfaceConfigurationType = {}));
|
|
103385
|
+
var IntegrationType2;
|
|
103386
|
+
(function(IntegrationType3) {
|
|
103387
|
+
IntegrationType3["UNKNOWN_INTEGRATION_TYPE"] = "UNKNOWN_INTEGRATION_TYPE";
|
|
103388
|
+
IntegrationType3["WIX_API"] = "WIX_API";
|
|
103389
|
+
})(IntegrationType2 || (IntegrationType2 = {}));
|
|
103130
103390
|
var SourceType2;
|
|
103131
103391
|
(function(SourceType3) {
|
|
103132
103392
|
SourceType3["UNKNOWN_SOURCE_TYPE"] = "UNKNOWN_SOURCE_TYPE";
|
|
103133
103393
|
SourceType3["DEV_CENTER"] = "DEV_CENTER";
|
|
103134
103394
|
SourceType3["WIX_API"] = "WIX_API";
|
|
103395
|
+
SourceType3["INTEGRATION"] = "INTEGRATION";
|
|
103135
103396
|
})(SourceType2 || (SourceType2 = {}));
|
|
103136
103397
|
var ExecutionType2;
|
|
103137
103398
|
(function(ExecutionType3) {
|
|
@@ -103468,6 +103729,7 @@ var HTMLDataSource;
|
|
|
103468
103729
|
(function(HTMLDataSource2) {
|
|
103469
103730
|
HTMLDataSource2["HTML"] = "HTML";
|
|
103470
103731
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
103732
|
+
HTMLDataSource2["AI"] = "AI";
|
|
103471
103733
|
})(HTMLDataSource || (HTMLDataSource = {}));
|
|
103472
103734
|
var StylesPosition2;
|
|
103473
103735
|
(function(StylesPosition3) {
|
|
@@ -103595,6 +103857,35 @@ var NullValue2;
|
|
|
103595
103857
|
(function(NullValue3) {
|
|
103596
103858
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
103597
103859
|
})(NullValue2 || (NullValue2 = {}));
|
|
103860
|
+
var Scaling2;
|
|
103861
|
+
(function(Scaling3) {
|
|
103862
|
+
Scaling3["AUTO"] = "AUTO";
|
|
103863
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
103864
|
+
Scaling3["COVER"] = "COVER";
|
|
103865
|
+
})(Scaling2 || (Scaling2 = {}));
|
|
103866
|
+
var LayoutDataImagePosition2;
|
|
103867
|
+
(function(LayoutDataImagePosition3) {
|
|
103868
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
103869
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
103870
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
103871
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
103872
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
103873
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
103874
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
103875
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
103876
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
103877
|
+
})(LayoutDataImagePosition2 || (LayoutDataImagePosition2 = {}));
|
|
103878
|
+
var VerticalAlignmentAlignment2;
|
|
103879
|
+
(function(VerticalAlignmentAlignment3) {
|
|
103880
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
103881
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
103882
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
103883
|
+
})(VerticalAlignmentAlignment2 || (VerticalAlignmentAlignment2 = {}));
|
|
103884
|
+
var ResponsivenessBehaviour2;
|
|
103885
|
+
(function(ResponsivenessBehaviour3) {
|
|
103886
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
103887
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
103888
|
+
})(ResponsivenessBehaviour2 || (ResponsivenessBehaviour2 = {}));
|
|
103598
103889
|
var CalendarType2;
|
|
103599
103890
|
(function(CalendarType3) {
|
|
103600
103891
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -103695,6 +103986,8 @@ var PlanFormDefaultSection2;
|
|
|
103695
103986
|
PlanFormDefaultSection3["ADVANCED_SETTINGS"] = "ADVANCED_SETTINGS";
|
|
103696
103987
|
PlanFormDefaultSection3["PRICING"] = "PRICING";
|
|
103697
103988
|
PlanFormDefaultSection3["DURATION"] = "DURATION";
|
|
103989
|
+
PlanFormDefaultSection3["CUSTOM_PRICING_RULES"] = "CUSTOM_PRICING_RULES";
|
|
103990
|
+
PlanFormDefaultSection3["START_DATE_RULES"] = "START_DATE_RULES";
|
|
103698
103991
|
})(PlanFormDefaultSection2 || (PlanFormDefaultSection2 = {}));
|
|
103699
103992
|
var PlanPeriodUnit2;
|
|
103700
103993
|
(function(PlanPeriodUnit3) {
|
|
@@ -104218,6 +104511,11 @@ var PanelContentType2;
|
|
|
104218
104511
|
PanelContentType3["url"] = "url";
|
|
104219
104512
|
PanelContentType3["code"] = "code";
|
|
104220
104513
|
})(PanelContentType2 || (PanelContentType2 = {}));
|
|
104514
|
+
var PanelMode2;
|
|
104515
|
+
(function(PanelMode3) {
|
|
104516
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
104517
|
+
PanelMode3["overlay"] = "overlay";
|
|
104518
|
+
})(PanelMode2 || (PanelMode2 = {}));
|
|
104221
104519
|
var StorageType2;
|
|
104222
104520
|
(function(StorageType3) {
|
|
104223
104521
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -104266,6 +104564,150 @@ var Scope4;
|
|
|
104266
104564
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
104267
104565
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
104268
104566
|
})(Scope4 || (Scope4 = {}));
|
|
104567
|
+
var DataType2;
|
|
104568
|
+
(function(DataType3) {
|
|
104569
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
104570
|
+
DataType3["text"] = "text";
|
|
104571
|
+
DataType3["textEnum"] = "textEnum";
|
|
104572
|
+
DataType3["number"] = "number";
|
|
104573
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
104574
|
+
DataType3["a11y"] = "a11y";
|
|
104575
|
+
DataType3["link"] = "link";
|
|
104576
|
+
DataType3["image"] = "image";
|
|
104577
|
+
DataType3["video"] = "video";
|
|
104578
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
104579
|
+
DataType3["audio"] = "audio";
|
|
104580
|
+
DataType3["schema"] = "schema";
|
|
104581
|
+
DataType3["localDate"] = "localDate";
|
|
104582
|
+
DataType3["localTime"] = "localTime";
|
|
104583
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
104584
|
+
DataType3["webUrl"] = "webUrl";
|
|
104585
|
+
DataType3["email"] = "email";
|
|
104586
|
+
DataType3["phone"] = "phone";
|
|
104587
|
+
DataType3["hostname"] = "hostname";
|
|
104588
|
+
DataType3["regex"] = "regex";
|
|
104589
|
+
DataType3["guid"] = "guid";
|
|
104590
|
+
DataType3["richText"] = "richText";
|
|
104591
|
+
DataType3["container"] = "container";
|
|
104592
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
104593
|
+
DataType3["direction"] = "direction";
|
|
104594
|
+
DataType3["menuItems"] = "menuItems";
|
|
104595
|
+
DataType3["data"] = "data";
|
|
104596
|
+
})(DataType2 || (DataType2 = {}));
|
|
104597
|
+
var A11yAttributes2;
|
|
104598
|
+
(function(A11yAttributes3) {
|
|
104599
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
104600
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
104601
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
104602
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
104603
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
104604
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
104605
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
104606
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
104607
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
104608
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
104609
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
104610
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
104611
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
104612
|
+
A11yAttributes3["role"] = "role";
|
|
104613
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
104614
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
104615
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
104616
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
104617
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
104618
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
104619
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
104620
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
104621
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
104622
|
+
A11yAttributes3["tag"] = "tag";
|
|
104623
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
104624
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
104625
|
+
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
104626
|
+
var LinkType2;
|
|
104627
|
+
(function(LinkType3) {
|
|
104628
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
104629
|
+
LinkType3["externalLink"] = "externalLink";
|
|
104630
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
104631
|
+
LinkType3["emailLink"] = "emailLink";
|
|
104632
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
104633
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
104634
|
+
LinkType3["pageLink"] = "pageLink";
|
|
104635
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
104636
|
+
LinkType3["documentLink"] = "documentLink";
|
|
104637
|
+
LinkType3["popupLink"] = "popupLink";
|
|
104638
|
+
LinkType3["addressLink"] = "addressLink";
|
|
104639
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
104640
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
104641
|
+
})(LinkType2 || (LinkType2 = {}));
|
|
104642
|
+
var ContainerType2;
|
|
104643
|
+
(function(ContainerType3) {
|
|
104644
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
104645
|
+
ContainerType3["simple"] = "simple";
|
|
104646
|
+
ContainerType3["slot"] = "slot";
|
|
104647
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
104648
|
+
ContainerType3["template"] = "template";
|
|
104649
|
+
})(ContainerType2 || (ContainerType2 = {}));
|
|
104650
|
+
var ResizeDirection2;
|
|
104651
|
+
(function(ResizeDirection3) {
|
|
104652
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
104653
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
104654
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
104655
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
104656
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
104657
|
+
ResizeDirection3["none"] = "none";
|
|
104658
|
+
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
104659
|
+
var RichTextAbilities2;
|
|
104660
|
+
(function(RichTextAbilities3) {
|
|
104661
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
104662
|
+
RichTextAbilities3["font"] = "font";
|
|
104663
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
104664
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
104665
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
104666
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
104667
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
104668
|
+
RichTextAbilities3["color"] = "color";
|
|
104669
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
104670
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
104671
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
104672
|
+
RichTextAbilities3["direction"] = "direction";
|
|
104673
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
104674
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
104675
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
104676
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
104677
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
104678
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
104679
|
+
var ImageCategoryTypes2;
|
|
104680
|
+
(function(ImageCategoryTypes3) {
|
|
104681
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
104682
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
104683
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
104684
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
104685
|
+
var VideoCategoryTypes2;
|
|
104686
|
+
(function(VideoCategoryTypes3) {
|
|
104687
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
104688
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
104689
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
104690
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
104691
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
104692
|
+
var VectorArtCategoryTypes2;
|
|
104693
|
+
(function(VectorArtCategoryTypes3) {
|
|
104694
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
104695
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
104696
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
104697
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
104698
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
104699
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
104700
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
104701
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
104702
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
104703
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
104704
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
104705
|
+
var ElementType2;
|
|
104706
|
+
(function(ElementType3) {
|
|
104707
|
+
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
104708
|
+
ElementType3["inlineElement"] = "inlineElement";
|
|
104709
|
+
ElementType3["refElement"] = "refElement";
|
|
104710
|
+
})(ElementType2 || (ElementType2 = {}));
|
|
104269
104711
|
var CssPropertyType2;
|
|
104270
104712
|
(function(CssPropertyType3) {
|
|
104271
104713
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -104555,22 +104997,6 @@ var BackgroundModeEnum2;
|
|
|
104555
104997
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
104556
104998
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
104557
104999
|
})(BackgroundModeEnum2 || (BackgroundModeEnum2 = {}));
|
|
104558
|
-
var ImageCategoryTypes2;
|
|
104559
|
-
(function(ImageCategoryTypes3) {
|
|
104560
|
-
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
104561
|
-
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
104562
|
-
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
104563
|
-
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
104564
|
-
var VectorArtCategoryTypes2;
|
|
104565
|
-
(function(VectorArtCategoryTypes3) {
|
|
104566
|
-
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
104567
|
-
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
104568
|
-
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
104569
|
-
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
104570
|
-
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
104571
|
-
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
104572
|
-
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
104573
|
-
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
104574
105000
|
var CssDataTypeEnumCssDataType2;
|
|
104575
105001
|
(function(CssDataTypeEnumCssDataType3) {
|
|
104576
105002
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -104585,131 +105011,6 @@ var CssDataTypeEnumCssDataType2;
|
|
|
104585
105011
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
104586
105012
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
104587
105013
|
})(CssDataTypeEnumCssDataType2 || (CssDataTypeEnumCssDataType2 = {}));
|
|
104588
|
-
var DataType2;
|
|
104589
|
-
(function(DataType3) {
|
|
104590
|
-
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
104591
|
-
DataType3["text"] = "text";
|
|
104592
|
-
DataType3["textEnum"] = "textEnum";
|
|
104593
|
-
DataType3["number"] = "number";
|
|
104594
|
-
DataType3["booleanValue"] = "booleanValue";
|
|
104595
|
-
DataType3["a11y"] = "a11y";
|
|
104596
|
-
DataType3["link"] = "link";
|
|
104597
|
-
DataType3["image"] = "image";
|
|
104598
|
-
DataType3["video"] = "video";
|
|
104599
|
-
DataType3["vectorArt"] = "vectorArt";
|
|
104600
|
-
DataType3["audio"] = "audio";
|
|
104601
|
-
DataType3["schema"] = "schema";
|
|
104602
|
-
DataType3["localDate"] = "localDate";
|
|
104603
|
-
DataType3["localTime"] = "localTime";
|
|
104604
|
-
DataType3["localDateTime"] = "localDateTime";
|
|
104605
|
-
DataType3["webUrl"] = "webUrl";
|
|
104606
|
-
DataType3["email"] = "email";
|
|
104607
|
-
DataType3["phone"] = "phone";
|
|
104608
|
-
DataType3["hostname"] = "hostname";
|
|
104609
|
-
DataType3["regex"] = "regex";
|
|
104610
|
-
DataType3["guid"] = "guid";
|
|
104611
|
-
DataType3["richText"] = "richText";
|
|
104612
|
-
DataType3["container"] = "container";
|
|
104613
|
-
DataType3["arrayItems"] = "arrayItems";
|
|
104614
|
-
DataType3["direction"] = "direction";
|
|
104615
|
-
DataType3["menuItems"] = "menuItems";
|
|
104616
|
-
DataType3["data"] = "data";
|
|
104617
|
-
})(DataType2 || (DataType2 = {}));
|
|
104618
|
-
var A11yAttributes2;
|
|
104619
|
-
(function(A11yAttributes3) {
|
|
104620
|
-
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
104621
|
-
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
104622
|
-
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
104623
|
-
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
104624
|
-
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
104625
|
-
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
104626
|
-
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
104627
|
-
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
104628
|
-
A11yAttributes3["multiline"] = "multiline";
|
|
104629
|
-
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
104630
|
-
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
104631
|
-
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
104632
|
-
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
104633
|
-
A11yAttributes3["role"] = "role";
|
|
104634
|
-
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
104635
|
-
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
104636
|
-
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
104637
|
-
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
104638
|
-
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
104639
|
-
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
104640
|
-
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
104641
|
-
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
104642
|
-
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
104643
|
-
A11yAttributes3["tag"] = "tag";
|
|
104644
|
-
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
104645
|
-
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
104646
|
-
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
104647
|
-
var LinkType2;
|
|
104648
|
-
(function(LinkType3) {
|
|
104649
|
-
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
104650
|
-
LinkType3["externalLink"] = "externalLink";
|
|
104651
|
-
LinkType3["anchorLink"] = "anchorLink";
|
|
104652
|
-
LinkType3["emailLink"] = "emailLink";
|
|
104653
|
-
LinkType3["phoneLink"] = "phoneLink";
|
|
104654
|
-
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
104655
|
-
LinkType3["pageLink"] = "pageLink";
|
|
104656
|
-
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
104657
|
-
LinkType3["documentLink"] = "documentLink";
|
|
104658
|
-
LinkType3["popupLink"] = "popupLink";
|
|
104659
|
-
LinkType3["addressLink"] = "addressLink";
|
|
104660
|
-
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
104661
|
-
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
104662
|
-
})(LinkType2 || (LinkType2 = {}));
|
|
104663
|
-
var ContainerType2;
|
|
104664
|
-
(function(ContainerType3) {
|
|
104665
|
-
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
104666
|
-
ContainerType3["simple"] = "simple";
|
|
104667
|
-
ContainerType3["slot"] = "slot";
|
|
104668
|
-
ContainerType3["placeholder"] = "placeholder";
|
|
104669
|
-
ContainerType3["template"] = "template";
|
|
104670
|
-
})(ContainerType2 || (ContainerType2 = {}));
|
|
104671
|
-
var ResizeDirection2;
|
|
104672
|
-
(function(ResizeDirection3) {
|
|
104673
|
-
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
104674
|
-
ResizeDirection3["horizontal"] = "horizontal";
|
|
104675
|
-
ResizeDirection3["vertical"] = "vertical";
|
|
104676
|
-
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
104677
|
-
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
104678
|
-
ResizeDirection3["none"] = "none";
|
|
104679
|
-
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
104680
|
-
var RichTextAbilities2;
|
|
104681
|
-
(function(RichTextAbilities3) {
|
|
104682
|
-
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
104683
|
-
RichTextAbilities3["font"] = "font";
|
|
104684
|
-
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
104685
|
-
RichTextAbilities3["fontSize"] = "fontSize";
|
|
104686
|
-
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
104687
|
-
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
104688
|
-
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
104689
|
-
RichTextAbilities3["color"] = "color";
|
|
104690
|
-
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
104691
|
-
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
104692
|
-
RichTextAbilities3["textAlign"] = "textAlign";
|
|
104693
|
-
RichTextAbilities3["direction"] = "direction";
|
|
104694
|
-
RichTextAbilities3["marginStart"] = "marginStart";
|
|
104695
|
-
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
104696
|
-
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
104697
|
-
RichTextAbilities3["numberedList"] = "numberedList";
|
|
104698
|
-
RichTextAbilities3["seoTag"] = "seoTag";
|
|
104699
|
-
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
104700
|
-
var VideoCategoryTypes2;
|
|
104701
|
-
(function(VideoCategoryTypes3) {
|
|
104702
|
-
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
104703
|
-
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
104704
|
-
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
104705
|
-
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
104706
|
-
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
104707
|
-
var ElementType2;
|
|
104708
|
-
(function(ElementType3) {
|
|
104709
|
-
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
104710
|
-
ElementType3["inlineElement"] = "inlineElement";
|
|
104711
|
-
ElementType3["refElement"] = "refElement";
|
|
104712
|
-
})(ElementType2 || (ElementType2 = {}));
|
|
104713
105014
|
var ActionType2;
|
|
104714
105015
|
(function(ActionType3) {
|
|
104715
105016
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -104835,6 +105136,9 @@ var GroupType2;
|
|
|
104835
105136
|
GroupType3["borderRadius"] = "borderRadius";
|
|
104836
105137
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
104837
105138
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
105139
|
+
GroupType3["borderColor"] = "borderColor";
|
|
105140
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
105141
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
104838
105142
|
GroupType3["font"] = "font";
|
|
104839
105143
|
GroupType3["textDecoration"] = "textDecoration";
|
|
104840
105144
|
GroupType3["gap"] = "gap";
|
|
@@ -105056,6 +105360,8 @@ var TimeConstraintType2;
|
|
|
105056
105360
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
105057
105361
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
105058
105362
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
105363
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
105364
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
105059
105365
|
})(TimeConstraintType2 || (TimeConstraintType2 = {}));
|
|
105060
105366
|
var ValueConstraintType2;
|
|
105061
105367
|
(function(ValueConstraintType3) {
|
|
@@ -105186,6 +105492,7 @@ var CreatedByType;
|
|
|
105186
105492
|
(function(CreatedByType2) {
|
|
105187
105493
|
CreatedByType2["USER"] = "USER";
|
|
105188
105494
|
CreatedByType2["APP"] = "APP";
|
|
105495
|
+
CreatedByType2["CODE_GEN"] = "CODE_GEN";
|
|
105189
105496
|
})(CreatedByType || (CreatedByType = {}));
|
|
105190
105497
|
var ShowConsentBehaviour;
|
|
105191
105498
|
(function(ShowConsentBehaviour2) {
|
|
@@ -106053,6 +106360,8 @@ var _appProject = {
|
|
|
106053
106360
|
var _createAppProjectRequest = { appProject: "_appProject" };
|
|
106054
106361
|
var _createAppProjectResponse = { appProject: "_appProject" };
|
|
106055
106362
|
var _customDomain = { connectionDate: "google.protobuf.Timestamp" };
|
|
106363
|
+
var _getAppProjectRequest = {};
|
|
106364
|
+
var _getAppProjectResponse = { appProject: "_appProject" };
|
|
106056
106365
|
function resolveWixVeloBackendV1AppProjectLifecycleUrl(opts) {
|
|
106057
106366
|
var domainToMappings = {
|
|
106058
106367
|
"manage._base_domain_": [
|
|
@@ -106106,6 +106415,36 @@ function createAppProject(payload5) {
|
|
|
106106
106415
|
__createAppProject.__isAmbassador = true;
|
|
106107
106416
|
return __createAppProject;
|
|
106108
106417
|
}
|
|
106418
|
+
function getAppProject(payload5) {
|
|
106419
|
+
var _a3 = serializer(_getAppProjectRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
106420
|
+
var fromRes = serializer(_getAppProjectResponse, {
|
|
106421
|
+
_appProject,
|
|
106422
|
+
_customDomain
|
|
106423
|
+
}).fromJSON;
|
|
106424
|
+
function __getAppProject(_a4) {
|
|
106425
|
+
var host = _a4.host;
|
|
106426
|
+
var serializedData = toReq(payload5);
|
|
106427
|
+
var metadata = {
|
|
106428
|
+
entityFqdn: "wix.velo.backend.v1.app_project",
|
|
106429
|
+
method: "GET",
|
|
106430
|
+
methodFqn: "wix.velo.backend.v1.AppProjectLifecycle.GetAppProject",
|
|
106431
|
+
migrationOptions: {
|
|
106432
|
+
optInTransformResponse: true
|
|
106433
|
+
},
|
|
106434
|
+
url: resolveWixVeloBackendV1AppProjectLifecycleUrl({
|
|
106435
|
+
protoPath: "/v1/app-projects/{appProjectId}",
|
|
106436
|
+
data: serializedData,
|
|
106437
|
+
host
|
|
106438
|
+
}),
|
|
106439
|
+
params: toURLSearchParams(serializedData),
|
|
106440
|
+
transformResponse: fromRes
|
|
106441
|
+
};
|
|
106442
|
+
return metadata;
|
|
106443
|
+
}
|
|
106444
|
+
__getAppProject.fromReq = fromReq;
|
|
106445
|
+
__getAppProject.__isAmbassador = true;
|
|
106446
|
+
return __getAppProject;
|
|
106447
|
+
}
|
|
106109
106448
|
|
|
106110
106449
|
// ../../node_modules/@wix/ambassador-velo-backend-v1-app-project/build/es/types.impl.js
|
|
106111
106450
|
init_esm_shims();
|
|
@@ -106123,11 +106462,6 @@ var CloudProvider;
|
|
|
106123
106462
|
CloudProvider3["CLOUD_FLARE"] = "CLOUD_FLARE";
|
|
106124
106463
|
CloudProvider3["KUBERNETES"] = "KUBERNETES";
|
|
106125
106464
|
})(CloudProvider || (CloudProvider = {}));
|
|
106126
|
-
var SortOrder;
|
|
106127
|
-
(function(SortOrder3) {
|
|
106128
|
-
SortOrder3["ASC"] = "ASC";
|
|
106129
|
-
SortOrder3["DESC"] = "DESC";
|
|
106130
|
-
})(SortOrder || (SortOrder = {}));
|
|
106131
106465
|
var WebhookIdentityType3;
|
|
106132
106466
|
(function(WebhookIdentityType5) {
|
|
106133
106467
|
WebhookIdentityType5["UNKNOWN"] = "UNKNOWN";
|
|
@@ -106136,6 +106470,11 @@ var WebhookIdentityType3;
|
|
|
106136
106470
|
WebhookIdentityType5["WIX_USER"] = "WIX_USER";
|
|
106137
106471
|
WebhookIdentityType5["APP"] = "APP";
|
|
106138
106472
|
})(WebhookIdentityType3 || (WebhookIdentityType3 = {}));
|
|
106473
|
+
var SortOrder;
|
|
106474
|
+
(function(SortOrder3) {
|
|
106475
|
+
SortOrder3["ASC"] = "ASC";
|
|
106476
|
+
SortOrder3["DESC"] = "DESC";
|
|
106477
|
+
})(SortOrder || (SortOrder = {}));
|
|
106139
106478
|
|
|
106140
106479
|
// ../../node_modules/@wix/ambassador-velo-backend-v1-app-environment/build/es/http.impl.js
|
|
106141
106480
|
init_esm_shims();
|
|
@@ -106309,6 +106648,12 @@ var AppEnvironmentSchema = external_exports.object({
|
|
|
106309
106648
|
secrets: external_exports.record(external_exports.string())
|
|
106310
106649
|
}).passthrough()
|
|
106311
106650
|
});
|
|
106651
|
+
var AppProjectSchema = external_exports.object({
|
|
106652
|
+
appProject: external_exports.object({
|
|
106653
|
+
id: external_exports.string().uuid(),
|
|
106654
|
+
baseUrl: external_exports.string().url()
|
|
106655
|
+
})
|
|
106656
|
+
});
|
|
106312
106657
|
var CreateAppProjectSchema = external_exports.object({
|
|
106313
106658
|
appProject: external_exports.object({
|
|
106314
106659
|
id: external_exports.string().uuid(),
|
|
@@ -106341,6 +106686,23 @@ var BackendAsAServiceClient = class {
|
|
|
106341
106686
|
};
|
|
106342
106687
|
}
|
|
106343
106688
|
retryOptions;
|
|
106689
|
+
getAppProject = async (appId) => {
|
|
106690
|
+
try {
|
|
106691
|
+
const { data } = await pRetry(
|
|
106692
|
+
() => this.httpClient.request(getAppProject({ appProjectId: appId })),
|
|
106693
|
+
this.retryOptions
|
|
106694
|
+
);
|
|
106695
|
+
return AppProjectSchema.parse(data).appProject;
|
|
106696
|
+
} catch (e2) {
|
|
106697
|
+
if (isHttpError(e2) && e2.response?.status === 404) {
|
|
106698
|
+
return;
|
|
106699
|
+
}
|
|
106700
|
+
throw new CliError({
|
|
106701
|
+
code: CliErrorCode.FailedToGetAppProject(),
|
|
106702
|
+
cause: e2
|
|
106703
|
+
});
|
|
106704
|
+
}
|
|
106705
|
+
};
|
|
106344
106706
|
createAppProject = async (appId, projectName, cloudProvider) => {
|
|
106345
106707
|
try {
|
|
106346
106708
|
const { data } = await this.httpClient.request(
|
|
@@ -106354,7 +106716,7 @@ var BackendAsAServiceClient = class {
|
|
|
106354
106716
|
}
|
|
106355
106717
|
})
|
|
106356
106718
|
);
|
|
106357
|
-
return CreateAppProjectSchema.parse(data);
|
|
106719
|
+
return CreateAppProjectSchema.parse(data).appProject;
|
|
106358
106720
|
} catch (e2) {
|
|
106359
106721
|
throw new CliError({
|
|
106360
106722
|
code: CliErrorCode.FailedCreatingAppProject(),
|
|
@@ -106545,7 +106907,7 @@ var useCreateProject = (businessId) => {
|
|
|
106545
106907
|
getAppSecret({ appId: projectId }),
|
|
106546
106908
|
getInstalledAppInstanceId({ metaSiteId: businessId, appId: projectId })
|
|
106547
106909
|
]);
|
|
106548
|
-
const
|
|
106910
|
+
const appProject = await createAppProject2(
|
|
106549
106911
|
projectId,
|
|
106550
106912
|
projectName,
|
|
106551
106913
|
cloudProvider
|
|
@@ -106557,7 +106919,7 @@ var useCreateProject = (businessId) => {
|
|
|
106557
106919
|
const previewBaseDomain = `https://(.*)-${projectBaseURL.hostname}`;
|
|
106558
106920
|
const previewBaseRedirect = `https://*-${projectBaseURL.hostname}`;
|
|
106559
106921
|
const prodBaseDomain = projectBaseURL.toString().replace(/\/$/, "");
|
|
106560
|
-
const
|
|
106922
|
+
const appEnvironment = await upsertAppEnvironment2(
|
|
106561
106923
|
appProject.id,
|
|
106562
106924
|
DEFAULT_ENVIRONMENT_NAME,
|
|
106563
106925
|
{
|
|
@@ -106585,7 +106947,7 @@ var useCreateProject = (businessId) => {
|
|
|
106585
106947
|
instanceId,
|
|
106586
106948
|
appSecret: publicKeyAndSecret.appSecret,
|
|
106587
106949
|
webhookPublicKey: publicKeyAndSecret.webhookPublicKey,
|
|
106588
|
-
environmentVariables: variables,
|
|
106950
|
+
environmentVariables: appEnvironment.variables,
|
|
106589
106951
|
baseUrl: appProject.baseUrl
|
|
106590
106952
|
};
|
|
106591
106953
|
return projectData;
|
|
@@ -106643,17 +107005,34 @@ var import_variant34 = __toESM(require_lib(), 1);
|
|
|
106643
107005
|
// ../cli-astro-definitions/src/index.ts
|
|
106644
107006
|
init_esm_shims();
|
|
106645
107007
|
import { join as join11 } from "node:path";
|
|
106646
|
-
var
|
|
106647
|
-
var wixAstroConfigSchema = zod_default.object({
|
|
107008
|
+
var wixAstroSiteConfigSchema = zod_default.object({
|
|
106648
107009
|
$schema: zod_default.string().optional(),
|
|
106649
|
-
|
|
106650
|
-
|
|
106651
|
-
|
|
107010
|
+
projectType: zod_default.literal("Site").optional().default("Site"),
|
|
107011
|
+
appId: zod_default.string(),
|
|
107012
|
+
siteId: zod_default.string()
|
|
107013
|
+
});
|
|
107014
|
+
var wixAstroAppConfigSchema = zod_default.object({
|
|
107015
|
+
$schema: zod_default.string().optional(),
|
|
107016
|
+
projectType: zod_default.literal("App"),
|
|
107017
|
+
appId: zod_default.string(),
|
|
107018
|
+
projectId: zod_default.string().optional()
|
|
107019
|
+
});
|
|
107020
|
+
var wixAstroConfigSchema = zod_default.discriminatedUnion("projectType", [
|
|
107021
|
+
wixAstroSiteConfigSchema,
|
|
107022
|
+
wixAstroAppConfigSchema
|
|
107023
|
+
]);
|
|
107024
|
+
var ENV_FILE_NAME = ".env.local";
|
|
107025
|
+
var devMetadataSchema = zod_default.object({
|
|
107026
|
+
staticsUrlPlaceholder: zod_default.string(),
|
|
107027
|
+
serverUrlPlaceholder: zod_default.string()
|
|
107028
|
+
});
|
|
106652
107029
|
var buildMetadataSchema = zod_default.object({
|
|
106653
107030
|
appManifestPath: zod_default.string(),
|
|
106654
107031
|
outDir: zod_default.string(),
|
|
106655
107032
|
clientDir: zod_default.string(),
|
|
106656
|
-
serverDir: zod_default.string().optional()
|
|
107033
|
+
serverDir: zod_default.string().optional(),
|
|
107034
|
+
staticsUrlPlaceholder: zod_default.string().optional(),
|
|
107035
|
+
serverUrlPlaceholder: zod_default.string().optional()
|
|
106657
107036
|
});
|
|
106658
107037
|
var deploymentTopologyEnvironmentSchema = zod_default.object({
|
|
106659
107038
|
id: zod_default.string().describe("Unique ARM tag identifier"),
|