files.com 1.0.408 → 1.0.409

Sign up to get free protection for your applications and to get access to all the features.
package/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.408
1
+ 1.0.409
@@ -60,7 +60,7 @@
60
60
  * `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
61
61
  * `description` (string): Description for the this Automation.
62
62
  * `recurring_day` (int64): If trigger type is `daily`, this specifies a day number to run in one of the supported intervals: `week`, `month`, `quarter`, `year`.
63
- * `path` (string): Path on which this Automation runs. Supports globs. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
63
+ * `path` (string): Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
64
64
  * `user_id` (int64): User ID of the Automation's creator.
65
65
  * `sync_ids` (array): IDs of remote sync folder behaviors to run by this Automation
66
66
  * `user_ids` (array): IDs of Users for the Automation (i.e. who to Request File from)
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.0.408";
14
+ var version = "1.0.409";
15
15
  var userAgent = "Files.com JavaScript SDK v".concat(version);
16
16
  var logLevel = _Logger.LogLevel.INFO;
17
17
  var debugRequest = false;
@@ -137,7 +137,7 @@ var Automation = /*#__PURE__*/(0, _createClass2.default)(function Automation() {
137
137
  (0, _defineProperty2.default)(this, "setRecurringDay", function (value) {
138
138
  _this.attributes.recurring_day = value;
139
139
  });
140
- // string # Path on which this Automation runs. Supports globs. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
140
+ // string # Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
141
141
  (0, _defineProperty2.default)(this, "getPath", function () {
142
142
  return _this.attributes.path;
143
143
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "files.com",
3
- "version": "1.0.408",
3
+ "version": "1.0.409",
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
- let version = "1.0.408"
8
+ let version = "1.0.409"
9
9
  let userAgent = `Files.com JavaScript SDK v${version}`
10
10
 
11
11
  let logLevel = LogLevel.INFO
@@ -128,7 +128,7 @@ class Automation {
128
128
  this.attributes.recurring_day = value
129
129
  }
130
130
 
131
- // string # Path on which this Automation runs. Supports globs. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
131
+ // string # Path on which this Automation runs. Supports globs, except on remote mounts. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
132
132
  getPath = () => this.attributes.path
133
133
 
134
134
  setPath = value => {