files.com 1.0.261 → 1.0.263
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/_VERSION +1 -1
- package/docs/Errors.md +1 -0
- package/docs/models/User.md +3 -3
- package/lib/Errors.js +734 -720
- package/lib/models/User.js +3 -3
- package/package.json +1 -1
- package/src/Errors.js +1 -0
- package/src/models/User.js +3 -3
    
        package/_VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1.0. | 
| 1 | 
            +
            1.0.263
         | 
    
        package/docs/Errors.md
    CHANGED
    
    | @@ -58,6 +58,7 @@ These errors are derived from the error groups listed above. | |
| 58 58 | 
             
            ### BadRequest_InvalidCursorError
         | 
| 59 59 | 
             
            ### BadRequest_InvalidCursorTypeForSortError
         | 
| 60 60 | 
             
            ### BadRequest_InvalidEtagsError
         | 
| 61 | 
            +
            ### BadRequest_InvalidFilterAliasCombinationError
         | 
| 61 62 | 
             
            ### BadRequest_InvalidFilterCombinationError
         | 
| 62 63 | 
             
            ### BadRequest_InvalidFilterFieldError
         | 
| 63 64 | 
             
            ### BadRequest_InvalidFilterParamError
         | 
    
        package/docs/models/User.md
    CHANGED
    
    | @@ -131,7 +131,7 @@ | |
| 131 131 | 
             
            * `avatar_delete` (boolean): If true, the avatar will be deleted.
         | 
| 132 132 | 
             
            * `change_password` (string): Used for changing a password on an existing user.
         | 
| 133 133 | 
             
            * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
         | 
| 134 | 
            -
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, or ` | 
| 134 | 
            +
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
         | 
| 135 135 | 
             
            * `group_id` (int64): Group ID to associate this user with.
         | 
| 136 136 | 
             
            * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
         | 
| 137 137 | 
             
            * `password` (string): User password.
         | 
| @@ -237,7 +237,7 @@ await User.create({ | |
| 237 237 | 
             
            * `change_password` (string): Used for changing a password on an existing user.
         | 
| 238 238 | 
             
            * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
         | 
| 239 239 | 
             
            * `email` (string): User's email.
         | 
| 240 | 
            -
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, or ` | 
| 240 | 
            +
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
         | 
| 241 241 | 
             
            * `group_id` (int64): Group ID to associate this user with.
         | 
| 242 242 | 
             
            * `group_ids` (string): A list of group ids to associate this user with.  Comma delimited.
         | 
| 243 243 | 
             
            * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
         | 
| @@ -378,7 +378,7 @@ await user.update({ | |
| 378 378 | 
             
            * `change_password` (string): Used for changing a password on an existing user.
         | 
| 379 379 | 
             
            * `change_password_confirmation` (string): Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
         | 
| 380 380 | 
             
            * `email` (string): User's email.
         | 
| 381 | 
            -
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, or ` | 
| 381 | 
            +
            * `grant_permission` (string): Permission to grant on the user root.  Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
         | 
| 382 382 | 
             
            * `group_id` (int64): Group ID to associate this user with.
         | 
| 383 383 | 
             
            * `group_ids` (string): A list of group ids to associate this user with.  Comma delimited.
         | 
| 384 384 | 
             
            * `imported_password_hash` (string): Pre-calculated hash of the user's password. If supplied, this will be used to authenticate the user on first login. Supported hash menthods are MD5, SHA1, and SHA256.
         |