@luigi-project/client 2.13.1-dev.202405271913 → 2.13.1-dev.202405280026

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.
Files changed (2) hide show
  1. package/luigi-client.d.ts +2 -17
  2. package/package.json +1 -1
package/luigi-client.d.ts CHANGED
@@ -56,32 +56,17 @@ export declare interface DrawerSettings {
56
56
  overlap?: boolean;
57
57
  }
58
58
 
59
- export declare interface AuthContext {
59
+ export declare interface Context {
60
60
  authData?: AuthData;
61
- }
62
-
63
- export declare interface NavigationContext {
64
- context?: {
65
- parentNavigationContext?: string[];
66
- };
67
- }
68
-
69
- export declare interface InternalContext {
61
+ context?: { parentNavigationContext?: string[] };
70
62
  internal?: {
71
63
  userSettings?: getUserSettings;
72
64
  };
73
- }
74
-
75
- export declare interface ParamsContext {
76
65
  nodeParams?: NodeParams;
77
66
  pathParams?: PathParams;
78
- }
79
-
80
- export declare interface Context extends AuthContext, NavigationContext, InternalContext, ParamsContext {
81
67
  anchor?: string;
82
68
  [key: string]: any;
83
69
  }
84
-
85
70
  export declare interface NodeParams {
86
71
  [key: string]: string;
87
72
  }
package/package.json CHANGED
@@ -17,5 +17,5 @@
17
17
  "micro-frontends",
18
18
  "microfrontends"
19
19
  ],
20
- "version": "2.13.1-dev.202405271913"
20
+ "version": "2.13.1-dev.202405280026"
21
21
  }