files.com 1.0.251 → 1.0.252

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1fef3648dfb331c50f3c4f6a9c0968cb6ae283483f6d75eeb627d173cb35d237
4
- data.tar.gz: 7931b8a5f2770b7eb9638fdac98d85c30f6cc07326b7bd94afb946096ef40a6d
3
+ metadata.gz: 5eb4e0be77c2f83835c9272d32125b398e37b1752aed2135340e7d3a7b05d60d
4
+ data.tar.gz: ff82d25a75523d26fe8389b62d1ad0723a38f0326e2efbe043e9e20c3c48b988
5
5
  SHA512:
6
- metadata.gz: ff5d8d9923d38d020d9f8bf3a0502e3219f2f18168385b5275a8611903278e8eef6df82cede7a53a55db0a8fc940b99f8e86e7a21ffd35c4f00ec7acb883fc00
7
- data.tar.gz: 333ba4ad84cc8995dcd4a1cade1b706ebc7e2ab2c1854441df81b619f6b02ecc48146799d13fa52fecc3fdd2d5bcfd2859b9185b4e935650124d8f5addb2f21f
6
+ metadata.gz: 6ad4dbce404ff2b6e3cb46beee4f17a099353cd6c3a0b33f565044a14c5a310cf0a5b11529b7b583a107c9dd4e227526feb21a1a0405ebd8049d8970ccb0e190
7
+ data.tar.gz: 15e197c5388693fc317b133cd138e586f203cffd162ba8d908133f63bb79ca8ac9a1cd788ddc96cd4a8136cd1425e05828ee7747287a5afd925aca6f734d0e8d
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.251
1
+ 1.0.252
data/docs/user.md CHANGED
@@ -131,7 +131,7 @@ Files::User.list(
131
131
 
132
132
  * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
133
133
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
134
- * `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `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`.
134
+ * `sort_by` (object): If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=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`.
135
135
  * `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 ]`.
136
136
  * `filter_gt` (object): If set, return records where the specified field is greater than 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 ]`.
137
137
  * `filter_gteq` (object): If set, return records where the specified field is greater than or 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 ]`.
@@ -666,7 +666,7 @@ module Files
666
666
  # Parameters:
667
667
  # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
668
668
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
669
- # sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `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`.
669
+ # sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=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`.
670
670
  # 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 ]`.
671
671
  # filter_gt - object - If set, return records where the specified field is greater than 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 ]`.
672
672
  # filter_gteq - object - If set, return records where the specified field is greater than or 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 ]`.
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.251
4
+ version: 1.0.252
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-28 00:00:00.000000000 Z
11
+ date: 2022-03-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable