-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsidebars.js
72 lines (72 loc) · 2.06 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module.exports = {
mainSidebar: [
{
Introduction: ["introduction", "setup", "quickstart", "overview", "common-usage-examples", "consuming-webhooks"],
Basics: ["event-types", "app-portal", "api-keys", "documenting-webhooks"],
Advanced: ["incoming-webhooks", "sending-messages-with-bridge", "idempotency", "channels", "rate-limit", "retries", "retention", "transformations", "polling-endpoints", "connectors", "security"],
"Manage Your Account": ["account/environments", "account/org-members"],
},
{
Tutorials: ["tutorials/cli", "tutorials/event-type-schema", "tutorials/connectors"],
},
{
Integrations: [
"integrations/zapier",
"integrations/advanced-zapier",
"integrations/ngrok",
],
},
{
"Additional links": [
"play",
"get-help",
{
type: "link",
href: "https://api.svix.com/docs",
label: "API Reference",
},
],
},
],
consumersSidebar: [
"receiving/introduction",
{
"Using the App Portal": [
"receiving/using-app-portal/event-catalog",
"receiving/using-app-portal/adding-endpoints",
"receiving/using-app-portal/testing-events",
"receiving/using-app-portal/filtering-logs",
"receiving/using-app-portal/replaying-messages"
],
},
{
"Using Polling Endpoints": [
"receiving/using-app-portal/polling-endpoints",
],
},
{
"Using Ingest": ["receiving/receiving-with-ingest"]
},
{
"Verifying Webhooks": [
"receiving/verifying-payloads/why",
"receiving/verifying-payloads/how",
"receiving/verifying-payloads/receiving-with-bridge",
"receiving/verifying-payloads/how-manual",
"receiving/additional-authentication",
"receiving/source-ips",
],
"Additional links": [
{
type: "ref",
id: "introduction",
label: "Sending Webhooks",
},
{
type: "ref",
id: "get-help",
},
],
},
],
};