jamespot-front-business 1.1.86 → 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/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, ApiWrapper, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, PagingResults, 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';
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)>;
@@ -4255,7 +4256,7 @@ type CommentRootState = {
4255
4256
  };
4256
4257
  type CommentsList = {
4257
4258
  idArticle: number;
4258
- list: Array<jCommentList & {
4259
+ list: Array<WithSocialActions<jCommentList> & {
4259
4260
  pending?: boolean;
4260
4261
  }>;
4261
4262
  };
@@ -4279,7 +4280,7 @@ declare const Comment: {
4279
4280
  }, "commentList/discardComments">;
4280
4281
  hydrateComment: _reduxjs_toolkit.ActionCreatorWithPayload<{
4281
4282
  idArticle: number;
4282
- list: {
4283
+ list: ({
4283
4284
  type: string;
4284
4285
  id: number;
4285
4286
  mainType: string;
@@ -4399,7 +4400,19 @@ declare const Comment: {
4399
4400
  emailsLimitValue?: number | undefined;
4400
4401
  emailsPromptStatus?: string | undefined;
4401
4402
  }>)>[] | undefined;
4402
- }[];
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
+ })[];
4403
4416
  }, "commentList/hydrateComment">;
4404
4417
  updateComment: _reduxjs_toolkit.ActionCreatorWithPayload<{
4405
4418
  idArticle: number;
@@ -4988,6 +5001,18 @@ declare const Comment: {
4988
5001
  emailsLimitValue?: number | undefined;
4989
5002
  emailsPromptStatus?: string | undefined;
4990
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
+ };
4991
5016
  } & {
4992
5017
  pending?: boolean;
4993
5018
  })[];
@@ -4996,226 +5021,1412 @@ declare const Comment: {
4996
5021
  getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
4997
5022
  };
4998
5023
 
