jamespot-front-business 1.1.81 → 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;
@@ -3115,7 +3826,7 @@ declare const Comment: {
3115
3826
  _url: string;
3116
3827
  } & {
3117
3828
  [key: string]: string | number | null;
3118
- level: 0 | 3 | 5 | 9;
3829
+ level: 0 | 9 | 3 | 5;
3119
3830
  dateCreation: string;
3120
3831
  dateModified: string;
3121
3832
  };
@@ -3254,8 +3965,8 @@ declare const Bookmark: {
3254
3965
  resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
3255
3966
  addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3256
3967
  id: number;
3257
- type: "bookmarkLink";
3258
3968
  mainType: string;
3969
+ type: "bookmarkLink";
3259
3970
  uri: string;
3260
3971
  value: string | null;
3261
3972
  srcId: number;
@@ -3274,8 +3985,8 @@ declare const Bookmark: {
3274
3985
  }, "bookmarkList/addBookmarkRT">;
3275
3986
  deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3276
3987
  id: number;
3277
- type: "bookmarkLink";
3278
3988
  mainType: string;
3989
+ type: "bookmarkLink";
3279
3990
  uri: string;
3280
3991
  value: string | null;
3281
3992
  srcId: number;
@@ -3294,8 +4005,8 @@ declare const Bookmark: {
3294
4005
  }, "bookmarkList/deleteBookmarkRT">;
3295
4006
  updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3296
4007
  id: number;
3297
- type: "bookmarkLink";
3298
4008
  mainType: string;
4009
+ type: "bookmarkLink";
3299
4010
  uri: string;
3300
4011
  value: string | null;
3301
4012
  srcId: number;
@@ -3314,8 +4025,8 @@ declare const Bookmark: {
3314
4025
  }, "bookmarkList/updateBookmarkRT">;
3315
4026
  setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
3316
4027
  id: number;
3317
- type: "bookmarkLink";
3318
4028
  mainType: string;
4029
+ type: "bookmarkLink";
3319
4030
  uri: string;
3320
4031
  value: string | null;
3321
4032
  srcId: number;
@@ -3336,8 +4047,8 @@ declare const Bookmark: {
3336
4047
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
3337
4048
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
3338
4049
  id: number;
3339
- type: "bookmarkLink";
3340
4050
  mainType: string;
4051
+ type: "bookmarkLink";
3341
4052
  uri: string;
3342
4053
  value: string | null;
3343
4054
  srcId: number;
@@ -3355,7 +4066,7 @@ declare const Bookmark: {
3355
4066
  url?: string | null | undefined;
3356
4067
  }, jamespot_user_api.BaseMessages>, void, {
3357
4068
  dispatch: any;
3358
- 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 & {
3359
4070
  widgets: {
3360
4071
  layers: Record<string, {
3361
4072
  title: string;
@@ -3545,8 +4256,8 @@ declare const Bookmark: {
3545
4256
  }>;
3546
4257
  addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
3547
4258
  id: number;
3548
- type: "bookmarkLink";
3549
4259
  mainType: string;
4260
+ type: "bookmarkLink";
3550
4261
  uri: string;
3551
4262
  value: string | null;
3552
4263
  srcId: number;
@@ -3564,8 +4275,8 @@ declare const Bookmark: {
3564
4275
  url?: string | null | undefined;
3565
4276
  } | {
3566
4277
  id: number;
3567
- type: string;
3568
4278
  mainType: string;
4279
+ type: string;
3569
4280
  uri: string;
3570
4281
  value: string | null;
3571
4282
  srcId: number;
@@ -3587,8 +4298,8 @@ declare const Bookmark: {
3587
4298
  } | undefined;
3588
4299
  }, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
3589
4300
  id: number;
3590
- type: "bookmarkLink";
3591
4301
  mainType: string;
4302
+ type: "bookmarkLink";
3592
4303
  uri: string;
3593
4304
  value: string | null;
3594
4305
  srcId: number;
@@ -3616,7 +4327,7 @@ declare const Bookmark: {
3616
4327
  requestId?: string | undefined;
3617
4328
  }, {
3618
4329
  dispatch: any;
3619
- 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 & {
3620
4331
  widgets: {
3621
4332
  layers: Record<string, {
3622
4333
  title: string;
@@ -3807,8 +4518,8 @@ declare const Bookmark: {
3807
4518
  moveBookmark: _reduxjs_toolkit.AsyncThunk<void, {
3808
4519
  bookmark: Pick<{
3809
4520
  id: number;
3810
- type: "bookmarkLink";
3811
4521
  mainType: string;
4522
+ type: "bookmarkLink";
3812
4523
  uri: string;
3813
4524
  value: string | null;
3814
4525
  srcId: number;
@@ -3827,8 +4538,8 @@ declare const Bookmark: {
3827
4538
  }, "id">;
3828
4539
  bookmarkReference: Pick<{
3829
4540
  id: number;
3830
- type: "bookmarkLink";
3831
4541
  mainType: string;
4542
+ type: "bookmarkLink";
3832
4543
  uri: string;
3833
4544
  value: string | null;
3834
4545
  srcId: number;
@@ -3848,7 +4559,7 @@ declare const Bookmark: {
3848
4559
  position: "after" | "before";
3849
4560
  }, {
3850
4561
  dispatch: any;
3851
- 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 & {
3852
4563
  widgets: {
3853
4564
  layers: Record<string, {
3854
4565
  title: string;
@@ -4038,8 +4749,8 @@ declare const Bookmark: {
4038
4749
  }>;
4039
4750
  deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
4040
4751
  id: number;
4041
- type: "bookmarkLink";
4042
4752
  mainType: string;
4753
+ type: "bookmarkLink";
4043
4754
  uri: string;
4044
4755
  value: string | null;
4045
4756
  srcId: number;
@@ -4059,7 +4770,7 @@ declare const Bookmark: {
4059
4770
  requestId?: string | undefined;
4060
4771
  }, {
4061
4772
  dispatch: any;
4062
- 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 & {
4063
4774
  widgets: {
4064
4775
  layers: Record<string, {
4065
4776
  title: string;
@@ -4249,8 +4960,8 @@ declare const Bookmark: {
4249
4960
  }>;
4250
4961
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
4251
4962
  id: number;
4252
- type: "bookmarkLink";
4253
4963
  mainType: string;
4964
+ type: "bookmarkLink";
4254
4965
  uri: string;
4255
4966
  value: string | null;
4256
4967
  srcId: number;
@@ -4268,7 +4979,7 @@ declare const Bookmark: {
4268
4979
  url?: string | null | undefined;
4269
4980
  }>, {
4270
4981
  dispatch: any;
4271
- 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 & {
4272
4983
  widgets: {
4273
4984
  layers: Record<string, {
4274
4985
  title: string;
@@ -4462,8 +5173,8 @@ declare const Bookmark: {
4462
5173
  bookmarkListIsInitialized: (state: BookmarkRootState) => boolean;
4463
5174
  bookmarkEditBookmark: (state: BookmarkRootState) => {
4464
5175
  id: number;
4465
- type: "bookmarkLink";
4466
5176
  mainType: string;
5177
+ type: "bookmarkLink";
4467
5178
  uri: string;
4468
5179
  value: string | null;
4469
5180
  srcId: number;
@@ -4482,8 +5193,8 @@ declare const Bookmark: {
4482
5193
  } | undefined;
4483
5194
  bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
4484
5195
  id: number;
4485
- type: "bookmarkLink";
4486
5196
  mainType: string;
5197
+ type: "bookmarkLink";
4487
5198
  uri: string;
4488
5199
  value: string | null;
4489
5200
  srcId: number;
@@ -4545,7 +5256,7 @@ declare const Faq: {
4545
5256
  };
4546
5257
  actions: {
4547
5258
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
4548
- _web: "" | "1" | "0" | undefined;
5259
+ _web: "" | "0" | "1" | undefined;
4549
5260
  appImage: string | {
4550
5261
  image: {
4551
5262
  type: string;
@@ -4556,7 +5267,7 @@ declare const Faq: {
4556
5267
  access: {
4557
5268
  createCategory: boolean;
4558
5269
  };
4559
- _displayComment: "" | "1" | "0" | undefined;
5270
+ _displayComment: "" | "0" | "1" | undefined;
4560
5271
  } | {
4561
5272
  _web: string;
4562
5273
  appImage?: never;
@@ -4588,7 +5299,7 @@ declare const Faq: {
4588
5299
  _url: string;
4589
5300
  } & {
4590
5301
  [key: string]: string | number | null;
4591
- level: 0 | 3 | 5 | 9;
5302
+ level: 0 | 9 | 3 | 5;
4592
5303
  dateCreation: string;
4593
5304
  dateModified: string;
4594
5305
  };
@@ -4741,7 +5452,7 @@ declare const slice$1: _reduxjs_toolkit.Slice<{}, {
4741
5452
  isActive: boolean;
4742
5453
  } & {
4743
5454
  create: boolean;
4744
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5455
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4745
5456
  }) | undefined;
4746
5457
  AdminAdvancedHook?: ({
4747
5458
  isActive: boolean;
@@ -4806,7 +5517,7 @@ declare const Hook: {
4806
5517
  isActive: boolean;
4807
5518
  } & {
4808
5519
  create: boolean;
4809
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5520
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4810
5521
  }) | undefined;
4811
5522
  AdminAdvancedHook?: ({
4812
5523
  isActive: boolean;
@@ -4867,7 +5578,7 @@ declare const Hook: {
4867
5578
  isActive: boolean;
4868
5579
  } & {
4869
5580
  create: boolean;
4870
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5581
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4871
5582
  }) | undefined;
4872
5583
  AdminAdvancedHook?: ({
4873
5584
  isActive: boolean;
@@ -4928,7 +5639,7 @@ declare const Hook: {
4928
5639
  isActive: boolean;
4929
5640
  } & {
4930
5641
  create: boolean;
4931
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5642
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4932
5643
  }) | undefined;
4933
5644
  AdminAdvancedHook?: ({
4934
5645
  isActive: boolean;
@@ -4987,7 +5698,7 @@ declare const Hook: {
4987
5698
  isActive: boolean;
4988
5699
  } & {
4989
5700
  create: boolean;
4990
- autorize: ("article" | "message" | "comment" | "board" | undefined)[];
5701
+ autorize: ("message" | "article" | "comment" | "board" | undefined)[];
4991
5702
  }) | undefined;
4992
5703
  AdminAdvancedHook?: ({
4993
5704
  isActive: boolean;
@@ -5069,7 +5780,7 @@ declare const jland: {
5069
5780
  retrieveAllMaps: boolean;
5070
5781
  }, {
5071
5782
  dispatch: any;
5072
- 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 & {
5073
5784
  widgets: {
5074
5785
  layers: Record<string, {
5075
5786
  title: string;
@@ -5259,7 +5970,7 @@ declare const jland: {
5259
5970
  retrieveAllMaps: boolean;
5260
5971
  }, {
5261
5972
  dispatch: any;
5262
- 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 & {
5263
5974
  widgets: {
5264
5975
  layers: Record<string, {
5265
5976
  title: string;
@@ -5449,7 +6160,7 @@ declare const jland: {
5449
6160
  retrieveAllMaps: boolean;
5450
6161
  }, {
5451
6162
  dispatch: any;
5452
- 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 & {
5453
6164
  widgets: {
5454
6165
  layers: Record<string, {
5455
6166
  title: string;
@@ -5639,7 +6350,7 @@ declare const jland: {
5639
6350
  retrieveAllMaps: boolean;
5640
6351
  }, {
5641
6352
  dispatch: any;
5642
- 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 & {
5643
6354
  widgets: {
5644
6355
  layers: Record<string, {
5645
6356
  title: string;
@@ -5826,7 +6537,7 @@ declare const jland: {
5826
6537
  }>;
5827
6538
  fetchJLandAvailableLicenses: _reduxjs_toolkit.AsyncThunk<Record<string, number>, void, {
5828
6539
  dispatch: any;
5829
- 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 & {
5830
6541
  widgets: {
5831
6542
  layers: Record<string, {
5832
6543
  title: string;
@@ -6041,7 +6752,7 @@ declare const jland: {
6041
6752
  map: MapCreationFront;
6042
6753
  }, {
6043
6754
  dispatch: any;
6044
- 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 & {
6045
6756
  widgets: {
6046
6757
  layers: Record<string, {
6047
6758
  title: string;
@@ -6299,7 +7010,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6299
7010
  _url: string;
6300
7011
  } & {
6301
7012
  [key: string]: string | number | null;
6302
- level: 0 | 3 | 5 | 9;
7013
+ level: 0 | 9 | 3 | 5;
6303
7014
  dateCreation: string;
6304
7015
  dateModified: string;
6305
7016
  };
@@ -6401,7 +7112,7 @@ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<{
6401
7112
  idUserLogged: number;
6402
7113
  }, {
6403
7114
  dispatch: any;
6404
- 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 & {
6405
7116
  widgets: {
6406
7117
  layers: Record<string, {
6407
7118
  title: string;
@@ -6612,7 +7323,7 @@ declare const MagicPad: {
6612
7323
  _url: string;
6613
7324
  } & {
6614
7325
  [key: string]: string | number | null;
6615
- level: 0 | 3 | 5 | 9;
7326
+ level: 0 | 9 | 3 | 5;
6616
7327
  dateCreation: string;
6617
7328
  dateModified: string;
6618
7329
  };
@@ -6714,7 +7425,7 @@ declare const MagicPad: {
6714
7425
  idUserLogged: number;
6715
7426
  }, {
6716
7427
  dispatch: any;
6717
- 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 & {
6718
7429
  widgets: {
6719
7430
  layers: Record<string, {
6720
7431
  title: string;
@@ -6954,7 +7665,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
6954
7665
  _url: string;
6955
7666
  } & {
6956
7667
  [key: string]: string | number | null;
6957
- level: 0 | 3 | 5 | 9;
7668
+ level: 0 | 9 | 3 | 5;
6958
7669
  dateCreation: string;
6959
7670
  dateModified: string;
6960
7671
  };
@@ -7071,7 +7782,7 @@ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingRes
7071
7782
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
7072
7783
  }, jamespot_user_api.BaseMessages>, void, {
7073
7784
  dispatch: any;
7074
- 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 & {
7075
7786
  widgets: {
7076
7787
  layers: Record<string, {
7077
7788
  title: string;
@@ -7271,7 +7982,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7271
7982
  _url: string;
7272
7983
  } & {
7273
7984
  [key: string]: string | number | null;
7274
- level: 0 | 3 | 5 | 9;
7985
+ level: 0 | 9 | 3 | 5;
7275
7986
  dateCreation: string;
7276
7987
  dateModified: string;
7277
7988
  };
@@ -7388,7 +8099,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7388
8099
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
7389
8100
  }, jamespot_user_api.BaseMessages>, number, {
7390
8101
  dispatch: any;
7391
- 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 & {
7392
8103
  widgets: {
7393
8104
  layers: Record<string, {
7394
8105
  title: string;
@@ -7575,7 +8286,7 @@ declare const fetchMediaLibraryUnclassifiedFiles: _reduxjs_toolkit.AsyncThunk<Ap
7575
8286
  }>;
7576
8287
  declare const fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
7577
8288
  dispatch: any;
7578
- 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 & {
7579
8290
  widgets: {
7580
8291
  layers: Record<string, {
7581
8292
  title: string;
@@ -7779,8 +8490,8 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7779
8490
  end: string;
7780
8491
  };
7781
8492
  name: string;
7782
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
7783
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8493
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8494
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
7784
8495
  or?: boolean | undefined;
7785
8496
  isNull?: boolean | undefined;
7786
8497
  isNotNull?: boolean | undefined;
@@ -7791,7 +8502,7 @@ declare const fetchMediaLibraryFoldersStats: _reduxjs_toolkit.AsyncThunk<ApiWrap
7791
8502
  }[];
7792
8503
  }, {
7793
8504
  dispatch: any;
7794
- 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 & {
7795
8506
  widgets: {
7796
8507
  layers: Record<string, {
7797
8508
  title: string;
@@ -7997,8 +8708,8 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
7997
8708
  end: string;
7998
8709
  };
7999
8710
  name: string;
8000
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
8001
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
8711
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
8712
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
8002
8713
  or?: boolean | undefined;
8003
8714
  isNull?: boolean | undefined;
8004
8715
  isNotNull?: boolean | undefined;
@@ -8009,7 +8720,7 @@ declare const fetchMediaLibraryFilesStats: _reduxjs_toolkit.AsyncThunk<ApiWrappe
8009
8720
  }[];
8010
8721
  }, {
8011
8722
  dispatch: any;
8012
- 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 & {
8013
8724
  widgets: {
8014
8725
  layers: Record<string, {
8015
8726
  title: string;
@@ -8199,7 +8910,7 @@ declare const fetchMediaLibraryStats: _reduxjs_toolkit.AsyncThunk<ApiWrapper<{
8199
8910
  nbFiles: number;
8200
8911
  }, jamespot_user_api.BaseMessages>, void, {
8201
8912
  dispatch: any;
8202
- 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 & {
8203
8914
  widgets: {
8204
8915
  layers: Record<string, {
8205
8916
  title: string;
@@ -8411,7 +9122,7 @@ declare const MediaLibrary: {
8411
9122
  _url: string;
8412
9123
  } & {
8413
9124
  [key: string]: string | number | null;
8414
- level: 0 | 3 | 5 | 9;
9125
+ level: 0 | 9 | 3 | 5;
8415
9126
  dateCreation: string;
8416
9127
  dateModified: string;
8417
9128
  };
@@ -8528,7 +9239,7 @@ declare const MediaLibrary: {
8528
9239
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8529
9240
  }, jamespot_user_api.BaseMessages>, void, {
8530
9241
  dispatch: any;
8531
- 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 & {
8532
9243
  widgets: {
8533
9244
  layers: Record<string, {
8534
9245
  title: string;
@@ -8728,7 +9439,7 @@ declare const MediaLibrary: {
8728
9439
  _url: string;
8729
9440
  } & {
8730
9441
  [key: string]: string | number | null;
8731
- level: 0 | 3 | 5 | 9;
9442
+ level: 0 | 9 | 3 | 5;
8732
9443
  dateCreation: string;
8733
9444
  dateModified: string;
8734
9445
  };
@@ -8845,7 +9556,7 @@ declare const MediaLibrary: {
8845
9556
  } & jamespot_user_api.WidgetQuickSurveyType)>[] | undefined;
8846
9557
  }, jamespot_user_api.BaseMessages>, number, {
8847
9558
  dispatch: any;
8848
- 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 & {
8849
9560
  widgets: {
8850
9561
  layers: Record<string, {
8851
9562
  title: string;
@@ -9032,7 +9743,7 @@ declare const MediaLibrary: {
9032
9743
  }>;
9033
9744
  fetchMediaLibraryConfig: _reduxjs_toolkit.AsyncThunk<ApiWrapper<boolean, jamespot_user_api.BaseMessages>, void, {
9034
9745
  dispatch: any;
9035
- 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 & {
9036
9747
  widgets: {
9037
9748
  layers: Record<string, {
9038
9749
  title: string;
@@ -9222,7 +9933,7 @@ declare const MediaLibrary: {
9222
9933
  nbFiles: number;
9223
9934
  }, jamespot_user_api.BaseMessages>, void, {
9224
9935
  dispatch: any;
9225
- 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 & {
9226
9937
  widgets: {
9227
9938
  layers: Record<string, {
9228
9939
  title: string;
@@ -9428,8 +10139,8 @@ declare const MediaLibrary: {
9428
10139
  end: string;
9429
10140
  };
9430
10141
  name: string;
9431
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9432
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10142
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10143
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9433
10144
  or?: boolean | undefined;
9434
10145
  isNull?: boolean | undefined;
9435
10146
  isNotNull?: boolean | undefined;
@@ -9440,7 +10151,7 @@ declare const MediaLibrary: {
9440
10151
  }[];
9441
10152
  }, {
9442
10153
  dispatch: any;
9443
- 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 & {
9444
10155
  widgets: {
9445
10156
  layers: Record<string, {
9446
10157
  title: string;
@@ -9644,8 +10355,8 @@ declare const MediaLibrary: {
9644
10355
  end: string;
9645
10356
  };
9646
10357
  name: string;
9647
- operator?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | undefined;
9648
- method?: "match" | "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "equal" | "+" | "-" | undefined;
10358
+ operator?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | undefined;
10359
+ method?: "between" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "is" | "is not" | "in" | "link" | "match" | "equal" | "+" | "-" | undefined;
9649
10360
  or?: boolean | undefined;
9650
10361
  isNull?: boolean | undefined;
9651
10362
  isNotNull?: boolean | undefined;
@@ -9656,7 +10367,7 @@ declare const MediaLibrary: {
9656
10367
  }[];
9657
10368
  }, {
9658
10369
  dispatch: any;
9659
- 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 & {
9660
10371
  widgets: {
9661
10372
  layers: Record<string, {
9662
10373
  title: string;
@@ -10082,7 +10793,7 @@ declare const WedocApp: {
10082
10793
  _url: string;
10083
10794
  } & {
10084
10795
  [key: string]: string | number | null;
10085
- level: 0 | 3 | 5 | 9;
10796
+ level: 0 | 9 | 3 | 5;
10086
10797
  dateCreation: string;
10087
10798
  dateModified: string;
10088
10799
  };
@@ -10133,7 +10844,7 @@ declare const WedocApp: {
10133
10844
  _url: string;
10134
10845
  } & {
10135
10846
  [key: string]: string | number | null;
10136
- level: 0 | 3 | 5 | 9;
10847
+ level: 0 | 9 | 3 | 5;
10137
10848
  dateCreation: string;
10138
10849
  dateModified: string;
10139
10850
  };
@@ -10178,7 +10889,7 @@ declare const WedocApp: {
10178
10889
  _url: string;
10179
10890
  } & {
10180
10891
  [key: string]: string | number | null;
10181
- level: 0 | 3 | 5 | 9;
10892
+ level: 0 | 9 | 3 | 5;
10182
10893
  dateCreation: string;
10183
10894
  dateModified: string;
10184
10895
  };
@@ -10221,7 +10932,7 @@ declare const WedocApp: {
10221
10932
  _url: string;
10222
10933
  } & {
10223
10934
  [key: string]: string | number | null;
10224
- level: 0 | 3 | 5 | 9;
10935
+ level: 0 | 9 | 3 | 5;
10225
10936
  dateCreation: string;
10226
10937
  dateModified: string;
10227
10938
  };
@@ -10235,7 +10946,7 @@ declare const WedocApp: {
10235
10946
  sort: "ASC" | "DESC";
10236
10947
  }, {
10237
10948
  dispatch: any;
10238
- 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 & {
10239
10950
  widgets: {
10240
10951
  layers: Record<string, {
10241
10952
  title: string;
@@ -10449,7 +11160,7 @@ declare const WedocApp: {
10449
11160
  _url: string;
10450
11161
  } & {
10451
11162
  [key: string]: string | number | null;
10452
- level: 0 | 3 | 5 | 9;
11163
+ level: 0 | 9 | 3 | 5;
10453
11164
  dateCreation: string;
10454
11165
  dateModified: string;
10455
11166
  };
@@ -10459,7 +11170,7 @@ declare const WedocApp: {
10459
11170
  dateModified?: string | null | undefined;
10460
11171
  }>, jamespot_user_api.BaseMessages>, void, {
10461
11172
  dispatch: any;
10462
- 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 & {
10463
11174
  widgets: {
10464
11175
  layers: Record<string, {
10465
11176
  title: string;
@@ -10666,7 +11377,7 @@ declare const Share: {
10666
11377
  idUser?: number;
10667
11378
  }, {
10668
11379
  dispatch: any;
10669
- 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 & {
10670
11381
  widgets: {
10671
11382
  layers: Record<string, {
10672
11383
  title: string;
@@ -10974,7 +11685,7 @@ declare const TVDisplay: {
10974
11685
  _url: string;
10975
11686
  } & {
10976
11687
  [key: string]: string | number | null;
10977
- level: 0 | 3 | 5 | 9;
11688
+ level: 0 | 9 | 3 | 5;
10978
11689
  dateCreation: string;
10979
11690
  dateModified: string;
10980
11691
  };
@@ -11110,7 +11821,7 @@ declare const TVDisplay: {
11110
11821
  _url: string;
11111
11822
  } & {
11112
11823
  [key: string]: string | number | null;
11113
- level: 0 | 3 | 5 | 9;
11824
+ level: 0 | 9 | 3 | 5;
11114
11825
  dateCreation: string;
11115
11826
  dateModified: string;
11116
11827
  };
@@ -11252,7 +11963,7 @@ declare const TVDisplay: {
11252
11963
  _url: string;
11253
11964
  } & {
11254
11965
  [key: string]: string | number | null;
11255
- level: 0 | 3 | 5 | 9;
11966
+ level: 0 | 9 | 3 | 5;
11256
11967
  dateCreation: string;
11257
11968
  dateModified: string;
11258
11969
  };
@@ -11388,7 +12099,7 @@ declare const TVDisplay: {
11388
12099
  _url: string;
11389
12100
  } & {
11390
12101
  [key: string]: string | number | null;
11391
- level: 0 | 3 | 5 | 9;
12102
+ level: 0 | 9 | 3 | 5;
11392
12103
  dateCreation: string;
11393
12104
  dateModified: string;
11394
12105
  };
@@ -11425,7 +12136,7 @@ declare const TVDisplay: {
11425
12136
  } | undefined;
11426
12137
  }>>, number | void, {
11427
12138
  dispatch: any;
11428
- 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 & {
11429
12140
  widgets: {
11430
12141
  layers: Record<string, {
11431
12142
  title: string;
@@ -11712,7 +12423,7 @@ declare const TVDisplay: {
11712
12423
  _url: string;
11713
12424
  } & {
11714
12425
  [key: string]: string | number | null;
11715
- level: 0 | 3 | 5 | 9;
12426
+ level: 0 | 9 | 3 | 5;
11716
12427
  dateCreation: string;
11717
12428
  dateModified: string;
11718
12429
  };
@@ -11848,7 +12559,7 @@ declare const TVDisplay: {
11848
12559
  _url: string;
11849
12560
  } & {
11850
12561
  [key: string]: string | number | null;
11851
- level: 0 | 3 | 5 | 9;
12562
+ level: 0 | 9 | 3 | 5;
11852
12563
  dateCreation: string;
11853
12564
  dateModified: string;
11854
12565
  };
@@ -11886,7 +12597,7 @@ declare const TVDisplay: {
11886
12597
  }>, "id">;
11887
12598
  }, {
11888
12599
  dispatch: any;
11889
- 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 & {
11890
12601
  widgets: {
11891
12602
  layers: Record<string, {
11892
12603
  title: string;
@@ -12290,7 +13001,7 @@ declare const updateWidgetContent: <T>(uniqid: string, content: Partial<T>, over
12290
13001
  fontSize?: string | undefined;
12291
13002
  buttonSize?: "lg" | "sm" | "md" | undefined;
12292
13003
  variant?: "contained" | "outlined" | undefined;
12293
- openingType?: "popup" | "anchor" | "link" | undefined;
13004
+ openingType?: "popup" | "link" | "anchor" | undefined;
12294
13005
  openingTypeLink?: {
12295
13006
  url: string;
12296
13007
  target: string;
@@ -12695,7 +13406,7 @@ declare const Widget: {
12695
13406
  fontSize?: string | undefined;
12696
13407
  buttonSize?: "lg" | "sm" | "md" | undefined;
12697
13408
  variant?: "contained" | "outlined" | undefined;
12698
- openingType?: "popup" | "anchor" | "link" | undefined;
13409
+ openingType?: "popup" | "link" | "anchor" | undefined;
12699
13410
  openingTypeLink?: {
12700
13411
  url: string;
12701
13412
  target: string;
@@ -14378,7 +15089,7 @@ type HTMLInfo = {
14378
15089
  };
14379
15090
  };
14380
15091
 
14381
- 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>;
14382
15093
  type RootDispatch = Dispatch$1<Action$1>;
14383
15094
  type RTDispatch = Dispatch<any>;
14384
15095
  type ApiError = {
@@ -14410,7 +15121,7 @@ declare const studio: {
14410
15121
  actions: {
14411
15122
  fetchStudioAppsList: _reduxjs_toolkit.AsyncThunk<StudioApplication[], IntlFormatters, {
14412
15123
  dispatch: any;
14413
- 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 & {
14414
15125
  widgets: {
14415
15126
  layers: Record<string, {
14416
15127
  title: string;
@@ -14600,7 +15311,7 @@ declare const studio: {
14600
15311
  status: AppStatusType;
14601
15312
  }, {
14602
15313
  dispatch: any;
14603
- 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 & {
14604
15315
  widgets: {
14605
15316
  layers: Record<string, {
14606
15317
  title: string;
@@ -14789,7 +15500,7 @@ declare const studio: {
14789
15500
  idApp: string;
14790
15501
  }, {
14791
15502
  dispatch: any;
14792
- 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 & {
14793
15504
  widgets: {
14794
15505
  layers: Record<string, {
14795
15506
  title: string;
@@ -14978,7 +15689,7 @@ declare const studio: {
14978
15689
  idApp: string;
14979
15690
  }, {
14980
15691
  dispatch: any;
14981
- 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 & {
14982
15693
  widgets: {
14983
15694
  layers: Record<string, {
14984
15695
  title: string;
@@ -15168,7 +15879,7 @@ declare const studio: {
15168
15879
  inWork?: boolean;
15169
15880
  }, {
15170
15881
  dispatch: any;
15171
- 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 & {
15172
15883
  widgets: {
15173
15884
  layers: Record<string, {
15174
15885
  title: string;
@@ -15358,7 +16069,7 @@ declare const studio: {
15358
16069
  callback?: () => void;
15359
16070
  }, {
15360
16071
  dispatch: any;
15361
- 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 & {
15362
16073
  widgets: {
15363
16074
  layers: Record<string, {
15364
16075
  title: string;
@@ -15548,7 +16259,7 @@ declare const studio: {
15548
16259
  status: jamespot_user_api.StudioApplicationStatusEnumBased;
15549
16260
  }, {
15550
16261
  dispatch: any;
15551
- 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 & {
15552
16263
  widgets: {
15553
16264
  layers: Record<string, {
15554
16265
  title: string;
@@ -15735,7 +16446,7 @@ declare const studio: {
15735
16446
  }>;
15736
16447
  saveCurrentStudioApp: _reduxjs_toolkit.AsyncThunk<void, undefined, {
15737
16448
  dispatch: any;
15738
- 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 & {
15739
16450
  widgets: {
15740
16451
  layers: Record<string, {
15741
16452
  title: string;
@@ -15924,7 +16635,7 @@ declare const studio: {
15924
16635
  callback?: () => void;
15925
16636
  }, {
15926
16637
  dispatch: any;
15927
- 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 & {
15928
16639
  widgets: {
15929
16640
  layers: Record<string, {
15930
16641
  title: string;
@@ -16113,7 +16824,7 @@ declare const studio: {
16113
16824
  idApp: string;
16114
16825
  }, {
16115
16826
  dispatch: any;
16116
- 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 & {
16117
16828
  widgets: {
16118
16829
  layers: Record<string, {
16119
16830
  title: string;
@@ -16313,4 +17024,4 @@ declare const studio: {
16313
17024
  };
16314
17025
  };
16315
17026
 
16316
- export { APP_STATUS_TYPE, AUDIENCE, AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormItemTypesValues, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Description, Display, DisplayComposant, Displays, EditorProps, EditorsRootState, EditorsState, Element, ExtraAppFieldsItemViews, ExtraAppFieldsItemViewsValues, Faq, FaqRootState, HTMLInfo, Hook, HookRootState, InstalledApp, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPad, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, OptionsClass, PagingState, ParamsClass, Platform, PlatformRootState, RTDispatch, ReservationForm, ReservationRootState, ReservationState, Right, RootDispatch, RootState, STUDIO_VIEW, Share, SocialActions, Solr, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplay, TVDisplayRootState, Table, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, UserCurrent, UserCurrentRootState, Values, ViewName, WedocApp, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, Widget, WidgetEditor, actions, animationsReducer, animationsSlice, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };
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 };