ozone-typescript-client 6.2.2 → 6.2.3
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.
|
@@ -25,7 +25,7 @@ export interface ItemClient<T extends Item> {
|
|
|
25
25
|
searchGenerator(searchRequest: SearchRequest): SearchIterator<T>;
|
|
26
26
|
queryDelete(searchQuery: Query, permanent?: boolean): Promise<UUID[]>;
|
|
27
27
|
}
|
|
28
|
-
export interface SearchIterator<T> extends AsyncIterableIterator<SearchResults<FromOzone<T>>> {
|
|
28
|
+
export interface SearchIterator<T extends Item> extends AsyncIterableIterator<SearchResults<FromOzone<T>>> {
|
|
29
29
|
/**
|
|
30
30
|
* Cancel ongoing http request
|
|
31
31
|
* It will end the generator
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ozone-typescript-client",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/sockjs-client": "^1.1.1"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "b45c950bad853d30b072b641ea0a47729cde5734"
|
|
41
41
|
}
|