Skip to content

Commit afcc59f

Browse files
committed
docs: update API documentation 1ffef35
0 parents  commit afcc59f

8 files changed

Lines changed: 248467 additions & 0 deletions

File tree

.nojekyll

Whitespace-only changes.

auth-js/v2/spec.json

Lines changed: 47720 additions & 0 deletions
Large diffs are not rendered by default.

functions-js/v2/spec.json

Lines changed: 3917 additions & 0 deletions
Large diffs are not rendered by default.

index.html

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Supabase JS Libraries Documentation</title>
5+
<style>
6+
body {
7+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
8+
max-width: 800px;
9+
margin: 50px auto;
10+
padding: 20px;
11+
line-height: 1.6;
12+
}
13+
h1 {
14+
color: #333;
15+
border-bottom: 2px solid #3ecf8e;
16+
padding-bottom: 10px;
17+
}
18+
ul {
19+
list-style: none;
20+
padding: 0;
21+
}
22+
li {
23+
margin: 10px 0;
24+
}
25+
a {
26+
color: #3ecf8e;
27+
text-decoration: none;
28+
font-size: 18px;
29+
}
30+
a:hover {
31+
text-decoration: underline;
32+
}
33+
.description {
34+
color: #666;
35+
font-size: 14px;
36+
margin-top: 5px;
37+
}
38+
</style>
39+
</head>
40+
<body>
41+
<h1>Supabase JavaScript Libraries - API Documentation</h1>
42+
<p>TypeScript/JavaScript API documentation for all Supabase JS SDKs.</p>
43+
44+
<h2>Available Documentation:</h2>
45+
<ul>
46+
<li>
47+
<a href="auth-js/v2/spec.json">@supabase/auth-js</a>
48+
<div class="description">Authentication SDK</div>
49+
</li>
50+
<li>
51+
<a href="functions-js/v2/spec.json">@supabase/functions-js</a>
52+
<div class="description">Edge Functions SDK</div>
53+
</li>
54+
<li>
55+
<a href="postgrest-js/v2/spec.json">@supabase/postgrest-js</a>
56+
<div class="description">PostgREST database SDK</div>
57+
</li>
58+
<li>
59+
<a href="realtime-js/v2/spec.json">@supabase/realtime-js</a>
60+
<div class="description">Realtime subscriptions SDK</div>
61+
</li>
62+
<li>
63+
<a href="storage-js/v2/spec.json">@supabase/storage-js</a>
64+
<div class="description">File storage SDK</div>
65+
</li>
66+
<li>
67+
<a href="supabase-js/v2/spec.json">@supabase/supabase-js</a>
68+
<div class="description">Main isomorphic SDK combining all SDKs</div>
69+
</li>
70+
</ul>
71+
72+
<hr style="margin-top: 50px; border: 1px solid #eee;">
73+
<p style="color: #999; font-size: 12px;">
74+
Generated from the <a href="https://github.com/supabase/supabase-js">supabase-js</a> monorepo.
75+
</p>
76+
</body>
77+
</html>

0 commit comments

Comments
 (0)