@wix/create-app 0.0.199 → 0.0.201

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 CHANGED
@@ -50678,11 +50678,11 @@ var import_variant21 = __toESM(require_lib(), 1);
50678
50678
  // ../cli-auth/src/messages.json
50679
50679
  var messages_default = {
50680
50680
  "login.instructions_title": "Authorize the CLI to access your Wix account:",
50681
- "login.instructions_details": "1. Copy this code to the clipboard: <0>{code}</0>\n2. Choose an option:",
50682
- "login.have_wix_account": "Already have an account? Press <0/> to <1>log in</1> and then paste the code",
50683
- "login.new_to_wix": "New to Wix? Press <0/> to <1>sign up</1> and then paste the code",
50684
- "login.legacy_auth_notice": "We implemented a new and more secure login method. You'll need to re-login to continue using the CLI.",
50685
- "login.error_opening_browser": "Failed to open browser, please try opening <0/> manually."
50681
+ "login.instructions_details": "1. Copy this code to the clipboard: <0>{code}</0>\n2. Select an option:",
50682
+ "login.have_wix_account": "Already have an account? Press <0/> to <1>log in</1> and then paste the code.",
50683
+ "login.new_to_wix": "New to Wix? Press <0/> to <1>sign up</1> and then paste the code.",
50684
+ "login.legacy_auth_notice": "A new and more secure login method is available. You'll need to re-login to continue using the CLI.",
50685
+ "login.error_opening_browser": "Failed to open browser. Try opening <0/> manually."
50686
50686
  };
50687
50687
 
50688
50688
  // ../cli-auth/src/components/LoginInstructions.tsx
@@ -51483,30 +51483,30 @@ var import_react76 = __toESM(require_react(), 1);
51483
51483
  var ServeDeprecationMessage = ({
51484
51484
  packageManagerRunCmd
51485
51485
  }) => {
51486
- return /* @__PURE__ */ import_react76.default.createElement(Box_default, { rowGap: 1, paddingBottom: 1, flexDirection: "column" }, /* @__PURE__ */ import_react76.default.createElement(Alert, { type: "error" }, "Deprecation Notice"), /* @__PURE__ */ import_react76.default.createElement(Text2, null, /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, "serve"), " command is being replaced by", " ", /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, "preview"), " command."), /* @__PURE__ */ import_react76.default.createElement(Text2, null, "Please run", " ", /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, packageManagerRunCmd ? `${packageManagerRunCmd} wix app preview` : "wix app preview"), " ", "instead."));
51486
+ return /* @__PURE__ */ import_react76.default.createElement(Box_default, { rowGap: 1, paddingBottom: 1, flexDirection: "column" }, /* @__PURE__ */ import_react76.default.createElement(Alert, { type: "error" }, "Deprecation Notice"), /* @__PURE__ */ import_react76.default.createElement(Text2, null, /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, "`serve`"), " command is being replaced by", " ", /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, "`preview`"), " command."), /* @__PURE__ */ import_react76.default.createElement(Text2, null, "Run", " ", /* @__PURE__ */ import_react76.default.createElement(Text2, { skin: "info" }, packageManagerRunCmd ? `\`${packageManagerRunCmd} wix app preview\`` : "`wix app preview`"), " ", "instead."));
51487
51487
  };
51488
51488
 
51489
51489
  // ../cli-error-reporting/src/get-error-component.tsx
51490
51490
  function getErrorComponent(code, cause) {
51491
51491
  return (0, import_variant17.match)(code, {
51492
51492
  UnknownFailure: ({ error }) => {
51493
- return () => /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, /* @__PURE__ */ import_react77.default.createElement(Text2, { skin: "error" }, "Oh no, seems like the CLI encountered an unexpected error:"), error instanceof Error ? /* @__PURE__ */ import_react77.default.createElement(Text2, { skin: "error" }, error.message) : /* @__PURE__ */ import_react77.default.createElement(Text2, null, JSON.stringify(error)));
51493
+ return () => /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, /* @__PURE__ */ import_react77.default.createElement(Text2, { skin: "error" }, "The CLI encountered an unexpected error:"), error instanceof Error ? /* @__PURE__ */ import_react77.default.createElement(Text2, { skin: "error" }, error.message) : /* @__PURE__ */ import_react77.default.createElement(Text2, null, JSON.stringify(error)));
51494
51494
  },
51495
51495
  FailedToGetDeviceCode: () => {
51496
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue a login device code" });
51496
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue a login device code." });
51497
51497
  },
51498
51498
  FailedToGetAuthToken: () => {
51499
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue refresh token" });
51499
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue refresh token." });
51500
51500
  },
51501
51501
  FailedToRefreshTokenForSite: () => {
51502
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue refresh token for site" });
51502
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "An error occurred while logging in: Failed to issue refresh token for site." });
51503
51503
  },
51504
51504
  FailedToRemoveDir: ({ dirPath }) => {
51505
51505
  return () => /* @__PURE__ */ import_react77.default.createElement(
51506
51506
  ErrorMessage,
51507
51507
  {
51508
- message: `We failed to delete the directory ${dirPath}.`,
51509
- hint: `Try to delete this directory manually.`
51508
+ message: `Couldn't delete the directory ${dirPath}.`,
51509
+ hint: `Delete this directory manually and try again.`
51510
51510
  }
51511
51511
  );
51512
51512
  },
@@ -51521,7 +51521,7 @@ function getErrorComponent(code, cause) {
51521
51521
  ErrorMessage,
51522
51522
  {
51523
51523
  message: "No translation published contents found.",
51524
- hint: `Please make sure the "Wix Multilingual" app has published content.`
51524
+ hint: `Make sure the "Wix Multilingual" app has published content.`
51525
51525
  }
51526
51526
  );
51527
51527
  },
@@ -51533,7 +51533,7 @@ function getErrorComponent(code, cause) {
51533
51533
  ErrorMessage,
51534
51534
  {
51535
51535
  message: `Translation file not found at \`${filePath}\`.`,
51536
- hint: `Please create a \`${filePath}\` file in your project and run the command again.`,
51536
+ hint: `Create a \`${filePath}\` file in your project and run the command again.`,
51537
51537
  explanation: `The translation file is used to store the translation keys and values for your project.`
51538
51538
  }
51539
51539
  );
@@ -51560,8 +51560,8 @@ function getErrorComponent(code, cause) {
51560
51560
  return () => /* @__PURE__ */ import_react77.default.createElement(
51561
51561
  ErrorMessage,
51562
51562
  {
51563
- message: `Authenticate failed, your configured development site (${siteId}) could not be accessed`,
51564
- hint: "Make sure the site exists and you still have access to it"
51563
+ message: `Authenticate failed, your configured development site (${siteId}) could not be accessed.`,
51564
+ hint: "Make sure the site exists and you still have access to it."
51565
51565
  }
51566
51566
  );
51567
51567
  },
@@ -51569,8 +51569,8 @@ function getErrorComponent(code, cause) {
51569
51569
  return () => /* @__PURE__ */ import_react77.default.createElement(
51570
51570
  ErrorMessage,
51571
51571
  {
51572
- message: "Failed to renew access token: refresh token has been revoked",
51573
- hint: "Please login again to get a new refresh token"
51572
+ message: "Failed to renew access token: refresh token has been revoked.",
51573
+ hint: "Log in again to get a new refresh token."
51574
51574
  }
51575
51575
  );
51576
51576
  },
@@ -51578,8 +51578,8 @@ function getErrorComponent(code, cause) {
51578
51578
  return () => /* @__PURE__ */ import_react77.default.createElement(
51579
51579
  ErrorMessage,
51580
51580
  {
51581
- message: "Failed to login with refresh token",
51582
- hint: "Please check that your refresh token is valid and not revoked, then try again."
51581
+ message: "Failed to login with refresh token.",
51582
+ hint: "Check that your refresh token is valid and not revoked, then try again."
51583
51583
  }
51584
51584
  );
51585
51585
  },
