You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Introduces a new `fern deep` command that allows users to send emails
directly to Deep, one of Fern's co-founders. The command supports
optional --message and --subject flags for quick communication, or
prompts interactively if no arguments are provided.
This update includes:
- Added command entry to the main commands table
- Full documentation with usage examples and flag descriptions
- Helpful tip encouraging community engagement
Copy file name to clipboardExpand all lines: fern/products/cli-api-reference/pages/commands.mdx
+36-1Lines changed: 36 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ hideOnThisPage: true
14
14
|[`fern logout`](#fern-logout)| Log out of the Fern CLI |
15
15
|[`fern export`](#fern-export)| Export an OpenAPI spec for your API |
16
16
|[`fern api update`](#fern-api-update)| Manually update your OpenAPI spec |
17
+
|[`fern deep`](#fern-deep)| Send an email to Deep, our co-founder |
17
18
18
19
## Documentation commands
19
20
@@ -579,12 +580,46 @@ hideOnThisPage: true
579
580
580
581
### api
581
582
582
-
Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
583
+
Use `--api` to specify the API to update if there are multiple specs with a defined `origin` in `generators.yml`. If you don't specify an API, all OpenAPI specs with an `origin` will be updated.
583
584
584
585
<CodeBlock title="terminal">
585
586
```bash
586
587
fern api update --api public-api
587
588
```
588
589
</CodeBlock>
589
590
</Accordion>
591
+
592
+
<Accordion title="fern deep">
593
+
594
+
Use `fern deep` to send an email directly to Deep, one of Fern's co-founders. This command is perfect for when you need to reach out with feedback, questions, or just want to say hello!
595
+
596
+
<CodeBlock title="terminal">
597
+
```bash
598
+
fern deep [--message <message>] [--subject <subject>]
599
+
```
600
+
</CodeBlock>
601
+
602
+
When you run this command, it will compose and send an email to Deep on your behalf. If you don't provide a message or subject, the CLI will prompt you interactively.
603
+
604
+
### message
605
+
606
+
Use `--message` to specify the content of your email:
607
+
608
+
```bash
609
+
fern deep --message "Love the new SDK generation features!"
610
+
```
611
+
612
+
### subject
613
+
614
+
Use `--subject` to set a custom subject line for your email:
615
+
616
+
```bash
617
+
fern deep --subject "Feature Request" --message "Would love to see support for..."
618
+
```
619
+
620
+
<Tip>
621
+
Deep loves hearing from the community! Don't hesitate to share your thoughts, ideas, or feedback.
0 commit comments