Skip to content

Deprecate growth tier #934

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion authentication-personalization/authentication-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
**Need help choosing?** See the [overview](/authentication-personalization/overview) to compare options.

<Info>
Authentication methods are available on [Growth and Enterprise plans](https://mintlify.com/pricing?ref=authentication).
[Enterprise plans](https://mintlify.com/pricing?ref=authentication) include all authentication methods.

Pro plans include password authentication.
</Info>

## Configuring authentication
Expand All @@ -20,7 +22,7 @@
<Tab title="JWT">
### Prerequisites

* An authentication system that can generate and sign JWTs.

Check warning on line 25 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L25

Did you really mean 'JWTs'?
* A backend service that can create redirect URLs.

### Implementation
Expand Down Expand Up @@ -55,20 +57,20 @@

<CodeGroup>
```ts TypeScript
import * as jose from 'jose';

Check warning on line 60 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L60

Did you really mean 'jose'?
import { Request, Response } from 'express';

const TWO_WEEKS_IN_MS = 1000 * 60 * 60 * 24 * 7 * 2;

const signingKey = await jose.importPKCS8(process.env.MINTLIFY_PRIVATE_KEY, 'EdDSA');

Check warning on line 65 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L65

Did you really mean 'signingKey'?

export async function handleRequest(req: Request, res: Response) {
const user = {
expiresAt: Math.floor((Date.now() + TWO_WEEKS_IN_MS) / 1000), // 2 week session expiration

Check warning on line 69 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L69

Did you really mean 'expiresAt'?
groups: res.locals.user.groups,
content: {
firstName: res.locals.user.firstName,

Check warning on line 72 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L72

Did you really mean 'firstName'?
lastName: res.locals.user.lastName,

Check warning on line 73 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L73

Did you really mean 'lastName'?
},
};

Expand Down Expand Up @@ -169,8 +171,8 @@
```json
{
"content": {
"firstName": "Jane",

Check warning on line 174 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L174

Did you really mean 'firstName'?
"lastName": "Doe"

Check warning on line 175 in authentication-personalization/authentication-setup.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/authentication-setup.mdx#L175

Did you really mean 'lastName'?
},
"groups": ["engineering", "admin"]
}
Expand Down
5 changes: 3 additions & 2 deletions authentication-personalization/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@
---

<Info>
Authentication methods are available on the [Growth and Enterprise
plans](https://mintlify.com/pricing?ref=authentication).
[Enterprise plans](https://mintlify.com/pricing?ref=authentication) include all authentication methods.

Pro plans include password authentication.
</Info>

There are three approaches to manage access and customize your documentation based on user information.
Expand Down Expand Up @@ -122,13 +123,13 @@
example, `{user.org?.plan}`.
</Note>

### API key prefilling

Check warning on line 126 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/overview.mdx#L126

Did you really mean 'prefilling'?

Automatically populate API playground fields with user-specific values by returning matching field names in your user data. The field names in your user data must exactly match the names in the API playground for automatic prefilling to work.

Check warning on line 128 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/overview.mdx#L128

Did you really mean 'prefilling'?

### Page visibility

Restrict which pages are visible to your users by adding `groups` fields to your pages' frontmatter. By default, every page is visible to every user.

Check warning on line 132 in authentication-personalization/overview.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

authentication-personalization/overview.mdx#L132

Did you really mean 'frontmatter'?

Users will only see pages for `groups` that they are in.

Expand Down
2 changes: 1 addition & 1 deletion guides/assistant.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
---

<Info>
The assistant is automatically enabled on [Pro, Growth, and Enterprise plans](https://mintlify.com/pricing?ref=assistant).
The assistant is automatically enabled on [Pro and Enterprise plans](https://mintlify.com/pricing?ref=assistant).
</Info>

## About the assistant

The assistant answers questions about your documentation through natural language queries. It is embedded directly in your documentation site, providing users with immediate access to contextual help.

The assistant uses agentic RAG (retrieval-augmented generation) with tool calling powered by Claude Sonnet 4. When users ask questions, the assistant:

Check warning on line 15 in guides/assistant.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

guides/assistant.mdx#L15

Did you really mean 'agentic'?

* **Searches and retrieves** relevant content from your documentation to provide accurate answers.
* **Cites sources** and provides navigable links to take users directly to referenced pages.
Expand All @@ -28,7 +28,7 @@

Users can access the assistant in two ways:

- **Keyboard shortcut**: <kbd>Command</kbd> + <kbd>I</kbd> (<kbd>Ctrl</kbd> + <kbd>I</kbd> on Windows)

Check warning on line 31 in guides/assistant.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

guides/assistant.mdx#L31

Did you really mean 'Ctrl'?
- **Assistant button** next to the search bar
<img
src="/images/assistant/assistant-button-light.png"
Expand All @@ -51,7 +51,7 @@

Both methods open a chat panel on the right side of your docs. Users can ask any question and the assistant will search your documentation for an answer. If no relevant information is found, the assistant will respond that it cannot answer the question.

## Making content AI ingestible

Check warning on line 54 in guides/assistant.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

guides/assistant.mdx#L54

Did you really mean 'ingestible'?

Structure your documentation to help the assistant provide accurate, relevant answers. Clear organization and comprehensive context benefit both human readers and AI understanding.

Expand All @@ -60,7 +60,7 @@
- Write descriptive headings for sections.
- Create a logical information hierarchy.
- Use consistent formatting across your docs.
- Include comprehensive metadata in page frontmatter.

Check warning on line 63 in guides/assistant.mdx

View check run for this annotation

Mintlify / Mintlify Validation (mintlify) - vale-spellcheck

guides/assistant.mdx#L63

Did you really mean 'frontmatter'?
- Break up long blocks of text into shorter paragraphs.
</Card>

Expand Down
2 changes: 1 addition & 1 deletion settings/ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: "circle-check"
---

<Info>
CI checks are available on [Growth and Enterprise plans](https://mintlify.com/pricing?ref=docs-ci), as an add-on for other plans, and only for GitHub.
[Pro and Enterprise plans](https://mintlify.com/pricing?ref=docs-ci) include CI checks for GitHub repositories.
</Info>

Use CI checks to lint your docs for errors and provide warnings before you deploy. CI checks are configured to run on commits to your configured deployment branch, or on pull requests against that branch.
Expand Down
4 changes: 2 additions & 2 deletions settings/preview-deployments.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ icon: "scan-eye"
---

<Info>
Preview deployments are available on [Growth and Enterprise plans](https://mintlify.com/pricing?ref=preview-deployments).
Preview deployments are available on [Enterprise plans](https://mintlify.com/pricing?ref=preview-deployments) and as an add-on for [Pro plans](https://mintlify.com/pricing?ref=preview-deployments).
</Info>

Preview deployments let you see how changes to your docs will look before merging to production. Each preview creates a shareable URL that updates automatically as you push new changes.
Expand All @@ -25,7 +25,7 @@ When you create a pull request, the Mintlify bot automatically adds a link to vi

### Manual previews

You can manually create a preview for any branch if you are on a Growth or Enterprise plan or have the preview deployment add-on.
You can manually create a preview for any branch if you have the preview deployment add-on or are on an Enterprise plan.

1. Go to your [dashboard](https://dashboard.mintlify.com/).
2. Select **Previews**.
Expand Down
2 changes: 1 addition & 1 deletion snippets/custom-subpath-gating.mdx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Info>
**Prerequisite**: Your primary domain (company.com) is hosted on {platform}
and you are on the [Pro, Growth, or Enterprise plan](https://mintlify.com/pricing).
and you are on the [Pro or Enterprise plan](https://mintlify.com/pricing).
</Info>