@@ -51587,8 +51587,8 @@ function getErrorComponent(code, cause) {
51587
51587
  return () => /* @__PURE__ */ import_react77.default.createElement(
51588
51588
  SystemErrorMessage,
51589
51589
  {
51590
- message: "An error occurred while trying to logout: Failed to revoke refresh token!",
51591
- explanation: `Wix CLI is still logged in to account ${email}`
51590
+ message: "Couldn't log out: Failed to revoke refresh token.",
51591
+ explanation: `Wix CLI is still logged in to account ${email}.`
51592
51592
  }
51593
51593
  );
51594
51594
  },
@@ -51613,7 +51613,7 @@ function getErrorComponent(code, cause) {
51613
51613
  ErrorMessage,
51614
51614
  {
51615
51615
  message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Generating a Wix App is only supported using the latest version (", latestVersion, ") of ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "@wix/create-app"), " (current:", " ", currentVersion, ")"),
51616
- hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Make sure you are using the following command:", /* @__PURE__ */ import_react77.default.createElement(Newline, null), /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, updateCommand), /* @__PURE__ */ import_react77.default.createElement(Newline, null), "If the problem persists, try clearing your package manager's cache")
51616
+ hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Make sure you are using the following command:", /* @__PURE__ */ import_react77.default.createElement(Newline, null), /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, updateCommand), /* @__PURE__ */ import_react77.default.createElement(Newline, null), "If the problem persists, try clearing your package manager's cache.")
51617
51617
  }
51618
51618
  );
51619
51619
  },
@@ -51621,8 +51621,8 @@ function getErrorComponent(code, cause) {
51621
51621
  return () => /* @__PURE__ */ import_react77.default.createElement(
51622
51622
  ErrorMessage,
51623
51623
  {
51624
- message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Generating a Wix App requires an empty directory but", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, folder), " already exists and isn't empty"),
51625
- hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Choose a different project name or delete the existing", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, folder), " folder")
51624
+ message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Generating a Wix App requires an empty directory but", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, folder), " already exists and isn't empty."),
51625
+ hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Select a different project name or delete the existing", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, folder), " folder.")
51626
51626
  }
51627
51627
  );
51628
51628
  },
@@ -51630,18 +51630,13 @@ function getErrorComponent(code, cause) {
51630
51630
  return () => /* @__PURE__ */ import_react77.default.createElement(
51631
51631
  ErrorMessage,
51632
51632
  {
51633
- message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Generating a Wix App requires a valid npm package name for the generated ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "package.json"), " ", /* @__PURE__ */ import_react77.default.createElement(Newline, null), "The name ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, packageName), " failed the following validations:", /* @__PURE__ */ import_react77.default.createElement(Newline, null), validations.map((validation, id) => /* @__PURE__ */ import_react77.default.createElement(Text2, { key: id }, /* @__PURE__ */ import_react77.default.createElement(Newline, null), "- ", validation))),
51634
- hint: `Choose a different project name that follows the validations above`
51633
+ message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Generating a Wix App requires a valid NPM package name for the generated ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "package.json"), " ", /* @__PURE__ */ import_react77.default.createElement(Newline, null), "The name ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, packageName), " failed the following validations:", /* @__PURE__ */ import_react77.default.createElement(Newline, null), validations.map((validation, id) => /* @__PURE__ */ import_react77.default.createElement(Text2, { key: id }, /* @__PURE__ */ import_react77.default.createElement(Newline, null), "- ", validation))),
51634
+ hint: `Select a different project name that follows the validations above.`
51635
51635
  }
51636
51636
  );
51637
51637
  },
51638
51638
  SiteSelectorTimedout: () => {
51639
- return () => /* @__PURE__ */ import_react77.default.createElement(
51640
- ErrorMessage,
51641
- {
51642
- message: `Waiting for application installation timed out.`
51643
- }
51644
- );
51639
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Waiting for app installation timed out.` });
51645
51640
  },
51646
51641
  TypeErrorInvalidUrl: () => {
51647
51642
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Invalid assets URL.` });
@@ -51650,8 +51645,8 @@ function getErrorComponent(code, cause) {
51650
51645
  return () => /* @__PURE__ */ import_react77.default.createElement(
51651
51646
  ErrorMessage,
51652
51647
  {
51653
- message: `Unsupported package manager detected. Please use a supported one.`,
51654
- hint: `Expected Yarn or NPM but ${packageManagerName ? `got ${packageManagerName}` : `failed to detect a package manager`}`
51648
+ message: `Unsupported package manager detected. Use a supported one.`,
51649
+ hint: `Expected Yarn or NPM but ${packageManagerName ? `got ${packageManagerName}.` : `failed to detect a package manager.`}`
51655
51650
  }
51656
51651
  );
51657
51652
  },
@@ -51659,49 +51654,49 @@ function getErrorComponent(code, cause) {
51659
51654
  return () => /* @__PURE__ */ import_react77.default.createElement(
51660
51655
  ErrorMessage,
51661
51656
  {
51662
- message: `Generating a Wix App inside ${packageManagerName} workspaces is not supported`
51657
+ message: `Generating a Wix App inside ${packageManagerName} workspaces is not supported.`
51663
51658
  }
51664
51659
  );
51665
51660
  },
51666
51661
  FailedToGetDeveloperApps: () => {
51667
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get the list of your applications" });
51662
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get the list of your applications." });
51668
51663
  },
51669
51664
  FailedToCreateDevCenterApp: () => {
51670
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your application in Wix" });
51665
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your app in Wix." });
51671
51666
  },
51672
51667
  FailedToCreateDevCenterOAuthApp: () => {
51673
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your oauth application in Wix" });
51668
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your oauth app in Wix." });
51674
51669
  },
51675
51670
  FailedToUpdateDevCenterOAuthApp: () => {
51676
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to update your oauth application in Wix" });
51671
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to update your oauth app in Wix." });
51677
51672
  },
51678
51673
  FailedToAddPermission: () => {
51679
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to add permission" });
51674
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to add permission." });
51680
51675
  },
51681
51676
  FailedToGetPlacements: () => {
51682
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get placements" });
51677
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get placements." });
51683
51678
  },
51684
51679
  FailedToCreateTunnel: () => {
51685
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create tunnel" });
51680
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create tunnel." });
51686
51681
  },
51687
51682
  FailedToDeleteTunnel: () => {
51688
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to delete tunnel" });
51683
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to delete tunnel." });
51689
51684
  },
51690
51685
  FailedToGetBlocksExtensionsData: () => {
51691
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get blocks extensions data" });
51686
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get blocks extensions data." });
51692
51687
  },
51693
51688
  FailedToGetBlocksStructure: () => {
51694
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get blocks structure" });
51689
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get blocks structure." });
51695
51690
  },
51696
51691
  FailedToUpdateBlocksAfterSync: () => {
51697
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed updating blocks service after changes occoured" });
51692
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed updating blocks service after changes occurred." });
51698
51693
  },
51699
51694
  SitePermissionDenied: ({ siteId }) => {
51700
51695
  return () => {
51701
51696
  return /* @__PURE__ */ import_react77.default.createElement(
51702
51697
  ErrorMessage,
51703
51698
  {
51704
- message: `You don't have permissions to site ${siteId}`
51699
+ message: `You don't have permissions to site ${siteId}.`
51705
51700
  }
51706
51701
  );
51707
51702
  };
@@ -51711,28 +51706,28 @@ function getErrorComponent(code, cause) {
51711
51706
  return /* @__PURE__ */ import_react77.default.createElement(
51712
51707
  ErrorMessage,
51713
51708
  {
51714
- message: `You don't have permissions to application ${appId}`
51709
+ message: `You don't have permissions to app ${appId}.`
51715
51710
  }
51716
51711
  );
51717
51712
  };
51718
51713
  },
