@autohq/cli 0.1.521 → 0.1.523

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.
@@ -30866,7 +30866,7 @@ Object.assign(lookup, {
30866
30866
  // package.json
30867
30867
  var package_default = {
30868
30868
  name: "@autohq/cli",
30869
- version: "0.1.521",
30869
+ version: "0.1.523",
30870
30870
  license: "SEE LICENSE IN README.md",
30871
30871
  publishConfig: {
30872
30872
  access: "public"
@@ -33478,9 +33478,9 @@ var CommunityInviteOutputSchema = external_exports.object({
33478
33478
  function isCommunitySlackInviteUrl(value2) {
33479
33479
  try {
33480
33480
  const url3 = new URL(value2);
33481
- return url3.protocol === "https:" && url3.hostname === "join.slack.com" && url3.username === "" && url3.password === "" && url3.search === "" && url3.hash === "" && /^\/t\/[A-Za-z0-9_-]+\/shared_invite\/[A-Za-z0-9_-]+\/?$/.test(
33481
+ return url3.protocol === "https:" && url3.hostname === "join.slack.com" && url3.username === "" && url3.password === "" && url3.search === "" && url3.hash === "" && (/^\/t\/[A-Za-z0-9_-]+\/shared_invite\/[A-Za-z0-9_-]+\/?$/.test(
33482
33482
  url3.pathname
33483
- );
33483
+ ) || /^\/share\/[A-Za-z0-9_-]+\/?$/.test(url3.pathname));
33484
33484
  } catch {
33485
33485
  return false;
33486
33486
  }