jamespot-front-business 1.1.38 → 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 +1027 -70
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +1025 -78
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +296 -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;
|
|
@@ -99,6 +337,7 @@ interface StudioApplication {
|
|
|
99
337
|
idApp: string;
|
|
100
338
|
status: AppStatusType;
|
|
101
339
|
author?: string;
|
|
340
|
+
studioVersion: number;
|
|
102
341
|
manifest: StudioAppManifest;
|
|
103
342
|
inWorkVersion?: StudioApplication;
|
|
104
343
|
fields: AppFieldsFormItem[];
|
|
@@ -149,6 +388,7 @@ declare type AppFieldsFormItem = {
|
|
|
149
388
|
isActive?: boolean;
|
|
150
389
|
isFixed?: boolean;
|
|
151
390
|
isOptional?: boolean;
|
|
391
|
+
isLockedValue?: boolean;
|
|
152
392
|
};
|
|
153
393
|
declare type AppViewFieldItem = {
|
|
154
394
|
type: AppFormItemTypes | ExtraAppFieldsItemViews;
|
|
@@ -200,7 +440,8 @@ declare enum AppFormItemTypes {
|
|
|
200
440
|
ADDFILEATTACHMENT = "ADDFILEATTACHMENT",
|
|
201
441
|
CODEHTML = "CODEHTML",
|
|
202
442
|
USERLINK = "USERLINK",
|
|
203
|
-
CONTENTLINK = "CONTENTLINK"
|
|
443
|
+
CONTENTLINK = "CONTENTLINK",
|
|
444
|
+
RANGE = "RANGE"
|
|
204
445
|
}
|
|
205
446
|
declare enum ExtraAppFieldsItemViews {
|
|
206
447
|
TITLE = "TITLE",
|
|
@@ -347,6 +588,8 @@ declare type AppInstallForType = Partial<{
|
|
|
347
588
|
class: string;
|
|
348
589
|
Pseudo: string;
|
|
349
590
|
}>;
|
|
591
|
+
declare const AppColumnsDefaultTypes: (AppFormItemTypes | ExtraAppFieldsItemViews)[];
|
|
592
|
+
declare const AppFormPrimaryList: AppFormItemTypes[];
|
|
350
593
|
|
|
351
594
|
declare type Loading = {
|
|
352
595
|
loading: 'idle' | 'pending';
|
|
@@ -389,7 +632,7 @@ declare const AssetReservation: {
|
|
|
389
632
|
actions: {
|
|
390
633
|
fetchBookableAsset: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.BookableAssetList, jamespot_user_api.BaseMessages>, void, {
|
|
391
634
|
dispatch: any;
|
|
392
|
-
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;
|
|
393
636
|
extra: {
|
|
394
637
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
395
638
|
};
|
|
@@ -401,7 +644,7 @@ declare const AssetReservation: {
|
|
|
401
644
|
}>;
|
|
402
645
|
fetchConfiguration: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.AssetReservationConfiguration, jamespot_user_api.BaseMessages>, void, {
|
|
403
646
|
dispatch: any;
|
|
404
|
-
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;
|
|
405
648
|
extra: {
|
|
406
649
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
407
650
|
};
|
|
@@ -413,7 +656,7 @@ declare const AssetReservation: {
|
|
|
413
656
|
}>;
|
|
414
657
|
fetchReservation: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<jamespot_user_api.ReservationList, jamespot_user_api.BaseMessages>, "history" | undefined, {
|
|
415
658
|
dispatch: any;
|
|
416
|
-
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;
|
|
417
660
|
extra: {
|
|
418
661
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
419
662
|
};
|
|
@@ -437,69 +680,6 @@ declare const AssetReservation: {
|
|
|
437
680
|
};
|
|
438
681
|
};
|
|
439
682
|
|
|
440
|
-
declare type ToastType = 'success' | 'warning' | 'error';
|
|
441
|
-
declare type ToastRootState = {
|
|
442
|
-
toasts: EntityState<ToastEntity>;
|
|
443
|
-
};
|
|
444
|
-
declare type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
|
|
445
|
-
declare type ToastEntity = {
|
|
446
|
-
id: string;
|
|
447
|
-
label: string | {
|
|
448
|
-
id: string;
|
|
449
|
-
values: intlValuesType;
|
|
450
|
-
};
|
|
451
|
-
description?: string | {
|
|
452
|
-
id: string;
|
|
453
|
-
values: intlValuesType;
|
|
454
|
-
};
|
|
455
|
-
timeout: number;
|
|
456
|
-
type: ToastType;
|
|
457
|
-
};
|
|
458
|
-
declare const actions: {
|
|
459
|
-
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
460
|
-
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
461
|
-
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
462
|
-
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
463
|
-
};
|
|
464
|
-
declare type Toast = {
|
|
465
|
-
id?: string;
|
|
466
|
-
label: string | {
|
|
467
|
-
id: string;
|
|
468
|
-
values: intlValuesType;
|
|
469
|
-
};
|
|
470
|
-
description?: string | {
|
|
471
|
-
id: string;
|
|
472
|
-
values: intlValuesType;
|
|
473
|
-
};
|
|
474
|
-
};
|
|
475
|
-
declare const Toast: {
|
|
476
|
-
slice: _reduxjs_toolkit.Slice<EntityState<ToastEntity>, {
|
|
477
|
-
addOne: {
|
|
478
|
-
<S extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<ToastEntity>, S>, entity: ToastEntity): S;
|
|
479
|
-
<S_1 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<ToastEntity>, S_1>, action: {
|
|
480
|
-
payload: ToastEntity;
|
|
481
|
-
type: string;
|
|
482
|
-
}): S_1;
|
|
483
|
-
};
|
|
484
|
-
removeOne: {
|
|
485
|
-
<S_2 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<ToastEntity>, S_2>, key: _reduxjs_toolkit.EntityId): S_2;
|
|
486
|
-
<S_3 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<ToastEntity>, S_3>, key: {
|
|
487
|
-
payload: _reduxjs_toolkit.EntityId;
|
|
488
|
-
type: string;
|
|
489
|
-
}): S_3;
|
|
490
|
-
};
|
|
491
|
-
}, "toasts">;
|
|
492
|
-
actions: {
|
|
493
|
-
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ToastEntity, "toasts/addOne">;
|
|
494
|
-
removeOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.EntityId, "toasts/removeOne">;
|
|
495
|
-
addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
496
|
-
success: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
497
|
-
warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
498
|
-
error: (toast: Toast, timeout?: number) => (dispatch: Dispatch$1) => string;
|
|
499
|
-
};
|
|
500
|
-
selectors: _reduxjs_toolkit.EntitySelectors<ToastEntity, ToastRootState>;
|
|
501
|
-
};
|
|
502
|
-
|
|
503
683
|
declare type CommentsList = {
|
|
504
684
|
idArticle: number;
|
|
505
685
|
list: jCommentList[];
|
|
@@ -527,7 +707,7 @@ declare const Comment: {
|
|
|
527
707
|
}, "commentList/discardComments">;
|
|
528
708
|
fetchComments: _reduxjs_toolkit.AsyncThunk<CommentsList, jamespot_user_api.GetCommentsParams, {
|
|
529
709
|
dispatch: any;
|
|
530
|
-
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;
|
|
531
711
|
extra: {
|
|
532
712
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
533
713
|
};
|
|
@@ -599,7 +779,7 @@ declare const Bookmark: {
|
|
|
599
779
|
resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
|
|
600
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, {
|
|
601
781
|
dispatch: any;
|
|
602
|
-
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;
|
|
603
783
|
extra: {
|
|
604
784
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
605
785
|
};
|
|
@@ -616,7 +796,7 @@ declare const Bookmark: {
|
|
|
616
796
|
requestId?: string | undefined;
|
|
617
797
|
}, {
|
|
618
798
|
dispatch: any;
|
|
619
|
-
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;
|
|
620
800
|
extra: {
|
|
621
801
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
622
802
|
};
|
|
@@ -635,7 +815,7 @@ declare const Bookmark: {
|
|
|
635
815
|
position: "after" | "before";
|
|
636
816
|
}, {
|
|
637
817
|
dispatch: any;
|
|
638
|
-
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;
|
|
639
819
|
extra: {
|
|
640
820
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
641
821
|
};
|
|
@@ -652,7 +832,7 @@ declare const Bookmark: {
|
|
|
652
832
|
requestId?: string | undefined;
|
|
653
833
|
}, {
|
|
654
834
|
dispatch: any;
|
|
655
|
-
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;
|
|
656
836
|
extra: {
|
|
657
837
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
658
838
|
};
|
|
@@ -667,7 +847,7 @@ declare const Bookmark: {
|
|
|
667
847
|
}>;
|
|
668
848
|
editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<jamespot_user_api.BookmarkRawList<jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle>>, {
|
|
669
849
|
dispatch: any;
|
|
670
|
-
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;
|
|
671
851
|
extra: {
|
|
672
852
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
673
853
|
};
|
|
@@ -693,7 +873,7 @@ declare const Bookmark: {
|
|
|
693
873
|
} | {
|
|
694
874
|
namespace: "BOOKMARKS";
|
|
695
875
|
function: "update" | "add" | "delete";
|
|
696
|
-
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;
|
|
697
877
|
})[];
|
|
698
878
|
};
|
|
699
879
|
|
|
@@ -830,7 +1010,7 @@ declare const jland: {
|
|
|
830
1010
|
retrieveAllMaps: boolean;
|
|
831
1011
|
}, {
|
|
832
1012
|
dispatch: any;
|
|
833
|
-
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;
|
|
834
1014
|
extra: {
|
|
835
1015
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
836
1016
|
};
|
|
@@ -845,7 +1025,7 @@ declare const jland: {
|
|
|
845
1025
|
retrieveAllMaps: boolean;
|
|
846
1026
|
}, {
|
|
847
1027
|
dispatch: any;
|
|
848
|
-
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;
|
|
849
1029
|
extra: {
|
|
850
1030
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
851
1031
|
};
|
|
@@ -860,7 +1040,7 @@ declare const jland: {
|
|
|
860
1040
|
retrieveAllMaps: boolean;
|
|
861
1041
|
}, {
|
|
862
1042
|
dispatch: any;
|
|
863
|
-
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;
|
|
864
1044
|
extra: {
|
|
865
1045
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
866
1046
|
};
|
|
@@ -875,7 +1055,7 @@ declare const jland: {
|
|
|
875
1055
|
retrieveAllMaps: boolean;
|
|
876
1056
|
}, {
|
|
877
1057
|
dispatch: any;
|
|
878
|
-
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;
|
|
879
1059
|
extra: {
|
|
880
1060
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
881
1061
|
};
|
|
@@ -887,7 +1067,7 @@ declare const jland: {
|
|
|
887
1067
|
}>;
|
|
888
1068
|
fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.AdminLicensesNotAssigned, void, {
|
|
889
1069
|
dispatch: any;
|
|
890
|
-
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;
|
|
891
1071
|
extra: {
|
|
892
1072
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
893
1073
|
};
|
|
@@ -902,7 +1082,7 @@ declare const jland: {
|
|
|
902
1082
|
map: MapCreationFront;
|
|
903
1083
|
}, {
|
|
904
1084
|
dispatch: any;
|
|
905
|
-
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;
|
|
906
1086
|
extra: {
|
|
907
1087
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
908
1088
|
};
|
|
@@ -1096,7 +1276,7 @@ declare const WedocApp: {
|
|
|
1096
1276
|
sort: "DESC" | "ASC";
|
|
1097
1277
|
}, {
|
|
1098
1278
|
dispatch: any;
|
|
1099
|
-
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;
|
|
1100
1280
|
extra: {
|
|
1101
1281
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1102
1282
|
};
|
|
@@ -1108,7 +1288,7 @@ declare const WedocApp: {
|
|
|
1108
1288
|
}>;
|
|
1109
1289
|
fetchRecentFiles: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<jamespot_user_api.PagingResults<jamespot_user_api.WedocFileType>, jamespot_user_api.BaseMessages>, void, {
|
|
1110
1290
|
dispatch: any;
|
|
1111
|
-
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;
|
|
1112
1292
|
extra: {
|
|
1113
1293
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1114
1294
|
};
|
|
@@ -1149,7 +1329,7 @@ declare const Share: {
|
|
|
1149
1329
|
idUser?: number;
|
|
1150
1330
|
}, {
|
|
1151
1331
|
dispatch: any;
|
|
1152
|
-
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;
|
|
1153
1333
|
extra: {
|
|
1154
1334
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1155
1335
|
};
|
|
@@ -1189,7 +1369,7 @@ declare const TVDisplay: {
|
|
|
1189
1369
|
actions: {
|
|
1190
1370
|
fetchChannels: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<jamespot_user_api.TVChannelList>, number | void, {
|
|
1191
1371
|
dispatch: any;
|
|
1192
|
-
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;
|
|
1193
1373
|
extra: {
|
|
1194
1374
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1195
1375
|
};
|
|
@@ -1203,7 +1383,7 @@ declare const TVDisplay: {
|
|
|
1203
1383
|
channel: Pick<jamespot_user_api.TVChannelList, "id">;
|
|
1204
1384
|
}, {
|
|
1205
1385
|
dispatch: any;
|
|
1206
|
-
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;
|
|
1207
1387
|
extra: {
|
|
1208
1388
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1209
1389
|
};
|
|
@@ -1446,6 +1626,8 @@ interface CurrentStudioAppState {
|
|
|
1446
1626
|
currentStudioApp: StudioApplication | null;
|
|
1447
1627
|
fetchCurrentStudioAppStatus: 'idle' | 'pending';
|
|
1448
1628
|
saveCurrentStudioAppStatus: 'idle' | 'pending';
|
|
1629
|
+
installStudioAppStatus: 'idle' | 'pending';
|
|
1630
|
+
hasChanged: boolean;
|
|
1449
1631
|
}
|
|
1450
1632
|
declare type CurrentStudioAppRootState = {
|
|
1451
1633
|
currentStudioApp: CurrentStudioAppState;
|
|
@@ -1480,7 +1662,7 @@ declare const studio: {
|
|
|
1480
1662
|
actions: {
|
|
1481
1663
|
fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioAppBase[], undefined, {
|
|
1482
1664
|
dispatch: any;
|
|
1483
|
-
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;
|
|
1484
1666
|
extra: {
|
|
1485
1667
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1486
1668
|
};
|
|
@@ -1495,7 +1677,7 @@ declare const studio: {
|
|
|
1495
1677
|
status: StatusType;
|
|
1496
1678
|
}, {
|
|
1497
1679
|
dispatch: any;
|
|
1498
|
-
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;
|
|
1499
1681
|
extra: {
|
|
1500
1682
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1501
1683
|
};
|
|
@@ -1509,7 +1691,7 @@ declare const studio: {
|
|
|
1509
1691
|
idApp: string;
|
|
1510
1692
|
}, {
|
|
1511
1693
|
dispatch: any;
|
|
1512
|
-
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;
|
|
1513
1695
|
extra: {
|
|
1514
1696
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1515
1697
|
};
|
|
@@ -1523,7 +1705,7 @@ declare const studio: {
|
|
|
1523
1705
|
idApp: string;
|
|
1524
1706
|
}, {
|
|
1525
1707
|
dispatch: any;
|
|
1526
|
-
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;
|
|
1527
1709
|
extra: {
|
|
1528
1710
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1529
1711
|
};
|
|
@@ -1537,7 +1719,7 @@ declare const studio: {
|
|
|
1537
1719
|
idApp: string;
|
|
1538
1720
|
}, {
|
|
1539
1721
|
dispatch: any;
|
|
1540
|
-
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;
|
|
1541
1723
|
extra: {
|
|
1542
1724
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1543
1725
|
};
|
|
@@ -1551,7 +1733,7 @@ declare const studio: {
|
|
|
1551
1733
|
appName: string;
|
|
1552
1734
|
}, {
|
|
1553
1735
|
dispatch: any;
|
|
1554
|
-
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;
|
|
1555
1737
|
extra: {
|
|
1556
1738
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1557
1739
|
};
|
|
@@ -1566,7 +1748,7 @@ declare const studio: {
|
|
|
1566
1748
|
status: jamespot_user_api.StudioApplicationStatusEnumBased;
|
|
1567
1749
|
}, {
|
|
1568
1750
|
dispatch: any;
|
|
1569
|
-
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;
|
|
1570
1752
|
extra: {
|
|
1571
1753
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1572
1754
|
};
|
|
@@ -1578,7 +1760,19 @@ declare const studio: {
|
|
|
1578
1760
|
}>;
|
|
1579
1761
|
saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
|
|
1580
1762
|
dispatch: any;
|
|
1581
|
-
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;
|
|
1764
|
+
extra: {
|
|
1765
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
1766
|
+
};
|
|
1767
|
+
rejectValue?: unknown;
|
|
1768
|
+
serializedErrorType?: unknown;
|
|
1769
|
+
pendingMeta?: unknown;
|
|
1770
|
+
fulfilledMeta?: unknown;
|
|
1771
|
+
rejectedMeta?: unknown;
|
|
1772
|
+
}>;
|
|
1773
|
+
installStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
|
|
1774
|
+
dispatch: any;
|
|
1775
|
+
state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & jamespot_user_api.WidgetsRootState & WedocAppRootState & UserCurrentRootState> & StudioRootState;
|
|
1582
1776
|
extra: {
|
|
1583
1777
|
jApi: jamespot_user_api.JamespotUserApi;
|
|
1584
1778
|
};
|
|
@@ -1590,6 +1784,7 @@ declare const studio: {
|
|
|
1590
1784
|
}>;
|
|
1591
1785
|
setCurrentApp: _reduxjs_toolkit.ActionCreatorWithPayload<any, "currentStudioApp/setCurrentApp">;
|
|
1592
1786
|
resetCurrentApp: _reduxjs_toolkit.ActionCreatorWithoutPayload<"currentStudioApp/resetCurrentApp">;
|
|
1787
|
+
setHasChanged: _reduxjs_toolkit.ActionCreatorWithPayload<any, "currentStudioApp/setHasChanged">;
|
|
1593
1788
|
setAppsList: _reduxjs_toolkit.ActionCreatorWithPayload<any, "studioAppsList/setAppsList">;
|
|
1594
1789
|
};
|
|
1595
1790
|
selectors: {
|
|
@@ -1598,4 +1793,4 @@ declare const studio: {
|
|
|
1598
1793
|
};
|
|
1599
1794
|
};
|
|
1600
1795
|
|
|
1601
|
-
export { APP_STATUS_TYPE, AUDIENCE, AppAttrSolrModel, AppAttrWidgetModel, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormItemTypes, 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 };
|