monkey-front-core 21.2.1 → 21.2.3
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -368,6 +368,7 @@ interface MonkeyEcxAccessHandleTokenCredentials {
|
|
|
368
368
|
groupName: string;
|
|
369
369
|
type: string;
|
|
370
370
|
programUrl: string;
|
|
371
|
+
programToken: string;
|
|
371
372
|
}
|
|
372
373
|
interface MonkeyEcxTokenCredentials {
|
|
373
374
|
username: string;
|
|
@@ -1553,7 +1554,7 @@ declare abstract class MonkeyEcxCommonsActions {
|
|
|
1553
1554
|
}
|
|
1554
1555
|
|
|
1555
1556
|
interface IReducer {
|
|
1556
|
-
|
|
1557
|
+
featureName: string;
|
|
1557
1558
|
selectAll: any;
|
|
1558
1559
|
}
|
|
1559
1560
|
declare abstract class MonkeyEcxCommonsSelectors {
|
|
@@ -1683,7 +1684,7 @@ declare namespace monkeyecxSeeder_reducer_d {
|
|
|
1683
1684
|
};
|
|
1684
1685
|
}
|
|
1685
1686
|
|
|
1686
|
-
declare const
|
|
1687
|
+
declare const featureName = "mecx-core-storage";
|
|
1687
1688
|
interface State {
|
|
1688
1689
|
control: {
|
|
1689
1690
|
isLoading: boolean;
|
|
@@ -1694,11 +1695,11 @@ declare const initialState: State;
|
|
|
1694
1695
|
declare const reducer: _ngrx_store.ActionReducer<State, _ngrx_store.Action<string>>;
|
|
1695
1696
|
|
|
1696
1697
|
type monkeyecxStorage_reducer_d_State = State;
|
|
1697
|
-
declare const
|
|
1698
|
+
declare const monkeyecxStorage_reducer_d_featureName: typeof featureName;
|
|
1698
1699
|
declare const monkeyecxStorage_reducer_d_initialState: typeof initialState;
|
|
1699
1700
|
declare const monkeyecxStorage_reducer_d_reducer: typeof reducer;
|
|
1700
1701
|
declare namespace monkeyecxStorage_reducer_d {
|
|
1701
|
-
export {
|
|
1702
|
+
export { monkeyecxStorage_reducer_d_featureName as featureName, monkeyecxStorage_reducer_d_initialState as initialState, monkeyecxStorage_reducer_d_reducer as reducer };
|
|
1702
1703
|
export type { monkeyecxStorage_reducer_d_State as State };
|
|
1703
1704
|
}
|
|
1704
1705
|
|
|
Binary file
|