files.com 1.1.203 → 1.1.204

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: ae5ee431bd9709fe2661e37b4356d1703826ab24cca4c5321c30d745f6e0c0f0
4
- data.tar.gz: 8d0ba27712d9dd5a0e9939fc0b3cee0cbe5db87b399196e762760762eb688b21
3
+ metadata.gz: ebab0598228e560f57213b13a745a6885b4a51b0bfdc7745785de47bf7adc758
4
+ data.tar.gz: 56fd13ed9d7c23860f408cd97e303c792b6a925d5336be1f5f3ffc9e1da3e418
5
5
  SHA512:
6
- metadata.gz: ba96227e40cb508d0b590486b8623469eda66cd493cb3b3547d63db18f1b3f0f223d8318efbac8da6a42381ba46abcd140e7c8eceba1f2cc8341e258ae3a6c42
7
- data.tar.gz: d117eac3b936adf524192930417613b149a2abec66e1de2495947f16ca5517aa0e46bab0fc8c8faa032d6baf1b4a260003f17dcdcc231f8e20008503972a6668
6
+ metadata.gz: a531b9229b12b2beb8545c03b38fe909fdf6994f1a375d021c2eefcc800080d1197be810bda34838a373566e56a7b2d6789aeb59dbde37f09fce4f695b6c440b
7
+ data.tar.gz: 329efb21fb68e853fa9fbfabd07642c8440e45ae7dff3fb2e8243894871edeb0e60dcdee02446178f774d13afca14bb527421beb12c1b0c2bbb49b7b2229540a
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.203
1
+ 1.1.204
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 `id`.
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`.
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 `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 `user_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 `id`.
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`.
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 `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 `user_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.203"
4
+ VERSION = "1.1.204"
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.203
4
+ version: 1.1.204
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-20 00:00:00.000000000 Z
11
+ date: 2025-01-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable