@inweb/client 27.2.2 → 27.3.0

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.
@@ -230,7 +230,7 @@ export declare class Client extends EventEmitter2<ClientEventMap> {
230
230
  * exception will be thrown.
231
231
  *
232
232
  * @param email - User email. Cannot be empty. Must be unique within the server.
233
- * @param password - User password. Cannot be empty. Password can only contain latin letters (a-z,
233
+ * @param password - User password. Cannot be empty. Password can only contain Latin letters (a-z,
234
234
  * A-Z), numbers (0-9), and special characters (~!@#$%^&*()_-+={}[]<>|/'":;.,?).
235
235
  * @param params - Additional user data.
236
236
  * @param params.isAdmin - `true` if user is an administrator.
package/lib/Api/User.d.ts CHANGED
@@ -218,7 +218,8 @@ export declare class User extends Endpoint {
218
218
  *
219
219
  * To change their password, non-administrator users must specify their old password.
220
220
  *
221
- * @param newPassword - New user password.
221
+ * @param newPassword - New user password. Cannot be empty. Password can only contain Latin letters
222
+ * (a-z, A-Z), numbers (0-9), and special characters (~!@#$%^&*()_-+={}[]<>|/'":;.,?).
222
223
  * @param oldPassword - Old user password. Only required for non-administrator users to change their
223
224
  * password.
224
225
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inweb/client",
3
- "version": "27.2.2",
3
+ "version": "27.3.0",
4
4
  "description": "JavaScript REST API client for the Open Cloud Server",
5
5
  "homepage": "https://cloud.opendesign.com/docs/index.html",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -26,7 +26,7 @@
26
26
  "docs": "typedoc"
27
27
  },
28
28
  "dependencies": {
29
- "@inweb/eventemitter2": "~27.2.2"
29
+ "@inweb/eventemitter2": "~27.3.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "fflate": "^0.8.2"
package/src/Api/Client.ts CHANGED
@@ -403,7 +403,7 @@ export class Client extends EventEmitter2<ClientEventMap> {
403
403
  * exception will be thrown.
404
404
  *
405
405
  * @param email - User email. Cannot be empty. Must be unique within the server.
406
- * @param password - User password. Cannot be empty. Password can only contain latin letters (a-z,
406
+ * @param password - User password. Cannot be empty. Password can only contain Latin letters (a-z,
407
407
  * A-Z), numbers (0-9), and special characters (~!@#$%^&*()_-+={}[]<>|/'":;.,?).
408
408
  * @param params - Additional user data.
409
409
  * @param params.isAdmin - `true` if user is an administrator.
package/src/Api/User.ts CHANGED
@@ -429,7 +429,8 @@ export class User extends Endpoint {
429
429
  *
430
430
  * To change their password, non-administrator users must specify their old password.
431
431
  *
432
- * @param newPassword - New user password.
432
+ * @param newPassword - New user password. Cannot be empty. Password can only contain Latin letters
433
+ * (a-z, A-Z), numbers (0-9), and special characters (~!@#$%^&*()_-+={}[]<>|/'":;.,?).
433
434
  * @param oldPassword - Old user password. Only required for non-administrator users to change their
434
435
  * password.
435
436
  */