files.com 1.0.310 → 1.0.312

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/README.md CHANGED
@@ -166,3 +166,4 @@ Additional docs are available at https://developers.files.com
166
166
  The Files.com team is happy to help with any SDK Integration challenges you may face.
167
167
 
168
168
  Just email support@files.com and we'll get the process started.
169
+
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.310
1
+ 1.0.312
package/lib/Files.js CHANGED
@@ -11,7 +11,8 @@ var endpointPrefix = '/api/rest/v1';
11
11
  var apiKey;
12
12
  var baseUrl = 'https://app.files.com';
13
13
  var sessionId = null;
14
- var userAgent = 'Files.com JavaScript SDK v1.0';
14
+ var version = "1.0.312";
15
+ var userAgent = "Files.com JavaScript SDK v".concat(version);
15
16
  var logLevel = _Logger.LogLevel.INFO;
16
17
  var debugRequest = false;
17
18
  var debugResponseHeaders = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.310",
3
+ "version": "1.0.312",
4
4
  "description": "Files.com SDK for JavaScript",
5
5
  "keywords": [
6
6
  "files.com",
package/src/Files.js CHANGED
@@ -5,7 +5,8 @@ const endpointPrefix = '/api/rest/v1'
5
5
  let apiKey
6
6
  let baseUrl = 'https://app.files.com'
7
7
  let sessionId = null
8
- let userAgent = 'Files.com JavaScript SDK v1.0'
8
+ let version = "1.0.312"
9
+ let userAgent = `Files.com JavaScript SDK v${version}`
9
10
 
10
11
  let logLevel = LogLevel.INFO
11
12
  let debugRequest = false