jamespot-front-business 1.1.39 → 1.1.41
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 +283 -90
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +272 -91
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +293 -102
- 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;
|
|
@@ -352,6 +590,19 @@ declare type AppInstallForType = Partial<{
|
|
|
352
590
|
}>;
|
|
353
591
|
declare const AppColumnsDefaultTypes: (AppFormItemTypes | ExtraAppFieldsItemViews)[];
|
|
354
592
|
declare const AppFormPrimaryList: AppFormItemTypes[];
|
|
593
|
+
declare type TaxonomyPropertyValue = Pick<Taxonomy, 'type' | 'id' | 'title'>;
|
|
594
|
+
declare type JType = {
|
|
595
|
+
cssClass: string;
|
|
596
|
+
cssColor: string;
|
|
597
|
+
label: string;
|
|
598
|
+
type: string;
|
|
599
|
+
mainType: string;
|
|
600
|
+
};
|
|
601
|
+
declare type ContentTypePropertyValue = Pick<JType, 'type' | 'label'>;
|
|
602
|
+
declare const AppFormFixedList: ExtraAppFieldsItemViews[];
|
|
603
|
+
declare const AppFormNoAsFieldList: Array<ExtraAppFieldsItemViews | AppFormItemTypes>;
|
|
604
|
+
declare const AppFormFieldOnlyInView: AppFormItemTypes[];
|
|
605
|
+
declare const AppFormNonPrimaryList: (AppFormItemTypes | ExtraAppFieldsItemViews)[];
|
|
355
606
|
|
|
356
607
|
declare type Loading = {
|
|
357
608
|
loading: 'idle' | 'pending';
|
|
@@ -394,7 +645,7 @@ declare const AssetReservation: {
|
|
|
394
645
|
actions: {
|
|
395
646
|
fetchBookableAsset: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookableAssetList, jamespot_user_api.BaseMessages>, void, {
|
|
396
647
|
dispatch: any;
|
|
397
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookableAssetRootState;
|
|
648
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookableAssetRootState;
|
|
398
649
|
extra: {
|
|
399
650
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
400
651
|
};
|
|
@@ -406,7 +657,7 @@ declare const AssetReservation: {
|
|
|
406
657
|
}>;
|
|
407
658
|
fetchConfiguration: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.AssetReservationConfiguration, jamespot_user_api.BaseMessages>, void, {
|
|
408
659
|
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;
|
|
660
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & jamespot_user_api.AssetReservationConfiguration & Loading;
|
|
410
661
|
extra: {
|
|
411
662
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
412
663
|
};
|
|
@@ -418,7 +669,7 @@ declare const AssetReservation: {
|
|
|
418
669
|
}>;
|
|
419
670
|
fetchReservation: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.ReservationList, jamespot_user_api.BaseMessages>, "history" | undefined, {
|
|
420
671
|
dispatch: any;
|
|
421
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ReservationRootState;
|
|
672
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ReservationRootState;
|
|
422
673
|
extra: {
|
|
423
674
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
424
675
|
};
|
|
@@ -442,69 +693,6 @@ declare const AssetReservation: {
|
|
|
442
693
|
};
|
|
443
694
|
};
|
|
444
695
|
|
|
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
696
|
declare type CommentsList = {
|
|
509
697
|
idArticle: number;
|
|
510
698
|
list: jCommentList[];
|
|
@@ -532,7 +720,7 @@ declare const Comment: {
|
|
|
532
720
|
}, "commentList/discardComments">;
|
|
533
721
|
fetchComments: _reduxjs_toolkit.AsyncThunk<CommentsList, jamespot_user_api.GetCommentsParams, {
|
|
534
722
|
dispatch: any;
|
|
535
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & CommentRootState;
|
|
723
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & CommentRootState;
|
|
536
724
|
extra: {
|
|
537
725
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
538
726
|
};
|
|
@@ -604,7 +792,7 @@ declare const Bookmark: {
|
|
|
604
792
|
resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
|
|
605
793
|
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
794
|
dispatch: any;
|
|
607
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
795
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
608
796
|
extra: {
|
|
609
797
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
610
798
|
};
|
|
@@ -621,7 +809,7 @@ declare const Bookmark: {
|
|
|
621
809
|
requestId?: string | undefined;
|
|
622
810
|
}, {
|
|
623
811
|
dispatch: any;
|
|
624
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
812
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
625
813
|
extra: {
|
|
626
814
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
627
815
|
};
|
|
@@ -640,7 +828,7 @@ declare const Bookmark: {
|
|
|
640
828
|
position: "after" | "before";
|
|
641
829
|
}, {
|
|
642
830
|
dispatch: any;
|
|
643
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
831
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
644
832
|
extra: {
|
|
645
833
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
646
834
|
};
|
|
@@ -657,7 +845,7 @@ declare const Bookmark: {
|
|
|
657
845
|
requestId?: string | undefined;
|
|
658
846
|
}, {
|
|
659
847
|
dispatch: any;
|
|
660
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
848
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
661
849
|
extra: {
|
|
662
850
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
663
851
|
};
|
|
@@ -672,7 +860,7 @@ declare const Bookmark: {
|
|
|
672
860
|
}>;
|
|
673
861
|
editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>>, {
|
|
674
862
|
dispatch: any;
|
|
675
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
863
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & BookmarkRootState;
|
|
676
864
|
extra: {
|
|
677
865
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
678
866
|
};
|
|
@@ -698,7 +886,7 @@ declare const Bookmark: {
|
|
|
698
886
|
} | {
|
|
699
887
|
namespace: "BOOKMARKS";
|
|
700
888
|
function: "update" | "add" | "delete";
|
|
701
|
-
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "
|
|
889
|
+
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}>) => void;
|
|
702
890
|
})[];
|
|
703
891
|
};
|
|
704
892
|
|
|
@@ -835,7 +1023,7 @@ declare const jland: {
|
|
|
835
1023
|
retrieveAllMaps: boolean;
|
|
836
1024
|
}, {
|
|
837
1025
|
dispatch: any;
|
|
838
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1026
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
839
1027
|
extra: {
|
|
840
1028
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
841
1029
|
};
|
|
@@ -850,7 +1038,7 @@ declare const jland: {
|
|
|
850
1038
|
retrieveAllMaps: boolean;
|
|
851
1039
|
}, {
|
|
852
1040
|
dispatch: any;
|
|
853
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1041
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
854
1042
|
extra: {
|
|
855
1043
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
856
1044
|
};
|
|
@@ -865,7 +1053,7 @@ declare const jland: {
|
|
|
865
1053
|
retrieveAllMaps: boolean;
|
|
866
1054
|
}, {
|
|
867
1055
|
dispatch: any;
|
|
868
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1056
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
869
1057
|
extra: {
|
|
870
1058
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
871
1059
|
};
|
|
@@ -880,7 +1068,7 @@ declare const jland: {
|
|
|
880
1068
|
retrieveAllMaps: boolean;
|
|
881
1069
|
}, {
|
|
882
1070
|
dispatch: any;
|
|
883
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1071
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
884
1072
|
extra: {
|
|
885
1073
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
886
1074
|
};
|
|
@@ -892,7 +1080,7 @@ declare const jland: {
|
|
|
892
1080
|
}>;
|
|
893
1081
|
fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.AdminLicensesNotAssigned, void, {
|
|
894
1082
|
dispatch: any;
|
|
895
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1083
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
896
1084
|
extra: {
|
|
897
1085
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
898
1086
|
};
|
|
@@ -907,7 +1095,7 @@ declare const jland: {
|
|
|
907
1095
|
map: MapCreationFront;
|
|
908
1096
|
}, {
|
|
909
1097
|
dispatch: any;
|
|
910
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
1098
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & JLandRootState;
|
|
911
1099
|
extra: {
|
|
912
1100
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
913
1101
|
};
|
|
@@ -1101,7 +1289,7 @@ declare const WedocApp: {
|
|
|
1101
1289
|
sort: "DESC" | "ASC";
|
|
1102
1290
|
}, {
|
|
1103
1291
|
dispatch: any;
|
|
1104
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1292
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1105
1293
|
extra: {
|
|
1106
1294
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1107
1295
|
};
|
|
@@ -1113,7 +1301,7 @@ declare const WedocApp: {
|
|
|
1113
1301
|
}>;
|
|
1114
1302
|
fetchRecentFiles: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.PagingResults<jamespot_user_api.WedocFileType>, jamespot_user_api.BaseMessages>, void, {
|
|
1115
1303
|
dispatch: any;
|
|
1116
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1304
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & WedocAppRootState;
|
|
1117
1305
|
extra: {
|
|
1118
1306
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1119
1307
|
};
|
|
@@ -1154,7 +1342,7 @@ declare const Share: {
|
|
|
1154
1342
|
idUser?: number;
|
|
1155
1343
|
}, {
|
|
1156
1344
|
dispatch: any;
|
|
1157
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ShareRootState;
|
|
1345
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & ShareRootState;
|
|
1158
1346
|
extra: {
|
|
1159
1347
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1160
1348
|
};
|
|
@@ -1194,7 +1382,7 @@ declare const TVDisplay: {
|
|
|
1194
1382
|
actions: {
|
|
1195
1383
|
fetchChannels: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<jamespot_user_api.TVChannelList>, number | void, {
|
|
1196
1384
|
dispatch: any;
|
|
1197
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1385
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1198
1386
|
extra: {
|
|
1199
1387
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1200
1388
|
};
|
|
@@ -1208,7 +1396,7 @@ declare const TVDisplay: {
|
|
|
1208
1396
|
channel: Pick<jamespot_user_api.TVChannelList, "id">;
|
|
1209
1397
|
}, {
|
|
1210
1398
|
dispatch: any;
|
|
1211
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1399
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & TVDisplayRootState;
|
|
1212
1400
|
extra: {
|
|
1213
1401
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1214
1402
|
};
|
|
@@ -1487,7 +1675,7 @@ declare const studio: {
|
|
|
1487
1675
|
actions: {
|
|
1488
1676
|
fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioAppBase[], undefined, {
|
|
1489
1677
|
dispatch: any;
|
|
1490
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1678
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1491
1679
|
extra: {
|
|
1492
1680
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1493
1681
|
};
|
|
@@ -1502,7 +1690,7 @@ declare const studio: {
|
|
|
1502
1690
|
status: StatusType;
|
|
1503
1691
|
}, {
|
|
1504
1692
|
dispatch: any;
|
|
1505
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1693
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1506
1694
|
extra: {
|
|
1507
1695
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1508
1696
|
};
|
|
@@ -1516,7 +1704,7 @@ declare const studio: {
|
|
|
1516
1704
|
idApp: string;
|
|
1517
1705
|
}, {
|
|
1518
1706
|
dispatch: any;
|
|
1519
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1707
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1520
1708
|
extra: {
|
|
1521
1709
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1522
1710
|
};
|
|
@@ -1530,7 +1718,7 @@ declare const studio: {
|
|
|
1530
1718
|
idApp: string;
|
|
1531
1719
|
}, {
|
|
1532
1720
|
dispatch: any;
|
|
1533
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1721
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1534
1722
|
extra: {
|
|
1535
1723
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1536
1724
|
};
|
|
@@ -1544,7 +1732,7 @@ declare const studio: {
|
|
|
1544
1732
|
idApp: string;
|
|
1545
1733
|
}, {
|
|
1546
1734
|
dispatch: any;
|
|
1547
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1735
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1548
1736
|
extra: {
|
|
1549
1737
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1550
1738
|
};
|
|
@@ -1556,9 +1744,10 @@ declare const studio: {
|
|
|
1556
1744
|
}>;
|
|
1557
1745
|
createNewStudioApp: _reduxjs_toolkit.AsyncThunk<StudioApplication, {
|
|
1558
1746
|
appName: string;
|
|
1747
|
+
callback?: () => void;
|
|
1559
1748
|
}, {
|
|
1560
1749
|
dispatch: any;
|
|
1561
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1750
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1562
1751
|
extra: {
|
|
1563
1752
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1564
1753
|
};
|
|
@@ -1573,7 +1762,7 @@ declare const studio: {
|
|
|
1573
1762
|
status: jamespot_user_api.StudioApplicationStatusEnumBased;
|
|
1574
1763
|
}, {
|
|
1575
1764
|
dispatch: any;
|
|
1576
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1765
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1577
1766
|
extra: {
|
|
1578
1767
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1579
1768
|
};
|
|
@@ -1585,7 +1774,7 @@ declare const studio: {
|
|
|
1585
1774
|
}>;
|
|
1586
1775
|
saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
|
|
1587
1776
|
dispatch: any;
|
|
1588
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1777
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1589
1778
|
extra: {
|
|
1590
1779
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1591
1780
|
};
|
|
@@ -1595,9 +1784,11 @@ declare const studio: {
|
|
|
1595
1784
|
fulfilledMeta?: unknown;
|
|
1596
1785
|
rejectedMeta?: unknown;
|
|
1597
1786
|
}>;
|
|
1598
|
-
installStudioApp: _reduxjs_toolkit.AsyncThunk<void,
|
|
1787
|
+
installStudioApp: _reduxjs_toolkit.AsyncThunk<void, {
|
|
1788
|
+
callback?: () => void;
|
|
1789
|
+
}, {
|
|
1599
1790
|
dispatch: any;
|
|
1600
|
-
state: Partial<ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1791
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1601
1792
|
extra: {
|
|
1602
1793
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1603
1794
|
};
|
|
@@ -1618,4 +1809,4 @@ declare const studio: {
|
|
|
1618
1809
|
};
|
|
1619
1810
|
};
|
|
1620
1811
|
|
|
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 };
|
|
1812
|
+
export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, 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, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, JLandMapFront, JLandRootState, JType, 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, TaxonomyPropertyValue, 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 };
|