@yuuvis/client-core 2.19.0 → 2.20.1

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.
@@ -35,7 +35,7 @@ export declare class AuthService {
35
35
  * redirect the user to the requested page after authentication.
36
36
  * This is done on app initialization (core-init).
37
37
  */
38
- setInitialRequestUri(): void;
38
+ setInitialRequestUri(): Observable<boolean>;
39
39
  /**
40
40
  * Get the URL that entered the app. May be a deep link that could then be
41
41
  * picked up again after user has been authenticated.
@@ -2,4 +2,4 @@ import { YuvConfig } from '../config/config.interface';
2
2
  /**
3
3
  * Providing functions,that are are injected at application startup and executed during app initialization.
4
4
  */
5
- export declare const init_moduleFnc: () => import("rxjs").Observable<YuvConfig[]> | import("rxjs").Observable<boolean | import("@yuuvis/client-core").YuvUser>;
5
+ export declare const init_moduleFnc: () => import("rxjs").Observable<boolean | import("@yuuvis/client-core").YuvUser | YuvConfig[]>;
@@ -36,7 +36,7 @@ export declare class SearchService {
36
36
  * @param query SearchQuery or CMIS query statement
37
37
  * @param page The number of the page to go to
38
38
  */
39
- getPage(query: SearchQuery | string, page: number, pageSize?: number): Observable<SearchResult>;
39
+ getPage(query: SearchQuery | string, page: number, pageSize?: number, includePermissions?: boolean): Observable<SearchResult>;
40
40
  /**
41
41
  * Map search result from the backend to applications SearchResult object
42
42
  * @param searchResponse The backend response
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yuuvis/client-core",
3
- "version": "2.19.0",
3
+ "version": "2.20.1",
4
4
  "author": "OPTIMAL SYSTEMS GmbH <npm@optimal-systems.de>",
5
5
  "license": "MIT",
6
6
  "peerDependencies": {