51719
51714
  FailedToUpdateTelemetryConfig: () => {
51720
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to change telemetry preferences" });
51715
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to change telemetry preferences." });
51721
51716
  },
51722
51717
  FailedToInstallPackage: ({ packageName }) => {
51723
51718
  return () => /* @__PURE__ */ import_react77.default.createElement(
51724
51719
  ErrorMessage,
51725
51720
  {
51726
51721
  cause,
51727
- message: `Failed to install npm package ${packageName}.`
51722
+ message: `Failed to install NPM package ${packageName}.`
51728
51723
  }
51729
51724
  );
51730
51725
  },
51731
51726
  FailedToResolveNpmDependencies: () => {
51732
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to resolve npm dependencies" });
51727
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to resolve NPM dependencies." });
51733
51728
  },
51734
51729
  FailedToInstallPackages: () => {
51735
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { cause, message: "Failed to install npm packages." });
51730
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { cause, message: "Failed to install NPM packages." });
51736
51731
  },
51737
51732
  FailedToRunExternalCommand: ({ file, args }) => {
51738
51733
  const commandString = [file, ...args].join(" ");
@@ -51740,7 +51735,7 @@ function getErrorComponent(code, cause) {
51740
51735
  ErrorMessage,
51741
51736
  {
51742
51737
  cause,
51743
- message: `Failed to run external command: ${commandString}`,
51738
+ message: `Failed to run external command: ${commandString}.`,
51744
51739
  hint: "Make sure the command is available on your machine and try again."
51745
51740
  }
51746
51741
  );
@@ -51749,9 +51744,9 @@ function getErrorComponent(code, cause) {
51749
51744
  return () => /* @__PURE__ */ import_react77.default.createElement(
51750
51745
  ErrorMessage,
51751
51746
  {
51752
- message: "Could not start the migration process",
51753
- explanation: "Make sure your `package.json` does not contain any packages under `dependencies`, as the migration cannot proceed if any are present.",
51754
- hint: "If you need to keep any of these packages, move them to `devDependencies` before proceeding."
51747
+ message: "Could not start the migration process.",
51748
+ explanation: "Make sure your `package.json` does not contain any packages under `dependencies`, as the migration can't continue if any are present.",
51749
+ hint: "If you need to keep any of these packages, move them to `devDependencies` before continuing."
51755
51750
  }
51756
51751
  );
51757
51752
  },
@@ -51760,7 +51755,7 @@ function getErrorComponent(code, cause) {
51760
51755
  ErrorMessage,
51761
51756
  {
51762
51757
  cause,
51763
- message: `Failed to uninstall npm package ${packageName}.`
51758
+ message: `Failed to uninstall NPM package ${packageName}.`
51764
51759
  }
51765
51760
  );
51766
51761
  },
@@ -51768,7 +51763,7 @@ function getErrorComponent(code, cause) {
51768
51763
  return () => /* @__PURE__ */ import_react77.default.createElement(
51769
51764
  ErrorMessage,
51770
51765
  {
51771
- message: `Failed to sync the local project to revision ${revision}`
51766
+ message: `Failed to sync the local project to revision ${revision}.`
51772
51767
  }
51773
51768
  );
51774
51769
  },
@@ -51779,13 +51774,13 @@ function getErrorComponent(code, cause) {
51779
51774
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Failed to write cache file at ${path4}.` });
51780
51775
  },
51781
51776
  UploadApplicationFailed: () => {
51782
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to upload the application" });
51777
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to upload the app." });
51783
51778
  },
51784
51779
  BuiltProjectNeeded: () => {
51785
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Can not find build output, please execute `wix app build` to build your app before proceeding" });
51780
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Can't find build output. Execute `wix app build` to build your app before continuing." });
51786
51781
  },
51787
51782
  WixUninstallMissingPackageName: () => {
51788
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Please specify a package name" });
51783
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Specify a package name." });
51789
51784
  },
51790
51785
  FailedToReadJson: ({ filePath }) => {
51791
51786
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { cause, message: `Failed to read ${filePath}.` });
@@ -51803,13 +51798,13 @@ function getErrorComponent(code, cause) {
51803
51798
  );
51804
51799
  },
51805
51800
  FailedToWriteWixLock: () => {
51806
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Failed to write 'wix.lock'` });
51801
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Failed to write 'wix.lock'.` });
51807
51802
  },
51808
51803
  FailedToWriteDependenciesMetadata: () => {
51809
51804
  return () => /* @__PURE__ */ import_react77.default.createElement(
51810
51805
  ErrorMessage,
51811
51806
  {
51812
- message: `Failed to write 'dependencies-metadata.json'`
51807
+ message: `Failed to write 'dependencies-metadata.json'.`
51813
51808
  }
51814
51809
  );
51815
51810
  },
@@ -51826,7 +51821,7 @@ function getErrorComponent(code, cause) {
51826
51821
  return () => /* @__PURE__ */ import_react77.default.createElement(
51827
51822
  ErrorMessage,
51828
51823
  {
51829
- message: `Dashboard page config not found at ${configPath}`
51824
+ message: `Dashboard page config not found at ${configPath}.`
51830
51825
  }
51831
51826
  );
51832
51827
  },
@@ -51834,7 +51829,7 @@ function getErrorComponent(code, cause) {
51834
51829
  return () => /* @__PURE__ */ import_react77.default.createElement(
51835
51830
  ErrorMessage,
51836
51831
  {
51837
- message: `Embedded script config not found at ${configPath}`
51832
+ message: `Embedded script config not found at ${configPath}.`
51838
51833
  }
51839
51834
  );
51840
51835
  },
@@ -51842,7 +51837,7 @@ function getErrorComponent(code, cause) {
51842
51837
  return () => /* @__PURE__ */ import_react77.default.createElement(
51843
51838
  ErrorMessage,
51844
51839
  {
51845
- message: `Site widget config not found at ${configPath}`
51840
+ message: `Site widget config not found at ${configPath}.`
51846
51841
  }
51847
51842
  );
51848
51843
  },
@@ -51850,7 +51845,7 @@ function getErrorComponent(code, cause) {
51850
51845
  return () => /* @__PURE__ */ import_react77.default.createElement(
51851
51846
  ErrorMessage,
51852
51847
  {
51853
- message: `Site plugin config not found at ${configPath}`
51848
+ message: `Site plugin config not found at ${configPath}.`
51854
51849
  }
51855
51850
  );
51856
51851
  },
@@ -51858,7 +51853,7 @@ function getErrorComponent(code, cause) {
51858
51853
  return () => /* @__PURE__ */ import_react77.default.createElement(
51859
51854
  ErrorMessage,
51860
51855
  {
51861
- message: `Blocks widget api file not found at ${folderPath}`
51856
+ message: `Blocks widget API file not found at ${folderPath}.`
51862
51857
  }
51863
51858
  );
51864
51859
  },
@@ -51866,7 +51861,7 @@ function getErrorComponent(code, cause) {
51866
51861
  return () => /* @__PURE__ */ import_react77.default.createElement(
51867
51862
  ErrorMessage,
51868
51863
  {
51869
- message: `Blocks widget config not found at ${configPath}`
51864
+ message: `Blocks widget config not found at ${configPath}.`
51870
51865
  }
51871
51866
  );
51872
51867
  },
@@ -51874,7 +51869,7 @@ function getErrorComponent(code, cause) {
51874
51869
  return () => /* @__PURE__ */ import_react77.default.createElement(
51875
51870
  ErrorMessage,
51876
51871
  {
51877
- message: `Blocks widget panel config not found at ${configPath}`
51872
+ message: `Blocks widget panel config not found at ${configPath}.`
51878
51873
  }
51879
51874
  );
51880
51875
  },
@@ -51901,7 +51896,7 @@ function getErrorComponent(code, cause) {
51901
51896
  return () => /* @__PURE__ */ import_react77.default.createElement(
51902
51897
  ErrorMessage,
51903
51898
  {
51904
- message: `Dashboard plugin config not found at ${configPath}`
51899
+ message: `Dashboard plugin config not found at ${configPath}.`
51905
51900
  }
51906
51901
  );
51907
51902
  },
@@ -51909,7 +51904,7 @@ function getErrorComponent(code, cause) {
51909
51904
  return () => /* @__PURE__ */ import_react77.default.createElement(
51910
51905
  ErrorMessage,
51911
51906
  {
51912
- message: `Dashboard menu plugin config not found at ${configPath}`
51907
+ message: `Dashboard menu plugin config not found at ${configPath}.`
51913
51908
  }
51914
51909
  );
51915
51910
  },
@@ -51917,7 +51912,7 @@ function getErrorComponent(code, cause) {
51917
51912
  return () => /* @__PURE__ */ import_react77.default.createElement(
51918
51913
  ErrorMessage,
51919
51914
  {
51920
- message: `Service plugin config not found at ${configPath}`
51915
+ message: `Service plugin config not found at ${configPath}.`
51921
51916
  }
51922
51917
  );
51923
51918
  },
@@ -51925,7 +51920,7 @@ function getErrorComponent(code, cause) {
51925
51920
  return () => /* @__PURE__ */ import_react77.default.createElement(
51926
51921
  ErrorMessage,
51927
51922
  {
51928
- message: `Dashboard modal config not found at ${configPath}`
51923
+ message: `Dashboard modal config not found at ${configPath}.`
51929
51924
  }
51930
51925
  );
51931
51926
  },
@@ -51933,7 +51928,7 @@ function getErrorComponent(code, cause) {
51933
51928
  return () => /* @__PURE__ */ import_react77.default.createElement(
51934
51929
  ErrorMessage,
51935
51930
  {
51936
- message: `TypeScript config not found at \`${configPath}\``
51931
+ message: `TypeScript config not found at \`${configPath}\`.`
51937
51932
  }
