files.com 1.1.192 → 1.1.194

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: 54ec8e23105d81ed4db8d3fc7c78cd01349582f6330b64f51297c20c4f55375b
4
- data.tar.gz: dca5adcd4150b8944672a09dc0f4f3368ddcbad2d99c91cc3ba15cc18245f22e
3
+ metadata.gz: 2e418942f4b39b1c0900e95ef6f1a315985fe9871120ee8f46a1db10d1ce035a
4
+ data.tar.gz: 4d0b40c16b1ba40deeeeb96d7f622903d5be7a7fdb4c087c9f5b53cfcb5bf8b6
5
5
  SHA512:
6
- metadata.gz: 9d2e34609532c523bdd2f6cf02b8ac1e6368c68d04893b2a9752ac74ffa530803375bb9b283b711a32dcbf4f69de91b1f11ff5da9bf181504120124cf89f5b85
7
- data.tar.gz: f31fa1e916de6852f895fc25cc6bb14daa528cac25a5174d6d4eb9fdc39f850e68051ba60763a207be539d91f5c7eed1fd220b25fa65d270389b9aedf77b0c00
6
+ metadata.gz: bf0c18eb1922691a4c4d23684c76d8f02a75f2f21e3e2a7ec2925ba0997277ff0d48b3b5216fb7a34101bab67d949bb987f6f07ee1eb5bd556e4ba9cf5a162de
7
+ data.tar.gz: 5b613c903c193dc922908e2c03c818e99bc1c0260bb6a6f1b4f187b87542183b755b5603ced97d5e9903efa786f471504b2d3e84433774844a9f31d7ddc0945f
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.192
1
+ 1.1.194
data/docs/history.md CHANGED
@@ -96,7 +96,7 @@ Files::History.list_for_user(user_id,
96
96
  * `display` (string): Display format. Leave blank or set to `full` or `parent`.
97
97
  * `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.
98
98
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
99
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `user_id` and `created_at`.
99
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id`.
100
100
  * `user_id` (int64): Required - User ID.
101
101
 
102
102
 
@@ -137,6 +137,6 @@ Files::History.list(
137
137
  * `display` (string): Display format. Leave blank or set to `full` or `parent`.
138
138
  * `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.
139
139
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
140
- * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `path`, `created_at` or `user_id`.
140
+ * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `path`, `created_at` or `id`.
141
141
  * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `user_id`, `folder` or `path`. Valid field combinations are `[ ]`, `[ path ]`, `[ path ]` or `[ path ]`.
142
142
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
@@ -135,7 +135,7 @@ module Files
135
135
  # display - string - Display format. Leave blank or set to `full` or `parent`.
136
136
  # 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.
137
137
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
138
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `user_id` and `created_at`.
138
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `id`.
139
139
  # user_id (required) - int64 - User ID.
140
140
  def self.list_for_user(user_id, params = {}, options = {})
141
141
  params ||= {}
@@ -180,7 +180,7 @@ module Files
180
180
  # display - string - Display format. Leave blank or set to `full` or `parent`.
181
181
  # 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.
182
182
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
183
- # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `path`, `created_at` or `user_id`.
183
+ # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `path`, `created_at` or `id`.
184
184
  # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `user_id`, `folder` or `path`. Valid field combinations are `[ ]`, `[ path ]`, `[ path ]` or `[ path ]`.
185
185
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `path`.
186
186
  def self.list(params = {}, options = {})
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.192"
4
+ VERSION = "1.1.194"
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.192
4
+ version: 1.1.194
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com