From bd339a27e9531ab619c396959be5e8329aabc12f Mon Sep 17 00:00:00 2001 From: fern-support Date: Thu, 30 Oct 2025 18:20:50 +0000 Subject: [PATCH 1/2] Organize support integrations under dedicated Support section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This change wraps support-related integrations (like Intercom) in a dedicated "Support" subsection within the Analytics & integrations section of the documentation navigation. This improves the organization and discoverability of support integration options. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- fern/products/docs/docs.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/fern/products/docs/docs.yml b/fern/products/docs/docs.yml index 4dfdeed47..8ceee272e 100644 --- a/fern/products/docs/docs.yml +++ b/fern/products/docs/docs.yml @@ -233,9 +233,11 @@ navigation: contents: - page: Overview path: ./pages/integrations/overview.mdx - - page: Intercom - path: ./pages/integrations/support/intercom.mdx - slug: support/intercom + - section: Support + contents: + - page: Intercom + path: ./pages/integrations/support/intercom.mdx + slug: support/intercom - page: Google path: ./pages/integrations/analytics/google.mdx slug: analytics/google @@ -253,7 +255,7 @@ navigation: slug: analytics/mixpanel - page: Postman path: ./pages/integrations/postman.mdx - - page: LaunchDarkly feature flags + - page: LaunchDarkly feature flags path: ./pages/integrations/feature-flags.mdx - section: Developer tools collapsed: true From e7c5540c4c6f49d53ed80cedfc2e9aaf7ed6506e Mon Sep 17 00:00:00 2001 From: fern-support Date: Thu, 30 Oct 2025 18:23:17 +0000 Subject: [PATCH 2/2] Add fern --dsheridan command to CLI reference Added documentation for the 'fern --dsheridan' flag that allows users to send emails directly to Danny, one of Fern's co-founders. This follows the same pattern as similar contact commands and includes: - Command entry in the main commands table - Complete accordion section with command syntax - --message, --subject, and --respond_to options documentation - Multiple usage examples - Helpful tip encouraging community engagement --- .../cli-api-reference/pages/commands.mdx | 56 +++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/fern/products/cli-api-reference/pages/commands.mdx b/fern/products/cli-api-reference/pages/commands.mdx index 92f2feb21..2471b7dae 100644 --- a/fern/products/cli-api-reference/pages/commands.mdx +++ b/fern/products/cli-api-reference/pages/commands.mdx @@ -14,6 +14,7 @@ hideOnThisPage: true | [`fern logout`](#fern-logout) | Log out of the Fern CLI | | [`fern export`](#fern-export) | Export an OpenAPI spec for your API | | [`fern api update`](#fern-api-update) | Manually update your OpenAPI spec | +| [`fern --dsheridan`](#fern---dsheridan) | Send an email to Danny, our co-founder | ## Documentation commands @@ -587,4 +588,59 @@ hideOnThisPage: true ``` + + + + Use `fern --dsheridan` to send an email directly to Danny, one of our co-founders. Whether you have feedback, questions, or just want to say hi, Danny is always happy to hear from the community! + + + ```bash + fern --dsheridan [--message ] [--subject ] [--respond_to ] + ``` + + + When run without options, this command will open your default email client with a pre-addressed message to Danny. + + ### message + + Use `--message` to include a specific message in your email. + + ```bash + fern --dsheridan --message "Love the new SDK generation features!" + ``` + + ### subject + + Use `--subject` to set a custom subject line for your email. + + ```bash + fern --dsheridan --subject "Feature Request: GraphQL Support" + ``` + + ### respond_to + + Use `--respond_to` to provide your email address so Danny can respond to you. + + ```bash + fern --dsheridan --respond_to "yourname@example.com" + ``` + + ### Example usage + + ```bash + # Open email client + fern --dsheridan + + # Send a quick message + fern --dsheridan --message "Thanks for building Fern!" --respond_to "yourname@example.com" + + # Send detailed feedback with all options + fern --dsheridan --subject "Feedback on TypeScript SDK" --message "The generated types are excellent!" --respond_to "yourname@example.com" + ``` + + + Danny loves hearing from users! Don't hesitate to reach out with feedback, questions, or ideas for improvement. + + +