51938
51933
  );
51939
51934
  },
@@ -51942,7 +51937,7 @@ function getErrorComponent(code, cause) {
51942
51937
  ErrorMessage,
51943
51938
  {
51944
51939
  message: defaultOutdent`
51945
- Invalid TypeScript configuration found at \`${configPath}\``
51940
+ Invalid TypeScript configuration found at \`${configPath}\`.`
51946
51941
  }
51947
51942
  );
51948
51943
  },
@@ -51954,7 +51949,7 @@ function getErrorComponent(code, cause) {
51954
51949
  Invalid configuration found at \`${configPath}\`:
51955
51950
  The following errors were found:
51956
51951
  ${zodError.errors.map(formatZodIssue).join("\n")}`,
51957
- hint: "Fix the errors above for your configurations to be applied successfully."
51952
+ hint: "Fix the errors above for your configurations to be applied."
51958
51953
  }
51959
51954
  );
51960
51955
  },
@@ -51966,7 +51961,7 @@ function getErrorComponent(code, cause) {
51966
51961
  Invalid params override found at \`${paramsOverridePath}\`:
51967
51962
  The following errors were found:
51968
51963
  ${zodError.errors.map(formatZodIssue).join("\n")}`,
51969
- hint: "Fix the errors above for your params override to be applied successfully."
51964
+ hint: "Fix the errors above for your params override to be applied."
51970
51965
  }
51971
51966
  );
51972
51967
  },
@@ -51978,12 +51973,12 @@ function getErrorComponent(code, cause) {
51978
51973
  Invalid configuration found at \`${path4}\`:
51979
51974
  The following errors were found:
51980
51975
  ${zodError.errors.map(formatZodIssue).join("\n")}`,
51981
- hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Try to re-install ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "@wix/cli-app"), " dependency")
51976
+ hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Try to re-install ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "@wix/cli-app"), " dependency.")
51982
51977
  }
51983
51978
  );
51984
51979
  },
51985
51980
  PermissionDenied: () => {
51986
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Forbidden operation. Missing permissions" });
51981
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Forbidden operation. Missing permissions." });
51987
51982
  },
51988
51983
  FailedToReadProjectFiles: () => {
51989
51984
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -51995,7 +51990,7 @@ function getErrorComponent(code, cause) {
51995
51990
  );
51996
51991
  },
51997
51992
  GridAppFilesMaxLengthExceeded: ({ maxSizeViolationsData, filePaths }) => {
51998
- let errorMessage2 = "Found one or more project files that are bigger than the allowed limit";
51993
+ let errorMessage2 = "Found 1 or more project files that are bigger than the allowed limit.";
51999
51994
  if (maxSizeViolationsData?.files.length) {
52000
51995
  errorMessage2 += ` (${maxSizeViolationsData.expectedSize}KB): ${maxSizeViolationsData.files.map((f) => `${filePaths[f.fileIndex]} (${f.receivedSize}KB)`).join(", ")}`;
52001
51996
  }
@@ -52026,7 +52021,7 @@ function getErrorComponent(code, cause) {
52026
52021
  );
52027
52022
  },
52028
52023
  DeviceCodeTimedOut: () => {
52029
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The device code has not been approved in the time allocated, please start the login process again." });
52024
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The device code wasn't approved in the time allocated. Start the login process again." });
52030
52025
  },
