@wix/auto_sdk_media_files 1.0.22 → 1.0.23

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.
@@ -203,9 +203,27 @@ interface ListFilesSignature {
203
203
  declare function searchFiles$1(httpClient: HttpClient): SearchFilesSignature;
204
204
  interface SearchFilesSignature {
205
205
  /**
206
- * Searches all folders in the Media Manager and returns a list of files that match the terms specified in the parameters. <br/>
206
+ * Retrieves a list of up to 200 files with the specified filtering, sorting, and cursor paging.
207
207
  *
208
- * If no parameters are specified, the endpoint returns all files in the `MEDIA_ROOT` folder.
208
+ * If no parameters are specified, the method returns all files in the `MEDIA_ROOT` folder.
209
+ *
210
+ * ## Defaults
211
+ *
212
+ * Search Files has the following default setting, which you can override:
213
+ * + Sorted by `updatedDate` in descending order.
214
+ *
215
+ * ## Filters
216
+ *
217
+ * When using filters for dates, you must use
218
+ * [UTC time](https://en.wikipedia.org/wiki/Coordinated_Universal_Time).
219
+ *
220
+ * ## See also
221
+ *
222
+ * To learn about working with *Search* methods, see
223
+ * _API Query Language_
224
+ * ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language) | [REST](https://dev.wix.com/docs/rest/articles/get-started/api-query-language))
225
+ * and *Sorting and Paging*
226
+ * ([SDK](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/api-query-language#the-sort-array) | [REST](https://dev.wix.com/docs/rest/articles/get-started/sorting-and-paging)).
209
227
  * @param - Options to specify which folders to search.
210
228
  */
211
229
  (options?: SearchFilesOptions): Promise<NonNullablePaths<SearchFilesResponse, `files` | `files.${number}._id` | `files.${number}.displayName` | `files.${number}.url` | `files.${number}.hash` | `files.${number}.private` | `files.${number}.mediaType` | `files.${number}.media.audio._id` | `files.${number}.media.archive._id` | `files.${number}.media.archive.url` | `files.${number}.media.model3d._id` | `files.${number}.media.model3d.url` | `files.${number}.operationStatus` | `files.${number}.siteId` | `files.${number}.state`, 6> & {