@fctc/interface-logic 1.8.7 → 1.8.8
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/dist/configs.js +9 -12
- package/dist/configs.mjs +9 -12
- package/dist/environment.d.mts +16 -15
- package/dist/environment.d.ts +16 -15
- package/dist/environment.js +90 -79
- package/dist/environment.mjs +89 -79
- package/dist/hooks.d.mts +6 -1
- package/dist/hooks.d.ts +6 -1
- package/dist/hooks.js +278 -210
- package/dist/hooks.mjs +215 -148
- package/dist/provider.js +12 -13
- package/dist/provider.mjs +12 -13
- package/dist/services.d.mts +1 -0
- package/dist/services.d.ts +1 -0
- package/dist/services.js +130 -78
- package/dist/services.mjs +130 -78
- package/dist/store.js +7 -5
- package/dist/store.mjs +7 -5
- package/package.json +1 -1
package/dist/store.mjs
CHANGED
|
@@ -23,11 +23,13 @@ var breadcrums_slice_default = breadcrumbsSlice.reducer;
|
|
|
23
23
|
import { createSlice as createSlice2 } from "@reduxjs/toolkit";
|
|
24
24
|
var initialState2 = {
|
|
25
25
|
baseUrl: "",
|
|
26
|
-
requests: null,
|
|
27
26
|
companies: [],
|
|
28
27
|
user: {},
|
|
28
|
+
db: "",
|
|
29
|
+
refreshTokenEndpoint: "",
|
|
29
30
|
config: null,
|
|
30
31
|
envFile: null,
|
|
32
|
+
requests: null,
|
|
31
33
|
defaultCompany: {
|
|
32
34
|
id: null,
|
|
33
35
|
logo: "",
|
|
@@ -431,10 +433,6 @@ var selectSearch = (state) => state.search;
|
|
|
431
433
|
var selectSearchMap = (state) => state.search.searchMap;
|
|
432
434
|
var search_slice_default = searchSlice.reducer;
|
|
433
435
|
|
|
434
|
-
// src/store/index.ts
|
|
435
|
-
var useAppDispatch = useDispatch;
|
|
436
|
-
var useAppSelector = useSelector;
|
|
437
|
-
|
|
438
436
|
// src/store/store.ts
|
|
439
437
|
import { configureStore } from "@reduxjs/toolkit";
|
|
440
438
|
|
|
@@ -626,6 +624,10 @@ var envStore = configureStore({
|
|
|
626
624
|
serializableCheck: false
|
|
627
625
|
})
|
|
628
626
|
});
|
|
627
|
+
|
|
628
|
+
// src/store/index.ts
|
|
629
|
+
var useAppDispatch = useDispatch;
|
|
630
|
+
var useAppSelector = useSelector;
|
|
629
631
|
export {
|
|
630
632
|
breadcrumbsSlice,
|
|
631
633
|
clearSearchMap,
|