jamespot-front-business 1.1.57 → 1.1.59

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
@@ -1,34 +1,63 @@
1
+ import * as _reduxjs_toolkit from '@reduxjs/toolkit';
2
+ import { EntityState, Dispatch, PayloadAction, Action } from '@reduxjs/toolkit';
1
3
  import * as jamespot_user_api from 'jamespot-user-api';
2
- import { AnimationConfigurationType, 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, jUserLittle, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, CombinedWidgetContent, jObjectLittle, WidgetVector, WidgetStateProps, WidgetsRootState, WidgetsName, JamespotUserApi, StudioApplicationBase, jTaxonomyLittle } from 'jamespot-user-api';
4
+ import { 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, jUserLittle, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, CombinedWidgetContent, jObjectLittle, WidgetVector, WidgetStateProps, WidgetsRootState, WidgetsName, JamespotUserApi, StudioApplicationBase, jTaxonomyLittle } from 'jamespot-user-api';
3
5
  import * as redux from 'redux';
4
6
  import { Dispatch as Dispatch$1 } from 'redux';
5
- import * as _reduxjs_toolkit from '@reduxjs/toolkit';
6
- import { EntityState, Dispatch, PayloadAction, Action } from '@reduxjs/toolkit';
7
+ import { Loading as Loading$1 } from 'src/types/utils';
7
8
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
8
9
  import React from 'react';
9
10
 
