-
Notifications
You must be signed in to change notification settings - Fork 557
docs: Add docs about dedicated support channel #7399
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
docs: Add docs about dedicated support channel #7399
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
WalkthroughA new "Get Dedicated Support" feature was integrated into the portal app, including a sidebar and navigation link under "Teams" and a detailed documentation page. Additionally, deprecation annotations were added to specific usage event schema exports in the service utilities package. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant PortalApp
participant DocsPage
User->>PortalApp: Navigate to Account > Teams
PortalApp->>User: Display sidebar with "Get Dedicated Support" link
User->>PortalApp: Click "Get Dedicated Support"
PortalApp->>DocsPage: Render dedicated support documentation
DocsPage->>User: Show instructions for creating and managing support channel
Possibly related PRs
Suggested reviewers
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
How to use the Graphite Merge QueueAdd either label to this PR to merge it via the merge queue:
You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7399 +/- ##
=======================================
Coverage 52.06% 52.06%
=======================================
Files 945 945
Lines 63565 63565
Branches 4208 4208
=======================================
Hits 33098 33098
Misses 30361 30361
Partials 106 106
🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
apps/portal/src/app/account/teams/get-dedicated-support/page.mdx (1)
1-1
: Remove unused import
DocImage
is imported but never used in this MDX page. Removing it will clean up unused code.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (4)
apps/portal/src/app/account/page.mdx
(1 hunks)apps/portal/src/app/account/sidebar.tsx
(1 hunks)apps/portal/src/app/account/teams/get-dedicated-support/page.mdx
(1 hunks)packages/service-utils/src/core/usage.ts
(2 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (3)
- GitHub Check: Size
- GitHub Check: Lint Packages
- GitHub Check: Analyze (javascript)
🔇 Additional comments (3)
apps/portal/src/app/account/sidebar.tsx (1)
34-37
: Add "Get Dedicated Support" link
The new sidebar item under the "Teams" section correctly points to/account/teams/get-dedicated-support
and uses consistent naming.packages/service-utils/src/core/usage.ts (1)
3-4
: MarkusageEventSchema
andUsageEvent
as deprecated
The JSDoc@deprecated
annotations above both the schema and the inferred type correctly signal the transition toUsageV2Event
.Also applies to: 85-86
apps/portal/src/app/account/page.mdx (1)
10-11
: Update Teams navigation
Removed the "Manage Billing" entry and added "Get Dedicated Support" under the "Teams" section. The link text and path align with the new documentation page.
size-limit report 📦
|
[Portal] Feature: Add dedicated support page for Scale plan teams
Notes for the reviewer
Added a new page for Scale plan teams to create and manage dedicated support channels. This includes:
How to test
Navigate to the account section and verify the new support page link appears in both the sidebar and main account page. Check that the dedicated support page displays correctly with proper formatting of steps and callouts.
Summary by CodeRabbit
New Features
Documentation
Refactor