jamespot-front-business 1.1.39 → 1.1.40
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/cjs.js +217 -57
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +210 -58
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +276 -101
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,15 +1,253 @@
|
|
|
1
|
+
import * as redux from 'redux';
|
|
2
|
+
import { Dispatch as Dispatch$1 } from 'redux';
|
|
3
|
+
import * as jamespot_user_api from 'jamespot-user-api';
|
|
4
|
+
import { AnimationConfigurationType, ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, StudioApplicationBase, Taxonomy, ReservationList, BookableAssetList, AssetReservationConfiguration, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, JLandMap, AdminLicensesNotAssigned, Model as Model$1, NetworkType, WedocFileType, jUserLittle, PagingResults, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetWrapperProps, WidgetTypeKeys, WidgetDefinitionProps, CombinedWidgetContent, WidgetsState, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
|
|
1
5
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
2
|
-
import { EntityState,
|
|
6
|
+
import { EntityState, Dispatch, Action, PayloadAction } from '@reduxjs/toolkit';
|
|
3
7
|
import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
|
|
4
|
-
import * as jamespot_user_api from 'jamespot-user-api';
|
|
5
|
-
import { ApplicationType, WidgetsRootState, JamespotUserApi, AudienceAutocomplete, StudioApplicationBase, Taxonomy, ReservationList, BookableAssetList, AssetReservationConfiguration, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, JLandMap, AdminLicensesNotAssigned, Model as Model$1, NetworkType, WedocFileType, jUserLittle, PagingResults, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetWrapperProps, WidgetTypeKeys, WidgetDefinitionProps, CombinedWidgetContent, WidgetsState, WidgetVector, WidgetStateProps } from 'jamespot-user-api';
|
|
6
|
-
import * as redux from 'redux';
|
|
7
|
-
import { Dispatch } from 'redux';
|
|
8
8
|
import React from 'react';
|
|
9
9
|
import { MapCreationFront as MapCreationFront$1 } from 'src/types';
|
|
10
10
|
import { Loading as Loading$1 } from 'src/types/utils';
|
|
11
11
|
import { jCommentList } from 'jamespot-user-api/lib/src/types/comment';
|
|
12
12
|
|
|
13
|
+
declare type ToastType = 'success' | 'warning' | 'error';
|
|
14
|
+
declare type ToastRootState = {
|
|
15
|
+
toasts: EntityState<ToastEntity>;
|
|
16
|
+
};
|
|
17
|
+
declare type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
|
|
18
|
+
declare type ToastEntity = {
|
|
19
|
+
id: string;
|
|
20
|
+
label: string | {
|
|
21
|
+
id: string;
|
|
22
|
+
values: intlValuesType;
|
|
23
|
+
};
|
|
24
|
+
description?: string | {
|
|
25
|
+
id: string;
|
|
26
|
+
values: intlValuesType;
|
|
27
|
+
};
|
|
28
|
+
timeout: number;
|
|
29
|
+
type: ToastType;
|
|
30
|
+
};
|
|
31
|
+
declare const actions: {
|
|
32
|
+
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
|
|
33
|
+
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
34
|
+
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
35
|
+
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
36
|
+
};
|
|
37
|
+
declare type Toast = {
|
|
38
|
+
id?: string;
|
|
39
|
+
label: string | {
|
|
40
|
+
id: string;
|
|
41
|
+
values: intlValuesType;
|
|
42
|
+
};
|
|
43
|
+
description?: string | {
|
|
44
|
+
id: string;
|
|
45
|
+
values: intlValuesType;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
declare const Toast: {
|
|
49
|
+
slice: _reduxjs_toolkit.Slice<EntityState<ToastEntity>, {
|
|
50
|
+
addOne: {
|
|
51
|
+
<S extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<ToastEntity>, S>, entity: ToastEntity): S;
|
|
52
|
+
<S_1 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<ToastEntity>, S_1>, action: {
|
|
53
|
+
payload: ToastEntity;
|
|
54
|
+
type: string;
|
|
55
|
+
}): S_1;
|
|
56
|
+
};
|
|
57
|
+
removeOne: {
|
|
58
|
+
<S_2 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<ToastEntity>, S_2>, key: _reduxjs_toolkit.EntityId): S_2;
|
|
59
|
+
<S_3 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<ToastEntity>, S_3>, key: {
|
|
60
|
+
payload: _reduxjs_toolkit.EntityId;
|
|
61
|
+
type: string;
|
|
62
|
+
}): S_3;
|
|
63
|
+
};
|
|
64
|
+
}, "toasts">;
|
|
65
|
+
actions: {
|
|
66
|
+
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ToastEntity, "toasts/addOne">;
|
|
67
|
+
removeOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.EntityId, "toasts/removeOne">;
|
|
68
|
+
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
|
|
69
|
+
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
70
|
+
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
71
|
+
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
|
|
72
|
+
};
|
|
73
|
+
selectors: _reduxjs_toolkit.EntitySelectors<ToastEntity, ToastRootState>;
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
declare type AnimationSliceRootState = {
|
|
77
|
+
animationConfiguration: AnimationConfigurationType | null;
|
|
78
|
+
isActiveForCurrentUser: boolean;
|
|
79
|
+
isInitialized: boolean;
|
|
80
|
+
isToggleLoading: boolean;
|
|
81
|
+
animationConfigurationApp?: AnimationConfigurationType | null;
|
|
82
|
+
};
|
|
83
|
+
declare type AnimationsRootState = {
|
|
84
|
+
animations: AnimationSliceRootState;
|
|
85
|
+
};
|
|
86
|
+
declare const animationsSlice: _reduxjs_toolkit.Slice<AnimationSliceRootState, {}, "animations">;
|
|
87
|
+
declare const fetchCurrentAnimation: _reduxjs_toolkit.AsyncThunk<Omit<AnimationSliceRootState, "isToggleLoading">, void, {
|
|
88
|
+
dispatch: any;
|
|
89
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
90
|
+
extra: {
|
|
91
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
92
|
+
};
|
|
93
|
+
rejectValue: {
|
|
94
|
+
error: number;
|
|
95
|
+
errorMsg: string;
|
|
96
|
+
};
|
|
97
|
+
serializedErrorType?: unknown;
|
|
98
|
+
pendingMeta?: unknown;
|
|
99
|
+
fulfilledMeta?: unknown;
|
|
100
|
+
rejectedMeta?: unknown;
|
|
101
|
+
}>;
|
|
102
|
+
declare const fetchCurrentAnimationApp: _reduxjs_toolkit.AsyncThunk<AnimationConfigurationType | null, void, {
|
|
103
|
+
dispatch: any;
|
|
104
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
105
|
+
extra: {
|
|
106
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
107
|
+
};
|
|
108
|
+
rejectValue: {
|
|
109
|
+
error: number;
|
|
110
|
+
errorMsg: string;
|
|
111
|
+
};
|
|
112
|
+
serializedErrorType?: unknown;
|
|
113
|
+
pendingMeta?: unknown;
|
|
114
|
+
fulfilledMeta?: unknown;
|
|
115
|
+
rejectedMeta?: unknown;
|
|
116
|
+
}>;
|
|
117
|
+
declare const deleteCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, void, {
|
|
118
|
+
dispatch: any;
|
|
119
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
120
|
+
extra: {
|
|
121
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
122
|
+
};
|
|
123
|
+
rejectValue: {
|
|
124
|
+
error: number;
|
|
125
|
+
errorMsg: string;
|
|
126
|
+
};
|
|
127
|
+
serializedErrorType?: unknown;
|
|
128
|
+
pendingMeta?: unknown;
|
|
129
|
+
fulfilledMeta?: unknown;
|
|
130
|
+
rejectedMeta?: unknown;
|
|
131
|
+
}>;
|
|
132
|
+
declare const saveCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, AnimationConfigurationType, {
|
|
133
|
+
dispatch: any;
|
|
134
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
135
|
+
extra: {
|
|
136
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
137
|
+
};
|
|
138
|
+
rejectValue: {
|
|
139
|
+
error: number;
|
|
140
|
+
errorMsg: string;
|
|
141
|
+
};
|
|
142
|
+
serializedErrorType?: unknown;
|
|
143
|
+
pendingMeta?: unknown;
|
|
144
|
+
fulfilledMeta?: unknown;
|
|
145
|
+
rejectedMeta?: unknown;
|
|
146
|
+
}>;
|
|
147
|
+
declare const toggleAnimationIsActive: _reduxjs_toolkit.AsyncThunk<void, void, {
|
|
148
|
+
dispatch: any;
|
|
149
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
150
|
+
extra: {
|
|
151
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
152
|
+
};
|
|
153
|
+
rejectValue: {
|
|
154
|
+
error: number;
|
|
155
|
+
errorMsg: string;
|
|
156
|
+
};
|
|
157
|
+
serializedErrorType?: unknown;
|
|
158
|
+
pendingMeta?: unknown;
|
|
159
|
+
fulfilledMeta?: unknown;
|
|
160
|
+
rejectedMeta?: unknown;
|
|
161
|
+
}>;
|
|
162
|
+
declare const animationsReducer: redux.Reducer<AnimationSliceRootState, redux.AnyAction>;
|
|
163
|
+
declare const Animations: {
|
|
164
|
+
slice: _reduxjs_toolkit.Slice<AnimationSliceRootState, {}, "animations">;
|
|
165
|
+
actions: {
|
|
166
|
+
saveCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, AnimationConfigurationType, {
|
|
167
|
+
dispatch: any;
|
|
168
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
169
|
+
extra: {
|
|
170
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
171
|
+
};
|
|
172
|
+
rejectValue: {
|
|
173
|
+
error: number;
|
|
174
|
+
errorMsg: string;
|
|
175
|
+
};
|
|
176
|
+
serializedErrorType?: unknown;
|
|
177
|
+
pendingMeta?: unknown;
|
|
178
|
+
fulfilledMeta?: unknown;
|
|
179
|
+
rejectedMeta?: unknown;
|
|
180
|
+
}>;
|
|
181
|
+
fetchCurrentAnimation: _reduxjs_toolkit.AsyncThunk<Omit<AnimationSliceRootState, "isToggleLoading">, void, {
|
|
182
|
+
dispatch: any;
|
|
183
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
184
|
+
extra: {
|
|
185
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
186
|
+
};
|
|
187
|
+
rejectValue: {
|
|
188
|
+
error: number;
|
|
189
|
+
errorMsg: string;
|
|
190
|
+
};
|
|
191
|
+
serializedErrorType?: unknown;
|
|
192
|
+
pendingMeta?: unknown;
|
|
193
|
+
fulfilledMeta?: unknown;
|
|
194
|
+
rejectedMeta?: unknown;
|
|
195
|
+
}>;
|
|
196
|
+
deleteCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, void, {
|
|
197
|
+
dispatch: any;
|
|
198
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
199
|
+
extra: {
|
|
200
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
201
|
+
};
|
|
202
|
+
rejectValue: {
|
|
203
|
+
error: number;
|
|
204
|
+
errorMsg: string;
|
|
205
|
+
};
|
|
206
|
+
serializedErrorType?: unknown;
|
|
207
|
+
pendingMeta?: unknown;
|
|
208
|
+
fulfilledMeta?: unknown;
|
|
209
|
+
rejectedMeta?: unknown;
|
|
210
|
+
}>;
|
|
211
|
+
toggleAnimationIsActive: _reduxjs_toolkit.AsyncThunk<void, void, {
|
|
212
|
+
dispatch: any;
|
|
213
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
214
|
+
extra: {
|
|
215
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
216
|
+
};
|
|
217
|
+
rejectValue: {
|
|
218
|
+
error: number;
|
|
219
|
+
errorMsg: string;
|
|
220
|
+
};
|
|
221
|
+
serializedErrorType?: unknown;
|
|
222
|
+
pendingMeta?: unknown;
|
|
223
|
+
fulfilledMeta?: unknown;
|
|
224
|
+
rejectedMeta?: unknown;
|
|
225
|
+
}>;
|
|
226
|
+
fetchCurrentAnimationApp: _reduxjs_toolkit.AsyncThunk<AnimationConfigurationType | null, void, {
|
|
227
|
+
dispatch: any;
|
|
228
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
|
|
229
|
+
extra: {
|
|
230
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
231
|
+
};
|
|
232
|
+
rejectValue: {
|
|
233
|
+
error: number;
|
|
234
|
+
errorMsg: string;
|
|
235
|
+
};
|
|
236
|
+
serializedErrorType?: unknown;
|
|
237
|
+
pendingMeta?: unknown;
|
|
238
|
+
fulfilledMeta?: unknown;
|
|
239
|
+
rejectedMeta?: unknown;
|
|
240
|
+
}>;
|
|
241
|
+
};
|
|
242
|
+
selectors: {
|
|
243
|
+
selectCurrentAnimation: (state: AnimationsRootState) => AnimationConfigurationType | null;
|
|
244
|
+
isActiveAnimation: (state: AnimationsRootState) => boolean;
|
|
245
|
+
isToggleLoading: (state: AnimationsRootState) => boolean;
|
|
246
|
+
selectAnimationConfigurationApp: (state: AnimationsRootState) => AnimationConfigurationType | null | undefined;
|
|
247
|
+
};
|
|
248
|
+
getAnimationsRTHandlers: (dispatch: redux.Dispatch<any>) => jamespot_user_api.RTMessageHandler<"ANIMATIONS", "update" | "add" | "delete" | "toggle" | "getAnimationActive">[];
|
|
249
|
+
};
|
|
250
|
+
|
|
13
251
|
declare type ApplicationRootState = {
|
|
14
252
|
entities: {
|
|
15
253
|
applications: EntityState<ApplicationType>;
|
|
@@ -47,8 +285,8 @@ declare const Application: {
|
|
|
47
285
|
selectors: _reduxjs_toolkit.EntitySelectors<ApplicationType, ApplicationRootState>;
|
|
48
286
|
};
|
|
49
287
|
|
|
50
|
-
declare type RootState = Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
|
|
51
|
-
declare type RootDispatch = Dispatch<Action>;
|
|
288
|
+
declare type RootState = Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
|
|
289
|
+
declare type RootDispatch = Dispatch$1<Action>;
|
|
52
290
|
declare type ThunkApiConfig<T> = {
|
|
53
291
|
dispatch: any;
|
|
54
292
|
state: RootState & T;
|
|
@@ -394,7 +632,7 @@ declare const AssetReservation: {
|
|
|
394
632
|
actions: {
|
|
395
633
|
fetchBookableAsset: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookableAssetList, jamespot_user_api.BaseMessages>, void, {
|
|
396
634
|
dispatch: any;
|
|
397
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookableAssetRootState;
|
|
635
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookableAssetRootState;
|
|
398
636
|
extra: {
|
|
399
637
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
400
638
|
};
|
|
@@ -406,7 +644,7 @@ declare const AssetReservation: {
|
|
|
406
644
|
}>;
|
|
407
645
|
fetchConfiguration: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.AssetReservationConfiguration, jamespot_user_api.BaseMessages>, void, {
|
|
408
646
|
dispatch: any;
|
|
409
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & jamespot_user_api.AssetReservationConfiguration & Loading;
|
|
647
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & jamespot_user_api.AssetReservationConfiguration & Loading;
|
|
410
648
|
extra: {
|
|
411
649
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
412
650
|
};
|
|
@@ -418,7 +656,7 @@ declare const AssetReservation: {
|
|
|
418
656
|
}>;
|
|
419
657
|
fetchReservation: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.ReservationList, jamespot_user_api.BaseMessages>, "history" | undefined, {
|
|
420
658
|
dispatch: any;
|
|
421
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ReservationRootState;
|
|
659
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ReservationRootState;
|
|
422
660
|
extra: {
|
|
423
661
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
424
662
|
};
|
|
@@ -442,69 +680,6 @@ declare const AssetReservation: {
|
|
|
442
680
|
};
|
|
443
681
|
};
|
|
444
682
|
|
|
445
|
-
declare type ToastType = 'success' | 'warning' | 'error';
|
|
446
|
-
declare type ToastRootState = {
|
|
447
|
-
toasts: EntityState<ToastEntity>;
|
|
448
|
-
};
|
|
449
|
-
declare type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
|
|
450
|
-
declare type ToastEntity = {
|
|
451
|
-
id: string;
|
|
452
|
-
label: string | {
|
|
453
|
-
id: string;
|
|
454
|
-
values: intlValuesType;
|
|
455
|
-
};
|
|
456
|
-
description?: string | {
|
|
457
|
-
id: string;
|
|
458
|
-
values: intlValuesType;
|
|
459
|
-
};
|
|
460
|
-
timeout: number;
|
|
461
|
-
type: ToastType;
|
|
462
|
-
};
|
|
463
|
-
declare const actions: {
|
|
464
|
-
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
465
|
-
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
466
|
-
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
467
|
-
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
468
|
-
};
|
|
469
|
-
declare type Toast = {
|
|
470
|
-
id?: string;
|
|
471
|
-
label: string | {
|
|
472
|
-
id: string;
|
|
473
|
-
values: intlValuesType;
|
|
474
|
-
};
|
|
475
|
-
description?: string | {
|
|
476
|
-
id: string;
|
|
477
|
-
values: intlValuesType;
|
|
478
|
-
};
|
|
479
|
-
};
|
|
480
|
-
declare const Toast: {
|
|
481
|
-
slice: _reduxjs_toolkit.Slice<EntityState<ToastEntity>, {
|
|
482
|
-
addOne: {
|
|
483
|
-
<S extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<ToastEntity>, S>, entity: ToastEntity): S;
|
|
484
|
-
<S_1 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<ToastEntity>, S_1>, action: {
|
|
485
|
-
payload: ToastEntity;
|
|
486
|
-
type: string;
|
|
487
|
-
}): S_1;
|
|
488
|
-
};
|
|
489
|
-
removeOne: {
|
|
490
|
-
<S_2 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<ToastEntity>, S_2>, key: _reduxjs_toolkit.EntityId): S_2;
|
|
491
|
-
<S_3 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<ToastEntity>, S_3>, key: {
|
|
492
|
-
payload: _reduxjs_toolkit.EntityId;
|
|
493
|
-
type: string;
|
|
494
|
-
}): S_3;
|
|
495
|
-
};
|
|
496
|
-
}, "toasts">;
|
|
497
|
-
actions: {
|
|
498
|
-
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ToastEntity, "toasts/addOne">;
|
|
499
|
-
removeOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.EntityId, "toasts/removeOne">;
|
|
500
|
-
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
501
|
-
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
502
|
-
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
503
|
-
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
504
|
-
};
|
|
505
|
-
selectors: _reduxjs_toolkit.EntitySelectors<ToastEntity, ToastRootState>;
|
|
506
|
-
};
|
|
507
|
-
|
|
508
683
|
declare type CommentsList = {
|
|
509
684
|
idArticle: number;
|
|
510
685
|
list: jCommentList[];
|
|
@@ -532,7 +707,7 @@ declare const Comment: {
|
|
|
532
707
|
}, "commentList/discardComments">;
|
|
533
708
|
fetchComments: _reduxjs_toolkit.AsyncThunk<CommentsList, jamespot_user_api.GetCommentsParams, {
|
|
534
709
|
dispatch: any;
|
|
535
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & CommentRootState;
|
|
710
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & CommentRootState;
|
|
536
711
|
extra: {
|
|
537
712
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
538
713
|
};
|
|
@@ -604,7 +779,7 @@ declare const Bookmark: {
|
|
|
604
779
|
resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
|
|
605
780
|
fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>, jamespot_user_api.BaseMessages>, void, {
|
|
606
781
|
dispatch: any;
|
|
607
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
782
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
608
783
|
extra: {
|
|
609
784
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
610
785
|
};
|
|
@@ -621,7 +796,7 @@ declare const Bookmark: {
|
|
|
621
796
|
requestId?: string | undefined;
|
|
622
797
|
}, {
|
|
623
798
|
dispatch: any;
|
|
624
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
799
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
625
800
|
extra: {
|
|
626
801
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
627
802
|
};
|
|
@@ -640,7 +815,7 @@ declare const Bookmark: {
|
|
|
640
815
|
position: "after" | "before";
|
|
641
816
|
}, {
|
|
642
817
|
dispatch: any;
|
|
643
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
818
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
644
819
|
extra: {
|
|
645
820
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
646
821
|
};
|
|
@@ -657,7 +832,7 @@ declare const Bookmark: {
|
|
|
657
832
|
requestId?: string | undefined;
|
|
658
833
|
}, {
|
|
659
834
|
dispatch: any;
|
|
660
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
835
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
661
836
|
extra: {
|
|
662
837
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
663
838
|
};
|
|
@@ -672,7 +847,7 @@ declare const Bookmark: {
|
|
|
672
847
|
}>;
|
|
673
848
|
editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>>, {
|
|
674
849
|
dispatch: any;
|
|
675
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
850
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
676
851
|
extra: {
|
|
677
852
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
678
853
|
};
|
|
@@ -698,7 +873,7 @@ declare const Bookmark: {
|
|
|
698
873
|
} | {
|
|
699
874
|
namespace: "BOOKMARKS";
|
|
700
875
|
function: "update" | "add" | "delete";
|
|
701
|
-
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "
|
|
876
|
+
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}>) => void;
|
|
702
877
|
})[];
|
|
703
878
|
};
|
|
704
879
|
|
|
@@ -835,7 +1010,7 @@ declare const jland: {
|
|
|
835
1010
|
retrieveAllMaps: boolean;
|
|
836
1011
|
}, {
|
|
837
1012
|
dispatch: any;
|
|
838
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1013
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
839
1014
|
extra: {
|
|
840
1015
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
841
1016
|
};
|
|
@@ -850,7 +1025,7 @@ declare const jland: {
|
|
|
850
1025
|
retrieveAllMaps: boolean;
|
|
851
1026
|
}, {
|
|
852
1027
|
dispatch: any;
|
|
853
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1028
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
854
1029
|
extra: {
|
|
855
1030
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
856
1031
|
};
|
|
@@ -865,7 +1040,7 @@ declare const jland: {
|
|
|
865
1040
|
retrieveAllMaps: boolean;
|
|
866
1041
|
}, {
|
|
867
1042
|
dispatch: any;
|
|
868
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1043
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
869
1044
|
extra: {
|
|
870
1045
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
871
1046
|
};
|
|
@@ -880,7 +1055,7 @@ declare const jland: {
|
|
|
880
1055
|
retrieveAllMaps: boolean;
|
|
881
1056
|
}, {
|
|
882
1057
|
dispatch: any;
|
|
883
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1058
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
884
1059
|
extra: {
|
|
885
1060
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
886
1061
|
};
|
|
@@ -892,7 +1067,7 @@ declare const jland: {
|
|
|
892
1067
|
}>;
|
|
893
1068
|
fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.AdminLicensesNotAssigned, void, {
|
|
894
1069
|
dispatch: any;
|
|
895
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1070
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
896
1071
|
extra: {
|
|
897
1072
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
898
1073
|
};
|
|
@@ -907,7 +1082,7 @@ declare const jland: {
|
|
|
907
1082
|
map: MapCreationFront;
|
|
908
1083
|
}, {
|
|
909
1084
|
dispatch: any;
|
|
910
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1085
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
911
1086
|
extra: {
|
|
912
1087
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
913
1088
|
};
|
|
@@ -1101,7 +1276,7 @@ declare const WedocApp: {
|
|
|
1101
1276
|
sort: "DESC" | "ASC";
|
|
1102
1277
|
}, {
|
|
1103
1278
|
dispatch: any;
|
|
1104
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1279
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1105
1280
|
extra: {
|
|
1106
1281
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1107
1282
|
};
|
|
@@ -1113,7 +1288,7 @@ declare const WedocApp: {
|
|
|
1113
1288
|
}>;
|
|
1114
1289
|
fetchRecentFiles: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.PagingResults<jamespot_user_api.WedocFileType>, jamespot_user_api.BaseMessages>, void, {
|
|
1115
1290
|
dispatch: any;
|
|
1116
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1291
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1117
1292
|
extra: {
|
|
1118
1293
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1119
1294
|
};
|
|
@@ -1154,7 +1329,7 @@ declare const Share: {
|
|
|
1154
1329
|
idUser?: number;
|
|
1155
1330
|
}, {
|
|
1156
1331
|
dispatch: any;
|
|
1157
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ShareRootState;
|
|
1332
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ShareRootState;
|
|
1158
1333
|
extra: {
|
|
1159
1334
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1160
1335
|
};
|
|
@@ -1194,7 +1369,7 @@ declare const TVDisplay: {
|
|
|
1194
1369
|
actions: {
|
|
1195
1370
|
fetchChannels: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<jamespot_user_api.TVChannelList>, number | void, {
|
|
1196
1371
|
dispatch: any;
|
|
1197
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1372
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1198
1373
|
extra: {
|
|
1199
1374
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1200
1375
|
};
|
|
@@ -1208,7 +1383,7 @@ declare const TVDisplay: {
|
|
|
1208
1383
|
channel: Pick<jamespot_user_api.TVChannelList, "id">;
|
|
1209
1384
|
}, {
|
|
1210
1385
|
dispatch: any;
|
|
1211
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1386
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1212
1387
|
extra: {
|
|
1213
1388
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1214
1389
|
};
|
|
@@ -1487,7 +1662,7 @@ declare const studio: {
|
|
|
1487
1662
|
actions: {
|
|
1488
1663
|
fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioAppBase[], undefined, {
|
|
1489
1664
|
dispatch: any;
|
|
1490
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1665
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1491
1666
|
extra: {
|
|
1492
1667
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1493
1668
|
};
|
|
@@ -1502,7 +1677,7 @@ declare const studio: {
|
|
|
1502
1677
|
status: StatusType;
|
|
1503
1678
|
}, {
|
|
1504
1679
|
dispatch: any;
|
|
1505
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1680
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1506
1681
|
extra: {
|
|
1507
1682
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1508
1683
|
};
|
|
@@ -1516,7 +1691,7 @@ declare const studio: {
|
|
|
1516
1691
|
idApp: string;
|
|
1517
1692
|
}, {
|
|
1518
1693
|
dispatch: any;
|
|
1519
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1694
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1520
1695
|
extra: {
|
|
1521
1696
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1522
1697
|
};
|
|
@@ -1530,7 +1705,7 @@ declare const studio: {
|
|
|
1530
1705
|
idApp: string;
|
|
1531
1706
|
}, {
|
|
1532
1707
|
dispatch: any;
|
|
1533
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1708
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1534
1709
|
extra: {
|
|
1535
1710
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1536
1711
|
};
|
|
@@ -1544,7 +1719,7 @@ declare const studio: {
|
|
|
1544
1719
|
idApp: string;
|
|
1545
1720
|
}, {
|
|
1546
1721
|
dispatch: any;
|
|
1547
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1722
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1548
1723
|
extra: {
|
|
1549
1724
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1550
1725
|
};
|
|
@@ -1558,7 +1733,7 @@ declare const studio: {
|
|
|
1558
1733
|
appName: string;
|
|
1559
1734
|
}, {
|
|
1560
1735
|
dispatch: any;
|
|
1561
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1736
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1562
1737
|
extra: {
|
|
1563
1738
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1564
1739
|
};
|
|
@@ -1573,7 +1748,7 @@ declare const studio: {
|
|
|
1573
1748
|
status: jamespot_user_api.StudioApplicationStatusEnumBased;
|
|
1574
1749
|
}, {
|
|
1575
1750
|
dispatch: any;
|
|
1576
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1751
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1577
1752
|
extra: {
|
|
1578
1753
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1579
1754
|
};
|
|
@@ -1585,7 +1760,7 @@ declare const studio: {
|
|
|
1585
1760
|
}>;
|
|
1586
1761
|
saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
|
|
1587
1762
|
dispatch: any;
|
|
1588
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1763
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1589
1764
|
extra: {
|
|
1590
1765
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1591
1766
|
};
|
|
@@ -1597,7 +1772,7 @@ declare const studio: {
|
|
|
1597
1772
|
}>;
|
|
1598
1773
|
installStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
|
|
1599
1774
|
dispatch: any;
|
|
1600
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1775
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1601
1776
|
extra: {
|
|
1602
1777
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1603
1778
|
};
|
|
@@ -1618,4 +1793,4 @@ declare const studio: {
|
|
|
1618
1793
|
};
|
|
1619
1794
|
};
|
|
1620
1795
|
|
|
1621
|
-
export { APP_STATUS_TYPE, AUDIENCE, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormItemTypes, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, jland, slice, studio, updateWidgetContent, viewsList };
|
|
1796
|
+
export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormItemTypes, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentRootState, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, MODE_EDIT, MODE_VIEW, MapCreationFront, MapExtraFieldsWithView, Model, ModelRootState, Network, NetworkRootState, Platform, PlatformRootState, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, deleteCurrentAnimation, fetchCurrentAnimation, fetchCurrentAnimationApp, jland, saveCurrentAnimation, slice, studio, toggleAnimationIsActive, updateWidgetContent, viewsList };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-front-business",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.40",
|
|
4
4
|
"description": "typescript utils",
|
|
5
5
|
"main": "dist/cjs.js",
|
|
6
6
|
"module": "dist/esm.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@reduxjs/toolkit": "1.9.0",
|
|
40
40
|
"@types/uuid": "^9.0.8",
|
|
41
|
-
"jamespot-user-api": "^1.0.
|
|
41
|
+
"jamespot-user-api": "^1.0.147",
|
|
42
42
|
"react-redux": "7.2.9",
|
|
43
43
|
"redux": "4.2.0",
|
|
44
44
|
"uuid": "^9.0.1"
|