10
- declare type AnimationSliceRootState = {
11
+ declare type AnimationSliceListState = {
11
12
  animationConfiguration: AnimationConfigurationType | null;
12
13
  isActiveForCurrentUser: boolean;
13
14
  isInitialized: boolean;
14
15
  isToggleLoading: boolean;
15
16
  animationConfigurationApp?: AnimationConfigurationType | null;
16
17
  };
18
+ declare type AnimationStatsSliceState = {
19
+ stats: AnimationStats[];
20
+ } & Loading$1;
21
+ declare type AnimationStatsCurrentSliceState = {
22
+ stats: AnimationStats | null;
23
+ } & Loading$1;
17
24
  declare type AnimationsRootState = {
18
- animations: AnimationSliceRootState;
25
+ animations: {
26
+ animationsList: AnimationSliceListState;
27
+ animationStats: AnimationStatsSliceState;
28
+ animationStatsCurrent: AnimationStatsCurrentSliceState;
29
+ };
19
30
  };
20
31
 
21
- declare const animationsSlice: _reduxjs_toolkit.Slice<AnimationSliceRootState, {}, "animations">;
22
- declare const animationsReducer: redux.Reducer<AnimationSliceRootState, redux.AnyAction>;
32
+ declare const animationsSlice: {
33
+ name: "animations";
34
+ reducer: redux.Reducer<redux.CombinedState<{
35
+ animationsList: AnimationSliceListState;
36
+ animationStats: AnimationStatsSliceState;
37
+ animationStatsCurrent: AnimationStatsCurrentSliceState;
38
+ }>, redux.AnyAction>;
39
+ };
40
+ declare const animationsReducer: redux.Reducer<redux.CombinedState<{
41
+ animationsList: AnimationSliceListState;
42
+ animationStats: AnimationStatsSliceState;
43
+ animationStatsCurrent: AnimationStatsCurrentSliceState;
44
+ }>, redux.AnyAction>;
23
45
  declare const Animations: {
24
- slice: _reduxjs_toolkit.Slice<AnimationSliceRootState, {}, "animations">;
46
+ slice: {
47
+ name: "animations";
48
+ reducer: redux.Reducer<redux.CombinedState<{
49
+ animationsList: AnimationSliceListState;
50
+ animationStats: AnimationStatsSliceState;
51
+ animationStatsCurrent: AnimationStatsCurrentSliceState;
52
+ }>, redux.AnyAction>;
53
+ };
25
54
  actions: {
26
55
  saveCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, {
27
56
  name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
57
+ audience: string[];
28
58
  activeClickEffect: number;
29
59
  activeDecor: number;
30
60
  auto: boolean;
31
- audience: string[];
32
61
  }, {
33
62
  dispatch: any;
34
63
  state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
@@ -356,7 +385,661 @@ declare const Animations: {
356
385
  fulfilledMeta?: unknown;
357
386
  rejectedMeta?: unknown;
358
387
  }>;
359
- fetchCurrentAnimation: _reduxjs_toolkit.AsyncThunk<Omit<AnimationSliceRootState, "isToggleLoading">, void, {
388
+ fetchCurrentAnimation: _reduxjs_toolkit.AsyncThunk<Omit<AnimationSliceListState, "isToggleLoading">, void, {
389
+ dispatch: any;
390
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
391
+ widgets: {
392
+ layers: Record<string, {
393
+ title: string;
394
+ widgets: {
395
+ title: string;
396
+ widget: ({
397
+ layers?: string[] | undefined;
398
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
399
+ layers?: string[] | undefined;
400
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
401
+ layers?: string[] | undefined;
402
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
403
+ layers?: string[] | undefined;
404
+ } & jamespot_user_api.WidgetArticleTextType) | ({
405
+ layers?: string[] | undefined;
406
+ } & jamespot_user_api.WidgetArticleImageType) | ({
407
+ layers?: string[] | undefined;
408
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
409
+ layers?: string[] | undefined;
410
+ } & jamespot_user_api.WidgetApiType) | ({
411
+ layers?: string[] | undefined;
412
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
413
+ layers?: string[] | undefined;
414
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
415
+ layers?: string[] | undefined;
416
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
417
+ layers?: string[] | undefined;
418
+ } & {
419
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
420
+ uniqid: string;
421
+ content: {
422
+ limit?: number | undefined;
423
+ tableColumnsData?: {
424
+ name?: string | undefined;
425
+ isVisible?: boolean | undefined;
426
+ textEllipsis?: boolean | undefined;
427
+ label?: string | undefined;
428
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
429
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
430
+ }[] | undefined;
431
+ tableHeadColor?: string | undefined;
432
+ tableHeadTextColor?: string | undefined;
433
+ tableHeadIconColor?: string | undefined;
434
+ tableRowColor?: string | undefined;
435
+ tableRowTextColor?: string | undefined;
436
+ tableBorderRadius?: number | undefined;
437
+ tableSizedColumns?: boolean | undefined;
438
+ tableSizedColumnsWidth?: number | undefined;
439
+ uri?: string | undefined;
440
+ };
441
+ }) | ({
442
+ layers?: string[] | undefined;
443
+ } & jamespot_user_api.WidgetArticleButtonType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
444
+ layers?: string[] | undefined;
445
+ } & jamespot_user_api.WidgetArticleGalleryType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
446
+ layers?: string[] | undefined;
447
+ } & jamespot_user_api.WidgetArticleTitleType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
448
+ layers?: string[] | undefined;
449
+ } & jamespot_user_api.WidgetArticleTextType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
450
+ layers?: string[] | undefined;
451
+ } & jamespot_user_api.WidgetArticleImageType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
452
+ layers?: string[] | undefined;
453
+ } & jamespot_user_api.WidgetArticleAttachmentType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
454
+ layers?: string[] | undefined;
455
+ } & jamespot_user_api.WidgetApiType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
456
+ layers?: string[] | undefined;
457
+ } & jamespot_user_api.WidgetArticleSliderType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
458
+ layers?: string[] | undefined;
459
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleButtonType) | ({
460
+ layers?: string[] | undefined;
461
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleGalleryType) | ({
462
+ layers?: string[] | undefined;
463
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTitleType) | ({
464
+ layers?: string[] | undefined;
465
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTextType) | ({
466
+ layers?: string[] | undefined;
467
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleImageType) | ({
468
+ layers?: string[] | undefined;
469
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleAttachmentType) | ({
470
+ layers?: string[] | undefined;
471
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetApiType) | ({
472
+ layers?: string[] | undefined;
473
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleSliderType) | ({
474
+ layers?: string[] | undefined;
475
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetDatasourceTableType) | ({
476
+ layers?: string[] | undefined;
477
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & {
478
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
479
+ uniqid: string;
480
+ content: {
481
+ limit?: number | undefined;
482
+ tableColumnsData?: {
483
+ name?: string | undefined;
484
+ isVisible?: boolean | undefined;
485
+ textEllipsis?: boolean | undefined;
486
+ label?: string | undefined;
487
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
488
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
489
+ }[] | undefined;
490
+ tableHeadColor?: string | undefined;
491
+ tableHeadTextColor?: string | undefined;
492
+ tableHeadIconColor?: string | undefined;
493
+ tableRowColor?: string | undefined;
494
+ tableRowTextColor?: string | undefined;
495
+ tableBorderRadius?: number | undefined;
496
+ tableSizedColumns?: boolean | undefined;
497
+ tableSizedColumnsWidth?: number | undefined;
498
+ uri?: string | undefined;
499
+ };
500
+ }) | ({
501
+ layers?: string[] | undefined;
502
+ } & jamespot_user_api.WidgetDatasourceTableType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
503
+ layers?: string[] | undefined;
504
+ } & {
505
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
506
+ uniqid: string;
507
+ content: {
508
+ limit?: number | undefined;
509
+ tableColumnsData?: {
510
+ name?: string | undefined;
511
+ isVisible?: boolean | undefined;
512
+ textEllipsis?: boolean | undefined;
513
+ label?: string | undefined;
514
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
515
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
516
+ }[] | undefined;
517
+ tableHeadColor?: string | undefined;
518
+ tableHeadTextColor?: string | undefined;
519
+ tableHeadIconColor?: string | undefined;
520
+ tableRowColor?: string | undefined;
521
+ tableRowTextColor?: string | undefined;
522
+ tableBorderRadius?: number | undefined;
523
+ tableSizedColumns?: boolean | undefined;
524
+ tableSizedColumnsWidth?: number | undefined;
525
+ uri?: string | undefined;
526
+ };
527
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>);
528
+ }[];
529
+ uniqid: string;
530
+ locked: boolean;
531
+ visible: boolean;
532
+ position?: {
533
+ x: number;
534
+ y: number;
535
+ } | undefined;
536
+ }>;
537
+ ids: Record<string, {
538
+ title: string;
539
+ widget: ({
540
+ layers?: string[] | undefined;
541
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
542
+ layers?: string[] | undefined;
543
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
544
+ layers?: string[] | undefined;
545
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
546
+ layers?: string[] | undefined;
547
+ } & jamespot_user_api.WidgetArticleTextType) | ({
548
+ layers?: string[] | undefined;
549
+ } & jamespot_user_api.WidgetArticleImageType) | ({
550
+ layers?: string[] | undefined;
551
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
552
+ layers?: string[] | undefined;
553
+ } & jamespot_user_api.WidgetApiType) | ({
554
+ layers?: string[] | undefined;
555
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
556
+ layers?: string[] | undefined;
557
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
558
+ layers?: string[] | undefined;
559
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
560
+ layers?: string[] | undefined;
561
+ } & {
562
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
563
+ uniqid: string;
564
+ content: {
565
+ limit?: number | undefined;
566
+ tableColumnsData?: {
567
+ name?: string | undefined;
568
+ isVisible?: boolean | undefined;
569
+ textEllipsis?: boolean | undefined;
570
+ label?: string | undefined;
571
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
572
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
573
+ }[] | undefined;
574
+ tableHeadColor?: string | undefined;
575
+ tableHeadTextColor?: string | undefined;
576
+ tableHeadIconColor?: string | undefined;
577
+ tableRowColor?: string | undefined;
578
+ tableRowTextColor?: string | undefined;
579
+ tableBorderRadius?: number | undefined;
580
+ tableSizedColumns?: boolean | undefined;
581
+ tableSizedColumnsWidth?: number | undefined;
582
+ uri?: string | undefined;
583
+ };
584
+ }) | ({
585
+ layers?: string[] | undefined;
586
+ } & jamespot_user_api.WidgetArticleButtonType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
587
+ layers?: string[] | undefined;
588
+ } & jamespot_user_api.WidgetArticleGalleryType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
589
+ layers?: string[] | undefined;
590
+ } & jamespot_user_api.WidgetArticleTitleType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
591
+ layers?: string[] | undefined;
592
+ } & jamespot_user_api.WidgetArticleTextType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
593
+ layers?: string[] | undefined;
594
+ } & jamespot_user_api.WidgetArticleImageType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
595
+ layers?: string[] | undefined;
596
+ } & jamespot_user_api.WidgetArticleAttachmentType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
597
+ layers?: string[] | undefined;
598
+ } & jamespot_user_api.WidgetApiType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
599
+ layers?: string[] | undefined;
600
+ } & jamespot_user_api.WidgetArticleSliderType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
601
+ layers?: string[] | undefined;
602
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleButtonType) | ({
603
+ layers?: string[] | undefined;
604
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleGalleryType) | ({
605
+ layers?: string[] | undefined;
606
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTitleType) | ({
607
+ layers?: string[] | undefined;
608
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTextType) | ({
609
+ layers?: string[] | undefined;
610
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleImageType) | ({
611
+ layers?: string[] | undefined;
612
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleAttachmentType) | ({
613
+ layers?: string[] | undefined;
614
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetApiType) | ({
615
+ layers?: string[] | undefined;
616
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleSliderType) | ({
617
+ layers?: string[] | undefined;
618
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetDatasourceTableType) | ({
619
+ layers?: string[] | undefined;
620
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & {
621
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
622
+ uniqid: string;
623
+ content: {
624
+ limit?: number | undefined;
625
+ tableColumnsData?: {
626
+ name?: string | undefined;
627
+ isVisible?: boolean | undefined;
628
+ textEllipsis?: boolean | undefined;
629
+ label?: string | undefined;
630
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
631
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
632
+ }[] | undefined;
633
+ tableHeadColor?: string | undefined;
634
+ tableHeadTextColor?: string | undefined;
635
+ tableHeadIconColor?: string | undefined;
636
+ tableRowColor?: string | undefined;
637
+ tableRowTextColor?: string | undefined;
638
+ tableBorderRadius?: number | undefined;
639
+ tableSizedColumns?: boolean | undefined;
640
+ tableSizedColumnsWidth?: number | undefined;
641
+ uri?: string | undefined;
642
+ };
643
+ }) | ({
644
+ layers?: string[] | undefined;
645
+ } & jamespot_user_api.WidgetDatasourceTableType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
646
+ layers?: string[] | undefined;
647
+ } & {
648
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
649
+ uniqid: string;
650
+ content: {
651
+ limit?: number | undefined;
652
+ tableColumnsData?: {
653
+ name?: string | undefined;
654
+ isVisible?: boolean | undefined;
655
+ textEllipsis?: boolean | undefined;
656
+ label?: string | undefined;
657
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
658
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
659
+ }[] | undefined;
660
+ tableHeadColor?: string | undefined;
661
+ tableHeadTextColor?: string | undefined;
662
+ tableHeadIconColor?: string | undefined;
663
+ tableRowColor?: string | undefined;
664
+ tableRowTextColor?: string | undefined;
665
+ tableBorderRadius?: number | undefined;
666
+ tableSizedColumns?: boolean | undefined;
667
+ tableSizedColumnsWidth?: number | undefined;
668
+ uri?: string | undefined;
669
+ };
670
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>);
671
+ }>;
672
+ states: Record<string, {
673
+ busy?: boolean | undefined;
674
+ loading?: boolean | undefined;
675
+ initialized?: boolean | undefined;
676
+ mounted?: boolean | undefined;
677
+ hover?: boolean | undefined;
678
+ empty?: boolean | undefined;
679
+ }>;
680
+ editableMap: Record<string, {
681
+ uniqid: string;
682
+ index: number;
683
+ }>;
684
+ currentEditableIndex: number;
685
+ widgetObject: Record<string, {
686
+ type?: string | undefined;
687
+ id?: number | undefined;
688
+ mainType?: string | undefined;
689
+ uri?: string | undefined;
690
+ dateCreation?: string | undefined;
691
+ dateModified?: string | null | undefined;
692
+ title?: string | undefined;
693
+ _url?: string | undefined;
694
+ }>;
695
+ token?: string | undefined;
696
+ modal?: {
697
+ title?: string | undefined;
698
+ view?: any;
699
+ } | undefined;
700
+ currentEditableWidgetId?: string | undefined;
701
+ };
702
+ } & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
703
+ extra: {
704
+ jApi: jamespot_user_api.JamespotUserApi;
705
+ };
706
+ rejectValue: {
707
+ error: number;
708
+ errorMsg: string;
709
+ };
710
+ serializedErrorType?: unknown;
711
+ pendingMeta?: unknown;
712
+ fulfilledMeta?: unknown;
713
+ rejectedMeta?: unknown;
714
+ }>;
715
+ deleteCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, void, {
716
+ dispatch: any;
717
+ state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
718
+ widgets: {
719
+ layers: Record<string, {
720
+ title: string;
721
+ widgets: {
722
+ title: string;
723
+ widget: ({
724
+ layers?: string[] | undefined;
725
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
726
+ layers?: string[] | undefined;
727
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
728
+ layers?: string[] | undefined;
729
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
730
+ layers?: string[] | undefined;
731
+ } & jamespot_user_api.WidgetArticleTextType) | ({
732
+ layers?: string[] | undefined;
733
+ } & jamespot_user_api.WidgetArticleImageType) | ({
734
+ layers?: string[] | undefined;
735
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
736
+ layers?: string[] | undefined;
737
+ } & jamespot_user_api.WidgetApiType) | ({
738
+ layers?: string[] | undefined;
739
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
740
+ layers?: string[] | undefined;
741
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
742
+ layers?: string[] | undefined;
743
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
744
+ layers?: string[] | undefined;
745
+ } & {
746
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
747
+ uniqid: string;
748
+ content: {
749
+ limit?: number | undefined;
750
+ tableColumnsData?: {
751
+ name?: string | undefined;
752
+ isVisible?: boolean | undefined;
753
+ textEllipsis?: boolean | undefined;
754
+ label?: string | undefined;
755
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
756
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
757
+ }[] | undefined;
758
+ tableHeadColor?: string | undefined;
759
+ tableHeadTextColor?: string | undefined;
760
+ tableHeadIconColor?: string | undefined;
761
+ tableRowColor?: string | undefined;
762
+ tableRowTextColor?: string | undefined;
763
+ tableBorderRadius?: number | undefined;
764
+ tableSizedColumns?: boolean | undefined;
765
+ tableSizedColumnsWidth?: number | undefined;
766
+ uri?: string | undefined;
767
+ };
768
+ }) | ({
769
+ layers?: string[] | undefined;
770
+ } & jamespot_user_api.WidgetArticleButtonType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
771
+ layers?: string[] | undefined;
772
+ } & jamespot_user_api.WidgetArticleGalleryType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
773
+ layers?: string[] | undefined;
774
+ } & jamespot_user_api.WidgetArticleTitleType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
775
+ layers?: string[] | undefined;
776
+ } & jamespot_user_api.WidgetArticleTextType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
777
+ layers?: string[] | undefined;
778
+ } & jamespot_user_api.WidgetArticleImageType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
779
+ layers?: string[] | undefined;
780
+ } & jamespot_user_api.WidgetArticleAttachmentType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
781
+ layers?: string[] | undefined;
782
+ } & jamespot_user_api.WidgetApiType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
783
+ layers?: string[] | undefined;
784
+ } & jamespot_user_api.WidgetArticleSliderType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
785
+ layers?: string[] | undefined;
786
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleButtonType) | ({
787
+ layers?: string[] | undefined;
788
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleGalleryType) | ({
789
+ layers?: string[] | undefined;
790
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTitleType) | ({
791
+ layers?: string[] | undefined;
792
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTextType) | ({
793
+ layers?: string[] | undefined;
794
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleImageType) | ({
795
+ layers?: string[] | undefined;
796
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleAttachmentType) | ({
797
+ layers?: string[] | undefined;
798
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetApiType) | ({
799
+ layers?: string[] | undefined;
800
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleSliderType) | ({
801
+ layers?: string[] | undefined;
802
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetDatasourceTableType) | ({
803
+ layers?: string[] | undefined;
804
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & {
805
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
806
+ uniqid: string;
807
+ content: {
808
+ limit?: number | undefined;
809
+ tableColumnsData?: {
810
+ name?: string | undefined;
811
+ isVisible?: boolean | undefined;
812
+ textEllipsis?: boolean | undefined;
813
+ label?: string | undefined;
814
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
815
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
816
+ }[] | undefined;
817
+ tableHeadColor?: string | undefined;
818
+ tableHeadTextColor?: string | undefined;
819
+ tableHeadIconColor?: string | undefined;
820
+ tableRowColor?: string | undefined;
821
+ tableRowTextColor?: string | undefined;
822
+ tableBorderRadius?: number | undefined;
823
+ tableSizedColumns?: boolean | undefined;
824
+ tableSizedColumnsWidth?: number | undefined;
825
+ uri?: string | undefined;
826
+ };
827
+ }) | ({
828
+ layers?: string[] | undefined;
829
+ } & jamespot_user_api.WidgetDatasourceTableType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
830
+ layers?: string[] | undefined;
831
+ } & {
832
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
833
+ uniqid: string;
834
+ content: {
835
+ limit?: number | undefined;
836
+ tableColumnsData?: {
837
+ name?: string | undefined;
838
+ isVisible?: boolean | undefined;
839
+ textEllipsis?: boolean | undefined;
840
+ label?: string | undefined;
841
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
842
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
843
+ }[] | undefined;
844
+ tableHeadColor?: string | undefined;
845
+ tableHeadTextColor?: string | undefined;
846
+ tableHeadIconColor?: string | undefined;
847
+ tableRowColor?: string | undefined;
848
+ tableRowTextColor?: string | undefined;
849
+ tableBorderRadius?: number | undefined;
850
+ tableSizedColumns?: boolean | undefined;
851
+ tableSizedColumnsWidth?: number | undefined;
852
+ uri?: string | undefined;
853
+ };
854
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>);
855
+ }[];
856
+ uniqid: string;
857
+ locked: boolean;
858
+ visible: boolean;
859
+ position?: {
860
+ x: number;
861
+ y: number;
862
+ } | undefined;
863
+ }>;
864
+ ids: Record<string, {
865
+ title: string;
866
+ widget: ({
867
+ layers?: string[] | undefined;
868
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
869
+ layers?: string[] | undefined;
870
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
871
+ layers?: string[] | undefined;
872
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
873
+ layers?: string[] | undefined;
874
+ } & jamespot_user_api.WidgetArticleTextType) | ({
875
+ layers?: string[] | undefined;
876
+ } & jamespot_user_api.WidgetArticleImageType) | ({
877
+ layers?: string[] | undefined;
878
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
879
+ layers?: string[] | undefined;
880
+ } & jamespot_user_api.WidgetApiType) | ({
881
+ layers?: string[] | undefined;
882
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
883
+ layers?: string[] | undefined;
884
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
885
+ layers?: string[] | undefined;
886
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
887
+ layers?: string[] | undefined;
888
+ } & {
889
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
890
+ uniqid: string;
891
+ content: {
892
+ limit?: number | undefined;
893
+ tableColumnsData?: {
894
+ name?: string | undefined;
895
+ isVisible?: boolean | undefined;
896
+ textEllipsis?: boolean | undefined;
897
+ label?: string | undefined;
898
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
899
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
900
+ }[] | undefined;
901
+ tableHeadColor?: string | undefined;
902
+ tableHeadTextColor?: string | undefined;
903
+ tableHeadIconColor?: string | undefined;
904
+ tableRowColor?: string | undefined;
905
+ tableRowTextColor?: string | undefined;
906
+ tableBorderRadius?: number | undefined;
907
+ tableSizedColumns?: boolean | undefined;
908
+ tableSizedColumnsWidth?: number | undefined;
909
+ uri?: string | undefined;
910
+ };
911
+ }) | ({
912
+ layers?: string[] | undefined;
913
+ } & jamespot_user_api.WidgetArticleButtonType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
914
+ layers?: string[] | undefined;
915
+ } & jamespot_user_api.WidgetArticleGalleryType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
916
+ layers?: string[] | undefined;
917
+ } & jamespot_user_api.WidgetArticleTitleType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
918
+ layers?: string[] | undefined;
919
+ } & jamespot_user_api.WidgetArticleTextType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
920
+ layers?: string[] | undefined;
921
+ } & jamespot_user_api.WidgetArticleImageType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
922
+ layers?: string[] | undefined;
923
+ } & jamespot_user_api.WidgetArticleAttachmentType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
924
+ layers?: string[] | undefined;
925
+ } & jamespot_user_api.WidgetApiType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
926
+ layers?: string[] | undefined;
927
+ } & jamespot_user_api.WidgetArticleSliderType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
928
+ layers?: string[] | undefined;
929
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleButtonType) | ({
930
+ layers?: string[] | undefined;
931
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleGalleryType) | ({
932
+ layers?: string[] | undefined;
933
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTitleType) | ({
934
+ layers?: string[] | undefined;
935
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleTextType) | ({
936
+ layers?: string[] | undefined;
937
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleImageType) | ({
938
+ layers?: string[] | undefined;
939
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleAttachmentType) | ({
940
+ layers?: string[] | undefined;
941
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetApiType) | ({
942
+ layers?: string[] | undefined;
943
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetArticleSliderType) | ({
944
+ layers?: string[] | undefined;
945
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & jamespot_user_api.WidgetDatasourceTableType) | ({
946
+ layers?: string[] | undefined;
947
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType> & {
948
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
949
+ uniqid: string;
950
+ content: {
951
+ limit?: number | undefined;
952
+ tableColumnsData?: {
953
+ name?: string | undefined;
954
+ isVisible?: boolean | undefined;
955
+ textEllipsis?: boolean | undefined;
956
+ label?: string | undefined;
957
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
958
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
959
+ }[] | undefined;
960
+ tableHeadColor?: string | undefined;
961
+ tableHeadTextColor?: string | undefined;
962
+ tableHeadIconColor?: string | undefined;
963
+ tableRowColor?: string | undefined;
964
+ tableRowTextColor?: string | undefined;
965
+ tableBorderRadius?: number | undefined;
966
+ tableSizedColumns?: boolean | undefined;
967
+ tableSizedColumnsWidth?: number | undefined;
968
+ uri?: string | undefined;
969
+ };
970
+ }) | ({
971
+ layers?: string[] | undefined;
972
+ } & jamespot_user_api.WidgetDatasourceTableType & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>) | ({
973
+ layers?: string[] | undefined;
974
+ } & {
975
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
976
+ uniqid: string;
977
+ content: {
978
+ limit?: number | undefined;
979
+ tableColumnsData?: {
980
+ name?: string | undefined;
981
+ isVisible?: boolean | undefined;
982
+ textEllipsis?: boolean | undefined;
983
+ label?: string | undefined;
984
+ dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
985
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
986
+ }[] | undefined;
987
+ tableHeadColor?: string | undefined;
988
+ tableHeadTextColor?: string | undefined;
989
+ tableHeadIconColor?: string | undefined;
990
+ tableRowColor?: string | undefined;
991
+ tableRowTextColor?: string | undefined;
992
+ tableBorderRadius?: number | undefined;
993
+ tableSizedColumns?: boolean | undefined;
994
+ tableSizedColumnsWidth?: number | undefined;
995
+ uri?: string | undefined;
996
+ };
997
+ } & jamespot_user_api.WidgetType<jamespot_user_api.WidgetCheckListContent & jamespot_user_api.LegacyAngularJSType>);
998
+ }>;
999
+ states: Record<string, {
1000
+ busy?: boolean | undefined;
1001
+ loading?: boolean | undefined;
1002
+ initialized?: boolean | undefined;
1003
+ mounted?: boolean | undefined;
1004
+ hover?: boolean | undefined;
1005
+ empty?: boolean | undefined;
1006
+ }>;
1007
+ editableMap: Record<string, {
1008
+ uniqid: string;
1009
+ index: number;
1010
+ }>;
1011
+ currentEditableIndex: number;
1012
+ widgetObject: Record<string, {
1013
+ type?: string | undefined;
1014
+ id?: number | undefined;
1015
+ mainType?: string | undefined;
1016
+ uri?: string | undefined;
1017
+ dateCreation?: string | undefined;
1018
+ dateModified?: string | null | undefined;
1019
+ title?: string | undefined;
1020
+ _url?: string | undefined;
1021
+ }>;
1022
+ token?: string | undefined;
1023
+ modal?: {
1024
+ title?: string | undefined;
1025
+ view?: any;
1026
+ } | undefined;
1027
+ currentEditableWidgetId?: string | undefined;
1028
+ };
1029
+ } & WedocAppRootState & UserCurrentRootState> & AnimationsRootState;
1030
+ extra: {
1031
+ jApi: jamespot_user_api.JamespotUserApi;
1032
+ };
1033
+ rejectValue: {
1034
+ error: number;
1035
+ errorMsg: string;
1036
+ };
1037
+ serializedErrorType?: unknown;
1038
+ pendingMeta?: unknown;
1039
+ fulfilledMeta?: unknown;
1040
+ rejectedMeta?: unknown;
1041
+ }>;
1042
+ toggleAnimationIsActive: _reduxjs_toolkit.AsyncThunk<void, void, {
360
1043
  dispatch: any;
361
1044
  state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
362
1045
  widgets: {
@@ -683,7 +1366,13 @@ declare const Animations: {
683
1366
  fulfilledMeta?: unknown;
684
1367
  rejectedMeta?: unknown;
685
1368
  }>;
686
- deleteCurrentAnimation: _reduxjs_toolkit.AsyncThunk<void, void, {
1369
+ fetchCurrentAnimationApp: _reduxjs_toolkit.AsyncThunk<{
1370
+ name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
1371
+ audience: string[];
1372
+ activeClickEffect: number;
1373
+ activeDecor: number;
1374
+ auto: boolean;
1375
+ } | null, void, {
687
1376
  dispatch: any;
688
1377
  state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
689
1378
  widgets: {
@@ -1010,7 +1699,25 @@ declare const Animations: {
1010
1699
  fulfilledMeta?: unknown;
1011
1700
  rejectedMeta?: unknown;
1012
1701
  }>;
1013
- toggleAnimationIsActive: _reduxjs_toolkit.AsyncThunk<void, void, {
1702
+ fetchAnimationStats: _reduxjs_toolkit.AsyncThunk<{
1703
+ type: string;
1704
+ id: number;
1705
+ mainType: string;
1706
+ uri: string;
1707
+ dateCreation: string | null;
1708
+ dateModified: string | null;
1709
+ auto: boolean;
1710
+ animationName: string;
1711
+ dateStart: string;
1712
+ dateEnd: string | null;
1713
+ stats: {
1714
+ number: number;
1715
+ date: string;
1716
+ }[];
1717
+ animAudience: string[];
1718
+ }[], {
1719
+ name: string;
1720
+ }, {
1014
1721
  dispatch: any;
1015
1722
  state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1016
1723
  widgets: {
@@ -1337,13 +2044,23 @@ declare const Animations: {
1337
2044
  fulfilledMeta?: unknown;
1338
2045
  rejectedMeta?: unknown;
1339
2046
  }>;
1340
- fetchCurrentAnimationApp: _reduxjs_toolkit.AsyncThunk<{
1341
- name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
1342
- activeClickEffect: number;
1343
- activeDecor: number;
2047
+ fetchAnimationStatsCurrent: _reduxjs_toolkit.AsyncThunk<{
2048
+ type: string;
2049
+ id: number;
2050
+ mainType: string;
2051
+ uri: string;
2052
+ dateCreation: string | null;
2053
+ dateModified: string | null;
1344
2054
  auto: boolean;
1345
- audience: string[];
1346
- } | null, void, {
2055
+ animationName: string;
2056
+ dateStart: string;
2057
+ dateEnd: string | null;
2058
+ stats: {
2059
+ number: number;
2060
+ date: string;
2061
+ }[];
2062
+ animAudience: string[];
2063
+ } | null, string, {
1347
2064
  dispatch: any;
1348
2065
  state: Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
1349
2066
  widgets: {
@@ -1674,19 +2391,19 @@ declare const Animations: {
1674
2391
  selectors: {
1675
2392
  selectCurrentAnimation: (state: AnimationsRootState) => {
1676
2393
  name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
2394
+ audience: string[];
1677
2395
  activeClickEffect: number;
1678
2396
  activeDecor: number;
1679
2397
  auto: boolean;
1680
- audience: string[];
1681
2398
  } | null;
1682
2399
  isActiveAnimation: (state: AnimationsRootState) => boolean;
1683
2400
  isToggleLoading: (state: AnimationsRootState) => boolean;
1684
2401
  selectAnimationConfigurationApp: (state: AnimationsRootState) => {
1685
2402
  name: "Celebration" | "Olympics" | "Maythefourth" | "Spring" | "MusicFestival" | "EasterEggs" | "CustomAnimation";
2403
+ audience: string[];
1686
2404
  activeClickEffect: number;
1687
2405
  activeDecor: number;
1688
2406
  auto: boolean;
1689
- audience: string[];
1690
2407
  } | null | undefined;
1691
2408
  };
1692
2409
  getAnimationsRTHandlers: (dispatch: RTDispatch) => jamespot_user_api.RTMessageHandler<"ANIMATIONS", "update" | "add" | "delete" | "toggle" | "getAnimationActive">[];
@@ -2624,6 +3341,8 @@ declare const AssetReservation: {
2624
3341
  dateModified: string;
2625
3342
  };
2626
3343
  _right: jamespot_user_api.Rights;
3344
+ dateStart: string;
3345
+ dateEnd: string;
2627
3346
  _audience: (jamespot_user_api.jUserLittle | {
2628
3347
  type: string;
2629
3348
  id: number;
@@ -2636,8 +3355,6 @@ declare const AssetReservation: {
2636
3355
  category: number;
2637
3356
  privacy: number;
2638
3357
  })[];
2639
- dateStart: string;
2640
- dateEnd: string;
2641
3358
  reservationCancelled: boolean;
2642
3359
  _asset: {
2643
3360
  type: string;
@@ -3477,6 +4194,8 @@ declare const AssetReservation: {
3477
4194
  dateModified: string;
3478
4195
  };
3479
4196
  _right: jamespot_user_api.Rights;
4197
+ dateStart: string;
4198
+ dateEnd: string;
3480
4199
  _audience: (jamespot_user_api.jUserLittle | {
3481
4200
  type: string;
3482
4201
  id: number;
@@ -3489,8 +4208,6 @@ declare const AssetReservation: {
3489
4208
  category: number;
3490
4209
  privacy: number;
3491
4210
  })[];
3492
- dateStart: string;
3493
- dateEnd: string;
3494
4211
  reservationCancelled: boolean;
3495
4212
  _asset: {
3496
4213
  type: string;
@@ -6197,6 +6914,26 @@ declare const Bookmark: {
6197
6914
  bookmarkMeta?: string | null | undefined;
6198
6915
  url?: string | null | undefined;
6199
6916
  } | undefined;
6917
+ bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
6918
+ type: "bookmarkLink";
6919
+ id: number;
6920
+ mainType: string;
6921
+ uri: string;
6922
+ targetId: number;
6923
+ value: string | null;
6924
+ srcId: number;
6925
+ srcType: string;
6926
+ targetType: string | null;
6927
+ dateCreation?: string | undefined;
6928
+ dateModified?: string | null | undefined;
6929
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6930
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6931
+ bookmarkUrl?: string | null | undefined;
6932
+ bookmarkOrder?: number | undefined;
6933
+ bookmarkLabel?: string | undefined;
6934
+ bookmarkMeta?: string | null | undefined;
6935
+ url?: string | null | undefined;
6936
+ } | undefined;
6200
6937
  };
6201
6938
  getRTHandlers: (dispatch: RTDispatch) => ({
6202
6939
  namespace: "CUSTOM-ACTION";
@@ -20804,4 +21541,4 @@ declare const studio: {
20804
21541
  };
20805
21542
  };
20806
21543
 
20807
- export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceRootState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, Hook, HookRootState, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MagicPad, MagicPadRootState, MagicPadSliceRootState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, PagingState, Platform, PlatformRootState, RTDispatch, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };
21544
+ export { APP_STATUS_TYPE, AUDIENCE, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormUniqueList, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, ContentTypePropertyValue, EditorProps, EditorsRootState, EditorsState, ExtraAppFieldsItemViews, Faq, FaqRootState, Hook, HookRootState, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MagicPad, MagicPadRootState, MagicPadSliceRootState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, PagingState, Platform, PlatformRootState, RTDispatch, ReservationForm, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, TVDisplay, TVDisplayRootState, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };