files.com 1.0.261 → 1.0.263

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.261
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
@@ -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 `history`.
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 `history`.
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 `history`.
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.