4999
- type BookmarkRootState = {
5000
- bookmark: bookmarkListRootState & bookmarkEditRootState;
5001
- };
5002
- type bookmarkListState = Loading & {
5003
- bookmarks: BookmarkRawList[];
5024
+ type ContentReportSliceRootState = Loading & {
5025
+ reports: ContentReportList[];
5026
+ page: number;
5027
+ tab: 'my' | 'all';
5028
+ filters: Filters;
5029
+ orders: Orders;
5030
+ limit: number;
5004
5031
  nbResults: number;
5005
- status: 'success' | 'error' | undefined;
5006
- isInitialized: boolean;
5007
- add: Record<string, Loading & {
5008
- status: 'success' | 'error' | undefined;
5009
- id?: number;
5010
- }>;
5011
- move: Loading & {
5012
- status: 'success' | 'error' | undefined;
5013
- };
5014
- delete: Record<string, Loading & {
5015
- status: 'success' | 'error' | undefined;
5032
+ pendingReports: Array<ContentReportList & {
5033
+ requestId: string;
5016
5034
  }>;
5017
5035
  };
5018
- interface bookmarkListRootState {
5019
- bookmarkList: bookmarkListState;
5020
- }
5021
- type bookmarkEditState = Loading & {
5022
- bookmark: BookmarkRawList | undefined;
5023
- status: 'success' | 'error' | undefined;
5036
+ type ContentReportRootState = {
5037
+ contentReport: ContentReportSliceRootState;
5024
5038
  };
5025
- interface bookmarkEditRootState {
5026
- bookmarkEdit: bookmarkEditState;
5027
- }
5028
5039
 
5029
- declare const Bookmark: {
5030
- slice: {
5031
- name: "bookmark";
5032
- reducer: redux.Reducer<redux.CombinedState<{
5033
- bookmarkList: bookmarkListState;
5034
- bookmarkEdit: bookmarkEditState;
5035
- }>, redux.AnyAction>;
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;
5036
5064
  };
5037
- actions: {
5038
- resetAddBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetAddBookmarkStatus">;
5039
- resetMoveBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkList/resetMoveBookmarkStatus">;
5040
- resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
5041
- addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
5042
- id: number;
5043
- mainType: string;
5044
- type: "bookmarkLink";
5045
- uri: string;
5046
- value: string | null;
5047
- srcId: number;
5048
- srcType: string;
5049
- targetId: number;
5050
- targetType: string | null;
5051
- url?: string | null | undefined;
5052
- dateCreation?: string | undefined;
5053
- dateModified?: string | null | undefined;
5054
- _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5055
- _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5056
- bookmarkUrl?: string | null | undefined;
5057
- bookmarkOrder?: number | undefined;
5058
- bookmarkLabel?: string | undefined;
5059
- bookmarkMeta?: string | null | undefined;
5060
- }, "bookmarkList/addBookmarkRT">;
5061
- deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
5062
- id: number;
5063
- mainType: string;
5064
- type: "bookmarkLink";
5065
- uri: string;
5066
- value: string | null;
5067
- srcId: number;
5068
- srcType: string;
5069
- targetId: number;
5070
- targetType: string | null;
5071
- url?: string | null | undefined;
5072
- dateCreation?: string | undefined;
5073
- dateModified?: string | null | undefined;
5074
- _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5075
- _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5076
- bookmarkUrl?: string | null | undefined;
5077
- bookmarkOrder?: number | undefined;
5078
- bookmarkLabel?: string | undefined;
5079
- bookmarkMeta?: string | null | undefined;
5080
- }, "bookmarkList/deleteBookmarkRT">;
5081
- updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
5082
- id: number;
5083
- mainType: string;
5084
- type: "bookmarkLink";
5085
- uri: string;
5086
- value: string | null;
5087
- srcId: number;
5088
- srcType: string;
5089
- targetId: number;
5090
- targetType: string | null;
5091
- url?: string | null | undefined;
5092
- dateCreation?: string | undefined;
5093
- dateModified?: string | null | undefined;
5094
- _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5095
- _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5096
- bookmarkUrl?: string | null | undefined;
5097
- bookmarkOrder?: number | undefined;
5098
- bookmarkLabel?: string | undefined;
5099
- bookmarkMeta?: string | null | undefined;
5100
- }, "bookmarkList/updateBookmarkRT">;
5101
- setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
5102
- id: number;
5103
- mainType: string;
5104
- type: "bookmarkLink";
5105
- uri: string;
5106
- value: string | null;
5107
- srcId: number;
5108
- srcType: string;
5109
- targetId: number;
5110
- targetType: string | null;
5111
- url?: string | null | undefined;
5112
- dateCreation?: string | undefined;
5113
- dateModified?: string | null | undefined;
5114
- _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5115
- _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5116
- bookmarkUrl?: string | null | undefined;
5117
- bookmarkOrder?: number | undefined;
5118
- bookmarkLabel?: string | undefined;
5119
- bookmarkMeta?: string | null | undefined;
5120
- }, "bookmarkEdit/setEditBookmark">;
5121
- unsetEditBookmark: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/unsetEditBookmark">;
5122
- resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
5123
- fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
5124
- id: number;
5125
- mainType: string;
5126
- type: "bookmarkLink";
5127
- uri: string;
5128
- value: string | null;
5129
- srcId: number;
5130
- srcType: string;
5131
- targetId: number;
5132
- targetType: string | null;
5133
- url?: string | null | undefined;
5134
- dateCreation?: string | undefined;
5135
- dateModified?: string | null | undefined;
5136
- _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5137
- _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
5138
- bookmarkUrl?: string | null | undefined;
5139
- bookmarkOrder?: number | undefined;
5140
- bookmarkLabel?: string | undefined;
5141
- bookmarkMeta?: string | null | undefined;
5142
- }, jamespot_user_api.BaseMessages>, void, {
5143
- dispatch: any;
5144
- state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
5145
- widgets: {
5146
- layers: Record<string, {
5147
- title: string;
5148
- visible: boolean;
5149
- widgets: jamespot_user_api.WidgetWrapperGeneric<({
5150
- layers?: string[] | undefined;
5151
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
5152
- layers?: string[] | undefined;
5153
- } & jamespot_user_api.WidgetArticleButtonType) | ({
5154
- layers?: string[] | undefined;
5155
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
5156
- layers?: string[] | undefined;
5157
- } & jamespot_user_api.WidgetArticleImageType) | ({
5158
- layers?: string[] | undefined;
5159
- } & jamespot_user_api.WidgetArticleTitleType) | ({
5160
- layers?: string[] | undefined;
5161
- } & jamespot_user_api.WidgetArticleTextType) | ({
5162
- layers?: string[] | undefined;
5163
- } & jamespot_user_api.WidgetArticleSliderType) | ({
5164
- layers?: string[] | undefined;
5165
- } & jamespot_user_api.WidgetType<{
5166
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
5167
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
5168
- css?: Record<string, string> | undefined;
5169
- edit?: boolean | undefined;
5170
- }>) | ({
5171
- layers?: string[] | undefined;
5172
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
5173
- layers?: string[] | undefined;
5174
- } & {
5175
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
5176
- uniqid: string;
5177
- content: {
5178
- uri?: string | undefined;
5179
- limit?: number | boolean | undefined;
5180
- tableColumnsData?: {
5181
- name?: string | undefined;
5182
- label?: string | undefined;
5183
- isVisible?: boolean | undefined;
5184
- textEllipsis?: boolean | undefined;
5185
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
5186
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
5187
- }[] | undefined;
5188
- tableHeadColor?: string | undefined;
5189
- tableHeadTextColor?: string | undefined;
5190
- tableHeadIconColor?: string | undefined;
5191
- tableRowColor?: string | undefined;
5192
- tableRowTextColor?: string | undefined;
5193
- tableBorderRadius?: number | undefined;
5194
- tableSizedColumns?: boolean | undefined;
5195
- tableSizedColumnsWidth?: number | undefined;
5196
- };
5197
- }) | ({
5198
- layers?: string[] | undefined;
5199
- } & jamespot_user_api.WidgetPresenceType) | ({
5200
- layers?: string[] | undefined;
5201
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
5202
- layers?: string[] | undefined;
5203
- } & jamespot_user_api.WidgetType<{
5204
- calEventsLimit?: boolean | undefined;
5205
- calEventsLimitValue?: number | undefined;
5206
- calEventsPromptStatus?: string | undefined;
5207
- }>) | ({
5208
- layers?: string[] | undefined;
5209
- } & jamespot_user_api.WidgetType<{
5210
- contactLimit?: boolean | undefined;
5211
- contactLimitValue?: number | undefined;
5212
- contactPromptStatus?: string | undefined;
5213
- }>) | ({
5214
- layers?: string[] | undefined;
5215
- } & jamespot_user_api.WidgetType<{
5216
- emailsLimit?: boolean | undefined;
5217
- emailsLimitValue?: number | undefined;
5218
- emailsPromptStatus?: string | undefined;
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;
6218
+ add: Record<string, Loading & {
6219
+ status: 'success' | 'error' | undefined;
6220
+ id?: number;
6221
+ }>;
6222
+ move: Loading & {
6223
+ status: 'success' | 'error' | undefined;
6224
+ };
6225
+ delete: Record<string, Loading & {
6226
+ status: 'success' | 'error' | undefined;
6227
+ }>;
6228
+ };
6229
+ interface bookmarkListRootState {
6230
+ bookmarkList: bookmarkListState;
6231
+ }
6232
+ type bookmarkEditState = Loading & {
6233
+ bookmark: BookmarkRawList | undefined;
6234
+ status: 'success' | 'error' | undefined;
6235
+ };
6236
+ interface bookmarkEditRootState {
6237
+ bookmarkEdit: bookmarkEditState;
6238
+ }
6239
+
6240
+ declare const Bookmark: {
6241
+ slice: {
6242
+ name: "bookmark";
6243
+ reducer: redux.Reducer<redux.CombinedState<{
6244
+ bookmarkList: bookmarkListState;
6245
+ bookmarkEdit: bookmarkEditState;
6246
+ }>, redux.AnyAction>;
6247
+ };
6248
+ actions: {
6249
+ resetAddBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetAddBookmarkStatus">;
6250
+ resetMoveBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkList/resetMoveBookmarkStatus">;
6251
+ resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
6252
+ addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
6253
+ id: number;
6254
+ mainType: string;
6255
+ type: "bookmarkLink";
6256
+ uri: string;
6257
+ value: string | null;
6258
+ srcId: number;
6259
+ srcType: string;
6260
+ targetId: number;
6261
+ targetType: string | null;
6262
+ url?: string | null | undefined;
6263
+ dateCreation?: string | undefined;
6264
+ dateModified?: string | null | undefined;
6265
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6266
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6267
+ bookmarkUrl?: string | null | undefined;
6268
+ bookmarkOrder?: number | undefined;
6269
+ bookmarkLabel?: string | undefined;
6270
+ bookmarkMeta?: string | null | undefined;
6271
+ }, "bookmarkList/addBookmarkRT">;
6272
+ deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
6273
+ id: number;
6274
+ mainType: string;
6275
+ type: "bookmarkLink";
6276
+ uri: string;
6277
+ value: string | null;
6278
+ srcId: number;
6279
+ srcType: string;
6280
+ targetId: number;
6281
+ targetType: string | null;
6282
+ url?: string | null | undefined;
6283
+ dateCreation?: string | undefined;
6284
+ dateModified?: string | null | undefined;
6285
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6286
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6287
+ bookmarkUrl?: string | null | undefined;
6288
+ bookmarkOrder?: number | undefined;
6289
+ bookmarkLabel?: string | undefined;
6290
+ bookmarkMeta?: string | null | undefined;
6291
+ }, "bookmarkList/deleteBookmarkRT">;
6292
+ updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
6293
+ id: number;
6294
+ mainType: string;
6295
+ type: "bookmarkLink";
6296
+ uri: string;
6297
+ value: string | null;
6298
+ srcId: number;
6299
+ srcType: string;
6300
+ targetId: number;
6301
+ targetType: string | null;
6302
+ url?: string | null | undefined;
6303
+ dateCreation?: string | undefined;
6304
+ dateModified?: string | null | undefined;
6305
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6306
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6307
+ bookmarkUrl?: string | null | undefined;
6308
+ bookmarkOrder?: number | undefined;
6309
+ bookmarkLabel?: string | undefined;
6310
+ bookmarkMeta?: string | null | undefined;
6311
+ }, "bookmarkList/updateBookmarkRT">;
6312
+ setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
6313
+ id: number;
6314
+ mainType: string;
6315
+ type: "bookmarkLink";
6316
+ uri: string;
6317
+ value: string | null;
6318
+ srcId: number;
6319
+ srcType: string;
6320
+ targetId: number;
6321
+ targetType: string | null;
6322
+ url?: string | null | undefined;
6323
+ dateCreation?: string | undefined;
6324
+ dateModified?: string | null | undefined;
6325
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6326
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6327
+ bookmarkUrl?: string | null | undefined;
6328
+ bookmarkOrder?: number | undefined;
6329
+ bookmarkLabel?: string | undefined;
6330
+ bookmarkMeta?: string | null | undefined;
6331
+ }, "bookmarkEdit/setEditBookmark">;
6332
+ unsetEditBookmark: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/unsetEditBookmark">;
6333
+ resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
6334
+ fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
6335
+ id: number;
6336
+ mainType: string;
6337
+ type: "bookmarkLink";
6338
+ uri: string;
6339
+ value: string | null;
6340
+ srcId: number;
6341
+ srcType: string;
6342
+ targetId: number;
6343
+ targetType: string | null;
6344
+ url?: string | null | undefined;
6345
+ dateCreation?: string | undefined;
6346
+ dateModified?: string | null | undefined;
6347
+ _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6348
+ _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
6349
+ bookmarkUrl?: string | null | undefined;
6350
+ bookmarkOrder?: number | undefined;
6351
+ bookmarkLabel?: string | undefined;
6352
+ bookmarkMeta?: string | null | undefined;
6353
+ }, jamespot_user_api.BaseMessages>, void, {
6354
+ dispatch: any;
6355
+ state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
6356
+ widgets: {
6357
+ layers: Record<string, {
6358
+ title: string;
6359
+ visible: boolean;
6360
+ widgets: jamespot_user_api.WidgetWrapperGeneric<({
6361
+ layers?: string[] | undefined;
6362
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
6363
+ layers?: string[] | undefined;
6364
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
6365
+ layers?: string[] | undefined;
6366
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
6367
+ layers?: string[] | undefined;
6368
+ } & jamespot_user_api.WidgetArticleImageType) | ({
6369
+ layers?: string[] | undefined;
6370
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
6371
+ layers?: string[] | undefined;
6372
+ } & jamespot_user_api.WidgetArticleTextType) | ({
6373
+ layers?: string[] | undefined;
6374
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
6375
+ layers?: string[] | undefined;
6376
+ } & jamespot_user_api.WidgetType<{
6377
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
6378
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
6379
+ css?: Record<string, string> | undefined;
6380
+ edit?: boolean | undefined;
6381
+ }>) | ({
6382
+ layers?: string[] | undefined;
6383
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
6384
+ layers?: string[] | undefined;
6385
+ } & {
6386
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
6387
+ uniqid: string;
6388
+ content: {
6389
+ uri?: string | undefined;
6390
+ limit?: number | boolean | undefined;
6391
+ tableColumnsData?: {
6392
+ name?: string | undefined;
6393
+ label?: string | undefined;
6394
+ isVisible?: boolean | undefined;
6395
+ textEllipsis?: boolean | undefined;
6396
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
6397
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
6398
+ }[] | undefined;
6399
+ tableHeadColor?: string | undefined;
6400
+ tableHeadTextColor?: string | undefined;
6401
+ tableHeadIconColor?: string | undefined;
6402
+ tableRowColor?: string | undefined;
6403
+ tableRowTextColor?: string | undefined;
6404
+ tableBorderRadius?: number | undefined;
6405
+ tableSizedColumns?: boolean | undefined;
6406
+ tableSizedColumnsWidth?: number | undefined;
6407
+ };
6408
+ }) | ({
6409
+ layers?: string[] | undefined;
6410
+ } & jamespot_user_api.WidgetPresenceType) | ({
6411
+ layers?: string[] | undefined;
6412
+ } & jamespot_user_api.WidgetQuickSurveyType) | ({
6413
+ layers?: string[] | undefined;
6414
+ } & jamespot_user_api.WidgetType<{
6415
+ calEventsLimit?: boolean | undefined;
6416
+ calEventsLimitValue?: number | undefined;
6417
+ calEventsPromptStatus?: string | undefined;
6418
+ }>) | ({
6419
+ layers?: string[] | undefined;
6420
+ } & jamespot_user_api.WidgetType<{
6421
+ contactLimit?: boolean | undefined;
6422
+ contactLimitValue?: number | undefined;
6423
+ contactPromptStatus?: string | undefined;
6424
+ }>) | ({
6425
+ layers?: string[] | undefined;
6426
+ } & jamespot_user_api.WidgetType<{
6427
+ emailsLimit?: boolean | undefined;
6428
+ emailsLimitValue?: number | undefined;
6429
+ emailsPromptStatus?: string | undefined;
5219
6430
  }>)>[];
5220
6431
  uniqid: string;
5221
6432
  locked: boolean;
@@ -16379,127 +17590,64 @@ type RootState$1 = {
16379
17590
  declare const SocialActions: {
16380
17591
  slice: _reduxjs_toolkit.Slice<EntityState<{
16381
17592
  type: string;
16382
- class: string;
17593
+ targetId: number;
17594
+ targetType: string;
16383
17595
  label: string;
16384
- stats: {
16385
- total: number;
16386
- };
16387
- cssClass: string;
16388
- cssColor: string;
17596
+ icon: string;
16389
17597
  isActive: boolean;
16390
- struct: {
16391
- type: string;
16392
- targetId: number;
16393
- targetType: string;
16394
- action: string;
16395
- do: string;
16396
- };
17598
+ count?: number | undefined;
16397
17599
  }>, {
16398
17600
  addOne: {
16399
17601
  <S extends EntityState<{
16400
17602
  type: string;
16401
- class: string;
17603
+ targetId: number;
17604
+ targetType: string;
16402
17605
  label: string;
16403
- stats: {
16404
- total: number;
16405
- };
16406
- cssClass: string;
16407
- cssColor: string;
17606
+ icon: string;
16408
17607
  isActive: boolean;
16409
- struct: {
16410
- type: string;
16411
- targetId: number;
16412
- targetType: string;
16413
- action: string;
16414
- do: string;
16415
- };
17608
+ count?: number | undefined;
16416
17609
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<{
16417
17610
  type: string;
16418
- class: string;
17611
+ targetId: number;
17612
+ targetType: string;
16419
17613
  label: string;
16420
- stats: {
16421
- total: number;
16422
- };
16423
- cssClass: string;
16424
- cssColor: string;
17614
+ icon: string;
16425
17615
  isActive: boolean;
16426
- struct: {
16427
- type: string;
16428
- targetId: number;
16429
- targetType: string;
16430
- action: string;
16431
- do: string;
16432
- };
17616
+ count?: number | undefined;
16433
17617
  }>, S>, entity: {
16434
17618
  type: string;
16435
- class: string;
17619
+ targetId: number;
17620
+ targetType: string;
16436
17621
  label: string;
16437
- stats: {
16438
- total: number;
16439
- };
16440
- cssClass: string;
16441
- cssColor: string;
17622
+ icon: string;
16442
17623
  isActive: boolean;
16443
- struct: {
16444
- type: string;
16445
- targetId: number;
16446
- targetType: string;
16447
- action: string;
16448
- do: string;
16449
- };
17624
+ count?: number | undefined;
16450
17625
  }): S;
16451
17626
  <S_1 extends EntityState<{
16452
17627
  type: string;
16453
- class: string;
17628
+ targetId: number;
17629
+ targetType: string;
16454
17630
  label: string;
16455
- stats: {
16456
- total: number;
16457
- };
16458
- cssClass: string;
16459
- cssColor: string;
17631
+ icon: string;
16460
17632
  isActive: boolean;
16461
- struct: {
16462
- type: string;
16463
- targetId: number;
16464
- targetType: string;
16465
- action: string;
16466
- do: string;
16467
- };
17633
+ count?: number | undefined;
16468
17634
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<{
16469
17635
  type: string;
16470
- class: string;
17636
+ targetId: number;
17637
+ targetType: string;
16471
17638
  label: string;
16472
- stats: {
16473
- total: number;
16474
- };
16475
- cssClass: string;
16476
- cssColor: string;
17639
+ icon: string;
16477
17640
  isActive: boolean;
16478
- struct: {
16479
- type: string;
16480
- targetId: number;
16481
- targetType: string;
16482
- action: string;
16483
- do: string;
16484
- };
17641
+ count?: number | undefined;
16485
17642
  }>, S_1>, action: {
16486
17643
  payload: {
16487
17644
  type: string;
16488
- class: string;
17645
+ targetId: number;
17646
+ targetType: string;
16489
17647
  label: string;
16490
- stats: {
16491
- total: number;
16492
- };
16493
- cssClass: string;
16494
- cssColor: string;
17648
+ icon: string;
16495
17649
  isActive: boolean;
16496
- struct: {
16497
- type: string;
16498
- targetId: number;
16499
- targetType: string;
16500
- action: string;
16501
- do: string;
16502
- };
17650
+ count?: number | undefined;
16503
17651
  };
16504
17652
  type: string;
16505
17653
  }): S_1;
@@ -16507,142 +17655,70 @@ declare const SocialActions: {
16507
17655
  addMany: {
16508
17656
  <S_2 extends EntityState<{
16509
17657
  type: string;
16510
- class: string;
17658
+ targetId: number;
17659
+ targetType: string;
16511
17660
  label: string;
16512
- stats: {
16513
- total: number;
16514
- };
16515
- cssClass: string;
16516
- cssColor: string;
17661
+ icon: string;
16517
17662
  isActive: boolean;
16518
- struct: {
16519
- type: string;
16520
- targetId: number;
16521
- targetType: string;
16522
- action: string;
16523
- do: string;
16524
- };
17663
+ count?: number | undefined;
16525
17664
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<{
16526
17665
  type: string;
16527
- class: string;
17666
+ targetId: number;
17667
+ targetType: string;
16528
17668
  label: string;
16529
- stats: {
16530
- total: number;
16531
- };
16532
- cssClass: string;
16533
- cssColor: string;
17669
+ icon: string;
16534
17670
  isActive: boolean;
16535
- struct: {
16536
- type: string;
16537
- targetId: number;
16538
- targetType: string;
16539
- action: string;
16540
- do: string;
16541
- };
17671
+ count?: number | undefined;
16542
17672
  }>, S_2>, entities: readonly {
16543
17673
  type: string;
16544
- class: string;
17674
+ targetId: number;
17675
+ targetType: string;
16545
17676
  label: string;
16546
- stats: {
16547
- total: number;
16548
- };
16549
- cssClass: string;
16550
- cssColor: string;
17677
+ icon: string;
16551
17678
  isActive: boolean;
16552
- struct: {
16553
- type: string;
16554
- targetId: number;
16555
- targetType: string;
16556
- action: string;
16557
- do: string;
16558
- };
17679
+ count?: number | undefined;
16559
17680
  }[] | Record<_reduxjs_toolkit.EntityId, {
16560
17681
  type: string;
16561
- class: string;
17682
+ targetId: number;
17683
+ targetType: string;
16562
17684
  label: string;
16563
- stats: {
16564
- total: number;
16565
- };
16566
- cssClass: string;
16567
- cssColor: string;
17685
+ icon: string;
16568
17686
  isActive: boolean;
16569
- struct: {
16570
- type: string;
16571
- targetId: number;
16572
- targetType: string;
16573
- action: string;
16574
- do: string;
16575
- };
17687
+ count?: number | undefined;
16576
17688
  }>): S_2;
16577
17689
  <S_3 extends EntityState<{
16578
17690
  type: string;
16579
- class: string;
17691
+ targetId: number;
17692
+ targetType: string;
16580
17693
  label: string;
16581
- stats: {
16582
- total: number;
16583
- };
16584
- cssClass: string;
16585
- cssColor: string;
17694
+ icon: string;
16586
17695
  isActive: boolean;
16587
- struct: {
16588
- type: string;
16589
- targetId: number;
16590
- targetType: string;
16591
- action: string;
16592
- do: string;
16593
- };
17696
+ count?: number | undefined;
16594
17697
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<{
16595
17698
  type: string;
16596
- class: string;
17699
+ targetId: number;
17700
+ targetType: string;
16597
17701
  label: string;
16598
- stats: {
16599
- total: number;
16600
- };
16601
- cssClass: string;
16602
- cssColor: string;
17702
+ icon: string;
16603
17703
  isActive: boolean;
16604
- struct: {
16605
- type: string;
16606
- targetId: number;
16607
- targetType: string;
16608
- action: string;
16609
- do: string;
16610
- };
17704
+ count?: number | undefined;
16611
17705
  }>, S_3>, entities: {
16612
17706
  payload: readonly {
16613
17707
  type: string;
16614
- class: string;
17708
+ targetId: number;
17709
+ targetType: string;
16615
17710
  label: string;
16616
- stats: {
16617
- total: number;
16618
- };
16619
- cssClass: string;
16620
- cssColor: string;
17711
+ icon: string;
16621
17712
  isActive: boolean;
16622
- struct: {
16623
- type: string;
16624
- targetId: number;
16625
- targetType: string;
16626
- action: string;
16627
- do: string;
16628
- };
17713
+ count?: number | undefined;
16629
17714
  }[] | Record<_reduxjs_toolkit.EntityId, {
16630
17715
  type: string;
16631
- class: string;
17716
+ targetId: number;
17717
+ targetType: string;
16632
17718
  label: string;
16633
- stats: {
16634
- total: number;
16635
- };
16636
- cssClass: string;
16637
- cssColor: string;
17719
+ icon: string;
16638
17720
  isActive: boolean;
16639
- struct: {
16640
- type: string;
16641
- targetId: number;
16642
- targetType: string;
16643
- action: string;
16644
- do: string;
16645
- };
17721
+ count?: number | undefined;
16646
17722
  }>;
16647
17723
  type: string;
16648
17724
  }): S_3;
@@ -16650,286 +17726,142 @@ declare const SocialActions: {
16650
17726
  setAll: {
16651
17727
  <S_4 extends EntityState<{
16652
17728
  type: string;
16653
- class: string;
17729
+ targetId: number;
17730
+ targetType: string;
16654
17731
  label: string;
16655
- stats: {
16656
- total: number;
16657
- };
16658
- cssClass: string;
16659
- cssColor: string;
17732
+ icon: string;
16660
17733
  isActive: boolean;
16661
- struct: {
16662
- type: string;
16663
- targetId: number;
16664
- targetType: string;
16665
- action: string;
16666
- do: string;
16667
- };
17734
+ count?: number | undefined;
16668
17735
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_4, EntityState<{
16669
17736
  type: string;
16670
- class: string;
17737
+ targetId: number;
17738
+ targetType: string;
16671
17739
  label: string;
16672
- stats: {
16673
- total: number;
16674
- };
16675
- cssClass: string;
16676
- cssColor: string;
17740
+ icon: string;
16677
17741
  isActive: boolean;
16678
- struct: {
16679
- type: string;
16680
- targetId: number;
16681
- targetType: string;
16682
- action: string;
16683
- do: string;
16684
- };
17742
+ count?: number | undefined;
16685
17743
  }>, S_4>, entities: readonly {
16686
17744
  type: string;
16687
- class: string;
17745
+ targetId: number;
17746
+ targetType: string;
16688
17747
  label: string;
16689
- stats: {
16690
- total: number;
16691
- };
16692
- cssClass: string;
16693
- cssColor: string;
17748
+ icon: string;
16694
17749
  isActive: boolean;
16695
- struct: {
16696
- type: string;
16697
- targetId: number;
16698
- targetType: string;
16699
- action: string;
16700
- do: string;
16701
- };
17750
+ count?: number | undefined;
16702
17751
  }[] | Record<_reduxjs_toolkit.EntityId, {
16703
17752
  type: string;
16704
- class: string;
17753
+ targetId: number;
17754
+ targetType: string;
16705
17755
  label: string;
16706
- stats: {
16707
- total: number;
16708
- };
16709
- cssClass: string;
16710
- cssColor: string;
17756
+ icon: string;
16711
17757
  isActive: boolean;
16712
- struct: {
16713
- type: string;
16714
- targetId: number;
16715
- targetType: string;
16716
- action: string;
16717
- do: string;
16718
- };
17758
+ count?: number | undefined;
16719
17759
  }>): S_4;
16720
17760
  <S_5 extends EntityState<{
16721
17761
  type: string;
16722
- class: string;
17762
+ targetId: number;
17763
+ targetType: string;
16723
17764
  label: string;
16724
- stats: {
16725
- total: number;
16726
- };
16727
- cssClass: string;
16728
- cssColor: string;
17765
+ icon: string;
16729
17766
  isActive: boolean;
16730
- struct: {
16731
- type: string;
16732
- targetId: number;
16733
- targetType: string;
16734
- action: string;
16735
- do: string;
16736
- };
17767
+ count?: number | undefined;
16737
17768
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_5, EntityState<{
16738
17769
  type: string;
16739
- class: string;
17770
+ targetId: number;
17771
+ targetType: string;
16740
17772
  label: string;
16741
- stats: {
16742
- total: number;
16743
- };
16744
- cssClass: string;
16745
- cssColor: string;
17773
+ icon: string;
16746
17774
  isActive: boolean;
16747
- struct: {
16748
- type: string;
16749
- targetId: number;
16750
- targetType: string;
16751
- action: string;
16752
- do: string;
16753
- };
17775
+ count?: number | undefined;
16754
17776
  }>, S_5>, entities: {
16755
17777
  payload: readonly {
16756
17778
  type: string;
16757
- class: string;
17779
+ targetId: number;
17780
+ targetType: string;
16758
17781
  label: string;
16759
- stats: {
16760
- total: number;
16761
- };
16762
- cssClass: string;
16763
- cssColor: string;
17782
+ icon: string;
16764
17783
  isActive: boolean;
16765
- struct: {
16766
- type: string;
16767
- targetId: number;
16768
- targetType: string;
16769
- action: string;
16770
- do: string;
16771
- };
17784
+ count?: number | undefined;
16772
17785
  }[] | Record<_reduxjs_toolkit.EntityId, {
16773
17786
  type: string;
16774
- class: string;
17787
+ targetId: number;
17788
+ targetType: string;
16775
17789
  label: string;
16776
- stats: {
16777
- total: number;
16778
- };
16779
- cssClass: string;
16780
- cssColor: string;
17790
+ icon: string;
16781
17791
  isActive: boolean;
16782
- struct: {
16783
- type: string;
16784
- targetId: number;
16785
- targetType: string;
16786
- action: string;
16787
- do: string;
16788
- };
17792
+ count?: number | undefined;
16789
17793
  }>;
16790
17794
  type: string;
16791
17795
  }): S_5;
16792
17796
  };
16793
17797
  clear: <S_6 extends EntityState<{
16794
17798
  type: string;
16795
- class: string;
17799
+ targetId: number;
17800
+ targetType: string;
16796
17801
  label: string;
16797
- stats: {
16798
- total: number;
16799
- };
16800
- cssClass: string;
16801
- cssColor: string;
17802
+ icon: string;
16802
17803
  isActive: boolean;
16803
- struct: {
16804
- type: string;
16805
- targetId: number;
16806
- targetType: string;
16807
- action: string;
16808
- do: string;
16809
- };
17804
+ count?: number | undefined;
16810
17805
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_6, EntityState<{
16811
17806
  type: string;
16812
- class: string;
17807
+ targetId: number;
17808
+ targetType: string;
16813
17809
  label: string;
16814
- stats: {
16815
- total: number;
16816
- };
16817
- cssClass: string;
16818
- cssColor: string;
17810
+ icon: string;
16819
17811
  isActive: boolean;
16820
- struct: {
16821
- type: string;
16822
- targetId: number;
16823
- targetType: string;
16824
- action: string;
16825
- do: string;
16826
- };
17812
+ count?: number | undefined;
16827
17813
  }>, S_6>) => S_6;
16828
17814
  updateOne: {
16829
17815
  <S_7 extends EntityState<{
16830
17816
  type: string;
16831
- class: string;
17817
+ targetId: number;
17818
+ targetType: string;
16832
17819
  label: string;
16833
- stats: {
16834
- total: number;
16835
- };
16836
- cssClass: string;
16837
- cssColor: string;
17820
+ icon: string;
16838
17821
  isActive: boolean;
16839
- struct: {
16840
- type: string;
16841
- targetId: number;
16842
- targetType: string;
16843
- action: string;
16844
- do: string;
16845
- };
17822
+ count?: number | undefined;
16846
17823
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_7, EntityState<{
16847
17824
  type: string;
16848
- class: string;
17825
+ targetId: number;
17826
+ targetType: string;
16849
17827
  label: string;
16850
- stats: {
16851
- total: number;
16852
- };
16853
- cssClass: string;
16854
- cssColor: string;
17828
+ icon: string;
16855
17829
  isActive: boolean;
16856
- struct: {
16857
- type: string;
16858
- targetId: number;
16859
- targetType: string;
16860
- action: string;
16861
- do: string;
16862
- };
17830
+ count?: number | undefined;
16863
17831
  }>, S_7>, update: _reduxjs_toolkit.Update<{
16864
17832
  type: string;
16865
- class: string;
17833
+ targetId: number;
17834
+ targetType: string;
16866
17835
  label: string;
16867
- stats: {
16868
- total: number;
16869
- };
16870
- cssClass: string;
16871
- cssColor: string;
17836
+ icon: string;
16872
17837
  isActive: boolean;
16873
- struct: {
16874
- type: string;
16875
- targetId: number;
16876
- targetType: string;
16877
- action: string;
16878
- do: string;
16879
- };
17838
+ count?: number | undefined;
16880
17839
  }>): S_7;
16881
17840
  <S_8 extends EntityState<{
16882
17841
  type: string;
16883
- class: string;
17842
+ targetId: number;
17843
+ targetType: string;
16884
17844
  label: string;
16885
- stats: {
16886
- total: number;
16887
- };
16888
- cssClass: string;
16889
- cssColor: string;
17845
+ icon: string;
16890
17846
  isActive: boolean;
16891
- struct: {
16892
- type: string;
16893
- targetId: number;
16894
- targetType: string;
16895
- action: string;
16896
- do: string;
16897
- };
17847
+ count?: number | undefined;
16898
17848
  }>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_8, EntityState<{
16899
17849
  type: string;
16900
- class: string;
17850
+ targetId: number;
17851
+ targetType: string;
16901
17852
  label: string;
16902
- stats: {
16903
- total: number;
16904
- };
16905
- cssClass: string;
16906
- cssColor: string;
17853
+ icon: string;
16907
17854
  isActive: boolean;
16908
- struct: {
16909
- type: string;
16910
- targetId: number;
16911
- targetType: string;
16912
- action: string;
16913
- do: string;
16914
- };
17855
+ count?: number | undefined;
16915
17856
  }>, S_8>, update: {
16916
17857
  payload: _reduxjs_toolkit.Update<{
16917
17858
  type: string;
16918
- class: string;
17859
+ targetId: number;
17860
+ targetType: string;
16919
17861
  label: string;
16920
- stats: {
16921
- total: number;
16922
- };
16923
- cssClass: string;
16924
- cssColor: string;
17862
+ icon: string;
16925
17863
  isActive: boolean;
16926
- struct: {
16927
- type: string;
16928
- targetId: number;
16929
- targetType: string;
16930
- action: string;
16931
- do: string;
16932
- };
17864
+ count?: number | undefined;
16933
17865
  }>;
16934
17866
  type: string;
16935
17867
  }): S_8;
@@ -16938,129 +17870,66 @@ declare const SocialActions: {
16938
17870
  actions: {
16939
17871
  addOne: _reduxjs_toolkit.ActionCreatorWithPayload<{
16940
17872
  type: string;
16941
- class: string;
17873
+ targetId: number;
17874
+ targetType: string;
16942
17875
  label: string;
16943
- stats: {
16944
- total: number;
16945
- };
16946
- cssClass: string;
16947
- cssColor: string;
17876
+ icon: string;
16948
17877
  isActive: boolean;
16949
- struct: {
16950
- type: string;
16951
- targetId: number;
16952
- targetType: string;
16953
- action: string;
16954
- do: string;
16955
- };
17878
+ count?: number | undefined;
16956
17879
  }, "socialActions/addOne">;
16957
17880
  addMany: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
16958
17881
  type: string;
16959
- class: string;
17882
+ targetId: number;
17883
+ targetType: string;
16960
17884
  label: string;
16961
- stats: {
16962
- total: number;
16963
- };
16964
- cssClass: string;
16965
- cssColor: string;
17885
+ icon: string;
16966
17886
  isActive: boolean;
16967
- struct: {
16968
- type: string;
16969
- targetId: number;
16970
- targetType: string;
16971
- action: string;
16972
- do: string;
16973
- };
17887
+ count?: number | undefined;
16974
17888
  }[] | Record<_reduxjs_toolkit.EntityId, {
16975
17889
  type: string;
16976
- class: string;
17890
+ targetId: number;
17891
+ targetType: string;
16977
17892
  label: string;
16978
- stats: {
16979
- total: number;
16980
- };
16981
- cssClass: string;
16982
- cssColor: string;
17893
+ icon: string;
16983
17894
  isActive: boolean;
16984
- struct: {
16985
- type: string;
16986
- targetId: number;
16987
- targetType: string;
16988
- action: string;
16989
- do: string;
16990
- };
17895
+ count?: number | undefined;
16991
17896
  }>, "socialActions/addMany">;
16992
17897
  setAll: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
16993
17898
  type: string;
16994
- class: string;
17899
+ targetId: number;
17900
+ targetType: string;
16995
17901
  label: string;
16996
- stats: {
16997
- total: number;
16998
- };
16999
- cssClass: string;
17000
- cssColor: string;
17902
+ icon: string;
17001
17903
  isActive: boolean;
17002
- struct: {
17003
- type: string;
17004
- targetId: number;
17005
- targetType: string;
17006
- action: string;
17007
- do: string;
17008
- };
17904
+ count?: number | undefined;
17009
17905
  }[] | Record<_reduxjs_toolkit.EntityId, {
17010
17906
  type: string;
17011
- class: string;
17907
+ targetId: number;
17908
+ targetType: string;
17012
17909
  label: string;
17013
- stats: {
17014
- total: number;
17015
- };
17016
- cssClass: string;
17017
- cssColor: string;
17910
+ icon: string;
17018
17911
  isActive: boolean;
17019
- struct: {
17020
- type: string;
17021
- targetId: number;
17022
- targetType: string;
17023
- action: string;
17024
- do: string;
17025
- };
17912
+ count?: number | undefined;
17026
17913
  }>, "socialActions/setAll">;
17027
17914
  clear: _reduxjs_toolkit.ActionCreatorWithoutPayload<"socialActions/clear">;
17028
17915
  updateOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.Update<{
17029
17916
  type: string;
17030
- class: string;
17917
+ targetId: number;
17918
+ targetType: string;
17031
17919
  label: string;
17032
- stats: {
17033
- total: number;
17034
- };
17035
- cssClass: string;
17036
- cssColor: string;
17920
+ icon: string;
17037
17921
  isActive: boolean;
17038
- struct: {
17039
- type: string;
17040
- targetId: number;
17041
- targetType: string;
17042
- action: string;
17043
- do: string;
17044
- };
17922
+ count?: number | undefined;
17045
17923
  }>, "socialActions/updateOne">;
17046
17924
  };
17047
17925
  selectors: _reduxjs_toolkit.EntitySelectors<{
17048
17926
  type: string;
17049
- class: string;
17927
+ targetId: number;
17928
+ targetType: string;
17050
17929
  label: string;
17051
- stats: {
17052
- total: number;
17053
- };
17054
- cssClass: string;
17055
- cssColor: string;
17930
+ icon: string;
17056
17931
  isActive: boolean;
17057
- struct: {
17058
- type: string;
17059
- targetId: number;
17060
- targetType: string;
17061
- action: string;
17062
- do: string;
17063
- };
17932
+ count?: number | undefined;
17064
17933
  }, RootState$1>;
17065
17934
  };
17066
17935
 
@@ -19901,4 +20770,4 @@ declare const studio: {
19901
20770
  };
19902
20771
  };
19903
20772
 
19904
- 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 };