@supabase/gotrue-js 2.72.0-rc.7 → 2.72.0-rc.8
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/dist/main/GoTrueClient.d.ts +1 -1
- package/dist/main/GoTrueClient.js +1 -1
- package/dist/main/lib/version.d.ts +1 -1
- package/dist/main/lib/version.js +1 -1
- package/dist/module/GoTrueClient.d.ts +1 -1
- package/dist/module/GoTrueClient.js +1 -1
- package/dist/module/lib/version.d.ts +1 -1
- package/dist/module/lib/version.js +1 -1
- package/package.json +1 -1
- package/src/GoTrueClient.ts +1 -1
- package/src/lib/version.ts +1 -1
|
@@ -48,7 +48,7 @@ export default class GoTrueClient {
|
|
|
48
48
|
/**
|
|
49
49
|
* Keeps track of the async client initialization.
|
|
50
50
|
* When null or not yet resolved the auth state is `unknown`
|
|
51
|
-
* Once resolved the
|
|
51
|
+
* Once resolved the auth state is known and it's safe to call any further client methods.
|
|
52
52
|
* Keep extra care to never reject or throw uncaught errors
|
|
53
53
|
*/
|
|
54
54
|
protected initializePromise: Promise<InitializeResult> | null;
|
|
@@ -56,7 +56,7 @@ class GoTrueClient {
|
|
|
56
56
|
/**
|
|
57
57
|
* Keeps track of the async client initialization.
|
|
58
58
|
* When null or not yet resolved the auth state is `unknown`
|
|
59
|
-
* Once resolved the
|
|
59
|
+
* Once resolved the auth state is known and it's safe to call any further client methods.
|
|
60
60
|
* Keep extra care to never reject or throw uncaught errors
|
|
61
61
|
*/
|
|
62
62
|
this.initializePromise = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.72.0-rc.
|
|
1
|
+
export declare const version = "2.72.0-rc.8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/main/lib/version.js
CHANGED
|
@@ -48,7 +48,7 @@ export default class GoTrueClient {
|
|
|
48
48
|
/**
|
|
49
49
|
* Keeps track of the async client initialization.
|
|
50
50
|
* When null or not yet resolved the auth state is `unknown`
|
|
51
|
-
* Once resolved the
|
|
51
|
+
* Once resolved the auth state is known and it's safe to call any further client methods.
|
|
52
52
|
* Keep extra care to never reject or throw uncaught errors
|
|
53
53
|
*/
|
|
54
54
|
protected initializePromise: Promise<InitializeResult> | null;
|
|
@@ -51,7 +51,7 @@ export default class GoTrueClient {
|
|
|
51
51
|
/**
|
|
52
52
|
* Keeps track of the async client initialization.
|
|
53
53
|
* When null or not yet resolved the auth state is `unknown`
|
|
54
|
-
* Once resolved the
|
|
54
|
+
* Once resolved the auth state is known and it's safe to call any further client methods.
|
|
55
55
|
* Keep extra care to never reject or throw uncaught errors
|
|
56
56
|
*/
|
|
57
57
|
this.initializePromise = null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const version = "2.72.0-rc.
|
|
1
|
+
export declare const version = "2.72.0-rc.8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '2.72.0-rc.
|
|
1
|
+
export const version = '2.72.0-rc.8';
|
|
2
2
|
//# sourceMappingURL=version.js.map
|
package/package.json
CHANGED
package/src/GoTrueClient.ts
CHANGED
|
@@ -210,7 +210,7 @@ export default class GoTrueClient {
|
|
|
210
210
|
/**
|
|
211
211
|
* Keeps track of the async client initialization.
|
|
212
212
|
* When null or not yet resolved the auth state is `unknown`
|
|
213
|
-
* Once resolved the
|
|
213
|
+
* Once resolved the auth state is known and it's safe to call any further client methods.
|
|
214
214
|
* Keep extra care to never reject or throw uncaught errors
|
|
215
215
|
*/
|
|
216
216
|
protected initializePromise: Promise<InitializeResult> | null = null
|
package/src/lib/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '2.72.0-rc.
|
|
1
|
+
export const version = '2.72.0-rc.8'
|