jamespot-front-business 1.1.86 → 1.1.88
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs.js +149 -18
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +146 -19
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +1723 -562
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
2
2
|
import { EntityState, PayloadAction, Dispatch, Action as Action$1 } from '@reduxjs/toolkit';
|
|
3
3
|
import * as jamespot_user_api from 'jamespot-user-api';
|
|
4
|
-
import { jUserLittle, Filters, Orders, AdminLogNavigation, AdminLogObject, AdminLogSearch, AnimationConfigurationType, AnimationStats, ApplicationType, ApiWrapper, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView,
|
|
4
|
+
import { jUserLittle, Filters, Orders, AdminLogNavigation, AdminLogObject, AdminLogSearch, AnimationConfigurationType, AnimationStats, ApplicationType, ApiWrapper, BookableAssetList, AssetReservationConfiguration, ReservationList, WithExtension, 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<WithExtension<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,165 @@ declare const Comment: {
|
|
|
4399
4400
|
emailsLimitValue?: number | undefined;
|
|
4400
4401
|
emailsPromptStatus?: string | undefined;
|
|
4401
4402
|
}>)>[] | undefined;
|
|
4402
|
-
}
|
|
4403
|
+
} & {
|
|
4404
|
+
_extend: {
|
|
4405
|
+
comments?: ({
|
|
4406
|
+
type: string;
|
|
4407
|
+
id: number;
|
|
4408
|
+
mainType: string;
|
|
4409
|
+
uri: string;
|
|
4410
|
+
dateCreation: string;
|
|
4411
|
+
dateModified: string | null;
|
|
4412
|
+
description: string | null;
|
|
4413
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
4414
|
+
title: string;
|
|
4415
|
+
_url: string;
|
|
4416
|
+
} & {
|
|
4417
|
+
[key: string]: string | number | null;
|
|
4418
|
+
level: 0 | 9 | 3 | 5;
|
|
4419
|
+
dateCreation: string;
|
|
4420
|
+
dateModified: string;
|
|
4421
|
+
};
|
|
4422
|
+
_right: jamespot_user_api.Rights;
|
|
4423
|
+
_attachedFiles?: {
|
|
4424
|
+
type: string;
|
|
4425
|
+
id: number;
|
|
4426
|
+
mainType: string;
|
|
4427
|
+
uri: string;
|
|
4428
|
+
dateCreation: string;
|
|
4429
|
+
dateModified: string | null;
|
|
4430
|
+
title: string;
|
|
4431
|
+
_url: string;
|
|
4432
|
+
mimetype: string;
|
|
4433
|
+
size: number;
|
|
4434
|
+
path?: string | undefined;
|
|
4435
|
+
}[] | undefined;
|
|
4436
|
+
_actions?: Record<string, {
|
|
4437
|
+
type: string;
|
|
4438
|
+
class: string;
|
|
4439
|
+
label: string;
|
|
4440
|
+
stats: {
|
|
4441
|
+
total: number;
|
|
4442
|
+
};
|
|
4443
|
+
cssClass: string;
|
|
4444
|
+
cssColor: string;
|
|
4445
|
+
isActive: boolean;
|
|
4446
|
+
struct: {
|
|
4447
|
+
type: string;
|
|
4448
|
+
targetId: number;
|
|
4449
|
+
targetType: string;
|
|
4450
|
+
action: string;
|
|
4451
|
+
do: string;
|
|
4452
|
+
};
|
|
4453
|
+
}> | undefined;
|
|
4454
|
+
_widgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
4455
|
+
layers?: string[] | undefined;
|
|
4456
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
4457
|
+
layers?: string[] | undefined;
|
|
4458
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
4459
|
+
layers?: string[] | undefined;
|
|
4460
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
4461
|
+
layers?: string[] | undefined;
|
|
4462
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
4463
|
+
layers?: string[] | undefined;
|
|
4464
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
4465
|
+
layers?: string[] | undefined;
|
|
4466
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
4467
|
+
layers?: string[] | undefined;
|
|
4468
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
4469
|
+
layers?: string[] | undefined;
|
|
4470
|
+
} & jamespot_user_api.WidgetType<{
|
|
4471
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
4472
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
4473
|
+
css?: Record<string, string> | undefined;
|
|
4474
|
+
edit?: boolean | undefined;
|
|
4475
|
+
}>) | ({
|
|
4476
|
+
layers?: string[] | undefined;
|
|
4477
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
4478
|
+
layers?: string[] | undefined;
|
|
4479
|
+
} & {
|
|
4480
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
4481
|
+
uniqid: string;
|
|
4482
|
+
content: {
|
|
4483
|
+
uri?: string | undefined;
|
|
4484
|
+
limit?: number | boolean | undefined;
|
|
4485
|
+
tableColumnsData?: {
|
|
4486
|
+
name?: string | undefined;
|
|
4487
|
+
label?: string | undefined;
|
|
4488
|
+
isVisible?: boolean | undefined;
|
|
4489
|
+
textEllipsis?: boolean | undefined;
|
|
4490
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
4491
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
4492
|
+
}[] | undefined;
|
|
4493
|
+
tableHeadColor?: string | undefined;
|
|
4494
|
+
tableHeadTextColor?: string | undefined;
|
|
4495
|
+
tableHeadIconColor?: string | undefined;
|
|
4496
|
+
tableRowColor?: string | undefined;
|
|
4497
|
+
tableRowTextColor?: string | undefined;
|
|
4498
|
+
tableBorderRadius?: number | undefined;
|
|
4499
|
+
tableSizedColumns?: boolean | undefined;
|
|
4500
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
4501
|
+
};
|
|
4502
|
+
}) | ({
|
|
4503
|
+
layers?: string[] | undefined;
|
|
4504
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
4505
|
+
layers?: string[] | undefined;
|
|
4506
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
4507
|
+
layers?: string[] | undefined;
|
|
4508
|
+
} & jamespot_user_api.WidgetType<{
|
|
4509
|
+
calEventsLimit?: boolean | undefined;
|
|
4510
|
+
calEventsLimitValue?: number | undefined;
|
|
4511
|
+
calEventsPromptStatus?: string | undefined;
|
|
4512
|
+
}>) | ({
|
|
4513
|
+
layers?: string[] | undefined;
|
|
4514
|
+
} & jamespot_user_api.WidgetType<{
|
|
4515
|
+
contactLimit?: boolean | undefined;
|
|
4516
|
+
contactLimitValue?: number | undefined;
|
|
4517
|
+
contactPromptStatus?: string | undefined;
|
|
4518
|
+
}>) | ({
|
|
4519
|
+
layers?: string[] | undefined;
|
|
4520
|
+
} & jamespot_user_api.WidgetType<{
|
|
4521
|
+
emailsLimit?: boolean | undefined;
|
|
4522
|
+
emailsLimitValue?: number | undefined;
|
|
4523
|
+
emailsPromptStatus?: string | undefined;
|
|
4524
|
+
}>)>[] | undefined;
|
|
4525
|
+
} & {
|
|
4526
|
+
_extend: {
|
|
4527
|
+
actions?: {
|
|
4528
|
+
type: string;
|
|
4529
|
+
targetId: number;
|
|
4530
|
+
targetType: string;
|
|
4531
|
+
label: string;
|
|
4532
|
+
icon: string | null;
|
|
4533
|
+
isActive?: boolean | undefined;
|
|
4534
|
+
count?: number | undefined;
|
|
4535
|
+
}[] | undefined;
|
|
4536
|
+
};
|
|
4537
|
+
})[] | undefined;
|
|
4538
|
+
attachments?: {
|
|
4539
|
+
type: string;
|
|
4540
|
+
id: number;
|
|
4541
|
+
mainType: string;
|
|
4542
|
+
uri: string;
|
|
4543
|
+
dateCreation: string;
|
|
4544
|
+
dateModified: string | null;
|
|
4545
|
+
title: string;
|
|
4546
|
+
_url: string;
|
|
4547
|
+
mimetype: string;
|
|
4548
|
+
size: number;
|
|
4549
|
+
path?: string | undefined;
|
|
4550
|
+
}[] | undefined;
|
|
4551
|
+
actions?: {
|
|
4552
|
+
type: string;
|
|
4553
|
+
targetId: number;
|
|
4554
|
+
targetType: string;
|
|
4555
|
+
label: string;
|
|
4556
|
+
icon: string | null;
|
|
4557
|
+
isActive?: boolean | undefined;
|
|
4558
|
+
count?: number | undefined;
|
|
4559
|
+
}[] | undefined;
|
|
4560
|
+
};
|
|
4561
|
+
})[];
|
|
4403
4562
|
}, "commentList/hydrateComment">;
|
|
4404
4563
|
updateComment: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
4405
4564
|
idArticle: number;
|
|
@@ -4988,6 +5147,164 @@ declare const Comment: {
|
|
|
4988
5147
|
emailsLimitValue?: number | undefined;
|
|
4989
5148
|
emailsPromptStatus?: string | undefined;
|
|
4990
5149
|
}>)>[] | undefined;
|
|
5150
|
+
} & {
|
|
5151
|
+
_extend: {
|
|
5152
|
+
comments?: ({
|
|
5153
|
+
type: string;
|
|
5154
|
+
id: number;
|
|
5155
|
+
mainType: string;
|
|
5156
|
+
uri: string;
|
|
5157
|
+
dateCreation: string;
|
|
5158
|
+
dateModified: string | null;
|
|
5159
|
+
description: string | null;
|
|
5160
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
5161
|
+
title: string;
|
|
5162
|
+
_url: string;
|
|
5163
|
+
} & {
|
|
5164
|
+
[key: string]: string | number | null;
|
|
5165
|
+
level: 0 | 9 | 3 | 5;
|
|
5166
|
+
dateCreation: string;
|
|
5167
|
+
dateModified: string;
|
|
5168
|
+
};
|
|
5169
|
+
_right: jamespot_user_api.Rights;
|
|
5170
|
+
_attachedFiles?: {
|
|
5171
|
+
type: string;
|
|
5172
|
+
id: number;
|
|
5173
|
+
mainType: string;
|
|
5174
|
+
uri: string;
|
|
5175
|
+
dateCreation: string;
|
|
5176
|
+
dateModified: string | null;
|
|
5177
|
+
title: string;
|
|
5178
|
+
_url: string;
|
|
5179
|
+
mimetype: string;
|
|
5180
|
+
size: number;
|
|
5181
|
+
path?: string | undefined;
|
|
5182
|
+
}[] | undefined;
|
|
5183
|
+
_actions?: Record<string, {
|
|
5184
|
+
type: string;
|
|
5185
|
+
class: string;
|
|
5186
|
+
label: string;
|
|
5187
|
+
stats: {
|
|
5188
|
+
total: number;
|
|
5189
|
+
};
|
|
5190
|
+
cssClass: string;
|
|
5191
|
+
cssColor: string;
|
|
5192
|
+
isActive: boolean;
|
|
5193
|
+
struct: {
|
|
5194
|
+
type: string;
|
|
5195
|
+
targetId: number;
|
|
5196
|
+
targetType: string;
|
|
5197
|
+
action: string;
|
|
5198
|
+
do: string;
|
|
5199
|
+
};
|
|
5200
|
+
}> | undefined;
|
|
5201
|
+
_widgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5202
|
+
layers?: string[] | undefined;
|
|
5203
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5204
|
+
layers?: string[] | undefined;
|
|
5205
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5206
|
+
layers?: string[] | undefined;
|
|
5207
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5208
|
+
layers?: string[] | undefined;
|
|
5209
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5210
|
+
layers?: string[] | undefined;
|
|
5211
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5212
|
+
layers?: string[] | undefined;
|
|
5213
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5214
|
+
layers?: string[] | undefined;
|
|
5215
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5216
|
+
layers?: string[] | undefined;
|
|
5217
|
+
} & jamespot_user_api.WidgetType<{
|
|
5218
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5219
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5220
|
+
css?: Record<string, string> | undefined;
|
|
5221
|
+
edit?: boolean | undefined;
|
|
5222
|
+
}>) | ({
|
|
5223
|
+
layers?: string[] | undefined;
|
|
5224
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5225
|
+
layers?: string[] | undefined;
|
|
5226
|
+
} & {
|
|
5227
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5228
|
+
uniqid: string;
|
|
5229
|
+
content: {
|
|
5230
|
+
uri?: string | undefined;
|
|
5231
|
+
limit?: number | boolean | undefined;
|
|
5232
|
+
tableColumnsData?: {
|
|
5233
|
+
name?: string | undefined;
|
|
5234
|
+
label?: string | undefined;
|
|
5235
|
+
isVisible?: boolean | undefined;
|
|
5236
|
+
textEllipsis?: boolean | undefined;
|
|
5237
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5238
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5239
|
+
}[] | undefined;
|
|
5240
|
+
tableHeadColor?: string | undefined;
|
|
5241
|
+
tableHeadTextColor?: string | undefined;
|
|
5242
|
+
tableHeadIconColor?: string | undefined;
|
|
5243
|
+
tableRowColor?: string | undefined;
|
|
5244
|
+
tableRowTextColor?: string | undefined;
|
|
5245
|
+
tableBorderRadius?: number | undefined;
|
|
5246
|
+
tableSizedColumns?: boolean | undefined;
|
|
5247
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5248
|
+
};
|
|
5249
|
+
}) | ({
|
|
5250
|
+
layers?: string[] | undefined;
|
|
5251
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5252
|
+
layers?: string[] | undefined;
|
|
5253
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5254
|
+
layers?: string[] | undefined;
|
|
5255
|
+
} & jamespot_user_api.WidgetType<{
|
|
5256
|
+
calEventsLimit?: boolean | undefined;
|
|
5257
|
+
calEventsLimitValue?: number | undefined;
|
|
5258
|
+
calEventsPromptStatus?: string | undefined;
|
|
5259
|
+
}>) | ({
|
|
5260
|
+
layers?: string[] | undefined;
|
|
5261
|
+
} & jamespot_user_api.WidgetType<{
|
|
5262
|
+
contactLimit?: boolean | undefined;
|
|
5263
|
+
contactLimitValue?: number | undefined;
|
|
5264
|
+
contactPromptStatus?: string | undefined;
|
|
5265
|
+
}>) | ({
|
|
5266
|
+
layers?: string[] | undefined;
|
|
5267
|
+
} & jamespot_user_api.WidgetType<{
|
|
5268
|
+
emailsLimit?: boolean | undefined;
|
|
5269
|
+
emailsLimitValue?: number | undefined;
|
|
5270
|
+
emailsPromptStatus?: string | undefined;
|
|
5271
|
+
}>)>[] | undefined;
|
|
5272
|
+
} & {
|
|
5273
|
+
_extend: {
|
|
5274
|
+
actions?: {
|
|
5275
|
+
type: string;
|
|
5276
|
+
targetId: number;
|
|
5277
|
+
targetType: string;
|
|
5278
|
+
label: string;
|
|
5279
|
+
icon: string | null;
|
|
5280
|
+
isActive?: boolean | undefined;
|
|
5281
|
+
count?: number | undefined;
|
|
5282
|
+
}[] | undefined;
|
|
5283
|
+
};
|
|
5284
|
+
})[] | undefined;
|
|
5285
|
+
attachments?: {
|
|
5286
|
+
type: string;
|
|
5287
|
+
id: number;
|
|
5288
|
+
mainType: string;
|
|
5289
|
+
uri: string;
|
|
5290
|
+
dateCreation: string;
|
|
5291
|
+
dateModified: string | null;
|
|
5292
|
+
title: string;
|
|
5293
|
+
_url: string;
|
|
5294
|
+
mimetype: string;
|
|
5295
|
+
size: number;
|
|
5296
|
+
path?: string | undefined;
|
|
5297
|
+
}[] | undefined;
|
|
5298
|
+
actions?: {
|
|
5299
|
+
type: string;
|
|
5300
|
+
targetId: number;
|
|
5301
|
+
targetType: string;
|
|
5302
|
+
label: string;
|
|
5303
|
+
icon: string | null;
|
|
5304
|
+
isActive?: boolean | undefined;
|
|
5305
|
+
count?: number | undefined;
|
|
5306
|
+
}[] | undefined;
|
|
5307
|
+
};
|
|
4991
5308
|
} & {
|
|
4992
5309
|
pending?: boolean;
|
|
4993
5310
|
})[];
|
|
@@ -4996,35 +5313,1221 @@ declare const Comment: {
|
|
|
4996
5313
|
getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
|
|
4997
5314
|
};
|
|
4998
5315
|
|
|
4999
|
-
type
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5316
|
+
type ContentReportSliceRootState = Loading & {
|
|
5317
|
+
reports: ContentReportList[];
|
|
5318
|
+
page: number;
|
|
5319
|
+
tab: 'my' | 'all';
|
|
5320
|
+
filters: Filters;
|
|
5321
|
+
orders: Orders;
|
|
5322
|
+
limit: number;
|
|
5004
5323
|
nbResults: number;
|
|
5005
|
-
|
|
5006
|
-
|
|
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;
|
|
5324
|
+
pendingReports: Array<ContentReportList & {
|
|
5325
|
+
requestId: string;
|
|
5016
5326
|
}>;
|
|
5017
5327
|
};
|
|
5018
|
-
|
|
5019
|
-
|
|
5020
|
-
}
|
|
5021
|
-
type bookmarkEditState = Loading & {
|
|
5022
|
-
bookmark: BookmarkRawList | undefined;
|
|
5023
|
-
status: 'success' | 'error' | undefined;
|
|
5328
|
+
type ContentReportRootState = {
|
|
5329
|
+
contentReport: ContentReportSliceRootState;
|
|
5024
5330
|
};
|
|
5025
|
-
|
|
5026
|
-
|
|
5027
|
-
|
|
5331
|
+
|
|
5332
|
+
declare const contentReportSlice: _reduxjs_toolkit.Slice<ContentReportSliceRootState, {
|
|
5333
|
+
setTab: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['tab']>) => void;
|
|
5334
|
+
setPage: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['page']>) => void;
|
|
5335
|
+
setFilters: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['filters']>) => void;
|
|
5336
|
+
setOrders: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['orders']>) => void;
|
|
5337
|
+
}, "contentReport">;
|
|
5338
|
+
declare const fetchReports: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
5339
|
+
type: string;
|
|
5340
|
+
status: ContentReportStatus;
|
|
5341
|
+
id: number;
|
|
5342
|
+
mainType: string;
|
|
5343
|
+
uri: string;
|
|
5344
|
+
dateCreation: string;
|
|
5345
|
+
dateModified: string;
|
|
5346
|
+
title: string;
|
|
5347
|
+
_url: string;
|
|
5348
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
5349
|
+
title: string;
|
|
5350
|
+
_url: string;
|
|
5351
|
+
} & {
|
|
5352
|
+
[key: string]: string | number | null;
|
|
5353
|
+
level: 0 | 9 | 3 | 5;
|
|
5354
|
+
dateCreation: string;
|
|
5355
|
+
dateModified: string;
|
|
5356
|
+
};
|
|
5357
|
+
_right: jamespot_user_api.Rights;
|
|
5358
|
+
_audience: (jamespot_user_api.jUserLittle | {
|
|
5359
|
+
type: string;
|
|
5360
|
+
id: number;
|
|
5361
|
+
mainType: string;
|
|
5362
|
+
uri: string;
|
|
5363
|
+
dateCreation: string;
|
|
5364
|
+
dateModified: string;
|
|
5365
|
+
title: string;
|
|
5366
|
+
_url: string;
|
|
5367
|
+
privacy: jamespot_user_api.GroupPrivacy;
|
|
5368
|
+
category: number;
|
|
5369
|
+
} | {
|
|
5370
|
+
type: "folder" | "rootFolder";
|
|
5371
|
+
id: number;
|
|
5372
|
+
mainType: string;
|
|
5373
|
+
uri: string;
|
|
5374
|
+
title: string;
|
|
5375
|
+
_url: string;
|
|
5376
|
+
dateCreation?: string | undefined;
|
|
5377
|
+
dateModified?: string | null | undefined;
|
|
5378
|
+
folderColor?: string | undefined;
|
|
5379
|
+
})[];
|
|
5380
|
+
articleId: number;
|
|
5381
|
+
articleType: string;
|
|
5382
|
+
articleTitle: string;
|
|
5383
|
+
articleUrl: string;
|
|
5384
|
+
description?: string | null | undefined;
|
|
5385
|
+
image?: {
|
|
5386
|
+
width: number;
|
|
5387
|
+
height: number;
|
|
5388
|
+
} | undefined;
|
|
5389
|
+
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5390
|
+
layers?: string[] | undefined;
|
|
5391
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5392
|
+
layers?: string[] | undefined;
|
|
5393
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5394
|
+
layers?: string[] | undefined;
|
|
5395
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5396
|
+
layers?: string[] | undefined;
|
|
5397
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5398
|
+
layers?: string[] | undefined;
|
|
5399
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5400
|
+
layers?: string[] | undefined;
|
|
5401
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5402
|
+
layers?: string[] | undefined;
|
|
5403
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5404
|
+
layers?: string[] | undefined;
|
|
5405
|
+
} & jamespot_user_api.WidgetType<{
|
|
5406
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5407
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5408
|
+
css?: Record<string, string> | undefined;
|
|
5409
|
+
edit?: boolean | undefined;
|
|
5410
|
+
}>) | ({
|
|
5411
|
+
layers?: string[] | undefined;
|
|
5412
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5413
|
+
layers?: string[] | undefined;
|
|
5414
|
+
} & {
|
|
5415
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5416
|
+
uniqid: string;
|
|
5417
|
+
content: {
|
|
5418
|
+
uri?: string | undefined;
|
|
5419
|
+
limit?: number | boolean | undefined;
|
|
5420
|
+
tableColumnsData?: {
|
|
5421
|
+
name?: string | undefined;
|
|
5422
|
+
label?: string | undefined;
|
|
5423
|
+
isVisible?: boolean | undefined;
|
|
5424
|
+
textEllipsis?: boolean | undefined;
|
|
5425
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5426
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5427
|
+
}[] | undefined;
|
|
5428
|
+
tableHeadColor?: string | undefined;
|
|
5429
|
+
tableHeadTextColor?: string | undefined;
|
|
5430
|
+
tableHeadIconColor?: string | undefined;
|
|
5431
|
+
tableRowColor?: string | undefined;
|
|
5432
|
+
tableRowTextColor?: string | undefined;
|
|
5433
|
+
tableBorderRadius?: number | undefined;
|
|
5434
|
+
tableSizedColumns?: boolean | undefined;
|
|
5435
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5436
|
+
};
|
|
5437
|
+
}) | ({
|
|
5438
|
+
layers?: string[] | undefined;
|
|
5439
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5440
|
+
layers?: string[] | undefined;
|
|
5441
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5442
|
+
layers?: string[] | undefined;
|
|
5443
|
+
} & jamespot_user_api.WidgetType<{
|
|
5444
|
+
calEventsLimit?: boolean | undefined;
|
|
5445
|
+
calEventsLimitValue?: number | undefined;
|
|
5446
|
+
calEventsPromptStatus?: string | undefined;
|
|
5447
|
+
}>) | ({
|
|
5448
|
+
layers?: string[] | undefined;
|
|
5449
|
+
} & jamespot_user_api.WidgetType<{
|
|
5450
|
+
contactLimit?: boolean | undefined;
|
|
5451
|
+
contactLimitValue?: number | undefined;
|
|
5452
|
+
contactPromptStatus?: string | undefined;
|
|
5453
|
+
}>) | ({
|
|
5454
|
+
layers?: string[] | undefined;
|
|
5455
|
+
} & jamespot_user_api.WidgetType<{
|
|
5456
|
+
emailsLimit?: boolean | undefined;
|
|
5457
|
+
emailsLimitValue?: number | undefined;
|
|
5458
|
+
emailsPromptStatus?: string | undefined;
|
|
5459
|
+
}>)>[] | undefined;
|
|
5460
|
+
commentId?: number | undefined;
|
|
5461
|
+
commentType?: string | undefined;
|
|
5462
|
+
}>, void, {
|
|
5463
|
+
dispatch: any;
|
|
5464
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5465
|
+
widgets: {
|
|
5466
|
+
layers: Record<string, {
|
|
5467
|
+
title: string;
|
|
5468
|
+
visible: boolean;
|
|
5469
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5470
|
+
layers?: string[] | undefined;
|
|
5471
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5472
|
+
layers?: string[] | undefined;
|
|
5473
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5474
|
+
layers?: string[] | undefined;
|
|
5475
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5476
|
+
layers?: string[] | undefined;
|
|
5477
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5478
|
+
layers?: string[] | undefined;
|
|
5479
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5480
|
+
layers?: string[] | undefined;
|
|
5481
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5482
|
+
layers?: string[] | undefined;
|
|
5483
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5484
|
+
layers?: string[] | undefined;
|
|
5485
|
+
} & jamespot_user_api.WidgetType<{
|
|
5486
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5487
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5488
|
+
css?: Record<string, string> | undefined;
|
|
5489
|
+
edit?: boolean | undefined;
|
|
5490
|
+
}>) | ({
|
|
5491
|
+
layers?: string[] | undefined;
|
|
5492
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5493
|
+
layers?: string[] | undefined;
|
|
5494
|
+
} & {
|
|
5495
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5496
|
+
uniqid: string;
|
|
5497
|
+
content: {
|
|
5498
|
+
uri?: string | undefined;
|
|
5499
|
+
limit?: number | boolean | undefined;
|
|
5500
|
+
tableColumnsData?: {
|
|
5501
|
+
name?: string | undefined;
|
|
5502
|
+
label?: string | undefined;
|
|
5503
|
+
isVisible?: boolean | undefined;
|
|
5504
|
+
textEllipsis?: boolean | undefined;
|
|
5505
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5506
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5507
|
+
}[] | undefined;
|
|
5508
|
+
tableHeadColor?: string | undefined;
|
|
5509
|
+
tableHeadTextColor?: string | undefined;
|
|
5510
|
+
tableHeadIconColor?: string | undefined;
|
|
5511
|
+
tableRowColor?: string | undefined;
|
|
5512
|
+
tableRowTextColor?: string | undefined;
|
|
5513
|
+
tableBorderRadius?: number | undefined;
|
|
5514
|
+
tableSizedColumns?: boolean | undefined;
|
|
5515
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5516
|
+
};
|
|
5517
|
+
}) | ({
|
|
5518
|
+
layers?: string[] | undefined;
|
|
5519
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5520
|
+
layers?: string[] | undefined;
|
|
5521
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5522
|
+
layers?: string[] | undefined;
|
|
5523
|
+
} & jamespot_user_api.WidgetType<{
|
|
5524
|
+
calEventsLimit?: boolean | undefined;
|
|
5525
|
+
calEventsLimitValue?: number | undefined;
|
|
5526
|
+
calEventsPromptStatus?: string | undefined;
|
|
5527
|
+
}>) | ({
|
|
5528
|
+
layers?: string[] | undefined;
|
|
5529
|
+
} & jamespot_user_api.WidgetType<{
|
|
5530
|
+
contactLimit?: boolean | undefined;
|
|
5531
|
+
contactLimitValue?: number | undefined;
|
|
5532
|
+
contactPromptStatus?: string | undefined;
|
|
5533
|
+
}>) | ({
|
|
5534
|
+
layers?: string[] | undefined;
|
|
5535
|
+
} & jamespot_user_api.WidgetType<{
|
|
5536
|
+
emailsLimit?: boolean | undefined;
|
|
5537
|
+
emailsLimitValue?: number | undefined;
|
|
5538
|
+
emailsPromptStatus?: string | undefined;
|
|
5539
|
+
}>)>[];
|
|
5540
|
+
uniqid: string;
|
|
5541
|
+
locked: boolean;
|
|
5542
|
+
position?: {
|
|
5543
|
+
x: number;
|
|
5544
|
+
y: number;
|
|
5545
|
+
} | undefined;
|
|
5546
|
+
}>;
|
|
5547
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
5548
|
+
layers?: string[] | undefined;
|
|
5549
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5550
|
+
layers?: string[] | undefined;
|
|
5551
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5552
|
+
layers?: string[] | undefined;
|
|
5553
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5554
|
+
layers?: string[] | undefined;
|
|
5555
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5556
|
+
layers?: string[] | undefined;
|
|
5557
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5558
|
+
layers?: string[] | undefined;
|
|
5559
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5560
|
+
layers?: string[] | undefined;
|
|
5561
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5562
|
+
layers?: string[] | undefined;
|
|
5563
|
+
} & jamespot_user_api.WidgetType<{
|
|
5564
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5565
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5566
|
+
css?: Record<string, string> | undefined;
|
|
5567
|
+
edit?: boolean | undefined;
|
|
5568
|
+
}>) | ({
|
|
5569
|
+
layers?: string[] | undefined;
|
|
5570
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5571
|
+
layers?: string[] | undefined;
|
|
5572
|
+
} & {
|
|
5573
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5574
|
+
uniqid: string;
|
|
5575
|
+
content: {
|
|
5576
|
+
uri?: string | undefined;
|
|
5577
|
+
limit?: number | boolean | undefined;
|
|
5578
|
+
tableColumnsData?: {
|
|
5579
|
+
name?: string | undefined;
|
|
5580
|
+
label?: string | undefined;
|
|
5581
|
+
isVisible?: boolean | undefined;
|
|
5582
|
+
textEllipsis?: boolean | undefined;
|
|
5583
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5584
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5585
|
+
}[] | undefined;
|
|
5586
|
+
tableHeadColor?: string | undefined;
|
|
5587
|
+
tableHeadTextColor?: string | undefined;
|
|
5588
|
+
tableHeadIconColor?: string | undefined;
|
|
5589
|
+
tableRowColor?: string | undefined;
|
|
5590
|
+
tableRowTextColor?: string | undefined;
|
|
5591
|
+
tableBorderRadius?: number | undefined;
|
|
5592
|
+
tableSizedColumns?: boolean | undefined;
|
|
5593
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5594
|
+
};
|
|
5595
|
+
}) | ({
|
|
5596
|
+
layers?: string[] | undefined;
|
|
5597
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5598
|
+
layers?: string[] | undefined;
|
|
5599
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5600
|
+
layers?: string[] | undefined;
|
|
5601
|
+
} & jamespot_user_api.WidgetType<{
|
|
5602
|
+
calEventsLimit?: boolean | undefined;
|
|
5603
|
+
calEventsLimitValue?: number | undefined;
|
|
5604
|
+
calEventsPromptStatus?: string | undefined;
|
|
5605
|
+
}>) | ({
|
|
5606
|
+
layers?: string[] | undefined;
|
|
5607
|
+
} & jamespot_user_api.WidgetType<{
|
|
5608
|
+
contactLimit?: boolean | undefined;
|
|
5609
|
+
contactLimitValue?: number | undefined;
|
|
5610
|
+
contactPromptStatus?: string | undefined;
|
|
5611
|
+
}>) | ({
|
|
5612
|
+
layers?: string[] | undefined;
|
|
5613
|
+
} & jamespot_user_api.WidgetType<{
|
|
5614
|
+
emailsLimit?: boolean | undefined;
|
|
5615
|
+
emailsLimitValue?: number | undefined;
|
|
5616
|
+
emailsPromptStatus?: string | undefined;
|
|
5617
|
+
}>)>>;
|
|
5618
|
+
states: Record<string, {
|
|
5619
|
+
busy?: boolean | undefined;
|
|
5620
|
+
loading?: boolean | undefined;
|
|
5621
|
+
initialized?: boolean | undefined;
|
|
5622
|
+
mounted?: boolean | undefined;
|
|
5623
|
+
hover?: boolean | undefined;
|
|
5624
|
+
empty?: boolean | undefined;
|
|
5625
|
+
locked?: boolean | undefined;
|
|
5626
|
+
}>;
|
|
5627
|
+
editableMap: Record<string, {
|
|
5628
|
+
uniqid: string;
|
|
5629
|
+
index: number;
|
|
5630
|
+
}>;
|
|
5631
|
+
currentEditableIndex: number;
|
|
5632
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
5633
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
5634
|
+
widgetObject: Record<string, {
|
|
5635
|
+
type?: string | undefined;
|
|
5636
|
+
id?: number | undefined;
|
|
5637
|
+
mainType?: string | undefined;
|
|
5638
|
+
uri?: string | undefined;
|
|
5639
|
+
dateCreation?: string | undefined;
|
|
5640
|
+
dateModified?: string | null | undefined;
|
|
5641
|
+
title?: string | undefined;
|
|
5642
|
+
_url?: string | undefined;
|
|
5643
|
+
}>;
|
|
5644
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
5645
|
+
widgetChipCount: Record<string, number>;
|
|
5646
|
+
widgetAuthor: Record<string, {
|
|
5647
|
+
type?: string | undefined;
|
|
5648
|
+
id?: number | undefined;
|
|
5649
|
+
mainType?: string | undefined;
|
|
5650
|
+
uri?: string | undefined;
|
|
5651
|
+
dateCreation?: string | undefined;
|
|
5652
|
+
dateModified?: string | undefined;
|
|
5653
|
+
title?: string | undefined;
|
|
5654
|
+
_url?: string | undefined;
|
|
5655
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
5656
|
+
}>;
|
|
5657
|
+
flushedWidgets: string[];
|
|
5658
|
+
rtObjectStack: {
|
|
5659
|
+
object: jamespot_user_api.jObjectBase & {
|
|
5660
|
+
title: string;
|
|
5661
|
+
_url: string;
|
|
5662
|
+
};
|
|
5663
|
+
uniqid: string;
|
|
5664
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
5665
|
+
}[];
|
|
5666
|
+
token?: string | undefined;
|
|
5667
|
+
modal?: {
|
|
5668
|
+
title?: string | undefined;
|
|
5669
|
+
view?: any;
|
|
5670
|
+
} | undefined;
|
|
5671
|
+
currentEditableWidgetId?: string | undefined;
|
|
5672
|
+
};
|
|
5673
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
5674
|
+
extra: {
|
|
5675
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
5676
|
+
};
|
|
5677
|
+
rejectValue: {
|
|
5678
|
+
error: number;
|
|
5679
|
+
errorMsg: string;
|
|
5680
|
+
};
|
|
5681
|
+
serializedErrorType?: unknown;
|
|
5682
|
+
pendingMeta?: unknown;
|
|
5683
|
+
fulfilledMeta?: unknown;
|
|
5684
|
+
rejectedMeta?: unknown;
|
|
5685
|
+
}>;
|
|
5686
|
+
declare const updateStatus: _reduxjs_toolkit.AsyncThunk<boolean, {
|
|
5687
|
+
uri: string;
|
|
5688
|
+
status: ContentReportStatus;
|
|
5689
|
+
}, {
|
|
5690
|
+
dispatch: any;
|
|
5691
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
5692
|
+
widgets: {
|
|
5693
|
+
layers: Record<string, {
|
|
5694
|
+
title: string;
|
|
5695
|
+
visible: boolean;
|
|
5696
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5697
|
+
layers?: string[] | undefined;
|
|
5698
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5699
|
+
layers?: string[] | undefined;
|
|
5700
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5701
|
+
layers?: string[] | undefined;
|
|
5702
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5703
|
+
layers?: string[] | undefined;
|
|
5704
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5705
|
+
layers?: string[] | undefined;
|
|
5706
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5707
|
+
layers?: string[] | undefined;
|
|
5708
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5709
|
+
layers?: string[] | undefined;
|
|
5710
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5711
|
+
layers?: string[] | undefined;
|
|
5712
|
+
} & jamespot_user_api.WidgetType<{
|
|
5713
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5714
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5715
|
+
css?: Record<string, string> | undefined;
|
|
5716
|
+
edit?: boolean | undefined;
|
|
5717
|
+
}>) | ({
|
|
5718
|
+
layers?: string[] | undefined;
|
|
5719
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5720
|
+
layers?: string[] | undefined;
|
|
5721
|
+
} & {
|
|
5722
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5723
|
+
uniqid: string;
|
|
5724
|
+
content: {
|
|
5725
|
+
uri?: string | undefined;
|
|
5726
|
+
limit?: number | boolean | undefined;
|
|
5727
|
+
tableColumnsData?: {
|
|
5728
|
+
name?: string | undefined;
|
|
5729
|
+
label?: string | undefined;
|
|
5730
|
+
isVisible?: boolean | undefined;
|
|
5731
|
+
textEllipsis?: boolean | undefined;
|
|
5732
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5733
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5734
|
+
}[] | undefined;
|
|
5735
|
+
tableHeadColor?: string | undefined;
|
|
5736
|
+
tableHeadTextColor?: string | undefined;
|
|
5737
|
+
tableHeadIconColor?: string | undefined;
|
|
5738
|
+
tableRowColor?: string | undefined;
|
|
5739
|
+
tableRowTextColor?: string | undefined;
|
|
5740
|
+
tableBorderRadius?: number | undefined;
|
|
5741
|
+
tableSizedColumns?: boolean | undefined;
|
|
5742
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5743
|
+
};
|
|
5744
|
+
}) | ({
|
|
5745
|
+
layers?: string[] | undefined;
|
|
5746
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5747
|
+
layers?: string[] | undefined;
|
|
5748
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5749
|
+
layers?: string[] | undefined;
|
|
5750
|
+
} & jamespot_user_api.WidgetType<{
|
|
5751
|
+
calEventsLimit?: boolean | undefined;
|
|
5752
|
+
calEventsLimitValue?: number | undefined;
|
|
5753
|
+
calEventsPromptStatus?: string | undefined;
|
|
5754
|
+
}>) | ({
|
|
5755
|
+
layers?: string[] | undefined;
|
|
5756
|
+
} & jamespot_user_api.WidgetType<{
|
|
5757
|
+
contactLimit?: boolean | undefined;
|
|
5758
|
+
contactLimitValue?: number | undefined;
|
|
5759
|
+
contactPromptStatus?: string | undefined;
|
|
5760
|
+
}>) | ({
|
|
5761
|
+
layers?: string[] | undefined;
|
|
5762
|
+
} & jamespot_user_api.WidgetType<{
|
|
5763
|
+
emailsLimit?: boolean | undefined;
|
|
5764
|
+
emailsLimitValue?: number | undefined;
|
|
5765
|
+
emailsPromptStatus?: string | undefined;
|
|
5766
|
+
}>)>[];
|
|
5767
|
+
uniqid: string;
|
|
5768
|
+
locked: boolean;
|
|
5769
|
+
position?: {
|
|
5770
|
+
x: number;
|
|
5771
|
+
y: number;
|
|
5772
|
+
} | undefined;
|
|
5773
|
+
}>;
|
|
5774
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
5775
|
+
layers?: string[] | undefined;
|
|
5776
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5777
|
+
layers?: string[] | undefined;
|
|
5778
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5779
|
+
layers?: string[] | undefined;
|
|
5780
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5781
|
+
layers?: string[] | undefined;
|
|
5782
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5783
|
+
layers?: string[] | undefined;
|
|
5784
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5785
|
+
layers?: string[] | undefined;
|
|
5786
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5787
|
+
layers?: string[] | undefined;
|
|
5788
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5789
|
+
layers?: string[] | undefined;
|
|
5790
|
+
} & jamespot_user_api.WidgetType<{
|
|
5791
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5792
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5793
|
+
css?: Record<string, string> | undefined;
|
|
5794
|
+
edit?: boolean | undefined;
|
|
5795
|
+
}>) | ({
|
|
5796
|
+
layers?: string[] | undefined;
|
|
5797
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5798
|
+
layers?: string[] | undefined;
|
|
5799
|
+
} & {
|
|
5800
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5801
|
+
uniqid: string;
|
|
5802
|
+
content: {
|
|
5803
|
+
uri?: string | undefined;
|
|
5804
|
+
limit?: number | boolean | undefined;
|
|
5805
|
+
tableColumnsData?: {
|
|
5806
|
+
name?: string | undefined;
|
|
5807
|
+
label?: string | undefined;
|
|
5808
|
+
isVisible?: boolean | undefined;
|
|
5809
|
+
textEllipsis?: boolean | undefined;
|
|
5810
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
5811
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
5812
|
+
}[] | undefined;
|
|
5813
|
+
tableHeadColor?: string | undefined;
|
|
5814
|
+
tableHeadTextColor?: string | undefined;
|
|
5815
|
+
tableHeadIconColor?: string | undefined;
|
|
5816
|
+
tableRowColor?: string | undefined;
|
|
5817
|
+
tableRowTextColor?: string | undefined;
|
|
5818
|
+
tableBorderRadius?: number | undefined;
|
|
5819
|
+
tableSizedColumns?: boolean | undefined;
|
|
5820
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
5821
|
+
};
|
|
5822
|
+
}) | ({
|
|
5823
|
+
layers?: string[] | undefined;
|
|
5824
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
5825
|
+
layers?: string[] | undefined;
|
|
5826
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
5827
|
+
layers?: string[] | undefined;
|
|
5828
|
+
} & jamespot_user_api.WidgetType<{
|
|
5829
|
+
calEventsLimit?: boolean | undefined;
|
|
5830
|
+
calEventsLimitValue?: number | undefined;
|
|
5831
|
+
calEventsPromptStatus?: string | undefined;
|
|
5832
|
+
}>) | ({
|
|
5833
|
+
layers?: string[] | undefined;
|
|
5834
|
+
} & jamespot_user_api.WidgetType<{
|
|
5835
|
+
contactLimit?: boolean | undefined;
|
|
5836
|
+
contactLimitValue?: number | undefined;
|
|
5837
|
+
contactPromptStatus?: string | undefined;
|
|
5838
|
+
}>) | ({
|
|
5839
|
+
layers?: string[] | undefined;
|
|
5840
|
+
} & jamespot_user_api.WidgetType<{
|
|
5841
|
+
emailsLimit?: boolean | undefined;
|
|
5842
|
+
emailsLimitValue?: number | undefined;
|
|
5843
|
+
emailsPromptStatus?: string | undefined;
|
|
5844
|
+
}>)>>;
|
|
5845
|
+
states: Record<string, {
|
|
5846
|
+
busy?: boolean | undefined;
|
|
5847
|
+
loading?: boolean | undefined;
|
|
5848
|
+
initialized?: boolean | undefined;
|
|
5849
|
+
mounted?: boolean | undefined;
|
|
5850
|
+
hover?: boolean | undefined;
|
|
5851
|
+
empty?: boolean | undefined;
|
|
5852
|
+
locked?: boolean | undefined;
|
|
5853
|
+
}>;
|
|
5854
|
+
editableMap: Record<string, {
|
|
5855
|
+
uniqid: string;
|
|
5856
|
+
index: number;
|
|
5857
|
+
}>;
|
|
5858
|
+
currentEditableIndex: number;
|
|
5859
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
5860
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
5861
|
+
widgetObject: Record<string, {
|
|
5862
|
+
type?: string | undefined;
|
|
5863
|
+
id?: number | undefined;
|
|
5864
|
+
mainType?: string | undefined;
|
|
5865
|
+
uri?: string | undefined;
|
|
5866
|
+
dateCreation?: string | undefined;
|
|
5867
|
+
dateModified?: string | null | undefined;
|
|
5868
|
+
title?: string | undefined;
|
|
5869
|
+
_url?: string | undefined;
|
|
5870
|
+
}>;
|
|
5871
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
5872
|
+
widgetChipCount: Record<string, number>;
|
|
5873
|
+
widgetAuthor: Record<string, {
|
|
5874
|
+
type?: string | undefined;
|
|
5875
|
+
id?: number | undefined;
|
|
5876
|
+
mainType?: string | undefined;
|
|
5877
|
+
uri?: string | undefined;
|
|
5878
|
+
dateCreation?: string | undefined;
|
|
5879
|
+
dateModified?: string | undefined;
|
|
5880
|
+
title?: string | undefined;
|
|
5881
|
+
_url?: string | undefined;
|
|
5882
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
5883
|
+
}>;
|
|
5884
|
+
flushedWidgets: string[];
|
|
5885
|
+
rtObjectStack: {
|
|
5886
|
+
object: jamespot_user_api.jObjectBase & {
|
|
5887
|
+
title: string;
|
|
5888
|
+
_url: string;
|
|
5889
|
+
};
|
|
5890
|
+
uniqid: string;
|
|
5891
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
5892
|
+
}[];
|
|
5893
|
+
token?: string | undefined;
|
|
5894
|
+
modal?: {
|
|
5895
|
+
title?: string | undefined;
|
|
5896
|
+
view?: any;
|
|
5897
|
+
} | undefined;
|
|
5898
|
+
currentEditableWidgetId?: string | undefined;
|
|
5899
|
+
};
|
|
5900
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
5901
|
+
extra: {
|
|
5902
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
5903
|
+
};
|
|
5904
|
+
rejectValue: {
|
|
5905
|
+
error: number;
|
|
5906
|
+
errorMsg: string;
|
|
5907
|
+
};
|
|
5908
|
+
serializedErrorType?: unknown;
|
|
5909
|
+
pendingMeta?: unknown;
|
|
5910
|
+
fulfilledMeta?: unknown;
|
|
5911
|
+
rejectedMeta?: unknown;
|
|
5912
|
+
}>;
|
|
5913
|
+
declare const ContentReport: {
|
|
5914
|
+
slice: _reduxjs_toolkit.Slice<ContentReportSliceRootState, {
|
|
5915
|
+
setTab: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['tab']>) => void;
|
|
5916
|
+
setPage: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['page']>) => void;
|
|
5917
|
+
setFilters: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['filters']>) => void;
|
|
5918
|
+
setOrders: (state: Draft<S>, action: PayloadAction<ContentReportSliceRootState['orders']>) => void;
|
|
5919
|
+
}, "contentReport">;
|
|
5920
|
+
actions: {
|
|
5921
|
+
fetchReports: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
5922
|
+
type: string;
|
|
5923
|
+
status: ContentReportStatus;
|
|
5924
|
+
id: number;
|
|
5925
|
+
mainType: string;
|
|
5926
|
+
uri: string;
|
|
5927
|
+
dateCreation: string;
|
|
5928
|
+
dateModified: string;
|
|
5929
|
+
title: string;
|
|
5930
|
+
_url: string;
|
|
5931
|
+
_user: jamespot_user_api.jObjectBase & {
|
|
5932
|
+
title: string;
|
|
5933
|
+
_url: string;
|
|
5934
|
+
} & {
|
|
5935
|
+
[key: string]: string | number | null;
|
|
5936
|
+
level: 0 | 9 | 3 | 5;
|
|
5937
|
+
dateCreation: string;
|
|
5938
|
+
dateModified: string;
|
|
5939
|
+
};
|
|
5940
|
+
_right: jamespot_user_api.Rights;
|
|
5941
|
+
_audience: (jamespot_user_api.jUserLittle | {
|
|
5942
|
+
type: string;
|
|
5943
|
+
id: number;
|
|
5944
|
+
mainType: string;
|
|
5945
|
+
uri: string;
|
|
5946
|
+
dateCreation: string;
|
|
5947
|
+
dateModified: string;
|
|
5948
|
+
title: string;
|
|
5949
|
+
_url: string;
|
|
5950
|
+
privacy: jamespot_user_api.GroupPrivacy;
|
|
5951
|
+
category: number;
|
|
5952
|
+
} | {
|
|
5953
|
+
type: "folder" | "rootFolder";
|
|
5954
|
+
id: number;
|
|
5955
|
+
mainType: string;
|
|
5956
|
+
uri: string;
|
|
5957
|
+
title: string;
|
|
5958
|
+
_url: string;
|
|
5959
|
+
dateCreation?: string | undefined;
|
|
5960
|
+
dateModified?: string | null | undefined;
|
|
5961
|
+
folderColor?: string | undefined;
|
|
5962
|
+
})[];
|
|
5963
|
+
articleId: number;
|
|
5964
|
+
articleType: string;
|
|
5965
|
+
articleTitle: string;
|
|
5966
|
+
articleUrl: string;
|
|
5967
|
+
description?: string | null | undefined;
|
|
5968
|
+
image?: {
|
|
5969
|
+
width: number;
|
|
5970
|
+
height: number;
|
|
5971
|
+
} | undefined;
|
|
5972
|
+
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
5973
|
+
layers?: string[] | undefined;
|
|
5974
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
5975
|
+
layers?: string[] | undefined;
|
|
5976
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
5977
|
+
layers?: string[] | undefined;
|
|
5978
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
5979
|
+
layers?: string[] | undefined;
|
|
5980
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
5981
|
+
layers?: string[] | undefined;
|
|
5982
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
5983
|
+
layers?: string[] | undefined;
|
|
5984
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
5985
|
+
layers?: string[] | undefined;
|
|
5986
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
5987
|
+
layers?: string[] | undefined;
|
|
5988
|
+
} & jamespot_user_api.WidgetType<{
|
|
5989
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
5990
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
5991
|
+
css?: Record<string, string> | undefined;
|
|
5992
|
+
edit?: boolean | undefined;
|
|
5993
|
+
}>) | ({
|
|
5994
|
+
layers?: string[] | undefined;
|
|
5995
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
5996
|
+
layers?: string[] | undefined;
|
|
5997
|
+
} & {
|
|
5998
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
5999
|
+
uniqid: string;
|
|
6000
|
+
content: {
|
|
6001
|
+
uri?: string | undefined;
|
|
6002
|
+
limit?: number | boolean | undefined;
|
|
6003
|
+
tableColumnsData?: {
|
|
6004
|
+
name?: string | undefined;
|
|
6005
|
+
label?: string | undefined;
|
|
6006
|
+
isVisible?: boolean | undefined;
|
|
6007
|
+
textEllipsis?: boolean | undefined;
|
|
6008
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6009
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6010
|
+
}[] | undefined;
|
|
6011
|
+
tableHeadColor?: string | undefined;
|
|
6012
|
+
tableHeadTextColor?: string | undefined;
|
|
6013
|
+
tableHeadIconColor?: string | undefined;
|
|
6014
|
+
tableRowColor?: string | undefined;
|
|
6015
|
+
tableRowTextColor?: string | undefined;
|
|
6016
|
+
tableBorderRadius?: number | undefined;
|
|
6017
|
+
tableSizedColumns?: boolean | undefined;
|
|
6018
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6019
|
+
};
|
|
6020
|
+
}) | ({
|
|
6021
|
+
layers?: string[] | undefined;
|
|
6022
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6023
|
+
layers?: string[] | undefined;
|
|
6024
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6025
|
+
layers?: string[] | undefined;
|
|
6026
|
+
} & jamespot_user_api.WidgetType<{
|
|
6027
|
+
calEventsLimit?: boolean | undefined;
|
|
6028
|
+
calEventsLimitValue?: number | undefined;
|
|
6029
|
+
calEventsPromptStatus?: string | undefined;
|
|
6030
|
+
}>) | ({
|
|
6031
|
+
layers?: string[] | undefined;
|
|
6032
|
+
} & jamespot_user_api.WidgetType<{
|
|
6033
|
+
contactLimit?: boolean | undefined;
|
|
6034
|
+
contactLimitValue?: number | undefined;
|
|
6035
|
+
contactPromptStatus?: string | undefined;
|
|
6036
|
+
}>) | ({
|
|
6037
|
+
layers?: string[] | undefined;
|
|
6038
|
+
} & jamespot_user_api.WidgetType<{
|
|
6039
|
+
emailsLimit?: boolean | undefined;
|
|
6040
|
+
emailsLimitValue?: number | undefined;
|
|
6041
|
+
emailsPromptStatus?: string | undefined;
|
|
6042
|
+
}>)>[] | undefined;
|
|
6043
|
+
commentId?: number | undefined;
|
|
6044
|
+
commentType?: string | undefined;
|
|
6045
|
+
}>, void, {
|
|
6046
|
+
dispatch: any;
|
|
6047
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
6048
|
+
widgets: {
|
|
6049
|
+
layers: Record<string, {
|
|
6050
|
+
title: string;
|
|
6051
|
+
visible: boolean;
|
|
6052
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
6053
|
+
layers?: string[] | undefined;
|
|
6054
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
6055
|
+
layers?: string[] | undefined;
|
|
6056
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
6057
|
+
layers?: string[] | undefined;
|
|
6058
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
6059
|
+
layers?: string[] | undefined;
|
|
6060
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
6061
|
+
layers?: string[] | undefined;
|
|
6062
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
6063
|
+
layers?: string[] | undefined;
|
|
6064
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6065
|
+
layers?: string[] | undefined;
|
|
6066
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6067
|
+
layers?: string[] | undefined;
|
|
6068
|
+
} & jamespot_user_api.WidgetType<{
|
|
6069
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6070
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6071
|
+
css?: Record<string, string> | undefined;
|
|
6072
|
+
edit?: boolean | undefined;
|
|
6073
|
+
}>) | ({
|
|
6074
|
+
layers?: string[] | undefined;
|
|
6075
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6076
|
+
layers?: string[] | undefined;
|
|
6077
|
+
} & {
|
|
6078
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6079
|
+
uniqid: string;
|
|
6080
|
+
content: {
|
|
6081
|
+
uri?: string | undefined;
|
|
6082
|
+
limit?: number | boolean | undefined;
|
|
6083
|
+
tableColumnsData?: {
|
|
6084
|
+
name?: string | undefined;
|
|
6085
|
+
label?: string | undefined;
|
|
6086
|
+
isVisible?: boolean | undefined;
|
|
6087
|
+
textEllipsis?: boolean | undefined;
|
|
6088
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6089
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6090
|
+
}[] | undefined;
|
|
6091
|
+
tableHeadColor?: string | undefined;
|
|
6092
|
+
tableHeadTextColor?: string | undefined;
|
|
6093
|
+
tableHeadIconColor?: string | undefined;
|
|
6094
|
+
tableRowColor?: string | undefined;
|
|
6095
|
+
tableRowTextColor?: string | undefined;
|
|
6096
|
+
tableBorderRadius?: number | undefined;
|
|
6097
|
+
tableSizedColumns?: boolean | undefined;
|
|
6098
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6099
|
+
};
|
|
6100
|
+
}) | ({
|
|
6101
|
+
layers?: string[] | undefined;
|
|
6102
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6103
|
+
layers?: string[] | undefined;
|
|
6104
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6105
|
+
layers?: string[] | undefined;
|
|
6106
|
+
} & jamespot_user_api.WidgetType<{
|
|
6107
|
+
calEventsLimit?: boolean | undefined;
|
|
6108
|
+
calEventsLimitValue?: number | undefined;
|
|
6109
|
+
calEventsPromptStatus?: string | undefined;
|
|
6110
|
+
}>) | ({
|
|
6111
|
+
layers?: string[] | undefined;
|
|
6112
|
+
} & jamespot_user_api.WidgetType<{
|
|
6113
|
+
contactLimit?: boolean | undefined;
|
|
6114
|
+
contactLimitValue?: number | undefined;
|
|
6115
|
+
contactPromptStatus?: string | undefined;
|
|
6116
|
+
}>) | ({
|
|
6117
|
+
layers?: string[] | undefined;
|
|
6118
|
+
} & jamespot_user_api.WidgetType<{
|
|
6119
|
+
emailsLimit?: boolean | undefined;
|
|
6120
|
+
emailsLimitValue?: number | undefined;
|
|
6121
|
+
emailsPromptStatus?: string | undefined;
|
|
6122
|
+
}>)>[];
|
|
6123
|
+
uniqid: string;
|
|
6124
|
+
locked: boolean;
|
|
6125
|
+
position?: {
|
|
6126
|
+
x: number;
|
|
6127
|
+
y: number;
|
|
6128
|
+
} | undefined;
|
|
6129
|
+
}>;
|
|
6130
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
6131
|
+
layers?: string[] | undefined;
|
|
6132
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
6133
|
+
layers?: string[] | undefined;
|
|
6134
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
6135
|
+
layers?: string[] | undefined;
|
|
6136
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
6137
|
+
layers?: string[] | undefined;
|
|
6138
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
6139
|
+
layers?: string[] | undefined;
|
|
6140
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
6141
|
+
layers?: string[] | undefined;
|
|
6142
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6143
|
+
layers?: string[] | undefined;
|
|
6144
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6145
|
+
layers?: string[] | undefined;
|
|
6146
|
+
} & jamespot_user_api.WidgetType<{
|
|
6147
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6148
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6149
|
+
css?: Record<string, string> | undefined;
|
|
6150
|
+
edit?: boolean | undefined;
|
|
6151
|
+
}>) | ({
|
|
6152
|
+
layers?: string[] | undefined;
|
|
6153
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6154
|
+
layers?: string[] | undefined;
|
|
6155
|
+
} & {
|
|
6156
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6157
|
+
uniqid: string;
|
|
6158
|
+
content: {
|
|
6159
|
+
uri?: string | undefined;
|
|
6160
|
+
limit?: number | boolean | undefined;
|
|
6161
|
+
tableColumnsData?: {
|
|
6162
|
+
name?: string | undefined;
|
|
6163
|
+
label?: string | undefined;
|
|
6164
|
+
isVisible?: boolean | undefined;
|
|
6165
|
+
textEllipsis?: boolean | undefined;
|
|
6166
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6167
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6168
|
+
}[] | undefined;
|
|
6169
|
+
tableHeadColor?: string | undefined;
|
|
6170
|
+
tableHeadTextColor?: string | undefined;
|
|
6171
|
+
tableHeadIconColor?: string | undefined;
|
|
6172
|
+
tableRowColor?: string | undefined;
|
|
6173
|
+
tableRowTextColor?: string | undefined;
|
|
6174
|
+
tableBorderRadius?: number | undefined;
|
|
6175
|
+
tableSizedColumns?: boolean | undefined;
|
|
6176
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6177
|
+
};
|
|
6178
|
+
}) | ({
|
|
6179
|
+
layers?: string[] | undefined;
|
|
6180
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6181
|
+
layers?: string[] | undefined;
|
|
6182
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6183
|
+
layers?: string[] | undefined;
|
|
6184
|
+
} & jamespot_user_api.WidgetType<{
|
|
6185
|
+
calEventsLimit?: boolean | undefined;
|
|
6186
|
+
calEventsLimitValue?: number | undefined;
|
|
6187
|
+
calEventsPromptStatus?: string | undefined;
|
|
6188
|
+
}>) | ({
|
|
6189
|
+
layers?: string[] | undefined;
|
|
6190
|
+
} & jamespot_user_api.WidgetType<{
|
|
6191
|
+
contactLimit?: boolean | undefined;
|
|
6192
|
+
contactLimitValue?: number | undefined;
|
|
6193
|
+
contactPromptStatus?: string | undefined;
|
|
6194
|
+
}>) | ({
|
|
6195
|
+
layers?: string[] | undefined;
|
|
6196
|
+
} & jamespot_user_api.WidgetType<{
|
|
6197
|
+
emailsLimit?: boolean | undefined;
|
|
6198
|
+
emailsLimitValue?: number | undefined;
|
|
6199
|
+
emailsPromptStatus?: string | undefined;
|
|
6200
|
+
}>)>>;
|
|
6201
|
+
states: Record<string, {
|
|
6202
|
+
busy?: boolean | undefined;
|
|
6203
|
+
loading?: boolean | undefined;
|
|
6204
|
+
initialized?: boolean | undefined;
|
|
6205
|
+
mounted?: boolean | undefined;
|
|
6206
|
+
hover?: boolean | undefined;
|
|
6207
|
+
empty?: boolean | undefined;
|
|
6208
|
+
locked?: boolean | undefined;
|
|
6209
|
+
}>;
|
|
6210
|
+
editableMap: Record<string, {
|
|
6211
|
+
uniqid: string;
|
|
6212
|
+
index: number;
|
|
6213
|
+
}>;
|
|
6214
|
+
currentEditableIndex: number;
|
|
6215
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
6216
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
6217
|
+
widgetObject: Record<string, {
|
|
6218
|
+
type?: string | undefined;
|
|
6219
|
+
id?: number | undefined;
|
|
6220
|
+
mainType?: string | undefined;
|
|
6221
|
+
uri?: string | undefined;
|
|
6222
|
+
dateCreation?: string | undefined;
|
|
6223
|
+
dateModified?: string | null | undefined;
|
|
6224
|
+
title?: string | undefined;
|
|
6225
|
+
_url?: string | undefined;
|
|
6226
|
+
}>;
|
|
6227
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
6228
|
+
widgetChipCount: Record<string, number>;
|
|
6229
|
+
widgetAuthor: Record<string, {
|
|
6230
|
+
type?: string | undefined;
|
|
6231
|
+
id?: number | undefined;
|
|
6232
|
+
mainType?: string | undefined;
|
|
6233
|
+
uri?: string | undefined;
|
|
6234
|
+
dateCreation?: string | undefined;
|
|
6235
|
+
dateModified?: string | undefined;
|
|
6236
|
+
title?: string | undefined;
|
|
6237
|
+
_url?: string | undefined;
|
|
6238
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
6239
|
+
}>;
|
|
6240
|
+
flushedWidgets: string[];
|
|
6241
|
+
rtObjectStack: {
|
|
6242
|
+
object: jamespot_user_api.jObjectBase & {
|
|
6243
|
+
title: string;
|
|
6244
|
+
_url: string;
|
|
6245
|
+
};
|
|
6246
|
+
uniqid: string;
|
|
6247
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
6248
|
+
}[];
|
|
6249
|
+
token?: string | undefined;
|
|
6250
|
+
modal?: {
|
|
6251
|
+
title?: string | undefined;
|
|
6252
|
+
view?: any;
|
|
6253
|
+
} | undefined;
|
|
6254
|
+
currentEditableWidgetId?: string | undefined;
|
|
6255
|
+
};
|
|
6256
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
6257
|
+
extra: {
|
|
6258
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
6259
|
+
};
|
|
6260
|
+
rejectValue: {
|
|
6261
|
+
error: number;
|
|
6262
|
+
errorMsg: string;
|
|
6263
|
+
};
|
|
6264
|
+
serializedErrorType?: unknown;
|
|
6265
|
+
pendingMeta?: unknown;
|
|
6266
|
+
fulfilledMeta?: unknown;
|
|
6267
|
+
rejectedMeta?: unknown;
|
|
6268
|
+
}>;
|
|
6269
|
+
updateStatus: _reduxjs_toolkit.AsyncThunk<boolean, {
|
|
6270
|
+
uri: string;
|
|
6271
|
+
status: ContentReportStatus;
|
|
6272
|
+
}, {
|
|
6273
|
+
dispatch: any;
|
|
6274
|
+
state: Partial<AdminLogsRootState & AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & {
|
|
6275
|
+
widgets: {
|
|
6276
|
+
layers: Record<string, {
|
|
6277
|
+
title: string;
|
|
6278
|
+
visible: boolean;
|
|
6279
|
+
widgets: jamespot_user_api.WidgetWrapperGeneric<({
|
|
6280
|
+
layers?: string[] | undefined;
|
|
6281
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
6282
|
+
layers?: string[] | undefined;
|
|
6283
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
6284
|
+
layers?: string[] | undefined;
|
|
6285
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
6286
|
+
layers?: string[] | undefined;
|
|
6287
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
6288
|
+
layers?: string[] | undefined;
|
|
6289
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
6290
|
+
layers?: string[] | undefined;
|
|
6291
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6292
|
+
layers?: string[] | undefined;
|
|
6293
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6294
|
+
layers?: string[] | undefined;
|
|
6295
|
+
} & jamespot_user_api.WidgetType<{
|
|
6296
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6297
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6298
|
+
css?: Record<string, string> | undefined;
|
|
6299
|
+
edit?: boolean | undefined;
|
|
6300
|
+
}>) | ({
|
|
6301
|
+
layers?: string[] | undefined;
|
|
6302
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6303
|
+
layers?: string[] | undefined;
|
|
6304
|
+
} & {
|
|
6305
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6306
|
+
uniqid: string;
|
|
6307
|
+
content: {
|
|
6308
|
+
uri?: string | undefined;
|
|
6309
|
+
limit?: number | boolean | undefined;
|
|
6310
|
+
tableColumnsData?: {
|
|
6311
|
+
name?: string | undefined;
|
|
6312
|
+
label?: string | undefined;
|
|
6313
|
+
isVisible?: boolean | undefined;
|
|
6314
|
+
textEllipsis?: boolean | undefined;
|
|
6315
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6316
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6317
|
+
}[] | undefined;
|
|
6318
|
+
tableHeadColor?: string | undefined;
|
|
6319
|
+
tableHeadTextColor?: string | undefined;
|
|
6320
|
+
tableHeadIconColor?: string | undefined;
|
|
6321
|
+
tableRowColor?: string | undefined;
|
|
6322
|
+
tableRowTextColor?: string | undefined;
|
|
6323
|
+
tableBorderRadius?: number | undefined;
|
|
6324
|
+
tableSizedColumns?: boolean | undefined;
|
|
6325
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6326
|
+
};
|
|
6327
|
+
}) | ({
|
|
6328
|
+
layers?: string[] | undefined;
|
|
6329
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6330
|
+
layers?: string[] | undefined;
|
|
6331
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6332
|
+
layers?: string[] | undefined;
|
|
6333
|
+
} & jamespot_user_api.WidgetType<{
|
|
6334
|
+
calEventsLimit?: boolean | undefined;
|
|
6335
|
+
calEventsLimitValue?: number | undefined;
|
|
6336
|
+
calEventsPromptStatus?: string | undefined;
|
|
6337
|
+
}>) | ({
|
|
6338
|
+
layers?: string[] | undefined;
|
|
6339
|
+
} & jamespot_user_api.WidgetType<{
|
|
6340
|
+
contactLimit?: boolean | undefined;
|
|
6341
|
+
contactLimitValue?: number | undefined;
|
|
6342
|
+
contactPromptStatus?: string | undefined;
|
|
6343
|
+
}>) | ({
|
|
6344
|
+
layers?: string[] | undefined;
|
|
6345
|
+
} & jamespot_user_api.WidgetType<{
|
|
6346
|
+
emailsLimit?: boolean | undefined;
|
|
6347
|
+
emailsLimitValue?: number | undefined;
|
|
6348
|
+
emailsPromptStatus?: string | undefined;
|
|
6349
|
+
}>)>[];
|
|
6350
|
+
uniqid: string;
|
|
6351
|
+
locked: boolean;
|
|
6352
|
+
position?: {
|
|
6353
|
+
x: number;
|
|
6354
|
+
y: number;
|
|
6355
|
+
} | undefined;
|
|
6356
|
+
}>;
|
|
6357
|
+
ids: Record<string, jamespot_user_api.WidgetWrapperGeneric<({
|
|
6358
|
+
layers?: string[] | undefined;
|
|
6359
|
+
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
6360
|
+
layers?: string[] | undefined;
|
|
6361
|
+
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
6362
|
+
layers?: string[] | undefined;
|
|
6363
|
+
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
6364
|
+
layers?: string[] | undefined;
|
|
6365
|
+
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
6366
|
+
layers?: string[] | undefined;
|
|
6367
|
+
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
6368
|
+
layers?: string[] | undefined;
|
|
6369
|
+
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
6370
|
+
layers?: string[] | undefined;
|
|
6371
|
+
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
6372
|
+
layers?: string[] | undefined;
|
|
6373
|
+
} & jamespot_user_api.WidgetType<{
|
|
6374
|
+
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
6375
|
+
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
6376
|
+
css?: Record<string, string> | undefined;
|
|
6377
|
+
edit?: boolean | undefined;
|
|
6378
|
+
}>) | ({
|
|
6379
|
+
layers?: string[] | undefined;
|
|
6380
|
+
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
6381
|
+
layers?: string[] | undefined;
|
|
6382
|
+
} & {
|
|
6383
|
+
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
6384
|
+
uniqid: string;
|
|
6385
|
+
content: {
|
|
6386
|
+
uri?: string | undefined;
|
|
6387
|
+
limit?: number | boolean | undefined;
|
|
6388
|
+
tableColumnsData?: {
|
|
6389
|
+
name?: string | undefined;
|
|
6390
|
+
label?: string | undefined;
|
|
6391
|
+
isVisible?: boolean | undefined;
|
|
6392
|
+
textEllipsis?: boolean | undefined;
|
|
6393
|
+
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
6394
|
+
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
6395
|
+
}[] | undefined;
|
|
6396
|
+
tableHeadColor?: string | undefined;
|
|
6397
|
+
tableHeadTextColor?: string | undefined;
|
|
6398
|
+
tableHeadIconColor?: string | undefined;
|
|
6399
|
+
tableRowColor?: string | undefined;
|
|
6400
|
+
tableRowTextColor?: string | undefined;
|
|
6401
|
+
tableBorderRadius?: number | undefined;
|
|
6402
|
+
tableSizedColumns?: boolean | undefined;
|
|
6403
|
+
tableSizedColumnsWidth?: number | undefined;
|
|
6404
|
+
};
|
|
6405
|
+
}) | ({
|
|
6406
|
+
layers?: string[] | undefined;
|
|
6407
|
+
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
6408
|
+
layers?: string[] | undefined;
|
|
6409
|
+
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
6410
|
+
layers?: string[] | undefined;
|
|
6411
|
+
} & jamespot_user_api.WidgetType<{
|
|
6412
|
+
calEventsLimit?: boolean | undefined;
|
|
6413
|
+
calEventsLimitValue?: number | undefined;
|
|
6414
|
+
calEventsPromptStatus?: string | undefined;
|
|
6415
|
+
}>) | ({
|
|
6416
|
+
layers?: string[] | undefined;
|
|
6417
|
+
} & jamespot_user_api.WidgetType<{
|
|
6418
|
+
contactLimit?: boolean | undefined;
|
|
6419
|
+
contactLimitValue?: number | undefined;
|
|
6420
|
+
contactPromptStatus?: string | undefined;
|
|
6421
|
+
}>) | ({
|
|
6422
|
+
layers?: string[] | undefined;
|
|
6423
|
+
} & jamespot_user_api.WidgetType<{
|
|
6424
|
+
emailsLimit?: boolean | undefined;
|
|
6425
|
+
emailsLimitValue?: number | undefined;
|
|
6426
|
+
emailsPromptStatus?: string | undefined;
|
|
6427
|
+
}>)>>;
|
|
6428
|
+
states: Record<string, {
|
|
6429
|
+
busy?: boolean | undefined;
|
|
6430
|
+
loading?: boolean | undefined;
|
|
6431
|
+
initialized?: boolean | undefined;
|
|
6432
|
+
mounted?: boolean | undefined;
|
|
6433
|
+
hover?: boolean | undefined;
|
|
6434
|
+
empty?: boolean | undefined;
|
|
6435
|
+
locked?: boolean | undefined;
|
|
6436
|
+
}>;
|
|
6437
|
+
editableMap: Record<string, {
|
|
6438
|
+
uniqid: string;
|
|
6439
|
+
index: number;
|
|
6440
|
+
}>;
|
|
6441
|
+
currentEditableIndex: number;
|
|
6442
|
+
widgetWrapperStyle: Record<string, Record<string, string | number>>;
|
|
6443
|
+
widgetTitleStyle: Record<string, Record<string, string | number>>;
|
|
6444
|
+
widgetObject: Record<string, {
|
|
6445
|
+
type?: string | undefined;
|
|
6446
|
+
id?: number | undefined;
|
|
6447
|
+
mainType?: string | undefined;
|
|
6448
|
+
uri?: string | undefined;
|
|
6449
|
+
dateCreation?: string | undefined;
|
|
6450
|
+
dateModified?: string | null | undefined;
|
|
6451
|
+
title?: string | undefined;
|
|
6452
|
+
_url?: string | undefined;
|
|
6453
|
+
}>;
|
|
6454
|
+
widgetObjectRights: Record<string, jamespot_user_api.Rights>;
|
|
6455
|
+
widgetChipCount: Record<string, number>;
|
|
6456
|
+
widgetAuthor: Record<string, {
|
|
6457
|
+
type?: string | undefined;
|
|
6458
|
+
id?: number | undefined;
|
|
6459
|
+
mainType?: string | undefined;
|
|
6460
|
+
uri?: string | undefined;
|
|
6461
|
+
dateCreation?: string | undefined;
|
|
6462
|
+
dateModified?: string | undefined;
|
|
6463
|
+
title?: string | undefined;
|
|
6464
|
+
_url?: string | undefined;
|
|
6465
|
+
level?: 0 | 9 | 3 | 5 | undefined;
|
|
6466
|
+
}>;
|
|
6467
|
+
flushedWidgets: string[];
|
|
6468
|
+
rtObjectStack: {
|
|
6469
|
+
object: jamespot_user_api.jObjectBase & {
|
|
6470
|
+
title: string;
|
|
6471
|
+
_url: string;
|
|
6472
|
+
};
|
|
6473
|
+
uniqid: string;
|
|
6474
|
+
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
6475
|
+
}[];
|
|
6476
|
+
token?: string | undefined;
|
|
6477
|
+
modal?: {
|
|
6478
|
+
title?: string | undefined;
|
|
6479
|
+
view?: any;
|
|
6480
|
+
} | undefined;
|
|
6481
|
+
currentEditableWidgetId?: string | undefined;
|
|
6482
|
+
};
|
|
6483
|
+
} & WedocAppRootState & UserCurrentRootState> & ContentReportRootState;
|
|
6484
|
+
extra: {
|
|
6485
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
6486
|
+
};
|
|
6487
|
+
rejectValue: {
|
|
6488
|
+
error: number;
|
|
6489
|
+
errorMsg: string;
|
|
6490
|
+
};
|
|
6491
|
+
serializedErrorType?: unknown;
|
|
6492
|
+
pendingMeta?: unknown;
|
|
6493
|
+
fulfilledMeta?: unknown;
|
|
6494
|
+
rejectedMeta?: unknown;
|
|
6495
|
+
}>;
|
|
6496
|
+
};
|
|
6497
|
+
selectors: {
|
|
6498
|
+
selectContentReport: (state: ContentReportRootState) => ContentReportSliceRootState;
|
|
6499
|
+
};
|
|
6500
|
+
};
|
|
6501
|
+
|
|
6502
|
+
type BookmarkRootState = {
|
|
6503
|
+
bookmark: bookmarkListRootState & bookmarkEditRootState;
|
|
6504
|
+
};
|
|
6505
|
+
type bookmarkListState = Loading & {
|
|
6506
|
+
bookmarks: BookmarkRawList[];
|
|
6507
|
+
nbResults: number;
|
|
6508
|
+
status: 'success' | 'error' | undefined;
|
|
6509
|
+
isInitialized: boolean;
|
|
6510
|
+
add: Record<string, Loading & {
|
|
6511
|
+
status: 'success' | 'error' | undefined;
|
|
6512
|
+
id?: number;
|
|
6513
|
+
}>;
|
|
6514
|
+
move: Loading & {
|
|
6515
|
+
status: 'success' | 'error' | undefined;
|
|
6516
|
+
};
|
|
6517
|
+
delete: Record<string, Loading & {
|
|
6518
|
+
status: 'success' | 'error' | undefined;
|
|
6519
|
+
}>;
|
|
6520
|
+
};
|
|
6521
|
+
interface bookmarkListRootState {
|
|
6522
|
+
bookmarkList: bookmarkListState;
|
|
6523
|
+
}
|
|
6524
|
+
type bookmarkEditState = Loading & {
|
|
6525
|
+
bookmark: BookmarkRawList | undefined;
|
|
6526
|
+
status: 'success' | 'error' | undefined;
|
|
6527
|
+
};
|
|
6528
|
+
interface bookmarkEditRootState {
|
|
6529
|
+
bookmarkEdit: bookmarkEditState;
|
|
6530
|
+
}
|
|
5028
6531
|
|
|
5029
6532
|
declare const Bookmark: {
|
|
5030
6533
|
slice: {
|
|
@@ -16379,127 +17882,64 @@ type RootState$1 = {
|
|
|
16379
17882
|
declare const SocialActions: {
|
|
16380
17883
|
slice: _reduxjs_toolkit.Slice<EntityState<{
|
|
16381
17884
|
type: string;
|
|
16382
|
-
|
|
17885
|
+
targetId: number;
|
|
17886
|
+
targetType: string;
|
|
16383
17887
|
label: string;
|
|
16384
|
-
|
|
16385
|
-
|
|
16386
|
-
|
|
16387
|
-
cssClass: string;
|
|
16388
|
-
cssColor: string;
|
|
16389
|
-
isActive: boolean;
|
|
16390
|
-
struct: {
|
|
16391
|
-
type: string;
|
|
16392
|
-
targetId: number;
|
|
16393
|
-
targetType: string;
|
|
16394
|
-
action: string;
|
|
16395
|
-
do: string;
|
|
16396
|
-
};
|
|
17888
|
+
icon: string | null;
|
|
17889
|
+
isActive?: boolean | undefined;
|
|
17890
|
+
count?: number | undefined;
|
|
16397
17891
|
}>, {
|
|
16398
17892
|
addOne: {
|
|
16399
17893
|
<S extends EntityState<{
|
|
16400
17894
|
type: string;
|
|
16401
|
-
|
|
17895
|
+
targetId: number;
|
|
17896
|
+
targetType: string;
|
|
16402
17897
|
label: string;
|
|
16403
|
-
|
|
16404
|
-
|
|
16405
|
-
|
|
16406
|
-
cssClass: string;
|
|
16407
|
-
cssColor: string;
|
|
16408
|
-
isActive: boolean;
|
|
16409
|
-
struct: {
|
|
16410
|
-
type: string;
|
|
16411
|
-
targetId: number;
|
|
16412
|
-
targetType: string;
|
|
16413
|
-
action: string;
|
|
16414
|
-
do: string;
|
|
16415
|
-
};
|
|
17898
|
+
icon: string | null;
|
|
17899
|
+
isActive?: boolean | undefined;
|
|
17900
|
+
count?: number | undefined;
|
|
16416
17901
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<{
|
|
16417
17902
|
type: string;
|
|
16418
|
-
|
|
17903
|
+
targetId: number;
|
|
17904
|
+
targetType: string;
|
|
16419
17905
|
label: string;
|
|
16420
|
-
|
|
16421
|
-
|
|
16422
|
-
|
|
16423
|
-
cssClass: string;
|
|
16424
|
-
cssColor: string;
|
|
16425
|
-
isActive: boolean;
|
|
16426
|
-
struct: {
|
|
16427
|
-
type: string;
|
|
16428
|
-
targetId: number;
|
|
16429
|
-
targetType: string;
|
|
16430
|
-
action: string;
|
|
16431
|
-
do: string;
|
|
16432
|
-
};
|
|
17906
|
+
icon: string | null;
|
|
17907
|
+
isActive?: boolean | undefined;
|
|
17908
|
+
count?: number | undefined;
|
|
16433
17909
|
}>, S>, entity: {
|
|
16434
17910
|
type: string;
|
|
16435
|
-
|
|
17911
|
+
targetId: number;
|
|
17912
|
+
targetType: string;
|
|
16436
17913
|
label: string;
|
|
16437
|
-
|
|
16438
|
-
|
|
16439
|
-
|
|
16440
|
-
cssClass: string;
|
|
16441
|
-
cssColor: string;
|
|
16442
|
-
isActive: boolean;
|
|
16443
|
-
struct: {
|
|
16444
|
-
type: string;
|
|
16445
|
-
targetId: number;
|
|
16446
|
-
targetType: string;
|
|
16447
|
-
action: string;
|
|
16448
|
-
do: string;
|
|
16449
|
-
};
|
|
17914
|
+
icon: string | null;
|
|
17915
|
+
isActive?: boolean | undefined;
|
|
17916
|
+
count?: number | undefined;
|
|
16450
17917
|
}): S;
|
|
16451
17918
|
<S_1 extends EntityState<{
|
|
16452
17919
|
type: string;
|
|
16453
|
-
|
|
17920
|
+
targetId: number;
|
|
17921
|
+
targetType: string;
|
|
16454
17922
|
label: string;
|
|
16455
|
-
|
|
16456
|
-
|
|
16457
|
-
|
|
16458
|
-
cssClass: string;
|
|
16459
|
-
cssColor: string;
|
|
16460
|
-
isActive: boolean;
|
|
16461
|
-
struct: {
|
|
16462
|
-
type: string;
|
|
16463
|
-
targetId: number;
|
|
16464
|
-
targetType: string;
|
|
16465
|
-
action: string;
|
|
16466
|
-
do: string;
|
|
16467
|
-
};
|
|
17923
|
+
icon: string | null;
|
|
17924
|
+
isActive?: boolean | undefined;
|
|
17925
|
+
count?: number | undefined;
|
|
16468
17926
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<{
|
|
16469
17927
|
type: string;
|
|
16470
|
-
|
|
17928
|
+
targetId: number;
|
|
17929
|
+
targetType: string;
|
|
16471
17930
|
label: string;
|
|
16472
|
-
|
|
16473
|
-
|
|
16474
|
-
|
|
16475
|
-
cssClass: string;
|
|
16476
|
-
cssColor: string;
|
|
16477
|
-
isActive: boolean;
|
|
16478
|
-
struct: {
|
|
16479
|
-
type: string;
|
|
16480
|
-
targetId: number;
|
|
16481
|
-
targetType: string;
|
|
16482
|
-
action: string;
|
|
16483
|
-
do: string;
|
|
16484
|
-
};
|
|
17931
|
+
icon: string | null;
|
|
17932
|
+
isActive?: boolean | undefined;
|
|
17933
|
+
count?: number | undefined;
|
|
16485
17934
|
}>, S_1>, action: {
|
|
16486
17935
|
payload: {
|
|
16487
17936
|
type: string;
|
|
16488
|
-
|
|
17937
|
+
targetId: number;
|
|
17938
|
+
targetType: string;
|
|
16489
17939
|
label: string;
|
|
16490
|
-
|
|
16491
|
-
|
|
16492
|
-
|
|
16493
|
-
cssClass: string;
|
|
16494
|
-
cssColor: string;
|
|
16495
|
-
isActive: boolean;
|
|
16496
|
-
struct: {
|
|
16497
|
-
type: string;
|
|
16498
|
-
targetId: number;
|
|
16499
|
-
targetType: string;
|
|
16500
|
-
action: string;
|
|
16501
|
-
do: string;
|
|
16502
|
-
};
|
|
17940
|
+
icon: string | null;
|
|
17941
|
+
isActive?: boolean | undefined;
|
|
17942
|
+
count?: number | undefined;
|
|
16503
17943
|
};
|
|
16504
17944
|
type: string;
|
|
16505
17945
|
}): S_1;
|
|
@@ -16507,142 +17947,70 @@ declare const SocialActions: {
|
|
|
16507
17947
|
addMany: {
|
|
16508
17948
|
<S_2 extends EntityState<{
|
|
16509
17949
|
type: string;
|
|
16510
|
-
|
|
17950
|
+
targetId: number;
|
|
17951
|
+
targetType: string;
|
|
16511
17952
|
label: string;
|
|
16512
|
-
|
|
16513
|
-
|
|
16514
|
-
|
|
16515
|
-
cssClass: string;
|
|
16516
|
-
cssColor: string;
|
|
16517
|
-
isActive: boolean;
|
|
16518
|
-
struct: {
|
|
16519
|
-
type: string;
|
|
16520
|
-
targetId: number;
|
|
16521
|
-
targetType: string;
|
|
16522
|
-
action: string;
|
|
16523
|
-
do: string;
|
|
16524
|
-
};
|
|
17953
|
+
icon: string | null;
|
|
17954
|
+
isActive?: boolean | undefined;
|
|
17955
|
+
count?: number | undefined;
|
|
16525
17956
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<{
|
|
16526
17957
|
type: string;
|
|
16527
|
-
|
|
17958
|
+
targetId: number;
|
|
17959
|
+
targetType: string;
|
|
16528
17960
|
label: string;
|
|
16529
|
-
|
|
16530
|
-
|
|
16531
|
-
|
|
16532
|
-
cssClass: string;
|
|
16533
|
-
cssColor: string;
|
|
16534
|
-
isActive: boolean;
|
|
16535
|
-
struct: {
|
|
16536
|
-
type: string;
|
|
16537
|
-
targetId: number;
|
|
16538
|
-
targetType: string;
|
|
16539
|
-
action: string;
|
|
16540
|
-
do: string;
|
|
16541
|
-
};
|
|
17961
|
+
icon: string | null;
|
|
17962
|
+
isActive?: boolean | undefined;
|
|
17963
|
+
count?: number | undefined;
|
|
16542
17964
|
}>, S_2>, entities: readonly {
|
|
16543
17965
|
type: string;
|
|
16544
|
-
|
|
17966
|
+
targetId: number;
|
|
17967
|
+
targetType: string;
|
|
16545
17968
|
label: string;
|
|
16546
|
-
|
|
16547
|
-
|
|
16548
|
-
|
|
16549
|
-
cssClass: string;
|
|
16550
|
-
cssColor: string;
|
|
16551
|
-
isActive: boolean;
|
|
16552
|
-
struct: {
|
|
16553
|
-
type: string;
|
|
16554
|
-
targetId: number;
|
|
16555
|
-
targetType: string;
|
|
16556
|
-
action: string;
|
|
16557
|
-
do: string;
|
|
16558
|
-
};
|
|
17969
|
+
icon: string | null;
|
|
17970
|
+
isActive?: boolean | undefined;
|
|
17971
|
+
count?: number | undefined;
|
|
16559
17972
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16560
17973
|
type: string;
|
|
16561
|
-
|
|
17974
|
+
targetId: number;
|
|
17975
|
+
targetType: string;
|
|
16562
17976
|
label: string;
|
|
16563
|
-
|
|
16564
|
-
|
|
16565
|
-
|
|
16566
|
-
cssClass: string;
|
|
16567
|
-
cssColor: string;
|
|
16568
|
-
isActive: boolean;
|
|
16569
|
-
struct: {
|
|
16570
|
-
type: string;
|
|
16571
|
-
targetId: number;
|
|
16572
|
-
targetType: string;
|
|
16573
|
-
action: string;
|
|
16574
|
-
do: string;
|
|
16575
|
-
};
|
|
17977
|
+
icon: string | null;
|
|
17978
|
+
isActive?: boolean | undefined;
|
|
17979
|
+
count?: number | undefined;
|
|
16576
17980
|
}>): S_2;
|
|
16577
17981
|
<S_3 extends EntityState<{
|
|
16578
17982
|
type: string;
|
|
16579
|
-
|
|
17983
|
+
targetId: number;
|
|
17984
|
+
targetType: string;
|
|
16580
17985
|
label: string;
|
|
16581
|
-
|
|
16582
|
-
|
|
16583
|
-
|
|
16584
|
-
cssClass: string;
|
|
16585
|
-
cssColor: string;
|
|
16586
|
-
isActive: boolean;
|
|
16587
|
-
struct: {
|
|
16588
|
-
type: string;
|
|
16589
|
-
targetId: number;
|
|
16590
|
-
targetType: string;
|
|
16591
|
-
action: string;
|
|
16592
|
-
do: string;
|
|
16593
|
-
};
|
|
17986
|
+
icon: string | null;
|
|
17987
|
+
isActive?: boolean | undefined;
|
|
17988
|
+
count?: number | undefined;
|
|
16594
17989
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<{
|
|
16595
17990
|
type: string;
|
|
16596
|
-
|
|
17991
|
+
targetId: number;
|
|
17992
|
+
targetType: string;
|
|
16597
17993
|
label: string;
|
|
16598
|
-
|
|
16599
|
-
|
|
16600
|
-
|
|
16601
|
-
cssClass: string;
|
|
16602
|
-
cssColor: string;
|
|
16603
|
-
isActive: boolean;
|
|
16604
|
-
struct: {
|
|
16605
|
-
type: string;
|
|
16606
|
-
targetId: number;
|
|
16607
|
-
targetType: string;
|
|
16608
|
-
action: string;
|
|
16609
|
-
do: string;
|
|
16610
|
-
};
|
|
17994
|
+
icon: string | null;
|
|
17995
|
+
isActive?: boolean | undefined;
|
|
17996
|
+
count?: number | undefined;
|
|
16611
17997
|
}>, S_3>, entities: {
|
|
16612
17998
|
payload: readonly {
|
|
16613
17999
|
type: string;
|
|
16614
|
-
|
|
18000
|
+
targetId: number;
|
|
18001
|
+
targetType: string;
|
|
16615
18002
|
label: string;
|
|
16616
|
-
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
cssClass: string;
|
|
16620
|
-
cssColor: string;
|
|
16621
|
-
isActive: boolean;
|
|
16622
|
-
struct: {
|
|
16623
|
-
type: string;
|
|
16624
|
-
targetId: number;
|
|
16625
|
-
targetType: string;
|
|
16626
|
-
action: string;
|
|
16627
|
-
do: string;
|
|
16628
|
-
};
|
|
18003
|
+
icon: string | null;
|
|
18004
|
+
isActive?: boolean | undefined;
|
|
18005
|
+
count?: number | undefined;
|
|
16629
18006
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16630
18007
|
type: string;
|
|
16631
|
-
|
|
18008
|
+
targetId: number;
|
|
18009
|
+
targetType: string;
|
|
16632
18010
|
label: string;
|
|
16633
|
-
|
|
16634
|
-
|
|
16635
|
-
|
|
16636
|
-
cssClass: string;
|
|
16637
|
-
cssColor: string;
|
|
16638
|
-
isActive: boolean;
|
|
16639
|
-
struct: {
|
|
16640
|
-
type: string;
|
|
16641
|
-
targetId: number;
|
|
16642
|
-
targetType: string;
|
|
16643
|
-
action: string;
|
|
16644
|
-
do: string;
|
|
16645
|
-
};
|
|
18011
|
+
icon: string | null;
|
|
18012
|
+
isActive?: boolean | undefined;
|
|
18013
|
+
count?: number | undefined;
|
|
16646
18014
|
}>;
|
|
16647
18015
|
type: string;
|
|
16648
18016
|
}): S_3;
|
|
@@ -16650,286 +18018,142 @@ declare const SocialActions: {
|
|
|
16650
18018
|
setAll: {
|
|
16651
18019
|
<S_4 extends EntityState<{
|
|
16652
18020
|
type: string;
|
|
16653
|
-
|
|
18021
|
+
targetId: number;
|
|
18022
|
+
targetType: string;
|
|
16654
18023
|
label: string;
|
|
16655
|
-
|
|
16656
|
-
|
|
16657
|
-
|
|
16658
|
-
cssClass: string;
|
|
16659
|
-
cssColor: string;
|
|
16660
|
-
isActive: boolean;
|
|
16661
|
-
struct: {
|
|
16662
|
-
type: string;
|
|
16663
|
-
targetId: number;
|
|
16664
|
-
targetType: string;
|
|
16665
|
-
action: string;
|
|
16666
|
-
do: string;
|
|
16667
|
-
};
|
|
18024
|
+
icon: string | null;
|
|
18025
|
+
isActive?: boolean | undefined;
|
|
18026
|
+
count?: number | undefined;
|
|
16668
18027
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_4, EntityState<{
|
|
16669
18028
|
type: string;
|
|
16670
|
-
|
|
18029
|
+
targetId: number;
|
|
18030
|
+
targetType: string;
|
|
16671
18031
|
label: string;
|
|
16672
|
-
|
|
16673
|
-
|
|
16674
|
-
|
|
16675
|
-
cssClass: string;
|
|
16676
|
-
cssColor: string;
|
|
16677
|
-
isActive: boolean;
|
|
16678
|
-
struct: {
|
|
16679
|
-
type: string;
|
|
16680
|
-
targetId: number;
|
|
16681
|
-
targetType: string;
|
|
16682
|
-
action: string;
|
|
16683
|
-
do: string;
|
|
16684
|
-
};
|
|
18032
|
+
icon: string | null;
|
|
18033
|
+
isActive?: boolean | undefined;
|
|
18034
|
+
count?: number | undefined;
|
|
16685
18035
|
}>, S_4>, entities: readonly {
|
|
16686
18036
|
type: string;
|
|
16687
|
-
|
|
18037
|
+
targetId: number;
|
|
18038
|
+
targetType: string;
|
|
16688
18039
|
label: string;
|
|
16689
|
-
|
|
16690
|
-
|
|
16691
|
-
|
|
16692
|
-
cssClass: string;
|
|
16693
|
-
cssColor: string;
|
|
16694
|
-
isActive: boolean;
|
|
16695
|
-
struct: {
|
|
16696
|
-
type: string;
|
|
16697
|
-
targetId: number;
|
|
16698
|
-
targetType: string;
|
|
16699
|
-
action: string;
|
|
16700
|
-
do: string;
|
|
16701
|
-
};
|
|
18040
|
+
icon: string | null;
|
|
18041
|
+
isActive?: boolean | undefined;
|
|
18042
|
+
count?: number | undefined;
|
|
16702
18043
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16703
18044
|
type: string;
|
|
16704
|
-
|
|
18045
|
+
targetId: number;
|
|
18046
|
+
targetType: string;
|
|
16705
18047
|
label: string;
|
|
16706
|
-
|
|
16707
|
-
|
|
16708
|
-
|
|
16709
|
-
cssClass: string;
|
|
16710
|
-
cssColor: string;
|
|
16711
|
-
isActive: boolean;
|
|
16712
|
-
struct: {
|
|
16713
|
-
type: string;
|
|
16714
|
-
targetId: number;
|
|
16715
|
-
targetType: string;
|
|
16716
|
-
action: string;
|
|
16717
|
-
do: string;
|
|
16718
|
-
};
|
|
18048
|
+
icon: string | null;
|
|
18049
|
+
isActive?: boolean | undefined;
|
|
18050
|
+
count?: number | undefined;
|
|
16719
18051
|
}>): S_4;
|
|
16720
18052
|
<S_5 extends EntityState<{
|
|
16721
18053
|
type: string;
|
|
16722
|
-
|
|
18054
|
+
targetId: number;
|
|
18055
|
+
targetType: string;
|
|
16723
18056
|
label: string;
|
|
16724
|
-
|
|
16725
|
-
|
|
16726
|
-
|
|
16727
|
-
cssClass: string;
|
|
16728
|
-
cssColor: string;
|
|
16729
|
-
isActive: boolean;
|
|
16730
|
-
struct: {
|
|
16731
|
-
type: string;
|
|
16732
|
-
targetId: number;
|
|
16733
|
-
targetType: string;
|
|
16734
|
-
action: string;
|
|
16735
|
-
do: string;
|
|
16736
|
-
};
|
|
18057
|
+
icon: string | null;
|
|
18058
|
+
isActive?: boolean | undefined;
|
|
18059
|
+
count?: number | undefined;
|
|
16737
18060
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_5, EntityState<{
|
|
16738
18061
|
type: string;
|
|
16739
|
-
|
|
18062
|
+
targetId: number;
|
|
18063
|
+
targetType: string;
|
|
16740
18064
|
label: string;
|
|
16741
|
-
|
|
16742
|
-
|
|
16743
|
-
|
|
16744
|
-
cssClass: string;
|
|
16745
|
-
cssColor: string;
|
|
16746
|
-
isActive: boolean;
|
|
16747
|
-
struct: {
|
|
16748
|
-
type: string;
|
|
16749
|
-
targetId: number;
|
|
16750
|
-
targetType: string;
|
|
16751
|
-
action: string;
|
|
16752
|
-
do: string;
|
|
16753
|
-
};
|
|
18065
|
+
icon: string | null;
|
|
18066
|
+
isActive?: boolean | undefined;
|
|
18067
|
+
count?: number | undefined;
|
|
16754
18068
|
}>, S_5>, entities: {
|
|
16755
18069
|
payload: readonly {
|
|
16756
18070
|
type: string;
|
|
16757
|
-
|
|
18071
|
+
targetId: number;
|
|
18072
|
+
targetType: string;
|
|
16758
18073
|
label: string;
|
|
16759
|
-
|
|
16760
|
-
|
|
16761
|
-
|
|
16762
|
-
cssClass: string;
|
|
16763
|
-
cssColor: string;
|
|
16764
|
-
isActive: boolean;
|
|
16765
|
-
struct: {
|
|
16766
|
-
type: string;
|
|
16767
|
-
targetId: number;
|
|
16768
|
-
targetType: string;
|
|
16769
|
-
action: string;
|
|
16770
|
-
do: string;
|
|
16771
|
-
};
|
|
18074
|
+
icon: string | null;
|
|
18075
|
+
isActive?: boolean | undefined;
|
|
18076
|
+
count?: number | undefined;
|
|
16772
18077
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16773
18078
|
type: string;
|
|
16774
|
-
|
|
18079
|
+
targetId: number;
|
|
18080
|
+
targetType: string;
|
|
16775
18081
|
label: string;
|
|
16776
|
-
|
|
16777
|
-
|
|
16778
|
-
|
|
16779
|
-
cssClass: string;
|
|
16780
|
-
cssColor: string;
|
|
16781
|
-
isActive: boolean;
|
|
16782
|
-
struct: {
|
|
16783
|
-
type: string;
|
|
16784
|
-
targetId: number;
|
|
16785
|
-
targetType: string;
|
|
16786
|
-
action: string;
|
|
16787
|
-
do: string;
|
|
16788
|
-
};
|
|
18082
|
+
icon: string | null;
|
|
18083
|
+
isActive?: boolean | undefined;
|
|
18084
|
+
count?: number | undefined;
|
|
16789
18085
|
}>;
|
|
16790
18086
|
type: string;
|
|
16791
18087
|
}): S_5;
|
|
16792
18088
|
};
|
|
16793
18089
|
clear: <S_6 extends EntityState<{
|
|
16794
18090
|
type: string;
|
|
16795
|
-
|
|
18091
|
+
targetId: number;
|
|
18092
|
+
targetType: string;
|
|
16796
18093
|
label: string;
|
|
16797
|
-
|
|
16798
|
-
|
|
16799
|
-
|
|
16800
|
-
cssClass: string;
|
|
16801
|
-
cssColor: string;
|
|
16802
|
-
isActive: boolean;
|
|
16803
|
-
struct: {
|
|
16804
|
-
type: string;
|
|
16805
|
-
targetId: number;
|
|
16806
|
-
targetType: string;
|
|
16807
|
-
action: string;
|
|
16808
|
-
do: string;
|
|
16809
|
-
};
|
|
18094
|
+
icon: string | null;
|
|
18095
|
+
isActive?: boolean | undefined;
|
|
18096
|
+
count?: number | undefined;
|
|
16810
18097
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_6, EntityState<{
|
|
16811
18098
|
type: string;
|
|
16812
|
-
|
|
18099
|
+
targetId: number;
|
|
18100
|
+
targetType: string;
|
|
16813
18101
|
label: string;
|
|
16814
|
-
|
|
16815
|
-
|
|
16816
|
-
|
|
16817
|
-
cssClass: string;
|
|
16818
|
-
cssColor: string;
|
|
16819
|
-
isActive: boolean;
|
|
16820
|
-
struct: {
|
|
16821
|
-
type: string;
|
|
16822
|
-
targetId: number;
|
|
16823
|
-
targetType: string;
|
|
16824
|
-
action: string;
|
|
16825
|
-
do: string;
|
|
16826
|
-
};
|
|
18102
|
+
icon: string | null;
|
|
18103
|
+
isActive?: boolean | undefined;
|
|
18104
|
+
count?: number | undefined;
|
|
16827
18105
|
}>, S_6>) => S_6;
|
|
16828
18106
|
updateOne: {
|
|
16829
18107
|
<S_7 extends EntityState<{
|
|
16830
18108
|
type: string;
|
|
16831
|
-
|
|
18109
|
+
targetId: number;
|
|
18110
|
+
targetType: string;
|
|
16832
18111
|
label: string;
|
|
16833
|
-
|
|
16834
|
-
|
|
16835
|
-
|
|
16836
|
-
cssClass: string;
|
|
16837
|
-
cssColor: string;
|
|
16838
|
-
isActive: boolean;
|
|
16839
|
-
struct: {
|
|
16840
|
-
type: string;
|
|
16841
|
-
targetId: number;
|
|
16842
|
-
targetType: string;
|
|
16843
|
-
action: string;
|
|
16844
|
-
do: string;
|
|
16845
|
-
};
|
|
18112
|
+
icon: string | null;
|
|
18113
|
+
isActive?: boolean | undefined;
|
|
18114
|
+
count?: number | undefined;
|
|
16846
18115
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_7, EntityState<{
|
|
16847
18116
|
type: string;
|
|
16848
|
-
|
|
18117
|
+
targetId: number;
|
|
18118
|
+
targetType: string;
|
|
16849
18119
|
label: string;
|
|
16850
|
-
|
|
16851
|
-
|
|
16852
|
-
|
|
16853
|
-
cssClass: string;
|
|
16854
|
-
cssColor: string;
|
|
16855
|
-
isActive: boolean;
|
|
16856
|
-
struct: {
|
|
16857
|
-
type: string;
|
|
16858
|
-
targetId: number;
|
|
16859
|
-
targetType: string;
|
|
16860
|
-
action: string;
|
|
16861
|
-
do: string;
|
|
16862
|
-
};
|
|
18120
|
+
icon: string | null;
|
|
18121
|
+
isActive?: boolean | undefined;
|
|
18122
|
+
count?: number | undefined;
|
|
16863
18123
|
}>, S_7>, update: _reduxjs_toolkit.Update<{
|
|
16864
18124
|
type: string;
|
|
16865
|
-
|
|
18125
|
+
targetId: number;
|
|
18126
|
+
targetType: string;
|
|
16866
18127
|
label: string;
|
|
16867
|
-
|
|
16868
|
-
|
|
16869
|
-
|
|
16870
|
-
cssClass: string;
|
|
16871
|
-
cssColor: string;
|
|
16872
|
-
isActive: boolean;
|
|
16873
|
-
struct: {
|
|
16874
|
-
type: string;
|
|
16875
|
-
targetId: number;
|
|
16876
|
-
targetType: string;
|
|
16877
|
-
action: string;
|
|
16878
|
-
do: string;
|
|
16879
|
-
};
|
|
18128
|
+
icon: string | null;
|
|
18129
|
+
isActive?: boolean | undefined;
|
|
18130
|
+
count?: number | undefined;
|
|
16880
18131
|
}>): S_7;
|
|
16881
18132
|
<S_8 extends EntityState<{
|
|
16882
18133
|
type: string;
|
|
16883
|
-
|
|
18134
|
+
targetId: number;
|
|
18135
|
+
targetType: string;
|
|
16884
18136
|
label: string;
|
|
16885
|
-
|
|
16886
|
-
|
|
16887
|
-
|
|
16888
|
-
cssClass: string;
|
|
16889
|
-
cssColor: string;
|
|
16890
|
-
isActive: boolean;
|
|
16891
|
-
struct: {
|
|
16892
|
-
type: string;
|
|
16893
|
-
targetId: number;
|
|
16894
|
-
targetType: string;
|
|
16895
|
-
action: string;
|
|
16896
|
-
do: string;
|
|
16897
|
-
};
|
|
18137
|
+
icon: string | null;
|
|
18138
|
+
isActive?: boolean | undefined;
|
|
18139
|
+
count?: number | undefined;
|
|
16898
18140
|
}>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_8, EntityState<{
|
|
16899
18141
|
type: string;
|
|
16900
|
-
|
|
18142
|
+
targetId: number;
|
|
18143
|
+
targetType: string;
|
|
16901
18144
|
label: string;
|
|
16902
|
-
|
|
16903
|
-
|
|
16904
|
-
|
|
16905
|
-
cssClass: string;
|
|
16906
|
-
cssColor: string;
|
|
16907
|
-
isActive: boolean;
|
|
16908
|
-
struct: {
|
|
16909
|
-
type: string;
|
|
16910
|
-
targetId: number;
|
|
16911
|
-
targetType: string;
|
|
16912
|
-
action: string;
|
|
16913
|
-
do: string;
|
|
16914
|
-
};
|
|
18145
|
+
icon: string | null;
|
|
18146
|
+
isActive?: boolean | undefined;
|
|
18147
|
+
count?: number | undefined;
|
|
16915
18148
|
}>, S_8>, update: {
|
|
16916
18149
|
payload: _reduxjs_toolkit.Update<{
|
|
16917
18150
|
type: string;
|
|
16918
|
-
|
|
18151
|
+
targetId: number;
|
|
18152
|
+
targetType: string;
|
|
16919
18153
|
label: string;
|
|
16920
|
-
|
|
16921
|
-
|
|
16922
|
-
|
|
16923
|
-
cssClass: string;
|
|
16924
|
-
cssColor: string;
|
|
16925
|
-
isActive: boolean;
|
|
16926
|
-
struct: {
|
|
16927
|
-
type: string;
|
|
16928
|
-
targetId: number;
|
|
16929
|
-
targetType: string;
|
|
16930
|
-
action: string;
|
|
16931
|
-
do: string;
|
|
16932
|
-
};
|
|
18154
|
+
icon: string | null;
|
|
18155
|
+
isActive?: boolean | undefined;
|
|
18156
|
+
count?: number | undefined;
|
|
16933
18157
|
}>;
|
|
16934
18158
|
type: string;
|
|
16935
18159
|
}): S_8;
|
|
@@ -16938,129 +18162,66 @@ declare const SocialActions: {
|
|
|
16938
18162
|
actions: {
|
|
16939
18163
|
addOne: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
16940
18164
|
type: string;
|
|
16941
|
-
|
|
18165
|
+
targetId: number;
|
|
18166
|
+
targetType: string;
|
|
16942
18167
|
label: string;
|
|
16943
|
-
|
|
16944
|
-
|
|
16945
|
-
|
|
16946
|
-
cssClass: string;
|
|
16947
|
-
cssColor: string;
|
|
16948
|
-
isActive: boolean;
|
|
16949
|
-
struct: {
|
|
16950
|
-
type: string;
|
|
16951
|
-
targetId: number;
|
|
16952
|
-
targetType: string;
|
|
16953
|
-
action: string;
|
|
16954
|
-
do: string;
|
|
16955
|
-
};
|
|
18168
|
+
icon: string | null;
|
|
18169
|
+
isActive?: boolean | undefined;
|
|
18170
|
+
count?: number | undefined;
|
|
16956
18171
|
}, "socialActions/addOne">;
|
|
16957
18172
|
addMany: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
|
|
16958
18173
|
type: string;
|
|
16959
|
-
|
|
18174
|
+
targetId: number;
|
|
18175
|
+
targetType: string;
|
|
16960
18176
|
label: string;
|
|
16961
|
-
|
|
16962
|
-
|
|
16963
|
-
|
|
16964
|
-
cssClass: string;
|
|
16965
|
-
cssColor: string;
|
|
16966
|
-
isActive: boolean;
|
|
16967
|
-
struct: {
|
|
16968
|
-
type: string;
|
|
16969
|
-
targetId: number;
|
|
16970
|
-
targetType: string;
|
|
16971
|
-
action: string;
|
|
16972
|
-
do: string;
|
|
16973
|
-
};
|
|
18177
|
+
icon: string | null;
|
|
18178
|
+
isActive?: boolean | undefined;
|
|
18179
|
+
count?: number | undefined;
|
|
16974
18180
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
16975
18181
|
type: string;
|
|
16976
|
-
|
|
18182
|
+
targetId: number;
|
|
18183
|
+
targetType: string;
|
|
16977
18184
|
label: string;
|
|
16978
|
-
|
|
16979
|
-
|
|
16980
|
-
|
|
16981
|
-
cssClass: string;
|
|
16982
|
-
cssColor: string;
|
|
16983
|
-
isActive: boolean;
|
|
16984
|
-
struct: {
|
|
16985
|
-
type: string;
|
|
16986
|
-
targetId: number;
|
|
16987
|
-
targetType: string;
|
|
16988
|
-
action: string;
|
|
16989
|
-
do: string;
|
|
16990
|
-
};
|
|
18185
|
+
icon: string | null;
|
|
18186
|
+
isActive?: boolean | undefined;
|
|
18187
|
+
count?: number | undefined;
|
|
16991
18188
|
}>, "socialActions/addMany">;
|
|
16992
18189
|
setAll: _reduxjs_toolkit.ActionCreatorWithPayload<readonly {
|
|
16993
18190
|
type: string;
|
|
16994
|
-
|
|
18191
|
+
targetId: number;
|
|
18192
|
+
targetType: string;
|
|
16995
18193
|
label: string;
|
|
16996
|
-
|
|
16997
|
-
|
|
16998
|
-
|
|
16999
|
-
cssClass: string;
|
|
17000
|
-
cssColor: string;
|
|
17001
|
-
isActive: boolean;
|
|
17002
|
-
struct: {
|
|
17003
|
-
type: string;
|
|
17004
|
-
targetId: number;
|
|
17005
|
-
targetType: string;
|
|
17006
|
-
action: string;
|
|
17007
|
-
do: string;
|
|
17008
|
-
};
|
|
18194
|
+
icon: string | null;
|
|
18195
|
+
isActive?: boolean | undefined;
|
|
18196
|
+
count?: number | undefined;
|
|
17009
18197
|
}[] | Record<_reduxjs_toolkit.EntityId, {
|
|
17010
18198
|
type: string;
|
|
17011
|
-
|
|
18199
|
+
targetId: number;
|
|
18200
|
+
targetType: string;
|
|
17012
18201
|
label: string;
|
|
17013
|
-
|
|
17014
|
-
|
|
17015
|
-
|
|
17016
|
-
cssClass: string;
|
|
17017
|
-
cssColor: string;
|
|
17018
|
-
isActive: boolean;
|
|
17019
|
-
struct: {
|
|
17020
|
-
type: string;
|
|
17021
|
-
targetId: number;
|
|
17022
|
-
targetType: string;
|
|
17023
|
-
action: string;
|
|
17024
|
-
do: string;
|
|
17025
|
-
};
|
|
18202
|
+
icon: string | null;
|
|
18203
|
+
isActive?: boolean | undefined;
|
|
18204
|
+
count?: number | undefined;
|
|
17026
18205
|
}>, "socialActions/setAll">;
|
|
17027
18206
|
clear: _reduxjs_toolkit.ActionCreatorWithoutPayload<"socialActions/clear">;
|
|
17028
18207
|
updateOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.Update<{
|
|
17029
18208
|
type: string;
|
|
17030
|
-
|
|
18209
|
+
targetId: number;
|
|
18210
|
+
targetType: string;
|
|
17031
18211
|
label: string;
|
|
17032
|
-
|
|
17033
|
-
|
|
17034
|
-
|
|
17035
|
-
cssClass: string;
|
|
17036
|
-
cssColor: string;
|
|
17037
|
-
isActive: boolean;
|
|
17038
|
-
struct: {
|
|
17039
|
-
type: string;
|
|
17040
|
-
targetId: number;
|
|
17041
|
-
targetType: string;
|
|
17042
|
-
action: string;
|
|
17043
|
-
do: string;
|
|
17044
|
-
};
|
|
18212
|
+
icon: string | null;
|
|
18213
|
+
isActive?: boolean | undefined;
|
|
18214
|
+
count?: number | undefined;
|
|
17045
18215
|
}>, "socialActions/updateOne">;
|
|
17046
18216
|
};
|
|
17047
18217
|
selectors: _reduxjs_toolkit.EntitySelectors<{
|
|
17048
18218
|
type: string;
|
|
17049
|
-
|
|
18219
|
+
targetId: number;
|
|
18220
|
+
targetType: string;
|
|
17050
18221
|
label: string;
|
|
17051
|
-
|
|
17052
|
-
|
|
17053
|
-
|
|
17054
|
-
cssClass: string;
|
|
17055
|
-
cssColor: string;
|
|
17056
|
-
isActive: boolean;
|
|
17057
|
-
struct: {
|
|
17058
|
-
type: string;
|
|
17059
|
-
targetId: number;
|
|
17060
|
-
targetType: string;
|
|
17061
|
-
action: string;
|
|
17062
|
-
do: string;
|
|
17063
|
-
};
|
|
18222
|
+
icon: string | null;
|
|
18223
|
+
isActive?: boolean | undefined;
|
|
18224
|
+
count?: number | undefined;
|
|
17064
18225
|
}, RootState$1>;
|
|
17065
18226
|
};
|
|
17066
18227
|
|
|
@@ -19901,4 +21062,4 @@ declare const studio: {
|
|
|
19901
21062
|
};
|
|
19902
21063
|
};
|
|
19903
21064
|
|
|
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 };
|
|
21065
|
+
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 };
|