52031
52026
  DuplicateComponentIdsError: ({ issues }) => {
52032
52027
  const Issue = ({ issue }) => {
@@ -52051,7 +52046,7 @@ function getErrorComponent(code, cause) {
52051
52046
  return () => /* @__PURE__ */ import_react77.default.createElement(Box_default, { flexDirection: "column", rowGap: 1 }, /* @__PURE__ */ import_react77.default.createElement(
52052
52047
  ErrorMessage,
52053
52048
  {
52054
- message: "Found multiple extensions with the same id, this might happen if you copy paste folders.",
52049
+ message: "Found multiple extensions with the same ID, this might happen if you copy paste folders.",
52055
52050
  hint: "You can use the provided suggested GUIDs as the ID of the newly created extension."
52056
52051
  }
52057
52052
  ), issues.map((issue) => /* @__PURE__ */ import_react77.default.createElement(Issue, { issue, key: issue.id })));
@@ -52066,39 +52061,39 @@ function getErrorComponent(code, cause) {
52066
52061
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Got unexpected response from server. Make sure you are running a supported version of the Velo CLI." });
52067
52062
  },
52068
52063
  InvalidGetDeploymentResponse: () => {
52069
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Got unexpected response from server. Please try again later.." });
52064
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Got unexpected response from server. Try again later." });
52070
52065
  },
52071
52066
  InvalidGetDeploymentPipelineDescriptionResponse: () => {
52072
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Got unexpected response from server" });
52067
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Got unexpected response from server." });
52073
52068
  },
52074
52069
  FailedToGetPagesDiff: () => {
52075
52070
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to request pages diff." });
52076
52071
  },
52077
52072
  InvalidViteBuildOutput: () => {
52078
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Invalid vite build output" });
52073
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Invalid vite build output." });
52079
52074
  },
52080
52075
  ViteModuleBundleNotFound: () => {
52081
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Could not find module bundle in vite build output" });
52076
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Could not find module bundle in vite build output." });
52082
52077
  },
52083
52078
  ViteFileNotFoundInOutput: ({ fileName }) => {
52084
52079
  return () => /* @__PURE__ */ import_react77.default.createElement(
52085
52080
  ErrorMessage,
52086
52081
  {
52087
- message: `Could not find ${fileName} in vite build output`
52082
+ message: `Could not find ${fileName} in vite build output.`
52088
52083
  }
52089
52084
  );
52090
52085
  },
52091
52086
  FailedToCreateBackendDeployment: () => {
52092
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create backend deployment" });
52087
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create backend deployment." });
52093
52088
  },
52094
52089
  FailedToUpdateBackendDeployment: () => {
52095
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to update backend deployment" });
52090
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to update backend deployment." });
52096
52091
  },
52097
52092
  FailedToGetBackendDeployment: () => {
52098
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get backend deployment" });
52093
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get backend deployment." });
52099
52094
  },
52100
52095
  FailedToDeployBackend: () => {
52101
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to deploy backend" });
52096
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to deploy backend." });
52102
52097
  },
52103
52098
  FailedToGetUserInfo: () => {
52104
52099
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get user information." });
@@ -52107,10 +52102,10 @@ function getErrorComponent(code, cause) {
52107
52102
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get account information." });
52108
52103
  },
52109
52104
  FailedToCreateDevelopmentSite: () => {
52110
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create a Development Site" });
52105
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Couldn't create a development site." });
52111
52106
  },
52112
52107
  FailedToCreateMetaSiteFromTemplate: () => {
52113
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create a metasite from template" });
52108
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to create a metasite from template." });
52114
52109
  },
52115
52110
  FailedToGetDevelopmentSites: () => {
52116
52111
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to request development sites." });
@@ -52131,7 +52126,7 @@ function getErrorComponent(code, cause) {
52131
52126
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to request sites list." });
52132
52127
  },
52133
52128
  FailedToGetSite: () => {
52134
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to get information about your configured Development Site" });
52129
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Couldn't get information about your configured development site." });
52135
52130
  },
52136
52131
  FailedToDeploySite: () => {
52137
52132
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to deploy site." });
@@ -52147,7 +52142,7 @@ function getErrorComponent(code, cause) {
52147
52142
  ErrorMessage,
52148
52143
  {
52149
52144
  message: "Failed to save the current development site.",
52150
- hint: `Make sure the \`${path4}\` file has proper permissions and is accessible`
52145
+ hint: `Make sure the \`${path4}\` file has proper permissions and is accessible.`
52151
52146
  }
52152
52147
  );
52153
52148
  },
@@ -52155,8 +52150,8 @@ function getErrorComponent(code, cause) {
52155
52150
  return () => /* @__PURE__ */ import_react77.default.createElement(
52156
52151
  ErrorMessage,
52157
52152
  {
52158
- message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Failed to build the application.", /* @__PURE__ */ import_react77.default.createElement(Newline, null), cause?.message),
52159
- hint: "Please check the build output for more information"
52153
+ message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Failed to build the app.", /* @__PURE__ */ import_react77.default.createElement(Newline, null), cause?.message),
52154
+ hint: "Check the build output for more information."
52160
52155
  }
52161
52156
  );
52162
52157
  },
@@ -52173,7 +52168,7 @@ function getErrorComponent(code, cause) {
52173
52168
  return () => /* @__PURE__ */ import_react77.default.createElement(
52174
52169
  SystemErrorMessage,
52175
52170
  {
52176
- message: `Failed to fetch site installation details for app ${appId}`
52171
+ message: `Failed to fetch site installation details for app ${appId}.`
52177
52172
  }
52178
52173
  );
52179
52174
  },
@@ -52214,7 +52209,7 @@ function getErrorComponent(code, cause) {
52214
52209
  ErrorMessage,
52215
52210
  {
52216
52211
  cause,
52217
- message: "Failed to save api key auth data."
52212
+ message: "Failed to save API key auth data."
52218
52213
  }
52219
52214
  );
52220
52215
  },
@@ -52249,12 +52244,12 @@ function getErrorComponent(code, cause) {
52249
52244
  return () => /* @__PURE__ */ import_react77.default.createElement(
52250
52245
  SystemErrorMessage,
52251
52246
  {
52252
- message: `Template path not found: ${templatePath}`
52247
+ message: `Template path not found: ${templatePath}.`
52253
52248
  }
52254
52249
  );
52255
52250
  },
52256
52251
  LocalTemplatePathNotFound: ({ path: path4 }) => {
52257
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Local template path not found: ${path4}` });
52252
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: `Local template path not found: ${path4}.` });
52258
52253
  },
52259
52254
  FailedToCloneRepo: () => {
52260
52255
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52262,12 +52257,12 @@ function getErrorComponent(code, cause) {
52262
52257
  {
52263
52258
  cause,
52264
52259
  message: "Failed to clone repo.",
52265
- hint: "Make sure the Git URL is correct and that your local Git is configured properly to access the remote repository"
52260
+ hint: "Make sure the Git URL is correct and that your local Git is configured properly to access the remote repository."
52266
52261
  }
52267
52262
  );
52268
52263
  },
52269
52264
  InvalidGitUrl: ({ url }) => {
52270
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Invalid Git URL: ${url}` });
52265
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Invalid Git URL: ${url}.` });
52271
52266
  },
52272
52267
  AuthenticationRequired: () => {
52273
52268
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You have to already be logged in to run this command." });
@@ -52279,14 +52274,14 @@ function getErrorComponent(code, cause) {
52279
52274
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "The account you are trying to log in to has been deleted." });
52280
52275
  },
52281
52276
  SiteConfiguredRequired: () => {
52282
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You must provide a `--site` in the command options." });
52277
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "You must enter a `--site` in the command options." });
52283
52278
  },
52284
52279
  FailedAddingPackageToWorkspace: () => {
52285
52280
  return () => /* @__PURE__ */ import_react77.default.createElement(
52286
52281
  ErrorMessage,
52287
52282
  {
52288
- message: "Could not add package to the workspaces configuration. Please add it as instructed by your package manager.",
52289
- hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Full error can be found in ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "wix-error.log"))
52283
+ message: "Couldn't add package to the workspaces configuration. Add it as instructed by your package manager.",
52284
+ hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Full error can be found in ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "wix-error.log"), ".")
52290
52285
  }
52291
52286
  );
52292
52287
  },
@@ -52297,7 +52292,7 @@ function getErrorComponent(code, cause) {
52297
52292
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "This command is not supported in non-interactive terminals. Run with --help to see flags for non-interactive usage, or use an interactive terminal (TTY)." });
52298
52293
  },
52299
52294
  FailedToResolveViteOrigin: () => {
52300
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to resolve the base url for CSS asset urls" });
52295
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "Failed to resolve the base url for CSS asset urls." });
52301
52296
  },
52302
52297
  FailedToCreateAppRelease: () => {
52303
52298
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create an app configuration." });
@@ -52306,7 +52301,7 @@ function getErrorComponent(code, cause) {
52306
52301
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Unexpected response from server." });
52307
52302
  },
52308
52303
  FailedToReleaseHeadlessProject: () => {
52309
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed releasing a headless site and app" });
52304
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed releasing a headless site and app." });
52310
52305
  },
52311
52306
  AppReleaseConfigViolations: () => {
52312
52307
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52321,7 +52316,7 @@ function getErrorComponent(code, cause) {
52321
52316
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to update an app configuration." });
52322
52317
  },
52323
52318
  FailedToCreateComponents: () => {
52324
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create components" });
52319
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create components." });
52325
52320
  },
52326
52321
  FailedToFetchPackageDetails: () => {
52327
52322
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to fetch cli package details." });
@@ -52334,7 +52329,7 @@ function getErrorComponent(code, cause) {
52334
52329
  ErrorMessage,
52335
52330
  {
52336
52331
  message: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "The versions of ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "@wix/cli"), " (", cliVersion, ") and", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "@wix/cli-app"), " (", cliAppVersion, ") dependencies do not match"),
52337
- hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Align their versions in your ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "package.json"), " and re-install dependencies")
52332
+ hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "Align their versions in your ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "package.json"), " and re-install dependencies.")
52338
52333
  }
52339
52334
  );
52340
52335
  },
@@ -52342,7 +52337,7 @@ function getErrorComponent(code, cause) {
52342
52337
  return () => /* @__PURE__ */ import_react77.default.createElement(
52343
52338
  ErrorMessage,
52344
52339
  {
52345
- message: `Invalid dashboard page route: ${route}`,
52340
+ message: `Invalid dashboard page route: ${route}.`,
52346
52341
  hint: errorMessage2
52347
52342
  }
52348
52343
  );
@@ -52351,7 +52346,7 @@ function getErrorComponent(code, cause) {
52351
52346
  return () => /* @__PURE__ */ import_react77.default.createElement(
52352
52347
  ErrorMessage,
52353
52348
  {
52354
- message: `Invalid embedded script folder: ${path4}`,
52349
+ message: `Invalid embedded script folder: ${path4}.`,
52355
52350
  hint: errorMessage2
52356
52351
  }
52357
52352
  );
@@ -52360,7 +52355,7 @@ function getErrorComponent(code, cause) {
52360
52355
  return () => /* @__PURE__ */ import_react77.default.createElement(
52361
52356
  ErrorMessage,
52362
52357
  {
52363
- message: `Invalid embedded script template in ${templateFilename}`,
52358
+ message: `Invalid embedded script template in ${templateFilename}.`,
52364
52359
  hint: errorMessage2
52365
52360
  }
52366
52361
  );
@@ -52369,7 +52364,7 @@ function getErrorComponent(code, cause) {
52369
52364
  return () => /* @__PURE__ */ import_react77.default.createElement(
52370
52365
  ErrorMessage,
52371
52366
  {
52372
- message: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "We use name of folder as tagName for your custom element. Unfortunately, ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, tagName), " is invalid tagName. Reason: ", errorMessage2),
52367
+ message: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "The folder name is used as tagName for your custom element. Unfortunately, ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, tagName), " is invalid tagName. Reason: ", errorMessage2),
52373
52368
  hint: /* @__PURE__ */ import_react77.default.createElement(Text2, null, "You can find rules for tagName here:", " ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, "https://developer.mozilla.org/en-US/docs/Web/API/CustomElementRegistry/define#valid_custom_element_names"))
52374
52369
  }
52375
52370
  );
@@ -52384,13 +52379,13 @@ function getErrorComponent(code, cause) {
52384
52379
  );
52385
52380
  },
52386
52381
  FailedToCreateSiteOverride: () => {
52387
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create site override configuration" });
52382
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create site override configuration." });
52388
52383
  },
52389
52384
  FailedToGetDeploymentPipelineDescription: () => {
52390
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get deployment pipeline details" });
52385
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get deployment pipeline details." });
52391
52386
  },
52392
52387
  FailedToGetDeploymentStatus: () => {
52393
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get deployment status" });
52388
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get deployment status." });
52394
52389
  },
52395
52390
  NetworkError: () => {
52396
52391
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52403,10 +52398,10 @@ function getErrorComponent(code, cause) {
52403
52398
  );
52404
52399
  },
52405
52400
  FailedToGenerateAppMarketQueryParam: () => {
52406
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get generate appMarket query parameter" });
52401
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get generate appMarket query parameter." });
52407
52402
  },
52408
52403
  FailedToParseLog: () => {
52409
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to parse log from the server" });
52404
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to parse log from the server." });
52410
52405
  },
52411
52406
  AppForVersionNotFound: ({ version }) => {
52412
52407
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52418,13 +52413,13 @@ function getErrorComponent(code, cause) {
52418
52413
  );
52419
52414
  },
52420
52415
  FailedToFetchAppForVersion: () => {
52421
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Failed to fetch app configuration` });
52416
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Failed to fetch app configuration.` });
52422
52417
  },
52423
52418
  FailedToGetAppSecret: () => {
52424
52419
  return () => /* @__PURE__ */ import_react77.default.createElement(
52425
52420
  SystemErrorMessage,
52426
52421
  {
52427
- message: `Failed to fetch app keys and configuration`
52422
+ message: `Failed to fetch app keys and configuration.`
52428
52423
  }
52429
52424
  );
52430
52425
  },
@@ -52473,7 +52468,7 @@ function getErrorComponent(code, cause) {
52473
52468
  ErrorMessage,
52474
52469
  {
52475
52470
  message: `Multilingual app is not installed.`,
52476
- hint: `Please install the "Wix Multilingual" app in your site dashboard to use this command.`
52471
+ hint: `Install the "Wix Multilingual" app in your site dashboard to use this command.`
52477
52472
  }
52478
52473
  );
52479
52474
  },
@@ -52482,7 +52477,7 @@ function getErrorComponent(code, cause) {
52482
52477
  ErrorMessage,
52483
52478
  {
52484
52479
  message: "Failed to fetch the primary language for your site.",
52485
- hint: "Please ensure Wix Multilingual is installed and configured on your site."
52480
+ hint: "Ensure Wix Multilingual is installed and configured on your site."
52486
52481
  }
52487
52482
  );
52488
52483
  },
@@ -52491,7 +52486,7 @@ function getErrorComponent(code, cause) {
52491
52486
  ErrorMessage,
52492
52487
  {
52493
52488
  message: "Failed to push translations to Wix Multilingual.",
52494
- hint: `Please ensure the "Wix Multilingual" app is installed on your site and try again.`
52489
+ hint: `Ensure the "Wix Multilingual" app is installed on your site and try again.`
52495
52490
  }
52496
52491
  );
52497
52492
  },
@@ -52500,7 +52495,7 @@ function getErrorComponent(code, cause) {
52500
52495
  ErrorMessage,
52501
52496
  {
52502
52497
  message: "Failed to pull translations from Wix Multilingual.",
52503
- hint: "Please check your internet connection and try again."
52498
+ hint: "Check your internet connection and try again."
52504
52499
  }
52505
52500
  );
52506
52501
  },
@@ -52508,7 +52503,7 @@ function getErrorComponent(code, cause) {
52508
52503
  return () => /* @__PURE__ */ import_react77.default.createElement(
52509
52504
  ErrorMessage,
52510
52505
  {
52511
- message: `Invalid folder for service plugin in \`${relativePath}\``
52506
+ message: `Invalid folder for service plugin in \`${relativePath}\`.`
52512
52507
  }
