-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsidebars.js
More file actions
162 lines (162 loc) · 3.91 KB
/
sidebars.js
File metadata and controls
162 lines (162 loc) · 3.91 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
module.exports = {
mainSidebar: [
{
Introduction: ["introduction", "quickstart", "overview", "common-usage-examples", "consuming-webhooks"],
Basics: ["event-types", "app-portal", "api-keys", "documenting-webhooks"],
"Delivery Information": [
"incoming-webhooks",
"email-notifications",
"retries",
"opentelemetry-streaming",
],
"Advanced Functionality": [
"idempotency",
"throttling",
"transformations",
{
type: 'category',
label: 'Connector Endpoints',
link: {
type: 'doc',
id: 'connectors/connectors',
},
items: [
"connectors/custom-connector",
]
},
"channels",
{
type: 'category',
label: 'Advanced Endpoint Types',
link: {
type: 'doc',
id: 'advanced-endpoints/intro',
},
items: [
'advanced-endpoints/polling-endpoints',
'advanced-endpoints/fifo-endpoints',
'advanced-endpoints/object-storage',
]
},
],
"Security & Compliance": [
"security",
"retention",
"endpoint-authentication",
"receiving/source-ips",
],
"Manage Your Account": ["account/environments", "account/org-members"],
},
{
Tutorials: [
"tutorials/cli",
"tutorials/api-webhook-management",
"tutorials/migrating-webhooks-to-svix",
"tutorials/event-type-schema",
"tutorials/connectors",
"sending-messages-with-bridge",
],
},
{
Integrations: [
"integrations/zapier",
"integrations/advanced-zapier",
"integrations/ngrok",
],
},
{
"Using Ingest": ["ingest/receiving-with-ingest"]
},
{
"Svix Play": ["play"]
},
{
"Additional links": [
"get-help",
{
type: "link",
href: "https://api.svix.com/docs",
label: "API Reference",
},
"faq",
],
},
],
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",
],
},
{
"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",
},
],
},
],
streamSidebar: [
"stream/introduction",
{
"Event Types": [
"stream/event-types/introduction",
],
},
{
"Sinks": [
'stream/sinks/introduction',
'stream/sinks/http',
'stream/sinks/otel_trace',
'stream/sinks/s3',
'stream/sinks/gcs',
'stream/sinks/azure_blob',
'stream/sinks/poller',
],
},
{
"Stream Portal": [
'stream/portal/intro'
],
},
{
"Additional links": [
"get-help",
{
type: "link",
href: "https://api.svix.com/docs#tag/Stream",
label: "API Reference",
}
],
},
],
ingestSidebar: [
{
"Using Ingest": ["ingest/receiving-with-ingest", "ingest/transformations", "ingest/source-errors"]
},
],
};