jamespot-front-business 1.1.81 → 1.1.83

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/types.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
2
2
  import { EntityState, PayloadAction, Dispatch, Action as Action$1 } from '@reduxjs/toolkit';
3
3
  import * as zod from 'zod';
4
4
  import * as jamespot_user_api from 'jamespot-user-api';
5
- import { jUserLittle, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, Filters, Orders, PagingResults, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, ApiPagingResults, ApiWrapper, Model as Model$1, NetworkType, WedocFileType, TVChannelList, TinyMCECommonOptions, TinyMCEExtendedOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, WidgetsRootState, WidgetDisplayMode, CombinedWidgetContent, SocialAction, ValueOf, StudioApplicationBase, jTaxonomyLittle, JamespotUserApi } from 'jamespot-user-api';
5
+ import { jUserLittle, Filters, Orders, AdminLogNavigation, AdminLogObject, AdminLogSearch, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, PagingResults, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, ApiPagingResults, ApiWrapper, Model as Model$1, NetworkType, WedocFileType, TVChannelList, TinyMCECommonOptions, TinyMCEExtendedOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, WidgetsRootState, WidgetDisplayMode, CombinedWidgetContent, SocialAction, ValueOf, StudioApplicationBase, jTaxonomyLittle, JamespotUserApi } from 'jamespot-user-api';
6
6
  import * as redux from 'redux';
7
7
  import { Dispatch as Dispatch$1 } from 'redux';