52513
52508
  );
52514
52509
  },
@@ -52517,7 +52512,7 @@ function getErrorComponent(code, cause) {
52517
52512
  ErrorMessage,
52518
52513
  {
52519
52514
  message: `Failed to read devSiteOverrideId from local app configurations.`,
52520
- hint: `Restart the dev environment and make sure that the .wix/app.config.json file exists.`
52515
+ hint: `Restart the development environment and make sure that the .wix/app.config.json file exists.`
52521
52516
  }
52522
52517
  );
52523
52518
  },
@@ -52525,8 +52520,8 @@ function getErrorComponent(code, cause) {
52525
52520
  return () => /* @__PURE__ */ import_react77.default.createElement(
52526
52521
  ErrorMessage,
52527
52522
  {
52528
- message: `Failed to find file in ESBuild output`,
52529
- hint: `Restart the dev environment and try again.`
52523
+ message: `Failed to find file in ESBuild output.`,
52524
+ hint: `Restart the development environment and try again.`
52530
52525
  }
52531
52526
  );
52532
52527
  },
@@ -52536,7 +52531,7 @@ function getErrorComponent(code, cause) {
52536
52531
  {
52537
52532
  cause,
52538
52533
  message: `Failed to optimize dependency with ESBuild.`,
52539
- explanation: `Restart the dev environment and try again.`
52534
+ explanation: `Restart the development environment and try again.`
52540
52535
  }
52541
52536
  );
52542
52537
  },
@@ -52544,8 +52539,8 @@ function getErrorComponent(code, cause) {
52544
52539
  return () => /* @__PURE__ */ import_react77.default.createElement(
52545
52540
  ErrorMessage,
52546
52541
  {
52547
- message: `Failed to read ESBuild's output file`,
52548
- hint: `Restart the dev environment and try again.`
52542
+ message: `Failed to read ESBuild's output file.`,
52543
+ hint: `Restart the development environment and try again.`
52549
52544
  }
52550
52545
  );
52551
52546
  },
