Skip to content

Commit db85d87

Browse files
[Bot] push changes from Files.com
1 parent eca8154 commit db85d87

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.408
1+
1.0.409

docs/models/Automation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* `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.
6161
* `description` (string): Description for the this Automation.
6262
* `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.
6464
* `user_id` (int64): User ID of the Automation's creator.
6565
* `sync_ids` (array): IDs of remote sync folder behaviors to run by this Automation
6666
* `user_ids` (array): IDs of Users for the Automation (i.e. who to Request File from)

lib/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var endpointPrefix = '/api/rest/v1';
1111
var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
14-
var version = "1.0.408";
14+
var version = "1.0.409";
1515
var userAgent = "Files.com JavaScript SDK v".concat(version);
1616
var logLevel = _Logger.LogLevel.INFO;
1717
var debugRequest = false;

lib/models/Automation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ var Automation = /*#__PURE__*/(0, _createClass2.default)(function Automation() {
137137
(0, _defineProperty2.default)(this, "setRecurringDay", function (value) {
138138
_this.attributes.recurring_day = value;
139139
});
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.
141141
(0, _defineProperty2.default)(this, "getPath", function () {
142142
return _this.attributes.path;
143143
});

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.0.408",
3+
"version": "1.0.409",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const endpointPrefix = '/api/rest/v1'
55
let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
8-
let version = "1.0.408"
8+
let version = "1.0.409"
99
let userAgent = `Files.com JavaScript SDK v${version}`
1010

1111
let logLevel = LogLevel.INFO

src/models/Automation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ class Automation {
128128
this.attributes.recurring_day = value
129129
}
130130

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.
132132
getPath = () => this.attributes.path
133133

134134
setPath = value => {

0 commit comments

Comments
 (0)