@wix/create-app 0.0.93 → 0.0.94
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 +11 -1
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -57003,6 +57003,7 @@ var CliSystemErrorCode = (0, import_variant11.variant)({
|
|
|
57003
57003
|
FailedToDeleteTunnel: {},
|
|
57004
57004
|
FailedToGetBlocksExtensionsData: {},
|
|
57005
57005
|
FailedToGetBlocksStructure: {},
|
|
57006
|
+
FailedToUpdateBlocksAfterSync: {},
|
|
57006
57007
|
GridAppFailedToUpdateFiles: {},
|
|
57007
57008
|
FailedToCreateGridApp: (0, import_variant11.fields)(),
|
|
57008
57009
|
InvalidResponseData: {},
|
|
@@ -66480,6 +66481,9 @@ function getErrorComponent(code, cause) {
|
|
|
66480
66481
|
FailedToGetBlocksStructure: () => {
|
|
66481
66482
|
return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get blocks structure" });
|
|
66482
66483
|
},
|
|
66484
|
+
FailedToUpdateBlocksAfterSync: () => {
|
|
66485
|
+
return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed updating blocks service after changes occoured" });
|
|
66486
|
+
},
|
|
66483
66487
|
SitePermissionDenied: ({ siteId }) => {
|
|
66484
66488
|
return () => {
|
|
66485
66489
|
return /* @__PURE__ */ import_react77.default.createElement(
|
|
@@ -70997,7 +71001,7 @@ function reportCommandStartEvent({
|
|
|
70997
71001
|
}
|
|
70998
71002
|
|
|
70999
71003
|
// package.json
|
|
71000
|
-
var version = "0.0.
|
|
71004
|
+
var version = "0.0.94";
|
|
71001
71005
|
var package_default = {
|
|
71002
71006
|
name: "@wix/create-app",
|
|
71003
71007
|
description: "Create Wix apps",
|
|
@@ -75135,6 +75139,12 @@ function resolveComWixpressDevcenterDsmDevelopmentSitesManagerUrl(opts) {
|
|
|
75135
75139
|
srcPath: "/_api/development-sites-manager",
|
|
75136
75140
|
destPath: ""
|
|
75137
75141
|
}
|
|
75142
|
+
],
|
|
75143
|
+
"www._base_domain_": [
|
|
75144
|
+
{
|
|
75145
|
+
srcPath: "/_api/development-sites-manager",
|
|
75146
|
+
destPath: ""
|
|
75147
|
+
}
|
|
75138
75148
|
]
|
|
75139
75149
|
};
|
|
75140
75150
|
return resolveUrl(Object.assign(opts, { domainToMappings }));
|