@esri/arcgis-rest-portal 4.0.4 → 4.0.5

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.
@@ -1,7 +1,7 @@
1
1
  /* @preserve
2
- * @esri/arcgis-rest-portal - v4.0.3 - Apache-2.0
2
+ * @esri/arcgis-rest-portal - v4.0.4 - Apache-2.0
3
3
  * Copyright (c) 2017-2022 Esri, Inc.
4
- * Mon Aug 22 2022 19:56:33 GMT+0000 (Coordinated Universal Time)
4
+ * Thu Sep 15 2022 20:30:23 GMT+0000 (Coordinated Universal Time)
5
5
  */
6
6
  import { cleanUrl, request, appendCustomParams, warn } from '@esri/arcgis-rest-request';
7
7
 
@@ -1351,7 +1351,7 @@ function genericSearch(search, searchType) {
1351
1351
  };
1352
1352
  }
1353
1353
  else {
1354
- // searchUserAccess has one (knonw) valid value: "groupMember"
1354
+ // searchUserAccess has one (known) valid value: "groupMember"
1355
1355
  options = appendCustomParams(search, [
1356
1356
  "q",
1357
1357
  "num",
@@ -1359,7 +1359,12 @@ function genericSearch(search, searchType) {
1359
1359
  "sortField",
1360
1360
  "sortOrder",
1361
1361
  "searchUserAccess",
1362
- "searchUserName"
1362
+ "searchUserName",
1363
+ "filter",
1364
+ "countFields",
1365
+ "countSize",
1366
+ "categories",
1367
+ "categoryFilters"
1363
1368
  ], {
1364
1369
  httpMethod: "GET"
1365
1370
  });