@supabase/auth-js 2.67.3 → 2.67.4-rc.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.
@@ -361,7 +361,7 @@ export interface AdminUserAttributes extends Omit<UserAttributes, 'data'> {
361
361
  *
362
362
  * Allows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.
363
363
  *
364
- * Supports bcrypt and argon2 password hashes.
364
+ * Supports bcrypt, scrypt (firebase), and argon2 password hashes.
365
365
  */
366
366
  password_hash?: string;
367
367
  /**
@@ -1,2 +1,2 @@
1
- export declare const version = "2.67.3";
1
+ export declare const version = "2.67.4-rc.2";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAA"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,gBAAgB,CAAA"}
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '2.67.3';
4
+ exports.version = '2.67.4-rc.2';
5
5
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,aAAa,CAAA"}
@@ -361,7 +361,7 @@ export interface AdminUserAttributes extends Omit<UserAttributes, 'data'> {
361
361
  *
362
362
  * Allows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.
363
363
  *
364
- * Supports bcrypt and argon2 password hashes.
364
+ * Supports bcrypt, scrypt (firebase), and argon2 password hashes.
365
365
  */
366
366
  password_hash?: string;
367
367
  /**
@@ -1,2 +1,2 @@
1
- export declare const version = "2.67.3";
1
+ export declare const version = "2.67.4-rc.2";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAA"}
1
+ {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,gBAAgB,CAAA"}
@@ -1,2 +1,2 @@
1
- export const version = '2.67.3';
1
+ export const version = '2.67.4-rc.2';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAA"}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../src/lib/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,aAAa,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/auth-js",
3
- "version": "2.67.3",
3
+ "version": "2.67.4-rc.2",
4
4
  "private": false,
5
5
  "description": "Official client library for Supabase Auth",
6
6
  "keywords": [
@@ -30,7 +30,7 @@
30
30
  "build:module": "tsc -p tsconfig.module.json",
31
31
  "lint": "eslint ./src/**/* test/**/*.test.ts",
32
32
  "test": "run-s test:clean test:infra test:suite test:clean",
33
- "test:suite": "jest --runInBand",
33
+ "test:suite": "jest --runInBand --coverage",
34
34
  "test:infra": "cd infra && docker compose down && docker compose pull && docker compose up -d && sleep 30",
35
35
  "test:clean": "cd infra && docker compose down",
36
36
  "docs": "typedoc src/index.ts --out docs/v2 --excludePrivate --excludeProtected",
package/src/lib/types.ts CHANGED
@@ -449,7 +449,7 @@ export interface AdminUserAttributes extends Omit<UserAttributes, 'data'> {
449
449
  *
450
450
  * Allows you to specify a password hash for the user. This is useful for migrating a user's password hash from another service.
451
451
  *
452
- * Supports bcrypt and argon2 password hashes.
452
+ * Supports bcrypt, scrypt (firebase), and argon2 password hashes.
453
453
  */
454
454
  password_hash?: string
455
455
 
@@ -1 +1 @@
1
- export const version = '2.67.3'
1
+ export const version = '2.67.4-rc.2'