@supabase/postgrest-js 2.75.1-canary.3 → 2.75.1-canary.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +29 -8
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/package.json +1 -2
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,34 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
<br />
|
|
2
|
+
<p align="center">
|
|
3
|
+
<a href="https://supabase.io">
|
|
4
|
+
<picture>
|
|
5
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/supabase/supabase/master/packages/common/assets/images/supabase-logo-wordmark--dark.svg">
|
|
6
|
+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/supabase/supabase/master/packages/common/assets/images/supabase-logo-wordmark--light.svg">
|
|
7
|
+
<img alt="Supabase Logo" width="300" src="https://raw.githubusercontent.com/supabase/supabase/master/packages/common/assets/images/logo-preview.jpg">
|
|
8
|
+
</picture>
|
|
9
|
+
</a>
|
|
10
|
+
|
|
11
|
+
<h1 align="center">Supabase PostgREST JS SDK</h1>
|
|
12
|
+
|
|
13
|
+
<h3 align="center">Isomorphic JavaScript SDK for <a href="https://postgrest.org">PostgREST</a> with an ORM-like interface.</h3>
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<a href="https://supabase.com/docs/guides/database">Guides</a>
|
|
17
|
+
·
|
|
18
|
+
<a href="https://supabase.com/docs/reference/javascript/select">Reference Docs</a>
|
|
19
|
+
·
|
|
20
|
+
<a href="https://supabase.github.io/supabase-js/postgrest-js/v2/spec.json">TypeDoc</a>
|
|
21
|
+
</p>
|
|
22
|
+
</p>
|
|
23
|
+
|
|
24
|
+
<div align="center">
|
|
25
|
+
|
|
26
|
+
[](https://github.com/supabase/supabase-js/actions?query=branch%3Amaster)
|
|
4
27
|
[](https://www.npmjs.com/package/@supabase/postgrest-js)
|
|
5
|
-
[](#license)
|
|
6
29
|
[](https://pkg.pr.new/~/supabase/postgrest-js)
|
|
7
30
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Full documentation can be found [here](https://supabase.github.io/supabase-js/postgrest-js/v2/spec.json).
|
|
31
|
+
</div>
|
|
11
32
|
|
|
12
33
|
### Quick start
|
|
13
34
|
|
|
@@ -167,7 +188,7 @@ It performs these steps:
|
|
|
167
188
|
- **Port 3000** - PostgREST server (API)
|
|
168
189
|
- **Port 8080** - Database schema endpoint (for type generation)
|
|
169
190
|
|
|
170
|
-
**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the
|
|
191
|
+
**Note:** Unlike a full Supabase instance, this uses a minimal PostgREST setup specifically for testing the SDK.
|
|
171
192
|
|
|
172
193
|
### Contributing
|
|
173
194
|
|
package/dist/cjs/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.75.1-canary.
|
|
1
|
+
export declare const version = "2.75.1-canary.5";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/cjs/version.js
CHANGED
|
@@ -7,5 +7,5 @@ exports.version = void 0;
|
|
|
7
7
|
// - Debugging and support (identifying which version is running)
|
|
8
8
|
// - Telemetry and logging (version reporting in errors/analytics)
|
|
9
9
|
// - Ensuring build artifacts match the published package version
|
|
10
|
-
exports.version = '2.75.1-canary.
|
|
10
|
+
exports.version = '2.75.1-canary.5';
|
|
11
11
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@supabase/postgrest-js",
|
|
3
|
-
"version": "2.75.1-canary.
|
|
3
|
+
"version": "2.75.1-canary.5",
|
|
4
4
|
"description": "Isomorphic PostgREST client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postgrest",
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"format": "node scripts/format.js",
|
|
38
38
|
"format:check": "node scripts/format.js check",
|
|
39
39
|
"build": "npm run clean && npm run build:cjs && npm run build:esm",
|
|
40
|
-
"postbuild": "cp -rf ./src/types/common ../supabase-js/src/lib/rest/types/common",
|
|
41
40
|
"build:cjs": "tsc -p tsconfig.json",
|
|
42
41
|
"build:esm": "cpy wrapper.mjs dist/esm/",
|
|
43
42
|
"docs": "typedoc src/index.ts --out docs/v2",
|
package/src/version.ts
CHANGED
|
@@ -4,4 +4,4 @@
|
|
|
4
4
|
// - Debugging and support (identifying which version is running)
|
|
5
5
|
// - Telemetry and logging (version reporting in errors/analytics)
|
|
6
6
|
// - Ensuring build artifacts match the published package version
|
|
7
|
-
export const version = '2.75.1-canary.
|
|
7
|
+
export const version = '2.75.1-canary.5'
|