box-node-sdk 1.34.3 → 1.35.0
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.
- package/CHANGELOG.md +7 -1
- package/lib/managers/search.js +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 1.
|
|
3
|
+
## 1.35.0 (2020-11-02)
|
|
4
|
+
|
|
5
|
+
**New Features and Enhancements:**
|
|
6
|
+
|
|
7
|
+
- Add support for search param to get shared link items ([#547](https://github.com/box/box-node-sdk/pull/547))
|
|
8
|
+
|
|
9
|
+
## 1.34.3 (2020-10-02)
|
|
4
10
|
|
|
5
11
|
**Bug Fixes:**
|
|
6
12
|
|
package/lib/managers/search.js
CHANGED
|
@@ -76,6 +76,8 @@ Search.prototype = {
|
|
|
76
76
|
* @param {string} [options.type] - The type of objects you want to include in the search results. The type can be file, folder, or web_link
|
|
77
77
|
* @param {string} [options.trash_content=non_trashed_only] - Controls whether to search in the trash. The value can be trashed_only or non_trashed_only
|
|
78
78
|
* @param {SearchMetadataFilter[]} [options.mdfilters] - Searches for objects with a specific metadata object association. Searches with the this parameter do not require a query string
|
|
79
|
+
* @param {boolean} [options.include_recent_shared_links] - Determines whether to include items accessible only via shared link in the response.
|
|
80
|
+
* @param {string} [options.fields] - Comma-delimited list of fields to be included in the response
|
|
79
81
|
* @param {int} [options.limit=30] - The number of search results to return, max 200
|
|
80
82
|
* @param {int} [options.offset=0] - The search result at which to start the response, must be a multiple of limit
|
|
81
83
|
* @param {string} [options.sort] - The field on which the results should be sorted, e.g. "modified_at"
|