files.com 1.1.305 → 1.1.307

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 579b93a802b0cc99c706d688acc0ec39ec7f286c61a5f5d745971631c414ed20
4
- data.tar.gz: 3771606162fd216b934a7d5f0a416919f0ca7fb7d318db0f3b2d2b7c1f26a021
3
+ metadata.gz: 0dcd9a5e138359a4681ca22200004644b29eeb62197dc184697ed2f7811be78b
4
+ data.tar.gz: b42d5a54343376020198fc998a528c9209edb473484c16d6bb027511f77938e2
5
5
  SHA512:
6
- metadata.gz: cd4aa144604b9cd9bbc00ffa24afba9daf5fd191f221dd6744ec4c156dcaeec18c129ea3b6bb3871fa3c73e61a51f272b0cbcd76dec26bf2900169df0e3eac16
7
- data.tar.gz: d78f941b9dd7b134c6091c4dafd57a1b5ef3b9054a02ff27089612ba11fd54a655c1e5b05594467852e6f184aa7df6d39b910284cbea4cc612388fc50cb65f1f
6
+ metadata.gz: 4942272a635e43de6b7f65910f7487adcac649e4f7cb577d1cc55a5375ab7bac843716fe92be9ebf7020b5fe46655c8e803e79f43cb263423679054254111ba5
7
+ data.tar.gz: 1725ec29e7e6b7fbc958601cb1cbc62621d5e6d2e19faeb06a3bd3d4a1e08765f2444f1b07cf7340de2db289036b6340d6e8a541da98c09c3cd8c5d52a3fd0a8
data/Gemfile.lock CHANGED
@@ -20,7 +20,7 @@ GEM
20
20
  concurrent-ruby (1.3.5)
21
21
  connection_pool (2.5.3)
22
22
  diff-lcs (1.5.0)
23
- faraday (2.13.3)
23
+ faraday (2.13.4)
24
24
  faraday-net_http (>= 2.0, < 3.5)
25
25
  json
26
26
  logger
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.305
1
+ 1.1.307
data/docs/user.md CHANGED
@@ -167,8 +167,8 @@ Files::User.list(
167
167
 
168
168
  * `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.
169
169
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
170
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username` or `site_admin`.
171
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
170
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username`, `site_admin` or `disabled`.
171
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin` or `disabled`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
172
172
  * `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`.
173
173
  * `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`.
174
174
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`. Valid field combinations are `[ company, name ]`.
@@ -839,8 +839,8 @@ module Files
839
839
  # Parameters:
840
840
  # 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.
841
841
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
842
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username` or `site_admin`.
843
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
842
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `site_id`, `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `name`, `company`, `password_validity_days`, `ssl_required`, `username`, `site_admin` or `disabled`.
843
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `name`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until`, `not_site_admin` or `disabled`. Valid field combinations are `[ site_admin, username ]`, `[ not_site_admin, username ]` or `[ company, name ]`.
844
844
  # 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`.
845
845
  # 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`.
846
846
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `username`, `name`, `email` or `company`. Valid field combinations are `[ company, name ]`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.305"
4
+ VERSION = "1.1.307"
5
5
  end
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.305
4
+ version: 1.1.307
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-07-24 00:00:00.000000000 Z
11
+ date: 2025-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable