files.com 1.0.328 → 1.0.330
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/api_key.md +2 -3
- data/docs/app.md +1 -5
- data/docs/as2_incoming_message.md +2 -3
- data/docs/as2_outgoing_message.md +2 -3
- data/docs/as2_partner.md +11 -3
- data/docs/automation.md +8 -9
- data/docs/automation_run.md +0 -5
- data/docs/bandwidth_snapshot.md +2 -3
- data/docs/behavior.md +3 -11
- data/docs/bundle.md +2 -3
- data/docs/bundle_download.md +2 -3
- data/docs/bundle_notification.md +3 -1
- data/docs/bundle_recipient.md +0 -5
- data/docs/external_event.md +5 -5
- data/docs/group.md +1 -5
- data/docs/history.md +1 -5
- data/docs/inbox_recipient.md +0 -5
- data/docs/inbox_upload.md +2 -3
- data/docs/notification.md +3 -7
- data/docs/permission.md +1 -5
- data/docs/remote_bandwidth_snapshot.md +2 -3
- data/docs/settings_change.md +4 -6
- data/docs/usage_daily_snapshot.md +4 -5
- data/docs/user.md +5 -5
- data/lib/files.com/errors.rb +1 -0
- data/lib/files.com/models/api_key.rb +2 -4
- data/lib/files.com/models/app.rb +2 -10
- data/lib/files.com/models/as2_incoming_message.rb +2 -4
- data/lib/files.com/models/as2_outgoing_message.rb +2 -4
- data/lib/files.com/models/as2_partner.rb +12 -0
- data/lib/files.com/models/automation.rb +7 -9
- data/lib/files.com/models/automation_run.rb +0 -10
- data/lib/files.com/models/bandwidth_snapshot.rb +2 -4
- data/lib/files.com/models/behavior.rb +6 -22
- data/lib/files.com/models/bundle.rb +2 -4
- data/lib/files.com/models/bundle_download.rb +2 -4
- data/lib/files.com/models/bundle_notification.rb +6 -2
- data/lib/files.com/models/bundle_recipient.rb +0 -10
- data/lib/files.com/models/external_event.rb +6 -6
- data/lib/files.com/models/group.rb +2 -10
- data/lib/files.com/models/history.rb +2 -10
- data/lib/files.com/models/inbox_recipient.rb +0 -10
- data/lib/files.com/models/inbox_upload.rb +2 -4
- data/lib/files.com/models/notification.rb +5 -13
- data/lib/files.com/models/permission.rb +2 -10
- data/lib/files.com/models/remote_bandwidth_snapshot.rb +2 -4
- data/lib/files.com/models/settings_change.rb +4 -10
- data/lib/files.com/models/usage_daily_snapshot.rb +4 -6
- data/lib/files.com/models/user.rb +6 -6
- metadata +2 -2
@@ -767,11 +767,11 @@ module Files
|
|
767
767
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
768
768
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction (e.g. `sort_by[authenticate_until]=desc`). Valid fields are `authenticate_until`, `active`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
769
769
|
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ not_site_admin, username ]`.
|
770
|
-
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `
|
771
|
-
# filter_gteq - object - If set, return records where the specified field is greater than or equal
|
772
|
-
#
|
773
|
-
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `
|
774
|
-
# filter_lteq - object - If set, return records where the specified field is less than or equal
|
770
|
+
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
771
|
+
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
772
|
+
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `email` or `company`.
|
773
|
+
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
774
|
+
# filter_lteq - object - If set, return records where the specified field is less than or equal the supplied value. Valid fields are `password_validity_days`, `last_login_at` or `authenticate_until`.
|
775
775
|
# ids - string - comma-separated list of User IDs
|
776
776
|
# q[username] - string - List users matching username.
|
777
777
|
# q[email] - string - List users matching email.
|
@@ -788,7 +788,7 @@ module Files
|
|
788
788
|
raise InvalidParameterError.new("Bad parameter: filter must be an Hash") if params[:filter] and !params[:filter].is_a?(Hash)
|
789
789
|
raise InvalidParameterError.new("Bad parameter: filter_gt must be an Hash") if params[:filter_gt] and !params[:filter_gt].is_a?(Hash)
|
790
790
|
raise InvalidParameterError.new("Bad parameter: filter_gteq must be an Hash") if params[:filter_gteq] and !params[:filter_gteq].is_a?(Hash)
|
791
|
-
raise InvalidParameterError.new("Bad parameter:
|
791
|
+
raise InvalidParameterError.new("Bad parameter: filter_prefix must be an Hash") if params[:filter_prefix] and !params[:filter_prefix].is_a?(Hash)
|
792
792
|
raise InvalidParameterError.new("Bad parameter: filter_lt must be an Hash") if params[:filter_lt] and !params[:filter_lt].is_a?(Hash)
|
793
793
|
raise InvalidParameterError.new("Bad parameter: filter_lteq must be an Hash") if params[:filter_lteq] and !params[:filter_lteq].is_a?(Hash)
|
794
794
|
raise InvalidParameterError.new("Bad parameter: ids must be an String") if params[:ids] and !params[:ids].is_a?(String)
|
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.0.
|
4
|
+
version: 1.0.330
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|