Skip to content

Commit 84d18fc

Browse files
[Bot] push changes from Files.com
1 parent cf6172e commit 84d18fc

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

_VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.600
1+
1.2.601

docs/models/DesktopConfigurationProfile.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* `name` (string): Profile name
1919
* `workspace_id` (int64): Workspace ID
2020
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
21-
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
21+
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
2222

2323
---
2424

@@ -66,7 +66,7 @@ await DesktopConfigurationProfile.create({
6666
### Parameters
6767

6868
* `name` (string): Required - Profile name
69-
* `mount_mappings` (object): Required - Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
69+
* `mount_mappings` (object): Required - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
7070
* `workspace_id` (int64): Workspace ID
7171
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
7272

@@ -90,7 +90,7 @@ await desktop_configuration_profile.update({
9090
* `id` (int64): Required - Desktop Configuration Profile ID.
9191
* `name` (string): Profile name
9292
* `workspace_id` (int64): Workspace ID
93-
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
93+
* `mount_mappings` (object): Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
9494
* `use_for_all_users` (boolean): Whether this profile applies to all users in the Workspace by default
9595

9696
### Example Response

lib/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var apiKey;
1212
var baseUrl = 'https://app.files.com';
1313
var sessionId = null;
1414
var language = null;
15-
var version = '1.2.600';
15+
var version = '1.2.601';
1616
var userAgent = "Files.com JavaScript SDK v".concat(version);
1717
var logLevel = _Logger.LogLevel.INFO;
1818
var debugRequest = false;

lib/models/DesktopConfigurationProfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ var DesktopConfigurationProfile = /*#__PURE__*/(0, _createClass2.default)(functi
6060
(0, _defineProperty2.default)(this, "setUseForAllUsers", function (value) {
6161
_this.attributes.use_for_all_users = value;
6262
});
63-
// object # Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
63+
// object # Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
6464
(0, _defineProperty2.default)(this, "getMountMappings", function () {
6565
return _this.attributes.mount_mappings;
6666
});
@@ -70,7 +70,7 @@ var DesktopConfigurationProfile = /*#__PURE__*/(0, _createClass2.default)(functi
7070
// Parameters:
7171
// name - string - Profile name
7272
// workspace_id - int64 - Workspace ID
73-
// mount_mappings - object - Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
73+
// mount_mappings - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
7474
// use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
7575
(0, _defineProperty2.default)(this, "update", /*#__PURE__*/(0, _asyncToGenerator2.default)(/*#__PURE__*/_regenerator.default.mark(function _callee() {
7676
var params,
@@ -330,7 +330,7 @@ _DesktopConfigurationProfile = DesktopConfigurationProfile;
330330
});
331331
// Parameters:
332332
// name (required) - string - Profile name
333-
// mount_mappings (required) - object - Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
333+
// mount_mappings (required) - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
334334
// workspace_id - int64 - Workspace ID
335335
// use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
336336
(0, _defineProperty2.default)(DesktopConfigurationProfile, "create", /*#__PURE__*/(0, _asyncToGenerator2.default)(/*#__PURE__*/_regenerator.default.mark(function _callee6() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "files.com",
3-
"version": "1.2.600",
3+
"version": "1.2.601",
44
"description": "Files.com SDK for JavaScript",
55
"keywords": [
66
"files.com",

src/Files.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let apiKey
66
let baseUrl = 'https://app.files.com'
77
let sessionId = null
88
let language = null
9-
const version = '1.2.600'
9+
const version = '1.2.601'
1010
let userAgent = `Files.com JavaScript SDK v${version}`
1111

1212
let logLevel = LogLevel.INFO

src/models/DesktopConfigurationProfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class DesktopConfigurationProfile {
5656
this.attributes.use_for_all_users = value
5757
}
5858

59-
// object # Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
59+
// object # Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
6060
getMountMappings = () => this.attributes.mount_mappings
6161

6262
setMountMappings = value => {
@@ -66,7 +66,7 @@ class DesktopConfigurationProfile {
6666
// Parameters:
6767
// name - string - Profile name
6868
// workspace_id - int64 - Workspace ID
69-
// mount_mappings - object - Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
69+
// mount_mappings - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
7070
// use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
7171
update = async (params = {}) => {
7272
if (!this.attributes.id) {
@@ -192,7 +192,7 @@ class DesktopConfigurationProfile {
192192

193193
// Parameters:
194194
// name (required) - string - Profile name
195-
// mount_mappings (required) - object - Mount point mappings for the desktop app. Keys are mount points (e.g. drive letters) and values are paths in Files.com that the mount points map to.
195+
// mount_mappings (required) - object - Mount point mappings for the desktop app. Keys must be a single uppercase Windows drive letter other than A, B, or C, and values are Files.com paths to mount there.
196196
// workspace_id - int64 - Workspace ID
197197
// use_for_all_users - boolean - Whether this profile applies to all users in the Workspace by default
198198
static create = async (params = {}, options = {}) => {

0 commit comments

Comments
 (0)