files.com 1.2.176 → 1.2.177

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.176
1
+ 1.2.177
@@ -62,7 +62,7 @@ await Behavior.find(id)
62
62
 
63
63
  ---
64
64
 
65
- ## List Behaviors by path
65
+ ## List Behaviors by Path
66
66
 
67
67
  ```
68
68
  await Behavior.listFor(path, {
@@ -22,7 +22,7 @@
22
22
 
23
23
  ---
24
24
 
25
- ## List File Comments by path
25
+ ## List File Comments by Path
26
26
 
27
27
  ```
28
28
  await FileComment.listFor(path)
@@ -89,7 +89,7 @@
89
89
 
90
90
  ---
91
91
 
92
- ## List Folders by path
92
+ ## List Folders by Path
93
93
 
94
94
  ```
95
95
  await Folder.listFor(path, {
@@ -34,7 +34,7 @@
34
34
 
35
35
  ---
36
36
 
37
- ## List Locks by path
37
+ ## List Locks by Path
38
38
 
39
39
  ```
40
40
  await Lock.listFor(path, {
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.176';
14
+ var version = '1.2.177';
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.2.176",
3
+ "version": "1.2.177",
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.176'
8
+ const version = '1.2.177'
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO