@provoly/hypervisor 2.3.8 → 2.3.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/hypervisor",
3
- "version": "2.3.8",
3
+ "version": "2.3.9",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "17.x || 18.x",
6
6
  "@angular/common": "17.x || 18.x",
@@ -9,4 +9,9 @@ export declare const HypervisorActions: {
9
9
  }) => {
10
10
  diUrl?: string;
11
11
  } & import("@ngrx/store").Action<"[Event] Set DI Url">>;
12
+ setOtUrl: import("@ngrx/store").ActionCreator<"[Event] Set OT Url", (props: {
13
+ otUrl?: string;
14
+ }) => {
15
+ otUrl?: string;
16
+ } & import("@ngrx/store").Action<"[Event] Set OT Url">>;
12
17
  };
@@ -3,6 +3,7 @@ export declare const hypFeatureKey = "@hvy/general";
3
3
  export interface HypState {
4
4
  url: string;
5
5
  diUrl?: string;
6
+ otUrl?: string;
6
7
  }
7
8
  export declare const hypInitialState: HypState;
8
9
  export declare function hypervisorReducer(state: HypState, action: Action): HypState;
@@ -3,4 +3,5 @@ export declare const HypSelectors: {
3
3
  feature: import("@ngrx/store").MemoizedSelector<object, HypState, import("@ngrx/store").DefaultProjectorFn<HypState>>;
4
4
  url: import("@ngrx/store").MemoizedSelector<object, string, (s1: HypState) => string>;
5
5
  diUrl: import("@ngrx/store").MemoizedSelector<object, string | undefined, (s1: HypState) => string | undefined>;
6
+ otUrl: import("@ngrx/store").MemoizedSelector<object, string | undefined, (s1: HypState) => string | undefined>;
6
7
  };