jmapcloud-ng-core-types 1.0.36 → 1.0.37

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/index.ts CHANGED
@@ -477,7 +477,7 @@ export interface JSimpleSearchState {
477
477
  isLoading: boolean
478
478
  hasLoadingError: boolean
479
479
  queryString: string
480
- results: JSimpleSearchResult
480
+ results: JSimpleSearchResult[]
481
481
  }
482
482
 
483
483
  export interface JGeolocationState {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-core-types",
3
- "version": "1.0.36",
3
+ "version": "1.0.37",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG Core types and interfaces",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/public/core.d.ts CHANGED
@@ -7036,7 +7036,7 @@ declare namespace JMap {
7036
7036
  *
7037
7037
  * All query_string reserved characters are escaped, and the following characters can't be used: "<>"
7038
7038
  *
7039
- * This method will fetch a result object indicating all matches found.
7039
+ * This method will fetch an array of result object indicating all matches found.
7040
7040
  *
7041
7041
  * @throws if no project is loaded, if the passed search string is not a string or if it contains invalid characters.
7042
7042
  * @param queryString the search string to be used
@@ -34,7 +34,7 @@ declare interface JSimpleSearchResultHit {
34
34
  }
35
35
 
36
36
  declare interface JSimpleSearchSuccessEventParams {
37
- result: JSimpleSearchResult
37
+ result: JSimpleSearchResult[]
38
38
  }
39
39
 
40
40
  declare interface JSimpleSearchErrorEventParams {