@luigi-project/client 2.31.1-dev.202607100055 → 2.31.1-dev.202607110048
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 +10 -2
- package/luigi-client.d.ts +10 -2
- package/package.json +1 -1
package/esm/luigi-client.d.mts
CHANGED
|
@@ -805,8 +805,16 @@ export type getCoreSearchParams = () => CoreSearchParams;
|
|
|
805
805
|
* LuigiClient.addCoreSearchParams({luigi:'rocks'});
|
|
806
806
|
* LuigiClient.addCoreSearchParams({luigi:'rocks', false});
|
|
807
807
|
*/
|
|
808
|
-
export function addCoreSearchParams(
|
|
809
|
-
|
|
808
|
+
export function addCoreSearchParams(
|
|
809
|
+
searchParams: CoreSearchParams,
|
|
810
|
+
keepBrowserHistory: Boolean,
|
|
811
|
+
preventLuigiConfigUpdate: Boolean
|
|
812
|
+
): void;
|
|
813
|
+
export type addCoreSearchParams = (
|
|
814
|
+
searchParams: CoreSearchParams,
|
|
815
|
+
keepBrowserHistory: Boolean,
|
|
816
|
+
preventLuigiConfigUpdate: Boolean
|
|
817
|
+
) => void;
|
|
810
818
|
|
|
811
819
|
/**
|
|
812
820
|
* 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/luigi-client.d.ts
CHANGED
|
@@ -805,8 +805,16 @@ export type getCoreSearchParams = () => CoreSearchParams;
|
|
|
805
805
|
* LuigiClient.addCoreSearchParams({luigi:'rocks'});
|
|
806
806
|
* LuigiClient.addCoreSearchParams({luigi:'rocks', false});
|
|
807
807
|
*/
|
|
808
|
-
export function addCoreSearchParams(
|
|
809
|
-
|
|
808
|
+
export function addCoreSearchParams(
|
|
809
|
+
searchParams: CoreSearchParams,
|
|
810
|
+
keepBrowserHistory: Boolean,
|
|
811
|
+
preventLuigiConfigUpdate: Boolean
|
|
812
|
+
): void;
|
|
813
|
+
export type addCoreSearchParams = (
|
|
814
|
+
searchParams: CoreSearchParams,
|
|
815
|
+
keepBrowserHistory: Boolean,
|
|
816
|
+
preventLuigiConfigUpdate: Boolean
|
|
817
|
+
) => void;
|
|
810
818
|
|
|
811
819
|
/**
|
|
812
820
|
* 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/package.json
CHANGED