8
8
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
@@ -50,6 +50,717 @@ type ShareAppState = {
50
50
  type Loading = {
51
51
  loading: 'idle' | 'pending';
52
52
  };
53
+ type PagingState$1<T extends {}> = {
54
+ data: T[];
55
+ page: number;
56
+ filters: Filters;
57
+ orders: Orders;
58
+ limit: number;
59
+ nbResults: number;
60
+ } & Loading;
61
+
62
+ type AdminLogsNavigationSliceState = PagingState$1<AdminLogNavigation>;
63
+ type AdminLogsObjectsSliceState = PagingState$1<AdminLogObject>;
64
+ type AdminLogsSearchSliceState = PagingState$1<AdminLogSearch>;
65
+ type AdminLogsRootState = {
66
+ adminLogs: {
67
+ logsNavigation: AdminLogsNavigationSliceState;
68
+ logsObjects: AdminLogsObjectsSliceState;
69
+ logsSearch: AdminLogsSearchSliceState;
70
+ };
71
+ };
72
+
73
+ declare const adminLogsSlice: {
74
+ name: "adminLogs";
75
+ reducer: redux.Reducer<redux.CombinedState<{
76
+ logsNavigation: AdminLogsNavigationSliceState;
77
+ logsObjects: AdminLogsObjectsSliceState;
78
+ logsSearch: AdminLogsSearchSliceState;
79
+ }>, redux.AnyAction>;
80
+ };
81
+ declare const adminLogsReducer: redux.Reducer<redux.CombinedState<{
82
+ logsNavigation: AdminLogsNavigationSliceState;
83
+ logsObjects: AdminLogsObjectsSliceState;
84
+ logsSearch: AdminLogsSearchSliceState;
85
+ }>, redux.AnyAction>;
86
+ declare const AdminLogs: {
87
+ slice: {
88
+ name: "adminLogs";
89
+ reducer: redux.Reducer<redux.CombinedState<{
90
+ logsNavigation: AdminLogsNavigationSliceState;
91
+ logsObjects: AdminLogsObjectsSliceState;
92
+ logsSearch: AdminLogsSearchSliceState;
93
+ }>, redux.AnyAction>;
94
+ };
95
+ actions: {
96
+ fetchLogsNavigation: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<{
97
+ dateCreation: string;
98
+ url: string;
99
+ idUser: number;
100
+ level: number;
101
+ pseudo: string;
102
+ action: string;
103
+ ip: string;
104
+ extended?: string | undefined;
105
+ }>, jamespot_user_api.ListQueryParameters, {
106
+ dispatch: any;
107
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
108
+ widgets: {
109
+ layers: Record<string, {
110
+ title: string;
111
+ visible: boolean;
112
+ widgets: jamespot_user_api.WidgetWrapperGeneric<({
113
+ layers?: string[] | undefined;
114
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
115
+ layers?: string[] | undefined;
116
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
117
+ layers?: string[] | undefined;
118
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
119
+ layers?: string[] | undefined;
120
+ } & jamespot_user_api.WidgetArticleImageType) | ({
121
+ layers?: string[] | undefined;
122
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
123
+ layers?: string[] | undefined;
124
+ } & jamespot_user_api.WidgetArticleTextType) | ({
125
+ layers?: string[] | undefined;
126
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
127
+ layers?: string[] | undefined;
128
+ } & jamespot_user_api.WidgetType<{
129
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
130
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
131
+ css?: Record<string, string> | undefined;
132
+ edit?: boolean | undefined;
133
+ }>) | ({
134
+ layers?: string[] | undefined;
135
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
136
+ layers?: string[] | undefined;
137
+ } & {
138
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
139
+ uniqid: string;
140
+ content: {
141
+ uri?: string | undefined;
142
+ limit?: number | boolean | undefined;
143
+ tableColumnsData?: {
144
+ name?: string | undefined;
145
+ label?: string | undefined;
146
+ isVisible?: boolean | undefined;
147
+ textEllipsis?: boolean | undefined;
148
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
149
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
150
+ }[] | undefined;
151
+ tableHeadColor?: string | undefined;
152
+ tableHeadTextColor?: string | undefined;
153
+ tableHeadIconColor?: string | undefined;
154
+ tableRowColor?: string | undefined;
155
+ tableRowTextColor?: string | undefined;
156
+ tableBorderRadius?: number | undefined;
157
+ tableSizedColumns?: boolean | undefined;
158
+ tableSizedColumnsWidth?: number | undefined;
159
+ };
160
+ }) | ({
161
+ layers?: string[] | undefined;
162
+ } & jamespot_user_api.WidgetPresenceType) | ({
163
+ layers?: string[] | undefined;
164
+ } & jamespot_user_api.WidgetQuickSurveyType)>[];
165
+ uniqid: string;
166
+ locked: boolean;
167
+ position?: {
168
+ x: number;
169
+ y: number;
170
+ } | undefined;
171
+ }>;
172
+ ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
173
+ layers?: string[] | undefined;
174
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
175
+ layers?: string[] | undefined;
176
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
177
+ layers?: string[] | undefined;
178
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
179
+ layers?: string[] | undefined;
180
+ } & jamespot_user_api.WidgetArticleImageType) | ({
181
+ layers?: string[] | undefined;
182
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
183
+ layers?: string[] | undefined;
184
+ } & jamespot_user_api.WidgetArticleTextType) | ({
185
+ layers?: string[] | undefined;
186
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
187
+ layers?: string[] | undefined;
188
+ } & jamespot_user_api.WidgetType<{
189
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
190
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
191
+ css?: Record<string, string> | undefined;
192
+ edit?: boolean | undefined;
193
+ }>) | ({
194
+ layers?: string[] | undefined;
195
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
196
+ layers?: string[] | undefined;
197
+ } & {
198
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
199
+ uniqid: string;
200
+ content: {
201
+ uri?: string | undefined;
202
+ limit?: number | boolean | undefined;
203
+ tableColumnsData?: {
204
+ name?: string | undefined;
205
+ label?: string | undefined;
206
+ isVisible?: boolean | undefined;
207
+ textEllipsis?: boolean | undefined;
208
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
209
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
210
+ }[] | undefined;
211
+ tableHeadColor?: string | undefined;
212
+ tableHeadTextColor?: string | undefined;
213
+ tableHeadIconColor?: string | undefined;
214
+ tableRowColor?: string | undefined;
215
+ tableRowTextColor?: string | undefined;
216
+ tableBorderRadius?: number | undefined;
217
+ tableSizedColumns?: boolean | undefined;
218
+ tableSizedColumnsWidth?: number | undefined;
219
+ };
220
+ }) | ({
221
+ layers?: string[] | undefined;
222
+ } & jamespot_user_api.WidgetPresenceType) | ({
223
+ layers?: string[] | undefined;
224
+ } & jamespot_user_api.WidgetQuickSurveyType)>>;
225
+ states: Record<string, {
226
+ busy?: boolean | undefined;
227
+ loading?: boolean | undefined;
228
+ initialized?: boolean | undefined;
229
+ mounted?: boolean | undefined;
230
+ hover?: boolean | undefined;
231
+ empty?: boolean | undefined;
232
+ locked?: boolean | undefined;
233
+ }>;
234
+ editableMap: Record<string, {
235
+ uniqid: string;
236
+ index: number;
237
+ }>;
238
+ currentEditableIndex: number;
239
+ widgetObject: Record<string, {
240
+ type?: string | undefined;
241
+ id?: number | undefined;
242
+ mainType?: string | undefined;
243
+ uri?: string | undefined;
244
+ dateCreation?: string | undefined;
245
+ dateModified?: string | null | undefined;
246
+ title?: string | undefined;
247
+ _url?: string | undefined;
248
+ }>;
249
+ widgetObjectRights: Record<string, jamespot_user_api.Rights>;
250
+ widgetAuthor: Record<string, zod.objectOutputType<{
251
+ id: zod.ZodOptional<zod.ZodType<number, zod.ZodTypeDef, number>>;
252
+ mainType: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
253
+ type: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
254
+ uri: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
255
+ title: zod.ZodOptional<zod.ZodString>;
256
+ _url: zod.ZodOptional<zod.ZodString>;
257
+ level: zod.ZodOptional<zod.ZodNativeEnum<{
258
+ readonly ADMIN: 9;
259
+ readonly USER: 5;
260
+ readonly EXTERNAL: 3;
261
+ readonly GUEST: 0;
262
+ }>>;
263
+ dateCreation: zod.ZodOptional<zod.ZodString>;
264
+ dateModified: zod.ZodOptional<zod.ZodString>;
265
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">>;
266
+ flushedWidgets: string[];
267
+ rtObjectStack: {
268
+ object: jamespot_user_api.jObjectBase & {
269
+ title: string;
270
+ _url: string;
271
+ };
272
+ uniqid: string;
273
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
274
+ }[];
275
+ token?: string | undefined;
276
+ modal?: {
277
+ title?: string | undefined;
278
+ view?: any;
279
+ } | undefined;
280
+ currentEditableWidgetId?: string | undefined;
281
+ };
282
+ } & WedocAppRootState & UserCurrentRootState> & AdminLogsRootState;
283
+ extra: {
284
+ jApi: jamespot_user_api.JamespotUserApi;
285
+ };
286
+ rejectValue: {
287
+ error: number;
288
+ errorMsg: string;
289
+ };
290
+ serializedErrorType?: unknown;
291
+ pendingMeta?: unknown;
292
+ fulfilledMeta?: unknown;
293
+ rejectedMeta?: unknown;
294
+ }>;
295
+ fetchLogsObjects: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<{
296
+ mainType: string;
297
+ dateCreation: string;
298
+ url: string;
299
+ action: string;
300
+ idObject: number;
301
+ typeObject: string;
302
+ mail?: string | undefined;
303
+ extended?: string | undefined;
304
+ }>, jamespot_user_api.ListQueryParameters, {
305
+ dispatch: any;
306
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
307
+ widgets: {
308
+ layers: Record<string, {
309
+ title: string;
310
+ visible: boolean;
311
+ widgets: jamespot_user_api.WidgetWrapperGeneric<({
312
+ layers?: string[] | undefined;
313
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
314
+ layers?: string[] | undefined;
315
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
316
+ layers?: string[] | undefined;
317
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
318
+ layers?: string[] | undefined;
319
+ } & jamespot_user_api.WidgetArticleImageType) | ({
320
+ layers?: string[] | undefined;
321
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
322
+ layers?: string[] | undefined;
323
+ } & jamespot_user_api.WidgetArticleTextType) | ({
324
+ layers?: string[] | undefined;
325
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
326
+ layers?: string[] | undefined;
327
+ } & jamespot_user_api.WidgetType<{
328
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
329
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
330
+ css?: Record<string, string> | undefined;
331
+ edit?: boolean | undefined;
332
+ }>) | ({
333
+ layers?: string[] | undefined;
334
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
335
+ layers?: string[] | undefined;
336
+ } & {
337
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
338
+ uniqid: string;
339
+ content: {
340
+ uri?: string | undefined;
341
+ limit?: number | boolean | undefined;
342
+ tableColumnsData?: {
343
+ name?: string | undefined;
344
+ label?: string | undefined;
345
+ isVisible?: boolean | undefined;
346
+ textEllipsis?: boolean | undefined;
347
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
348
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
349
+ }[] | undefined;
350
+ tableHeadColor?: string | undefined;
351
+ tableHeadTextColor?: string | undefined;
352
+ tableHeadIconColor?: string | undefined;
353
+ tableRowColor?: string | undefined;
354
+ tableRowTextColor?: string | undefined;
355
+ tableBorderRadius?: number | undefined;
356
+ tableSizedColumns?: boolean | undefined;
357
+ tableSizedColumnsWidth?: number | undefined;
358
+ };
359
+ }) | ({
360
+ layers?: string[] | undefined;
361
+ } & jamespot_user_api.WidgetPresenceType) | ({
362
+ layers?: string[] | undefined;
363
+ } & jamespot_user_api.WidgetQuickSurveyType)>[];
364
+ uniqid: string;
365
+ locked: boolean;
366
+ position?: {
367
+ x: number;
368
+ y: number;
369
+ } | undefined;
370
+ }>;
371
+ ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
372
+ layers?: string[] | undefined;
373
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
374
+ layers?: string[] | undefined;
375
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
376
+ layers?: string[] | undefined;
377
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
378
+ layers?: string[] | undefined;
379
+ } & jamespot_user_api.WidgetArticleImageType) | ({
380
+ layers?: string[] | undefined;
381
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
382
+ layers?: string[] | undefined;
383
+ } & jamespot_user_api.WidgetArticleTextType) | ({
384
+ layers?: string[] | undefined;
385
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
386
+ layers?: string[] | undefined;
387
+ } & jamespot_user_api.WidgetType<{
388
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
389
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
390
+ css?: Record<string, string> | undefined;
391
+ edit?: boolean | undefined;
392
+ }>) | ({
393
+ layers?: string[] | undefined;
394
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
395
+ layers?: string[] | undefined;
396
+ } & {
397
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
398
+ uniqid: string;
399
+ content: {
400
+ uri?: string | undefined;
401
+ limit?: number | boolean | undefined;
402
+ tableColumnsData?: {
403
+ name?: string | undefined;
404
+ label?: string | undefined;
405
+ isVisible?: boolean | undefined;
406
+ textEllipsis?: boolean | undefined;
407
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
408
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
409
+ }[] | undefined;
410
+ tableHeadColor?: string | undefined;
411
+ tableHeadTextColor?: string | undefined;
412
+ tableHeadIconColor?: string | undefined;
413
+ tableRowColor?: string | undefined;
414
+ tableRowTextColor?: string | undefined;
415
+ tableBorderRadius?: number | undefined;
416
+ tableSizedColumns?: boolean | undefined;
417
+ tableSizedColumnsWidth?: number | undefined;
418
+ };
419
+ }) | ({
420
+ layers?: string[] | undefined;
421
+ } & jamespot_user_api.WidgetPresenceType) | ({
422
+ layers?: string[] | undefined;
423
+ } & jamespot_user_api.WidgetQuickSurveyType)>>;
424
+ states: Record<string, {
425
+ busy?: boolean | undefined;
426
+ loading?: boolean | undefined;
427
+ initialized?: boolean | undefined;
428
+ mounted?: boolean | undefined;
429
+ hover?: boolean | undefined;
430
+ empty?: boolean | undefined;
431
+ locked?: boolean | undefined;
432
+ }>;
433
+ editableMap: Record<string, {
434
+ uniqid: string;
435
+ index: number;
436
+ }>;
437
+ currentEditableIndex: number;
438
+ widgetObject: Record<string, {
439
+ type?: string | undefined;
440
+ id?: number | undefined;
441
+ mainType?: string | undefined;
442
+ uri?: string | undefined;
443
+ dateCreation?: string | undefined;
444
+ dateModified?: string | null | undefined;
445
+ title?: string | undefined;
446
+ _url?: string | undefined;
447
+ }>;
448
+ widgetObjectRights: Record<string, jamespot_user_api.Rights>;
449
+ widgetAuthor: Record<string, zod.objectOutputType<{
450
+ id: zod.ZodOptional<zod.ZodType<number, zod.ZodTypeDef, number>>;
451
+ mainType: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
452
+ type: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
453
+ uri: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
454
+ title: zod.ZodOptional<zod.ZodString>;
455
+ _url: zod.ZodOptional<zod.ZodString>;
456
+ level: zod.ZodOptional<zod.ZodNativeEnum<{
457
+ readonly ADMIN: 9;
458
+ readonly USER: 5;
459
+ readonly EXTERNAL: 3;
460
+ readonly GUEST: 0;
461
+ }>>;
462
+ dateCreation: zod.ZodOptional<zod.ZodString>;
463
+ dateModified: zod.ZodOptional<zod.ZodString>;
464
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">>;
465
+ flushedWidgets: string[];
466
+ rtObjectStack: {
467
+ object: jamespot_user_api.jObjectBase & {
468
+ title: string;
469
+ _url: string;
470
+ };
471
+ uniqid: string;
472
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
473
+ }[];
474
+ token?: string | undefined;
475
+ modal?: {
476
+ title?: string | undefined;
477
+ view?: any;
478
+ } | undefined;
479
+ currentEditableWidgetId?: string | undefined;
480
+ };
481
+ } & WedocAppRootState & UserCurrentRootState> & AdminLogsRootState;
482
+ extra: {
483
+ jApi: jamespot_user_api.JamespotUserApi;
484
+ };
485
+ rejectValue: {
486
+ error: number;
487
+ errorMsg: string;
488
+ };
489
+ serializedErrorType?: unknown;
490
+ pendingMeta?: unknown;
491
+ fulfilledMeta?: unknown;
492
+ rejectedMeta?: unknown;
493
+ }>;
494
+ fetchLogsSearch: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.PagingResults<{
495
+ type: string;
496
+ dateCreation: string;
497
+ msg: string;
498
+ }>, jamespot_user_api.ListQueryParameters, {
499
+ dispatch: any;
500
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
501
+ widgets: {
502
+ layers: Record<string, {
503
+ title: string;
504
+ visible: boolean;
505
+ widgets: jamespot_user_api.WidgetWrapperGeneric<({
506
+ layers?: string[] | undefined;
507
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
508
+ layers?: string[] | undefined;
509
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
510
+ layers?: string[] | undefined;
511
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
512
+ layers?: string[] | undefined;
513
+ } & jamespot_user_api.WidgetArticleImageType) | ({
514
+ layers?: string[] | undefined;
515
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
516
+ layers?: string[] | undefined;
517
+ } & jamespot_user_api.WidgetArticleTextType) | ({
518
+ layers?: string[] | undefined;
519
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
520
+ layers?: string[] | undefined;
521
+ } & jamespot_user_api.WidgetType<{
522
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
523
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
524
+ css?: Record<string, string> | undefined;
525
+ edit?: boolean | undefined;
526
+ }>) | ({
527
+ layers?: string[] | undefined;
528
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
529
+ layers?: string[] | undefined;
530
+ } & {
531
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
532
+ uniqid: string;
533
+ content: {
534
+ uri?: string | undefined;
535
+ limit?: number | boolean | undefined;
536
+ tableColumnsData?: {
537
+ name?: string | undefined;
538
+ label?: string | undefined;
539
+ isVisible?: boolean | undefined;
540
+ textEllipsis?: boolean | undefined;
541
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
542
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
543
+ }[] | undefined;
544
+ tableHeadColor?: string | undefined;
545
+ tableHeadTextColor?: string | undefined;
546
+ tableHeadIconColor?: string | undefined;
547
+ tableRowColor?: string | undefined;
548
+ tableRowTextColor?: string | undefined;
549
+ tableBorderRadius?: number | undefined;
550
+ tableSizedColumns?: boolean | undefined;
551
+ tableSizedColumnsWidth?: number | undefined;
552
+ };
553
+ }) | ({
554
+ layers?: string[] | undefined;
555
+ } & jamespot_user_api.WidgetPresenceType) | ({
556
+ layers?: string[] | undefined;
557
+ } & jamespot_user_api.WidgetQuickSurveyType)>[];
558
+ uniqid: string;
559
+ locked: boolean;
560
+ position?: {
561
+ x: number;
562
+ y: number;
563
+ } | undefined;
564
+ }>;
565
+ ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
566
+ layers?: string[] | undefined;
567
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
568
+ layers?: string[] | undefined;
569
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
570
+ layers?: string[] | undefined;
571
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
572
+ layers?: string[] | undefined;
573
+ } & jamespot_user_api.WidgetArticleImageType) | ({
574
+ layers?: string[] | undefined;
575
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
576
+ layers?: string[] | undefined;
577
+ } & jamespot_user_api.WidgetArticleTextType) | ({
578
+ layers?: string[] | undefined;
579
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
580
+ layers?: string[] | undefined;
581
+ } & jamespot_user_api.WidgetType<{
582
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
583
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
584
+ css?: Record<string, string> | undefined;
585
+ edit?: boolean | undefined;
586
+ }>) | ({
587
+ layers?: string[] | undefined;
588
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
589
+ layers?: string[] | undefined;
590
+ } & {
591
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
592
+ uniqid: string;
593
+ content: {
594
+ uri?: string | undefined;
595
+ limit?: number | boolean | undefined;
596
+ tableColumnsData?: {
597
+ name?: string | undefined;
598
+ label?: string | undefined;
599
+ isVisible?: boolean | undefined;
600
+ textEllipsis?: boolean | undefined;
601
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
602
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
603
+ }[] | undefined;
604
+ tableHeadColor?: string | undefined;
605
+ tableHeadTextColor?: string | undefined;
606
+ tableHeadIconColor?: string | undefined;
607
+ tableRowColor?: string | undefined;
608
+ tableRowTextColor?: string | undefined;
609
+ tableBorderRadius?: number | undefined;
610
+ tableSizedColumns?: boolean | undefined;
611
+ tableSizedColumnsWidth?: number | undefined;
612
+ };
613
+ }) | ({
614
+ layers?: string[] | undefined;
615
+ } & jamespot_user_api.WidgetPresenceType) | ({
616
+ layers?: string[] | undefined;
617
+ } & jamespot_user_api.WidgetQuickSurveyType)>>;
618
+ states: Record<string, {
619
+ busy?: boolean | undefined;
620
+ loading?: boolean | undefined;
621
+ initialized?: boolean | undefined;
622
+ mounted?: boolean | undefined;
623
+ hover?: boolean | undefined;
624
+ empty?: boolean | undefined;
625
+ locked?: boolean | undefined;
626
+ }>;
627
+ editableMap: Record<string, {
628
+ uniqid: string;
629
+ index: number;
630
+ }>;
631
+ currentEditableIndex: number;
632
+ widgetObject: Record<string, {
633
+ type?: string | undefined;
634
+ id?: number | undefined;
635
+ mainType?: string | undefined;
636
+ uri?: string | undefined;
637
+ dateCreation?: string | undefined;
638
+ dateModified?: string | null | undefined;
639
+ title?: string | undefined;
640
+ _url?: string | undefined;
641
+ }>;
642
+ widgetObjectRights: Record<string, jamespot_user_api.Rights>;
643
+ widgetAuthor: Record<string, zod.objectOutputType<{
644
+ id: zod.ZodOptional<zod.ZodType<number, zod.ZodTypeDef, number>>;
645
+ mainType: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
646
+ type: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
647
+ uri: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
648
+ title: zod.ZodOptional<zod.ZodString>;
649
+ _url: zod.ZodOptional<zod.ZodString>;
650
+ level: zod.ZodOptional<zod.ZodNativeEnum<{
651
+ readonly ADMIN: 9;
652
+ readonly USER: 5;
653
+ readonly EXTERNAL: 3;
654
+ readonly GUEST: 0;
655
+ }>>;
656
+ dateCreation: zod.ZodOptional<zod.ZodString>;
657
+ dateModified: zod.ZodOptional<zod.ZodString>;
658
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">>;
659
+ flushedWidgets: string[];
660
+ rtObjectStack: {
661
+ object: jamespot_user_api.jObjectBase & {
662
+ title: string;
663
+ _url: string;
664
+ };
665
+ uniqid: string;
666
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
667
+ }[];
668
+ token?: string | undefined;
669
+ modal?: {
670
+ title?: string | undefined;
671
+ view?: any;
672
+ } | undefined;
673
+ currentEditableWidgetId?: string | undefined;
674
+ };
675
+ } & WedocAppRootState & UserCurrentRootState> & AdminLogsRootState;
676
+ extra: {
677
+ jApi: jamespot_user_api.JamespotUserApi;
678
+ };
679
+ rejectValue: {
680
+ error: number;
681
+ errorMsg: string;
682
+ };
683
+ serializedErrorType?: unknown;
684
+ pendingMeta?: unknown;
685
+ fulfilledMeta?: unknown;
686
+ rejectedMeta?: unknown;
687
+ }>;
688
+ setSearchOrder: _reduxjs_toolkit.ActionCreatorWithPayload<{
689
+ sort: "ASC" | "DESC";
690
+ name: string;
691
+ }[], "logsSearch/setSearchOrder">;
692
+ setSearchFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
693
+ value: string | number | boolean | string[] | {
694
+ srcId: string | number;
695
+ srcType: string;
696
+ } | {
697
+ targetId: string | number;
698
+ targetType: string;
699
+ } | {
700
+ start: string;
701
+ end: string;
702
+ };
703
+ name: string;
704
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
705
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
706
+ or?: boolean | undefined;
707
+ isNull?: boolean | undefined;
708
+ isNotNull?: boolean | undefined;
709
+ }[], "logsSearch/setSearchFilter">;
710
+ setSearchPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "logsSearch/setSearchPage">;
711
+ setObjectsOrder: _reduxjs_toolkit.ActionCreatorWithPayload<{
712
+ sort: "ASC" | "DESC";
713
+ name: string;
714
+ }[], "logsObjects/setObjectsOrder">;
715
+ setObjectsFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
716
+ value: string | number | boolean | string[] | {
717
+ srcId: string | number;
718
+ srcType: string;
719
+ } | {
720
+ targetId: string | number;
721
+ targetType: string;
722
+ } | {
723
+ start: string;
724
+ end: string;
725
+ };
726
+ name: string;
727
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
728
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
729
+ or?: boolean | undefined;
730
+ isNull?: boolean | undefined;
731
+ isNotNull?: boolean | undefined;
732
+ }[], "logsObjects/setObjectsFilter">;
733
+ setObjectsPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "logsObjects/setObjectsPage">;
734
+ setNavigationOrder: _reduxjs_toolkit.ActionCreatorWithPayload<{
735
+ sort: "ASC" | "DESC";
736
+ name: string;
737
+ }[], "logsNavigation/setNavigationOrder">;
738
+ setNavigationFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
739
+ value: string | number | boolean | string[] | {
740
+ srcId: string | number;
741
+ srcType: string;
742
+ } | {
743
+ targetId: string | number;
744
+ targetType: string;
745
+ } | {
746
+ start: string;
747
+ end: string;
748
+ };
749
+ name: string;
750
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
751
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
752
+ or?: boolean | undefined;
753
+ isNull?: boolean | undefined;
754
+ isNotNull?: boolean | undefined;
755
+ }[], "logsNavigation/setNavigationFilter">;
756
+ setNavigationPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "logsNavigation/setNavigationPage">;
757
+ };
758
+ selectors: {
759
+ selectAdminLogsNavigation: (state: AdminLogsRootState) => AdminLogsNavigationSliceState;
760
+ selectAdminLogsObjects: (state: AdminLogsRootState) => AdminLogsObjectsSliceState;
761
+ selectAdminLogsSearch: (state: AdminLogsRootState) => AdminLogsSearchSliceState;
762
+ };
763
+ };
53
764
 
