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 +4 -4
- data/_VERSION +1 -1
- data/docs/history.md +2 -2
- data/lib/files.com/models/history.rb +2 -2
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e418942f4b39b1c0900e95ef6f1a315985fe9871120ee8f46a1db10d1ce035a
|
4
|
+
data.tar.gz: 4d0b40c16b1ba40deeeeb96d7f622903d5be7a7fdb4c087c9f5b53cfcb5bf8b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0c18eb1922691a4c4d23684c76d8f02a75f2f21e3e2a7ec2925ba0997277ff0d48b3b5216fb7a34101bab67d949bb987f6f07ee1eb5bd556e4ba9cf5a162de
|
7
|
+
data.tar.gz: 5b613c903c193dc922908e2c03c818e99bc1c0260bb6a6f1b4f187b87542183b755b5603ced97d5e9903efa786f471504b2d3e84433774844a9f31d7ddc0945f
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
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 `
|
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 `
|
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 `
|
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 `
|
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 = {})
|
data/lib/files.com/version.rb
CHANGED