jamespot-react-core 1.3.32 → 1.3.34
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/build/app.bundle.js +1053 -1043
- package/build/app.bundle.js.map +1 -1
- package/build/src/redux/store.d.ts +8 -1
- package/package.json +4 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Reducer } from '@reduxjs/toolkit';
|
|
2
|
-
import { AdminLogs, Animations, Application, AssetReservation, Bookmark, Calendar, ContentReport, ExtraBot, Faq, FileIntegrity, Hook, jland, MagicPad, MediaLibrary, Model, Share, studio, TeamWork, TVDisplay, UserCurrent, Wall, WedocApp, Widget, WidgetEditor } from 'jamespot-front-business';
|
|
2
|
+
import { AdminLogs, Animations, Application, AssetReservation, Bookmark, Calendar, ContentReport, ExtraBot, Faq, FileIntegrity, Hook, jland, MagicPad, MediaLibrary, Model, Share, studio, TeamWork, TVDisplay, UserCurrent, VisioConnect, Wall, WedocApp, Widget, WidgetEditor } from 'jamespot-front-business';
|
|
3
3
|
import { ApplicationType, HookListType, jUserList, Model as ModelType, NetworkType, TinyMCECommonOptions, TinyMCEExtendedOptions } from 'jamespot-user-api';
|
|
4
4
|
import { TypedUseSelectorHook } from 'react-redux';
|
|
5
5
|
import { ArticleActionsType, ArticleSelectorType } from './slice/Article.slice';
|
|
@@ -41,6 +41,7 @@ export type AsyncReducers = {
|
|
|
41
41
|
[Share.slice.name]: typeof Share.slice.reducer;
|
|
42
42
|
[TeamWork.slice.name]: typeof TeamWork.slice.reducer;
|
|
43
43
|
[TVDisplay.slice.name]: typeof TVDisplay.slice.reducer;
|
|
44
|
+
[VisioConnect.slice.name]: typeof VisioConnect.slice.reducer;
|
|
44
45
|
[WedocApp.slice.name]: typeof WedocApp.slice.reducer;
|
|
45
46
|
[Widget.slice.name]: typeof Widget.slice.reducer;
|
|
46
47
|
[jland.slice.name]: typeof jland.slice.reducer;
|
|
@@ -126,6 +127,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
126
127
|
share: import("jamespot-front-business/dist/src/store/share/share.types").ShareAppState;
|
|
127
128
|
teamWork: {
|
|
128
129
|
teamWorkAiTasks: import("jamespot-front-business").TeamWorkSliceAiTasksState;
|
|
130
|
+
teamWorkAiDaySummary: import("jamespot-front-business").TeamWorkSliceAiDaySummaryState;
|
|
129
131
|
};
|
|
130
132
|
tvDisplay: {
|
|
131
133
|
channelsList: {
|
|
@@ -134,6 +136,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
134
136
|
loadingChannelDeletion: "idle" | "pending";
|
|
135
137
|
};
|
|
136
138
|
};
|
|
139
|
+
visioConnect: import("jamespot-front-business").VisioConnectSliceRootState;
|
|
137
140
|
wedoc: import("jamespot-front-business").WedocAppState;
|
|
138
141
|
widgets: import("jamespot-user-api").WidgetsState;
|
|
139
142
|
jland: {
|
|
@@ -215,6 +218,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
215
218
|
share: import("jamespot-front-business/dist/src/store/share/share.types").ShareAppState;
|
|
216
219
|
teamWork: {
|
|
217
220
|
teamWorkAiTasks: import("jamespot-front-business").TeamWorkSliceAiTasksState;
|
|
221
|
+
teamWorkAiDaySummary: import("jamespot-front-business").TeamWorkSliceAiDaySummaryState;
|
|
218
222
|
};
|
|
219
223
|
tvDisplay: {
|
|
220
224
|
channelsList: {
|
|
@@ -223,6 +227,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
|
|
|
223
227
|
loadingChannelDeletion: "idle" | "pending";
|
|
224
228
|
};
|
|
225
229
|
};
|
|
230
|
+
visioConnect: import("jamespot-front-business").VisioConnectSliceRootState;
|
|
226
231
|
wedoc: import("jamespot-front-business").WedocAppState;
|
|
227
232
|
widgets: import("jamespot-user-api").WidgetsState;
|
|
228
233
|
jland: {
|
|
@@ -309,6 +314,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
|
|
|
309
314
|
share: import("jamespot-front-business/dist/src/store/share/share.types").ShareAppState;
|
|
310
315
|
teamWork: {
|
|
311
316
|
teamWorkAiTasks: import("jamespot-front-business").TeamWorkSliceAiTasksState;
|
|
317
|
+
teamWorkAiDaySummary: import("jamespot-front-business").TeamWorkSliceAiDaySummaryState;
|
|
312
318
|
};
|
|
313
319
|
tvDisplay: {
|
|
314
320
|
channelsList: {
|
|
@@ -317,6 +323,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
|
|
|
317
323
|
loadingChannelDeletion: "idle" | "pending";
|
|
318
324
|
};
|
|
319
325
|
};
|
|
326
|
+
visioConnect: import("jamespot-front-business").VisioConnectSliceRootState;
|
|
320
327
|
wedoc: import("jamespot-front-business").WedocAppState;
|
|
321
328
|
widgets: import("jamespot-user-api").WidgetsState;
|
|
322
329
|
jland: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-react-core",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.34",
|
|
4
4
|
"description": "Jamespot React Core",
|
|
5
5
|
"main": "./build/app.bundle.js",
|
|
6
6
|
"types": "./build/src/App.d.ts",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"fork-ts-checker-webpack-plugin": "^9.1.0",
|
|
39
39
|
"history": "^5.3.0",
|
|
40
40
|
"husky": "^9.1.7",
|
|
41
|
-
"jamespot-front-business": "^1.3.
|
|
42
|
-
"jamespot-react-components": "^1.3.
|
|
43
|
-
"jamespot-user-api": "^1.3.
|
|
41
|
+
"jamespot-front-business": "^1.3.34",
|
|
42
|
+
"jamespot-react-components": "^1.3.34",
|
|
43
|
+
"jamespot-user-api": "^1.3.34",
|
|
44
44
|
"jest": "^30.2.0",
|
|
45
45
|
"jest-environment-jsdom": "^30.2.0",
|
|
46
46
|
"knip": "^5.70.0",
|