files.com 1.1.347 → 1.1.348
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 +4 -4
- data/_VERSION +1 -1
- data/docs/folder.md +1 -1
- data/lib/files.com/models/folder.rb +1 -1
- 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: ac4494044bc406d41c0e1cb51b66e2098297a44692b25fa1c8f3dfc0b5f9d95b
|
|
4
|
+
data.tar.gz: 9eaa9dee11ca7b7552400eeafecc965b4e4afbd8b3524ba891d0b5ea5e62c8e7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1620444f977c3d984dc9069daff9172589c4653153b5dce217b52e3b643ae1579e6880f224997160b709b8aa9c1534535edfab3328f42ce697808c7d84cab371
|
|
7
|
+
data.tar.gz: dea86d4bf4db1b98134a9fd52ba64ba5b839a3d83c2677ff9460ae8fca57294366bcb9a69d2386ab3c37e3384e8644c73d4bab5e3cd2b44509ebbad559f21ada
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.348
|
data/docs/folder.md
CHANGED
|
@@ -117,7 +117,7 @@ Files::Folder.list_for(path,
|
|
|
117
117
|
* `sort_by` (object): Search by field and direction. Valid fields are `path`, `size`, `modified_at_datetime`, `provided_modified_at`. Valid directions are `asc` and `desc`. Defaults to `{"path":"asc"}`.
|
|
118
118
|
* `search` (string): If specified, will search the folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. Results may be truncated if more than 1,000 possible matches exist. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
|
|
119
119
|
* `search_custom_metadata_key` (string): If provided, the search string in `search` will search for files where this custom metadata key matches the value sent in `search`. Set this to `*` to allow any metadata key to match the value sent in `search`.
|
|
120
|
-
* `search_all` (boolean): Search entire site? If
|
|
120
|
+
* `search_all` (boolean): Search entire site? If true, we will search the entire site. Do not provide a path when using this parameter. This is the same API used by the search bar in the web UI when running 'Search All Files'. Search results are a best effort, not real time, and not guaranteed to match every file. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
|
|
121
121
|
* `with_previews` (boolean): Include file previews?
|
|
122
122
|
* `with_priority_color` (boolean): Include file priority color information?
|
|
123
123
|
* `type` (string): Type of objects to return. Can be `folder` or `file`.
|
|
@@ -484,7 +484,7 @@ module Files
|
|
|
484
484
|
# sort_by - object - Search by field and direction. Valid fields are `path`, `size`, `modified_at_datetime`, `provided_modified_at`. Valid directions are `asc` and `desc`. Defaults to `{"path":"asc"}`.
|
|
485
485
|
# search - string - If specified, will search the folders/files list by name. Ignores text before last `/`. This is the same API used by the search bar in the web UI when running 'Search This Folder'. Search results are a best effort, not real time, and not guaranteed to perfectly match the latest folder listing. Results may be truncated if more than 1,000 possible matches exist. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
|
|
486
486
|
# search_custom_metadata_key - string - If provided, the search string in `search` will search for files where this custom metadata key matches the value sent in `search`. Set this to `*` to allow any metadata key to match the value sent in `search`.
|
|
487
|
-
# search_all - boolean - Search entire site? If
|
|
487
|
+
# search_all - boolean - Search entire site? If true, we will search the entire site. Do not provide a path when using this parameter. This is the same API used by the search bar in the web UI when running 'Search All Files'. Search results are a best effort, not real time, and not guaranteed to match every file. This field should only be used for ad-hoc (human) searching, and not as part of an automated process.
|
|
488
488
|
# with_previews - boolean - Include file previews?
|
|
489
489
|
# with_priority_color - boolean - Include file priority color information?
|
|
490
490
|
# type - string - Type of objects to return. Can be `folder` or `file`.
|
data/lib/files.com/version.rb
CHANGED