files.com 1.2.218 → 1.2.220
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 +1 -1
- package/docs/models/ExternalEvent.md +1 -1
- package/docs/models/Site.md +2 -2
- package/lib/Files.js +1 -1
- package/lib/models/ExternalEvent.js +1 -1
- package/lib/models/Site.js +2 -2
- package/package.json +1 -1
- package/src/Files.js +1 -1
- package/src/models/ExternalEvent.js +1 -1
- package/src/models/Site.js +2 -2
package/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.2.
|
|
1
|
+
1.2.220
|
|
@@ -50,7 +50,7 @@ await ExternalEvent.list
|
|
|
50
50
|
* `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
51
51
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
52
52
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `siem_http_destination_id`, `created_at`, `event_type`, `status` or `folder_behavior_id`.
|
|
53
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`
|
|
53
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`, `[ remote_server_type, status ]`, `[ folder_behavior_id, status ]`, `[ event_type, status, created_at ]`, `[ remote_server_type, status, created_at ]` or `[ folder_behavior_id, status, created_at ]`.
|
|
54
54
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
|
55
55
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
|
56
56
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
|
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.220';
|
|
15
15
|
var userAgent = "Files.com JavaScript SDK v".concat(version);
|
|
16
16
|
var logLevel = _Logger.LogLevel.INFO;
|
|
17
17
|
var debugRequest = false;
|
|
@@ -169,7 +169,7 @@ _ExternalEvent = ExternalEvent;
|
|
|
169
169
|
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
170
170
|
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
171
171
|
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `siem_http_destination_id`, `created_at`, `event_type`, `status` or `folder_behavior_id`.
|
|
172
|
-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`
|
|
172
|
+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`, `[ remote_server_type, status ]`, `[ folder_behavior_id, status ]`, `[ event_type, status, created_at ]`, `[ remote_server_type, status, created_at ]` or `[ folder_behavior_id, status, created_at ]`.
|
|
173
173
|
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
|
174
174
|
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
|
175
175
|
// filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
|
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
|
@@ -136,7 +136,7 @@ class ExternalEvent {
|
|
|
136
136
|
// cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
|
|
137
137
|
// per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
138
138
|
// sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `remote_server_type`, `siem_http_destination_id`, `created_at`, `event_type`, `status` or `folder_behavior_id`.
|
|
139
|
-
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`
|
|
139
|
+
// filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `event_type`, `remote_server_type`, `status`, `folder_behavior_id` or `siem_http_destination_id`. Valid field combinations are `[ event_type, created_at ]`, `[ remote_server_type, created_at ]`, `[ status, created_at ]`, `[ folder_behavior_id, created_at ]`, `[ event_type, status ]`, `[ remote_server_type, status ]`, `[ folder_behavior_id, status ]`, `[ event_type, status, created_at ]`, `[ remote_server_type, status, created_at ]` or `[ folder_behavior_id, status, created_at ]`.
|
|
140
140
|
// filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
|
141
141
|
// filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
|
142
142
|
// filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
|
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.
|