files.com 1.2.217 → 1.2.219
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 +1 -2
- package/_VERSION +1 -1
- package/docs/models/Site.md +2 -2
- package/lib/Files.js +1 -1
- package/lib/models/Site.js +2 -2
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/Site.js +2 -2
package/README.md
CHANGED
|
@@ -710,8 +710,7 @@ try {
|
|
|
710
710
|
|
|
711
711
|
## Case Sensitivity
|
|
712
712
|
|
|
713
|
-
The Files.com API compares files and paths in a case-insensitive manner.
|
|
714
|
-
For related documentation see [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/file-system-semantics/case-sensitivity).
|
|
713
|
+
The Files.com API compares files and paths in a case-insensitive manner. For related documentation see [Case Sensitivity Documentation](https://www.files.com/docs/files-and-folders/file-system-semantics/case-sensitivity).
|
|
715
714
|
|
|
716
715
|
The `pathNormalizer.same` function in the Files.com SDK is designed to help you determine if two paths on
|
|
717
716
|
your native file system would be considered the same on Files.com. This is particularly important
|
package/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.219
|
package/docs/models/Site.md
CHANGED
|
@@ -371,7 +371,7 @@
|
|
|
371
371
|
* `reply_to_email` (email): Reply-to email for this site
|
|
372
372
|
* `non_sso_groups_allowed` (boolean): If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
|
|
373
373
|
* `non_sso_users_allowed` (boolean): If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.
|
|
374
|
-
* `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user).
|
|
374
|
+
* `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user).
|
|
375
375
|
* `hipaa` (boolean): Is there a signed HIPAA BAA between Files.com and this site?
|
|
376
376
|
* `icon128` (Image): Branded icon 128x128
|
|
377
377
|
* `icon16` (Image): Branded icon 16x16
|
|
@@ -678,7 +678,7 @@ await Site.update({
|
|
|
678
678
|
* `mobile_app` (boolean): Is the mobile app enabled?
|
|
679
679
|
* `mobile_app_session_ip_pinning` (boolean): Is mobile app session IP pinning enabled?
|
|
680
680
|
* `mobile_app_session_lifetime` (int64): Mobile app session lifetime (in hours)
|
|
681
|
-
* `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user).
|
|
681
|
+
* `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user).
|
|
682
682
|
* `welcome_screen` (string): Does the welcome screen appear?
|
|
683
683
|
* `office_integration_available` (boolean): If true, allows users to use a document editing integration.
|
|
684
684
|
* `office_integration_type` (string): Which document editing integration to support. Files.com Editor or Microsoft Office for the Web.
|
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.
|
|
14
|
+
var version = '1.2.219';
|
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
|
17
17
|
var debugRequest = false;
|
package/lib/models/Site.js
CHANGED
|
@@ -313,7 +313,7 @@ var Site = /*#__PURE__*/(0, _createClass2.default)(function Site() {
|
|
|
313
313
|
(0, _defineProperty2.default)(this, "getNonSsoUsersAllowed", function () {
|
|
314
314
|
return _this.attributes.non_sso_users_allowed;
|
|
315
315
|
});
|
|
316
|
-
// boolean # If true, permissions for this site must be bound to a group (not a user).
|
|
316
|
+
// boolean # If true, permissions for this site must be bound to a group (not a user).
|
|
317
317
|
(0, _defineProperty2.default)(this, "getFolderPermissionsGroupsOnly", function () {
|
|
318
318
|
return _this.attributes.folder_permissions_groups_only;
|
|
319
319
|
});
|
|
@@ -789,7 +789,7 @@ _Site = Site;
|
|
|
789
789
|
// mobile_app - boolean - Is the mobile app enabled?
|
|
790
790
|
// mobile_app_session_ip_pinning - boolean - Is mobile app session IP pinning enabled?
|
|
791
791
|
// mobile_app_session_lifetime - int64 - Mobile app session lifetime (in hours)
|
|
792
|
-
// folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
|
792
|
+
// folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
|
793
793
|
// welcome_screen - string - Does the welcome screen appear?
|
|
794
794
|
// office_integration_available - boolean - If true, allows users to use a document editing integration.
|
|
795
795
|
// office_integration_type - string - Which document editing integration to support. Files.com Editor or Microsoft Office for the Web.
|
package/package.json
CHANGED
package/src/Files.js
CHANGED
package/src/models/Site.js
CHANGED
|
@@ -238,7 +238,7 @@ class Site {
|
|
|
238
238
|
// boolean # If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.
|
|
239
239
|
getNonSsoUsersAllowed = () => this.attributes.non_sso_users_allowed
|
|
240
240
|
|
|
241
|
-
// boolean # If true, permissions for this site must be bound to a group (not a user).
|
|
241
|
+
// boolean # If true, permissions for this site must be bound to a group (not a user).
|
|
242
242
|
getFolderPermissionsGroupsOnly = () => this.attributes.folder_permissions_groups_only
|
|
243
243
|
|
|
244
244
|
// boolean # Is there a signed HIPAA BAA between Files.com and this site?
|
|
@@ -574,7 +574,7 @@ class Site {
|
|
|
574
574
|
// mobile_app - boolean - Is the mobile app enabled?
|
|
575
575
|
// mobile_app_session_ip_pinning - boolean - Is mobile app session IP pinning enabled?
|
|
576
576
|
// mobile_app_session_lifetime - int64 - Mobile app session lifetime (in hours)
|
|
577
|
-
// folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
|
577
|
+
// folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
|
578
578
|
// welcome_screen - string - Does the welcome screen appear?
|
|
579
579
|
// office_integration_available - boolean - If true, allows users to use a document editing integration.
|
|
580
580
|
// office_integration_type - string - Which document editing integration to support. Files.com Editor or Microsoft Office for the Web.
|