files.com 1.0.262 → 1.0.264
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/models/Bundle.md +1 -1
- package/docs/models/User.md +3 -3
- package/lib/models/Bundle.js +1 -1
- package/lib/models/User.js +3 -3
- package/package.json +1 -1
- package/src/models/Bundle.js +1 -1
- package/src/models/User.js +3 -3
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.264
|
package/docs/models/Bundle.md
CHANGED
@@ -68,7 +68,7 @@
|
|
68
68
|
* `watermark_attachment` (Image): Preview watermark image applied to all bundle items.
|
69
69
|
* `watermark_value` (object): Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
70
70
|
* `has_inbox` (boolean): Does this bundle have an associated inbox?
|
71
|
-
* `paths` (array): A list of paths in this bundle
|
71
|
+
* `paths` (array): A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
|
72
72
|
* `password` (string): Password for this bundle.
|
73
73
|
* `form_field_set_id` (int64): Id of Form Field Set to use with this bundle
|
74
74
|
* `watermark_attachment_file` (file): Preview watermark image applied to all bundle items.
|
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.
|
package/lib/models/Bundle.js
CHANGED
@@ -224,7 +224,7 @@ var Bundle = /*#__PURE__*/(0, _createClass2.default)(function Bundle() {
|
|
224
224
|
(0, _defineProperty2.default)(this, "setHasInbox", function (value) {
|
225
225
|
_this.attributes.has_inbox = value;
|
226
226
|
});
|
227
|
-
// array # A list of paths in this bundle
|
227
|
+
// array # A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
|
228
228
|
(0, _defineProperty2.default)(this, "getPaths", function () {
|
229
229
|
return _this.attributes.paths;
|
230
230
|
});
|
package/lib/models/User.js
CHANGED
@@ -469,7 +469,7 @@ var User = /*#__PURE__*/(0, _createClass2.default)(function User() {
|
|
469
469
|
(0, _defineProperty2.default)(this, "setChangePasswordConfirmation", function (value) {
|
470
470
|
_this.attributes.change_password_confirmation = value;
|
471
471
|
});
|
472
|
-
// string # Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
472
|
+
// string # Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
473
473
|
(0, _defineProperty2.default)(this, "getGrantPermission", function () {
|
474
474
|
return _this.attributes.grant_permission;
|
475
475
|
});
|
@@ -676,7 +676,7 @@ var User = /*#__PURE__*/(0, _createClass2.default)(function User() {
|
|
676
676
|
// change_password - string - Used for changing a password on an existing user.
|
677
677
|
// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
|
678
678
|
// email - string - User's email.
|
679
|
-
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
679
|
+
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
680
680
|
// group_id - int64 - Group ID to associate this user with.
|
681
681
|
// group_ids - string - A list of group ids to associate this user with. Comma delimited.
|
682
682
|
// 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.
|
@@ -1125,7 +1125,7 @@ var User = /*#__PURE__*/(0, _createClass2.default)(function User() {
|
|
1125
1125
|
// change_password - string - Used for changing a password on an existing user.
|
1126
1126
|
// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
|
1127
1127
|
// email - string - User's email.
|
1128
|
-
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
1128
|
+
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
1129
1129
|
// group_id - int64 - Group ID to associate this user with.
|
1130
1130
|
// group_ids - string - A list of group ids to associate this user with. Comma delimited.
|
1131
1131
|
// 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.
|
package/package.json
CHANGED
package/src/models/Bundle.js
CHANGED
@@ -215,7 +215,7 @@ class Bundle {
|
|
215
215
|
this.attributes.has_inbox = value
|
216
216
|
}
|
217
217
|
|
218
|
-
// array # A list of paths in this bundle
|
218
|
+
// array # A list of paths in this bundle. For performance reasons, this is not provided when listing bundles.
|
219
219
|
getPaths = () => this.attributes.paths
|
220
220
|
|
221
221
|
setPaths = value => {
|
package/src/models/User.js
CHANGED
@@ -460,7 +460,7 @@ class User {
|
|
460
460
|
this.attributes.change_password_confirmation = value
|
461
461
|
}
|
462
462
|
|
463
|
-
// string # Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
463
|
+
// string # Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
464
464
|
getGrantPermission = () => this.attributes.grant_permission
|
465
465
|
|
466
466
|
setGrantPermission = value => {
|
@@ -593,7 +593,7 @@ class User {
|
|
593
593
|
// change_password - string - Used for changing a password on an existing user.
|
594
594
|
// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
|
595
595
|
// email - string - User's email.
|
596
|
-
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
596
|
+
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
597
597
|
// group_id - int64 - Group ID to associate this user with.
|
598
598
|
// group_ids - string - A list of group ids to associate this user with. Comma delimited.
|
599
599
|
// 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.
|
@@ -849,7 +849,7 @@ class User {
|
|
849
849
|
// change_password - string - Used for changing a password on an existing user.
|
850
850
|
// change_password_confirmation - string - Optional, but if provided, we will ensure that it matches the value sent in `change_password`.
|
851
851
|
// email - string - User's email.
|
852
|
-
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, or `
|
852
|
+
// grant_permission - string - Permission to grant on the user root. Can be blank or `full`, `read`, `write`, `list`, `read+write`, or `list+write`
|
853
853
|
// group_id - int64 - Group ID to associate this user with.
|
854
854
|
// group_ids - string - A list of group ids to associate this user with. Comma delimited.
|
855
855
|
// 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.
|