54
765
  type AnimationSliceListState = {
55
766
  animationConfiguration: AnimationConfigurationType | null;
@@ -103,7 +814,7 @@ declare const Animations: {
103
814
  auto: boolean;
104
815
  }, {
105
816
  dispatch: any;
106
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
817
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
107
818
  widgets: {
108
819
  layers: Record<string, {
109
820
  title: string;
@@ -293,7 +1004,7 @@ declare const Animations: {
293
1004
  }>;
294
1005
  fetchCurrentAnimation: _reduxjs_toolkit.AsyncThunk<Omit<AnimationSliceListState, "isToggleLoading">, void, {
295
1006
  dispatch: any;
296
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1007
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
297
1008
  widgets: {
298
1009
  layers: Record<string, {
299
1010
  title: string;
@@ -483,7 +1194,7 @@ declare const Animations: {
483
1194
  }>;
484
1195
  deleteCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, void, {
485
1196
  dispatch: any;
486
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1197
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
487
1198
  widgets: {
488
1199
  layers: Record<string, {
489
1200
  title: string;
@@ -673,7 +1384,7 @@ declare const Animations: {
673
1384
  }>;
674
1385
  toggleAnimationIsActive: _reduxjs_toolkit.AsyncThunk<void, void, {
675
1386
  dispatch: any;
676
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1387
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
677
1388
  widgets: {
678
1389
  layers: Record<string, {
679
1390
  title: string;
@@ -869,7 +1580,7 @@ declare const Animations: {
869
1580
  auto: boolean;
870
1581
  } | null, void, {
871
1582
  dispatch: any;
872
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1583
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
873
1584
  widgets: {
874
1585
  layers: Record<string, {
875
1586
  title: string;
@@ -1077,7 +1788,7 @@ declare const Animations: {
1077
1788
  name: string;
1078
1789
  }, {
1079
1790
  dispatch: any;
1080
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1791
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1081
1792
  widgets: {
1082
1793
  layers: Record<string, {
1083
1794
  title: string;
@@ -1283,7 +1994,7 @@ declare const Animations: {
1283
1994
  animAudience: string[];
1284
1995
  } | null, string, {
1285
1996
  dispatch: any;
1286
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1997
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1287
1998
  widgets: {
1288
1999
  layers: Record<string, {
1289
2000
  title: string;
@@ -1584,7 +2295,7 @@ declare const AssetReservation: {
1584
2295
  _url: string;
1585
2296
  } & {
1586
2297
  [key: string]: string | number | null;
1587
- level: 0 | 3 | 5 | 9;
2298
+ level: 0 | 9 | 3 | 5;
1588
2299
  dateCreation: string;
1589
2300
  dateModified: string;
1590
2301
  };
@@ -1673,7 +2384,7 @@ declare const AssetReservation: {
1673
2384
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
1674
2385
  }, jamespot_user_api.BaseMessages>, void, {
1675
2386
  dispatch: any;
1676
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2387
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1677
2388
  widgets: {
1678
2389
  layers: Record<string, {
1679
2390
  title: string;
@@ -1863,14 +2574,14 @@ declare const AssetReservation: {
1863
2574
  right: {
1864
2575
  manage: boolean;
1865
2576
  };
1866
- weekEnd: "1" | "0";
2577
+ weekEnd: "0" | "1";
1867
2578
  bookingOpeningTime: string;
1868
2579
  bookingClosingTime: string;
1869
2580
  lastBookingSchedule: string;
1870
2581
  daysOff?: string[] | undefined;
1871
2582
  }, jamespot_user_api.BaseMessages>, void, {
1872
2583
  dispatch: any;
1873
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2584
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1874
2585
  widgets: {
1875
2586
  layers: Record<string, {
1876
2587
  title: string;
@@ -2069,7 +2780,7 @@ declare const AssetReservation: {
2069
2780
  _url: string;
2070
2781
  } & {
2071
2782
  [key: string]: string | number | null;
2072
- level: 0 | 3 | 5 | 9;
2783
+ level: 0 | 9 | 3 | 5;
2073
2784
  dateCreation: string;
2074
2785
  dateModified: string;
2075
2786
  };
@@ -2113,7 +2824,7 @@ declare const AssetReservation: {
2113
2824
  _url: string;
2114
2825
  } & {
2115
2826
  [key: string]: string | number | null;
2116
- level: 0 | 3 | 5 | 9;
2827
+ level: 0 | 9 | 3 | 5;
2117
2828
  dateCreation: string;
2118
2829
  dateModified: string;
2119
2830
  };
@@ -2261,7 +2972,7 @@ declare const AssetReservation: {
2261
2972
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
2262
2973
  }, jamespot_user_api.BaseMessages>, "my" | "history", {
2263
2974
  dispatch: any;
2264
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2975
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2265
2976
  widgets: {
2266
2977
  layers: Record<string, {
2267
2978
  title: string;
@@ -2466,7 +3177,7 @@ declare const AssetReservation: {
2466
3177
  _url: string;
2467
3178
  } & {
2468
3179
  [key: string]: string | number | null;
2469
- level: 0 | 3 | 5 | 9;
3180
+ level: 0 | 9 | 3 | 5;
2470
3181
  dateCreation: string;
2471
3182
  dateModified: string;
2472
3183
  };
@@ -2569,7 +3280,7 @@ declare const AssetReservation: {
2569
3280
  _url: string;
2570
3281
  } & {
2571
3282
  [key: string]: string | number | null;
2572
- level: 0 | 3 | 5 | 9;
3283
+ level: 0 | 9 | 3 | 5;
2573
3284
  dateCreation: string;
2574
3285
  dateModified: string;
2575
3286
  };
@@ -2613,7 +3324,7 @@ declare const AssetReservation: {
2613
3324
  _url: string;
2614
3325
  } & {
2615
3326
  [key: string]: string | number | null;
2616
- level: 0 | 3 | 5 | 9;
3327
+ level: 0 | 9 | 3 | 5;
2617
3328
  dateCreation: string;
2618
3329
  dateModified: string;
2619
3330
  };
@@ -2770,7 +3481,9 @@ type CommentRootState = {
2770
3481
  };
2771
3482
  type CommentsList = {
2772
3483
  idArticle: number;
2773
- list: jCommentList[];
3484
+ list: Array<jCommentList & {
3485
+ pending?: boolean;
3486
+ }>;
2774
3487
  };
2775
3488
  type CommentListState = Loading & {
2776
3489
  comments: Array<CommentsList>;
@@ -2805,7 +3518,7 @@ declare const Comment: {
2805
3518
  _url: string;
2806
3519
  } & {
2807
3520
  [key: string]: string | number | null;
2808
- level: 0 | 3 | 5 | 9;
3521
+ level: 0 | 9 | 3 | 5;
2809
3522
  dateCreation: string;
2810
3523
  dateModified: string;
2811
3524
  };
@@ -2912,7 +3625,200 @@ declare const Comment: {
2912
3625
  } | undefined;
2913
3626
  }, {
2914
3627
  dispatch: any;
2915
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3628
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3629
+ widgets: {
3630
+ layers: Record<string, {
3631
+ title: string;
3632
+ visible: boolean;
3633
+ widgets: jamespot_user_api.WidgetWrapperGeneric<({
3634
+ layers?: string[] | undefined;
3635
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3636
+ layers?: string[] | undefined;
3637
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
3638
+ layers?: string[] | undefined;
3639
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
3640
+ layers?: string[] | undefined;
3641
+ } & jamespot_user_api.WidgetArticleImageType) | ({
3642
+ layers?: string[] | undefined;
3643
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
3644
+ layers?: string[] | undefined;
3645
+ } & jamespot_user_api.WidgetArticleTextType) | ({
3646
+ layers?: string[] | undefined;
3647
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
3648
+ layers?: string[] | undefined;
3649
+ } & jamespot_user_api.WidgetType<{
3650
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3651
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3652
+ css?: Record<string, string> | undefined;
3653
+ edit?: boolean | undefined;
3654
+ }>) | ({
3655
+ layers?: string[] | undefined;
3656
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
3657
+ layers?: string[] | undefined;
3658
+ } & {
3659
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3660
+ uniqid: string;
3661
+ content: {
3662
+ uri?: string | undefined;
3663
+ limit?: number | boolean | undefined;
3664
+ tableColumnsData?: {
3665
+ name?: string | undefined;
3666
+ label?: string | undefined;
3667
+ isVisible?: boolean | undefined;
3668
+ textEllipsis?: boolean | undefined;
3669
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3670
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3671
+ }[] | undefined;
3672
+ tableHeadColor?: string | undefined;
3673
+ tableHeadTextColor?: string | undefined;
3674
+ tableHeadIconColor?: string | undefined;
3675
+ tableRowColor?: string | undefined;
3676
+ tableRowTextColor?: string | undefined;
3677
+ tableBorderRadius?: number | undefined;
3678
+ tableSizedColumns?: boolean | undefined;
3679
+ tableSizedColumnsWidth?: number | undefined;
3680
+ };
3681
+ }) | ({
3682
+ layers?: string[] | undefined;
3683
+ } & jamespot_user_api.WidgetPresenceType) | ({
3684
+ layers?: string[] | undefined;
3685
+ } & jamespot_user_api.WidgetQuickSurveyType)>[];
3686
+ uniqid: string;
3687
+ locked: boolean;
3688
+ position?: {
3689
+ x: number;
3690
+ y: number;
3691
+ } | undefined;
3692
+ }>;
3693
+ ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
3694
+ layers?: string[] | undefined;
3695
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3696
+ layers?: string[] | undefined;
3697
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
3698
+ layers?: string[] | undefined;
3699
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
3700
+ layers?: string[] | undefined;
3701
+ } & jamespot_user_api.WidgetArticleImageType) | ({
3702
+ layers?: string[] | undefined;
3703
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
3704
+ layers?: string[] | undefined;
3705
+ } & jamespot_user_api.WidgetArticleTextType) | ({
3706
+ layers?: string[] | undefined;
3707
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
3708
+ layers?: string[] | undefined;
3709
+ } & jamespot_user_api.WidgetType<{
3710
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3711
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3712
+ css?: Record<string, string> | undefined;
3713
+ edit?: boolean | undefined;
3714
+ }>) | ({
3715
+ layers?: string[] | undefined;
3716
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
3717
+ layers?: string[] | undefined;
3718
+ } & {
3719
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3720
+ uniqid: string;
3721
+ content: {
3722
+ uri?: string | undefined;
3723
+ limit?: number | boolean | undefined;
3724
+ tableColumnsData?: {
3725
+ name?: string | undefined;
3726
+ label?: string | undefined;
3727
+ isVisible?: boolean | undefined;
3728
+ textEllipsis?: boolean | undefined;
3729
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3730
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3731
+ }[] | undefined;
3732
+ tableHeadColor?: string | undefined;
3733
+ tableHeadTextColor?: string | undefined;
3734
+ tableHeadIconColor?: string | undefined;
3735
+ tableRowColor?: string | undefined;
3736
+ tableRowTextColor?: string | undefined;
3737
+ tableBorderRadius?: number | undefined;
3738
+ tableSizedColumns?: boolean | undefined;
3739
+ tableSizedColumnsWidth?: number | undefined;
3740
+ };
3741
+ }) | ({
3742
+ layers?: string[] | undefined;
3743
+ } & jamespot_user_api.WidgetPresenceType) | ({
3744
+ layers?: string[] | undefined;
3745
+ } & jamespot_user_api.WidgetQuickSurveyType)>>;
3746
+ states: Record<string, {
3747
+ busy?: boolean | undefined;
3748
+ loading?: boolean | undefined;
3749
+ initialized?: boolean | undefined;
3750
+ mounted?: boolean | undefined;
3751
+ hover?: boolean | undefined;
3752
+ empty?: boolean | undefined;
3753
+ locked?: boolean | undefined;
3754
+ }>;
3755
+ editableMap: Record<string, {
3756
+ uniqid: string;
3757
+ index: number;
3758
+ }>;
3759
+ currentEditableIndex: number;
3760
+ widgetObject: Record<string, {
3761
+ type?: string | undefined;
3762
+ id?: number | undefined;
3763
+ mainType?: string | undefined;
3764
+ uri?: string | undefined;
3765
+ dateCreation?: string | undefined;
3766
+ dateModified?: string | null | undefined;
3767
+ title?: string | undefined;
3768
+ _url?: string | undefined;
3769
+ }>;
3770
+ widgetObjectRights: Record<string, jamespot_user_api.Rights>;
3771
+ widgetAuthor: Record<string, zod.objectOutputType<{
3772
+ id: zod.ZodOptional<zod.ZodType<number, zod.ZodTypeDef, number>>;
3773
+ mainType: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
3774
+ type: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
3775
+ uri: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
3776
+ title: zod.ZodOptional<zod.ZodString>;
3777
+ _url: zod.ZodOptional<zod.ZodString>;
3778
+ level: zod.ZodOptional<zod.ZodNativeEnum<{
3779
+ readonly ADMIN: 9;
3780
+ readonly USER: 5;
3781
+ readonly EXTERNAL: 3;
3782
+ readonly GUEST: 0;
3783
+ }>>;
3784
+ dateCreation: zod.ZodOptional<zod.ZodString>;
3785
+ dateModified: zod.ZodOptional<zod.ZodString>;
3786
+ }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip">>;
3787
+ flushedWidgets: string[];
3788
+ rtObjectStack: {
3789
+ object: jamespot_user_api.jObjectBase & {
3790
+ title: string;
3791
+ _url: string;
3792
+ };
3793
+ uniqid: string;
3794
+ fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
3795
+ }[];
3796
+ token?: string | undefined;
3797
+ modal?: {
3798
+ title?: string | undefined;
3799
+ view?: any;
3800
+ } | undefined;
3801
+ currentEditableWidgetId?: string | undefined;
3802
+ };
3803
+ } & WedocAppRootState & UserCurrentRootState> & CommentRootState;
3804
+ extra: {
3805
+ jApi: jamespot_user_api.JamespotUserApi;
3806
+ };
3807
+ rejectValue: {
3808
+ error: number;
3809
+ errorMsg: string;
3810
+ };
3811
+ serializedErrorType?: unknown;
3812
+ pendingMeta?: unknown;
3813
+ fulfilledMeta?: unknown;
3814
+ rejectedMeta?: unknown;
3815
+ }>;
3816
+ deleteComment: _reduxjs_toolkit.AsyncThunk<boolean, {
3817
+ idComment: number;
3818
+ idArticle: number;
3819
+ }, {
3820
+ dispatch: any;
3821
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2916
3822
  widgets: {
2917
3823
  layers: Record<string, {
2918
3824
  title: string;
@@ -3102,7 +4008,7 @@ declare const Comment: {
3102
4008
  }>;
3103
4009
  };
3104
4010
  selectors: {
3105
- commentList: (state: CommentRootState, idArticle: number, limit?: number) => {
4011
+ commentList: (state: CommentRootState, idArticle: number, limit?: number) => ({
3106
4012
  type: string;
3107
4013
  id: number;
3108
4014
  mainType: string;
@@ -3115,7 +4021,7 @@ declare const Comment: {
3115
4021
  _url: string;
3116
4022
  } & {
3117
4023
  [key: string]: string | number | null;
3118
- level: 0 | 3 | 5 | 9;
4024
+ level: 0 | 9 | 3 | 5;
3119
4025
  dateCreation: string;
3120
4026
  dateModified: string;
3121
4027
  };
@@ -3204,7 +4110,9 @@ declare const Comment: {
3204
4110
  } & jamespot_user_api.WidgetPresenceType) | ({
3205
4111
  layers?: string[] | undefined;
3206
4112
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
3207
- }[];
4113
+ } & {
4114
+ pending?: boolean;
4115
+ })[];
3208
4116
  };
3209
4117
  getCommentRTHandlers: (dispatch: RTDispatch, idArticle: number) => jamespot_user_api.RTMessageHandler<"JAMESPOT", "comment-create" | "comment-delete" | "comment-update" | "article-create" | "article-delete" | "article-update">[];
3210
4118
  getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
@@ -3254,8 +4162,8 @@ declare const Bookmark: {
3254
4162
  resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
3255
4163
  addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3256
4164
  id: number;
3257
- type: "bookmarkLink";
3258
4165
  mainType: string;
4166
+ type: "bookmarkLink";
3259
4167
  uri: string;
3260
4168
  value: string | null;
3261
4169
  srcId: number;
@@ -3274,8 +4182,8 @@ declare const Bookmark: {
3274
4182
  }, "bookmarkList/addBookmarkRT">;
3275
4183
  deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3276
4184
  id: number;
3277
- type: "bookmarkLink";
3278
4185
  mainType: string;
4186
+ type: "bookmarkLink";
3279
4187
  uri: string;
3280
4188
  value: string | null;
3281
4189
  srcId: number;
@@ -3294,8 +4202,8 @@ declare const Bookmark: {
3294
4202
  }, "bookmarkList/deleteBookmarkRT">;
3295
4203
  updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3296
4204
  id: number;
3297
- type: "bookmarkLink";
3298
4205
  mainType: string;
4206
+ type: "bookmarkLink";
3299
4207
  uri: string;
3300
4208
  value: string | null;
3301
4209
  srcId: number;
@@ -3314,8 +4222,8 @@ declare const Bookmark: {
3314
4222
  }, "bookmarkList/updateBookmarkRT">;
3315
4223
  setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
3316
4224
  id: number;
3317
- type: "bookmarkLink";
3318
4225
  mainType: string;
4226
+ type: "bookmarkLink";
3319
4227
  uri: string;
3320
4228
  value: string | null;
3321
4229
  srcId: number;
@@ -3336,8 +4244,8 @@ declare const Bookmark: {
3336
4244
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
3337
4245
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
3338
4246
  id: number;
3339
- type: "bookmarkLink";
3340
4247
  mainType: string;
4248
+ type: "bookmarkLink";
3341
4249
  uri: string;
3342
4250
  value: string | null;
3343
4251
  srcId: number;
@@ -3355,7 +4263,7 @@ declare const Bookmark: {
3355
4263
  url?: string | null | undefined;
3356
4264
  }, jamespot_user_api.BaseMessages>, void, {
3357
4265
  dispatch: any;
3358
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4266
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3359
4267
  widgets: {
3360
4268
  layers: Record<string, {
3361
4269
  title: string;
@@ -3545,8 +4453,8 @@ declare const Bookmark: {
3545
4453
  }>;
3546
4454
  addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
3547
4455
  id: number;
3548
- type: "bookmarkLink";
3549
4456
  mainType: string;
4457
+ type: "bookmarkLink";
3550
4458
  uri: string;
3551
4459
  value: string | null;
3552
4460
  srcId: number;
@@ -3564,8 +4472,8 @@ declare const Bookmark: {
3564
4472
  url?: string | null | undefined;
3565
4473
  } | {
3566
4474
  id: number;
3567
- type: string;
3568
4475
  mainType: string;
4476
+ type: string;
3569
4477
  uri: string;
3570
4478
  value: string | null;
3571
4479
  srcId: number;
@@ -3587,8 +4495,8 @@ declare const Bookmark: {
3587
4495
  } | undefined;
3588
4496
  }, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
3589
4497
  id: number;
3590
- type: "bookmarkLink";
3591
4498
  mainType: string;
4499
+ type: "bookmarkLink";
3592
4500
  uri: string;
3593
4501
  value: string | null;
3594
4502
  srcId: number;
@@ -3616,7 +4524,7 @@ declare const Bookmark: {
3616
4524
  requestId?: string | undefined;
3617
4525
  }, {
3618
4526
  dispatch: any;
3619
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4527
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3620
4528
  widgets: {
3621
4529
  layers: Record<string, {
3622
4530
  title: string;
@@ -3807,8 +4715,8 @@ declare const Bookmark: {
3807
4715
  moveBookmark: _reduxjs_toolkit.AsyncThunk<void, {
3808
4716
  bookmark: Pick<{
3809
4717
  id: number;
3810
- type: "bookmarkLink";
3811
4718
  mainType: string;
4719
+ type: "bookmarkLink";
3812
4720
  uri: string;
3813
4721
  value: string | null;
3814
4722
  srcId: number;
@@ -3827,8 +4735,8 @@ declare const Bookmark: {
3827
4735
  }, "id">;
3828
4736
  bookmarkReference: Pick<{
3829
4737
  id: number;
3830
- type: "bookmarkLink";
3831
4738
  mainType: string;
4739
+ type: "bookmarkLink";
3832
4740
  uri: string;
3833
4741
  value: string | null;
3834
4742
  srcId: number;
@@ -3848,7 +4756,7 @@ declare const Bookmark: {
3848
4756
  position: "after" | "before";
3849
4757
  }, {
3850
4758
  dispatch: any;
3851
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4759
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3852
4760
  widgets: {
3853
4761
  layers: Record<string, {
3854
4762
  title: string;
@@ -4038,8 +4946,8 @@ declare const Bookmark: {
4038
4946
  }>;
4039
4947
  deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
4040
4948
  id: number;
4041
- type: "bookmarkLink";
4042
4949
  mainType: string;
4950
+ type: "bookmarkLink";
4043
4951
  uri: string;
4044
4952
  value: string | null;
4045
4953
  srcId: number;
@@ -4059,7 +4967,7 @@ declare const Bookmark: {
4059
4967
  requestId?: string | undefined;
4060
4968
  }, {
4061
4969
  dispatch: any;
4062
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4970
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4063
4971
  widgets: {
4064
4972
  layers: Record<string, {
4065
4973
  title: string;
@@ -4249,8 +5157,8 @@ declare const Bookmark: {
4249
5157
  }>;
4250
5158
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
4251
5159
  id: number;
4252
- type: "bookmarkLink";
4253
5160
  mainType: string;
5161
+ type: "bookmarkLink";
4254
5162
  uri: string;
4255
5163
  value: string | null;
4256
5164
  srcId: number;
@@ -4268,7 +5176,7 @@ declare const Bookmark: {
4268
5176
  url?: string | null | undefined;
4269
5177
  }>, {
4270
5178
  dispatch: any;
4271
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5179
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4272
5180
  widgets: {
4273
5181
  layers: Record<string, {
4274
5182
  title: string;
@@ -4462,8 +5370,8 @@ declare const Bookmark: {
4462
5370
  bookmarkListIsInitialized: (state: BookmarkRootState) => boolean;
4463
5371
  bookmarkEditBookmark: (state: BookmarkRootState) => {
4464
5372
  id: number;
4465
- type: "bookmarkLink";
4466
5373
  mainType: string;
5374
+ type: "bookmarkLink";
4467
5375
  uri: string;
4468
5376
  value: string | null;
4469
5377
  srcId: number;
@@ -4482,8 +5390,8 @@ declare const Bookmark: {
4482
5390
  } | undefined;
4483
5391
  bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
4484
5392
  id: number;
4485
- type: "bookmarkLink";
4486
5393
  mainType: string;
5394
+ type: "bookmarkLink";
4487
5395
  uri: string;
4488
5396
  value: string | null;
4489
5397
  srcId: number;
@@ -4545,7 +5453,7 @@ declare const Faq: {
4545
5453
  };
4546
5454
  actions: {
4547
5455
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
4548
- _web: "" | "1" | "0" | undefined;
5456
+ _web: "" | "0" | "1" | undefined;
4549
5457
  appImage: string | {
4550
5458
  image: {
4551
5459
  type: string;
@@ -4556,7 +5464,7 @@ declare const Faq: {
4556
5464
  access: {
4557
5465
  createCategory: boolean;
4558
5466
  };
4559
- _displayComment: "" | "1" | "0" | undefined;
5467
+ _displayComment: "" | "0" | "1" | undefined;
4560
5468
  } | {
4561
5469
  _web: string;
4562
5470
  appImage?: never;
@@ -4588,7 +5496,7 @@ declare const Faq: {
4588
5496
  _url: string;
4589
5497
  } & {
4590
5498
  [key: string]: string | number | null;
4591
- level: 0 | 3 | 5 | 9;
5499
+ level: 0 | 9 | 3 | 5;
4592
5500
  dateCreation: string;
4593
5501
  dateModified: string;
4594
5502
  };
@@ -4741,7 +5649,7 @@ declare const slice$1: _reduxjs_toolkit.Slice<{}, {
4741
5649
  isActive: boolean;
4742
5650
  } & {
4743
5651
  create: boolean;
4744
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5652
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4745
5653
  }) | undefined;
4746
5654
  AdminAdvancedHook?: ({
4747
5655
  isActive: boolean;
@@ -4806,7 +5714,7 @@ declare const Hook: {
4806
5714
  isActive: boolean;
4807
5715
  } & {
4808
5716
  create: boolean;
4809
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5717
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4810
5718
  }) | undefined;
4811
5719
  AdminAdvancedHook?: ({
4812
5720
  isActive: boolean;
@@ -4867,7 +5775,7 @@ declare const Hook: {
4867
5775
  isActive: boolean;
4868
5776
  } & {
4869
5777
  create: boolean;
4870
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5778
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4871
5779
  }) | undefined;
4872
5780
  AdminAdvancedHook?: ({
4873
5781
  isActive: boolean;
@@ -4928,7 +5836,7 @@ declare const Hook: {
4928
5836
  isActive: boolean;
4929
5837
  } & {
4930
5838
  create: boolean;
4931
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5839
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4932
5840
  }) | undefined;
4933
5841
  AdminAdvancedHook?: ({
4934
5842
  isActive: boolean;
@@ -4987,7 +5895,7 @@ declare const Hook: {
4987
5895
  isActive: boolean;
4988
5896
  } & {
4989
5897
  create: boolean;
4990
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5898
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4991
5899
  }) | undefined;
4992
5900
  AdminAdvancedHook?: ({
4993
5901
  isActive: boolean;
@@ -5069,7 +5977,7 @@ declare const jland: {
5069
5977
  retrieveAllMaps: boolean;
5070
5978
  }, {
5071
5979
  dispatch: any;
5072
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5980
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5073
5981
  widgets: {
5074
5982
  layers: Record<string, {
5075
5983
  title: string;
@@ -5259,7 +6167,7 @@ declare const jland: {
5259
6167
  retrieveAllMaps: boolean;
5260
6168
  }, {
5261
6169
  dispatch: any;
5262
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6170
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5263
6171
  widgets: {
5264
6172
  layers: Record<string, {
5265
6173
  title: string;
@@ -5449,7 +6357,7 @@ declare const jland: {
5449
6357
  retrieveAllMaps: boolean;
5450
6358
  }, {
5451
6359
  dispatch: any;
5452
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6360
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5453
6361
  widgets: {
5454
6362
  layers: Record<string, {
5455
6363
  title: string;
@@ -5639,7 +6547,7 @@ declare const jland: {
5639
6547
  retrieveAllMaps: boolean;
5640
6548
  }, {
5641
6549
  dispatch: any;
5642
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6550
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5643
6551
  widgets: {
5644
6552
  layers: Record<string, {
5645
6553
  title: string;
@@ -5826,7 +6734,7 @@ declare const jland: {
5826
6734
  }>;
5827
6735
  fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<Record<string, number>, void, {
5828
6736
  dispatch: any;
5829
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6737
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5830
6738
  widgets: {
5831
6739
  layers: Record<string, {
5832
6740
  title: string;
@@ -6041,7 +6949,7 @@ declare const jland: {
6041
6949
  map: MapCreationFront;
6042
6950
  }, {
6043
6951
  dispatch: any;
6044
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6952
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6045
6953
  widgets: {
6046
6954
  layers: Record<string, {
6047
6955
  title: string;
@@ -6299,7 +7207,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6299
7207
  _url: string;
6300
7208
  } & {
6301
7209
  [key: string]: string | number | null;
6302
- level: 0 | 3 | 5 | 9;
7210
+ level: 0 | 9 | 3 | 5;
6303
7211
  dateCreation: string;
6304
7212
  dateModified: string;
6305
7213
  };
@@ -6401,7 +7309,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6401
7309
  idUserLogged: number;
6402
7310
  }, {
6403
7311
  dispatch: any;
6404
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7312
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6405
7313
  widgets: {
6406
7314
  layers: Record<string, {
6407
7315
  title: string;
@@ -6612,7 +7520,7 @@ declare const MagicPad: {
6612
7520
  _url: string;
6613
7521
  } & {
6614
7522
  [key: string]: string | number | null;
6615
- level: 0 | 3 | 5 | 9;
7523
+ level: 0 | 9 | 3 | 5;
6616
7524
  dateCreation: string;
6617
7525
  dateModified: string;
6618
7526
  };
@@ -6714,7 +7622,7 @@ declare const MagicPad: {
6714
7622
  idUserLogged: number;
6715
7623
  }, {
6716
7624
  dispatch: any;
6717
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7625
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6718
7626
  widgets: {
6719
7627
  layers: Record<string, {
6720
7628
  title: string;
@@ -6954,7 +7862,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
6954
7862
  _url: string;
6955
7863
  } & {
6956
7864
  [key: string]: string | number | null;
6957
- level: 0 | 3 | 5 | 9;
7865
+ level: 0 | 9 | 3 | 5;
6958
7866
  dateCreation: string;
6959
7867
  dateModified: string;
6960
7868
  };
@@ -7071,7 +7979,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
7071
7979
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
7072
7980
  }, jamespot_user_api.BaseMessages>, void, {
7073
7981
  dispatch: any;
7074
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7982
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7075
7983
  widgets: {
7076
7984
  layers: Record<string, {
7077
7985
  title: string;
@@ -7271,7 +8179,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7271
8179
  _url: string;
7272
8180
  } & {
7273
8181
  [key: string]: string | number | null;
7274
- level: 0 | 3 | 5 | 9;
8182
+ level: 0 | 9 | 3 | 5;
7275
8183
  dateCreation: string;
7276
8184
  dateModified: string;
7277
8185
  };
@@ -7388,7 +8296,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7388
8296
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
7389
8297
  }, jamespot_user_api.BaseMessages>, number, {
7390
8298
  dispatch: any;
7391
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8299
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7392
8300
  widgets: {
7393
8301
  layers: Record<string, {
7394
8302
  title: string;
@@ -7575,7 +8483,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7575
8483
  }>;
7576
8484
  declare const fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
7577
8485
  dispatch: any;
7578
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8486
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7579
8487
  widgets: {
7580
8488
  layers: Record<string, {
7581
8489
  title: string;
@@ -7779,8 +8687,8 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7779
8687
  end: string;
7780
8688
  };
7781
8689
  name: string;
7782
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
7783
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8690
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8691
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
7784
8692
  or?: boolean | undefined;
7785
8693
  isNull?: boolean | undefined;
7786
8694
  isNotNull?: boolean | undefined;
@@ -7791,7 +8699,7 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7791
8699
  }[];
7792
8700
  }, {
7793
8701
  dispatch: any;
7794
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8702
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7795
8703
  widgets: {
7796
8704
  layers: Record<string, {
7797
8705
  title: string;
@@ -7997,8 +8905,8 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
7997
8905
  end: string;
7998
8906
  };
7999
8907
  name: string;
8000
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
8001
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8908
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8909
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
8002
8910
  or?: boolean | undefined;
8003
8911
  isNull?: boolean | undefined;
8004
8912
  isNotNull?: boolean | undefined;
@@ -8009,7 +8917,7 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
8009
8917
  }[];
8010
8918
  }, {
8011
8919
  dispatch: any;
8012
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8920
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8013
8921
  widgets: {
8014
8922
  layers: Record<string, {
8015
8923
  title: string;
@@ -8199,7 +9107,7 @@ declare const fetchMediaLibraryStats: _reduxjs_toolkit.AsyncThunk<ApiWrapper<{
8199
9107
  nbFiles: number;
8200
9108
  }, jamespot_user_api.BaseMessages>, void, {
8201
9109
  dispatch: any;
8202
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9110
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8203
9111
  widgets: {
8204
9112
  layers: Record<string, {
8205
9113
  title: string;
@@ -8411,7 +9319,7 @@ declare const MediaLibrary: {
8411
9319
  _url: string;
8412
9320
  } & {
8413
9321
  [key: string]: string | number | null;
8414
- level: 0 | 3 | 5 | 9;
9322
+ level: 0 | 9 | 3 | 5;
8415
9323
  dateCreation: string;
8416
9324
  dateModified: string;
8417
9325
  };
@@ -8528,7 +9436,7 @@ declare const MediaLibrary: {
8528
9436
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8529
9437
  }, jamespot_user_api.BaseMessages>, void, {
8530
9438
  dispatch: any;
8531
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9439
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8532
9440
  widgets: {
8533
9441
  layers: Record<string, {
8534
9442
  title: string;
@@ -8728,7 +9636,7 @@ declare const MediaLibrary: {
8728
9636
  _url: string;
8729
9637
  } & {
8730
9638
  [key: string]: string | number | null;
8731
- level: 0 | 3 | 5 | 9;
9639
+ level: 0 | 9 | 3 | 5;
8732
9640
  dateCreation: string;
8733
9641
  dateModified: string;
8734
9642
  };
@@ -8845,7 +9753,7 @@ declare const MediaLibrary: {
8845
9753
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8846
9754
  }, jamespot_user_api.BaseMessages>, number, {
8847
9755
  dispatch: any;
8848
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9756
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8849
9757
  widgets: {
8850
9758
  layers: Record<string, {
8851
9759
  title: string;
@@ -9032,7 +9940,7 @@ declare const MediaLibrary: {
9032
9940
  }>;
9033
9941
  fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
9034
9942
  dispatch: any;
9035
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9943
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9036
9944
  widgets: {
9037
9945
  layers: Record<string, {
9038
9946
  title: string;
@@ -9222,7 +10130,7 @@ declare const MediaLibrary: {
9222
10130
  nbFiles: number;
9223
10131
  }, jamespot_user_api.BaseMessages>, void, {
9224
10132
  dispatch: any;
9225
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10133
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9226
10134
  widgets: {
9227
10135
  layers: Record<string, {
9228
10136
  title: string;
@@ -9428,8 +10336,8 @@ declare const MediaLibrary: {
9428
10336
  end: string;
9429
10337
  };
9430
10338
  name: string;
9431
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9432
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10339
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10340
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9433
10341
  or?: boolean | undefined;
9434
10342
  isNull?: boolean | undefined;
9435
10343
  isNotNull?: boolean | undefined;
@@ -9440,7 +10348,7 @@ declare const MediaLibrary: {
9440
10348
  }[];
9441
10349
  }, {
9442
10350
  dispatch: any;
9443
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10351
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9444
10352
  widgets: {
9445
10353
  layers: Record<string, {
9446
10354
  title: string;
@@ -9644,8 +10552,8 @@ declare const MediaLibrary: {
9644
10552
  end: string;
9645
10553
  };
9646
10554
  name: string;
9647
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9648
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10555
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10556
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9649
10557
  or?: boolean | undefined;
9650
10558
  isNull?: boolean | undefined;
9651
10559
  isNotNull?: boolean | undefined;
@@ -9656,7 +10564,7 @@ declare const MediaLibrary: {
9656
10564
  }[];
9657
10565
  }, {
9658
10566
  dispatch: any;
9659
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10567
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9660
10568
  widgets: {
9661
10569
  layers: Record<string, {
9662
10570
  title: string;
@@ -10082,7 +10990,7 @@ declare const WedocApp: {
10082
10990
  _url: string;
10083
10991
  } & {
10084
10992
  [key: string]: string | number | null;
10085
- level: 0 | 3 | 5 | 9;
10993
+ level: 0 | 9 | 3 | 5;
10086
10994
  dateCreation: string;
10087
10995
  dateModified: string;
10088
10996
  };
@@ -10133,7 +11041,7 @@ declare const WedocApp: {
10133
11041
  _url: string;
10134
11042
  } & {
10135
11043
  [key: string]: string | number | null;
10136
- level: 0 | 3 | 5 | 9;
11044
+ level: 0 | 9 | 3 | 5;
10137
11045
  dateCreation: string;
10138
11046
  dateModified: string;
10139
11047
  };
@@ -10178,7 +11086,7 @@ declare const WedocApp: {
10178
11086
  _url: string;
10179
11087
  } & {
10180
11088
  [key: string]: string | number | null;
10181
- level: 0 | 3 | 5 | 9;
11089
+ level: 0 | 9 | 3 | 5;
10182
11090
  dateCreation: string;
10183
11091
  dateModified: string;
10184
11092
  };
@@ -10221,7 +11129,7 @@ declare const WedocApp: {
10221
11129
  _url: string;
10222
11130
  } & {
10223
11131
  [key: string]: string | number | null;
10224
- level: 0 | 3 | 5 | 9;
11132
+ level: 0 | 9 | 3 | 5;
10225
11133
  dateCreation: string;
10226
11134
  dateModified: string;
10227
11135
  };
@@ -10235,7 +11143,7 @@ declare const WedocApp: {
10235
11143
  sort: "ASC" | "DESC";
10236
11144
  }, {
10237
11145
  dispatch: any;
10238
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11146
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10239
11147
  widgets: {
10240
11148
  layers: Record<string, {
10241
11149
  title: string;
@@ -10449,7 +11357,7 @@ declare const WedocApp: {
10449
11357
  _url: string;
10450
11358
  } & {
10451
11359
  [key: string]: string | number | null;
10452
- level: 0 | 3 | 5 | 9;
11360
+ level: 0 | 9 | 3 | 5;
10453
11361
  dateCreation: string;
10454
11362
  dateModified: string;
10455
11363
  };
@@ -10459,7 +11367,7 @@ declare const WedocApp: {
10459
11367
  dateModified?: string | null | undefined;
10460
11368
  }>, jamespot_user_api.BaseMessages>, void, {
10461
11369
  dispatch: any;
10462
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11370
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10463
11371
  widgets: {
10464
11372
  layers: Record<string, {
10465
11373
  title: string;
@@ -10666,7 +11574,7 @@ declare const Share: {
10666
11574
  idUser?: number;
10667
11575
  }, {
10668
11576
  dispatch: any;
10669
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11577
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10670
11578
  widgets: {
10671
11579
  layers: Record<string, {
10672
11580
  title: string;
@@ -10974,7 +11882,7 @@ declare const TVDisplay: {
10974
11882
  _url: string;
10975
11883
  } & {
10976
11884
  [key: string]: string | number | null;
10977
- level: 0 | 3 | 5 | 9;
11885
+ level: 0 | 9 | 3 | 5;
10978
11886
  dateCreation: string;
10979
11887
  dateModified: string;
10980
11888
  };
@@ -11110,7 +12018,7 @@ declare const TVDisplay: {
11110
12018
  _url: string;
11111
12019
  } & {
11112
12020
  [key: string]: string | number | null;
11113
- level: 0 | 3 | 5 | 9;
12021
+ level: 0 | 9 | 3 | 5;
11114
12022
  dateCreation: string;
11115
12023
  dateModified: string;
11116
12024
  };
@@ -11252,7 +12160,7 @@ declare const TVDisplay: {
11252
12160
  _url: string;
11253
12161
  } & {
11254
12162
  [key: string]: string | number | null;
11255
- level: 0 | 3 | 5 | 9;
12163
+ level: 0 | 9 | 3 | 5;
11256
12164
  dateCreation: string;
11257
12165
  dateModified: string;
11258
12166
  };
@@ -11388,7 +12296,7 @@ declare const TVDisplay: {
11388
12296
  _url: string;
11389
12297
  } & {
11390
12298
  [key: string]: string | number | null;
11391
- level: 0 | 3 | 5 | 9;
12299
+ level: 0 | 9 | 3 | 5;
11392
12300
  dateCreation: string;
11393
12301
  dateModified: string;
11394
12302
  };
@@ -11425,7 +12333,7 @@ declare const TVDisplay: {
11425
12333
  } | undefined;
11426
12334
  }>>, number | void, {
11427
12335
  dispatch: any;
11428
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
12336
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11429
12337
  widgets: {
11430
12338
  layers: Record<string, {
11431
12339
  title: string;
@@ -11712,7 +12620,7 @@ declare const TVDisplay: {
11712
12620
  _url: string;
11713
12621
  } & {
11714
12622
  [key: string]: string | number | null;
11715
- level: 0 | 3 | 5 | 9;
12623
+ level: 0 | 9 | 3 | 5;
11716
12624
  dateCreation: string;
11717
12625
  dateModified: string;
11718
12626
  };
@@ -11848,7 +12756,7 @@ declare const TVDisplay: {
11848
12756
  _url: string;
11849
12757
  } & {
11850
12758
  [key: string]: string | number | null;
11851
- level: 0 | 3 | 5 | 9;
12759
+ level: 0 | 9 | 3 | 5;
11852
12760
  dateCreation: string;
11853
12761
  dateModified: string;
11854
12762
  };
@@ -11886,7 +12794,7 @@ declare const TVDisplay: {
11886
12794
  }>, "id">;
11887
12795
  }, {
11888
12796
  dispatch: any;
11889
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
12797
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11890
12798
  widgets: {
11891
12799
  layers: Record<string, {
11892
12800
  title: string;
@@ -12290,7 +13198,7 @@ declare const updateWidgetContent: <T>(uniqid: string, content: Partial<T>, over
12290
13198
  fontSize?: string | undefined;
12291
13199
  buttonSize?: "lg" | "sm" | "md" | undefined;
12292
13200
  variant?: "contained" | "outlined" | undefined;
12293
- openingType?: "popup" | "anchor" | "link" | undefined;
13201
+ openingType?: "popup" | "link" | "anchor" | undefined;
12294
13202
  openingTypeLink?: {
12295
13203
  url: string;
12296
13204
  target: string;
@@ -12695,7 +13603,7 @@ declare const Widget: {
12695
13603
  fontSize?: string | undefined;
12696
13604
  buttonSize?: "lg" | "sm" | "md" | undefined;
12697
13605
  variant?: "contained" | "outlined" | undefined;
12698
- openingType?: "popup" | "anchor" | "link" | undefined;
13606
+ openingType?: "popup" | "link" | "anchor" | undefined;
12699
13607
  openingTypeLink?: {
12700
13608
  url: string;
12701
13609
  target: string;
@@ -14016,12 +14924,31 @@ type AppFieldFormProperty = {
14016
14924
  declare const AppFormUniqueList: ("IMAGE" | "DESCRIPTION")[];
14017
14925
  declare const AppFormUniqueListCheck: string[];
14018
14926
  declare const AppFormBannedFromViews: Map<AppFormItemTypesValues, ViewName[]>;
14019
- type MappedExtraFieldsWithView = {
14020
- fixed: ExtraAppFieldsItemViewsValues[];
14021
- optional: ExtraAppFieldsItemViewsValues[];
14022
- };
14023
14927
  declare const MapExtraFieldsWithView: {
14024
- [k: string]: MappedExtraFieldsWithView;
14928
+ readonly create: {
14929
+ readonly fixed: readonly ["TITLE"];
14930
+ readonly optional: readonly ["PUBLISHTO", "SENDALERTTOSUBSCRIBERS", "RECEIVEACOPY"];
14931
+ };
14932
+ readonly popup: {
14933
+ readonly fixed: readonly ["TITLE"];
14934
+ readonly optional: readonly ["PUBLISHTO"];
14935
+ };
14936
+ readonly edit: {
14937
+ readonly fixed: readonly ["TITLE"];
14938
+ readonly optional: readonly ["PUBLISHTO"];
14939
+ };
14940
+ readonly list: {
14941
+ readonly fixed: readonly ["TITLE", "USER"];
14942
+ readonly optional: readonly ["CREATIONDATE"];
14943
+ };
14944
+ readonly filter: {
14945
+ readonly fixed: readonly ["TITLE", "USER"];
14946
+ readonly optional: readonly ["CREATIONDATE"];
14947
+ };
14948
+ readonly view: {
14949
+ readonly fixed: readonly ["TITLE"];
14950
+ readonly optional: readonly [];
14951
+ };
14025
14952
  };
14026
14953
  type AppFieldView = {
14027
14954
  fieldIdRef: string;
@@ -14158,7 +15085,7 @@ interface InstalledApp {
14158
15085
  color: string;
14159
15086
  url: string;
14160
15087
  type: string;
14161
- urlTarget: "_blank";
15088
+ urlTarget: '_blank';
14162
15089
  description: string;
14163
15090
  order: number;
14164
15091
  studioVersion: number;
@@ -14378,7 +15305,7 @@ type HTMLInfo = {
14378
15305
  };
14379
15306
  };
14380
15307
 
14381
- type RootState = Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
15308
+ type RootState = Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
14382
15309
  type RootDispatch = Dispatch$1<Action$1>;
14383
15310
  type RTDispatch = Dispatch<any>;
14384
15311
  type ApiError = {
@@ -14410,7 +15337,7 @@ declare const studio: {
14410
15337
  actions: {
14411
15338
  fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioApplication[], IntlFormatters, {
14412
15339
  dispatch: any;
14413
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15340
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14414
15341
  widgets: {
14415
15342
  layers: Record<string, {
14416
15343
  title: string;
@@ -14600,7 +15527,7 @@ declare const studio: {
14600
15527
  status: AppStatusType;
14601
15528
  }, {
14602
15529
  dispatch: any;
14603
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15530
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14604
15531
  widgets: {
14605
15532
  layers: Record<string, {
14606
15533
  title: string;
@@ -14789,7 +15716,7 @@ declare const studio: {
14789
15716
  idApp: string;
14790
15717
  }, {
14791
15718
  dispatch: any;
14792
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15719
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14793
15720
  widgets: {
14794
15721
  layers: Record<string, {
14795
15722
  title: string;
@@ -14978,7 +15905,7 @@ declare const studio: {
14978
15905
  idApp: string;
14979
15906
  }, {
14980
15907
  dispatch: any;
14981
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15908
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14982
15909
  widgets: {
14983
15910
  layers: Record<string, {
14984
15911
  title: string;
@@ -15168,7 +16095,7 @@ declare const studio: {
15168
16095
  inWork?: boolean;
15169
16096
  }, {
15170
16097
  dispatch: any;
15171
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16098
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15172
16099
  widgets: {
15173
16100
  layers: Record<string, {
15174
16101
  title: string;
@@ -15358,7 +16285,7 @@ declare const studio: {
15358
16285
  callback?: () => void;
15359
16286
  }, {
15360
16287
  dispatch: any;
15361
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16288
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15362
16289
  widgets: {
15363
16290
  layers: Record<string, {
15364
16291
  title: string;
@@ -15548,7 +16475,7 @@ declare const studio: {
15548
16475
  status: jamespot_user_api.StudioApplicationStatusEnumBased;
15549
16476
  }, {
15550
16477
  dispatch: any;
15551
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16478
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15552
16479
  widgets: {
15553
16480
  layers: Record<string, {
15554
16481
  title: string;
@@ -15735,7 +16662,7 @@ declare const studio: {
15735
16662
  }>;
15736
16663
  saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
15737
16664
  dispatch: any;
15738
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16665
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15739
16666
  widgets: {
15740
16667
  layers: Record<string, {
15741
16668
  title: string;
@@ -15924,7 +16851,7 @@ declare const studio: {
15924
16851
  callback?: () => void;
15925
16852
  }, {
15926
16853
  dispatch: any;
15927
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16854
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15928
16855
  widgets: {
15929
16856
  layers: Record<string, {
15930
16857
  title: string;
@@ -16113,7 +17040,7 @@ declare const studio: {
16113
17040
  idApp: string;
16114
17041
  }, {
16115
17042
  dispatch: any;
16116
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
17043
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16117
17044
  widgets: {
16118
17045
  layers: Record<string, {
16119
17046
  title: string;
@@ -16313,4 +17240,4 @@ declare const studio: {
16313
17240
  };
16314
17241
  };
16315
17242
 
16316
- export { APP_STATUS_TYPE, AUDIENCE, AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormItemTypesValues, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Description, Display, DisplayComposant, Displays, EditorProps, EditorsRootState, EditorsState, Element, ExtraAppFieldsItemViews, ExtraAppFieldsItemViewsValues, Faq, FaqRootState, HTMLInfo, Hook, HookRootState, InstalledApp, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPad, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, OptionsClass, PagingState, ParamsClass, Platform, PlatformRootState, RTDispatch, ReservationForm, ReservationRootState, ReservationState, Right, RootDispatch, RootState, STUDIO_VIEW, Share, SocialActions, Solr, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplay, TVDisplayRootState, Table, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, UserCurrent, UserCurrentRootState, Values, ViewName, WedocApp, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, Widget, WidgetEditor, actions, animationsReducer, animationsSlice, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };
17243
+ export { APP_STATUS_TYPE, AUDIENCE, AccessRightObjectList, Action, AdminLogs, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormItemTypesValues, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Description, Display, DisplayComposant, Displays, EditorProps, EditorsRootState, EditorsState, Element, ExtraAppFieldsItemViews, ExtraAppFieldsItemViewsValues, Faq, FaqRootState, HTMLInfo, Hook, HookRootState, InstalledApp, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPad, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, OptionsClass, PagingState, ParamsClass, Platform, PlatformRootState, RTDispatch, ReservationForm, ReservationRootState, ReservationState, Right, RootDispatch, RootState, STUDIO_VIEW, Share, SocialActions, Solr, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplay, TVDisplayRootState, Table, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, UserCurrent, UserCurrentRootState, Values, ViewName, WedocApp, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, Widget, WidgetEditor, actions, adminLogsReducer, adminLogsSlice, animationsReducer, animationsSlice, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };