jamespot-front-business 1.1.80 → 1.1.82

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
  };
@@ -2805,7 +3516,7 @@ declare const Comment: {
2805
3516
  _url: string;
2806
3517
  } & {
2807
3518
  [key: string]: string | number | null;
2808
- level: 0 | 3 | 5 | 9;
3519
+ level: 0 | 9 | 3 | 5;
2809
3520
  dateCreation: string;
2810
3521
  dateModified: string;
2811
3522
  };
@@ -2912,7 +3623,7 @@ declare const Comment: {
2912
3623
  } | undefined;
2913
3624
  }, {
2914
3625
  dispatch: any;
2915
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3626
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
2916
3627
  widgets: {
2917
3628
  layers: Record<string, {
2918
3629
  title: string;
@@ -3102,7 +3813,109 @@ declare const Comment: {
3102
3813
  }>;
3103
3814
  };
3104
3815
  selectors: {
3105
- commentList: (state: CommentRootState, idArticle: number) => CommentsList | undefined;
3816
+ commentList: (state: CommentRootState, idArticle: number, limit?: number) => {
3817
+ type: string;
3818
+ id: number;
3819
+ mainType: string;
3820
+ uri: string;
3821
+ dateCreation: string;
3822
+ dateModified: string | null;
3823
+ description: string | null;
3824
+ _user: jamespot_user_api.jObjectBase & {
3825
+ title: string;
3826
+ _url: string;
3827
+ } & {
3828
+ [key: string]: string | number | null;
3829
+ level: 0 | 9 | 3 | 5;
3830
+ dateCreation: string;
3831
+ dateModified: string;
3832
+ };
3833
+ _right: jamespot_user_api.Rights;
3834
+ _attachedFiles?: {
3835
+ type: string;
3836
+ id: number;
3837
+ mainType: string;
3838
+ uri: string;
3839
+ dateCreation: string;
3840
+ dateModified: string | null;
3841
+ title: string;
3842
+ _url: string;
3843
+ mimetype: string;
3844
+ size: number;
3845
+ path?: string | undefined;
3846
+ }[] | undefined;
3847
+ _actions?: Record<string, {
3848
+ type: string;
3849
+ class: string;
3850
+ label: string;
3851
+ stats: {
3852
+ total: number;
3853
+ };
3854
+ cssClass: string;
3855
+ cssColor: string;
3856
+ isActive: boolean;
3857
+ struct: {
3858
+ type: string;
3859
+ targetId: number;
3860
+ targetType: string;
3861
+ action: string;
3862
+ do: string;
3863
+ };
3864
+ }> | undefined;
3865
+ _widgets?: jamespot_user_api.WidgetWrapperGeneric<({
3866
+ layers?: string[] | undefined;
3867
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3868
+ layers?: string[] | undefined;
3869
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
3870
+ layers?: string[] | undefined;
3871
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
3872
+ layers?: string[] | undefined;
3873
+ } & jamespot_user_api.WidgetArticleImageType) | ({
3874
+ layers?: string[] | undefined;
3875
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
3876
+ layers?: string[] | undefined;
3877
+ } & jamespot_user_api.WidgetArticleTextType) | ({
3878
+ layers?: string[] | undefined;
3879
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
3880
+ layers?: string[] | undefined;
3881
+ } & jamespot_user_api.WidgetType<{
3882
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3883
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3884
+ css?: Record<string, string> | undefined;
3885
+ edit?: boolean | undefined;
3886
+ }>) | ({
3887
+ layers?: string[] | undefined;
3888
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
3889
+ layers?: string[] | undefined;
3890
+ } & {
3891
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3892
+ uniqid: string;
3893
+ content: {
3894
+ uri?: string | undefined;
3895
+ limit?: number | boolean | undefined;
3896
+ tableColumnsData?: {
3897
+ name?: string | undefined;
3898
+ label?: string | undefined;
3899
+ isVisible?: boolean | undefined;
3900
+ textEllipsis?: boolean | undefined;
3901
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3902
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3903
+ }[] | undefined;
3904
+ tableHeadColor?: string | undefined;
3905
+ tableHeadTextColor?: string | undefined;
3906
+ tableHeadIconColor?: string | undefined;
3907
+ tableRowColor?: string | undefined;
3908
+ tableRowTextColor?: string | undefined;
3909
+ tableBorderRadius?: number | undefined;
3910
+ tableSizedColumns?: boolean | undefined;
3911
+ tableSizedColumnsWidth?: number | undefined;
3912
+ };
3913
+ }) | ({
3914
+ layers?: string[] | undefined;
3915
+ } & jamespot_user_api.WidgetPresenceType) | ({
3916
+ layers?: string[] | undefined;
3917
+ } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
3918
+ }[];
3106
3919
  };
3107
3920
  getCommentRTHandlers: (dispatch: RTDispatch, idArticle: number) => jamespot_user_api.RTMessageHandler<"JAMESPOT", "comment-create" | "comment-delete" | "comment-update" | "article-create" | "article-delete" | "article-update">[];
3108
3921
  getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
@@ -3152,8 +3965,8 @@ declare const Bookmark: {
3152
3965
  resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
3153
3966
  addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3154
3967
  id: number;
3155
- type: "bookmarkLink";
3156
3968
  mainType: string;
3969
+ type: "bookmarkLink";
3157
3970
  uri: string;
3158
3971
  value: string | null;
3159
3972
  srcId: number;
@@ -3172,8 +3985,8 @@ declare const Bookmark: {
3172
3985
  }, "bookmarkList/addBookmarkRT">;
3173
3986
  deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3174
3987
  id: number;
3175
- type: "bookmarkLink";
3176
3988
  mainType: string;
3989
+ type: "bookmarkLink";
3177
3990
  uri: string;
3178
3991
  value: string | null;
3179
3992
  srcId: number;
@@ -3192,8 +4005,8 @@ declare const Bookmark: {
3192
4005
  }, "bookmarkList/deleteBookmarkRT">;
3193
4006
  updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3194
4007
  id: number;
3195
- type: "bookmarkLink";
3196
4008
  mainType: string;
4009
+ type: "bookmarkLink";
3197
4010
  uri: string;
3198
4011
  value: string | null;
3199
4012
  srcId: number;
@@ -3212,8 +4025,8 @@ declare const Bookmark: {
3212
4025
  }, "bookmarkList/updateBookmarkRT">;
3213
4026
  setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
3214
4027
  id: number;
3215
- type: "bookmarkLink";
3216
4028
  mainType: string;
4029
+ type: "bookmarkLink";
3217
4030
  uri: string;
3218
4031
  value: string | null;
3219
4032
  srcId: number;
@@ -3234,8 +4047,8 @@ declare const Bookmark: {
3234
4047
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
3235
4048
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
3236
4049
  id: number;
3237
- type: "bookmarkLink";
3238
4050
  mainType: string;
4051
+ type: "bookmarkLink";
3239
4052
  uri: string;
3240
4053
  value: string | null;
3241
4054
  srcId: number;
@@ -3253,7 +4066,7 @@ declare const Bookmark: {
3253
4066
  url?: string | null | undefined;
3254
4067
  }, jamespot_user_api.BaseMessages>, void, {
3255
4068
  dispatch: any;
3256
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4069
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3257
4070
  widgets: {
3258
4071
  layers: Record<string, {
3259
4072
  title: string;
@@ -3443,8 +4256,8 @@ declare const Bookmark: {
3443
4256
  }>;
3444
4257
  addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
3445
4258
  id: number;
3446
- type: "bookmarkLink";
3447
4259
  mainType: string;
4260
+ type: "bookmarkLink";
3448
4261
  uri: string;
3449
4262
  value: string | null;
3450
4263
  srcId: number;
@@ -3462,8 +4275,8 @@ declare const Bookmark: {
3462
4275
  url?: string | null | undefined;
3463
4276
  } | {
3464
4277
  id: number;
3465
- type: string;
3466
4278
  mainType: string;
4279
+ type: string;
3467
4280
  uri: string;
3468
4281
  value: string | null;
3469
4282
  srcId: number;
@@ -3485,8 +4298,8 @@ declare const Bookmark: {
3485
4298
  } | undefined;
3486
4299
  }, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
3487
4300
  id: number;
3488
- type: "bookmarkLink";
3489
4301
  mainType: string;
4302
+ type: "bookmarkLink";
3490
4303
  uri: string;
3491
4304
  value: string | null;
3492
4305
  srcId: number;
@@ -3514,7 +4327,7 @@ declare const Bookmark: {
3514
4327
  requestId?: string | undefined;
3515
4328
  }, {
3516
4329
  dispatch: any;
3517
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4330
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3518
4331
  widgets: {
3519
4332
  layers: Record<string, {
3520
4333
  title: string;
@@ -3705,8 +4518,8 @@ declare const Bookmark: {
3705
4518
  moveBookmark: _reduxjs_toolkit.AsyncThunk<void, {
3706
4519
  bookmark: Pick<{
3707
4520
  id: number;
3708
- type: "bookmarkLink";
3709
4521
  mainType: string;
4522
+ type: "bookmarkLink";
3710
4523
  uri: string;
3711
4524
  value: string | null;
3712
4525
  srcId: number;
@@ -3725,8 +4538,8 @@ declare const Bookmark: {
3725
4538
  }, "id">;
3726
4539
  bookmarkReference: Pick<{
3727
4540
  id: number;
3728
- type: "bookmarkLink";
3729
4541
  mainType: string;
4542
+ type: "bookmarkLink";
3730
4543
  uri: string;
3731
4544
  value: string | null;
3732
4545
  srcId: number;
@@ -3746,7 +4559,7 @@ declare const Bookmark: {
3746
4559
  position: "after" | "before";
3747
4560
  }, {
3748
4561
  dispatch: any;
3749
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4562
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3750
4563
  widgets: {
3751
4564
  layers: Record<string, {
3752
4565
  title: string;
@@ -3936,8 +4749,8 @@ declare const Bookmark: {
3936
4749
  }>;
3937
4750
  deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
3938
4751
  id: number;
3939
- type: "bookmarkLink";
3940
4752
  mainType: string;
4753
+ type: "bookmarkLink";
3941
4754
  uri: string;
3942
4755
  value: string | null;
3943
4756
  srcId: number;
@@ -3957,7 +4770,7 @@ declare const Bookmark: {
3957
4770
  requestId?: string | undefined;
3958
4771
  }, {
3959
4772
  dispatch: any;
3960
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4773
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
3961
4774
  widgets: {
3962
4775
  layers: Record<string, {
3963
4776
  title: string;
@@ -4147,8 +4960,8 @@ declare const Bookmark: {
4147
4960
  }>;
4148
4961
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
4149
4962
  id: number;
4150
- type: "bookmarkLink";
4151
4963
  mainType: string;
4964
+ type: "bookmarkLink";
4152
4965
  uri: string;
4153
4966
  value: string | null;
4154
4967
  srcId: number;
@@ -4166,7 +4979,7 @@ declare const Bookmark: {
4166
4979
  url?: string | null | undefined;
4167
4980
  }>, {
4168
4981
  dispatch: any;
4169
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4982
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4170
4983
  widgets: {
4171
4984
  layers: Record<string, {
4172
4985
  title: string;
@@ -4360,8 +5173,8 @@ declare const Bookmark: {
4360
5173
  bookmarkListIsInitialized: (state: BookmarkRootState) => boolean;
4361
5174
  bookmarkEditBookmark: (state: BookmarkRootState) => {
4362
5175
  id: number;
4363
- type: "bookmarkLink";
4364
5176
  mainType: string;
5177
+ type: "bookmarkLink";
4365
5178
  uri: string;
4366
5179
  value: string | null;
4367
5180
  srcId: number;
@@ -4380,8 +5193,8 @@ declare const Bookmark: {
4380
5193
  } | undefined;
4381
5194
  bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
4382
5195
  id: number;
4383
- type: "bookmarkLink";
4384
5196
  mainType: string;
5197
+ type: "bookmarkLink";
4385
5198
  uri: string;
4386
5199
  value: string | null;
4387
5200
  srcId: number;
@@ -4443,7 +5256,7 @@ declare const Faq: {
4443
5256
  };
4444
5257
  actions: {
4445
5258
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
4446
- _web: "" | "1" | "0" | undefined;
5259
+ _web: "" | "0" | "1" | undefined;
4447
5260
  appImage: string | {
4448
5261
  image: {
4449
5262
  type: string;
@@ -4454,7 +5267,7 @@ declare const Faq: {
4454
5267
  access: {
4455
5268
  createCategory: boolean;
4456
5269
  };
4457
- _displayComment: "" | "1" | "0" | undefined;
5270
+ _displayComment: "" | "0" | "1" | undefined;
4458
5271
  } | {
4459
5272
  _web: string;
4460
5273
  appImage?: never;
@@ -4486,7 +5299,7 @@ declare const Faq: {
4486
5299
  _url: string;
4487
5300
  } & {
4488
5301
  [key: string]: string | number | null;
4489
- level: 0 | 3 | 5 | 9;
5302
+ level: 0 | 9 | 3 | 5;
4490
5303
  dateCreation: string;
4491
5304
  dateModified: string;
4492
5305
  };
@@ -4639,7 +5452,7 @@ declare const slice$1: _reduxjs_toolkit.Slice<{}, {
4639
5452
  isActive: boolean;
4640
5453
  } & {
4641
5454
  create: boolean;
4642
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5455
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4643
5456
  }) | undefined;
4644
5457
  AdminAdvancedHook?: ({
4645
5458
  isActive: boolean;
@@ -4704,7 +5517,7 @@ declare const Hook: {
4704
5517
  isActive: boolean;
4705
5518
  } & {
4706
5519
  create: boolean;
4707
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5520
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4708
5521
  }) | undefined;
4709
5522
  AdminAdvancedHook?: ({
4710
5523
  isActive: boolean;
@@ -4765,7 +5578,7 @@ declare const Hook: {
4765
5578
  isActive: boolean;
4766
5579
  } & {
4767
5580
  create: boolean;
4768
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5581
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4769
5582
  }) | undefined;
4770
5583
  AdminAdvancedHook?: ({
4771
5584
  isActive: boolean;
@@ -4826,7 +5639,7 @@ declare const Hook: {
4826
5639
  isActive: boolean;
4827
5640
  } & {
4828
5641
  create: boolean;
4829
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5642
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4830
5643
  }) | undefined;
4831
5644
  AdminAdvancedHook?: ({
4832
5645
  isActive: boolean;
@@ -4885,7 +5698,7 @@ declare const Hook: {
4885
5698
  isActive: boolean;
4886
5699
  } & {
4887
5700
  create: boolean;
4888
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5701
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4889
5702
  }) | undefined;
4890
5703
  AdminAdvancedHook?: ({
4891
5704
  isActive: boolean;
@@ -4967,7 +5780,7 @@ declare const jland: {
4967
5780
  retrieveAllMaps: boolean;
4968
5781
  }, {
4969
5782
  dispatch: any;
4970
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5783
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
4971
5784
  widgets: {
4972
5785
  layers: Record<string, {
4973
5786
  title: string;
@@ -5157,7 +5970,7 @@ declare const jland: {
5157
5970
  retrieveAllMaps: boolean;
5158
5971
  }, {
5159
5972
  dispatch: any;
5160
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5973
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5161
5974
  widgets: {
5162
5975
  layers: Record<string, {
5163
5976
  title: string;
@@ -5347,7 +6160,7 @@ declare const jland: {
5347
6160
  retrieveAllMaps: boolean;
5348
6161
  }, {
5349
6162
  dispatch: any;
5350
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6163
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5351
6164
  widgets: {
5352
6165
  layers: Record<string, {
5353
6166
  title: string;
@@ -5537,7 +6350,7 @@ declare const jland: {
5537
6350
  retrieveAllMaps: boolean;
5538
6351
  }, {
5539
6352
  dispatch: any;
5540
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6353
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5541
6354
  widgets: {
5542
6355
  layers: Record<string, {
5543
6356
  title: string;
@@ -5724,7 +6537,7 @@ declare const jland: {
5724
6537
  }>;
5725
6538
  fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<Record<string, number>, void, {
5726
6539
  dispatch: any;
5727
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6540
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5728
6541
  widgets: {
5729
6542
  layers: Record<string, {
5730
6543
  title: string;
@@ -5939,7 +6752,7 @@ declare const jland: {
5939
6752
  map: MapCreationFront;
5940
6753
  }, {
5941
6754
  dispatch: any;
5942
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6755
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5943
6756
  widgets: {
5944
6757
  layers: Record<string, {
5945
6758
  title: string;
@@ -6197,7 +7010,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6197
7010
  _url: string;
6198
7011
  } & {
6199
7012
  [key: string]: string | number | null;
6200
- level: 0 | 3 | 5 | 9;
7013
+ level: 0 | 9 | 3 | 5;
6201
7014
  dateCreation: string;
6202
7015
  dateModified: string;
6203
7016
  };
@@ -6299,7 +7112,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6299
7112
  idUserLogged: number;
6300
7113
  }, {
6301
7114
  dispatch: any;
6302
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7115
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6303
7116
  widgets: {
6304
7117
  layers: Record<string, {
6305
7118
  title: string;
@@ -6510,7 +7323,7 @@ declare const MagicPad: {
6510
7323
  _url: string;
6511
7324
  } & {
6512
7325
  [key: string]: string | number | null;
6513
- level: 0 | 3 | 5 | 9;
7326
+ level: 0 | 9 | 3 | 5;
6514
7327
  dateCreation: string;
6515
7328
  dateModified: string;
6516
7329
  };
@@ -6612,7 +7425,7 @@ declare const MagicPad: {
6612
7425
  idUserLogged: number;
6613
7426
  }, {
6614
7427
  dispatch: any;
6615
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7428
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6616
7429
  widgets: {
6617
7430
  layers: Record<string, {
6618
7431
  title: string;
@@ -6852,7 +7665,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
6852
7665
  _url: string;
6853
7666
  } & {
6854
7667
  [key: string]: string | number | null;
6855
- level: 0 | 3 | 5 | 9;
7668
+ level: 0 | 9 | 3 | 5;
6856
7669
  dateCreation: string;
6857
7670
  dateModified: string;
6858
7671
  };
@@ -6969,7 +7782,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
6969
7782
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
6970
7783
  }, jamespot_user_api.BaseMessages>, void, {
6971
7784
  dispatch: any;
6972
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7785
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6973
7786
  widgets: {
6974
7787
  layers: Record<string, {
6975
7788
  title: string;
@@ -7169,7 +7982,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7169
7982
  _url: string;
7170
7983
  } & {
7171
7984
  [key: string]: string | number | null;
7172
- level: 0 | 3 | 5 | 9;
7985
+ level: 0 | 9 | 3 | 5;
7173
7986
  dateCreation: string;
7174
7987
  dateModified: string;
7175
7988
  };
@@ -7286,7 +8099,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7286
8099
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
7287
8100
  }, jamespot_user_api.BaseMessages>, number, {
7288
8101
  dispatch: any;
7289
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8102
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7290
8103
  widgets: {
7291
8104
  layers: Record<string, {
7292
8105
  title: string;
@@ -7473,7 +8286,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7473
8286
  }>;
7474
8287
  declare const fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
7475
8288
  dispatch: any;
7476
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8289
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7477
8290
  widgets: {
7478
8291
  layers: Record<string, {
7479
8292
  title: string;
@@ -7677,8 +8490,8 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7677
8490
  end: string;
7678
8491
  };
7679
8492
  name: string;
7680
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
7681
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8493
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8494
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
7682
8495
  or?: boolean | undefined;
7683
8496
  isNull?: boolean | undefined;
7684
8497
  isNotNull?: boolean | undefined;
@@ -7689,7 +8502,7 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7689
8502
  }[];
7690
8503
  }, {
7691
8504
  dispatch: any;
7692
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8505
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7693
8506
  widgets: {
7694
8507
  layers: Record<string, {
7695
8508
  title: string;
@@ -7895,8 +8708,8 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
7895
8708
  end: string;
7896
8709
  };
7897
8710
  name: string;
7898
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
7899
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8711
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8712
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
7900
8713
  or?: boolean | undefined;
7901
8714
  isNull?: boolean | undefined;
7902
8715
  isNotNull?: boolean | undefined;
@@ -7907,7 +8720,7 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
7907
8720
  }[];
7908
8721
  }, {
7909
8722
  dispatch: any;
7910
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8723
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
7911
8724
  widgets: {
7912
8725
  layers: Record<string, {
7913
8726
  title: string;
@@ -8097,7 +8910,7 @@ declare const fetchMediaLibraryStats: _reduxjs_toolkit.AsyncThunk<ApiWrapper<{
8097
8910
  nbFiles: number;
8098
8911
  }, jamespot_user_api.BaseMessages>, void, {
8099
8912
  dispatch: any;
8100
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8913
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8101
8914
  widgets: {
8102
8915
  layers: Record<string, {
8103
8916
  title: string;
@@ -8309,7 +9122,7 @@ declare const MediaLibrary: {
8309
9122
  _url: string;
8310
9123
  } & {
8311
9124
  [key: string]: string | number | null;
8312
- level: 0 | 3 | 5 | 9;
9125
+ level: 0 | 9 | 3 | 5;
8313
9126
  dateCreation: string;
8314
9127
  dateModified: string;
8315
9128
  };
@@ -8426,7 +9239,7 @@ declare const MediaLibrary: {
8426
9239
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8427
9240
  }, jamespot_user_api.BaseMessages>, void, {
8428
9241
  dispatch: any;
8429
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9242
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8430
9243
  widgets: {
8431
9244
  layers: Record<string, {
8432
9245
  title: string;
@@ -8626,7 +9439,7 @@ declare const MediaLibrary: {
8626
9439
  _url: string;
8627
9440
  } & {
8628
9441
  [key: string]: string | number | null;
8629
- level: 0 | 3 | 5 | 9;
9442
+ level: 0 | 9 | 3 | 5;
8630
9443
  dateCreation: string;
8631
9444
  dateModified: string;
8632
9445
  };
@@ -8743,7 +9556,7 @@ declare const MediaLibrary: {
8743
9556
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8744
9557
  }, jamespot_user_api.BaseMessages>, number, {
8745
9558
  dispatch: any;
8746
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9559
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8747
9560
  widgets: {
8748
9561
  layers: Record<string, {
8749
9562
  title: string;
@@ -8930,7 +9743,7 @@ declare const MediaLibrary: {
8930
9743
  }>;
8931
9744
  fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
8932
9745
  dispatch: any;
8933
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9746
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
8934
9747
  widgets: {
8935
9748
  layers: Record<string, {
8936
9749
  title: string;
@@ -9120,7 +9933,7 @@ declare const MediaLibrary: {
9120
9933
  nbFiles: number;
9121
9934
  }, jamespot_user_api.BaseMessages>, void, {
9122
9935
  dispatch: any;
9123
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9936
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9124
9937
  widgets: {
9125
9938
  layers: Record<string, {
9126
9939
  title: string;
@@ -9326,8 +10139,8 @@ declare const MediaLibrary: {
9326
10139
  end: string;
9327
10140
  };
9328
10141
  name: string;
9329
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9330
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10142
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10143
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9331
10144
  or?: boolean | undefined;
9332
10145
  isNull?: boolean | undefined;
9333
10146
  isNotNull?: boolean | undefined;
@@ -9338,7 +10151,7 @@ declare const MediaLibrary: {
9338
10151
  }[];
9339
10152
  }, {
9340
10153
  dispatch: any;
9341
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10154
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9342
10155
  widgets: {
9343
10156
  layers: Record<string, {
9344
10157
  title: string;
@@ -9542,8 +10355,8 @@ declare const MediaLibrary: {
9542
10355
  end: string;
9543
10356
  };
9544
10357
  name: string;
9545
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9546
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10358
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10359
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9547
10360
  or?: boolean | undefined;
9548
10361
  isNull?: boolean | undefined;
9549
10362
  isNotNull?: boolean | undefined;
@@ -9554,7 +10367,7 @@ declare const MediaLibrary: {
9554
10367
  }[];
9555
10368
  }, {
9556
10369
  dispatch: any;
9557
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10370
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
9558
10371
  widgets: {
9559
10372
  layers: Record<string, {
9560
10373
  title: string;
@@ -9980,7 +10793,7 @@ declare const WedocApp: {
9980
10793
  _url: string;
9981
10794
  } & {
9982
10795
  [key: string]: string | number | null;
9983
- level: 0 | 3 | 5 | 9;
10796
+ level: 0 | 9 | 3 | 5;
9984
10797
  dateCreation: string;
9985
10798
  dateModified: string;
9986
10799
  };
@@ -10031,7 +10844,7 @@ declare const WedocApp: {
10031
10844
  _url: string;
10032
10845
  } & {
10033
10846
  [key: string]: string | number | null;
10034
- level: 0 | 3 | 5 | 9;
10847
+ level: 0 | 9 | 3 | 5;
10035
10848
  dateCreation: string;
10036
10849
  dateModified: string;
10037
10850
  };
@@ -10076,7 +10889,7 @@ declare const WedocApp: {
10076
10889
  _url: string;
10077
10890
  } & {
10078
10891
  [key: string]: string | number | null;
10079
- level: 0 | 3 | 5 | 9;
10892
+ level: 0 | 9 | 3 | 5;
10080
10893
  dateCreation: string;
10081
10894
  dateModified: string;
10082
10895
  };
@@ -10119,7 +10932,7 @@ declare const WedocApp: {
10119
10932
  _url: string;
10120
10933
  } & {
10121
10934
  [key: string]: string | number | null;
10122
- level: 0 | 3 | 5 | 9;
10935
+ level: 0 | 9 | 3 | 5;
10123
10936
  dateCreation: string;
10124
10937
  dateModified: string;
10125
10938
  };
@@ -10133,7 +10946,7 @@ declare const WedocApp: {
10133
10946
  sort: "ASC" | "DESC";
10134
10947
  }, {
10135
10948
  dispatch: any;
10136
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10949
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10137
10950
  widgets: {
10138
10951
  layers: Record<string, {
10139
10952
  title: string;
@@ -10347,7 +11160,7 @@ declare const WedocApp: {
10347
11160
  _url: string;
10348
11161
  } & {
10349
11162
  [key: string]: string | number | null;
10350
- level: 0 | 3 | 5 | 9;
11163
+ level: 0 | 9 | 3 | 5;
10351
11164
  dateCreation: string;
10352
11165
  dateModified: string;
10353
11166
  };
@@ -10357,7 +11170,7 @@ declare const WedocApp: {
10357
11170
  dateModified?: string | null | undefined;
10358
11171
  }>, jamespot_user_api.BaseMessages>, void, {
10359
11172
  dispatch: any;
10360
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11173
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10361
11174
  widgets: {
10362
11175
  layers: Record<string, {
10363
11176
  title: string;
@@ -10564,7 +11377,7 @@ declare const Share: {
10564
11377
  idUser?: number;
10565
11378
  }, {
10566
11379
  dispatch: any;
10567
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11380
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
10568
11381
  widgets: {
10569
11382
  layers: Record<string, {
10570
11383
  title: string;
@@ -10872,7 +11685,7 @@ declare const TVDisplay: {
10872
11685
  _url: string;
10873
11686
  } & {
10874
11687
  [key: string]: string | number | null;
10875
- level: 0 | 3 | 5 | 9;
11688
+ level: 0 | 9 | 3 | 5;
10876
11689
  dateCreation: string;
10877
11690
  dateModified: string;
10878
11691
  };
@@ -11008,7 +11821,7 @@ declare const TVDisplay: {
11008
11821
  _url: string;
11009
11822
  } & {
11010
11823
  [key: string]: string | number | null;
11011
- level: 0 | 3 | 5 | 9;
11824
+ level: 0 | 9 | 3 | 5;
11012
11825
  dateCreation: string;
11013
11826
  dateModified: string;
11014
11827
  };
@@ -11150,7 +11963,7 @@ declare const TVDisplay: {
11150
11963
  _url: string;
11151
11964
  } & {
11152
11965
  [key: string]: string | number | null;
11153
- level: 0 | 3 | 5 | 9;
11966
+ level: 0 | 9 | 3 | 5;
11154
11967
  dateCreation: string;
11155
11968
  dateModified: string;
11156
11969
  };
@@ -11286,7 +12099,7 @@ declare const TVDisplay: {
11286
12099
  _url: string;
11287
12100
  } & {
11288
12101
  [key: string]: string | number | null;
11289
- level: 0 | 3 | 5 | 9;
12102
+ level: 0 | 9 | 3 | 5;
11290
12103
  dateCreation: string;
11291
12104
  dateModified: string;
11292
12105
  };
@@ -11323,7 +12136,7 @@ declare const TVDisplay: {
11323
12136
  } | undefined;
11324
12137
  }>>, number | void, {
11325
12138
  dispatch: any;
11326
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
12139
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11327
12140
  widgets: {
11328
12141
  layers: Record<string, {
11329
12142
  title: string;
@@ -11610,7 +12423,7 @@ declare const TVDisplay: {
11610
12423
  _url: string;
11611
12424
  } & {
11612
12425
  [key: string]: string | number | null;
11613
- level: 0 | 3 | 5 | 9;
12426
+ level: 0 | 9 | 3 | 5;
11614
12427
  dateCreation: string;
11615
12428
  dateModified: string;
11616
12429
  };
@@ -11746,7 +12559,7 @@ declare const TVDisplay: {
11746
12559
  _url: string;
11747
12560
  } & {
11748
12561
  [key: string]: string | number | null;
11749
- level: 0 | 3 | 5 | 9;
12562
+ level: 0 | 9 | 3 | 5;
11750
12563
  dateCreation: string;
11751
12564
  dateModified: string;
11752
12565
  };
@@ -11784,7 +12597,7 @@ declare const TVDisplay: {
11784
12597
  }>, "id">;
11785
12598
  }, {
11786
12599
  dispatch: any;
11787
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
12600
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
11788
12601
  widgets: {
11789
12602
  layers: Record<string, {
11790
12603
  title: string;
@@ -12037,6 +12850,7 @@ declare const TinyMCE: {
12037
12850
  paste_data_images: boolean;
12038
12851
  browser_spellcheck: boolean;
12039
12852
  quickbars_insert_toolbar: boolean;
12853
+ license_key: "gpl";
12040
12854
  } | undefined;
12041
12855
  selectTinyMCEExtendedOptions: (state: TinyMCERootState) => {
12042
12856
  commentsToolbar: string;
@@ -12187,7 +13001,7 @@ declare const updateWidgetContent: <T>(uniqid: string, content: Partial<T>, over
12187
13001
  fontSize?: string | undefined;
12188
13002
  buttonSize?: "lg" | "sm" | "md" | undefined;
12189
13003
  variant?: "contained" | "outlined" | undefined;
12190
- openingType?: "popup" | "anchor" | "link" | undefined;
13004
+ openingType?: "popup" | "link" | "anchor" | undefined;
12191
13005
  openingTypeLink?: {
12192
13006
  url: string;
12193
13007
  target: string;
@@ -12592,7 +13406,7 @@ declare const Widget: {
12592
13406
  fontSize?: string | undefined;
12593
13407
  buttonSize?: "lg" | "sm" | "md" | undefined;
12594
13408
  variant?: "contained" | "outlined" | undefined;
12595
- openingType?: "popup" | "anchor" | "link" | undefined;
13409
+ openingType?: "popup" | "link" | "anchor" | undefined;
12596
13410
  openingTypeLink?: {
12597
13411
  url: string;
12598
13412
  target: string;
@@ -14275,7 +15089,7 @@ type HTMLInfo = {
14275
15089
  };
14276
15090
  };
14277
15091
 
14278
- type RootState = Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
15092
+ type RootState = Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
14279
15093
  type RootDispatch = Dispatch$1<Action$1>;
14280
15094
  type RTDispatch = Dispatch<any>;
14281
15095
  type ApiError = {
@@ -14307,7 +15121,7 @@ declare const studio: {
14307
15121
  actions: {
14308
15122
  fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioApplication[], IntlFormatters, {
14309
15123
  dispatch: any;
14310
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15124
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14311
15125
  widgets: {
14312
15126
  layers: Record<string, {
14313
15127
  title: string;
@@ -14497,7 +15311,7 @@ declare const studio: {
14497
15311
  status: AppStatusType;
14498
15312
  }, {
14499
15313
  dispatch: any;
14500
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15314
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14501
15315
  widgets: {
14502
15316
  layers: Record<string, {
14503
15317
  title: string;
@@ -14686,7 +15500,7 @@ declare const studio: {
14686
15500
  idApp: string;
14687
15501
  }, {
14688
15502
  dispatch: any;
14689
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15503
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14690
15504
  widgets: {
14691
15505
  layers: Record<string, {
14692
15506
  title: string;
@@ -14875,7 +15689,7 @@ declare const studio: {
14875
15689
  idApp: string;
14876
15690
  }, {
14877
15691
  dispatch: any;
14878
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15692
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
14879
15693
  widgets: {
14880
15694
  layers: Record<string, {
14881
15695
  title: string;
@@ -15065,7 +15879,7 @@ declare const studio: {
15065
15879
  inWork?: boolean;
15066
15880
  }, {
15067
15881
  dispatch: any;
15068
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15882
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15069
15883
  widgets: {
15070
15884
  layers: Record<string, {
15071
15885
  title: string;
@@ -15255,7 +16069,7 @@ declare const studio: {
15255
16069
  callback?: () => void;
15256
16070
  }, {
15257
16071
  dispatch: any;
15258
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16072
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15259
16073
  widgets: {
15260
16074
  layers: Record<string, {
15261
16075
  title: string;
@@ -15445,7 +16259,7 @@ declare const studio: {
15445
16259
  status: jamespot_user_api.StudioApplicationStatusEnumBased;
15446
16260
  }, {
15447
16261
  dispatch: any;
15448
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16262
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15449
16263
  widgets: {
15450
16264
  layers: Record<string, {
15451
16265
  title: string;
@@ -15632,7 +16446,7 @@ declare const studio: {
15632
16446
  }>;
15633
16447
  saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
15634
16448
  dispatch: any;
15635
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16449
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15636
16450
  widgets: {
15637
16451
  layers: Record<string, {
15638
16452
  title: string;
@@ -15821,7 +16635,7 @@ declare const studio: {
15821
16635
  callback?: () => void;
15822
16636
  }, {
15823
16637
  dispatch: any;
15824
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16638
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
15825
16639
  widgets: {
15826
16640
  layers: Record<string, {
15827
16641
  title: string;
@@ -16010,7 +16824,7 @@ declare const studio: {
16010
16824
  idApp: string;
16011
16825
  }, {
16012
16826
  dispatch: any;
16013
- state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16827
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
16014
16828
  widgets: {
16015
16829
  layers: Record<string, {
16016
16830
  title: string;
@@ -16210,4 +17024,4 @@ declare const studio: {
16210
17024
  };
16211
17025
  };
16212
17026
 
16213
- 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 };
17027
+ 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 };