Skip to content

Commit 6fd630a

Browse files
authored
docs: Add docs about dedicated support channel (#7399)
1 parent ff6e245 commit 6fd630a

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

apps/portal/src/app/account/page.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- [Manage Teams](/account/teams/manage-teams)
99
- [Manage Team Members](/account/teams/manage-team-members)
1010
- [Manage Billing](/account/billing/manage-billing)
11+
- [Get Dedicated Support](/account/teams/get-dedicated-support)
1112

1213
## Projects
1314
- [Overview](/account/api-keys)

apps/portal/src/app/account/sidebar.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ export const sidebar: SideBar = {
3131
href: `${accountSlug}/billing/manage-billing`,
3232
name: "Manage Billing",
3333
},
34+
{
35+
name: "Get Dedicated Support",
36+
href: `${accountSlug}/teams/get-dedicated-support`,
37+
},
3438
],
3539
name: "Teams",
3640
},
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { Callout, Step, Steps, DocImage } from "@doc";
2+
3+
# Get Dedicated Support
4+
5+
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.
6+
7+
## Create a dedicated support channel
8+
9+
All team members will be sent instructions to join the channel via email.
10+
11+
<Steps>
12+
<Step title="Navigate to the dashboard">
13+
While logged in, select your team and navigate to the "Settings" page.
14+
</Step>
15+
<Step title="Select your support channel">
16+
Select the channel you want to use for support (Slack, Telegram, etc.) and select "Create Support Channel".
17+
</Step>
18+
</Steps>
19+
20+
<Callout variant="info" title="Some channels may require several business days.">
21+
Some platforms like Slack are instant, but others may require our team to manually invite your team.
22+
</Callout>
23+
24+
## Updating the support channel
25+
26+
You will be able to invite other team members once you join the channel.
27+
28+
Ask our support team in the channel if you need the name, topic, or other settings updated.
29+
30+
## Removing the support channel
31+
32+
Your support channel will be automatically removed if you cancel or downgrade your plan subscription.

packages/service-utils/src/core/usage.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { z } from "zod";
22

3+
/** @deprecated - Use UsageV2Event instead */
34
export const usageEventSchema = z.object({
45
/**
56
* The following fields are optional.
@@ -81,4 +82,5 @@ export const usageEventSchema = z.object({
8182
walletAddress: z.string().optional(),
8283
walletType: z.string().optional(),
8384
});
85+
/** @deprecated - Use UsageV2Event instead */
8486
export type UsageEvent = z.infer<typeof usageEventSchema>;

0 commit comments

Comments
 (0)