files.com 1.2.71 → 1.2.72
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/FtpActionLog.md +2 -0
- package/lib/Files.js +1 -1
- package/lib/models/FtpActionLog.js +4 -0
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/FtpActionLog.js +3 -0
package/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.2.
|
1
|
+
1.2.72
|
@@ -10,6 +10,7 @@
|
|
10
10
|
"username": "example",
|
11
11
|
"session_uuid": "example",
|
12
12
|
"seq_id": 1,
|
13
|
+
"auth_ciphers": "example",
|
13
14
|
"action_type": "example",
|
14
15
|
"path": "example",
|
15
16
|
"true_path": "example",
|
@@ -30,6 +31,7 @@
|
|
30
31
|
* `username` (string): Username
|
31
32
|
* `session_uuid` (string): Unique ID of the Session
|
32
33
|
* `seq_id` (int64): FTP Sequence ID
|
34
|
+
* `auth_ciphers` (string): Authentication Ciphers
|
33
35
|
* `action_type` (string): Action Type
|
34
36
|
* `path` (string): Path as sent by the Client (may not match Files.com path due to user root folders for FTP) This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
35
37
|
* `true_path` (string): Path on Files.com
|
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.72';
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
17
17
|
var debugRequest = false;
|
@@ -57,6 +57,10 @@ var FtpActionLog = /*#__PURE__*/(0, _createClass2.default)(function FtpActionLog
|
|
57
57
|
(0, _defineProperty2.default)(this, "getSeqId", function () {
|
58
58
|
return _this.attributes.seq_id;
|
59
59
|
});
|
60
|
+
// string # Authentication Ciphers
|
61
|
+
(0, _defineProperty2.default)(this, "getAuthCiphers", function () {
|
62
|
+
return _this.attributes.auth_ciphers;
|
63
|
+
});
|
60
64
|
// string # Action Type
|
61
65
|
(0, _defineProperty2.default)(this, "getActionType", function () {
|
62
66
|
return _this.attributes.action_type;
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
@@ -46,6 +46,9 @@ class FtpActionLog {
|
|
46
46
|
// int64 # FTP Sequence ID
|
47
47
|
getSeqId = () => this.attributes.seq_id
|
48
48
|
|
49
|
+
// string # Authentication Ciphers
|
50
|
+
getAuthCiphers = () => this.attributes.auth_ciphers
|
51
|
+
|
49
52
|
// string # Action Type
|
50
53
|
getActionType = () => this.attributes.action_type
|
51
54
|
|