@supabase/postgrest-js 1.21.3 → 1.21.4

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.
Files changed (2) hide show
  1. package/package.json +6 -5
  2. package/src/version.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/postgrest-js",
3
- "version": "1.21.3",
3
+ "version": "1.21.4",
4
4
  "description": "Isomorphic PostgREST client",
5
5
  "keywords": [
6
6
  "postgrest",
@@ -38,10 +38,12 @@
38
38
  "docs": "typedoc src/index.ts --out docs/v2",
39
39
  "docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts",
40
40
  "test": "run-s format:check test:types db:clean db:run test:generated-types test:run db:clean && node test/smoke.cjs && node test/smoke.mjs",
41
+ "test:ci": "run-s format:check test:types:ci db:clean db:run test:generated-types test:run db:clean && node test/smoke.cjs && node test/smoke.mjs",
41
42
  "test:run": "jest --runInBand --coverage",
42
43
  "test:generated-types": "run-s db:generate-test-types && git diff --exit-code test/types.generated.ts || (echo '❌ Generated types are not up to date. Run npm run db:generate-test-types.' && exit 1)",
43
44
  "test:update": "run-s db:clean db:run db:generate-test-types && jest --runInBand --updateSnapshot && run-s db:clean",
44
- "test:types": "run-s build && tsd --files 'test/**/*.test*.ts'",
45
+ "test:types": "run-s build && tstyche",
46
+ "test:types:ci": "run-s build && tstyche --target '4.7,5.5,latest'",
45
47
  "test:types:watch": "chokidar 'src/**/*.ts' 'test/**/*.ts' -c 'npm run test:types'",
46
48
  "type-check": "tsc --noEmit --project tsconfig.json",
47
49
  "type-check:test": "tsc --noEmit --project tsconfig.test.json",
@@ -62,11 +64,10 @@
62
64
  "prettier": "^2.6.2",
63
65
  "rimraf": "^3.0.2",
64
66
  "semantic-release-plugin-update-version-in-files": "^1.1.0",
65
- "ts-expect": "^1.3.0",
66
67
  "ts-jest": "^28.0.3",
67
- "tsd": "^0.31.2",
68
+ "tstyche": "^4.3.0",
68
69
  "type-fest": "^4.32.0",
69
- "typedoc": "^0.22.16",
70
+ "typedoc": "^0.23.28",
70
71
  "typescript": "^4.5.5",
71
72
  "wait-for-localhost-cli": "^3.0.0",
72
73
  "zod": "^3.25.76"
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '1.21.3'
1
+ export const version = '1.21.4'