files.com 1.1.203 → 1.1.205

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: 6df9181c3b313af62a9e7af4ffb62fa0ada5f1ffd268bf18570429d44077093c
4
+ data.tar.gz: 9a195a05fb3bf0a1f3f34a6290754e24120400ab79941bd6baa4784bf606f07b
5
5
  SHA512:
6
- metadata.gz: ba96227e40cb508d0b590486b8623469eda66cd493cb3b3547d63db18f1b3f0f223d8318efbac8da6a42381ba46abcd140e7c8eceba1f2cc8341e258ae3a6c42
7
- data.tar.gz: d117eac3b936adf524192930417613b149a2abec66e1de2495947f16ca5517aa0e46bab0fc8c8faa032d6baf1b4a260003f17dcdcc231f8e20008503972a6668
6
+ metadata.gz: 6bea181204c71b3ac4232510fc1b8d8f878c1bf34939e5c0e725485fbf64b83e85e210f46f9569358abb41fa1c30828e0ac6ca1ef7fdae19e9bd80ec034a6e8b
7
+ data.tar.gz: 9b54bea05d484e6b22cfc8a3a27140985dc5de9b736bc2e0a6f5c26975b146d93f0897f366062bcb60612bde665a1631178b62ebd1755ddccee091e90ac03817
data/README.md CHANGED
@@ -454,6 +454,7 @@ Files::FolderAdminPermissionRequiredError -> Files::NotAuthorizedError -> Files:
454
454
  |`DestinationFolderLimitedError`| `ProcessingFailureError` |
455
455
  |`DestinationParentConflictError`| `ProcessingFailureError` |
456
456
  |`DestinationParentDoesNotExistError`| `ProcessingFailureError` |
457
+ |`ExceededRuntimeLimitError`| `ProcessingFailureError` |
457
458
  |`ExpiredPrivateKeyError`| `ProcessingFailureError` |
458
459
  |`ExpiredPublicKeyError`| `ProcessingFailureError` |
459
460
  |`ExportFailureError`| `ProcessingFailureError` |
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.203
1
+ 1.1.205
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`.
@@ -170,6 +170,7 @@ module Files
170
170
  class DestinationFolderLimitedError < ProcessingFailureError; end
171
171
  class DestinationParentConflictError < ProcessingFailureError; end
172
172
  class DestinationParentDoesNotExistError < ProcessingFailureError; end
173
+ class ExceededRuntimeLimitError < ProcessingFailureError; end
173
174
  class ExpiredPrivateKeyError < ProcessingFailureError; end
174
175
  class ExpiredPublicKeyError < ProcessingFailureError; end
175
176
  class ExportFailureError < ProcessingFailureError; end
@@ -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.205"
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.205
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-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable