files.com 1.2.126 → 1.2.127
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/Permission.md +5 -5
- package/lib/Files.js +1 -1
- package/lib/models/Permission.js +5 -5
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/Permission.js +5 -5
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.127
|
@@ -16,13 +16,13 @@
|
|
16
16
|
```
|
17
17
|
|
18
18
|
* `id` (int64): Permission ID
|
19
|
-
* `path` (string):
|
19
|
+
* `path` (string): Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
20
20
|
* `user_id` (int64): User ID
|
21
|
-
* `username` (string):
|
21
|
+
* `username` (string): Username (if applicable)
|
22
22
|
* `group_id` (int64): Group ID
|
23
|
-
* `group_name` (string): Group name if applicable
|
24
|
-
* `permission` (string): Permission type
|
25
|
-
* `recursive` (boolean):
|
23
|
+
* `group_name` (string): Group name (if applicable)
|
24
|
+
* `permission` (string): Permission type. See the table referenced in the documentation for an explanation of each permission.
|
25
|
+
* `recursive` (boolean): Recursive: does this permission apply to subfolders?
|
26
26
|
|
27
27
|
---
|
28
28
|
|
package/lib/Files.js
CHANGED
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
|
|
11
11
|
var apiKey;
|
12
12
|
var baseUrl = 'https://app.files.com';
|
13
13
|
var sessionId = null;
|
14
|
-
var version = '1.2.
|
14
|
+
var version = '1.2.127';
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
17
17
|
var debugRequest = false;
|
package/lib/models/Permission.js
CHANGED
@@ -40,7 +40,7 @@ var Permission = /*#__PURE__*/(0, _createClass2.default)(function Permission() {
|
|
40
40
|
(0, _defineProperty2.default)(this, "setId", function (value) {
|
41
41
|
_this.attributes.id = value;
|
42
42
|
});
|
43
|
-
// string #
|
43
|
+
// string # Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
44
44
|
(0, _defineProperty2.default)(this, "getPath", function () {
|
45
45
|
return _this.attributes.path;
|
46
46
|
});
|
@@ -54,7 +54,7 @@ var Permission = /*#__PURE__*/(0, _createClass2.default)(function Permission() {
|
|
54
54
|
(0, _defineProperty2.default)(this, "setUserId", function (value) {
|
55
55
|
_this.attributes.user_id = value;
|
56
56
|
});
|
57
|
-
// string #
|
57
|
+
// string # Username (if applicable)
|
58
58
|
(0, _defineProperty2.default)(this, "getUsername", function () {
|
59
59
|
return _this.attributes.username;
|
60
60
|
});
|
@@ -68,21 +68,21 @@ var Permission = /*#__PURE__*/(0, _createClass2.default)(function Permission() {
|
|
68
68
|
(0, _defineProperty2.default)(this, "setGroupId", function (value) {
|
69
69
|
_this.attributes.group_id = value;
|
70
70
|
});
|
71
|
-
// string # Group name if applicable
|
71
|
+
// string # Group name (if applicable)
|
72
72
|
(0, _defineProperty2.default)(this, "getGroupName", function () {
|
73
73
|
return _this.attributes.group_name;
|
74
74
|
});
|
75
75
|
(0, _defineProperty2.default)(this, "setGroupName", function (value) {
|
76
76
|
_this.attributes.group_name = value;
|
77
77
|
});
|
78
|
-
// string # Permission type
|
78
|
+
// string # Permission type. See the table referenced in the documentation for an explanation of each permission.
|
79
79
|
(0, _defineProperty2.default)(this, "getPermission", function () {
|
80
80
|
return _this.attributes.permission;
|
81
81
|
});
|
82
82
|
(0, _defineProperty2.default)(this, "setPermission", function (value) {
|
83
83
|
_this.attributes.permission = value;
|
84
84
|
});
|
85
|
-
// boolean #
|
85
|
+
// boolean # Recursive: does this permission apply to subfolders?
|
86
86
|
(0, _defineProperty2.default)(this, "getRecursive", function () {
|
87
87
|
return _this.attributes.recursive;
|
88
88
|
});
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
package/src/models/Permission.js
CHANGED
@@ -35,7 +35,7 @@ class Permission {
|
|
35
35
|
this.attributes.id = value
|
36
36
|
}
|
37
37
|
|
38
|
-
// string #
|
38
|
+
// string # Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
39
39
|
getPath = () => this.attributes.path
|
40
40
|
|
41
41
|
setPath = value => {
|
@@ -49,7 +49,7 @@ class Permission {
|
|
49
49
|
this.attributes.user_id = value
|
50
50
|
}
|
51
51
|
|
52
|
-
// string #
|
52
|
+
// string # Username (if applicable)
|
53
53
|
getUsername = () => this.attributes.username
|
54
54
|
|
55
55
|
setUsername = value => {
|
@@ -63,21 +63,21 @@ class Permission {
|
|
63
63
|
this.attributes.group_id = value
|
64
64
|
}
|
65
65
|
|
66
|
-
// string # Group name if applicable
|
66
|
+
// string # Group name (if applicable)
|
67
67
|
getGroupName = () => this.attributes.group_name
|
68
68
|
|
69
69
|
setGroupName = value => {
|
70
70
|
this.attributes.group_name = value
|
71
71
|
}
|
72
72
|
|
73
|
-
// string # Permission type
|
73
|
+
// string # Permission type. See the table referenced in the documentation for an explanation of each permission.
|
74
74
|
getPermission = () => this.attributes.permission
|
75
75
|
|
76
76
|
setPermission = value => {
|
77
77
|
this.attributes.permission = value
|
78
78
|
}
|
79
79
|
|
80
|
-
// boolean #
|
80
|
+
// boolean # Recursive: does this permission apply to subfolders?
|
81
81
|
getRecursive = () => this.attributes.recursive
|
82
82
|
|
83
83
|
setRecursive = value => {
|