jamespot-front-business 1.1.85 → 1.1.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs.js +168 -31
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +165 -32
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +1627 -533
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
2
2
|
import { EntityState, PayloadAction, Dispatch, Action as Action$1 } from '@reduxjs/toolkit';
|
|
3
3
|
import * as jamespot_user_api from 'jamespot-user-api';
|
|
4
|
-
import { jUserLittle, Filters, Orders, AdminLogNavigation, AdminLogObject, AdminLogSearch, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView,
|
|
4
|
+
import { jUserLittle, Filters, Orders, AdminLogNavigation, AdminLogObject, AdminLogSearch, AnimationConfigurationType, AnimationStats, ApplicationType, ApiWrapper, BookableAssetList, AssetReservationConfiguration, ReservationList, WithSocialActions, jCommentList, PagingResults, ContentReportStatus, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, ApiPagingResults, 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
5
|
import * as redux from 'redux';
|
|
6
6
|
import { Dispatch as Dispatch$1 } from 'redux';
|
|
7
7
|
import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
|
|
8
8
|
import React$1 from 'react';
|
|
9
|
+
import { ContentReportList } from 'jamespot-user-api/lib/src/types/contentReport';
|
|
9
10
|
|
|
10
11
|
type ToastType = 'success' | 'warning' | 'error';
|
|
11
12
|
type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
|
|
@@ -2548,25 +2549,26 @@ type ApplicationRootState = {
|
|
|
2548
2549
|
applications: EntityState<ApplicationType>;
|
|
2549
2550
|
};
|
|
2550
2551
|
};
|
|
2552
|
+
|
|
2551
2553
|
declare const Application: {
|
|
2552
|
-
slice: _reduxjs_toolkit.Slice<EntityState<ApplicationType>, {
|
|
2554
|
+
slice: _reduxjs_toolkit.Slice<_reduxjs_toolkit.EntityState<ApplicationType>, {
|
|
2553
2555
|
addOne: {
|
|
2554
|
-
<S extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<ApplicationType>, S>, entity: ApplicationType): S;
|
|
2555
|
-
<S_1 extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<ApplicationType>, S_1>, action: {
|
|
2556
|
+
<S extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, _reduxjs_toolkit.EntityState<ApplicationType>, S>, entity: ApplicationType): S;
|
|
2557
|
+
<S_1 extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, _reduxjs_toolkit.EntityState<ApplicationType>, S_1>, action: {
|
|
2556
2558
|
payload: ApplicationType;
|
|
2557
2559
|
type: string;
|
|
2558
2560
|
}): S_1;
|
|
2559
2561
|
};
|
|
2560
2562
|
addMany: {
|
|
2561
|
-
<S_2 extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<ApplicationType>, S_2>, entities: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>): S_2;
|
|
2562
|
-
<S_3 extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<ApplicationType>, S_3>, entities: {
|
|
2563
|
+
<S_2 extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, _reduxjs_toolkit.EntityState<ApplicationType>, S_2>, entities: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>): S_2;
|
|
2564
|
+
<S_3 extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, _reduxjs_toolkit.EntityState<ApplicationType>, S_3>, entities: {
|
|
2563
2565
|
payload: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>;
|
|
2564
2566
|
type: string;
|
|
2565
2567
|
}): S_3;
|
|
2566
2568
|
};
|
|
2567
2569
|
setAll: {
|
|
2568
|
-
<S_4 extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_4, EntityState<ApplicationType>, S_4>, entities: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>): S_4;
|
|
2569
|
-
<S_5 extends EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_5, EntityState<ApplicationType>, S_5>, entities: {
|
|
2570
|
+
<S_4 extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_4, _reduxjs_toolkit.EntityState<ApplicationType>, S_4>, entities: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>): S_4;
|
|
2571
|
+
<S_5 extends _reduxjs_toolkit.EntityState<ApplicationType>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_5, _reduxjs_toolkit.EntityState<ApplicationType>, S_5>, entities: {
|
|
2570
2572
|
payload: readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>;
|
|
2571
2573
|
type: string;
|
|
2572
2574
|
}): S_5;
|
|
@@ -2576,6 +2578,230 @@ declare const Application: {
|
|
|
2576
2578
|
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ApplicationType, "applications/addOne">;
|
|
2577
2579
|
addMany: _reduxjs_toolkit.ActionCreatorWithPayload<readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>, "applications/addMany">;
|
|
2578
2580
|
setAll: _reduxjs_toolkit.ActionCreatorWithPayload<readonly ApplicationType[] | Record<_reduxjs_toolkit.EntityId, ApplicationType>, "applications/setAll">;
|
|
2581
|
+
fetchList: _reduxjs_toolkit.AsyncThunk<ApiWrapper<ApplicationType[], jamespot_user_api.BaseMessages>, void, {
|
|
2582
|
+
dispatch: any;
|
|
2583
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
2584
|
+
widgets: {
|
|
2585
|
+
layers: Record<string, {
|
|
2586
|
+
title: string;
|
|
2587
|
+
visible: boolean;
|
|
2588
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
2589
|
+
layers?: string[] | undefined;
|
|
2590
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2591
|
+
layers?: string[] | undefined;
|
|
2592
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2593
|
+
layers?: string[] | undefined;
|
|
2594
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2595
|
+
layers?: string[] | undefined;
|
|
2596
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2597
|
+
layers?: string[] | undefined;
|
|
2598
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2599
|
+
layers?: string[] | undefined;
|
|
2600
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2601
|
+
layers?: string[] | undefined;
|
|
2602
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2603
|
+
layers?: string[] | undefined;
|
|
2604
|
+
} & jamespot_user_api.WidgetType<{
|
|
2605
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2606
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2607
|
+
css?: Record<string, string> | undefined;
|
|
2608
|
+
edit?: boolean | undefined;
|
|
2609
|
+
}>) | ({
|
|
2610
|
+
layers?: string[] | undefined;
|
|
2611
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2612
|
+
layers?: string[] | undefined;
|
|
2613
|
+
} & {
|
|
2614
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2615
|
+
uniqid: string;
|
|
2616
|
+
content: {
|
|
2617
|
+
uri?: string | undefined;
|
|
2618
|
+
limit?: number | boolean | undefined;
|
|
2619
|
+
tableColumnsData?: {
|
|
2620
|
+
name?: string | undefined;
|
|
2621
|
+
label?: string | undefined;
|
|
2622
|
+
isVisible?: boolean | undefined;
|
|
2623
|
+
textEllipsis?: boolean | undefined;
|
|
2624
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2625
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2626
|
+
}[] | undefined;
|
|
2627
|
+
tableHeadColor?: string | undefined;
|
|
2628
|
+
tableHeadTextColor?: string | undefined;
|
|
2629
|
+
tableHeadIconColor?: string | undefined;
|
|
2630
|
+
tableRowColor?: string | undefined;
|
|
2631
|
+
tableRowTextColor?: string | undefined;
|
|
2632
|
+
tableBorderRadius?: number | undefined;
|
|
2633
|
+
tableSizedColumns?: boolean | undefined;
|
|
2634
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
2635
|
+
};
|
|
2636
|
+
}) | ({
|
|
2637
|
+
layers?: string[] | undefined;
|
|
2638
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2639
|
+
layers?: string[] | undefined;
|
|
2640
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2641
|
+
layers?: string[] | undefined;
|
|
2642
|
+
} & jamespot_user_api.WidgetType<{
|
|
2643
|
+
calEventsLimit?: boolean | undefined;
|
|
2644
|
+
calEventsLimitValue?: number | undefined;
|
|
2645
|
+
calEventsPromptStatus?: string | undefined;
|
|
2646
|
+
}>) | ({
|
|
2647
|
+
layers?: string[] | undefined;
|
|
2648
|
+
} & jamespot_user_api.WidgetType<{
|
|
2649
|
+
contactLimit?: boolean | undefined;
|
|
2650
|
+
contactLimitValue?: number | undefined;
|
|
2651
|
+
contactPromptStatus?: string | undefined;
|
|
2652
|
+
}>) | ({
|
|
2653
|
+
layers?: string[] | undefined;
|
|
2654
|
+
} & jamespot_user_api.WidgetType<{
|
|
2655
|
+
emailsLimit?: boolean | undefined;
|
|
2656
|
+
emailsLimitValue?: number | undefined;
|
|
2657
|
+
emailsPromptStatus?: string | undefined;
|
|
2658
|
+
}>)>[];
|
|
2659
|
+
uniqid: string;
|
|
2660
|
+
locked: boolean;
|
|
2661
|
+
position?: {
|
|
2662
|
+
x: number;
|
|
2663
|
+
y: number;
|
|
2664
|
+
} | undefined;
|
|
2665
|
+
}>;
|
|
2666
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
2667
|
+
layers?: string[] | undefined;
|
|
2668
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2669
|
+
layers?: string[] | undefined;
|
|
2670
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2671
|
+
layers?: string[] | undefined;
|
|
2672
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2673
|
+
layers?: string[] | undefined;
|
|
2674
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2675
|
+
layers?: string[] | undefined;
|
|
2676
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2677
|
+
layers?: string[] | undefined;
|
|
2678
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2679
|
+
layers?: string[] | undefined;
|
|
2680
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2681
|
+
layers?: string[] | undefined;
|
|
2682
|
+
} & jamespot_user_api.WidgetType<{
|
|
2683
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2684
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2685
|
+
css?: Record<string, string> | undefined;
|
|
2686
|
+
edit?: boolean | undefined;
|
|
2687
|
+
}>) | ({
|
|
2688
|
+
layers?: string[] | undefined;
|
|
2689
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2690
|
+
layers?: string[] | undefined;
|
|
2691
|
+
} & {
|
|
2692
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2693
|
+
uniqid: string;
|
|
2694
|
+
content: {
|
|
2695
|
+
uri?: string | undefined;
|
|
2696
|
+
limit?: number | boolean | undefined;
|
|
2697
|
+
tableColumnsData?: {
|
|
2698
|
+
name?: string | undefined;
|
|
2699
|
+
label?: string | undefined;
|
|
2700
|
+
isVisible?: boolean | undefined;
|
|
2701
|
+
textEllipsis?: boolean | undefined;
|
|
2702
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2703
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2704
|
+
}[] | undefined;
|
|
2705
|
+
tableHeadColor?: string | undefined;
|
|
2706
|
+
tableHeadTextColor?: string | undefined;
|
|
2707
|
+
tableHeadIconColor?: string | undefined;
|
|
2708
|
+
tableRowColor?: string | undefined;
|
|
2709
|
+
tableRowTextColor?: string | undefined;
|
|
2710
|
+
tableBorderRadius?: number | undefined;
|
|
2711
|
+
tableSizedColumns?: boolean | undefined;
|
|
2712
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
2713
|
+
};
|
|
2714
|
+
}) | ({
|
|
2715
|
+
layers?: string[] | undefined;
|
|
2716
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2717
|
+
layers?: string[] | undefined;
|
|
2718
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2719
|
+
layers?: string[] | undefined;
|
|
2720
|
+
} & jamespot_user_api.WidgetType<{
|
|
2721
|
+
calEventsLimit?: boolean | undefined;
|
|
2722
|
+
calEventsLimitValue?: number | undefined;
|
|
2723
|
+
calEventsPromptStatus?: string | undefined;
|
|
2724
|
+
}>) | ({
|
|
2725
|
+
layers?: string[] | undefined;
|
|
2726
|
+
} & jamespot_user_api.WidgetType<{
|
|
2727
|
+
contactLimit?: boolean | undefined;
|
|
2728
|
+
contactLimitValue?: number | undefined;
|
|
2729
|
+
contactPromptStatus?: string | undefined;
|
|
2730
|
+
}>) | ({
|
|
2731
|
+
layers?: string[] | undefined;
|
|
2732
|
+
} & jamespot_user_api.WidgetType<{
|
|
2733
|
+
emailsLimit?: boolean | undefined;
|
|
2734
|
+
emailsLimitValue?: number | undefined;
|
|
2735
|
+
emailsPromptStatus?: string | undefined;
|
|
2736
|
+
}>)>>;
|
|
2737
|
+
states: Record<string, {
|
|
2738
|
+
busy?: boolean | undefined;
|
|
2739
|
+
loading?: boolean | undefined;
|
|
2740
|
+
initialized?: boolean | undefined;
|
|
2741
|
+
mounted?: boolean | undefined;
|
|
2742
|
+
hover?: boolean | undefined;
|
|
2743
|
+
empty?: boolean | undefined;
|
|
2744
|
+
locked?: boolean | undefined;
|
|
2745
|
+
}>;
|
|
2746
|
+
editableMap: Record<string, {
|
|
2747
|
+
uniqid: string;
|
|
2748
|
+
index: number;
|
|
2749
|
+
}>;
|
|
2750
|
+
currentEditableIndex: number;
|
|
2751
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
2752
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
2753
|
+
widgetObject: Record<string, {
|
|
2754
|
+
type?: string | undefined;
|
|
2755
|
+
id?: number | undefined;
|
|
2756
|
+
mainType?: string | undefined;
|
|
2757
|
+
uri?: string | undefined;
|
|
2758
|
+
dateCreation?: string | undefined;
|
|
2759
|
+
dateModified?: string | null | undefined;
|
|
2760
|
+
title?: string | undefined;
|
|
2761
|
+
_url?: string | undefined;
|
|
2762
|
+
}>;
|
|
2763
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
2764
|
+
widgetChipCount: Record<string, number>;
|
|
2765
|
+
widgetAuthor: Record<string, {
|
|
2766
|
+
type?: string | undefined;
|
|
2767
|
+
id?: number | undefined;
|
|
2768
|
+
mainType?: string | undefined;
|
|
2769
|
+
uri?: string | undefined;
|
|
2770
|
+
dateCreation?: string | undefined;
|
|
2771
|
+
dateModified?: string | undefined;
|
|
2772
|
+
title?: string | undefined;
|
|
2773
|
+
_url?: string | undefined;
|
|
2774
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
2775
|
+
}>;
|
|
2776
|
+
flushedWidgets: string[];
|
|
2777
|
+
rtObjectStack: {
|
|
2778
|
+
object: jamespot_user_api.jObjectBase & {
|
|
2779
|
+
title: string;
|
|
2780
|
+
_url: string;
|
|
2781
|
+
};
|
|
2782
|
+
uniqid: string;
|
|
2783
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
2784
|
+
}[];
|
|
2785
|
+
token?: string | undefined;
|
|
2786
|
+
modal?: {
|
|
2787
|
+
title?: string | undefined;
|
|
2788
|
+
view?: any;
|
|
2789
|
+
} | undefined;
|
|
2790
|
+
currentEditableWidgetId?: string | undefined;
|
|
2791
|
+
};
|
|
2792
|
+
} & WedocAppRootState & UserCurrentRootState> & ApplicationRootState;
|
|
2793
|
+
extra: {
|
|
2794
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
2795
|
+
};
|
|
2796
|
+
rejectValue: {
|
|
2797
|
+
error: number;
|
|
2798
|
+
errorMsg: string;
|
|
2799
|
+
};
|
|
2800
|
+
serializedErrorType?: unknown;
|
|
2801
|
+
pendingMeta?: unknown;
|
|
2802
|
+
fulfilledMeta?: unknown;
|
|
2803
|
+
rejectedMeta?: unknown;
|
|
2804
|
+
}>;
|
|
2579
2805
|
};
|
|
2580
2806
|
selectors: _reduxjs_toolkit.EntitySelectors<ApplicationType, ApplicationRootState>;
|
|
2581
2807
|
};
|
|
@@ -4030,7 +4256,7 @@ type CommentRootState = {
|
|
|
4030
4256
|
};
|
|
4031
4257
|
type CommentsList = {
|
|
4032
4258
|
idArticle: number;
|
|
4033
|
-
list: Array<jCommentList & {
|
|
4259
|
+
list: Array<WithSocialActions<jCommentList> & {
|
|
4034
4260
|
pending?: boolean;
|
|
4035
4261
|
}>;
|
|
4036
4262
|
};
|
|
@@ -4054,7 +4280,7 @@ declare const Comment: {
|
|
|
4054
4280
|
}, "commentList/discardComments">;
|
|
4055
4281
|
hydrateComment: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4056
4282
|
idArticle: number;
|
|
4057
|
-
list: {
|
|
4283
|
+
list: ({
|
|
4058
4284
|
type: string;
|
|
4059
4285
|
id: number;
|
|
4060
4286
|
mainType: string;
|
|
@@ -4174,7 +4400,19 @@ declare const Comment: {
|
|
|
4174
4400
|
emailsLimitValue?: number | undefined;
|
|
4175
4401
|
emailsPromptStatus?: string | undefined;
|
|
4176
4402
|
}>)>[] | undefined;
|
|
4177
|
-
}
|
|
4403
|
+
} & {
|
|
4404
|
+
_extend: {
|
|
4405
|
+
actions: {
|
|
4406
|
+
type: string;
|
|
4407
|
+
targetId: number;
|
|
4408
|
+
targetType: string;
|
|
4409
|
+
label: string;
|
|
4410
|
+
icon: string;
|
|
4411
|
+
isActive: boolean;
|
|
4412
|
+
count?: number | undefined;
|
|
4413
|
+
}[];
|
|
4414
|
+
};
|
|
4415
|
+
})[];
|
|
4178
4416
|
}, "commentList/hydrateComment">;
|
|
4179
4417
|
updateComment: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4180
4418
|
idArticle: number;
|
|
@@ -4763,6 +5001,18 @@ declare const Comment: {
|
|
|
4763
5001
|
emailsLimitValue?: number | undefined;
|
|
4764
5002
|
emailsPromptStatus?: string | undefined;
|
|
4765
5003
|
}>)>[] | undefined;
|
|
5004
|
+
} & {
|
|
5005
|
+
_extend: {
|
|
5006
|
+
actions: {
|
|
5007
|
+
type: string;
|
|
5008
|
+
targetId: number;
|
|
5009
|
+
targetType: string;
|
|
5010
|
+
label: string;
|
|
5011
|
+
icon: string;
|
|
5012
|
+
isActive: boolean;
|
|
5013
|
+
count?: number | undefined;
|
|
5014
|
+
}[];
|
|
5015
|
+
};
|
|
4766
5016
|
} & {
|
|
4767
5017
|
pending?: boolean;
|
|
4768
5018
|
})[];
|
|
@@ -4771,14 +5021,1200 @@ declare const Comment: {
|
|
|
4771
5021
|
getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
|
|
4772
5022
|
};
|
|
4773
5023
|
|
|
4774
|
-
type
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
5024
|
+
type ContentReportSliceRootState = Loading & {
|
|
5025
|
+
reports: ContentReportList[];
|
|
5026
|
+
page: number;
|
|
5027
|
+
tab: 'my' | 'all';
|
|
5028
|
+
filters: Filters;
|
|
5029
|
+
orders: Orders;
|
|
5030
|
+
limit: number;
|
|
4779
5031
|
nbResults: number;
|
|
4780
|
-
|
|
4781
|
-
|
|
5032
|
+
pendingReports: Array<ContentReportList & {
|
|
5033
|
+
requestId: string;
|
|
5034
|
+
}>;
|
|
5035
|
+
};
|
|
5036
|
+
type ContentReportRootState = {
|
|
5037
|
+
contentReport: ContentReportSliceRootState;
|
|
5038
|
+
};
|
|
5039
|
+
|
|
5040
|
+
declare const contentReportSlice: _reduxjs_toolkit.Slice<ContentReportSliceRootState, {
|
|
5041
|
+
setTab: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['tab']>) => void;
|
|
5042
|
+
setPage: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['page']>) => void;
|
|
5043
|
+
setFilters: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['filters']>) => void;
|
|
5044
|
+
setOrders: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['orders']>) => void;
|
|
5045
|
+
}, "contentReport">;
|
|
5046
|
+
declare const fetchReports: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
5047
|
+
type: string;
|
|
5048
|
+
status: ContentReportStatus;
|
|
5049
|
+
id: number;
|
|
5050
|
+
mainType: string;
|
|
5051
|
+
uri: string;
|
|
5052
|
+
dateCreation: string;
|
|
5053
|
+
dateModified: string;
|
|
5054
|
+
title: string;
|
|
5055
|
+
_url: string;
|
|
5056
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
5057
|
+
title: string;
|
|
5058
|
+
_url: string;
|
|
5059
|
+
} & {
|
|
5060
|
+
[key: string]: string | number | null;
|
|
5061
|
+
level: 0 | 9 | 3 | 5;
|
|
5062
|
+
dateCreation: string;
|
|
5063
|
+
dateModified: string;
|
|
5064
|
+
};
|
|
5065
|
+
_right: jamespot_user_api.Rights;
|
|
5066
|
+
_audience: (jamespot_user_api.jUserLittle | {
|
|
5067
|
+
type: string;
|
|
5068
|
+
id: number;
|
|
5069
|
+
mainType: string;
|
|
5070
|
+
uri: string;
|
|
5071
|
+
dateCreation: string;
|
|
5072
|
+
dateModified: string;
|
|
5073
|
+
title: string;
|
|
5074
|
+
_url: string;
|
|
5075
|
+
privacy: jamespot_user_api.GroupPrivacy;
|
|
5076
|
+
category: number;
|
|
5077
|
+
} | {
|
|
5078
|
+
type: "folder" | "rootFolder";
|
|
5079
|
+
id: number;
|
|
5080
|
+
mainType: string;
|
|
5081
|
+
uri: string;
|
|
5082
|
+
title: string;
|
|
5083
|
+
_url: string;
|
|
5084
|
+
dateCreation?: string | undefined;
|
|
5085
|
+
dateModified?: string | null | undefined;
|
|
5086
|
+
folderColor?: string | undefined;
|
|
5087
|
+
})[];
|
|
5088
|
+
articleId: number;
|
|
5089
|
+
articleType: string;
|
|
5090
|
+
articleTitle: string;
|
|
5091
|
+
articleUrl: string;
|
|
5092
|
+
description?: string | null | undefined;
|
|
5093
|
+
image?: {
|
|
5094
|
+
width: number;
|
|
5095
|
+
height: number;
|
|
5096
|
+
} | undefined;
|
|
5097
|
+
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5098
|
+
layers?: string[] | undefined;
|
|
5099
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5100
|
+
layers?: string[] | undefined;
|
|
5101
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5102
|
+
layers?: string[] | undefined;
|
|
5103
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5104
|
+
layers?: string[] | undefined;
|
|
5105
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5106
|
+
layers?: string[] | undefined;
|
|
5107
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5108
|
+
layers?: string[] | undefined;
|
|
5109
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5110
|
+
layers?: string[] | undefined;
|
|
5111
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5112
|
+
layers?: string[] | undefined;
|
|
5113
|
+
} & jamespot_user_api.WidgetType<{
|
|
5114
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5115
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5116
|
+
css?: Record<string, string> | undefined;
|
|
5117
|
+
edit?: boolean | undefined;
|
|
5118
|
+
}>) | ({
|
|
5119
|
+
layers?: string[] | undefined;
|
|
5120
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5121
|
+
layers?: string[] | undefined;
|
|
5122
|
+
} & {
|
|
5123
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5124
|
+
uniqid: string;
|
|
5125
|
+
content: {
|
|
5126
|
+
uri?: string | undefined;
|
|
5127
|
+
limit?: number | boolean | undefined;
|
|
5128
|
+
tableColumnsData?: {
|
|
5129
|
+
name?: string | undefined;
|
|
5130
|
+
label?: string | undefined;
|
|
5131
|
+
isVisible?: boolean | undefined;
|
|
5132
|
+
textEllipsis?: boolean | undefined;
|
|
5133
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5134
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5135
|
+
}[] | undefined;
|
|
5136
|
+
tableHeadColor?: string | undefined;
|
|
5137
|
+
tableHeadTextColor?: string | undefined;
|
|
5138
|
+
tableHeadIconColor?: string | undefined;
|
|
5139
|
+
tableRowColor?: string | undefined;
|
|
5140
|
+
tableRowTextColor?: string | undefined;
|
|
5141
|
+
tableBorderRadius?: number | undefined;
|
|
5142
|
+
tableSizedColumns?: boolean | undefined;
|
|
5143
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5144
|
+
};
|
|
5145
|
+
}) | ({
|
|
5146
|
+
layers?: string[] | undefined;
|
|
5147
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5148
|
+
layers?: string[] | undefined;
|
|
5149
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5150
|
+
layers?: string[] | undefined;
|
|
5151
|
+
} & jamespot_user_api.WidgetType<{
|
|
5152
|
+
calEventsLimit?: boolean | undefined;
|
|
5153
|
+
calEventsLimitValue?: number | undefined;
|
|
5154
|
+
calEventsPromptStatus?: string | undefined;
|
|
5155
|
+
}>) | ({
|
|
5156
|
+
layers?: string[] | undefined;
|
|
5157
|
+
} & jamespot_user_api.WidgetType<{
|
|
5158
|
+
contactLimit?: boolean | undefined;
|
|
5159
|
+
contactLimitValue?: number | undefined;
|
|
5160
|
+
contactPromptStatus?: string | undefined;
|
|
5161
|
+
}>) | ({
|
|
5162
|
+
layers?: string[] | undefined;
|
|
5163
|
+
} & jamespot_user_api.WidgetType<{
|
|
5164
|
+
emailsLimit?: boolean | undefined;
|
|
5165
|
+
emailsLimitValue?: number | undefined;
|
|
5166
|
+
emailsPromptStatus?: string | undefined;
|
|
5167
|
+
}>)>[] | undefined;
|
|
5168
|
+
commentId?: number | undefined;
|
|
5169
|
+
commentType?: string | undefined;
|
|
5170
|
+
}>, void, {
|
|
5171
|
+
dispatch: any;
|
|
5172
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5173
|
+
widgets: {
|
|
5174
|
+
layers: Record<string, {
|
|
5175
|
+
title: string;
|
|
5176
|
+
visible: boolean;
|
|
5177
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5178
|
+
layers?: string[] | undefined;
|
|
5179
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5180
|
+
layers?: string[] | undefined;
|
|
5181
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5182
|
+
layers?: string[] | undefined;
|
|
5183
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5184
|
+
layers?: string[] | undefined;
|
|
5185
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5186
|
+
layers?: string[] | undefined;
|
|
5187
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5188
|
+
layers?: string[] | undefined;
|
|
5189
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5190
|
+
layers?: string[] | undefined;
|
|
5191
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5192
|
+
layers?: string[] | undefined;
|
|
5193
|
+
} & jamespot_user_api.WidgetType<{
|
|
5194
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5195
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5196
|
+
css?: Record<string, string> | undefined;
|
|
5197
|
+
edit?: boolean | undefined;
|
|
5198
|
+
}>) | ({
|
|
5199
|
+
layers?: string[] | undefined;
|
|
5200
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5201
|
+
layers?: string[] | undefined;
|
|
5202
|
+
} & {
|
|
5203
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5204
|
+
uniqid: string;
|
|
5205
|
+
content: {
|
|
5206
|
+
uri?: string | undefined;
|
|
5207
|
+
limit?: number | boolean | undefined;
|
|
5208
|
+
tableColumnsData?: {
|
|
5209
|
+
name?: string | undefined;
|
|
5210
|
+
label?: string | undefined;
|
|
5211
|
+
isVisible?: boolean | undefined;
|
|
5212
|
+
textEllipsis?: boolean | undefined;
|
|
5213
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5214
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5215
|
+
}[] | undefined;
|
|
5216
|
+
tableHeadColor?: string | undefined;
|
|
5217
|
+
tableHeadTextColor?: string | undefined;
|
|
5218
|
+
tableHeadIconColor?: string | undefined;
|
|
5219
|
+
tableRowColor?: string | undefined;
|
|
5220
|
+
tableRowTextColor?: string | undefined;
|
|
5221
|
+
tableBorderRadius?: number | undefined;
|
|
5222
|
+
tableSizedColumns?: boolean | undefined;
|
|
5223
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5224
|
+
};
|
|
5225
|
+
}) | ({
|
|
5226
|
+
layers?: string[] | undefined;
|
|
5227
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5228
|
+
layers?: string[] | undefined;
|
|
5229
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5230
|
+
layers?: string[] | undefined;
|
|
5231
|
+
} & jamespot_user_api.WidgetType<{
|
|
5232
|
+
calEventsLimit?: boolean | undefined;
|
|
5233
|
+
calEventsLimitValue?: number | undefined;
|
|
5234
|
+
calEventsPromptStatus?: string | undefined;
|
|
5235
|
+
}>) | ({
|
|
5236
|
+
layers?: string[] | undefined;
|
|
5237
|
+
} & jamespot_user_api.WidgetType<{
|
|
5238
|
+
contactLimit?: boolean | undefined;
|
|
5239
|
+
contactLimitValue?: number | undefined;
|
|
5240
|
+
contactPromptStatus?: string | undefined;
|
|
5241
|
+
}>) | ({
|
|
5242
|
+
layers?: string[] | undefined;
|
|
5243
|
+
} & jamespot_user_api.WidgetType<{
|
|
5244
|
+
emailsLimit?: boolean | undefined;
|
|
5245
|
+
emailsLimitValue?: number | undefined;
|
|
5246
|
+
emailsPromptStatus?: string | undefined;
|
|
5247
|
+
}>)>[];
|
|
5248
|
+
uniqid: string;
|
|
5249
|
+
locked: boolean;
|
|
5250
|
+
position?: {
|
|
5251
|
+
x: number;
|
|
5252
|
+
y: number;
|
|
5253
|
+
} | undefined;
|
|
5254
|
+
}>;
|
|
5255
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
5256
|
+
layers?: string[] | undefined;
|
|
5257
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5258
|
+
layers?: string[] | undefined;
|
|
5259
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5260
|
+
layers?: string[] | undefined;
|
|
5261
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5262
|
+
layers?: string[] | undefined;
|
|
5263
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5264
|
+
layers?: string[] | undefined;
|
|
5265
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5266
|
+
layers?: string[] | undefined;
|
|
5267
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5268
|
+
layers?: string[] | undefined;
|
|
5269
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5270
|
+
layers?: string[] | undefined;
|
|
5271
|
+
} & jamespot_user_api.WidgetType<{
|
|
5272
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5273
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5274
|
+
css?: Record<string, string> | undefined;
|
|
5275
|
+
edit?: boolean | undefined;
|
|
5276
|
+
}>) | ({
|
|
5277
|
+
layers?: string[] | undefined;
|
|
5278
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5279
|
+
layers?: string[] | undefined;
|
|
5280
|
+
} & {
|
|
5281
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5282
|
+
uniqid: string;
|
|
5283
|
+
content: {
|
|
5284
|
+
uri?: string | undefined;
|
|
5285
|
+
limit?: number | boolean | undefined;
|
|
5286
|
+
tableColumnsData?: {
|
|
5287
|
+
name?: string | undefined;
|
|
5288
|
+
label?: string | undefined;
|
|
5289
|
+
isVisible?: boolean | undefined;
|
|
5290
|
+
textEllipsis?: boolean | undefined;
|
|
5291
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5292
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5293
|
+
}[] | undefined;
|
|
5294
|
+
tableHeadColor?: string | undefined;
|
|
5295
|
+
tableHeadTextColor?: string | undefined;
|
|
5296
|
+
tableHeadIconColor?: string | undefined;
|
|
5297
|
+
tableRowColor?: string | undefined;
|
|
5298
|
+
tableRowTextColor?: string | undefined;
|
|
5299
|
+
tableBorderRadius?: number | undefined;
|
|
5300
|
+
tableSizedColumns?: boolean | undefined;
|
|
5301
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5302
|
+
};
|
|
5303
|
+
}) | ({
|
|
5304
|
+
layers?: string[] | undefined;
|
|
5305
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5306
|
+
layers?: string[] | undefined;
|
|
5307
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5308
|
+
layers?: string[] | undefined;
|
|
5309
|
+
} & jamespot_user_api.WidgetType<{
|
|
5310
|
+
calEventsLimit?: boolean | undefined;
|
|
5311
|
+
calEventsLimitValue?: number | undefined;
|
|
5312
|
+
calEventsPromptStatus?: string | undefined;
|
|
5313
|
+
}>) | ({
|
|
5314
|
+
layers?: string[] | undefined;
|
|
5315
|
+
} & jamespot_user_api.WidgetType<{
|
|
5316
|
+
contactLimit?: boolean | undefined;
|
|
5317
|
+
contactLimitValue?: number | undefined;
|
|
5318
|
+
contactPromptStatus?: string | undefined;
|
|
5319
|
+
}>) | ({
|
|
5320
|
+
layers?: string[] | undefined;
|
|
5321
|
+
} & jamespot_user_api.WidgetType<{
|
|
5322
|
+
emailsLimit?: boolean | undefined;
|
|
5323
|
+
emailsLimitValue?: number | undefined;
|
|
5324
|
+
emailsPromptStatus?: string | undefined;
|
|
5325
|
+
}>)>>;
|
|
5326
|
+
states: Record<string, {
|
|
5327
|
+
busy?: boolean | undefined;
|
|
5328
|
+
loading?: boolean | undefined;
|
|
5329
|
+
initialized?: boolean | undefined;
|
|
5330
|
+
mounted?: boolean | undefined;
|
|
5331
|
+
hover?: boolean | undefined;
|
|
5332
|
+
empty?: boolean | undefined;
|
|
5333
|
+
locked?: boolean | undefined;
|
|
5334
|
+
}>;
|
|
5335
|
+
editableMap: Record<string, {
|
|
5336
|
+
uniqid: string;
|
|
5337
|
+
index: number;
|
|
5338
|
+
}>;
|
|
5339
|
+
currentEditableIndex: number;
|
|
5340
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
5341
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
5342
|
+
widgetObject: Record<string, {
|
|
5343
|
+
type?: string | undefined;
|
|
5344
|
+
id?: number | undefined;
|
|
5345
|
+
mainType?: string | undefined;
|
|
5346
|
+
uri?: string | undefined;
|
|
5347
|
+
dateCreation?: string | undefined;
|
|
5348
|
+
dateModified?: string | null | undefined;
|
|
5349
|
+
title?: string | undefined;
|
|
5350
|
+
_url?: string | undefined;
|
|
5351
|
+
}>;
|
|
5352
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
5353
|
+
widgetChipCount: Record<string, number>;
|
|
5354
|
+
widgetAuthor: Record<string, {
|
|
5355
|
+
type?: string | undefined;
|
|
5356
|
+
id?: number | undefined;
|
|
5357
|
+
mainType?: string | undefined;
|
|
5358
|
+
uri?: string | undefined;
|
|
5359
|
+
dateCreation?: string | undefined;
|
|
5360
|
+
dateModified?: string | undefined;
|
|
5361
|
+
title?: string | undefined;
|
|
5362
|
+
_url?: string | undefined;
|
|
5363
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
5364
|
+
}>;
|
|
5365
|
+
flushedWidgets: string[];
|
|
5366
|
+
rtObjectStack: {
|
|
5367
|
+
object: jamespot_user_api.jObjectBase & {
|
|
5368
|
+
title: string;
|
|
5369
|
+
_url: string;
|
|
5370
|
+
};
|
|
5371
|
+
uniqid: string;
|
|
5372
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
5373
|
+
}[];
|
|
5374
|
+
token?: string | undefined;
|
|
5375
|
+
modal?: {
|
|
5376
|
+
title?: string | undefined;
|
|
5377
|
+
view?: any;
|
|
5378
|
+
} | undefined;
|
|
5379
|
+
currentEditableWidgetId?: string | undefined;
|
|
5380
|
+
};
|
|
5381
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
5382
|
+
extra: {
|
|
5383
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
5384
|
+
};
|
|
5385
|
+
rejectValue: {
|
|
5386
|
+
error: number;
|
|
5387
|
+
errorMsg: string;
|
|
5388
|
+
};
|
|
5389
|
+
serializedErrorType?: unknown;
|
|
5390
|
+
pendingMeta?: unknown;
|
|
5391
|
+
fulfilledMeta?: unknown;
|
|
5392
|
+
rejectedMeta?: unknown;
|
|
5393
|
+
}>;
|
|
5394
|
+
declare const updateStatus: _reduxjs_toolkit.AsyncThunk<boolean, {
|
|
5395
|
+
uri: string;
|
|
5396
|
+
status: ContentReportStatus;
|
|
5397
|
+
}, {
|
|
5398
|
+
dispatch: any;
|
|
5399
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5400
|
+
widgets: {
|
|
5401
|
+
layers: Record<string, {
|
|
5402
|
+
title: string;
|
|
5403
|
+
visible: boolean;
|
|
5404
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5405
|
+
layers?: string[] | undefined;
|
|
5406
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5407
|
+
layers?: string[] | undefined;
|
|
5408
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5409
|
+
layers?: string[] | undefined;
|
|
5410
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5411
|
+
layers?: string[] | undefined;
|
|
5412
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5413
|
+
layers?: string[] | undefined;
|
|
5414
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5415
|
+
layers?: string[] | undefined;
|
|
5416
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5417
|
+
layers?: string[] | undefined;
|
|
5418
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5419
|
+
layers?: string[] | undefined;
|
|
5420
|
+
} & jamespot_user_api.WidgetType<{
|
|
5421
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5422
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5423
|
+
css?: Record<string, string> | undefined;
|
|
5424
|
+
edit?: boolean | undefined;
|
|
5425
|
+
}>) | ({
|
|
5426
|
+
layers?: string[] | undefined;
|
|
5427
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5428
|
+
layers?: string[] | undefined;
|
|
5429
|
+
} & {
|
|
5430
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5431
|
+
uniqid: string;
|
|
5432
|
+
content: {
|
|
5433
|
+
uri?: string | undefined;
|
|
5434
|
+
limit?: number | boolean | undefined;
|
|
5435
|
+
tableColumnsData?: {
|
|
5436
|
+
name?: string | undefined;
|
|
5437
|
+
label?: string | undefined;
|
|
5438
|
+
isVisible?: boolean | undefined;
|
|
5439
|
+
textEllipsis?: boolean | undefined;
|
|
5440
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5441
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5442
|
+
}[] | undefined;
|
|
5443
|
+
tableHeadColor?: string | undefined;
|
|
5444
|
+
tableHeadTextColor?: string | undefined;
|
|
5445
|
+
tableHeadIconColor?: string | undefined;
|
|
5446
|
+
tableRowColor?: string | undefined;
|
|
5447
|
+
tableRowTextColor?: string | undefined;
|
|
5448
|
+
tableBorderRadius?: number | undefined;
|
|
5449
|
+
tableSizedColumns?: boolean | undefined;
|
|
5450
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5451
|
+
};
|
|
5452
|
+
}) | ({
|
|
5453
|
+
layers?: string[] | undefined;
|
|
5454
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5455
|
+
layers?: string[] | undefined;
|
|
5456
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5457
|
+
layers?: string[] | undefined;
|
|
5458
|
+
} & jamespot_user_api.WidgetType<{
|
|
5459
|
+
calEventsLimit?: boolean | undefined;
|
|
5460
|
+
calEventsLimitValue?: number | undefined;
|
|
5461
|
+
calEventsPromptStatus?: string | undefined;
|
|
5462
|
+
}>) | ({
|
|
5463
|
+
layers?: string[] | undefined;
|
|
5464
|
+
} & jamespot_user_api.WidgetType<{
|
|
5465
|
+
contactLimit?: boolean | undefined;
|
|
5466
|
+
contactLimitValue?: number | undefined;
|
|
5467
|
+
contactPromptStatus?: string | undefined;
|
|
5468
|
+
}>) | ({
|
|
5469
|
+
layers?: string[] | undefined;
|
|
5470
|
+
} & jamespot_user_api.WidgetType<{
|
|
5471
|
+
emailsLimit?: boolean | undefined;
|
|
5472
|
+
emailsLimitValue?: number | undefined;
|
|
5473
|
+
emailsPromptStatus?: string | undefined;
|
|
5474
|
+
}>)>[];
|
|
5475
|
+
uniqid: string;
|
|
5476
|
+
locked: boolean;
|
|
5477
|
+
position?: {
|
|
5478
|
+
x: number;
|
|
5479
|
+
y: number;
|
|
5480
|
+
} | undefined;
|
|
5481
|
+
}>;
|
|
5482
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
5483
|
+
layers?: string[] | undefined;
|
|
5484
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5485
|
+
layers?: string[] | undefined;
|
|
5486
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5487
|
+
layers?: string[] | undefined;
|
|
5488
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5489
|
+
layers?: string[] | undefined;
|
|
5490
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5491
|
+
layers?: string[] | undefined;
|
|
5492
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5493
|
+
layers?: string[] | undefined;
|
|
5494
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5495
|
+
layers?: string[] | undefined;
|
|
5496
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5497
|
+
layers?: string[] | undefined;
|
|
5498
|
+
} & jamespot_user_api.WidgetType<{
|
|
5499
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5500
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5501
|
+
css?: Record<string, string> | undefined;
|
|
5502
|
+
edit?: boolean | undefined;
|
|
5503
|
+
}>) | ({
|
|
5504
|
+
layers?: string[] | undefined;
|
|
5505
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5506
|
+
layers?: string[] | undefined;
|
|
5507
|
+
} & {
|
|
5508
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5509
|
+
uniqid: string;
|
|
5510
|
+
content: {
|
|
5511
|
+
uri?: string | undefined;
|
|
5512
|
+
limit?: number | boolean | undefined;
|
|
5513
|
+
tableColumnsData?: {
|
|
5514
|
+
name?: string | undefined;
|
|
5515
|
+
label?: string | undefined;
|
|
5516
|
+
isVisible?: boolean | undefined;
|
|
5517
|
+
textEllipsis?: boolean | undefined;
|
|
5518
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5519
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5520
|
+
}[] | undefined;
|
|
5521
|
+
tableHeadColor?: string | undefined;
|
|
5522
|
+
tableHeadTextColor?: string | undefined;
|
|
5523
|
+
tableHeadIconColor?: string | undefined;
|
|
5524
|
+
tableRowColor?: string | undefined;
|
|
5525
|
+
tableRowTextColor?: string | undefined;
|
|
5526
|
+
tableBorderRadius?: number | undefined;
|
|
5527
|
+
tableSizedColumns?: boolean | undefined;
|
|
5528
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5529
|
+
};
|
|
5530
|
+
}) | ({
|
|
5531
|
+
layers?: string[] | undefined;
|
|
5532
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5533
|
+
layers?: string[] | undefined;
|
|
5534
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5535
|
+
layers?: string[] | undefined;
|
|
5536
|
+
} & jamespot_user_api.WidgetType<{
|
|
5537
|
+
calEventsLimit?: boolean | undefined;
|
|
5538
|
+
calEventsLimitValue?: number | undefined;
|
|
5539
|
+
calEventsPromptStatus?: string | undefined;
|
|
5540
|
+
}>) | ({
|
|
5541
|
+
layers?: string[] | undefined;
|
|
5542
|
+
} & jamespot_user_api.WidgetType<{
|
|
5543
|
+
contactLimit?: boolean | undefined;
|
|
5544
|
+
contactLimitValue?: number | undefined;
|
|
5545
|
+
contactPromptStatus?: string | undefined;
|
|
5546
|
+
}>) | ({
|
|
5547
|
+
layers?: string[] | undefined;
|
|
5548
|
+
} & jamespot_user_api.WidgetType<{
|
|
5549
|
+
emailsLimit?: boolean | undefined;
|
|
5550
|
+
emailsLimitValue?: number | undefined;
|
|
5551
|
+
emailsPromptStatus?: string | undefined;
|
|
5552
|
+
}>)>>;
|
|
5553
|
+
states: Record<string, {
|
|
5554
|
+
busy?: boolean | undefined;
|
|
5555
|
+
loading?: boolean | undefined;
|
|
5556
|
+
initialized?: boolean | undefined;
|
|
5557
|
+
mounted?: boolean | undefined;
|
|
5558
|
+
hover?: boolean | undefined;
|
|
5559
|
+
empty?: boolean | undefined;
|
|
5560
|
+
locked?: boolean | undefined;
|
|
5561
|
+
}>;
|
|
5562
|
+
editableMap: Record<string, {
|
|
5563
|
+
uniqid: string;
|
|
5564
|
+
index: number;
|
|
5565
|
+
}>;
|
|
5566
|
+
currentEditableIndex: number;
|
|
5567
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
5568
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
5569
|
+
widgetObject: Record<string, {
|
|
5570
|
+
type?: string | undefined;
|
|
5571
|
+
id?: number | undefined;
|
|
5572
|
+
mainType?: string | undefined;
|
|
5573
|
+
uri?: string | undefined;
|
|
5574
|
+
dateCreation?: string | undefined;
|
|
5575
|
+
dateModified?: string | null | undefined;
|
|
5576
|
+
title?: string | undefined;
|
|
5577
|
+
_url?: string | undefined;
|
|
5578
|
+
}>;
|
|
5579
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
5580
|
+
widgetChipCount: Record<string, number>;
|
|
5581
|
+
widgetAuthor: Record<string, {
|
|
5582
|
+
type?: string | undefined;
|
|
5583
|
+
id?: number | undefined;
|
|
5584
|
+
mainType?: string | undefined;
|
|
5585
|
+
uri?: string | undefined;
|
|
5586
|
+
dateCreation?: string | undefined;
|
|
5587
|
+
dateModified?: string | undefined;
|
|
5588
|
+
title?: string | undefined;
|
|
5589
|
+
_url?: string | undefined;
|
|
5590
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
5591
|
+
}>;
|
|
5592
|
+
flushedWidgets: string[];
|
|
5593
|
+
rtObjectStack: {
|
|
5594
|
+
object: jamespot_user_api.jObjectBase & {
|
|
5595
|
+
title: string;
|
|
5596
|
+
_url: string;
|
|
5597
|
+
};
|
|
5598
|
+
uniqid: string;
|
|
5599
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
5600
|
+
}[];
|
|
5601
|
+
token?: string | undefined;
|
|
5602
|
+
modal?: {
|
|
5603
|
+
title?: string | undefined;
|
|
5604
|
+
view?: any;
|
|
5605
|
+
} | undefined;
|
|
5606
|
+
currentEditableWidgetId?: string | undefined;
|
|
5607
|
+
};
|
|
5608
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
5609
|
+
extra: {
|
|
5610
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
5611
|
+
};
|
|
5612
|
+
rejectValue: {
|
|
5613
|
+
error: number;
|
|
5614
|
+
errorMsg: string;
|
|
5615
|
+
};
|
|
5616
|
+
serializedErrorType?: unknown;
|
|
5617
|
+
pendingMeta?: unknown;
|
|
5618
|
+
fulfilledMeta?: unknown;
|
|
5619
|
+
rejectedMeta?: unknown;
|
|
5620
|
+
}>;
|
|
5621
|
+
declare const ContentReport: {
|
|
5622
|
+
slice: _reduxjs_toolkit.Slice<ContentReportSliceRootState, {
|
|
5623
|
+
setTab: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['tab']>) => void;
|
|
5624
|
+
setPage: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['page']>) => void;
|
|
5625
|
+
setFilters: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['filters']>) => void;
|
|
5626
|
+
setOrders: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['orders']>) => void;
|
|
5627
|
+
}, "contentReport">;
|
|
5628
|
+
actions: {
|
|
5629
|
+
fetchReports: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
5630
|
+
type: string;
|
|
5631
|
+
status: ContentReportStatus;
|
|
5632
|
+
id: number;
|
|
5633
|
+
mainType: string;
|
|
5634
|
+
uri: string;
|
|
5635
|
+
dateCreation: string;
|
|
5636
|
+
dateModified: string;
|
|
5637
|
+
title: string;
|
|
5638
|
+
_url: string;
|
|
5639
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
5640
|
+
title: string;
|
|
5641
|
+
_url: string;
|
|
5642
|
+
} & {
|
|
5643
|
+
[key: string]: string | number | null;
|
|
5644
|
+
level: 0 | 9 | 3 | 5;
|
|
5645
|
+
dateCreation: string;
|
|
5646
|
+
dateModified: string;
|
|
5647
|
+
};
|
|
5648
|
+
_right: jamespot_user_api.Rights;
|
|
5649
|
+
_audience: (jamespot_user_api.jUserLittle | {
|
|
5650
|
+
type: string;
|
|
5651
|
+
id: number;
|
|
5652
|
+
mainType: string;
|
|
5653
|
+
uri: string;
|
|
5654
|
+
dateCreation: string;
|
|
5655
|
+
dateModified: string;
|
|
5656
|
+
title: string;
|
|
5657
|
+
_url: string;
|
|
5658
|
+
privacy: jamespot_user_api.GroupPrivacy;
|
|
5659
|
+
category: number;
|
|
5660
|
+
} | {
|
|
5661
|
+
type: "folder" | "rootFolder";
|
|
5662
|
+
id: number;
|
|
5663
|
+
mainType: string;
|
|
5664
|
+
uri: string;
|
|
5665
|
+
title: string;
|
|
5666
|
+
_url: string;
|
|
5667
|
+
dateCreation?: string | undefined;
|
|
5668
|
+
dateModified?: string | null | undefined;
|
|
5669
|
+
folderColor?: string | undefined;
|
|
5670
|
+
})[];
|
|
5671
|
+
articleId: number;
|
|
5672
|
+
articleType: string;
|
|
5673
|
+
articleTitle: string;
|
|
5674
|
+
articleUrl: string;
|
|
5675
|
+
description?: string | null | undefined;
|
|
5676
|
+
image?: {
|
|
5677
|
+
width: number;
|
|
5678
|
+
height: number;
|
|
5679
|
+
} | undefined;
|
|
5680
|
+
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5681
|
+
layers?: string[] | undefined;
|
|
5682
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5683
|
+
layers?: string[] | undefined;
|
|
5684
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5685
|
+
layers?: string[] | undefined;
|
|
5686
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5687
|
+
layers?: string[] | undefined;
|
|
5688
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5689
|
+
layers?: string[] | undefined;
|
|
5690
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5691
|
+
layers?: string[] | undefined;
|
|
5692
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5693
|
+
layers?: string[] | undefined;
|
|
5694
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5695
|
+
layers?: string[] | undefined;
|
|
5696
|
+
} & jamespot_user_api.WidgetType<{
|
|
5697
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5698
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5699
|
+
css?: Record<string, string> | undefined;
|
|
5700
|
+
edit?: boolean | undefined;
|
|
5701
|
+
}>) | ({
|
|
5702
|
+
layers?: string[] | undefined;
|
|
5703
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5704
|
+
layers?: string[] | undefined;
|
|
5705
|
+
} & {
|
|
5706
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5707
|
+
uniqid: string;
|
|
5708
|
+
content: {
|
|
5709
|
+
uri?: string | undefined;
|
|
5710
|
+
limit?: number | boolean | undefined;
|
|
5711
|
+
tableColumnsData?: {
|
|
5712
|
+
name?: string | undefined;
|
|
5713
|
+
label?: string | undefined;
|
|
5714
|
+
isVisible?: boolean | undefined;
|
|
5715
|
+
textEllipsis?: boolean | undefined;
|
|
5716
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5717
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5718
|
+
}[] | undefined;
|
|
5719
|
+
tableHeadColor?: string | undefined;
|
|
5720
|
+
tableHeadTextColor?: string | undefined;
|
|
5721
|
+
tableHeadIconColor?: string | undefined;
|
|
5722
|
+
tableRowColor?: string | undefined;
|
|
5723
|
+
tableRowTextColor?: string | undefined;
|
|
5724
|
+
tableBorderRadius?: number | undefined;
|
|
5725
|
+
tableSizedColumns?: boolean | undefined;
|
|
5726
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5727
|
+
};
|
|
5728
|
+
}) | ({
|
|
5729
|
+
layers?: string[] | undefined;
|
|
5730
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5731
|
+
layers?: string[] | undefined;
|
|
5732
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5733
|
+
layers?: string[] | undefined;
|
|
5734
|
+
} & jamespot_user_api.WidgetType<{
|
|
5735
|
+
calEventsLimit?: boolean | undefined;
|
|
5736
|
+
calEventsLimitValue?: number | undefined;
|
|
5737
|
+
calEventsPromptStatus?: string | undefined;
|
|
5738
|
+
}>) | ({
|
|
5739
|
+
layers?: string[] | undefined;
|
|
5740
|
+
} & jamespot_user_api.WidgetType<{
|
|
5741
|
+
contactLimit?: boolean | undefined;
|
|
5742
|
+
contactLimitValue?: number | undefined;
|
|
5743
|
+
contactPromptStatus?: string | undefined;
|
|
5744
|
+
}>) | ({
|
|
5745
|
+
layers?: string[] | undefined;
|
|
5746
|
+
} & jamespot_user_api.WidgetType<{
|
|
5747
|
+
emailsLimit?: boolean | undefined;
|
|
5748
|
+
emailsLimitValue?: number | undefined;
|
|
5749
|
+
emailsPromptStatus?: string | undefined;
|
|
5750
|
+
}>)>[] | undefined;
|
|
5751
|
+
commentId?: number | undefined;
|
|
5752
|
+
commentType?: string | undefined;
|
|
5753
|
+
}>, void, {
|
|
5754
|
+
dispatch: any;
|
|
5755
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5756
|
+
widgets: {
|
|
5757
|
+
layers: Record<string, {
|
|
5758
|
+
title: string;
|
|
5759
|
+
visible: boolean;
|
|
5760
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5761
|
+
layers?: string[] | undefined;
|
|
5762
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5763
|
+
layers?: string[] | undefined;
|
|
5764
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5765
|
+
layers?: string[] | undefined;
|
|
5766
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5767
|
+
layers?: string[] | undefined;
|
|
5768
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5769
|
+
layers?: string[] | undefined;
|
|
5770
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5771
|
+
layers?: string[] | undefined;
|
|
5772
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5773
|
+
layers?: string[] | undefined;
|
|
5774
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5775
|
+
layers?: string[] | undefined;
|
|
5776
|
+
} & jamespot_user_api.WidgetType<{
|
|
5777
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5778
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5779
|
+
css?: Record<string, string> | undefined;
|
|
5780
|
+
edit?: boolean | undefined;
|
|
5781
|
+
}>) | ({
|
|
5782
|
+
layers?: string[] | undefined;
|
|
5783
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5784
|
+
layers?: string[] | undefined;
|
|
5785
|
+
} & {
|
|
5786
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5787
|
+
uniqid: string;
|
|
5788
|
+
content: {
|
|
5789
|
+
uri?: string | undefined;
|
|
5790
|
+
limit?: number | boolean | undefined;
|
|
5791
|
+
tableColumnsData?: {
|
|
5792
|
+
name?: string | undefined;
|
|
5793
|
+
label?: string | undefined;
|
|
5794
|
+
isVisible?: boolean | undefined;
|
|
5795
|
+
textEllipsis?: boolean | undefined;
|
|
5796
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5797
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5798
|
+
}[] | undefined;
|
|
5799
|
+
tableHeadColor?: string | undefined;
|
|
5800
|
+
tableHeadTextColor?: string | undefined;
|
|
5801
|
+
tableHeadIconColor?: string | undefined;
|
|
5802
|
+
tableRowColor?: string | undefined;
|
|
5803
|
+
tableRowTextColor?: string | undefined;
|
|
5804
|
+
tableBorderRadius?: number | undefined;
|
|
5805
|
+
tableSizedColumns?: boolean | undefined;
|
|
5806
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5807
|
+
};
|
|
5808
|
+
}) | ({
|
|
5809
|
+
layers?: string[] | undefined;
|
|
5810
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5811
|
+
layers?: string[] | undefined;
|
|
5812
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5813
|
+
layers?: string[] | undefined;
|
|
5814
|
+
} & jamespot_user_api.WidgetType<{
|
|
5815
|
+
calEventsLimit?: boolean | undefined;
|
|
5816
|
+
calEventsLimitValue?: number | undefined;
|
|
5817
|
+
calEventsPromptStatus?: string | undefined;
|
|
5818
|
+
}>) | ({
|
|
5819
|
+
layers?: string[] | undefined;
|
|
5820
|
+
} & jamespot_user_api.WidgetType<{
|
|
5821
|
+
contactLimit?: boolean | undefined;
|
|
5822
|
+
contactLimitValue?: number | undefined;
|
|
5823
|
+
contactPromptStatus?: string | undefined;
|
|
5824
|
+
}>) | ({
|
|
5825
|
+
layers?: string[] | undefined;
|
|
5826
|
+
} & jamespot_user_api.WidgetType<{
|
|
5827
|
+
emailsLimit?: boolean | undefined;
|
|
5828
|
+
emailsLimitValue?: number | undefined;
|
|
5829
|
+
emailsPromptStatus?: string | undefined;
|
|
5830
|
+
}>)>[];
|
|
5831
|
+
uniqid: string;
|
|
5832
|
+
locked: boolean;
|
|
5833
|
+
position?: {
|
|
5834
|
+
x: number;
|
|
5835
|
+
y: number;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
}>;
|
|
5838
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
5839
|
+
layers?: string[] | undefined;
|
|
5840
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5841
|
+
layers?: string[] | undefined;
|
|
5842
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5843
|
+
layers?: string[] | undefined;
|
|
5844
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5845
|
+
layers?: string[] | undefined;
|
|
5846
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5847
|
+
layers?: string[] | undefined;
|
|
5848
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5849
|
+
layers?: string[] | undefined;
|
|
5850
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5851
|
+
layers?: string[] | undefined;
|
|
5852
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5853
|
+
layers?: string[] | undefined;
|
|
5854
|
+
} & jamespot_user_api.WidgetType<{
|
|
5855
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5856
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5857
|
+
css?: Record<string, string> | undefined;
|
|
5858
|
+
edit?: boolean | undefined;
|
|
5859
|
+
}>) | ({
|
|
5860
|
+
layers?: string[] | undefined;
|
|
5861
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5862
|
+
layers?: string[] | undefined;
|
|
5863
|
+
} & {
|
|
5864
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5865
|
+
uniqid: string;
|
|
5866
|
+
content: {
|
|
5867
|
+
uri?: string | undefined;
|
|
5868
|
+
limit?: number | boolean | undefined;
|
|
5869
|
+
tableColumnsData?: {
|
|
5870
|
+
name?: string | undefined;
|
|
5871
|
+
label?: string | undefined;
|
|
5872
|
+
isVisible?: boolean | undefined;
|
|
5873
|
+
textEllipsis?: boolean | undefined;
|
|
5874
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5875
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5876
|
+
}[] | undefined;
|
|
5877
|
+
tableHeadColor?: string | undefined;
|
|
5878
|
+
tableHeadTextColor?: string | undefined;
|
|
5879
|
+
tableHeadIconColor?: string | undefined;
|
|
5880
|
+
tableRowColor?: string | undefined;
|
|
5881
|
+
tableRowTextColor?: string | undefined;
|
|
5882
|
+
tableBorderRadius?: number | undefined;
|
|
5883
|
+
tableSizedColumns?: boolean | undefined;
|
|
5884
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5885
|
+
};
|
|
5886
|
+
}) | ({
|
|
5887
|
+
layers?: string[] | undefined;
|
|
5888
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5889
|
+
layers?: string[] | undefined;
|
|
5890
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5891
|
+
layers?: string[] | undefined;
|
|
5892
|
+
} & jamespot_user_api.WidgetType<{
|
|
5893
|
+
calEventsLimit?: boolean | undefined;
|
|
5894
|
+
calEventsLimitValue?: number | undefined;
|
|
5895
|
+
calEventsPromptStatus?: string | undefined;
|
|
5896
|
+
}>) | ({
|
|
5897
|
+
layers?: string[] | undefined;
|
|
5898
|
+
} & jamespot_user_api.WidgetType<{
|
|
5899
|
+
contactLimit?: boolean | undefined;
|
|
5900
|
+
contactLimitValue?: number | undefined;
|
|
5901
|
+
contactPromptStatus?: string | undefined;
|
|
5902
|
+
}>) | ({
|
|
5903
|
+
layers?: string[] | undefined;
|
|
5904
|
+
} & jamespot_user_api.WidgetType<{
|
|
5905
|
+
emailsLimit?: boolean | undefined;
|
|
5906
|
+
emailsLimitValue?: number | undefined;
|
|
5907
|
+
emailsPromptStatus?: string | undefined;
|
|
5908
|
+
}>)>>;
|
|
5909
|
+
states: Record<string, {
|
|
5910
|
+
busy?: boolean | undefined;
|
|
5911
|
+
loading?: boolean | undefined;
|
|
5912
|
+
initialized?: boolean | undefined;
|
|
5913
|
+
mounted?: boolean | undefined;
|
|
5914
|
+
hover?: boolean | undefined;
|
|
5915
|
+
empty?: boolean | undefined;
|
|
5916
|
+
locked?: boolean | undefined;
|
|
5917
|
+
}>;
|
|
5918
|
+
editableMap: Record<string, {
|
|
5919
|
+
uniqid: string;
|
|
5920
|
+
index: number;
|
|
5921
|
+
}>;
|
|
5922
|
+
currentEditableIndex: number;
|
|
5923
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
5924
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
5925
|
+
widgetObject: Record<string, {
|
|
5926
|
+
type?: string | undefined;
|
|
5927
|
+
id?: number | undefined;
|
|
5928
|
+
mainType?: string | undefined;
|
|
5929
|
+
uri?: string | undefined;
|
|
5930
|
+
dateCreation?: string | undefined;
|
|
5931
|
+
dateModified?: string | null | undefined;
|
|
5932
|
+
title?: string | undefined;
|
|
5933
|
+
_url?: string | undefined;
|
|
5934
|
+
}>;
|
|
5935
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
5936
|
+
widgetChipCount: Record<string, number>;
|
|
5937
|
+
widgetAuthor: Record<string, {
|
|
5938
|
+
type?: string | undefined;
|
|
5939
|
+
id?: number | undefined;
|
|
5940
|
+
mainType?: string | undefined;
|
|
5941
|
+
uri?: string | undefined;
|
|
5942
|
+
dateCreation?: string | undefined;
|
|
5943
|
+
dateModified?: string | undefined;
|
|
5944
|
+
title?: string | undefined;
|
|
5945
|
+
_url?: string | undefined;
|
|
5946
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
5947
|
+
}>;
|
|
5948
|
+
flushedWidgets: string[];
|
|
5949
|
+
rtObjectStack: {
|
|
5950
|
+
object: jamespot_user_api.jObjectBase & {
|
|
5951
|
+
title: string;
|
|
5952
|
+
_url: string;
|
|
5953
|
+
};
|
|
5954
|
+
uniqid: string;
|
|
5955
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
5956
|
+
}[];
|
|
5957
|
+
token?: string | undefined;
|
|
5958
|
+
modal?: {
|
|
5959
|
+
title?: string | undefined;
|
|
5960
|
+
view?: any;
|
|
5961
|
+
} | undefined;
|
|
5962
|
+
currentEditableWidgetId?: string | undefined;
|
|
5963
|
+
};
|
|
5964
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
5965
|
+
extra: {
|
|
5966
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
5967
|
+
};
|
|
5968
|
+
rejectValue: {
|
|
5969
|
+
error: number;
|
|
5970
|
+
errorMsg: string;
|
|
5971
|
+
};
|
|
5972
|
+
serializedErrorType?: unknown;
|
|
5973
|
+
pendingMeta?: unknown;
|
|
5974
|
+
fulfilledMeta?: unknown;
|
|
5975
|
+
rejectedMeta?: unknown;
|
|
5976
|
+
}>;
|
|
5977
|
+
updateStatus: _reduxjs_toolkit.AsyncThunk<boolean, {
|
|
5978
|
+
uri: string;
|
|
5979
|
+
status: ContentReportStatus;
|
|
5980
|
+
}, {
|
|
5981
|
+
dispatch: any;
|
|
5982
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5983
|
+
widgets: {
|
|
5984
|
+
layers: Record<string, {
|
|
5985
|
+
title: string;
|
|
5986
|
+
visible: boolean;
|
|
5987
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5988
|
+
layers?: string[] | undefined;
|
|
5989
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5990
|
+
layers?: string[] | undefined;
|
|
5991
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5992
|
+
layers?: string[] | undefined;
|
|
5993
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5994
|
+
layers?: string[] | undefined;
|
|
5995
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5996
|
+
layers?: string[] | undefined;
|
|
5997
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5998
|
+
layers?: string[] | undefined;
|
|
5999
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6000
|
+
layers?: string[] | undefined;
|
|
6001
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6002
|
+
layers?: string[] | undefined;
|
|
6003
|
+
} & jamespot_user_api.WidgetType<{
|
|
6004
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6005
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6006
|
+
css?: Record<string, string> | undefined;
|
|
6007
|
+
edit?: boolean | undefined;
|
|
6008
|
+
}>) | ({
|
|
6009
|
+
layers?: string[] | undefined;
|
|
6010
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6011
|
+
layers?: string[] | undefined;
|
|
6012
|
+
} & {
|
|
6013
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6014
|
+
uniqid: string;
|
|
6015
|
+
content: {
|
|
6016
|
+
uri?: string | undefined;
|
|
6017
|
+
limit?: number | boolean | undefined;
|
|
6018
|
+
tableColumnsData?: {
|
|
6019
|
+
name?: string | undefined;
|
|
6020
|
+
label?: string | undefined;
|
|
6021
|
+
isVisible?: boolean | undefined;
|
|
6022
|
+
textEllipsis?: boolean | undefined;
|
|
6023
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6024
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6025
|
+
}[] | undefined;
|
|
6026
|
+
tableHeadColor?: string | undefined;
|
|
6027
|
+
tableHeadTextColor?: string | undefined;
|
|
6028
|
+
tableHeadIconColor?: string | undefined;
|
|
6029
|
+
tableRowColor?: string | undefined;
|
|
6030
|
+
tableRowTextColor?: string | undefined;
|
|
6031
|
+
tableBorderRadius?: number | undefined;
|
|
6032
|
+
tableSizedColumns?: boolean | undefined;
|
|
6033
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6034
|
+
};
|
|
6035
|
+
}) | ({
|
|
6036
|
+
layers?: string[] | undefined;
|
|
6037
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6038
|
+
layers?: string[] | undefined;
|
|
6039
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6040
|
+
layers?: string[] | undefined;
|
|
6041
|
+
} & jamespot_user_api.WidgetType<{
|
|
6042
|
+
calEventsLimit?: boolean | undefined;
|
|
6043
|
+
calEventsLimitValue?: number | undefined;
|
|
6044
|
+
calEventsPromptStatus?: string | undefined;
|
|
6045
|
+
}>) | ({
|
|
6046
|
+
layers?: string[] | undefined;
|
|
6047
|
+
} & jamespot_user_api.WidgetType<{
|
|
6048
|
+
contactLimit?: boolean | undefined;
|
|
6049
|
+
contactLimitValue?: number | undefined;
|
|
6050
|
+
contactPromptStatus?: string | undefined;
|
|
6051
|
+
}>) | ({
|
|
6052
|
+
layers?: string[] | undefined;
|
|
6053
|
+
} & jamespot_user_api.WidgetType<{
|
|
6054
|
+
emailsLimit?: boolean | undefined;
|
|
6055
|
+
emailsLimitValue?: number | undefined;
|
|
6056
|
+
emailsPromptStatus?: string | undefined;
|
|
6057
|
+
}>)>[];
|
|
6058
|
+
uniqid: string;
|
|
6059
|
+
locked: boolean;
|
|
6060
|
+
position?: {
|
|
6061
|
+
x: number;
|
|
6062
|
+
y: number;
|
|
6063
|
+
} | undefined;
|
|
6064
|
+
}>;
|
|
6065
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
6066
|
+
layers?: string[] | undefined;
|
|
6067
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
6068
|
+
layers?: string[] | undefined;
|
|
6069
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
6070
|
+
layers?: string[] | undefined;
|
|
6071
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
6072
|
+
layers?: string[] | undefined;
|
|
6073
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
6074
|
+
layers?: string[] | undefined;
|
|
6075
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
6076
|
+
layers?: string[] | undefined;
|
|
6077
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6078
|
+
layers?: string[] | undefined;
|
|
6079
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6080
|
+
layers?: string[] | undefined;
|
|
6081
|
+
} & jamespot_user_api.WidgetType<{
|
|
6082
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6083
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6084
|
+
css?: Record<string, string> | undefined;
|
|
6085
|
+
edit?: boolean | undefined;
|
|
6086
|
+
}>) | ({
|
|
6087
|
+
layers?: string[] | undefined;
|
|
6088
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6089
|
+
layers?: string[] | undefined;
|
|
6090
|
+
} & {
|
|
6091
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6092
|
+
uniqid: string;
|
|
6093
|
+
content: {
|
|
6094
|
+
uri?: string | undefined;
|
|
6095
|
+
limit?: number | boolean | undefined;
|
|
6096
|
+
tableColumnsData?: {
|
|
6097
|
+
name?: string | undefined;
|
|
6098
|
+
label?: string | undefined;
|
|
6099
|
+
isVisible?: boolean | undefined;
|
|
6100
|
+
textEllipsis?: boolean | undefined;
|
|
6101
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6102
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6103
|
+
}[] | undefined;
|
|
6104
|
+
tableHeadColor?: string | undefined;
|
|
6105
|
+
tableHeadTextColor?: string | undefined;
|
|
6106
|
+
tableHeadIconColor?: string | undefined;
|
|
6107
|
+
tableRowColor?: string | undefined;
|
|
6108
|
+
tableRowTextColor?: string | undefined;
|
|
6109
|
+
tableBorderRadius?: number | undefined;
|
|
6110
|
+
tableSizedColumns?: boolean | undefined;
|
|
6111
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6112
|
+
};
|
|
6113
|
+
}) | ({
|
|
6114
|
+
layers?: string[] | undefined;
|
|
6115
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6116
|
+
layers?: string[] | undefined;
|
|
6117
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6118
|
+
layers?: string[] | undefined;
|
|
6119
|
+
} & jamespot_user_api.WidgetType<{
|
|
6120
|
+
calEventsLimit?: boolean | undefined;
|
|
6121
|
+
calEventsLimitValue?: number | undefined;
|
|
6122
|
+
calEventsPromptStatus?: string | undefined;
|
|
6123
|
+
}>) | ({
|
|
6124
|
+
layers?: string[] | undefined;
|
|
6125
|
+
} & jamespot_user_api.WidgetType<{
|
|
6126
|
+
contactLimit?: boolean | undefined;
|
|
6127
|
+
contactLimitValue?: number | undefined;
|
|
6128
|
+
contactPromptStatus?: string | undefined;
|
|
6129
|
+
}>) | ({
|
|
6130
|
+
layers?: string[] | undefined;
|
|
6131
|
+
} & jamespot_user_api.WidgetType<{
|
|
6132
|
+
emailsLimit?: boolean | undefined;
|
|
6133
|
+
emailsLimitValue?: number | undefined;
|
|
6134
|
+
emailsPromptStatus?: string | undefined;
|
|
6135
|
+
}>)>>;
|
|
6136
|
+
states: Record<string, {
|
|
6137
|
+
busy?: boolean | undefined;
|
|
6138
|
+
loading?: boolean | undefined;
|
|
6139
|
+
initialized?: boolean | undefined;
|
|
6140
|
+
mounted?: boolean | undefined;
|
|
6141
|
+
hover?: boolean | undefined;
|
|
6142
|
+
empty?: boolean | undefined;
|
|
6143
|
+
locked?: boolean | undefined;
|
|
6144
|
+
}>;
|
|
6145
|
+
editableMap: Record<string, {
|
|
6146
|
+
uniqid: string;
|
|
6147
|
+
index: number;
|
|
6148
|
+
}>;
|
|
6149
|
+
currentEditableIndex: number;
|
|
6150
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
6151
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
6152
|
+
widgetObject: Record<string, {
|
|
6153
|
+
type?: string | undefined;
|
|
6154
|
+
id?: number | undefined;
|
|
6155
|
+
mainType?: string | undefined;
|
|
6156
|
+
uri?: string | undefined;
|
|
6157
|
+
dateCreation?: string | undefined;
|
|
6158
|
+
dateModified?: string | null | undefined;
|
|
6159
|
+
title?: string | undefined;
|
|
6160
|
+
_url?: string | undefined;
|
|
6161
|
+
}>;
|
|
6162
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
6163
|
+
widgetChipCount: Record<string, number>;
|
|
6164
|
+
widgetAuthor: Record<string, {
|
|
6165
|
+
type?: string | undefined;
|
|
6166
|
+
id?: number | undefined;
|
|
6167
|
+
mainType?: string | undefined;
|
|
6168
|
+
uri?: string | undefined;
|
|
6169
|
+
dateCreation?: string | undefined;
|
|
6170
|
+
dateModified?: string | undefined;
|
|
6171
|
+
title?: string | undefined;
|
|
6172
|
+
_url?: string | undefined;
|
|
6173
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
6174
|
+
}>;
|
|
6175
|
+
flushedWidgets: string[];
|
|
6176
|
+
rtObjectStack: {
|
|
6177
|
+
object: jamespot_user_api.jObjectBase & {
|
|
6178
|
+
title: string;
|
|
6179
|
+
_url: string;
|
|
6180
|
+
};
|
|
6181
|
+
uniqid: string;
|
|
6182
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
6183
|
+
}[];
|
|
6184
|
+
token?: string | undefined;
|
|
6185
|
+
modal?: {
|
|
6186
|
+
title?: string | undefined;
|
|
6187
|
+
view?: any;
|
|
6188
|
+
} | undefined;
|
|
6189
|
+
currentEditableWidgetId?: string | undefined;
|
|
6190
|
+
};
|
|
6191
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
6192
|
+
extra: {
|
|
6193
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
6194
|
+
};
|
|
6195
|
+
rejectValue: {
|
|
6196
|
+
error: number;
|
|
6197
|
+
errorMsg: string;
|
|
6198
|
+
};
|
|
6199
|
+
serializedErrorType?: unknown;
|
|
6200
|
+
pendingMeta?: unknown;
|
|
6201
|
+
fulfilledMeta?: unknown;
|
|
6202
|
+
rejectedMeta?: unknown;
|
|
6203
|
+
}>;
|
|
6204
|
+
};
|
|
6205
|
+
selectors: {
|
|
6206
|
+
selectContentReport: (state: ContentReportRootState) => ContentReportSliceRootState;
|
|
6207
|
+
};
|
|
6208
|
+
};
|
|
6209
|
+
|
|
6210
|
+
type BookmarkRootState = {
|
|
6211
|
+
bookmark: bookmarkListRootState & bookmarkEditRootState;
|
|
6212
|
+
};
|
|
6213
|
+
type bookmarkListState = Loading & {
|
|
6214
|
+
bookmarks: BookmarkRawList[];
|
|
6215
|
+
nbResults: number;
|
|
6216
|
+
status: 'success' | 'error' | undefined;
|
|
6217
|
+
isInitialized: boolean;
|
|
4782
6218
|
add: Record<string, Loading & {
|
|
4783
6219
|
status: 'success' | 'error' | undefined;
|
|
4784
6220
|
id?: number;
|
|
@@ -4823,6 +6259,7 @@ declare const Bookmark: {
|
|
|
4823
6259
|
srcType: string;
|
|
4824
6260
|
targetId: number;
|
|
4825
6261
|
targetType: string | null;
|
|
6262
|
+
url?: string | null | undefined;
|
|
4826
6263
|
dateCreation?: string | undefined;
|
|
4827
6264
|
dateModified?: string | null | undefined;
|
|
4828
6265
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -4831,7 +6268,6 @@ declare const Bookmark: {
|
|
|
4831
6268
|
bookmarkOrder?: number | undefined;
|
|
4832
6269
|
bookmarkLabel?: string | undefined;
|
|
4833
6270
|
bookmarkMeta?: string | null | undefined;
|
|
4834
|
-
url?: string | null | undefined;
|
|
4835
6271
|
}, "bookmarkList/addBookmarkRT">;
|
|
4836
6272
|
deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4837
6273
|
id: number;
|
|
@@ -4843,6 +6279,7 @@ declare const Bookmark: {
|
|
|
4843
6279
|
srcType: string;
|
|
4844
6280
|
targetId: number;
|
|
4845
6281
|
targetType: string | null;
|
|
6282
|
+
url?: string | null | undefined;
|
|
4846
6283
|
dateCreation?: string | undefined;
|
|
4847
6284
|
dateModified?: string | null | undefined;
|
|
4848
6285
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -4851,7 +6288,6 @@ declare const Bookmark: {
|
|
|
4851
6288
|
bookmarkOrder?: number | undefined;
|
|
4852
6289
|
bookmarkLabel?: string | undefined;
|
|
4853
6290
|
bookmarkMeta?: string | null | undefined;
|
|
4854
|
-
url?: string | null | undefined;
|
|
4855
6291
|
}, "bookmarkList/deleteBookmarkRT">;
|
|
4856
6292
|
updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4857
6293
|
id: number;
|
|
@@ -4863,6 +6299,7 @@ declare const Bookmark: {
|
|
|
4863
6299
|
srcType: string;
|
|
4864
6300
|
targetId: number;
|
|
4865
6301
|
targetType: string | null;
|
|
6302
|
+
url?: string | null | undefined;
|
|
4866
6303
|
dateCreation?: string | undefined;
|
|
4867
6304
|
dateModified?: string | null | undefined;
|
|
4868
6305
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -4871,7 +6308,6 @@ declare const Bookmark: {
|
|
|
4871
6308
|
bookmarkOrder?: number | undefined;
|
|
4872
6309
|
bookmarkLabel?: string | undefined;
|
|
4873
6310
|
bookmarkMeta?: string | null | undefined;
|
|
4874
|
-
url?: string | null | undefined;
|
|
4875
6311
|
}, "bookmarkList/updateBookmarkRT">;
|
|
4876
6312
|
setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4877
6313
|
id: number;
|
|
@@ -4883,6 +6319,7 @@ declare const Bookmark: {
|
|
|
4883
6319
|
srcType: string;
|
|
4884
6320
|
targetId: number;
|
|
4885
6321
|
targetType: string | null;
|
|
6322
|
+
url?: string | null | undefined;
|
|
4886
6323
|
dateCreation?: string | undefined;
|
|
4887
6324
|
dateModified?: string | null | undefined;
|
|
4888
6325
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -4891,7 +6328,6 @@ declare const Bookmark: {
|
|
|
4891
6328
|
bookmarkOrder?: number | undefined;
|
|
4892
6329
|
bookmarkLabel?: string | undefined;
|
|
4893
6330
|
bookmarkMeta?: string | null | undefined;
|
|
4894
|
-
url?: string | null | undefined;
|
|
4895
6331
|
}, "bookmarkEdit/setEditBookmark">;
|
|
4896
6332
|
unsetEditBookmark: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/unsetEditBookmark">;
|
|
4897
6333
|
resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
|
|
@@ -4905,6 +6341,7 @@ declare const Bookmark: {
|
|
|
4905
6341
|
srcType: string;
|
|
4906
6342
|
targetId: number;
|
|
4907
6343
|
targetType: string | null;
|
|
6344
|
+
url?: string | null | undefined;
|
|
4908
6345
|
dateCreation?: string | undefined;
|
|
4909
6346
|
dateModified?: string | null | undefined;
|
|
4910
6347
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -4913,7 +6350,6 @@ declare const Bookmark: {
|
|
|
4913
6350
|
bookmarkOrder?: number | undefined;
|
|
4914
6351
|
bookmarkLabel?: string | undefined;
|
|
4915
6352
|
bookmarkMeta?: string | null | undefined;
|
|
4916
|
-
url?: string | null | undefined;
|
|
4917
6353
|
}, jamespot_user_api.BaseMessages>, void, {
|
|
4918
6354
|
dispatch: any;
|
|
4919
6355
|
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
@@ -5148,6 +6584,7 @@ declare const Bookmark: {
|
|
|
5148
6584
|
srcType: string;
|
|
5149
6585
|
targetId: number;
|
|
5150
6586
|
targetType: string | null;
|
|
6587
|
+
url?: string | null | undefined;
|
|
5151
6588
|
dateCreation?: string | undefined;
|
|
5152
6589
|
dateModified?: string | null | undefined;
|
|
5153
6590
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5156,7 +6593,6 @@ declare const Bookmark: {
|
|
|
5156
6593
|
bookmarkOrder?: number | undefined;
|
|
5157
6594
|
bookmarkLabel?: string | undefined;
|
|
5158
6595
|
bookmarkMeta?: string | null | undefined;
|
|
5159
|
-
url?: string | null | undefined;
|
|
5160
6596
|
} | {
|
|
5161
6597
|
id: number;
|
|
5162
6598
|
mainType: string;
|
|
@@ -5169,13 +6605,13 @@ declare const Bookmark: {
|
|
|
5169
6605
|
targetType: string | null;
|
|
5170
6606
|
_cssColor: string;
|
|
5171
6607
|
_cssClass: string;
|
|
6608
|
+
url?: string | null | undefined;
|
|
5172
6609
|
_src?: jamespot_user_api.jObjectLittle | undefined;
|
|
5173
6610
|
_target?: jamespot_user_api.jObjectLittle | undefined;
|
|
5174
6611
|
bookmarkUrl?: string | null | undefined;
|
|
5175
6612
|
bookmarkOrder?: string | undefined;
|
|
5176
6613
|
bookmarkLabel?: string | undefined;
|
|
5177
6614
|
bookmarkMeta?: string | null | undefined;
|
|
5178
|
-
url?: string | null | undefined;
|
|
5179
6615
|
_values?: {
|
|
5180
6616
|
dateCreation: string;
|
|
5181
6617
|
dateModified: string;
|
|
@@ -5190,6 +6626,7 @@ declare const Bookmark: {
|
|
|
5190
6626
|
srcType: string;
|
|
5191
6627
|
targetId: number;
|
|
5192
6628
|
targetType: string | null;
|
|
6629
|
+
url?: string | null | undefined;
|
|
5193
6630
|
dateCreation?: string | undefined;
|
|
5194
6631
|
dateModified?: string | null | undefined;
|
|
5195
6632
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5198,7 +6635,6 @@ declare const Bookmark: {
|
|
|
5198
6635
|
bookmarkOrder?: number | undefined;
|
|
5199
6636
|
bookmarkLabel?: string | undefined;
|
|
5200
6637
|
bookmarkMeta?: string | null | undefined;
|
|
5201
|
-
url?: string | null | undefined;
|
|
5202
6638
|
}, jamespot_user_api.BaseMessages>, ({
|
|
5203
6639
|
bookmarkUrl?: string | null | undefined;
|
|
5204
6640
|
bookmarkLabel?: string | undefined;
|
|
@@ -5444,6 +6880,7 @@ declare const Bookmark: {
|
|
|
5444
6880
|
srcType: string;
|
|
5445
6881
|
targetId: number;
|
|
5446
6882
|
targetType: string | null;
|
|
6883
|
+
url?: string | null | undefined;
|
|
5447
6884
|
dateCreation?: string | undefined;
|
|
5448
6885
|
dateModified?: string | null | undefined;
|
|
5449
6886
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5452,7 +6889,6 @@ declare const Bookmark: {
|
|
|
5452
6889
|
bookmarkOrder?: number | undefined;
|
|
5453
6890
|
bookmarkLabel?: string | undefined;
|
|
5454
6891
|
bookmarkMeta?: string | null | undefined;
|
|
5455
|
-
url?: string | null | undefined;
|
|
5456
6892
|
}, "id">;
|
|
5457
6893
|
bookmarkReference: Pick<{
|
|
5458
6894
|
id: number;
|
|
@@ -5464,6 +6900,7 @@ declare const Bookmark: {
|
|
|
5464
6900
|
srcType: string;
|
|
5465
6901
|
targetId: number;
|
|
5466
6902
|
targetType: string | null;
|
|
6903
|
+
url?: string | null | undefined;
|
|
5467
6904
|
dateCreation?: string | undefined;
|
|
5468
6905
|
dateModified?: string | null | undefined;
|
|
5469
6906
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5472,7 +6909,6 @@ declare const Bookmark: {
|
|
|
5472
6909
|
bookmarkOrder?: number | undefined;
|
|
5473
6910
|
bookmarkLabel?: string | undefined;
|
|
5474
6911
|
bookmarkMeta?: string | null | undefined;
|
|
5475
|
-
url?: string | null | undefined;
|
|
5476
6912
|
}, "id">;
|
|
5477
6913
|
position: "after" | "before";
|
|
5478
6914
|
}, {
|
|
@@ -5709,6 +7145,7 @@ declare const Bookmark: {
|
|
|
5709
7145
|
srcType: string;
|
|
5710
7146
|
targetId: number;
|
|
5711
7147
|
targetType: string | null;
|
|
7148
|
+
url?: string | null | undefined;
|
|
5712
7149
|
dateCreation?: string | undefined;
|
|
5713
7150
|
dateModified?: string | null | undefined;
|
|
5714
7151
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5717,7 +7154,6 @@ declare const Bookmark: {
|
|
|
5717
7154
|
bookmarkOrder?: number | undefined;
|
|
5718
7155
|
bookmarkLabel?: string | undefined;
|
|
5719
7156
|
bookmarkMeta?: string | null | undefined;
|
|
5720
|
-
url?: string | null | undefined;
|
|
5721
7157
|
}, "id"> & {
|
|
5722
7158
|
requestId?: string | undefined;
|
|
5723
7159
|
}, {
|
|
@@ -5954,6 +7390,7 @@ declare const Bookmark: {
|
|
|
5954
7390
|
srcType: string;
|
|
5955
7391
|
targetId: number;
|
|
5956
7392
|
targetType: string | null;
|
|
7393
|
+
url?: string | null | undefined;
|
|
5957
7394
|
dateCreation?: string | undefined;
|
|
5958
7395
|
dateModified?: string | null | undefined;
|
|
5959
7396
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -5962,7 +7399,6 @@ declare const Bookmark: {
|
|
|
5962
7399
|
bookmarkOrder?: number | undefined;
|
|
5963
7400
|
bookmarkLabel?: string | undefined;
|
|
5964
7401
|
bookmarkMeta?: string | null | undefined;
|
|
5965
|
-
url?: string | null | undefined;
|
|
5966
7402
|
}>, {
|
|
5967
7403
|
dispatch: any;
|
|
5968
7404
|
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
@@ -6201,6 +7637,7 @@ declare const Bookmark: {
|
|
|
6201
7637
|
srcType: string;
|
|
6202
7638
|
targetId: number;
|
|
6203
7639
|
targetType: string | null;
|
|
7640
|
+
url?: string | null | undefined;
|
|
6204
7641
|
dateCreation?: string | undefined;
|
|
6205
7642
|
dateModified?: string | null | undefined;
|
|
6206
7643
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -6209,7 +7646,6 @@ declare const Bookmark: {
|
|
|
6209
7646
|
bookmarkOrder?: number | undefined;
|
|
6210
7647
|
bookmarkLabel?: string | undefined;
|
|
6211
7648
|
bookmarkMeta?: string | null | undefined;
|
|
6212
|
-
url?: string | null | undefined;
|
|
6213
7649
|
} | undefined;
|
|
6214
7650
|
bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
|
|
6215
7651
|
id: number;
|
|
@@ -6221,6 +7657,7 @@ declare const Bookmark: {
|
|
|
6221
7657
|
srcType: string;
|
|
6222
7658
|
targetId: number;
|
|
6223
7659
|
targetType: string | null;
|
|
7660
|
+
url?: string | null | undefined;
|
|
6224
7661
|
dateCreation?: string | undefined;
|
|
6225
7662
|
dateModified?: string | null | undefined;
|
|
6226
7663
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -6229,7 +7666,6 @@ declare const Bookmark: {
|
|
|
6229
7666
|
bookmarkOrder?: number | undefined;
|
|
6230
7667
|
bookmarkLabel?: string | undefined;
|
|
6231
7668
|
bookmarkMeta?: string | null | undefined;
|
|
6232
|
-
url?: string | null | undefined;
|
|
6233
7669
|
} | undefined;
|
|
6234
7670
|
};
|
|
6235
7671
|
getRTHandlers: (dispatch: RTDispatch) => ({
|
|
@@ -13641,7 +15077,7 @@ declare const TVDisplay: {
|
|
|
13641
15077
|
tvChannelNumImages: 0;
|
|
13642
15078
|
tvChannelConfig: {
|
|
13643
15079
|
key: string;
|
|
13644
|
-
backgroundType?: "
|
|
15080
|
+
backgroundType?: "color" | "image" | undefined;
|
|
13645
15081
|
globalShowComment?: boolean | undefined;
|
|
13646
15082
|
scaleImg?: boolean | undefined;
|
|
13647
15083
|
contents?: {
|
|
@@ -13795,7 +15231,7 @@ declare const TVDisplay: {
|
|
|
13795
15231
|
tvChannelNumImages: number;
|
|
13796
15232
|
tvChannelConfig: {
|
|
13797
15233
|
key: string;
|
|
13798
|
-
backgroundType?: "
|
|
15234
|
+
backgroundType?: "color" | "image" | undefined;
|
|
13799
15235
|
globalShowComment?: boolean | undefined;
|
|
13800
15236
|
scaleImg?: boolean | undefined;
|
|
13801
15237
|
contents?: {
|
|
@@ -13955,7 +15391,7 @@ declare const TVDisplay: {
|
|
|
13955
15391
|
tvChannelNumImages: 0;
|
|
13956
15392
|
tvChannelConfig: {
|
|
13957
15393
|
key: string;
|
|
13958
|
-
backgroundType?: "
|
|
15394
|
+
backgroundType?: "color" | "image" | undefined;
|
|
13959
15395
|
globalShowComment?: boolean | undefined;
|
|
13960
15396
|
scaleImg?: boolean | undefined;
|
|
13961
15397
|
contents?: {
|
|
@@ -14109,7 +15545,7 @@ declare const TVDisplay: {
|
|
|
14109
15545
|
tvChannelNumImages: number;
|
|
14110
15546
|
tvChannelConfig: {
|
|
14111
15547
|
key: string;
|
|
14112
|
-
backgroundType?: "
|
|
15548
|
+
backgroundType?: "color" | "image" | undefined;
|
|
14113
15549
|
globalShowComment?: boolean | undefined;
|
|
14114
15550
|
scaleImg?: boolean | undefined;
|
|
14115
15551
|
contents?: {
|
|
@@ -14485,7 +15921,7 @@ declare const TVDisplay: {
|
|
|
14485
15921
|
tvChannelNumImages: 0;
|
|
14486
15922
|
tvChannelConfig: {
|
|
14487
15923
|
key: string;
|
|
14488
|
-
backgroundType?: "
|
|
15924
|
+
backgroundType?: "color" | "image" | undefined;
|
|
14489
15925
|
globalShowComment?: boolean | undefined;
|
|
14490
15926
|
scaleImg?: boolean | undefined;
|
|
14491
15927
|
contents?: {
|
|
@@ -14639,7 +16075,7 @@ declare const TVDisplay: {
|
|
|
14639
16075
|
tvChannelNumImages: number;
|
|
14640
16076
|
tvChannelConfig: {
|
|
14641
16077
|
key: string;
|
|
14642
|
-
backgroundType?: "
|
|
16078
|
+
backgroundType?: "color" | "image" | undefined;
|
|
14643
16079
|
globalShowComment?: boolean | undefined;
|
|
14644
16080
|
scaleImg?: boolean | undefined;
|
|
14645
16081
|
contents?: {
|
|
@@ -16154,127 +17590,64 @@ type RootState$1 = {
|
|
|
16154
17590
|
declare const SocialActions: {
|
|
16155
17591
|
slice: _reduxjs_toolkit.Slice<EntityState<{
|
|
16156
17592
|
type: string;
|
|
16157
|
-
|
|
17593
|
+
targetId: number;
|
|
17594
|
+
targetType: string;
|
|
16158
17595
|
label: string;
|
|
16159
|
-
|
|
16160
|
-
total: number;
|
|
16161
|
-
};
|
|
16162
|
-
cssClass: string;
|
|
16163
|
-
cssColor: string;
|
|
17596
|
+
icon: string;
|
|
16164
17597
|
isActive: boolean;
|
|
16165
|
-
|
|
16166
|
-
type: string;
|
|
16167
|
-
targetId: number;
|
|
16168
|
-
targetType: string;
|
|
16169
|
-
action: string;
|
|
16170
|
-
do: string;
|
|
16171
|
-
};
|
|
17598
|
+
count?: number | undefined;
|
|
16172
17599
|
}>, {
|
|
16173
17600
|
addOne: {
|
|
16174
17601
|
<S extends EntityState<{
|
|
16175
17602
|
type: string;
|
|
16176
|
-
|
|
17603
|
+
targetId: number;
|
|
17604
|
+
targetType: string;
|
|
16177
17605
|
label: string;
|
|
16178
|
-
|
|
16179
|
-
total: number;
|
|
16180
|
-
};
|
|
16181
|
-
cssClass: string;
|
|
16182
|
-
cssColor: string;
|
|
17606
|
+
icon: string;
|
|
16183
17607
|
isActive: boolean;
|
|
16184
|
-
|
|
16185
|
-
type: string;
|
|
16186
|
-
targetId: number;
|
|
16187
|
-
targetType: string;
|
|
16188
|
-
action: string;
|
|
16189
|
-
do: string;
|
|
16190
|
-
};
|
|
17608
|
+
count?: number | undefined;
|
|
16191
17609
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<{
|
|
16192
17610
|
type: string;
|
|
16193
|
-
|
|
17611
|
+
targetId: number;
|
|
17612
|
+
targetType: string;
|
|
16194
17613
|
label: string;
|
|
16195
|
-
|
|
16196
|
-
total: number;
|
|
16197
|
-
};
|
|
16198
|
-
cssClass: string;
|
|
16199
|
-
cssColor: string;
|
|
17614
|
+
icon: string;
|
|
16200
17615
|
isActive: boolean;
|
|
16201
|
-
|
|
16202
|
-
type: string;
|
|
16203
|
-
targetId: number;
|
|
16204
|
-
targetType: string;
|
|
16205
|
-
action: string;
|
|
16206
|
-
do: string;
|
|
16207
|
-
};
|
|
17616
|
+
count?: number | undefined;
|
|
16208
17617
|
}>, S>, entity: {
|
|
16209
17618
|
type: string;
|
|
16210
|
-
|
|
17619
|
+
targetId: number;
|
|
17620
|
+
targetType: string;
|
|
16211
17621
|
label: string;
|
|
16212
|
-
|
|
16213
|
-
total: number;
|
|
16214
|
-
};
|
|
16215
|
-
cssClass: string;
|
|
16216
|
-
cssColor: string;
|
|
17622
|
+
icon: string;
|
|
16217
17623
|
isActive: boolean;
|
|
16218
|
-
|
|
16219
|
-
type: string;
|
|
16220
|
-
targetId: number;
|
|
16221
|
-
targetType: string;
|
|
16222
|
-
action: string;
|
|
16223
|
-
do: string;
|
|
16224
|
-
};
|
|
17624
|
+
count?: number | undefined;
|
|
16225
17625
|
}): S;
|
|
16226
17626
|
<S_1 extends EntityState<{
|
|
16227
17627
|
type: string;
|
|
16228
|
-
|
|
17628
|
+
targetId: number;
|
|
17629
|
+
targetType: string;
|
|
16229
17630
|
label: string;
|
|
16230
|
-
|
|
16231
|
-
total: number;
|
|
16232
|
-
};
|
|
16233
|
-
cssClass: string;
|
|
16234
|
-
cssColor: string;
|
|
17631
|
+
icon: string;
|
|
16235
17632
|
isActive: boolean;
|
|
16236
|
-
|
|
16237
|
-
type: string;
|
|
16238
|
-
targetId: number;
|
|
16239
|
-
targetType: string;
|
|
16240
|
-
action: string;
|
|
16241
|
-
do: string;
|
|
16242
|
-
};
|
|
17633
|
+
count?: number | undefined;
|
|
16243
17634
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<{
|
|
16244
17635
|
type: string;
|
|
16245
|
-
|
|
17636
|
+
targetId: number;
|
|
17637
|
+
targetType: string;
|
|
16246
17638
|
label: string;
|
|
16247
|
-
|
|
16248
|
-
total: number;
|
|
16249
|
-
};
|
|
16250
|
-
cssClass: string;
|
|
16251
|
-
cssColor: string;
|
|
17639
|
+
icon: string;
|
|
16252
17640
|
isActive: boolean;
|
|
16253
|
-
|
|
16254
|
-
type: string;
|
|
16255
|
-
targetId: number;
|
|
16256
|
-
targetType: string;
|
|
16257
|
-
action: string;
|
|
16258
|
-
do: string;
|
|
16259
|
-
};
|
|
17641
|
+
count?: number | undefined;
|
|
16260
17642
|
}>, S_1>, action: {
|
|
16261
17643
|
payload: {
|
|
16262
17644
|
type: string;
|
|
16263
|
-
|
|
17645
|
+
targetId: number;
|
|
17646
|
+
targetType: string;
|
|
16264
17647
|
label: string;
|
|
16265
|
-
|
|
16266
|
-
total: number;
|
|
16267
|
-
};
|
|
16268
|
-
cssClass: string;
|
|
16269
|
-
cssColor: string;
|
|
17648
|
+
icon: string;
|
|
16270
17649
|
isActive: boolean;
|
|
16271
|
-
|
|
16272
|
-
type: string;
|
|
16273
|
-
targetId: number;
|
|
16274
|
-
targetType: string;
|
|
16275
|
-
action: string;
|
|
16276
|
-
do: string;
|
|
16277
|
-
};
|
|
17650
|
+
count?: number | undefined;
|
|
16278
17651
|
};
|
|
16279
17652
|
type: string;
|
|
16280
17653
|
}): S_1;
|
|
@@ -16282,142 +17655,70 @@ declare const SocialActions: {
|
|
|
16282
17655
|
addMany: {
|
|
16283
17656
|
<S_2 extends EntityState<{
|
|
16284
17657
|
type: string;
|
|
16285
|
-
|
|
17658
|
+
targetId: number;
|
|
17659
|
+
targetType: string;
|
|
16286
17660
|
label: string;
|
|
16287
|
-
|
|
16288
|
-
total: number;
|
|
16289
|
-
};
|
|
16290
|
-
cssClass: string;
|
|
16291
|
-
cssColor: string;
|
|
17661
|
+
icon: string;
|
|
16292
17662
|
isActive: boolean;
|
|
16293
|
-
|
|
16294
|
-
type: string;
|
|
16295
|
-
targetId: number;
|
|
16296
|
-
targetType: string;
|
|
16297
|
-
action: string;
|
|
16298
|
-
do: string;
|
|
16299
|
-
};
|
|
17663
|
+
count?: number | undefined;
|
|
16300
17664
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<{
|
|
16301
17665
|
type: string;
|
|
16302
|
-
|
|
17666
|
+
targetId: number;
|
|
17667
|
+
targetType: string;
|
|
16303
17668
|
label: string;
|
|
16304
|
-
|
|
16305
|
-
total: number;
|
|
16306
|
-
};
|
|
16307
|
-
cssClass: string;
|
|
16308
|
-
cssColor: string;
|
|
17669
|
+
icon: string;
|
|
16309
17670
|
isActive: boolean;
|
|
16310
|
-
|
|
16311
|
-
type: string;
|
|
16312
|
-
targetId: number;
|
|
16313
|
-
targetType: string;
|
|
16314
|
-
action: string;
|
|
16315
|
-
do: string;
|
|
16316
|
-
};
|
|
17671
|
+
count?: number | undefined;
|
|
16317
17672
|
}>, S_2>, entities: readonly {
|
|
16318
17673
|
type: string;
|
|
16319
|
-
|
|
17674
|
+
targetId: number;
|
|
17675
|
+
targetType: string;
|
|
16320
17676
|
label: string;
|
|
16321
|
-
|
|
16322
|
-
total: number;
|
|
16323
|
-
};
|
|
16324
|
-
cssClass: string;
|
|
16325
|
-
cssColor: string;
|
|
17677
|
+
icon: string;
|
|
16326
17678
|
isActive: boolean;
|
|
16327
|
-
|
|
16328
|
-
type: string;
|
|
16329
|
-
targetId: number;
|
|
16330
|
-
targetType: string;
|
|
16331
|
-
action: string;
|
|
16332
|
-
do: string;
|
|
16333
|
-
};
|
|
17679
|
+
count?: number | undefined;
|
|
16334
17680
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16335
17681
|
type: string;
|
|
16336
|
-
|
|
17682
|
+
targetId: number;
|
|
17683
|
+
targetType: string;
|
|
16337
17684
|
label: string;
|
|
16338
|
-
|
|
16339
|
-
total: number;
|
|
16340
|
-
};
|
|
16341
|
-
cssClass: string;
|
|
16342
|
-
cssColor: string;
|
|
17685
|
+
icon: string;
|
|
16343
17686
|
isActive: boolean;
|
|
16344
|
-
|
|
16345
|
-
type: string;
|
|
16346
|
-
targetId: number;
|
|
16347
|
-
targetType: string;
|
|
16348
|
-
action: string;
|
|
16349
|
-
do: string;
|
|
16350
|
-
};
|
|
17687
|
+
count?: number | undefined;
|
|
16351
17688
|
}>): S_2;
|
|
16352
17689
|
<S_3 extends EntityState<{
|
|
16353
17690
|
type: string;
|
|
16354
|
-
|
|
17691
|
+
targetId: number;
|
|
17692
|
+
targetType: string;
|
|
16355
17693
|
label: string;
|
|
16356
|
-
|
|
16357
|
-
total: number;
|
|
16358
|
-
};
|
|
16359
|
-
cssClass: string;
|
|
16360
|
-
cssColor: string;
|
|
17694
|
+
icon: string;
|
|
16361
17695
|
isActive: boolean;
|
|
16362
|
-
|
|
16363
|
-
type: string;
|
|
16364
|
-
targetId: number;
|
|
16365
|
-
targetType: string;
|
|
16366
|
-
action: string;
|
|
16367
|
-
do: string;
|
|
16368
|
-
};
|
|
17696
|
+
count?: number | undefined;
|
|
16369
17697
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<{
|
|
16370
17698
|
type: string;
|
|
16371
|
-
|
|
17699
|
+
targetId: number;
|
|
17700
|
+
targetType: string;
|
|
16372
17701
|
label: string;
|
|
16373
|
-
|
|
16374
|
-
total: number;
|
|
16375
|
-
};
|
|
16376
|
-
cssClass: string;
|
|
16377
|
-
cssColor: string;
|
|
17702
|
+
icon: string;
|
|
16378
17703
|
isActive: boolean;
|
|
16379
|
-
|
|
16380
|
-
type: string;
|
|
16381
|
-
targetId: number;
|
|
16382
|
-
targetType: string;
|
|
16383
|
-
action: string;
|
|
16384
|
-
do: string;
|
|
16385
|
-
};
|
|
17704
|
+
count?: number | undefined;
|
|
16386
17705
|
}>, S_3>, entities: {
|
|
16387
17706
|
payload: readonly {
|
|
16388
17707
|
type: string;
|
|
16389
|
-
|
|
17708
|
+
targetId: number;
|
|
17709
|
+
targetType: string;
|
|
16390
17710
|
label: string;
|
|
16391
|
-
|
|
16392
|
-
total: number;
|
|
16393
|
-
};
|
|
16394
|
-
cssClass: string;
|
|
16395
|
-
cssColor: string;
|
|
17711
|
+
icon: string;
|
|
16396
17712
|
isActive: boolean;
|
|
16397
|
-
|
|
16398
|
-
type: string;
|
|
16399
|
-
targetId: number;
|
|
16400
|
-
targetType: string;
|
|
16401
|
-
action: string;
|
|
16402
|
-
do: string;
|
|
16403
|
-
};
|
|
17713
|
+
count?: number | undefined;
|
|
16404
17714
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16405
17715
|
type: string;
|
|
16406
|
-
|
|
17716
|
+
targetId: number;
|
|
17717
|
+
targetType: string;
|
|
16407
17718
|
label: string;
|
|
16408
|
-
|
|
16409
|
-
total: number;
|
|
16410
|
-
};
|
|
16411
|
-
cssClass: string;
|
|
16412
|
-
cssColor: string;
|
|
17719
|
+
icon: string;
|
|
16413
17720
|
isActive: boolean;
|
|
16414
|
-
|
|
16415
|
-
type: string;
|
|
16416
|
-
targetId: number;
|
|
16417
|
-
targetType: string;
|
|
16418
|
-
action: string;
|
|
16419
|
-
do: string;
|
|
16420
|
-
};
|
|
17721
|
+
count?: number | undefined;
|
|
16421
17722
|
}>;
|
|
16422
17723
|
type: string;
|
|
16423
17724
|
}): S_3;
|
|
@@ -16425,286 +17726,142 @@ declare const SocialActions: {
|
|
|
16425
17726
|
setAll: {
|
|
16426
17727
|
<S_4 extends EntityState<{
|
|
16427
17728
|
type: string;
|
|
16428
|
-
|
|
17729
|
+
targetId: number;
|
|
17730
|
+
targetType: string;
|
|
16429
17731
|
label: string;
|
|
16430
|
-
|
|
16431
|
-
total: number;
|
|
16432
|
-
};
|
|
16433
|
-
cssClass: string;
|
|
16434
|
-
cssColor: string;
|
|
17732
|
+
icon: string;
|
|
16435
17733
|
isActive: boolean;
|
|
16436
|
-
|
|
16437
|
-
type: string;
|
|
16438
|
-
targetId: number;
|
|
16439
|
-
targetType: string;
|
|
16440
|
-
action: string;
|
|
16441
|
-
do: string;
|
|
16442
|
-
};
|
|
17734
|
+
count?: number | undefined;
|
|
16443
17735
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_4, EntityState<{
|
|
16444
17736
|
type: string;
|
|
16445
|
-
|
|
17737
|
+
targetId: number;
|
|
17738
|
+
targetType: string;
|
|
16446
17739
|
label: string;
|
|
16447
|
-
|
|
16448
|
-
total: number;
|
|
16449
|
-
};
|
|
16450
|
-
cssClass: string;
|
|
16451
|
-
cssColor: string;
|
|
17740
|
+
icon: string;
|
|
16452
17741
|
isActive: boolean;
|
|
16453
|
-
|
|
16454
|
-
type: string;
|
|
16455
|
-
targetId: number;
|
|
16456
|
-
targetType: string;
|
|
16457
|
-
action: string;
|
|
16458
|
-
do: string;
|
|
16459
|
-
};
|
|
17742
|
+
count?: number | undefined;
|
|
16460
17743
|
}>, S_4>, entities: readonly {
|
|
16461
17744
|
type: string;
|
|
16462
|
-
|
|
17745
|
+
targetId: number;
|
|
17746
|
+
targetType: string;
|
|
16463
17747
|
label: string;
|
|
16464
|
-
|
|
16465
|
-
total: number;
|
|
16466
|
-
};
|
|
16467
|
-
cssClass: string;
|
|
16468
|
-
cssColor: string;
|
|
17748
|
+
icon: string;
|
|
16469
17749
|
isActive: boolean;
|
|
16470
|
-
|
|
16471
|
-
type: string;
|
|
16472
|
-
targetId: number;
|
|
16473
|
-
targetType: string;
|
|
16474
|
-
action: string;
|
|
16475
|
-
do: string;
|
|
16476
|
-
};
|
|
17750
|
+
count?: number | undefined;
|
|
16477
17751
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16478
17752
|
type: string;
|
|
16479
|
-
|
|
17753
|
+
targetId: number;
|
|
17754
|
+
targetType: string;
|
|
16480
17755
|
label: string;
|
|
16481
|
-
|
|
16482
|
-
total: number;
|
|
16483
|
-
};
|
|
16484
|
-
cssClass: string;
|
|
16485
|
-
cssColor: string;
|
|
17756
|
+
icon: string;
|
|
16486
17757
|
isActive: boolean;
|
|
16487
|
-
|
|
16488
|
-
type: string;
|
|
16489
|
-
targetId: number;
|
|
16490
|
-
targetType: string;
|
|
16491
|
-
action: string;
|
|
16492
|
-
do: string;
|
|
16493
|
-
};
|
|
17758
|
+
count?: number | undefined;
|
|
16494
17759
|
}>): S_4;
|
|
16495
17760
|
<S_5 extends EntityState<{
|
|
16496
17761
|
type: string;
|
|
16497
|
-
|
|
17762
|
+
targetId: number;
|
|
17763
|
+
targetType: string;
|
|
16498
17764
|
label: string;
|
|
16499
|
-
|
|
16500
|
-
total: number;
|
|
16501
|
-
};
|
|
16502
|
-
cssClass: string;
|
|
16503
|
-
cssColor: string;
|
|
17765
|
+
icon: string;
|
|
16504
17766
|
isActive: boolean;
|
|
16505
|
-
|
|
16506
|
-
type: string;
|
|
16507
|
-
targetId: number;
|
|
16508
|
-
targetType: string;
|
|
16509
|
-
action: string;
|
|
16510
|
-
do: string;
|
|
16511
|
-
};
|
|
17767
|
+
count?: number | undefined;
|
|
16512
17768
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_5, EntityState<{
|
|
16513
17769
|
type: string;
|
|
16514
|
-
|
|
17770
|
+
targetId: number;
|
|
17771
|
+
targetType: string;
|
|
16515
17772
|
label: string;
|
|
16516
|
-
|
|
16517
|
-
total: number;
|
|
16518
|
-
};
|
|
16519
|
-
cssClass: string;
|
|
16520
|
-
cssColor: string;
|
|
17773
|
+
icon: string;
|
|
16521
17774
|
isActive: boolean;
|
|
16522
|
-
|
|
16523
|
-
type: string;
|
|
16524
|
-
targetId: number;
|
|
16525
|
-
targetType: string;
|
|
16526
|
-
action: string;
|
|
16527
|
-
do: string;
|
|
16528
|
-
};
|
|
17775
|
+
count?: number | undefined;
|
|
16529
17776
|
}>, S_5>, entities: {
|
|
16530
17777
|
payload: readonly {
|
|
16531
17778
|
type: string;
|
|
16532
|
-
|
|
17779
|
+
targetId: number;
|
|
17780
|
+
targetType: string;
|
|
16533
17781
|
label: string;
|
|
16534
|
-
|
|
16535
|
-
total: number;
|
|
16536
|
-
};
|
|
16537
|
-
cssClass: string;
|
|
16538
|
-
cssColor: string;
|
|
17782
|
+
icon: string;
|
|
16539
17783
|
isActive: boolean;
|
|
16540
|
-
|
|
16541
|
-
type: string;
|
|
16542
|
-
targetId: number;
|
|
16543
|
-
targetType: string;
|
|
16544
|
-
action: string;
|
|
16545
|
-
do: string;
|
|
16546
|
-
};
|
|
17784
|
+
count?: number | undefined;
|
|
16547
17785
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16548
17786
|
type: string;
|
|
16549
|
-
|
|
17787
|
+
targetId: number;
|
|
17788
|
+
targetType: string;
|
|
16550
17789
|
label: string;
|
|
16551
|
-
|
|
16552
|
-
total: number;
|
|
16553
|
-
};
|
|
16554
|
-
cssClass: string;
|
|
16555
|
-
cssColor: string;
|
|
17790
|
+
icon: string;
|
|
16556
17791
|
isActive: boolean;
|
|
16557
|
-
|
|
16558
|
-
type: string;
|
|
16559
|
-
targetId: number;
|
|
16560
|
-
targetType: string;
|
|
16561
|
-
action: string;
|
|
16562
|
-
do: string;
|
|
16563
|
-
};
|
|
17792
|
+
count?: number | undefined;
|
|
16564
17793
|
}>;
|
|
16565
17794
|
type: string;
|
|
16566
17795
|
}): S_5;
|
|
16567
17796
|
};
|
|
16568
17797
|
clear: <S_6 extends EntityState<{
|
|
16569
17798
|
type: string;
|
|
16570
|
-
|
|
17799
|
+
targetId: number;
|
|
17800
|
+
targetType: string;
|
|
16571
17801
|
label: string;
|
|
16572
|
-
|
|
16573
|
-
total: number;
|
|
16574
|
-
};
|
|
16575
|
-
cssClass: string;
|
|
16576
|
-
cssColor: string;
|
|
17802
|
+
icon: string;
|
|
16577
17803
|
isActive: boolean;
|
|
16578
|
-
|
|
16579
|
-
type: string;
|
|
16580
|
-
targetId: number;
|
|
16581
|
-
targetType: string;
|
|
16582
|
-
action: string;
|
|
16583
|
-
do: string;
|
|
16584
|
-
};
|
|
17804
|
+
count?: number | undefined;
|
|
16585
17805
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_6, EntityState<{
|
|
16586
17806
|
type: string;
|
|
16587
|
-
|
|
17807
|
+
targetId: number;
|
|
17808
|
+
targetType: string;
|
|
16588
17809
|
label: string;
|
|
16589
|
-
|
|
16590
|
-
total: number;
|
|
16591
|
-
};
|
|
16592
|
-
cssClass: string;
|
|
16593
|
-
cssColor: string;
|
|
17810
|
+
icon: string;
|
|
16594
17811
|
isActive: boolean;
|
|
16595
|
-
|
|
16596
|
-
type: string;
|
|
16597
|
-
targetId: number;
|
|
16598
|
-
targetType: string;
|
|
16599
|
-
action: string;
|
|
16600
|
-
do: string;
|
|
16601
|
-
};
|
|
17812
|
+
count?: number | undefined;
|
|
16602
17813
|
}>, S_6>) => S_6;
|
|
16603
17814
|
updateOne: {
|
|
16604
17815
|
<S_7 extends EntityState<{
|
|
16605
17816
|
type: string;
|
|
16606
|
-
|
|
17817
|
+
targetId: number;
|
|
17818
|
+
targetType: string;
|
|
16607
17819
|
label: string;
|
|
16608
|
-
|
|
16609
|
-
total: number;
|
|
16610
|
-
};
|
|
16611
|
-
cssClass: string;
|
|
16612
|
-
cssColor: string;
|
|
17820
|
+
icon: string;
|
|
16613
17821
|
isActive: boolean;
|
|
16614
|
-
|
|
16615
|
-
type: string;
|
|
16616
|
-
targetId: number;
|
|
16617
|
-
targetType: string;
|
|
16618
|
-
action: string;
|
|
16619
|
-
do: string;
|
|
16620
|
-
};
|
|
17822
|
+
count?: number | undefined;
|
|
16621
17823
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_7, EntityState<{
|
|
16622
17824
|
type: string;
|
|
16623
|
-
|
|
17825
|
+
targetId: number;
|
|
17826
|
+
targetType: string;
|
|
16624
17827
|
label: string;
|
|
16625
|
-
|
|
16626
|
-
total: number;
|
|
16627
|
-
};
|
|
16628
|
-
cssClass: string;
|
|
16629
|
-
cssColor: string;
|
|
17828
|
+
icon: string;
|
|
16630
17829
|
isActive: boolean;
|
|
16631
|
-
|
|
16632
|
-
type: string;
|
|
16633
|
-
targetId: number;
|
|
16634
|
-
targetType: string;
|
|
16635
|
-
action: string;
|
|
16636
|
-
do: string;
|
|
16637
|
-
};
|
|
17830
|
+
count?: number | undefined;
|
|
16638
17831
|
}>, S_7>, update: _reduxjs_toolkit.Update<{
|
|
16639
17832
|
type: string;
|
|
16640
|
-
|
|
17833
|
+
targetId: number;
|
|
17834
|
+
targetType: string;
|
|
16641
17835
|
label: string;
|
|
16642
|
-
|
|
16643
|
-
total: number;
|
|
16644
|
-
};
|
|
16645
|
-
cssClass: string;
|
|
16646
|
-
cssColor: string;
|
|
17836
|
+
icon: string;
|
|
16647
17837
|
isActive: boolean;
|
|
16648
|
-
|
|
16649
|
-
type: string;
|
|
16650
|
-
targetId: number;
|
|
16651
|
-
targetType: string;
|
|
16652
|
-
action: string;
|
|
16653
|
-
do: string;
|
|
16654
|
-
};
|
|
17838
|
+
count?: number | undefined;
|
|
16655
17839
|
}>): S_7;
|
|
16656
17840
|
<S_8 extends EntityState<{
|
|
16657
17841
|
type: string;
|
|
16658
|
-
|
|
17842
|
+
targetId: number;
|
|
17843
|
+
targetType: string;
|
|
16659
17844
|
label: string;
|
|
16660
|
-
|
|
16661
|
-
total: number;
|
|
16662
|
-
};
|
|
16663
|
-
cssClass: string;
|
|
16664
|
-
cssColor: string;
|
|
17845
|
+
icon: string;
|
|
16665
17846
|
isActive: boolean;
|
|
16666
|
-
|
|
16667
|
-
type: string;
|
|
16668
|
-
targetId: number;
|
|
16669
|
-
targetType: string;
|
|
16670
|
-
action: string;
|
|
16671
|
-
do: string;
|
|
16672
|
-
};
|
|
17847
|
+
count?: number | undefined;
|
|
16673
17848
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_8, EntityState<{
|
|
16674
17849
|
type: string;
|
|
16675
|
-
|
|
17850
|
+
targetId: number;
|
|
17851
|
+
targetType: string;
|
|
16676
17852
|
label: string;
|
|
16677
|
-
|
|
16678
|
-
total: number;
|
|
16679
|
-
};
|
|
16680
|
-
cssClass: string;
|
|
16681
|
-
cssColor: string;
|
|
17853
|
+
icon: string;
|
|
16682
17854
|
isActive: boolean;
|
|
16683
|
-
|
|
16684
|
-
type: string;
|
|
16685
|
-
targetId: number;
|
|
16686
|
-
targetType: string;
|
|
16687
|
-
action: string;
|
|
16688
|
-
do: string;
|
|
16689
|
-
};
|
|
17855
|
+
count?: number | undefined;
|
|
16690
17856
|
}>, S_8>, update: {
|
|
16691
17857
|
payload: _reduxjs_toolkit.Update<{
|
|
16692
17858
|
type: string;
|
|
16693
|
-
|
|
17859
|
+
targetId: number;
|
|
17860
|
+
targetType: string;
|
|
16694
17861
|
label: string;
|
|
16695
|
-
|
|
16696
|
-
total: number;
|
|
16697
|
-
};
|
|
16698
|
-
cssClass: string;
|
|
16699
|
-
cssColor: string;
|
|
17862
|
+
icon: string;
|
|
16700
17863
|
isActive: boolean;
|
|
16701
|
-
|
|
16702
|
-
type: string;
|
|
16703
|
-
targetId: number;
|
|
16704
|
-
targetType: string;
|
|
16705
|
-
action: string;
|
|
16706
|
-
do: string;
|
|
16707
|
-
};
|
|
17864
|
+
count?: number | undefined;
|
|
16708
17865
|
}>;
|
|
16709
17866
|
type: string;
|
|
16710
17867
|
}): S_8;
|
|
@@ -16713,129 +17870,66 @@ declare const SocialActions: {
|
|
|
16713
17870
|
actions: {
|
|
16714
17871
|
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
16715
17872
|
type: string;
|
|
16716
|
-
|
|
17873
|
+
targetId: number;
|
|
17874
|
+
targetType: string;
|
|
16717
17875
|
label: string;
|
|
16718
|
-
|
|
16719
|
-
total: number;
|
|
16720
|
-
};
|
|
16721
|
-
cssClass: string;
|
|
16722
|
-
cssColor: string;
|
|
17876
|
+
icon: string;
|
|
16723
17877
|
isActive: boolean;
|
|
16724
|
-
|
|
16725
|
-
type: string;
|
|
16726
|
-
targetId: number;
|
|
16727
|
-
targetType: string;
|
|
16728
|
-
action: string;
|
|
16729
|
-
do: string;
|
|
16730
|
-
};
|
|
17878
|
+
count?: number | undefined;
|
|
16731
17879
|
}, "socialActions/addOne">;
|
|
16732
17880
|
addMany: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
|
|
16733
17881
|
type: string;
|
|
16734
|
-
|
|
17882
|
+
targetId: number;
|
|
17883
|
+
targetType: string;
|
|
16735
17884
|
label: string;
|
|
16736
|
-
|
|
16737
|
-
total: number;
|
|
16738
|
-
};
|
|
16739
|
-
cssClass: string;
|
|
16740
|
-
cssColor: string;
|
|
17885
|
+
icon: string;
|
|
16741
17886
|
isActive: boolean;
|
|
16742
|
-
|
|
16743
|
-
type: string;
|
|
16744
|
-
targetId: number;
|
|
16745
|
-
targetType: string;
|
|
16746
|
-
action: string;
|
|
16747
|
-
do: string;
|
|
16748
|
-
};
|
|
17887
|
+
count?: number | undefined;
|
|
16749
17888
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16750
17889
|
type: string;
|
|
16751
|
-
|
|
17890
|
+
targetId: number;
|
|
17891
|
+
targetType: string;
|
|
16752
17892
|
label: string;
|
|
16753
|
-
|
|
16754
|
-
total: number;
|
|
16755
|
-
};
|
|
16756
|
-
cssClass: string;
|
|
16757
|
-
cssColor: string;
|
|
17893
|
+
icon: string;
|
|
16758
17894
|
isActive: boolean;
|
|
16759
|
-
|
|
16760
|
-
type: string;
|
|
16761
|
-
targetId: number;
|
|
16762
|
-
targetType: string;
|
|
16763
|
-
action: string;
|
|
16764
|
-
do: string;
|
|
16765
|
-
};
|
|
17895
|
+
count?: number | undefined;
|
|
16766
17896
|
}>, "socialActions/addMany">;
|
|
16767
17897
|
setAll: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
|
|
16768
17898
|
type: string;
|
|
16769
|
-
|
|
17899
|
+
targetId: number;
|
|
17900
|
+
targetType: string;
|
|
16770
17901
|
label: string;
|
|
16771
|
-
|
|
16772
|
-
total: number;
|
|
16773
|
-
};
|
|
16774
|
-
cssClass: string;
|
|
16775
|
-
cssColor: string;
|
|
17902
|
+
icon: string;
|
|
16776
17903
|
isActive: boolean;
|
|
16777
|
-
|
|
16778
|
-
type: string;
|
|
16779
|
-
targetId: number;
|
|
16780
|
-
targetType: string;
|
|
16781
|
-
action: string;
|
|
16782
|
-
do: string;
|
|
16783
|
-
};
|
|
17904
|
+
count?: number | undefined;
|
|
16784
17905
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16785
17906
|
type: string;
|
|
16786
|
-
|
|
17907
|
+
targetId: number;
|
|
17908
|
+
targetType: string;
|
|
16787
17909
|
label: string;
|
|
16788
|
-
|
|
16789
|
-
total: number;
|
|
16790
|
-
};
|
|
16791
|
-
cssClass: string;
|
|
16792
|
-
cssColor: string;
|
|
17910
|
+
icon: string;
|
|
16793
17911
|
isActive: boolean;
|
|
16794
|
-
|
|
16795
|
-
type: string;
|
|
16796
|
-
targetId: number;
|
|
16797
|
-
targetType: string;
|
|
16798
|
-
action: string;
|
|
16799
|
-
do: string;
|
|
16800
|
-
};
|
|
17912
|
+
count?: number | undefined;
|
|
16801
17913
|
}>, "socialActions/setAll">;
|
|
16802
17914
|
clear: _reduxjs_toolkit.ActionCreatorWithoutPayload<"socialActions/clear">;
|
|
16803
17915
|
updateOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.Update<{
|
|
16804
17916
|
type: string;
|
|
16805
|
-
|
|
17917
|
+
targetId: number;
|
|
17918
|
+
targetType: string;
|
|
16806
17919
|
label: string;
|
|
16807
|
-
|
|
16808
|
-
total: number;
|
|
16809
|
-
};
|
|
16810
|
-
cssClass: string;
|
|
16811
|
-
cssColor: string;
|
|
17920
|
+
icon: string;
|
|
16812
17921
|
isActive: boolean;
|
|
16813
|
-
|
|
16814
|
-
type: string;
|
|
16815
|
-
targetId: number;
|
|
16816
|
-
targetType: string;
|
|
16817
|
-
action: string;
|
|
16818
|
-
do: string;
|
|
16819
|
-
};
|
|
17922
|
+
count?: number | undefined;
|
|
16820
17923
|
}>, "socialActions/updateOne">;
|
|
16821
17924
|
};
|
|
16822
17925
|
selectors: _reduxjs_toolkit.EntitySelectors<{
|
|
16823
17926
|
type: string;
|
|
16824
|
-
|
|
17927
|
+
targetId: number;
|
|
17928
|
+
targetType: string;
|
|
16825
17929
|
label: string;
|
|
16826
|
-
|
|
16827
|
-
total: number;
|
|
16828
|
-
};
|
|
16829
|
-
cssClass: string;
|
|
16830
|
-
cssColor: string;
|
|
17930
|
+
icon: string;
|
|
16831
17931
|
isActive: boolean;
|
|
16832
|
-
|
|
16833
|
-
type: string;
|
|
16834
|
-
targetId: number;
|
|
16835
|
-
targetType: string;
|
|
16836
|
-
action: string;
|
|
16837
|
-
do: string;
|
|
16838
|
-
};
|
|
17932
|
+
count?: number | undefined;
|
|
16839
17933
|
}, RootState$1>;
|
|
16840
17934
|
};
|
|
16841
17935
|
|
|
@@ -19676,4 +20770,4 @@ declare const studio: {
|
|
|
19676
20770
|
};
|
|
19677
20771
|
};
|
|
19678
20772
|
|
|
19679
|
-
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 };
|
|
20773
|
+
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, ContentReport, ContentReportRootState, ContentReportSliceRootState, 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, contentReportSlice, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, fetchReports, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateStatus, updateWidgetContent, viewsList };
|