@@ -52554,7 +52549,7 @@ function getErrorComponent(code, cause) {
52554
52549
  ErrorMessage,
52555
52550
  {
52556
52551
  message: /* @__PURE__ */ import_react77.default.createElement(import_react77.default.Fragment, null, "Template with ID ", /* @__PURE__ */ import_react77.default.createElement(Text2, { bold: true }, id), " not found."),
52557
- hint: "Make sure you are using the correct template ID"
52552
+ hint: "Make sure you are using the correct template ID."
52558
52553
  }
52559
52554
  );
52560
52555
  },
@@ -52562,31 +52557,31 @@ function getErrorComponent(code, cause) {
52562
52557
  return () => /* @__PURE__ */ import_react77.default.createElement(
52563
52558
  SystemErrorMessage,
52564
52559
  {
52565
- message: "Failed to fetch available app templates"
52560
+ message: "Failed to fetch available app templates."
52566
52561
  }
52567
52562
  );
52568
52563
  },
52569
52564
  FailedToCreateDevCenterAppFromTemplate: () => {
52570
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your application in Wix" });
52565
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to register your app in Wix." });
52571
52566
  },
52572
52567
  FailedToQueryApps: () => {
52573
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to query apps" });
52568
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to query apps." });
52574
52569
  },
52575
52570
  FailedToGetSiteInstalledApps: () => {
52576
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site installed apps" });
52571
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site installed apps." });
52577
52572
  },
52578
52573
  FailedToGetSiteInstalledAppInstanceId: () => {
52579
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site installed app instance id" });
52574
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site installed app instance ID." });
52580
52575
  },
52581
52576
  FailedToGetClientSpecMap: () => {
52582
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site client spec map" });
52577
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get site client spec map." });
52583
52578
  },
52584
52579
  DeniedPermissionToGetAppSecret: () => {
52585
52580
  return () => /* @__PURE__ */ import_react77.default.createElement(
52586
52581
  ErrorMessage,
52587
52582
  {
52588
- message: "Insufficient permissions",
52589
- hint: "Please log in with an account that has the required permissions to access this application"
52583
+ message: "Insufficient permissions.",
52584
+ hint: "Log in with an account that has the required permissions to access this app."
52590
52585
  }
52591
52586
  );
52592
52587
  },
@@ -52594,10 +52589,10 @@ function getErrorComponent(code, cause) {
52594
52589
  return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to create an isolated environment." });
52595
52590
  },
52596
52591
  FailedToUpdateVeloAppFiles: () => {
52597
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to update files in the isolated environment" });
52592
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to update files in the isolated environment." });
52598
52593
  },
52599
52594
  FailedToGetFilesFromVelo: () => {
52600
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get initial project files" });
52595
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to get initial project files." });
52601
52596
  },
52602
52597
  FailedToOpenBrowser: () => {
52603
52598
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52605,7 +52600,7 @@ function getErrorComponent(code, cause) {
52605
52600
  {
52606
52601
  cause,
52607
52602
  message: "Failed to open browser.",
52608
- hint: "Please make sure you have a browser installed, and it's appropriately configured"
52603
+ hint: "Make sure you have a browser installed, and it's appropriately configured."
52609
52604
  }
52610
52605
  );
52611
52606
  },
@@ -52626,7 +52621,7 @@ function getErrorComponent(code, cause) {
52626
52621
  );
52627
52622
  },
52628
52623
  FailedToSyncPagesTypes: () => {
52629
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to sync pages types" });
52624
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to sync pages types." });
52630
52625
  },
52631
52626
  FailedToInitializeSiteFsManager: () => {
52632
52627
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52689,8 +52684,8 @@ function getErrorComponent(code, cause) {
52689
52684
  return () => /* @__PURE__ */ import_react77.default.createElement(
52690
52685
  ErrorMessage,
52691
52686
  {
52692
- message: `Failed to load asset ${asset}`,
52693
- hint: `Make sure the asset is correctly configured in \`${configPath}\` under the field \`${field}\``
52687
+ message: `Failed to load asset ${asset}.`,
52688
+ hint: `Make sure the asset is correctly configured in \`${configPath}\` under the field \`${field}\`.`
52694
52689
  }
52695
52690
  );
52696
52691
  },
@@ -52725,16 +52720,16 @@ function getErrorComponent(code, cause) {
52725
52720
  );
52726
52721
  },
52727
52722
  FailedToCreateDraftVersion: () => {
52728
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to retrieve release options available for your application." });
52723
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to retrieve release options available for your app." });
52729
52724
  },
52730
52725
  FailedToReleaseDraftVersion: () => {
52731
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to release a new version of your application." });
52726
+ return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: "Failed to release a new version of your app." });
52732
52727
  },
52733
52728
  WaitForEditorInstallationStateFailure: () => {
52734
52729
  return () => /* @__PURE__ */ import_react77.default.createElement(
52735
52730
  SystemErrorMessage,
52736
52731
  {
52737
- message: `Waiting for the Editor to finish installation timed out`
52732
+ message: `Waiting for the Editor to finish installation timed out.`
52738
52733
  }
52739
52734
  );
52740
52735
  },
@@ -52742,7 +52737,7 @@ function getErrorComponent(code, cause) {
52742
52737
  return () => /* @__PURE__ */ import_react77.default.createElement(
52743
52738
  SystemErrorMessage,
52744
52739
  {
52745
- message: `Editor installation details check timed out`
52740
+ message: `Editor installation details check timed out.`
52746
52741
  }
52747
52742
  );
52748
52743
  },
@@ -52750,7 +52745,7 @@ function getErrorComponent(code, cause) {
52750
52745
  return () => /* @__PURE__ */ import_react77.default.createElement(
52751
52746
  SystemErrorMessage,
52752
52747
  {
52753
- message: `Unable to retrieve slot details to extend`
52748
+ message: `Unable to retrieve slot details to extend.`
52754
52749
  }
52755
52750
  );
52756
52751
  },
@@ -52758,7 +52753,7 @@ function getErrorComponent(code, cause) {
52758
52753
  return () => /* @__PURE__ */ import_react77.default.createElement(
52759
52754
  SystemErrorMessage,
52760
52755
  {
52761
- message: `Unable to retrieve the list of available extensions for your application`
52756
+ message: `Unable to retrieve the list of available extensions for your app.`
52762
52757
  }
52763
52758
  );
52764
52759
  },
@@ -52766,12 +52761,17 @@ function getErrorComponent(code, cause) {
52766
52761
  return () => /* @__PURE__ */ import_react77.default.createElement(
52767
52762
  SystemErrorMessage,
52768
52763
  {
52769
- message: `Failed to parse backoffice extension containers data`
52764
+ message: `Failed to parse backoffice extension containers data.`
52770
52765
  }
52771
52766
  );
52772
52767
  },
52773
52768
  FailedToParseBackofficePages: () => {
52774
- return () => /* @__PURE__ */ import_react77.default.createElement(SystemErrorMessage, { message: `Failed to parse backoffice pages data` });
52769
+ return () => /* @__PURE__ */ import_react77.default.createElement(
52770
+ SystemErrorMessage,
52771
+ {
52772
+ message: `Failed to parse backoffice pages data.`
52773
+ }
52774
+ );
52775
52775
  },
52776
52776
  FailedToCleanDistFolder: () => {
52777
52777
  return () => /* @__PURE__ */ import_react77.default.createElement(
@@ -52806,7 +52806,7 @@ ${errorMessage2}`
52806
52806
  return () => /* @__PURE__ */ import_react77.default.createElement(
52807
52807
  ErrorMessage,
52808
52808
  {
52809
- message: `Release command in non-interactive mode requires following parameter: --version-type`
52809
+ message: `Release command in non-interactive mode requires following parameter: --version-type.`
52810
52810
  }
52811
52811
  );
52812
52812
  },
@@ -52836,7 +52836,7 @@ ${errorMessage2}`
52836
52836
  ErrorMessage,
52837
52837
  {
52838
52838
  message: errorMessage2,
52839
- hint: "Failed to create a new application with the specified parameters. Please modify the parameters or switch to interactive mode."
52839
+ hint: "Couldn't create a new app with the specified parameters. Modify the parameters or switch to interactive mode."
52840
52840
  }
52841
52841
  );
52842
52842
  },
