@fern-api/fdr-sdk 1.2.39-f82f6883d8 → 1.2.40-bcfd2ff480

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.
@@ -14555,15 +14555,15 @@ function findNode(root, slug) {
14555
14555
  };
14556
14556
  }
14557
14557
  if (root.type === "root" && root.slug === slug && root.pointsTo != null) {
14558
- return { type: "redirect", redirect: root.pointsTo };
14558
+ return { type: "redirect", redirect: root.pointsTo, authed: root.authed };
14559
14559
  }
14560
14560
  if (navigation_exports.hasRedirect(found.node) && found.node.pointsTo != null) {
14561
- return { type: "redirect", redirect: found.node.pointsTo };
14561
+ return { type: "redirect", redirect: found.node.pointsTo, authed: found.node.authed };
14562
14562
  }
14563
14563
  if (found.node.type === "variant" && (found.node.pointsTo == null || found.node.pointsTo === void 0)) {
14564
14564
  const firstPage = findFirstPageInNode(found.node);
14565
14565
  if (firstPage != null) {
14566
- return { type: "redirect", redirect: firstPage };
14566
+ return { type: "redirect", redirect: firstPage, authed: found.node.authed };
14567
14567
  }
14568
14568
  }
14569
14569
  return {