files.com 1.2.166 → 1.2.167
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/Action.md +2 -4
- package/docs/models/History.md +2 -4
- package/lib/Files.js +1 -1
- package/lib/models/Action.js +1 -1
- package/lib/models/History.js +1 -1
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/Action.js +1 -1
- package/src/models/History.js +1 -1
package/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.167
|
package/docs/models/Action.md
CHANGED
|
@@ -11,9 +11,7 @@
|
|
|
11
11
|
"display": "Actual text of the action here.",
|
|
12
12
|
"ip": "192.283.128.182",
|
|
13
13
|
"source": "/from_path",
|
|
14
|
-
"targets":
|
|
15
|
-
|
|
16
|
-
],
|
|
14
|
+
"targets": null,
|
|
17
15
|
"user_id": 1,
|
|
18
16
|
"username": "user",
|
|
19
17
|
"user_is_from_parent_site": true,
|
|
@@ -30,7 +28,7 @@
|
|
|
30
28
|
* `display` (string): Friendly displayed output
|
|
31
29
|
* `ip` (string): IP Address that performed this action
|
|
32
30
|
* `source` (string): The source path for this action, if applicable
|
|
33
|
-
* `targets` (
|
|
31
|
+
* `targets` (object): Targets
|
|
34
32
|
* `user_id` (int64): User ID
|
|
35
33
|
* `username` (string): Username
|
|
36
34
|
* `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
|
package/docs/models/History.md
CHANGED
|
@@ -11,9 +11,7 @@
|
|
|
11
11
|
"display": "Actual text of the action here.",
|
|
12
12
|
"ip": "192.283.128.182",
|
|
13
13
|
"source": "/from_path",
|
|
14
|
-
"targets":
|
|
15
|
-
|
|
16
|
-
],
|
|
14
|
+
"targets": null,
|
|
17
15
|
"user_id": 1,
|
|
18
16
|
"username": "user",
|
|
19
17
|
"user_is_from_parent_site": true,
|
|
@@ -30,7 +28,7 @@
|
|
|
30
28
|
* `display` (string): Friendly displayed output
|
|
31
29
|
* `ip` (string): IP Address that performed this action
|
|
32
30
|
* `source` (string): The source path for this action, if applicable
|
|
33
|
-
* `targets` (
|
|
31
|
+
* `targets` (object): Targets
|
|
34
32
|
* `user_id` (int64): User ID
|
|
35
33
|
* `username` (string): Username
|
|
36
34
|
* `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
|
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.167';
|
|
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/Action.js
CHANGED
|
@@ -57,7 +57,7 @@ var Action = /*#__PURE__*/(0, _createClass2.default)(function Action() {
|
|
|
57
57
|
(0, _defineProperty2.default)(this, "getSource", function () {
|
|
58
58
|
return _this.attributes.source;
|
|
59
59
|
});
|
|
60
|
-
//
|
|
60
|
+
// object # Targets
|
|
61
61
|
(0, _defineProperty2.default)(this, "getTargets", function () {
|
|
62
62
|
return _this.attributes.targets;
|
|
63
63
|
});
|
package/lib/models/History.js
CHANGED
|
@@ -61,7 +61,7 @@ var History = /*#__PURE__*/(0, _createClass2.default)(function History() {
|
|
|
61
61
|
(0, _defineProperty2.default)(this, "getSource", function () {
|
|
62
62
|
return _this.attributes.source;
|
|
63
63
|
});
|
|
64
|
-
//
|
|
64
|
+
// object # Targets
|
|
65
65
|
(0, _defineProperty2.default)(this, "getTargets", function () {
|
|
66
66
|
return _this.attributes.targets;
|
|
67
67
|
});
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
package/src/models/Action.js
CHANGED
package/src/models/History.js
CHANGED