This repository was archived by the owner on Jul 9, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebarsApi.ts
More file actions
191 lines (187 loc) · 5.2 KB
/
sidebarsApi.ts
File metadata and controls
191 lines (187 loc) · 5.2 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// sidebarsApi.ts
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'index',
{
type: 'link',
href: 'https://sbl.dial.to',
label: 'Standard Blinks Library',
}
// {
// type: 'html',
// value: 'BLINKS API',
// className: 'sidebar-title',
// },
// 'blinks/dialect-api',
// {
// type: 'category',
// label: 'Blink Preview',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'blinks/get-v-1-blink-preview',
// label: 'Preview',
// className: 'api-method get',
// },
// ],
// },
// {
// type: 'category',
// label: 'Blink',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'blinks/get-v-1-blink',
// label: 'Blink',
// className: 'api-method get',
// },
// {
// type: 'doc',
// id: 'blinks/post-v-1-blink',
// label: 'Blink',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'blinks/post-v-1-blink-chain',
// label: 'Chain',
// className: 'api-method post',
// },
// ],
// },
// {
// type: 'category',
// label: 'Blink Data Table',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'blinks/get-v-1-blink-data-table',
// label: 'Data Table',
// className: 'api-method get',
// },
// ],
// },
// {
// type: 'category',
// label: 'Blink Lists',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'blinks/get-v-1-blink-lists-by-id',
// label: 'Lists',
// className: 'api-method get',
// },
// ],
// },
// {
// type: 'html',
// value: 'ALERTS API',
// className: 'sidebar-title',
// },
// 'alerts/dialect-alerts-api',
// {
// type: 'category',
// label: 'Application',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'alerts/post-v-2-by-app-id-send',
// label: 'Send Alert',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-by-app-id-send-batch',
// label: 'Send Batch',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/get-v-2-by-app-id-subscribers',
// label: 'Subscribers',
// className: 'api-method get',
// },
// ],
// },
// {
// type: 'category',
// label: 'Subscriber',
// collapsed: false,
// items: [
// {
// type: 'doc',
// id: 'alerts/get-v-2-auth',
// label: 'Auth',
// className: 'api-method get',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-auth-solana-prepare',
// label: 'Auth Prepare',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-auth-solana-verify',
// label: 'Auth Verify',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-auth-solana-tx-prepare',
// label: 'TX Prepare',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-auth-solana-tx-verify',
// label: 'TX Verify',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/get-v-2-history',
// label: 'History',
// className: 'api-method get',
// },
// {
// type: 'doc',
// id: 'alerts/get-v-2-history-summary',
// label: 'History Summary',
// className: 'api-method get',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-history-read',
// label: 'History Read',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-subscribe',
// label: 'Subscribe',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-push-subscribe',
// label: 'Push Subscribe',
// className: 'api-method post',
// },
// {
// type: 'doc',
// id: 'alerts/post-v-2-push-unsubscribe',
// label: 'Push Unsubscribe',
// className: 'api-method post',
// },
// ],
// },
],
};
export default sidebars;