files.com 1.2.75 → 1.2.76

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 CHANGED
@@ -1 +1 @@
1
- 1.2.75
1
+ 1.2.76
@@ -48,7 +48,7 @@
48
48
  * `max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default CPU Count * 4)
49
49
  * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds
50
50
  * `transfer_rate_limit` (string): File transfer (upload/download) rate limit
51
- <limit>-<period>, with the given periods:
51
+ `<limit>-<period>`, with the given periods:
52
52
  * 'S': second
53
53
  * 'M': minute
54
54
  * 'H': hour
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.75';
14
+ var version = '1.2.76';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -94,7 +94,7 @@ var RemoteServerConfigurationFile = /*#__PURE__*/(0, _createClass2.default)(func
94
94
  return _this.attributes.graceful_shutdown_timeout;
95
95
  });
96
96
  // string # File transfer (upload/download) rate limit
97
- // <limit>-<period>, with the given periods:
97
+ // `<limit>-<period>`, with the given periods:
98
98
  // * 'S': second
99
99
  // * 'M': minute
100
100
  // * 'H': hour
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.75",
3
+ "version": "1.2.76",
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.75'
8
+ const version = '1.2.76'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -77,7 +77,7 @@ class RemoteServerConfigurationFile {
77
77
  getGracefulShutdownTimeout = () => this.attributes.graceful_shutdown_timeout
78
78
 
79
79
  // string # File transfer (upload/download) rate limit
80
- // <limit>-<period>, with the given periods:
80
+ // `<limit>-<period>`, with the given periods:
81
81
  // * 'S': second
82
82
  // * 'M': minute
83
83
  // * 'H': hour