@luigi-project/client 2.31.1-dev.20260780050 → 2.31.1-dev.20260790055
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/esm/luigi-client.d.mts +3 -2
- package/esm/luigi-client.mjs +2 -2
- package/esm/luigi-client.mjs.map +1 -1
- package/luigi-client.d.ts +3 -2
- package/luigi-client.js.map +1 -1
- package/package.json +1 -1
package/esm/luigi-client.d.mts
CHANGED
|
@@ -799,13 +799,14 @@ export type getCoreSearchParams = () => CoreSearchParams;
|
|
|
799
799
|
* Sends search query parameters to Luigi core. If it is allowed on node level it will be added to url.
|
|
800
800
|
* @param {Object} searchParams
|
|
801
801
|
* @param {boolean} keepBrowserHistory
|
|
802
|
+
* @param {boolean} preventLuigiConfigUpdate
|
|
802
803
|
* @memberof Lifecycle
|
|
803
804
|
* @example
|
|
804
805
|
* LuigiClient.addCoreSearchParams({luigi:'rocks'});
|
|
805
806
|
* LuigiClient.addCoreSearchParams({luigi:'rocks', false});
|
|
806
807
|
*/
|
|
807
|
-
export function addCoreSearchParams(searchParams: CoreSearchParams, keepBrowserHistory: Boolean): void;
|
|
808
|
-
export type addCoreSearchParams = (searchParams: CoreSearchParams, keepBrowserHistory: Boolean) => void;
|
|
808
|
+
export function addCoreSearchParams(searchParams: CoreSearchParams, keepBrowserHistory: Boolean, preventLuigiConfigUpdate: Boolean): void;
|
|
809
|
+
export type addCoreSearchParams = (searchParams: CoreSearchParams, keepBrowserHistory: Boolean, preventLuigiConfigUpdate: Boolean) => void;
|
|
809
810
|
|
|
810
811
|
/**
|
|
811
812
|
* Returns the current client permissions as specified in the navigation node or an empty object. For details, see [Node parameters](navigation-parameters-reference.md).
|
package/esm/luigi-client.mjs
CHANGED
|
@@ -2056,8 +2056,8 @@ class LuigiClient {
|
|
|
2056
2056
|
getCoreSearchParams() {
|
|
2057
2057
|
return lifecycleManager$1.getCoreSearchParams();
|
|
2058
2058
|
}
|
|
2059
|
-
addCoreSearchParams(searchParams, keepBrowserHistory,
|
|
2060
|
-
return lifecycleManager$1.addCoreSearchParams(searchParams, keepBrowserHistory,
|
|
2059
|
+
addCoreSearchParams(searchParams, keepBrowserHistory, preventLuigiConfigUpdate) {
|
|
2060
|
+
return lifecycleManager$1.addCoreSearchParams(searchParams, keepBrowserHistory, preventLuigiConfigUpdate);
|
|
2061
2061
|
}
|
|
2062
2062
|
getClientPermissions() {
|
|
2063
2063
|
return lifecycleManager$1.getClientPermissions();
|