Skip to content

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

Merged
Merged
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
1 change: 1 addition & 0 deletions apps/portal/src/app/account/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- [Manage Teams](/account/teams/manage-teams)
- [Manage Team Members](/account/teams/manage-team-members)
- [Manage Billing](/account/billing/manage-billing)
- [Get Dedicated Support](/account/teams/get-dedicated-support)

## Projects
- [Overview](/account/api-keys)
Expand Down
4 changes: 4 additions & 0 deletions apps/portal/src/app/account/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ export const sidebar: SideBar = {
href: `${accountSlug}/billing/manage-billing`,
name: "Manage Billing",
},
{
name: "Get Dedicated Support",
href: `${accountSlug}/teams/get-dedicated-support`,
},
],
name: "Teams",
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import { Callout, Step, Steps, DocImage } from "@doc";

# Get Dedicated Support

Teams on the Scale or higher plan are eligible for dedicated support on Slack or other channels. Use this channel for direct communication and collaboration with the thirdweb team.

## Create a dedicated support channel

All team members will be sent instructions to join the channel via email.

<Steps>
<Step title="Navigate to the dashboard">
While logged in, select your team and navigate to the "Settings" page.
</Step>
<Step title="Select your support channel">
Select the channel you want to use for support (Slack, Telegram, etc.) and select "Create Support Channel".
</Step>
</Steps>

<Callout variant="info" title="Some channels may require several business days.">
Some platforms like Slack are instant, but others may require our team to manually invite your team.
</Callout>

## Updating the support channel

You will be able to invite other team members once you join the channel.

Ask our support team in the channel if you need the name, topic, or other settings updated.

## Removing the support channel

Your support channel will be automatically removed if you cancel or downgrade your plan subscription.
2 changes: 2 additions & 0 deletions packages/service-utils/src/core/usage.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { z } from "zod";

/** @deprecated - Use UsageV2Event instead */
export const usageEventSchema = z.object({
/**
* The following fields are optional.
Expand Down Expand Up @@ -81,4 +82,5 @@ export const usageEventSchema = z.object({
walletAddress: z.string().optional(),
walletType: z.string().optional(),
});
/** @deprecated - Use UsageV2Event instead */
export type UsageEvent = z.infer<typeof usageEventSchema>;
Loading