@supabase/gotrue-js 2.62.1 → 2.62.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.
@@ -87,7 +87,7 @@ export default class GoTrueAdminApi {
87
87
  * Delete a user. Requires a `service_role` key.
88
88
  *
89
89
  * @param id The user id you want to remove.
90
- * @param shouldSoftDelete If true, then the user will be soft-deleted from the auth schema.
90
+ * @param shouldSoftDelete If true, then the user will be soft-deleted (setting `deleted_at` to the current timestamp and disabling their account while preserving their data) from the auth schema.
91
91
  * Defaults to false for backward compatibility.
92
92
  *
93
93
  * This function should only be called on a server. Never expose your `service_role` key in the browser.
@@ -210,7 +210,7 @@ class GoTrueAdminApi {
210
210
  * Delete a user. Requires a `service_role` key.
211
211
  *
212
212
  * @param id The user id you want to remove.
213
- * @param shouldSoftDelete If true, then the user will be soft-deleted from the auth schema.
213
+ * @param shouldSoftDelete If true, then the user will be soft-deleted (setting `deleted_at` to the current timestamp and disabling their account while preserving their data) from the auth schema.
214
214
  * Defaults to false for backward compatibility.
215
215
  *
216
216
  * This function should only be called on a server. Never expose your `service_role` key in the browser.
@@ -87,7 +87,7 @@ export default class GoTrueAdminApi {
87
87
  * Delete a user. Requires a `service_role` key.
88
88
  *
89
89
  * @param id The user id you want to remove.
90
- * @param shouldSoftDelete If true, then the user will be soft-deleted from the auth schema.
90
+ * @param shouldSoftDelete If true, then the user will be soft-deleted (setting `deleted_at` to the current timestamp and disabling their account while preserving their data) from the auth schema.
91
91
  * Defaults to false for backward compatibility.
92
92
  *
93
93
  * This function should only be called on a server. Never expose your `service_role` key in the browser.
@@ -208,7 +208,7 @@ export default class GoTrueAdminApi {
208
208
  * Delete a user. Requires a `service_role` key.
209
209
  *
210
210
  * @param id The user id you want to remove.
211
- * @param shouldSoftDelete If true, then the user will be soft-deleted from the auth schema.
211
+ * @param shouldSoftDelete If true, then the user will be soft-deleted (setting `deleted_at` to the current timestamp and disabling their account while preserving their data) from the auth schema.
212
212
  * Defaults to false for backward compatibility.
213
213
  *
214
214
  * This function should only be called on a server. Never expose your `service_role` key in the browser.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@supabase/gotrue-js",
3
- "version": "2.62.1",
3
+ "version": "2.62.2",
4
4
  "private": false,
5
5
  "description": "Official client library for Supabase Auth",
6
6
  "keywords": [
@@ -260,7 +260,7 @@ export default class GoTrueAdminApi {
260
260
  * Delete a user. Requires a `service_role` key.
261
261
  *
262
262
  * @param id The user id you want to remove.
263
- * @param shouldSoftDelete If true, then the user will be soft-deleted from the auth schema.
263
+ * @param shouldSoftDelete If true, then the user will be soft-deleted (setting `deleted_at` to the current timestamp and disabling their account while preserving their data) from the auth schema.
264
264
  * Defaults to false for backward compatibility.
265
265
  *
266
266
  * This function should only be called on a server. Never expose your `service_role` key in the browser.