@wix/create-headless-site 0.0.20 → 0.0.22
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 +563 -307
- package/build/index.js.map +1 -1
- package/package.json +3 -3
package/build/index.js
CHANGED
|
@@ -79455,13 +79455,15 @@ 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: {},
|
|
79461
79462
|
FailedToFindAstroConfig: {},
|
|
79462
79463
|
FailedToCreateShareUrl: {},
|
|
79463
79464
|
FailedToListShareUrls: {},
|
|
79464
|
-
FailedToParseNextVersion: (0, import_variant11.fields)()
|
|
79465
|
+
FailedToParseNextVersion: (0, import_variant11.fields)(),
|
|
79466
|
+
AppProjectTypeNotImplemented: {}
|
|
79465
79467
|
});
|
|
79466
79468
|
var CliUserErrorCode = (0, import_variant11.variant)({
|
|
79467
79469
|
LatestVersionOfCreateAppRequired: (0, import_variant11.fields)(),
|
|
@@ -79527,6 +79529,7 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
79527
79529
|
NonInteractiveTerminal: {},
|
|
79528
79530
|
FailedToWatchFiles: {},
|
|
79529
79531
|
InvalidApiKey: {},
|
|
79532
|
+
AccountWasDeleted: {},
|
|
79530
79533
|
CliAppVersionMismatch: (0, import_variant11.fields)(),
|
|
79531
79534
|
NetworkError: {},
|
|
79532
79535
|
AppForVersionNotFound: (0, import_variant11.fields)(),
|
|
@@ -79578,7 +79581,8 @@ var CliUserErrorCode = (0, import_variant11.variant)({
|
|
|
79578
79581
|
MissingPresetCssForSiteComponent: (0, import_variant11.fields)(),
|
|
79579
79582
|
AppInstallerSiteNotFound: (0, import_variant11.fields)(),
|
|
79580
79583
|
EAccessPermissionDenied: {},
|
|
79581
|
-
InvalidSiteComponentElementItem: (0, import_variant11.fields)()
|
|
79584
|
+
InvalidSiteComponentElementItem: (0, import_variant11.fields)(),
|
|
79585
|
+
TrustedAppIsNotMarkedAsInternal: {}
|
|
79582
79586
|
});
|
|
79583
79587
|
var CliErrorCode = (0, import_variant11.variant)({
|
|
79584
79588
|
...CliSystemErrorCode,
|
|
@@ -79888,12 +79892,16 @@ function fixHostExceptions(host) {
|
|
|
79888
79892
|
return host.replace("create.editorx.com", "editor.editorx.com");
|
|
79889
79893
|
}
|
|
79890
79894
|
function resolveMappingsByDomain(domain, domainToMappings) {
|
|
79891
|
-
const mappings = domainToMappings[domain]
|
|
79895
|
+
const mappings = domainToMappings[domain];
|
|
79892
79896
|
if (mappings) {
|
|
79893
79897
|
return mappings;
|
|
79894
79898
|
}
|
|
79895
79899
|
const rootDomainMappings = resolveRootDomain(domain, domainToMappings);
|
|
79896
79900
|
if (!rootDomainMappings) {
|
|
79901
|
+
const userMappings = domainToMappings[USER_DOMAIN];
|
|
79902
|
+
if (userMappings) {
|
|
79903
|
+
return userMappings;
|
|
79904
|
+
}
|
|
79897
79905
|
if (isBaseDomain(domain)) {
|
|
79898
79906
|
return domainToMappings[wwwBaseDomain];
|
|
79899
79907
|
}
|
|
@@ -80929,6 +80937,12 @@ var AuthClient = class {
|
|
|
80929
80937
|
cause: error
|
|
80930
80938
|
});
|
|
80931
80939
|
}
|
|
80940
|
+
if (isHttpError(error) && error.response?.status === 404 && isHttpApplicationError(error) && error.response.data.details.applicationError.code === "48886") {
|
|
80941
|
+
throw new CliError({
|
|
80942
|
+
code: CliErrorCode.AccountWasDeleted(),
|
|
80943
|
+
cause: error
|
|
80944
|
+
});
|
|
80945
|
+
}
|
|
80932
80946
|
throw new CliError({
|
|
80933
80947
|
code: CliErrorCode.FailedToGetMyAccount(),
|
|
80934
80948
|
cause: error
|
|
@@ -89825,6 +89839,9 @@ function getErrorComponent(code, cause) {
|
|
|
89825
89839
|
InvalidApiKey: () => {
|
|
89826
89840
|
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "You used invalid API key to log in." });
|
|
89827
89841
|
},
|
|
89842
|
+
AccountWasDeleted: () => {
|
|
89843
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "The account you are trying to log in to has been deleted." });
|
|
89844
|
+
},
|
|
89828
89845
|
SiteConfiguredRequired: () => {
|
|
89829
89846
|
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "You must provide a `--site` in the command options." });
|
|
89830
89847
|
},
|
|
@@ -90432,7 +90449,10 @@ ${errorMessage}`
|
|
|
90432
90449
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "Failed to upload static files." });
|
|
90433
90450
|
},
|
|
90434
90451
|
FailedCreatingAppProject: () => {
|
|
90435
|
-
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error
|
|
90452
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occurred while creating an app project." });
|
|
90453
|
+
},
|
|
90454
|
+
FailedToGetAppProject: () => {
|
|
90455
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occurred while getting an app project." });
|
|
90436
90456
|
},
|
|
90437
90457
|
FailedCreatingAppDeployment: () => {
|
|
90438
90458
|
return () => /* @__PURE__ */ import_react78.default.createElement(SystemErrorMessage, { message: "An error occoured while creating an app deployment." });
|
|
@@ -90524,6 +90544,18 @@ ${errorMessage}`
|
|
|
90524
90544
|
message: `Site component element config is invalid at ${elementPath}`
|
|
90525
90545
|
}
|
|
90526
90546
|
);
|
|
90547
|
+
},
|
|
90548
|
+
TrustedAppIsNotMarkedAsInternal: () => {
|
|
90549
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(
|
|
90550
|
+
ErrorMessage,
|
|
90551
|
+
{
|
|
90552
|
+
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.",
|
|
90553
|
+
hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the 'Wix App' toggle is enabled."
|
|
90554
|
+
}
|
|
90555
|
+
);
|
|
90556
|
+
},
|
|
90557
|
+
AppProjectTypeNotImplemented: () => {
|
|
90558
|
+
return () => /* @__PURE__ */ import_react78.default.createElement(ErrorMessage, { message: "Currently 'App' project type is not supported." });
|
|
90527
90559
|
}
|
|
90528
90560
|
});
|
|
90529
90561
|
}
|
|
@@ -95135,7 +95167,7 @@ function wixCliCliError(params) {
|
|
|
95135
95167
|
var package_default = {
|
|
95136
95168
|
name: "@wix/create-headless-site",
|
|
95137
95169
|
description: "Headless site creation wizard",
|
|
95138
|
-
version: "0.0.
|
|
95170
|
+
version: "0.0.22",
|
|
95139
95171
|
bin: "bin/index.cjs",
|
|
95140
95172
|
devDependencies: {
|
|
95141
95173
|
"@commander-js/extra-typings": "^13.0.0",
|
|
@@ -95144,7 +95176,7 @@ var package_default = {
|
|
|
95144
95176
|
"@types/validate-npm-package-name": "^4.0.2",
|
|
95145
95177
|
"@wix/ambassador-funnel-projects-v1-project": "^1.0.15",
|
|
95146
95178
|
"@wix/backend-as-a-service-client": "workspace:*",
|
|
95147
|
-
"@wix/bi-logger-dev-tools-data": "^1.
|
|
95179
|
+
"@wix/bi-logger-dev-tools-data": "^1.125.0",
|
|
95148
95180
|
"@wix/cli-astro-definitions": "workspace:*",
|
|
95149
95181
|
"@wix/cli-auth": "workspace:*",
|
|
95150
95182
|
"@wix/cli-core-definitions": "workspace:*",
|
|
@@ -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",
|
|
@@ -98123,7 +98156,6 @@ var _displayField = { richContentOptions: "_richContentOptions" };
|
|
|
98123
98156
|
var _donationInput = { description: "_richContent", media: "_mediaItem" };
|
|
98124
98157
|
var _dropdown = { description: "_richContent", media: "_mediaItem" };
|
|
98125
98158
|
var _editorElement = {
|
|
98126
|
-
style: "Map#_styleItem",
|
|
98127
98159
|
data: "Map#_dataItem",
|
|
98128
98160
|
elements: "Map#_elementItem",
|
|
98129
98161
|
presets: "Map#_presetItem",
|
|
@@ -98200,6 +98232,10 @@ var _item = { image: "_itemImage", video: "_video" };
|
|
|
98200
98232
|
var _itemImage = { media: "_media" };
|
|
98201
98233
|
var _itemLayout = { group: "_group" };
|
|
98202
98234
|
var _itemStyle = { ratio: "google.protobuf.DoubleValue" };
|
|
98235
|
+
var _layoutData = {
|
|
98236
|
+
backgroundImage: "_backgroundImage",
|
|
98237
|
+
backdropImage: "_backgroundImage"
|
|
98238
|
+
};
|
|
98203
98239
|
var _mapData = { mapSettings: "_mapSettings" };
|
|
98204
98240
|
var _mapSettings = {
|
|
98205
98241
|
lat: "google.protobuf.DoubleValue",
|
|
@@ -98223,6 +98259,7 @@ var _node = {
|
|
|
98223
98259
|
appEmbedData: "_appEmbedData",
|
|
98224
98260
|
videoData: "_videoData",
|
|
98225
98261
|
audioData: "_audioData",
|
|
98262
|
+
layoutData: "_layoutData",
|
|
98226
98263
|
nodes: "_node"
|
|
98227
98264
|
};
|
|
98228
98265
|
var _numberInput = {
|
|
@@ -98295,7 +98332,6 @@ var _radioGroup = { description: "_richContent", media: "_mediaItem" };
|
|
|
98295
98332
|
var _ratingInput = { description: "_richContent", media: "_mediaItem" };
|
|
98296
98333
|
var _refElement = {
|
|
98297
98334
|
resolvedElement: "_inlineElement",
|
|
98298
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
98299
98335
|
elements: "Map#_refInnerElementDefaults"
|
|
98300
98336
|
};
|
|
98301
98337
|
var _refInnerElementDefaults = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -98485,6 +98521,7 @@ function getAppByVersion(payload5) {
|
|
|
98485
98521
|
_audioData,
|
|
98486
98522
|
_authenticatorConfig,
|
|
98487
98523
|
_background,
|
|
98524
|
+
_backgroundImage,
|
|
98488
98525
|
_billing,
|
|
98489
98526
|
_breakPoint,
|
|
98490
98527
|
_breakpointPresetStyleOverrides,
|
|
@@ -98535,6 +98572,7 @@ function getAppByVersion(payload5) {
|
|
|
98535
98572
|
_itemImage,
|
|
98536
98573
|
_itemLayout,
|
|
98537
98574
|
_itemStyle,
|
|
98575
|
+
_layoutData,
|
|
98538
98576
|
_mapData,
|
|
98539
98577
|
_mapSettings,
|
|
98540
98578
|
_media,
|
|
@@ -98737,6 +98775,9 @@ function createApp(payload5) {
|
|
|
98737
98775
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98738
98776
|
method: "POST",
|
|
98739
98777
|
methodFqn: "wix.devcenter.apps.v1.AppsService.CreateApp",
|
|
98778
|
+
migrationOptions: {
|
|
98779
|
+
optInTransformResponse: true
|
|
98780
|
+
},
|
|
98740
98781
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98741
98782
|
protoPath: "/v1/apps",
|
|
98742
98783
|
data: serializedData,
|
|
@@ -98761,6 +98802,9 @@ function getApp(payload5) {
|
|
|
98761
98802
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98762
98803
|
method: "GET",
|
|
98763
98804
|
methodFqn: "wix.devcenter.apps.v1.AppsService.GetApp",
|
|
98805
|
+
migrationOptions: {
|
|
98806
|
+
optInTransformResponse: true
|
|
98807
|
+
},
|
|
98764
98808
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98765
98809
|
protoPath: "/v1/apps/{appId}",
|
|
98766
98810
|
data: serializedData,
|
|
@@ -98785,6 +98829,9 @@ function queryApp(payload5) {
|
|
|
98785
98829
|
entityFqdn: "wix.devcenter.apps.v1.app",
|
|
98786
98830
|
method: "POST",
|
|
98787
98831
|
methodFqn: "wix.devcenter.apps.v1.AppsService.QueryApp",
|
|
98832
|
+
migrationOptions: {
|
|
98833
|
+
optInTransformResponse: true
|
|
98834
|
+
},
|
|
98788
98835
|
url: resolveWixDevcenterAppsV1AppsServiceUrl({
|
|
98789
98836
|
protoPath: "/v1/apps/query",
|
|
98790
98837
|
data: serializedData,
|
|
@@ -98849,6 +98896,9 @@ function createOAuthApp(payload5) {
|
|
|
98849
98896
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
98850
98897
|
method: "POST",
|
|
98851
98898
|
methodFqn: "wix.headless.v1.OAuthAppService.CreateOAuthApp",
|
|
98899
|
+
migrationOptions: {
|
|
98900
|
+
optInTransformResponse: true
|
|
98901
|
+
},
|
|
98852
98902
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
98853
98903
|
protoPath: "/v1/oauth-apps",
|
|
98854
98904
|
data: serializedData,
|
|
@@ -98875,6 +98925,9 @@ function updateOAuthApp(payload5) {
|
|
|
98875
98925
|
entityFqdn: "wix.headless.v1.o_auth_app",
|
|
98876
98926
|
method: "PATCH",
|
|
98877
98927
|
methodFqn: "wix.headless.v1.OAuthAppService.UpdateOAuthApp",
|
|
98928
|
+
migrationOptions: {
|
|
98929
|
+
optInTransformResponse: true
|
|
98930
|
+
},
|
|
98878
98931
|
url: resolveWixHeadlessV1OAuthAppServiceUrl({
|
|
98879
98932
|
protoPath: "/v1/oauth-apps/{oAuthApp.id}",
|
|
98880
98933
|
data: serializedData,
|
|
@@ -99065,6 +99118,9 @@ function createDevelopmentSite(payload5) {
|
|
|
99065
99118
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99066
99119
|
method: "POST",
|
|
99067
99120
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.CreateDevelopmentSite",
|
|
99121
|
+
migrationOptions: {
|
|
99122
|
+
optInTransformResponse: true
|
|
99123
|
+
},
|
|
99068
99124
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99069
99125
|
protoPath: "/v1/development-sites",
|
|
99070
99126
|
data: serializedData,
|
|
@@ -99089,6 +99145,9 @@ function getDevelopmentSites(payload5) {
|
|
|
99089
99145
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99090
99146
|
method: "GET",
|
|
99091
99147
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSites",
|
|
99148
|
+
migrationOptions: {
|
|
99149
|
+
optInTransformResponse: true
|
|
99150
|
+
},
|
|
99092
99151
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99093
99152
|
protoPath: "/v1/development-sites",
|
|
99094
99153
|
data: serializedData,
|
|
@@ -99113,6 +99172,9 @@ function getDevelopmentSitesLimit(payload5) {
|
|
|
99113
99172
|
entityFqdn: "wix.devcenter.dsm.v1.development_site",
|
|
99114
99173
|
method: "GET",
|
|
99115
99174
|
methodFqn: "com.wixpress.devcenter.dsm.DevelopmentSitesManager.GetDevelopmentSitesLimit",
|
|
99175
|
+
migrationOptions: {
|
|
99176
|
+
optInTransformResponse: true
|
|
99177
|
+
},
|
|
99116
99178
|
url: resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl({
|
|
99117
99179
|
protoPath: "/v1/development-sites-limit",
|
|
99118
99180
|
data: serializedData,
|
|
@@ -99436,6 +99498,7 @@ var _arrayType2 = { items: "_arrayItems" };
|
|
|
99436
99498
|
var _audioData2 = { audio: "_media", coverImage: "_media" };
|
|
99437
99499
|
var _authenticatorConfig2 = { expectedInputs: "_expectedInputs" };
|
|
99438
99500
|
var _background2 = { image: "_media" };
|
|
99501
|
+
var _backgroundImage2 = { media: "_media" };
|
|
99439
99502
|
var _breakPoint2 = { items: "_itemLayout" };
|
|
99440
99503
|
var _breakpointPresetStyleOverrides2 = {
|
|
99441
99504
|
default: "_presetStyleOverrides",
|
|
@@ -99500,7 +99563,6 @@ var _displayField2 = { richContentOptions: "_richContentOptions" };
|
|
|
99500
99563
|
var _donationInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
99501
99564
|
var _dropdown2 = { description: "_richContent", media: "_mediaItem" };
|
|
99502
99565
|
var _editorElement2 = {
|
|
99503
|
-
style: "Map#_styleItem",
|
|
99504
99566
|
data: "Map#_dataItem",
|
|
99505
99567
|
elements: "Map#_elementItem",
|
|
99506
99568
|
presets: "Map#_presetItem",
|
|
@@ -99569,6 +99631,10 @@ var _item2 = { image: "_itemImage", video: "_video" };
|
|
|
99569
99631
|
var _itemImage2 = { media: "_media" };
|
|
99570
99632
|
var _itemLayout2 = { group: "_group" };
|
|
99571
99633
|
var _itemStyle2 = { ratio: "google.protobuf.DoubleValue" };
|
|
99634
|
+
var _layoutData2 = {
|
|
99635
|
+
backgroundImage: "_backgroundImage",
|
|
99636
|
+
backdropImage: "_backgroundImage"
|
|
99637
|
+
};
|
|
99572
99638
|
var _managedApp = {
|
|
99573
99639
|
premiumInfo: "_premiumInfo",
|
|
99574
99640
|
components: "_component",
|
|
@@ -99596,6 +99662,7 @@ var _node2 = {
|
|
|
99596
99662
|
appEmbedData: "_appEmbedData",
|
|
99597
99663
|
videoData: "_videoData",
|
|
99598
99664
|
audioData: "_audioData",
|
|
99665
|
+
layoutData: "_layoutData",
|
|
99599
99666
|
nodes: "_node"
|
|
99600
99667
|
};
|
|
99601
99668
|
var _numberInput2 = {
|
|
@@ -99669,7 +99736,6 @@ var _radioGroup2 = { description: "_richContent", media: "_mediaItem" };
|
|
|
99669
99736
|
var _ratingInput2 = { description: "_richContent", media: "_mediaItem" };
|
|
99670
99737
|
var _refElement2 = {
|
|
99671
99738
|
resolvedElement: "_inlineElement",
|
|
99672
|
-
elementsDefaults: "Map#_refInnerElementDefaults",
|
|
99673
99739
|
elements: "Map#_refInnerElementDefaults"
|
|
99674
99740
|
};
|
|
99675
99741
|
var _refInnerElementDefaults2 = { elements: "Map#_refInnerElementDefaults" };
|
|
@@ -99813,6 +99879,7 @@ function managedApps(payload5) {
|
|
|
99813
99879
|
_audioData: _audioData2,
|
|
99814
99880
|
_authenticatorConfig: _authenticatorConfig2,
|
|
99815
99881
|
_background: _background2,
|
|
99882
|
+
_backgroundImage: _backgroundImage2,
|
|
99816
99883
|
_breakPoint: _breakPoint2,
|
|
99817
99884
|
_breakpointPresetStyleOverrides: _breakpointPresetStyleOverrides2,
|
|
99818
99885
|
_checkbox: _checkbox2,
|
|
@@ -99862,6 +99929,7 @@ function managedApps(payload5) {
|
|
|
99862
99929
|
_itemImage: _itemImage2,
|
|
99863
99930
|
_itemLayout: _itemLayout2,
|
|
99864
99931
|
_itemStyle: _itemStyle2,
|
|
99932
|
+
_layoutData: _layoutData2,
|
|
99865
99933
|
_managedApp,
|
|
99866
99934
|
_mapData: _mapData2,
|
|
99867
99935
|
_mapSettings: _mapSettings2,
|
|
@@ -100204,6 +100272,10 @@ var ComponentType;
|
|
|
100204
100272
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
100205
100273
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
100206
100274
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
100275
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
100276
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
100277
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
100278
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
100207
100279
|
})(ComponentType || (ComponentType = {}));
|
|
100208
100280
|
var WidgetVertical;
|
|
100209
100281
|
(function(WidgetVertical3) {
|
|
@@ -100811,6 +100883,7 @@ var Source;
|
|
|
100811
100883
|
(function(Source2) {
|
|
100812
100884
|
Source2["HTML"] = "HTML";
|
|
100813
100885
|
Source2["ADSENSE"] = "ADSENSE";
|
|
100886
|
+
Source2["AI"] = "AI";
|
|
100814
100887
|
})(Source || (Source = {}));
|
|
100815
100888
|
var StylesPosition;
|
|
100816
100889
|
(function(StylesPosition3) {
|
|
@@ -100938,6 +101011,35 @@ var NullValue;
|
|
|
100938
101011
|
(function(NullValue3) {
|
|
100939
101012
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
100940
101013
|
})(NullValue || (NullValue = {}));
|
|
101014
|
+
var Scaling;
|
|
101015
|
+
(function(Scaling3) {
|
|
101016
|
+
Scaling3["AUTO"] = "AUTO";
|
|
101017
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
101018
|
+
Scaling3["COVER"] = "COVER";
|
|
101019
|
+
})(Scaling || (Scaling = {}));
|
|
101020
|
+
var LayoutDataImagePosition;
|
|
101021
|
+
(function(LayoutDataImagePosition3) {
|
|
101022
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
101023
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
101024
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
101025
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
101026
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
101027
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
101028
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
101029
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
101030
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
101031
|
+
})(LayoutDataImagePosition || (LayoutDataImagePosition = {}));
|
|
101032
|
+
var VerticalAlignmentAlignment;
|
|
101033
|
+
(function(VerticalAlignmentAlignment3) {
|
|
101034
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
101035
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
101036
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
101037
|
+
})(VerticalAlignmentAlignment || (VerticalAlignmentAlignment = {}));
|
|
101038
|
+
var ResponsivenessBehaviour;
|
|
101039
|
+
(function(ResponsivenessBehaviour3) {
|
|
101040
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
101041
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
101042
|
+
})(ResponsivenessBehaviour || (ResponsivenessBehaviour = {}));
|
|
100941
101043
|
var CalendarType;
|
|
100942
101044
|
(function(CalendarType3) {
|
|
100943
101045
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -101561,6 +101663,11 @@ var PanelContentType;
|
|
|
101561
101663
|
PanelContentType3["url"] = "url";
|
|
101562
101664
|
PanelContentType3["code"] = "code";
|
|
101563
101665
|
})(PanelContentType || (PanelContentType = {}));
|
|
101666
|
+
var PanelMode;
|
|
101667
|
+
(function(PanelMode3) {
|
|
101668
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
101669
|
+
PanelMode3["overlay"] = "overlay";
|
|
101670
|
+
})(PanelMode || (PanelMode = {}));
|
|
101564
101671
|
var StorageType;
|
|
101565
101672
|
(function(StorageType3) {
|
|
101566
101673
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -101609,6 +101716,150 @@ var Scope3;
|
|
|
101609
101716
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
101610
101717
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
101611
101718
|
})(Scope3 || (Scope3 = {}));
|
|
101719
|
+
var DataType;
|
|
101720
|
+
(function(DataType3) {
|
|
101721
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
101722
|
+
DataType3["text"] = "text";
|
|
101723
|
+
DataType3["textEnum"] = "textEnum";
|
|
101724
|
+
DataType3["number"] = "number";
|
|
101725
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
101726
|
+
DataType3["a11y"] = "a11y";
|
|
101727
|
+
DataType3["link"] = "link";
|
|
101728
|
+
DataType3["image"] = "image";
|
|
101729
|
+
DataType3["video"] = "video";
|
|
101730
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
101731
|
+
DataType3["audio"] = "audio";
|
|
101732
|
+
DataType3["schema"] = "schema";
|
|
101733
|
+
DataType3["localDate"] = "localDate";
|
|
101734
|
+
DataType3["localTime"] = "localTime";
|
|
101735
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
101736
|
+
DataType3["webUrl"] = "webUrl";
|
|
101737
|
+
DataType3["email"] = "email";
|
|
101738
|
+
DataType3["phone"] = "phone";
|
|
101739
|
+
DataType3["hostname"] = "hostname";
|
|
101740
|
+
DataType3["regex"] = "regex";
|
|
101741
|
+
DataType3["guid"] = "guid";
|
|
101742
|
+
DataType3["richText"] = "richText";
|
|
101743
|
+
DataType3["container"] = "container";
|
|
101744
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
101745
|
+
DataType3["direction"] = "direction";
|
|
101746
|
+
DataType3["menuItems"] = "menuItems";
|
|
101747
|
+
DataType3["data"] = "data";
|
|
101748
|
+
})(DataType || (DataType = {}));
|
|
101749
|
+
var A11yAttributes;
|
|
101750
|
+
(function(A11yAttributes3) {
|
|
101751
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
101752
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
101753
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
101754
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
101755
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
101756
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
101757
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
101758
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
101759
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
101760
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
101761
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
101762
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
101763
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
101764
|
+
A11yAttributes3["role"] = "role";
|
|
101765
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
101766
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
101767
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
101768
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
101769
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
101770
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
101771
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
101772
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
101773
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
101774
|
+
A11yAttributes3["tag"] = "tag";
|
|
101775
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
101776
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
101777
|
+
})(A11yAttributes || (A11yAttributes = {}));
|
|
101778
|
+
var LinkType;
|
|
101779
|
+
(function(LinkType3) {
|
|
101780
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
101781
|
+
LinkType3["externalLink"] = "externalLink";
|
|
101782
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
101783
|
+
LinkType3["emailLink"] = "emailLink";
|
|
101784
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
101785
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
101786
|
+
LinkType3["pageLink"] = "pageLink";
|
|
101787
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
101788
|
+
LinkType3["documentLink"] = "documentLink";
|
|
101789
|
+
LinkType3["popupLink"] = "popupLink";
|
|
101790
|
+
LinkType3["addressLink"] = "addressLink";
|
|
101791
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
101792
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
101793
|
+
})(LinkType || (LinkType = {}));
|
|
101794
|
+
var ContainerType;
|
|
101795
|
+
(function(ContainerType3) {
|
|
101796
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
101797
|
+
ContainerType3["simple"] = "simple";
|
|
101798
|
+
ContainerType3["slot"] = "slot";
|
|
101799
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
101800
|
+
ContainerType3["template"] = "template";
|
|
101801
|
+
})(ContainerType || (ContainerType = {}));
|
|
101802
|
+
var ResizeDirection;
|
|
101803
|
+
(function(ResizeDirection3) {
|
|
101804
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
101805
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
101806
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
101807
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
101808
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
101809
|
+
ResizeDirection3["none"] = "none";
|
|
101810
|
+
})(ResizeDirection || (ResizeDirection = {}));
|
|
101811
|
+
var RichTextAbilities;
|
|
101812
|
+
(function(RichTextAbilities3) {
|
|
101813
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
101814
|
+
RichTextAbilities3["font"] = "font";
|
|
101815
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
101816
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
101817
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
101818
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
101819
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
101820
|
+
RichTextAbilities3["color"] = "color";
|
|
101821
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
101822
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
101823
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
101824
|
+
RichTextAbilities3["direction"] = "direction";
|
|
101825
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
101826
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
101827
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
101828
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
101829
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
101830
|
+
})(RichTextAbilities || (RichTextAbilities = {}));
|
|
101831
|
+
var ImageCategoryTypes;
|
|
101832
|
+
(function(ImageCategoryTypes3) {
|
|
101833
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
101834
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
101835
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
101836
|
+
})(ImageCategoryTypes || (ImageCategoryTypes = {}));
|
|
101837
|
+
var VideoCategoryTypes;
|
|
101838
|
+
(function(VideoCategoryTypes3) {
|
|
101839
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
101840
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
101841
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
101842
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
101843
|
+
})(VideoCategoryTypes || (VideoCategoryTypes = {}));
|
|
101844
|
+
var VectorArtCategoryTypes;
|
|
101845
|
+
(function(VectorArtCategoryTypes3) {
|
|
101846
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
101847
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
101848
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
101849
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
101850
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
101851
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
101852
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
101853
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
101854
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
101855
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
101856
|
+
})(VectorArtCategoryTypes || (VectorArtCategoryTypes = {}));
|
|
101857
|
+
var ElementTypeEnumElementType;
|
|
101858
|
+
(function(ElementTypeEnumElementType2) {
|
|
101859
|
+
ElementTypeEnumElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
101860
|
+
ElementTypeEnumElementType2["inlineElement"] = "inlineElement";
|
|
101861
|
+
ElementTypeEnumElementType2["refElement"] = "refElement";
|
|
101862
|
+
})(ElementTypeEnumElementType || (ElementTypeEnumElementType = {}));
|
|
101612
101863
|
var CssPropertyType;
|
|
101613
101864
|
(function(CssPropertyType3) {
|
|
101614
101865
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -101898,22 +102149,6 @@ var BackgroundModeEnum;
|
|
|
101898
102149
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
101899
102150
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
101900
102151
|
})(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
102152
|
var CssDataTypeEnumCssDataType;
|
|
101918
102153
|
(function(CssDataTypeEnumCssDataType3) {
|
|
101919
102154
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -101928,131 +102163,6 @@ var CssDataTypeEnumCssDataType;
|
|
|
101928
102163
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
101929
102164
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
101930
102165
|
})(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
102166
|
var ActionType;
|
|
102057
102167
|
(function(ActionType3) {
|
|
102058
102168
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -102178,6 +102288,9 @@ var GroupType;
|
|
|
102178
102288
|
GroupType3["borderRadius"] = "borderRadius";
|
|
102179
102289
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
102180
102290
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
102291
|
+
GroupType3["borderColor"] = "borderColor";
|
|
102292
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
102293
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
102181
102294
|
GroupType3["font"] = "font";
|
|
102182
102295
|
GroupType3["textDecoration"] = "textDecoration";
|
|
102183
102296
|
GroupType3["gap"] = "gap";
|
|
@@ -102399,6 +102512,8 @@ var TimeConstraintType;
|
|
|
102399
102512
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
102400
102513
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
102401
102514
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
102515
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
102516
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
102402
102517
|
})(TimeConstraintType || (TimeConstraintType = {}));
|
|
102403
102518
|
var ValueConstraintType;
|
|
102404
102519
|
(function(ValueConstraintType3) {
|
|
@@ -102568,6 +102683,9 @@ function createShareUrl(payload5) {
|
|
|
102568
102683
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
102569
102684
|
method: "POST",
|
|
102570
102685
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.CreateShareUrl",
|
|
102686
|
+
migrationOptions: {
|
|
102687
|
+
optInTransformResponse: true
|
|
102688
|
+
},
|
|
102571
102689
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
102572
102690
|
protoPath: "/v1/share-url",
|
|
102573
102691
|
data: serializedData,
|
|
@@ -102594,6 +102712,9 @@ function listShareUrls(payload5) {
|
|
|
102594
102712
|
entityFqdn: "wix.devcenter.v1.share_url",
|
|
102595
102713
|
method: "GET",
|
|
102596
102714
|
methodFqn: "wix.devcenter.v1.AppShareUrlService.ListShareUrls",
|
|
102715
|
+
migrationOptions: {
|
|
102716
|
+
optInTransformResponse: true
|
|
102717
|
+
},
|
|
102597
102718
|
url: resolveWixDevcenterV1AppShareUrlServiceUrl({
|
|
102598
102719
|
protoPath: "/v1/share-urls",
|
|
102599
102720
|
data: serializedData,
|
|
@@ -102861,6 +102982,10 @@ var ComponentType2;
|
|
|
102861
102982
|
ComponentType3["WIXEL"] = "WIXEL";
|
|
102862
102983
|
ComponentType3["STAFF_SORTING_PROVIDER"] = "STAFF_SORTING_PROVIDER";
|
|
102863
102984
|
ComponentType3["FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER"] = "FUNCTION_ECOM_DISCOUNT_TRIGGER_ELIGIBILITY_PROVIDER";
|
|
102985
|
+
ComponentType3["FUNCTIONS_ASSISTANT_TOOLS"] = "FUNCTIONS_ASSISTANT_TOOLS";
|
|
102986
|
+
ComponentType3["SITE_MAP_INFO_PROVIDER"] = "SITE_MAP_INFO_PROVIDER";
|
|
102987
|
+
ComponentType3["WIX_AI_GATEWAY_CALLBACK"] = "WIX_AI_GATEWAY_CALLBACK";
|
|
102988
|
+
ComponentType3["URL_MAPPER_PROVIDER"] = "URL_MAPPER_PROVIDER";
|
|
102864
102989
|
})(ComponentType2 || (ComponentType2 = {}));
|
|
102865
102990
|
var WidgetVertical2;
|
|
102866
102991
|
(function(WidgetVertical3) {
|
|
@@ -103468,6 +103593,7 @@ var HTMLDataSource;
|
|
|
103468
103593
|
(function(HTMLDataSource2) {
|
|
103469
103594
|
HTMLDataSource2["HTML"] = "HTML";
|
|
103470
103595
|
HTMLDataSource2["ADSENSE"] = "ADSENSE";
|
|
103596
|
+
HTMLDataSource2["AI"] = "AI";
|
|
103471
103597
|
})(HTMLDataSource || (HTMLDataSource = {}));
|
|
103472
103598
|
var StylesPosition2;
|
|
103473
103599
|
(function(StylesPosition3) {
|
|
@@ -103595,6 +103721,35 @@ var NullValue2;
|
|
|
103595
103721
|
(function(NullValue3) {
|
|
103596
103722
|
NullValue3["NULL_VALUE"] = "NULL_VALUE";
|
|
103597
103723
|
})(NullValue2 || (NullValue2 = {}));
|
|
103724
|
+
var Scaling2;
|
|
103725
|
+
(function(Scaling3) {
|
|
103726
|
+
Scaling3["AUTO"] = "AUTO";
|
|
103727
|
+
Scaling3["CONTAIN"] = "CONTAIN";
|
|
103728
|
+
Scaling3["COVER"] = "COVER";
|
|
103729
|
+
})(Scaling2 || (Scaling2 = {}));
|
|
103730
|
+
var LayoutDataImagePosition2;
|
|
103731
|
+
(function(LayoutDataImagePosition3) {
|
|
103732
|
+
LayoutDataImagePosition3["CENTER"] = "CENTER";
|
|
103733
|
+
LayoutDataImagePosition3["CENTER_LEFT"] = "CENTER_LEFT";
|
|
103734
|
+
LayoutDataImagePosition3["CENTER_RIGHT"] = "CENTER_RIGHT";
|
|
103735
|
+
LayoutDataImagePosition3["TOP"] = "TOP";
|
|
103736
|
+
LayoutDataImagePosition3["TOP_LEFT"] = "TOP_LEFT";
|
|
103737
|
+
LayoutDataImagePosition3["TOP_RIGHT"] = "TOP_RIGHT";
|
|
103738
|
+
LayoutDataImagePosition3["BOTTOM"] = "BOTTOM";
|
|
103739
|
+
LayoutDataImagePosition3["BOTTOM_LEFT"] = "BOTTOM_LEFT";
|
|
103740
|
+
LayoutDataImagePosition3["BOTTOM_RIGHT"] = "BOTTOM_RIGHT";
|
|
103741
|
+
})(LayoutDataImagePosition2 || (LayoutDataImagePosition2 = {}));
|
|
103742
|
+
var VerticalAlignmentAlignment2;
|
|
103743
|
+
(function(VerticalAlignmentAlignment3) {
|
|
103744
|
+
VerticalAlignmentAlignment3["TOP"] = "TOP";
|
|
103745
|
+
VerticalAlignmentAlignment3["MIDDLE"] = "MIDDLE";
|
|
103746
|
+
VerticalAlignmentAlignment3["BOTTOM"] = "BOTTOM";
|
|
103747
|
+
})(VerticalAlignmentAlignment2 || (VerticalAlignmentAlignment2 = {}));
|
|
103748
|
+
var ResponsivenessBehaviour2;
|
|
103749
|
+
(function(ResponsivenessBehaviour3) {
|
|
103750
|
+
ResponsivenessBehaviour3["STACK"] = "STACK";
|
|
103751
|
+
ResponsivenessBehaviour3["WRAP"] = "WRAP";
|
|
103752
|
+
})(ResponsivenessBehaviour2 || (ResponsivenessBehaviour2 = {}));
|
|
103598
103753
|
var CalendarType2;
|
|
103599
103754
|
(function(CalendarType3) {
|
|
103600
103755
|
CalendarType3["UNDEFINED"] = "UNDEFINED";
|
|
@@ -104218,6 +104373,11 @@ var PanelContentType2;
|
|
|
104218
104373
|
PanelContentType3["url"] = "url";
|
|
104219
104374
|
PanelContentType3["code"] = "code";
|
|
104220
104375
|
})(PanelContentType2 || (PanelContentType2 = {}));
|
|
104376
|
+
var PanelMode2;
|
|
104377
|
+
(function(PanelMode3) {
|
|
104378
|
+
PanelMode3["UNKNOWN_PanelMode"] = "UNKNOWN_PanelMode";
|
|
104379
|
+
PanelMode3["overlay"] = "overlay";
|
|
104380
|
+
})(PanelMode2 || (PanelMode2 = {}));
|
|
104221
104381
|
var StorageType2;
|
|
104222
104382
|
(function(StorageType3) {
|
|
104223
104383
|
StorageType3["UNKNOWN_STORAGE_TYPE"] = "UNKNOWN_STORAGE_TYPE";
|
|
@@ -104266,6 +104426,150 @@ var Scope4;
|
|
|
104266
104426
|
Scope5["SPECIFIC_SITE"] = "SPECIFIC_SITE";
|
|
104267
104427
|
Scope5["NON_SPECIFIC_SITE"] = "NON_SPECIFIC_SITE";
|
|
104268
104428
|
})(Scope4 || (Scope4 = {}));
|
|
104429
|
+
var DataType2;
|
|
104430
|
+
(function(DataType3) {
|
|
104431
|
+
DataType3["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
104432
|
+
DataType3["text"] = "text";
|
|
104433
|
+
DataType3["textEnum"] = "textEnum";
|
|
104434
|
+
DataType3["number"] = "number";
|
|
104435
|
+
DataType3["booleanValue"] = "booleanValue";
|
|
104436
|
+
DataType3["a11y"] = "a11y";
|
|
104437
|
+
DataType3["link"] = "link";
|
|
104438
|
+
DataType3["image"] = "image";
|
|
104439
|
+
DataType3["video"] = "video";
|
|
104440
|
+
DataType3["vectorArt"] = "vectorArt";
|
|
104441
|
+
DataType3["audio"] = "audio";
|
|
104442
|
+
DataType3["schema"] = "schema";
|
|
104443
|
+
DataType3["localDate"] = "localDate";
|
|
104444
|
+
DataType3["localTime"] = "localTime";
|
|
104445
|
+
DataType3["localDateTime"] = "localDateTime";
|
|
104446
|
+
DataType3["webUrl"] = "webUrl";
|
|
104447
|
+
DataType3["email"] = "email";
|
|
104448
|
+
DataType3["phone"] = "phone";
|
|
104449
|
+
DataType3["hostname"] = "hostname";
|
|
104450
|
+
DataType3["regex"] = "regex";
|
|
104451
|
+
DataType3["guid"] = "guid";
|
|
104452
|
+
DataType3["richText"] = "richText";
|
|
104453
|
+
DataType3["container"] = "container";
|
|
104454
|
+
DataType3["arrayItems"] = "arrayItems";
|
|
104455
|
+
DataType3["direction"] = "direction";
|
|
104456
|
+
DataType3["menuItems"] = "menuItems";
|
|
104457
|
+
DataType3["data"] = "data";
|
|
104458
|
+
})(DataType2 || (DataType2 = {}));
|
|
104459
|
+
var A11yAttributes2;
|
|
104460
|
+
(function(A11yAttributes3) {
|
|
104461
|
+
A11yAttributes3["Unknown_AriaAttributes"] = "Unknown_AriaAttributes";
|
|
104462
|
+
A11yAttributes3["tabIndex"] = "tabIndex";
|
|
104463
|
+
A11yAttributes3["ariaLevel"] = "ariaLevel";
|
|
104464
|
+
A11yAttributes3["ariaExpanded"] = "ariaExpanded";
|
|
104465
|
+
A11yAttributes3["ariaDisabled"] = "ariaDisabled";
|
|
104466
|
+
A11yAttributes3["ariaAtomic"] = "ariaAtomic";
|
|
104467
|
+
A11yAttributes3["ariaHidden"] = "ariaHidden";
|
|
104468
|
+
A11yAttributes3["ariaBusy"] = "ariaBusy";
|
|
104469
|
+
A11yAttributes3["multiline"] = "multiline";
|
|
104470
|
+
A11yAttributes3["ariaAutocomplete"] = "ariaAutocomplete";
|
|
104471
|
+
A11yAttributes3["ariaPressed"] = "ariaPressed";
|
|
104472
|
+
A11yAttributes3["ariaHaspopup"] = "ariaHaspopup";
|
|
104473
|
+
A11yAttributes3["ariaRelevant"] = "ariaRelevant";
|
|
104474
|
+
A11yAttributes3["role"] = "role";
|
|
104475
|
+
A11yAttributes3["ariaLive"] = "ariaLive";
|
|
104476
|
+
A11yAttributes3["ariaCurrent"] = "ariaCurrent";
|
|
104477
|
+
A11yAttributes3["ariaLabel"] = "ariaLabel";
|
|
104478
|
+
A11yAttributes3["ariaRoledescription"] = "ariaRoledescription";
|
|
104479
|
+
A11yAttributes3["ariaDescribedby"] = "ariaDescribedby";
|
|
104480
|
+
A11yAttributes3["ariaLabelledby"] = "ariaLabelledby";
|
|
104481
|
+
A11yAttributes3["ariaErrormessage"] = "ariaErrormessage";
|
|
104482
|
+
A11yAttributes3["ariaOwns"] = "ariaOwns";
|
|
104483
|
+
A11yAttributes3["ariaControls"] = "ariaControls";
|
|
104484
|
+
A11yAttributes3["tag"] = "tag";
|
|
104485
|
+
A11yAttributes3["ariaMultiline"] = "ariaMultiline";
|
|
104486
|
+
A11yAttributes3["ariaInvalid"] = "ariaInvalid";
|
|
104487
|
+
})(A11yAttributes2 || (A11yAttributes2 = {}));
|
|
104488
|
+
var LinkType2;
|
|
104489
|
+
(function(LinkType3) {
|
|
104490
|
+
LinkType3["UNKNOWN_LinkType"] = "UNKNOWN_LinkType";
|
|
104491
|
+
LinkType3["externalLink"] = "externalLink";
|
|
104492
|
+
LinkType3["anchorLink"] = "anchorLink";
|
|
104493
|
+
LinkType3["emailLink"] = "emailLink";
|
|
104494
|
+
LinkType3["phoneLink"] = "phoneLink";
|
|
104495
|
+
LinkType3["dynamicPageLink"] = "dynamicPageLink";
|
|
104496
|
+
LinkType3["pageLink"] = "pageLink";
|
|
104497
|
+
LinkType3["whatsAppLink"] = "whatsAppLink";
|
|
104498
|
+
LinkType3["documentLink"] = "documentLink";
|
|
104499
|
+
LinkType3["popupLink"] = "popupLink";
|
|
104500
|
+
LinkType3["addressLink"] = "addressLink";
|
|
104501
|
+
LinkType3["edgeAnchorLinks"] = "edgeAnchorLinks";
|
|
104502
|
+
LinkType3["loginToWixLink"] = "loginToWixLink";
|
|
104503
|
+
})(LinkType2 || (LinkType2 = {}));
|
|
104504
|
+
var ContainerType2;
|
|
104505
|
+
(function(ContainerType3) {
|
|
104506
|
+
ContainerType3["UNKNOWN_CONTAINER_TYPE"] = "UNKNOWN_CONTAINER_TYPE";
|
|
104507
|
+
ContainerType3["simple"] = "simple";
|
|
104508
|
+
ContainerType3["slot"] = "slot";
|
|
104509
|
+
ContainerType3["placeholder"] = "placeholder";
|
|
104510
|
+
ContainerType3["template"] = "template";
|
|
104511
|
+
})(ContainerType2 || (ContainerType2 = {}));
|
|
104512
|
+
var ResizeDirection2;
|
|
104513
|
+
(function(ResizeDirection3) {
|
|
104514
|
+
ResizeDirection3["UNKNOWN_ResizeDirection"] = "UNKNOWN_ResizeDirection";
|
|
104515
|
+
ResizeDirection3["horizontal"] = "horizontal";
|
|
104516
|
+
ResizeDirection3["vertical"] = "vertical";
|
|
104517
|
+
ResizeDirection3["horizontalAndVertical"] = "horizontalAndVertical";
|
|
104518
|
+
ResizeDirection3["aspectRatio"] = "aspectRatio";
|
|
104519
|
+
ResizeDirection3["none"] = "none";
|
|
104520
|
+
})(ResizeDirection2 || (ResizeDirection2 = {}));
|
|
104521
|
+
var RichTextAbilities2;
|
|
104522
|
+
(function(RichTextAbilities3) {
|
|
104523
|
+
RichTextAbilities3["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
104524
|
+
RichTextAbilities3["font"] = "font";
|
|
104525
|
+
RichTextAbilities3["fontFamily"] = "fontFamily";
|
|
104526
|
+
RichTextAbilities3["fontSize"] = "fontSize";
|
|
104527
|
+
RichTextAbilities3["fontStyle"] = "fontStyle";
|
|
104528
|
+
RichTextAbilities3["fontWeight"] = "fontWeight";
|
|
104529
|
+
RichTextAbilities3["textDecoration"] = "textDecoration";
|
|
104530
|
+
RichTextAbilities3["color"] = "color";
|
|
104531
|
+
RichTextAbilities3["backgroundColor"] = "backgroundColor";
|
|
104532
|
+
RichTextAbilities3["letterSpacing"] = "letterSpacing";
|
|
104533
|
+
RichTextAbilities3["textAlign"] = "textAlign";
|
|
104534
|
+
RichTextAbilities3["direction"] = "direction";
|
|
104535
|
+
RichTextAbilities3["marginStart"] = "marginStart";
|
|
104536
|
+
RichTextAbilities3["marginEnd"] = "marginEnd";
|
|
104537
|
+
RichTextAbilities3["bulletedList"] = "bulletedList";
|
|
104538
|
+
RichTextAbilities3["numberedList"] = "numberedList";
|
|
104539
|
+
RichTextAbilities3["seoTag"] = "seoTag";
|
|
104540
|
+
})(RichTextAbilities2 || (RichTextAbilities2 = {}));
|
|
104541
|
+
var ImageCategoryTypes2;
|
|
104542
|
+
(function(ImageCategoryTypes3) {
|
|
104543
|
+
ImageCategoryTypes3["UNKNOWN_CategoryName"] = "UNKNOWN_CategoryName";
|
|
104544
|
+
ImageCategoryTypes3["IMAGE"] = "IMAGE";
|
|
104545
|
+
ImageCategoryTypes3["IMAGE_BACKGROUND"] = "IMAGE_BACKGROUND";
|
|
104546
|
+
})(ImageCategoryTypes2 || (ImageCategoryTypes2 = {}));
|
|
104547
|
+
var VideoCategoryTypes2;
|
|
104548
|
+
(function(VideoCategoryTypes3) {
|
|
104549
|
+
VideoCategoryTypes3["UNKNOWN_VideoCategoryTypes"] = "UNKNOWN_VideoCategoryTypes";
|
|
104550
|
+
VideoCategoryTypes3["VIDEO"] = "VIDEO";
|
|
104551
|
+
VideoCategoryTypes3["VIDEO_TRANSPARENT"] = "VIDEO_TRANSPARENT";
|
|
104552
|
+
VideoCategoryTypes3["VIDEO_OPAQUE"] = "VIDEO_OPAQUE";
|
|
104553
|
+
})(VideoCategoryTypes2 || (VideoCategoryTypes2 = {}));
|
|
104554
|
+
var VectorArtCategoryTypes2;
|
|
104555
|
+
(function(VectorArtCategoryTypes3) {
|
|
104556
|
+
VectorArtCategoryTypes3["UNKNOWN_VectorArtCategoryTypes"] = "UNKNOWN_VectorArtCategoryTypes";
|
|
104557
|
+
VectorArtCategoryTypes3["SHAPE_ALL"] = "SHAPE_ALL";
|
|
104558
|
+
VectorArtCategoryTypes3["SHAPE_BASIC"] = "SHAPE_BASIC";
|
|
104559
|
+
VectorArtCategoryTypes3["SHAPE_ART"] = "SHAPE_ART";
|
|
104560
|
+
VectorArtCategoryTypes3["ICON_SOCIAL"] = "ICON_SOCIAL";
|
|
104561
|
+
VectorArtCategoryTypes3["SHAPE_DIVIDERS"] = "SHAPE_DIVIDERS";
|
|
104562
|
+
VectorArtCategoryTypes3["SHAPE_LOCATION"] = "SHAPE_LOCATION";
|
|
104563
|
+
VectorArtCategoryTypes3["SHAPE_DOCUMENTS"] = "SHAPE_DOCUMENTS";
|
|
104564
|
+
VectorArtCategoryTypes3["SHAPE_SOCIAL"] = "SHAPE_SOCIAL";
|
|
104565
|
+
VectorArtCategoryTypes3["SHAPE_ARROWS"] = "SHAPE_ARROWS";
|
|
104566
|
+
})(VectorArtCategoryTypes2 || (VectorArtCategoryTypes2 = {}));
|
|
104567
|
+
var ElementType2;
|
|
104568
|
+
(function(ElementType3) {
|
|
104569
|
+
ElementType3["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
|
|
104570
|
+
ElementType3["inlineElement"] = "inlineElement";
|
|
104571
|
+
ElementType3["refElement"] = "refElement";
|
|
104572
|
+
})(ElementType2 || (ElementType2 = {}));
|
|
104269
104573
|
var CssPropertyType2;
|
|
104270
104574
|
(function(CssPropertyType3) {
|
|
104271
104575
|
CssPropertyType3["UNKNOWN_CssPropertyType"] = "UNKNOWN_CssPropertyType";
|
|
@@ -104555,22 +104859,6 @@ var BackgroundModeEnum2;
|
|
|
104555
104859
|
BackgroundModeEnum3["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
104556
104860
|
BackgroundModeEnum3["shapeDividerSvg"] = "shapeDividerSvg";
|
|
104557
104861
|
})(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
104862
|
var CssDataTypeEnumCssDataType2;
|
|
104575
104863
|
(function(CssDataTypeEnumCssDataType3) {
|
|
104576
104864
|
CssDataTypeEnumCssDataType3["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
@@ -104585,131 +104873,6 @@ var CssDataTypeEnumCssDataType2;
|
|
|
104585
104873
|
CssDataTypeEnumCssDataType3["customEnum"] = "customEnum";
|
|
104586
104874
|
CssDataTypeEnumCssDataType3["time"] = "time";
|
|
104587
104875
|
})(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
104876
|
var ActionType2;
|
|
104714
104877
|
(function(ActionType3) {
|
|
104715
104878
|
ActionType3["UNKNOWN_ActionType"] = "UNKNOWN_ActionType";
|
|
@@ -104835,6 +104998,9 @@ var GroupType2;
|
|
|
104835
104998
|
GroupType3["borderRadius"] = "borderRadius";
|
|
104836
104999
|
GroupType3["borderInlineStart"] = "borderInlineStart";
|
|
104837
105000
|
GroupType3["borderInlineEnd"] = "borderInlineEnd";
|
|
105001
|
+
GroupType3["borderColor"] = "borderColor";
|
|
105002
|
+
GroupType3["borderWidth"] = "borderWidth";
|
|
105003
|
+
GroupType3["borderStyle"] = "borderStyle";
|
|
104838
105004
|
GroupType3["font"] = "font";
|
|
104839
105005
|
GroupType3["textDecoration"] = "textDecoration";
|
|
104840
105006
|
GroupType3["gap"] = "gap";
|
|
@@ -105056,6 +105222,8 @@ var TimeConstraintType2;
|
|
|
105056
105222
|
TimeConstraintType3["BETWEEN"] = "BETWEEN";
|
|
105057
105223
|
TimeConstraintType3["TODAY"] = "TODAY";
|
|
105058
105224
|
TimeConstraintType3["THIS_MONTH"] = "THIS_MONTH";
|
|
105225
|
+
TimeConstraintType3["AFTER"] = "AFTER";
|
|
105226
|
+
TimeConstraintType3["BEFORE"] = "BEFORE";
|
|
105059
105227
|
})(TimeConstraintType2 || (TimeConstraintType2 = {}));
|
|
105060
105228
|
var ValueConstraintType2;
|
|
105061
105229
|
(function(ValueConstraintType3) {
|
|
@@ -105186,6 +105354,7 @@ var CreatedByType;
|
|
|
105186
105354
|
(function(CreatedByType2) {
|
|
105187
105355
|
CreatedByType2["USER"] = "USER";
|
|
105188
105356
|
CreatedByType2["APP"] = "APP";
|
|
105357
|
+
CreatedByType2["CODE_GEN"] = "CODE_GEN";
|
|
105189
105358
|
})(CreatedByType || (CreatedByType = {}));
|
|
105190
105359
|
var ShowConsentBehaviour;
|
|
105191
105360
|
(function(ShowConsentBehaviour2) {
|
|
@@ -105996,6 +106165,9 @@ function createAppDeployment(payload5) {
|
|
|
105996
106165
|
entityFqdn: "wix.velo.backend.v1.app_deployment",
|
|
105997
106166
|
method: "POST",
|
|
105998
106167
|
methodFqn: "wix.velo.backend.v1.AppDeploymentManagement.CreateAppDeployment",
|
|
106168
|
+
migrationOptions: {
|
|
106169
|
+
optInTransformResponse: true
|
|
106170
|
+
},
|
|
105999
106171
|
url: resolveWixVeloBackendV1AppDeploymentManagementUrl({
|
|
106000
106172
|
protoPath: "/v1/app-projects/{appDeployment.appProjectId}/app-deployments",
|
|
106001
106173
|
data: serializedData,
|
|
@@ -106022,6 +106194,9 @@ function completeAppDeployment(payload5) {
|
|
|
106022
106194
|
entityFqdn: "wix.velo.backend.v1.app_deployment",
|
|
106023
106195
|
method: "POST",
|
|
106024
106196
|
methodFqn: "wix.velo.backend.v1.AppDeploymentManagement.CompleteAppDeployment",
|
|
106197
|
+
migrationOptions: {
|
|
106198
|
+
optInTransformResponse: true
|
|
106199
|
+
},
|
|
106025
106200
|
url: resolveWixVeloBackendV1AppDeploymentManagementUrl({
|
|
106026
106201
|
protoPath: "/v1/app-projects/{appDeployment.appProjectId}/app-deployments/{appDeployment.id}/complete",
|
|
106027
106202
|
data: serializedData,
|
|
@@ -106047,6 +106222,8 @@ var _appProject = {
|
|
|
106047
106222
|
var _createAppProjectRequest = { appProject: "_appProject" };
|
|
106048
106223
|
var _createAppProjectResponse = { appProject: "_appProject" };
|
|
106049
106224
|
var _customDomain = { connectionDate: "google.protobuf.Timestamp" };
|
|
106225
|
+
var _getAppProjectRequest = {};
|
|
106226
|
+
var _getAppProjectResponse = { appProject: "_appProject" };
|
|
106050
106227
|
function resolveWixVeloBackendV1AppProjectLifecycleUrl(opts) {
|
|
106051
106228
|
var domainToMappings = {
|
|
106052
106229
|
"manage._base_domain_": [
|
|
@@ -106100,6 +106277,36 @@ function createAppProject(payload5) {
|
|
|
106100
106277
|
__createAppProject.__isAmbassador = true;
|
|
106101
106278
|
return __createAppProject;
|
|
106102
106279
|
}
|
|
106280
|
+
function getAppProject(payload5) {
|
|
106281
|
+
var _a3 = serializer(_getAppProjectRequest, {}), toReq = _a3.toJSON, fromReq = _a3.fromJSON;
|
|
106282
|
+
var fromRes = serializer(_getAppProjectResponse, {
|
|
106283
|
+
_appProject,
|
|
106284
|
+
_customDomain
|
|
106285
|
+
}).fromJSON;
|
|
106286
|
+
function __getAppProject(_a4) {
|
|
106287
|
+
var host = _a4.host;
|
|
106288
|
+
var serializedData = toReq(payload5);
|
|
106289
|
+
var metadata = {
|
|
106290
|
+
entityFqdn: "wix.velo.backend.v1.app_project",
|
|
106291
|
+
method: "GET",
|
|
106292
|
+
methodFqn: "wix.velo.backend.v1.AppProjectLifecycle.GetAppProject",
|
|
106293
|
+
migrationOptions: {
|
|
106294
|
+
optInTransformResponse: true
|
|
106295
|
+
},
|
|
106296
|
+
url: resolveWixVeloBackendV1AppProjectLifecycleUrl({
|
|
106297
|
+
protoPath: "/v1/app-projects/{appProjectId}",
|
|
106298
|
+
data: serializedData,
|
|
106299
|
+
host
|
|
106300
|
+
}),
|
|
106301
|
+
params: toURLSearchParams(serializedData),
|
|
106302
|
+
transformResponse: fromRes
|
|
106303
|
+
};
|
|
106304
|
+
return metadata;
|
|
106305
|
+
}
|
|
106306
|
+
__getAppProject.fromReq = fromReq;
|
|
106307
|
+
__getAppProject.__isAmbassador = true;
|
|
106308
|
+
return __getAppProject;
|
|
106309
|
+
}
|
|
106103
106310
|
|
|
106104
106311
|
// ../../node_modules/@wix/ambassador-velo-backend-v1-app-project/build/es/types.impl.js
|
|
106105
106312
|
init_esm_shims();
|
|
@@ -106117,11 +106324,6 @@ var CloudProvider;
|
|
|
106117
106324
|
CloudProvider3["CLOUD_FLARE"] = "CLOUD_FLARE";
|
|
106118
106325
|
CloudProvider3["KUBERNETES"] = "KUBERNETES";
|
|
106119
106326
|
})(CloudProvider || (CloudProvider = {}));
|
|
106120
|
-
var SortOrder;
|
|
106121
|
-
(function(SortOrder3) {
|
|
106122
|
-
SortOrder3["ASC"] = "ASC";
|
|
106123
|
-
SortOrder3["DESC"] = "DESC";
|
|
106124
|
-
})(SortOrder || (SortOrder = {}));
|
|
106125
106327
|
var WebhookIdentityType3;
|
|
106126
106328
|
(function(WebhookIdentityType5) {
|
|
106127
106329
|
WebhookIdentityType5["UNKNOWN"] = "UNKNOWN";
|
|
@@ -106130,6 +106332,11 @@ var WebhookIdentityType3;
|
|
|
106130
106332
|
WebhookIdentityType5["WIX_USER"] = "WIX_USER";
|
|
106131
106333
|
WebhookIdentityType5["APP"] = "APP";
|
|
106132
106334
|
})(WebhookIdentityType3 || (WebhookIdentityType3 = {}));
|
|
106335
|
+
var SortOrder;
|
|
106336
|
+
(function(SortOrder3) {
|
|
106337
|
+
SortOrder3["ASC"] = "ASC";
|
|
106338
|
+
SortOrder3["DESC"] = "DESC";
|
|
106339
|
+
})(SortOrder || (SortOrder = {}));
|
|
106133
106340
|
|
|
106134
106341
|
// ../../node_modules/@wix/ambassador-velo-backend-v1-app-environment/build/es/http.impl.js
|
|
106135
106342
|
init_esm_shims();
|
|
@@ -106171,6 +106378,9 @@ function upsertAppEnvironment(payload5) {
|
|
|
106171
106378
|
entityFqdn: "wix.velo.backend.v1.app_environment",
|
|
106172
106379
|
method: "POST",
|
|
106173
106380
|
methodFqn: "wix.velo.backend.v1.AppEnvironmentManagement.UpsertAppEnvironment",
|
|
106381
|
+
migrationOptions: {
|
|
106382
|
+
optInTransformResponse: true
|
|
106383
|
+
},
|
|
106174
106384
|
url: resolveWixVeloBackendV1AppEnvironmentManagementUrl({
|
|
106175
106385
|
protoPath: "/v1/app-projects/{appEnvironment.appProjectId}/app-environments/upsert/name/{appEnvironment.name}",
|
|
106176
106386
|
data: serializedData,
|
|
@@ -106197,6 +106407,9 @@ function getAppEnvironmentByName(payload5) {
|
|
|
106197
106407
|
entityFqdn: "wix.velo.backend.v1.app_environment",
|
|
106198
106408
|
method: "GET",
|
|
106199
106409
|
methodFqn: "wix.velo.backend.v1.AppEnvironmentManagement.GetAppEnvironmentByName",
|
|
106410
|
+
migrationOptions: {
|
|
106411
|
+
optInTransformResponse: true
|
|
106412
|
+
},
|
|
106200
106413
|
url: resolveWixVeloBackendV1AppEnvironmentManagementUrl({
|
|
106201
106414
|
protoPath: "/v1/app-projects/{appProjectId}/app-environments/name/{appEnvironmentName}",
|
|
106202
106415
|
data: serializedData,
|
|
@@ -106221,6 +106434,9 @@ function removeAppEnvironmentVariables(payload5) {
|
|
|
106221
106434
|
entityFqdn: "wix.velo.backend.v1.app_environment",
|
|
106222
106435
|
method: "POST",
|
|
106223
106436
|
methodFqn: "wix.velo.backend.v1.AppEnvironmentManagement.RemoveAppEnvironmentVariables",
|
|
106437
|
+
migrationOptions: {
|
|
106438
|
+
optInTransformResponse: true
|
|
106439
|
+
},
|
|
106224
106440
|
url: resolveWixVeloBackendV1AppEnvironmentManagementUrl({
|
|
106225
106441
|
protoPath: "/v1/app-projects/{appProjectId}/app-environments/{appEnvironmentId}/remove",
|
|
106226
106442
|
data: serializedData,
|
|
@@ -106294,6 +106510,12 @@ var AppEnvironmentSchema = external_exports.object({
|
|
|
106294
106510
|
secrets: external_exports.record(external_exports.string())
|
|
106295
106511
|
}).passthrough()
|
|
106296
106512
|
});
|
|
106513
|
+
var AppProjectSchema = external_exports.object({
|
|
106514
|
+
appProject: external_exports.object({
|
|
106515
|
+
id: external_exports.string().uuid(),
|
|
106516
|
+
baseUrl: external_exports.string().url()
|
|
106517
|
+
})
|
|
106518
|
+
});
|
|
106297
106519
|
var CreateAppProjectSchema = external_exports.object({
|
|
106298
106520
|
appProject: external_exports.object({
|
|
106299
106521
|
id: external_exports.string().uuid(),
|
|
@@ -106326,6 +106548,23 @@ var BackendAsAServiceClient = class {
|
|
|
106326
106548
|
};
|
|
106327
106549
|
}
|
|
106328
106550
|
retryOptions;
|
|
106551
|
+
getAppProject = async (appId) => {
|
|
106552
|
+
try {
|
|
106553
|
+
const { data } = await pRetry(
|
|
106554
|
+
() => this.httpClient.request(getAppProject({ appProjectId: appId })),
|
|
106555
|
+
this.retryOptions
|
|
106556
|
+
);
|
|
106557
|
+
return AppProjectSchema.parse(data).appProject;
|
|
106558
|
+
} catch (e2) {
|
|
106559
|
+
if (isHttpError(e2) && e2.response?.status === 404) {
|
|
106560
|
+
return;
|
|
106561
|
+
}
|
|
106562
|
+
throw new CliError({
|
|
106563
|
+
code: CliErrorCode.FailedToGetAppProject(),
|
|
106564
|
+
cause: e2
|
|
106565
|
+
});
|
|
106566
|
+
}
|
|
106567
|
+
};
|
|
106329
106568
|
createAppProject = async (appId, projectName, cloudProvider) => {
|
|
106330
106569
|
try {
|
|
106331
106570
|
const { data } = await this.httpClient.request(
|
|
@@ -106339,7 +106578,7 @@ var BackendAsAServiceClient = class {
|
|
|
106339
106578
|
}
|
|
106340
106579
|
})
|
|
106341
106580
|
);
|
|
106342
|
-
return CreateAppProjectSchema.parse(data);
|
|
106581
|
+
return CreateAppProjectSchema.parse(data).appProject;
|
|
106343
106582
|
} catch (e2) {
|
|
106344
106583
|
throw new CliError({
|
|
106345
106584
|
code: CliErrorCode.FailedCreatingAppProject(),
|
|
@@ -106530,7 +106769,7 @@ var useCreateProject = (businessId) => {
|
|
|
106530
106769
|
getAppSecret({ appId: projectId }),
|
|
106531
106770
|
getInstalledAppInstanceId({ metaSiteId: businessId, appId: projectId })
|
|
106532
106771
|
]);
|
|
106533
|
-
const
|
|
106772
|
+
const appProject = await createAppProject2(
|
|
106534
106773
|
projectId,
|
|
106535
106774
|
projectName,
|
|
106536
106775
|
cloudProvider
|
|
@@ -106542,7 +106781,7 @@ var useCreateProject = (businessId) => {
|
|
|
106542
106781
|
const previewBaseDomain = `https://(.*)-${projectBaseURL.hostname}`;
|
|
106543
106782
|
const previewBaseRedirect = `https://*-${projectBaseURL.hostname}`;
|
|
106544
106783
|
const prodBaseDomain = projectBaseURL.toString().replace(/\/$/, "");
|
|
106545
|
-
const
|
|
106784
|
+
const appEnvironment = await upsertAppEnvironment2(
|
|
106546
106785
|
appProject.id,
|
|
106547
106786
|
DEFAULT_ENVIRONMENT_NAME,
|
|
106548
106787
|
{
|
|
@@ -106570,7 +106809,7 @@ var useCreateProject = (businessId) => {
|
|
|
106570
106809
|
instanceId,
|
|
106571
106810
|
appSecret: publicKeyAndSecret.appSecret,
|
|
106572
106811
|
webhookPublicKey: publicKeyAndSecret.webhookPublicKey,
|
|
106573
|
-
environmentVariables: variables,
|
|
106812
|
+
environmentVariables: appEnvironment.variables,
|
|
106574
106813
|
baseUrl: appProject.baseUrl
|
|
106575
106814
|
};
|
|
106576
106815
|
return projectData;
|
|
@@ -106628,17 +106867,34 @@ var import_variant34 = __toESM(require_lib(), 1);
|
|
|
106628
106867
|
// ../cli-astro-definitions/src/index.ts
|
|
106629
106868
|
init_esm_shims();
|
|
106630
106869
|
import { join as join11 } from "node:path";
|
|
106631
|
-
var
|
|
106632
|
-
var wixAstroConfigSchema = zod_default.object({
|
|
106870
|
+
var wixAstroSiteConfigSchema = zod_default.object({
|
|
106633
106871
|
$schema: zod_default.string().optional(),
|
|
106634
|
-
|
|
106635
|
-
|
|
106636
|
-
|
|
106872
|
+
projectType: zod_default.literal("Site").optional().default("Site"),
|
|
106873
|
+
appId: zod_default.string(),
|
|
106874
|
+
siteId: zod_default.string()
|
|
106875
|
+
});
|
|
106876
|
+
var wixAstroAppConfigSchema = zod_default.object({
|
|
106877
|
+
$schema: zod_default.string().optional(),
|
|
106878
|
+
projectType: zod_default.literal("App"),
|
|
106879
|
+
appId: zod_default.string(),
|
|
106880
|
+
projectId: zod_default.string().optional()
|
|
106881
|
+
});
|
|
106882
|
+
var wixAstroConfigSchema = zod_default.discriminatedUnion("projectType", [
|
|
106883
|
+
wixAstroSiteConfigSchema,
|
|
106884
|
+
wixAstroAppConfigSchema
|
|
106885
|
+
]);
|
|
106886
|
+
var ENV_FILE_NAME = ".env.local";
|
|
106887
|
+
var devMetadataSchema = zod_default.object({
|
|
106888
|
+
staticsUrlPlaceholder: zod_default.string(),
|
|
106889
|
+
serverUrlPlaceholder: zod_default.string()
|
|
106890
|
+
});
|
|
106637
106891
|
var buildMetadataSchema = zod_default.object({
|
|
106638
106892
|
appManifestPath: zod_default.string(),
|
|
106639
106893
|
outDir: zod_default.string(),
|
|
106640
106894
|
clientDir: zod_default.string(),
|
|
106641
|
-
serverDir: zod_default.string().optional()
|
|
106895
|
+
serverDir: zod_default.string().optional(),
|
|
106896
|
+
staticsUrlPlaceholder: zod_default.string().optional(),
|
|
106897
|
+
serverUrlPlaceholder: zod_default.string().optional()
|
|
106642
106898
|
});
|
|
106643
106899
|
var deploymentTopologyEnvironmentSchema = zod_default.object({
|
|
106644
106900
|
id: zod_default.string().describe("Unique ARM tag identifier"),
|