files.com 1.2.260 → 1.2.261

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.260
1
+ 1.2.261
@@ -18,7 +18,7 @@
18
18
  "compared_folders": 1,
19
19
  "errored_files": 1,
20
20
  "successful_files": 1,
21
- "runtime": "example",
21
+ "runtime": 1.0,
22
22
  "s3_body_path": "example",
23
23
  "s3_internal_body_path": "example",
24
24
  "completed_at": "2000-01-01T01:00:00Z",
@@ -40,7 +40,7 @@
40
40
  * `compared_folders` (int64): Number of folders compared
41
41
  * `errored_files` (int64): Number of files that errored
42
42
  * `successful_files` (int64): Number of files successfully synced
43
- * `runtime` (float): Total runtime in seconds
43
+ * `runtime` (double): Total runtime in seconds
44
44
  * `s3_body_path` (string): S3 path to the main log file
45
45
  * `s3_internal_body_path` (string): S3 path to the internal log file
46
46
  * `completed_at` (date-time): When this run was completed
package/lib/Files.js CHANGED
@@ -12,7 +12,7 @@ var apiKey;
12
12
  var baseUrl = 'https://app.files.com';
13
13
  var sessionId = null;
14
14
  var language = null;
15
- var version = '1.2.260';
15
+ var version = '1.2.261';
16
16
  var userAgent = "Files.com JavaScript SDK v".concat(version);
17
17
  var logLevel = _Logger.LogLevel.INFO;
18
18
  var debugRequest = false;
@@ -80,7 +80,7 @@ var SyncRun = /*#__PURE__*/(0, _createClass2.default)(function SyncRun() {
80
80
  (0, _defineProperty2.default)(this, "getSuccessfulFiles", function () {
81
81
  return _this.attributes.successful_files;
82
82
  });
83
- // float # Total runtime in seconds
83
+ // double # Total runtime in seconds
84
84
  (0, _defineProperty2.default)(this, "getRuntime", function () {
85
85
  return _this.attributes.runtime;
86
86
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.260",
3
+ "version": "1.2.261",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -6,7 +6,7 @@ let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
8
  let language = null
9
- const version = '1.2.260'
9
+ const version = '1.2.261'
10
10
  let userAgent = `Files.com JavaScript SDK v${version}`
11
11
 
12
12
  let logLevel = LogLevel.INFO
@@ -64,7 +64,7 @@ class SyncRun {
64
64
  // int64 # Number of files successfully synced
65
65
  getSuccessfulFiles = () => this.attributes.successful_files
66
66
 
67
- // float # Total runtime in seconds
67
+ // double # Total runtime in seconds
68
68
  getRuntime = () => this.attributes.runtime
69
69
 
70
70
  // string # S3 path to the main log file