files.com 1.1.226 → 1.1.228
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.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/external_event.md +1 -1
- data/docs/site.md +2 -2
- data/lib/files.com/models/external_event.rb +1 -1
- data/lib/files.com/models/site.rb +2 -2
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dec69c2444cd10258b4d9098762e5f85071776e5181d983d31e33335d7bf7572
|
4
|
+
data.tar.gz: 3bfb58619fbcc1e7038e01221d30fe9f8f6c448db9658e983139b4cb59391307
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f258fad0322c4cdb3a85f56bdf61bec5761336a0625258d1c16a82f4ee47c1d0b45ac68970ec05413fb4de7fcaa730b180556f942b6e5aba4eca6cb075bf1d5
|
7
|
+
data.tar.gz: 8a7839819e744ed7ea0fed44898616576cce8167f5e1c420c8e3d7b72c11da75bc2d910bede4f5562c8ac9b129d716e51af2bae16df90e2314aec933ed295686
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.228
|
data/docs/external_event.md
CHANGED
@@ -50,7 +50,7 @@ Files::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`.
|
data/docs/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 @@ Files::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.
|
@@ -146,7 +146,7 @@ module Files
|
|
146
146
|
# 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.
|
147
147
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
148
148
|
# 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`.
|
149
|
-
# 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 ]`
|
149
|
+
# 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 ]`.
|
150
150
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at`.
|
151
151
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at`.
|
152
152
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `remote_server_type`.
|
@@ -359,7 +359,7 @@ module Files
|
|
359
359
|
@attributes[:non_sso_users_allowed]
|
360
360
|
end
|
361
361
|
|
362
|
-
# boolean - If true, permissions for this site must be bound to a group (not a user).
|
362
|
+
# boolean - If true, permissions for this site must be bound to a group (not a user).
|
363
363
|
def folder_permissions_groups_only
|
364
364
|
@attributes[:folder_permissions_groups_only]
|
365
365
|
end
|
@@ -890,7 +890,7 @@ module Files
|
|
890
890
|
# mobile_app - boolean - Is the mobile app enabled?
|
891
891
|
# mobile_app_session_ip_pinning - boolean - Is mobile app session IP pinning enabled?
|
892
892
|
# mobile_app_session_lifetime - int64 - Mobile app session lifetime (in hours)
|
893
|
-
# folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
893
|
+
# folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user).
|
894
894
|
# welcome_screen - string - Does the welcome screen appear?
|
895
895
|
# office_integration_available - boolean - If true, allows users to use a document editing integration.
|
896
896
|
# office_integration_type - string - Which document editing integration to support. Files.com Editor or Microsoft Office for the Web.
|
data/lib/files.com/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: files.com
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.228
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|