files.com 1.2.71 → 1.2.72

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.71
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.71';
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.71",
3
+ "version": "1.2.72",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
5
5
  let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
- const version = '1.2.71'
8
+ const version = '1.2.72'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -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