files.com 1.1.699 → 1.1.700

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: b1b9be22ebb74b65e03b96b718b6f2e0406f0472e818138613807cd2c8cb9f8b
4
- data.tar.gz: 92656a3a1cf3e8ef7ec96124ff045bcfead5e12bf83dcb26a8e935c4741c0eac
3
+ metadata.gz: 641bd8b27bacc4e008049db261ae2ea4cb059f45b92c245cbf26c02593e2c094
4
+ data.tar.gz: b6e030e5c0f3fdc61f60eccc6f78cc1da9ad024117429d23536a09c4d136a1e3
5
5
  SHA512:
6
- metadata.gz: eb2f9eabd5cdcd4e7b0a9399c900728ce0e657729e80dab10ba15bdb40a0efc4d630ae14568fab01762cde531fc450b4d739b3d4edb5be3615179c0fd0716c5a
7
- data.tar.gz: b78256c26f8b5213d05c362514b3213fa3a7da4ebcb0f0a9e68dc51c55da3642fac03906891fd38d2c1d351728ae60e2c4f5d44e36eac23481e728ed8c9029af
6
+ metadata.gz: b761980853fb1ac15480a52477644c7ca38a78c9d927f3f2bf9c6921b4558be524a46924e85682e49baaafcb422d3e90d528f6adea493ba02e5c06916ff28627
7
+ data.tar.gz: a56f57ebbdffe2930a12cdec6906fcf51ad255ea031290d5b7824ede5748ac8203ede79bfd32f56a948103d6daa06298a3e0675da52dc37166839bcca8ef292e
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.699
1
+ 1.1.700
@@ -35,7 +35,7 @@ Files::UserAdditionalEmailRecipient.list(
35
35
  * `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.
36
36
  * `per_page` (int64): Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
37
37
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `email`, `user_id` or `workspace_id`.
38
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `email` and `workspace_id`. Valid field combinations are `[ workspace_id, email ]`.
38
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `email`, `workspace_id` or `user_id`. Valid field combinations are `[ workspace_id, email ]`, `[ user_id, email ]`, `[ workspace_id, user_id ]` or `[ workspace_id, user_id, email ]`.
39
39
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `email`.
40
40
 
41
41
 
@@ -94,7 +94,7 @@ module Files
94
94
  # 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.
95
95
  # per_page - int64 - Number of records to show per page. (Max: 10000, 1,000 or less is recommended).
96
96
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `email`, `user_id` or `workspace_id`.
97
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `email` and `workspace_id`. Valid field combinations are `[ workspace_id, email ]`.
97
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `email`, `workspace_id` or `user_id`. Valid field combinations are `[ workspace_id, email ]`, `[ user_id, email ]`, `[ workspace_id, user_id ]` or `[ workspace_id, user_id, email ]`.
98
98
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `email`.
99
99
  def self.list(params = {}, options = {})
100
100
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.699"
4
+ VERSION = "1.1.700"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.699
4
+ version: 1.1.700
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com