@fern-api/fdr-sdk 1.2.39-f82f6883d8 → 1.2.40-5c4b71a67c

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.
@@ -15867,15 +15867,15 @@ function findNode(root, slug) {
15867
15867
  };
15868
15868
  }
15869
15869
  if (root.type === "root" && root.slug === slug && root.pointsTo != null) {
15870
- return { type: "redirect", redirect: root.pointsTo };
15870
+ return { type: "redirect", redirect: root.pointsTo, authed: root.authed };
15871
15871
  }
15872
15872
  if (navigation_exports.hasRedirect(found.node) && found.node.pointsTo != null) {
15873
- return { type: "redirect", redirect: found.node.pointsTo };
15873
+ return { type: "redirect", redirect: found.node.pointsTo, authed: found.node.authed };
15874
15874
  }
15875
15875
  if (found.node.type === "variant" && (found.node.pointsTo == null || found.node.pointsTo === void 0)) {
15876
15876
  const firstPage = findFirstPageInNode(found.node);
15877
15877
  if (firstPage != null) {
15878
- return { type: "redirect", redirect: firstPage };
15878
+ return { type: "redirect", redirect: firstPage, authed: found.node.authed };
15879
15879
  }
15880
15880
  }
15881
15881
  return {