@@ -52845,7 +52845,7 @@ ${errorMessage2}`
52845
52845
  ErrorMessage,
52846
52846
  {
52847
52847
  message: errorMessage2,
52848
- hint: "Failed to create a new application with the specified parameters. Please modify the parameters or switch to interactive mode."
52848
+ hint: "Couldn't create a new app with the specified parameters. Modify the parameters or switch to interactive mode."
52849
52849
  }
52850
52850
  );
52851
52851
  },
@@ -52854,7 +52854,7 @@ ${errorMessage2}`
52854
52854
  ErrorMessage,
52855
52855
  {
52856
52856
  message: errorMessage2,
52857
- hint: "Failed to create a new application with provided Business Name. Please modify the parameters or switch to interactive mode."
52857
+ hint: "Couldn't create a new app with provided Business Name. Modify the parameters or switch to interactive mode."
52858
52858
  }
52859
52859
  );
52860
52860
  },
@@ -52863,7 +52863,7 @@ ${errorMessage2}`
52863
52863
  ErrorMessage,
52864
52864
  {
52865
52865
  message: `Minor version release is not allowed.`,
52866
- hint: `Please release major version.`
52866
+ hint: `Release major version.`
52867
52867
  }
52868
52868
  );
52869
52869
  },
@@ -52871,7 +52871,7 @@ ${errorMessage2}`
52871
52871
  return () => /* @__PURE__ */ import_react77.default.createElement(
52872
52872
  ErrorMessage,
52873
52873
  {
52874
- message: `Site component config not found at ${configPath}`
52874
+ message: `Site component config not found at ${configPath}.`
52875
52875
  }
52876
52876
  );
52877
52877
  },
@@ -52879,7 +52879,7 @@ ${errorMessage2}`
52879
52879
  return () => /* @__PURE__ */ import_react77.default.createElement(
52880
52880
  ErrorMessage,
52881
52881
  {
52882
- message: `Site component panel config not found at ${configPath}`
52882
+ message: `Site component panel config not found at ${configPath}.`
52883
52883
  }
52884
52884
  );
52885
52885
  },
@@ -52887,7 +52887,7 @@ ${errorMessage2}`
52887
52887
  return () => /* @__PURE__ */ import_react77.default.createElement(
52888
52888
  ErrorMessage,
52889
52889
  {
52890
- message: `Site component panel with name ${panelName} do not exist`
52890
+ message: `Site component panel with name ${panelName} does not exist.`
52891
52891
  }
52892
52892
  );
52893
52893
  },
@@ -52938,7 +52938,7 @@ ${errorMessage2}`
52938
52938
  return () => /* @__PURE__ */ import_react77.default.createElement(
52939
52939
  ErrorMessage,
52940
52940
  {
52941
- message: "Project build output is missing",
52941
+ message: "Project build output is missing.",
52942
52942
  explanation: reason,
52943
52943
  hint: "Build the project before proceeding."
52944
52944
  }
@@ -52955,7 +52955,7 @@ ${errorMessage2}`
52955
52955
  );
52956
52956
  },
52957
52957
  FailedToFindAstroConfig: () => {
52958
- return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "No valid configuration file found. Please ensure that an astro.config.{js,cjs,mjs,ts} file exists in your project directory." });
52958
+ return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "No valid configuration file found. Ensure that an astro.config.{js,cjs,mjs,ts} file exists in your project directory." });
52959
52959
  },
52960
52960
  ProjectIsAlreadyLinked: () => {
52961
52961
  return () => /* @__PURE__ */ import_react77.default.createElement(ErrorMessage, { message: "This project is already connected to Wix, so no changes were made." });
@@ -53031,7 +53031,7 @@ ${errorMessage2}`
53031
53031
  ErrorMessage,
53032
53032
  {
53033
53033
  cause,
53034
- message: `Site component element config is invalid at ${elementPath}`
53034
+ message: `Site component element config is invalid at ${elementPath}.`
53035
53035
  }
53036
53036
  );
53037
53037
  },
@@ -53040,7 +53040,7 @@ ${errorMessage2}`
53040
53040
  ErrorMessage,
53041
53041
  {
53042
53042
  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.",
53043
- hint: "To resolve this, please visit your app dashboard in Dev Center and ensure the app is marked as 'Developed by Wix'."
53043
+ hint: "To resolve this, visit your app dashboard in Dev Center and ensure the app is marked as 'Developed by Wix'."
53044
53044
  }
53045
53045
  );
53046
53046
  },
@@ -53049,7 +53049,7 @@ ${errorMessage2}`
53049
53049
  ErrorMessage,
53050
53050
  {
53051
53051
  cause,
53052
- message: "The Vibe repository setup timed out. Please try again."
53052
+ message: "The Vibe repository setup timed out. Try again."
53053
53053
  }
53054
53054
  );
53055
53055
  },
@@ -53058,7 +53058,7 @@ ${errorMessage2}`
53058
53058
  ErrorMessage,
53059
53059
  {
53060
53060
  cause,
53061
- message: "The development command failed to execute. Please review the output log above for details."
53061
+ message: "The development command failed to execute. Review the output log above for details."
53062
53062
  }
53063
53063
  );
53064
53064
  },
@@ -56222,17 +56222,25 @@ var useErrorReporter = () => {
56222
56222
  // ../cli-auth/src/useColoredVerificationUri.ts
56223
56223
  init_esm_shims();
56224
56224
  var import_react87 = __toESM(require_react(), 1);
56225
+
56226
+ // ../cli-auth/src/verfication-uri.ts
56227
+ init_esm_shims();
56228
+ function buildVerificationUris(verificationUri) {
56229
+ const coloredUri = new URL(verificationUri);
56230
+ coloredUri.searchParams.set("color", "developer");
56231
+ coloredUri.searchParams.set("studio", "true");
56232
+ const signupUri = new URL("https://users.wix.com/login/signup/password");
56233
+ signupUri.searchParams.set("redirectTo", coloredUri.href);
56234
+ return {
56235
+ coloredVerificationUri: coloredUri.toString(),
56236
+ signupUri: signupUri.toString()
56237
+ };
56238
+ }
56239
+
56240
+ // ../cli-auth/src/useColoredVerificationUri.ts
56225
56241
  function useColoredVerificationUri(verificationUri) {
56226
56242
  return (0, import_react87.useMemo)(() => {
56227
- const coloredUri = new URL(verificationUri);
56228
- coloredUri.searchParams.set("color", "developer");
56229
- coloredUri.searchParams.set("studio", "true");
56230
- const signupUri = new URL("https://users.wix.com/login/signup/password");
56231
- signupUri.searchParams.set("redirectTo", coloredUri.href);
56232
- return {
56233
- coloredVerificationUri: coloredUri.toString(),
56234
- signupUri: signupUri.toString()
56235
- };
56243
+ return buildVerificationUris(verificationUri);
56236
56244
  }, [verificationUri]);
56237
56245
  }
56238
56246
 
@@ -57950,7 +57958,7 @@ function reportCommandStartEvent({
57950
57958
  var package_default = {
57951
57959
  name: "@wix/create-app",
57952
57960
  description: "Create Wix apps",
57953
- version: "0.0.199",
57961
+ version: "0.0.201",
57954
57962
  author: "Ihor Machuzhak",
57955
57963
  bin: "bin/index.cjs",
57956
57964
  devDependencies: {