@supabase/postgrest-js 2.74.1-canary.0 → 2.74.1-canary.2

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.
@@ -1,2 +1,2 @@
1
- export declare const version = "2.74.1-canary.0";
1
+ export declare const version = "2.74.1-canary.2";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -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.74.1-canary.0';
10
+ exports.version = '2.74.1-canary.2';
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.74.1-canary.0",
3
+ "version": "2.74.1-canary.2",
4
4
  "description": "Isomorphic PostgREST client",
5
5
  "keywords": [
6
6
  "postgrest",
@@ -34,8 +34,8 @@
34
34
  },
35
35
  "scripts": {
36
36
  "clean": "rimraf dist docs/v2",
37
- "format": "prettier --write \"{src,test}/**/*.ts\" wrapper.mjs",
38
- "format:check": "prettier --check \"{src,test}/**/*.ts\"",
37
+ "format": "node scripts/format.js",
38
+ "format:check": "node scripts/format.js check",
39
39
  "build": "npm run clean && npm run build:cjs && npm run build:esm",
40
40
  "build:cjs": "tsc -p tsconfig.json",
41
41
  "build:esm": "cpy wrapper.mjs dist/esm/",
@@ -53,7 +53,7 @@
53
53
  "type-check:test": "tsc --noEmit --project tsconfig.test.json",
54
54
  "db:clean": "cd test/db && docker compose down --volumes",
55
55
  "db:run": "cd test/db && docker compose up --detach && wait-for-localhost 3000",
56
- "db:generate-test-types": "cd test/db && docker compose up --detach && wait-for-localhost 8080 && curl --location 'http://0.0.0.0:8080/generators/typescript?included_schemas=public,personal&detect_one_to_one_relationships=true' > ../types.generated.ts && node ../scripts/update-json-type.js && prettier --write ../types.generated.ts"
56
+ "db:generate-test-types": "cd test/db && docker compose up --detach && wait-for-localhost 8080 && curl --location 'http://0.0.0.0:8080/generators/typescript?included_schemas=public,personal&detect_one_to_one_relationships=true' > ../types.generated.ts && node ../scripts/update-json-type.js && cd ../../ && npm run format"
57
57
  },
58
58
  "dependencies": {
59
59
  "@supabase/node-fetch": "2.6.15"
@@ -67,6 +67,7 @@
67
67
  "tstyche": "^4.3.0",
68
68
  "type-fest": "^4.32.0",
69
69
  "wait-for-localhost-cli": "^3.0.0",
70
- "zod": "^3.25.76"
70
+ "zod": "^3.25.76",
71
+ "prettier": "^2.6.2"
71
72
  }
72
73
  }
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.74.1-canary.0'
7
+ export const version = '2.74.1-canary.2'