jamespot-front-business 1.1.69 → 1.1.70

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -1,12 +1,51 @@
1
1
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
2
- import { EntityState, Dispatch, PayloadAction, Action as Action$1 } from '@reduxjs/toolkit';
2
+ import { EntityState, PayloadAction, Dispatch, Action as Action$1 } from '@reduxjs/toolkit';
3
3
  import * as zod from 'zod';
4
4
  import * as jamespot_user_api from 'jamespot-user-api';
5
- import { AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, Filters, Orders, PagingResults, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, ApiPagingResults, ApiWrapper, Model as Model$1, NetworkType, WedocFileType, jUserLittle, TVChannelList, TinyMCECommonOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, CombinedWidgetContent, WidgetsName, Rights, jObjectLittle, WidgetVector, WidgetStateProps, WidgetsRootState, SocialAction, JamespotUserApi, ValueOf, StudioApplicationBase, jTaxonomyLittle } from 'jamespot-user-api';
5
+ import { jUserLittle, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, AudienceAutocomplete, JLandMap, AdminLicensesNotAssigned, jArticleView, Filters, Orders, PagingResults, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, ApiPagingResults, ApiWrapper, Model as Model$1, NetworkType, WedocFileType, TVChannelList, TinyMCECommonOptions, TinyMCEExtendedOptions, jUserList, WidgetKeys, WidgetDefinitionProps, WidgetWrapperProps, WidgetsRootState, CombinedWidgetContent, SocialAction, ValueOf, StudioApplicationBase, jTaxonomyLittle, JamespotUserApi } from 'jamespot-user-api';
6
6
  import * as redux from 'redux';
7
7
  import { Dispatch as Dispatch$1 } from 'redux';
8
8
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
9
- import React from 'react';
9
+ import React$1 from 'react';
10
+
11
+ type ToastType = 'success' | 'warning' | 'error';
12
+ type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
13
+ type Toast$1 = {
14
+ id?: string;
15
+ label: string | {
16
+ id: string;
17
+ values: intlValuesType;
18
+ };
19
+ description?: string | {
20
+ id: string;
21
+ values: intlValuesType;
22
+ };
23
+ };
24
+ type ToastEntity = {
25
+ id: string;
26
+ label: string | {
27
+ id: string;
28
+ values: intlValuesType;
29
+ };
30
+ description?: string | {
31
+ id: string;
32
+ values: intlValuesType;
33
+ };
34
+ timeout: number;
35
+ type: ToastType;
36
+ };
37
+ type ToastRootState = {
38
+ toasts: EntityState<ToastEntity>;
39
+ };
40
+
41
+ type ShareRootState = {
42
+ share: ShareAppState;
43
+ };
44
+ type ShareAppState = {
45
+ entities: jUserLittle[];
46
+ nbEntities: number;
47
+ loading: 'idle' | 'pending';
48
+ };
10
49
 
11
50
  type Loading = {
12
51
  loading: 'idle' | 'pending';
@@ -1449,14 +1488,6 @@ declare const Application: {
1449
1488
  selectors: _reduxjs_toolkit.EntitySelectors<ApplicationType, ApplicationRootState>;
1450
1489
  };
1451
1490
 
1452
- type ReservationForm = {
1453
- date: string;
1454
- hourStart: string;
1455
- hourEnd: string;
1456
- uriUser?: string;
1457
- description?: string;
1458
- };
1459
-
1460
1491
  type BookableAssetState = Loading & {
1461
1492
  entities: BookableAssetList[];
1462
1493
  nbResults: number;
@@ -1479,6 +1510,13 @@ interface ReservationRootState {
1479
1510
  type AssetReservationRootState = {
1480
1511
  assetReservation: BookableAssetRootState & ConfigurationRootState & ReservationRootState;
1481
1512
  };
1513
+ type ReservationForm = {
1514
+ date: string;
1515
+ hourStart: string;
1516
+ hourEnd: string;
1517
+ uriUser?: string;
1518
+ description?: string;
1519
+ };
1482
1520
 
1483
1521
  declare const AssetReservation: {
1484
1522
  slice: {
@@ -2668,6 +2706,7 @@ type CommentListState = Loading & {
2668
2706
  type CommentListRootState = {
2669
2707
  commentList: CommentListState;
2670
2708
  };
2709
+
2671
2710
  declare const Comment: {
2672
2711
  slice: {
2673
2712
  name: "comment";
@@ -2989,77 +3028,9 @@ declare const Comment: {
2989
3028
  getCommentsLikeRTHandlers: (dispatch: RTDispatch, idComments: number[] | undefined, idArticle: number) => jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", "update" | "add" | "remove">[];
2990
3029
  };
2991
3030
 
2992
- type bookmarkEditState = Loading & {
2993
- bookmark: BookmarkRawList | undefined;
2994
- status: 'success' | 'error' | undefined;
2995
- };
2996
- interface bookmarkEditRootState {
2997
- bookmarkEdit: bookmarkEditState;
2998
- }
2999
-
3000
- type ToastType = 'success' | 'warning' | 'error';
3001
- type ToastRootState = {
3002
- toasts: EntityState<ToastEntity>;
3003
- };
3004
- type intlValuesType = Record<string, string | number | boolean | null | undefined | Date | React.ReactElement | ((children: string) => React.ReactElement)>;
3005
- type ToastEntity = {
3006
- id: string;
3007
- label: string | {
3008
- id: string;
3009
- values: intlValuesType;
3010
- };
3011
- description?: string | {
3012
- id: string;
3013
- values: intlValuesType;
3014
- };
3015
- timeout: number;
3016
- type: ToastType;
3017
- };
3018
- declare const actions: {
3019
- addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
3020
- success: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3021
- warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3022
- error: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3023
- };
3024
- type Toast = {
3025
- id?: string;
3026
- label: string | {
3027
- id: string;
3028
- values: intlValuesType;
3029
- };
3030
- description?: string | {
3031
- id: string;
3032
- values: intlValuesType;
3033
- };
3034
- };
3035
- declare const Toast: {
3036
- slice: _reduxjs_toolkit.Slice<EntityState<ToastEntity>, {
3037
- addOne: {
3038
- <S extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, EntityState<ToastEntity>, S>, entity: ToastEntity): S;
3039
- <S_1 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, EntityState<ToastEntity>, S_1>, action: {
3040
- payload: ToastEntity;
3041
- type: string;
3042
- }): S_1;
3043
- };
3044
- removeOne: {
3045
- <S_2 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, EntityState<ToastEntity>, S_2>, key: _reduxjs_toolkit.EntityId): S_2;
3046
- <S_3 extends EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, EntityState<ToastEntity>, S_3>, key: {
3047
- payload: _reduxjs_toolkit.EntityId;
3048
- type: string;
3049
- }): S_3;
3050
- };
3051
- }, "toasts">;
3052
- actions: {
3053
- addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ToastEntity, "toasts/addOne">;
3054
- removeOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.EntityId, "toasts/removeOne">;
3055
- addMessage: ({ id, ...toast }: Toast, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
3056
- success: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3057
- warning: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3058
- error: (toast: Toast, timeout?: number) => (dispatch: Dispatch) => string;
3059
- };
3060
- selectors: _reduxjs_toolkit.EntitySelectors<ToastEntity, ToastRootState>;
3031
+ type BookmarkRootState = {
3032
+ bookmark: bookmarkListRootState & bookmarkEditRootState;
3061
3033
  };
3062
-
3063
3034
  type bookmarkListState = Loading & {
3064
3035
  bookmarks: BookmarkRawList[];
3065
3036
  nbResults: number;
@@ -3079,10 +3050,14 @@ type bookmarkListState = Loading & {
3079
3050
  interface bookmarkListRootState {
3080
3051
  bookmarkList: bookmarkListState;
3081
3052
  }
3082
-
3083
- type BookmarkRootState = {
3084
- bookmark: bookmarkListRootState & bookmarkEditRootState;
3053
+ type bookmarkEditState = Loading & {
3054
+ bookmark: BookmarkRawList | undefined;
3055
+ status: 'success' | 'error' | undefined;
3085
3056
  };
3057
+ interface bookmarkEditRootState {
3058
+ bookmarkEdit: bookmarkEditState;
3059
+ }
3060
+
3086
3061
  declare const Bookmark: {
3087
3062
  slice: {
3088
3063
  name: "bookmark";
@@ -3097,13 +3072,13 @@ declare const Bookmark: {
3097
3072
  resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
3098
3073
  addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3099
3074
  id: number;
3100
- uri: string;
3101
- mainType: string;
3102
3075
  type: "bookmarkLink";
3103
- targetId: number;
3076
+ mainType: string;
3077
+ uri: string;
3104
3078
  value: string | null;
3105
3079
  srcId: number;
3106
3080
  srcType: string;
3081
+ targetId: number;
3107
3082
  targetType: string | null;
3108
3083
  dateCreation?: string | undefined;
3109
3084
  dateModified?: string | null | undefined;
@@ -3117,13 +3092,13 @@ declare const Bookmark: {
3117
3092
  }, "bookmarkList/addBookmarkRT">;
3118
3093
  deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3119
3094
  id: number;
3120
- uri: string;
3121
- mainType: string;
3122
3095
  type: "bookmarkLink";
3123
- targetId: number;
3096
+ mainType: string;
3097
+ uri: string;
3124
3098
  value: string | null;
3125
3099
  srcId: number;
3126
3100
  srcType: string;
3101
+ targetId: number;
3127
3102
  targetType: string | null;
3128
3103
  dateCreation?: string | undefined;
3129
3104
  dateModified?: string | null | undefined;
@@ -3137,13 +3112,13 @@ declare const Bookmark: {
3137
3112
  }, "bookmarkList/deleteBookmarkRT">;
3138
3113
  updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
3139
3114
  id: number;
3140
- uri: string;
3141
- mainType: string;
3142
3115
  type: "bookmarkLink";
3143
- targetId: number;
3116
+ mainType: string;
3117
+ uri: string;
3144
3118
  value: string | null;
3145
3119
  srcId: number;
3146
3120
  srcType: string;
3121
+ targetId: number;
3147
3122
  targetType: string | null;
3148
3123
  dateCreation?: string | undefined;
3149
3124
  dateModified?: string | null | undefined;
@@ -3157,13 +3132,13 @@ declare const Bookmark: {
3157
3132
  }, "bookmarkList/updateBookmarkRT">;
3158
3133
  setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
3159
3134
  id: number;
3160
- uri: string;
3161
- mainType: string;
3162
3135
  type: "bookmarkLink";
3163
- targetId: number;
3136
+ mainType: string;
3137
+ uri: string;
3164
3138
  value: string | null;
3165
3139
  srcId: number;
3166
3140
  srcType: string;
3141
+ targetId: number;
3167
3142
  targetType: string | null;
3168
3143
  dateCreation?: string | undefined;
3169
3144
  dateModified?: string | null | undefined;
@@ -3179,13 +3154,13 @@ declare const Bookmark: {
3179
3154
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
3180
3155
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
3181
3156
  id: number;
3182
- uri: string;
3183
- mainType: string;
3184
3157
  type: "bookmarkLink";
3185
- targetId: number;
3158
+ mainType: string;
3159
+ uri: string;
3186
3160
  value: string | null;
3187
3161
  srcId: number;
3188
3162
  srcType: string;
3163
+ targetId: number;
3189
3164
  targetType: string | null;
3190
3165
  dateCreation?: string | undefined;
3191
3166
  dateModified?: string | null | undefined;
@@ -3382,13 +3357,13 @@ declare const Bookmark: {
3382
3357
  }>;
3383
3358
  addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
3384
3359
  id: number;
3385
- uri: string;
3386
- mainType: string;
3387
3360
  type: "bookmarkLink";
3388
- targetId: number;
3361
+ mainType: string;
3362
+ uri: string;
3389
3363
  value: string | null;
3390
3364
  srcId: number;
3391
3365
  srcType: string;
3366
+ targetId: number;
3392
3367
  targetType: string | null;
3393
3368
  dateCreation?: string | undefined;
3394
3369
  dateModified?: string | null | undefined;
@@ -3401,13 +3376,13 @@ declare const Bookmark: {
3401
3376
  url?: string | null | undefined;
3402
3377
  } | {
3403
3378
  id: number;
3404
- uri: string;
3405
- mainType: string;
3406
3379
  type: string;
3407
- targetId: number;
3380
+ mainType: string;
3381
+ uri: string;
3408
3382
  value: string | null;
3409
3383
  srcId: number;
3410
3384
  srcType: string;
3385
+ targetId: number;
3411
3386
  targetType: string | null;
3412
3387
  _cssColor: string;
3413
3388
  _cssClass: string;
@@ -3424,13 +3399,13 @@ declare const Bookmark: {
3424
3399
  } | undefined;
3425
3400
  }, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
3426
3401
  id: number;
3427
- uri: string;
3428
- mainType: string;
3429
3402
  type: "bookmarkLink";
3430
- targetId: number;
3403
+ mainType: string;
3404
+ uri: string;
3431
3405
  value: string | null;
3432
3406
  srcId: number;
3433
3407
  srcType: string;
3408
+ targetId: number;
3434
3409
  targetType: string | null;
3435
3410
  dateCreation?: string | undefined;
3436
3411
  dateModified?: string | null | undefined;
@@ -3638,13 +3613,13 @@ declare const Bookmark: {
3638
3613
  moveBookmark: _reduxjs_toolkit.AsyncThunk<void, {
3639
3614
  bookmark: Pick<{
3640
3615
  id: number;
3641
- uri: string;
3642
- mainType: string;
3643
3616
  type: "bookmarkLink";
3644
- targetId: number;
3617
+ mainType: string;
3618
+ uri: string;
3645
3619
  value: string | null;
3646
3620
  srcId: number;
3647
3621
  srcType: string;
3622
+ targetId: number;
3648
3623
  targetType: string | null;
3649
3624
  dateCreation?: string | undefined;
3650
3625
  dateModified?: string | null | undefined;
@@ -3658,13 +3633,13 @@ declare const Bookmark: {
3658
3633
  }, "id">;
3659
3634
  bookmarkReference: Pick<{
3660
3635
  id: number;
3661
- uri: string;
3662
- mainType: string;
3663
3636
  type: "bookmarkLink";
3664
- targetId: number;
3637
+ mainType: string;
3638
+ uri: string;
3665
3639
  value: string | null;
3666
3640
  srcId: number;
3667
3641
  srcType: string;
3642
+ targetId: number;
3668
3643
  targetType: string | null;
3669
3644
  dateCreation?: string | undefined;
3670
3645
  dateModified?: string | null | undefined;
@@ -3863,13 +3838,13 @@ declare const Bookmark: {
3863
3838
  }>;
3864
3839
  deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
3865
3840
  id: number;
3866
- uri: string;
3867
- mainType: string;
3868
3841
  type: "bookmarkLink";
3869
- targetId: number;
3842
+ mainType: string;
3843
+ uri: string;
3870
3844
  value: string | null;
3871
3845
  srcId: number;
3872
3846
  srcType: string;
3847
+ targetId: number;
3873
3848
  targetType: string | null;
3874
3849
  dateCreation?: string | undefined;
3875
3850
  dateModified?: string | null | undefined;
@@ -4068,13 +4043,13 @@ declare const Bookmark: {
4068
4043
  }>;
4069
4044
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
4070
4045
  id: number;
4071
- uri: string;
4072
- mainType: string;
4073
4046
  type: "bookmarkLink";
4074
- targetId: number;
4047
+ mainType: string;
4048
+ uri: string;
4075
4049
  value: string | null;
4076
4050
  srcId: number;
4077
4051
  srcType: string;
4052
+ targetId: number;
4078
4053
  targetType: string | null;
4079
4054
  dateCreation?: string | undefined;
4080
4055
  dateModified?: string | null | undefined;
@@ -4275,13 +4250,13 @@ declare const Bookmark: {
4275
4250
  bookmarkListIsInitialized: (state: BookmarkRootState) => boolean;
4276
4251
  bookmarkEditBookmark: (state: BookmarkRootState) => {
4277
4252
  id: number;
4278
- uri: string;
4279
- mainType: string;
4280
4253
  type: "bookmarkLink";
4281
- targetId: number;
4254
+ mainType: string;
4255
+ uri: string;
4282
4256
  value: string | null;
4283
4257
  srcId: number;
4284
4258
  srcType: string;
4259
+ targetId: number;
4285
4260
  targetType: string | null;
4286
4261
  dateCreation?: string | undefined;
4287
4262
  dateModified?: string | null | undefined;
@@ -4295,13 +4270,13 @@ declare const Bookmark: {
4295
4270
  } | undefined;
4296
4271
  bookmarkByArticleId: (state: BookmarkRootState, idArticle: number) => {
4297
4272
  id: number;
4298
- uri: string;
4299
- mainType: string;
4300
4273
  type: "bookmarkLink";
4301
- targetId: number;
4274
+ mainType: string;
4275
+ uri: string;
4302
4276
  value: string | null;
4303
4277
  srcId: number;
4304
4278
  srcType: string;
4279
+ targetId: number;
4305
4280
  targetType: string | null;
4306
4281
  dateCreation?: string | undefined;
4307
4282
  dateModified?: string | null | undefined;
@@ -4552,7 +4527,7 @@ declare const slice$1: _reduxjs_toolkit.Slice<{}, {
4552
4527
  isActive: boolean;
4553
4528
  } & {
4554
4529
  create: boolean;
4555
- autorize: ("comment" | "message" | "article" | "board" | undefined)[];
4530
+ autorize: ("article" | "message" | "comment" | "board" | undefined)[];
4556
4531
  }) | undefined;
4557
4532
  AdminAdvancedHook?: ({
4558
4533
  isActive: boolean;
@@ -4617,7 +4592,7 @@ declare const Hook: {
4617
4592
  isActive: boolean;
4618
4593
  } & {
4619
4594
  create: boolean;
4620
- autorize: ("comment" | "message" | "article" | "board" | undefined)[];
4595
+ autorize: ("article" | "message" | "comment" | "board" | undefined)[];
4621
4596
  }) | undefined;
4622
4597
  AdminAdvancedHook?: ({
4623
4598
  isActive: boolean;
@@ -4678,7 +4653,7 @@ declare const Hook: {
4678
4653
  isActive: boolean;
4679
4654
  } & {
4680
4655
  create: boolean;
4681
- autorize: ("comment" | "message" | "article" | "board" | undefined)[];
4656
+ autorize: ("article" | "message" | "comment" | "board" | undefined)[];
4682
4657
  }) | undefined;
4683
4658
  AdminAdvancedHook?: ({
4684
4659
  isActive: boolean;
@@ -4739,7 +4714,7 @@ declare const Hook: {
4739
4714
  isActive: boolean;
4740
4715
  } & {
4741
4716
  create: boolean;
4742
- autorize: ("comment" | "message" | "article" | "board" | undefined)[];
4717
+ autorize: ("article" | "message" | "comment" | "board" | undefined)[];
4743
4718
  }) | undefined;
4744
4719
  AdminAdvancedHook?: ({
4745
4720
  isActive: boolean;
@@ -4798,7 +4773,7 @@ declare const Hook: {
4798
4773
  isActive: boolean;
4799
4774
  } & {
4800
4775
  create: boolean;
4801
- autorize: ("comment" | "message" | "article" | "board" | undefined)[];
4776
+ autorize: ("article" | "message" | "comment" | "board" | undefined)[];
4802
4777
  }) | undefined;
4803
4778
  AdminAdvancedHook?: ({
4804
4779
  isActive: boolean;
@@ -4829,7 +4804,6 @@ type MapCreationFront = {
4829
4804
  illustration: string;
4830
4805
  assignLicense: boolean;
4831
4806
  };
4832
-
4833
4807
  type MapCreateState = Loading & {
4834
4808
  map: MapCreationFront;
4835
4809
  status: 'success' | 'error' | undefined;
@@ -4838,12 +4812,11 @@ type MapCreateState = Loading & {
4838
4812
  type MapCreateRootState = {
4839
4813
  mapCreate: MapCreateState;
4840
4814
  };
4841
-
4842
- type JLandMapFront$1 = JLandMap & {
4815
+ type JLandMapFront = JLandMap & {
4843
4816
  urlToJland?: string;
4844
4817
  };
4845
4818
  type JLandMapListState = {
4846
- maps: Array<JLandMapFront$1>;
4819
+ maps: Array<JLandMapFront>;
4847
4820
  availableLicenses: AdminLicensesNotAssigned;
4848
4821
  loading: 'idle' | 'pending';
4849
4822
  loadingAvailableLicenses: 'idle' | 'pending';
@@ -4855,19 +4828,16 @@ type JLandMapListState = {
4855
4828
  type JLandMapListRootState = {
4856
4829
  jLandMapList: JLandMapListState;
4857
4830
  };
4858
-
4859
- type JLandMapFront = JLandMap & {
4860
- urlToJland?: string;
4861
- };
4862
4831
  type JLandRootState = {
4863
4832
  jland: JLandMapListRootState & MapCreateRootState;
4864
4833
  };
4834
+
4865
4835
  declare const jland: {
4866
4836
  slice: {
4867
4837
  name: "jland";
4868
4838
  reducer: redux.Reducer<redux.CombinedState<{
4869
4839
  jLandMapList: {
4870
- maps: JLandMapFront$1[];
4840
+ maps: JLandMapFront[];
4871
4841
  availableLicenses: Record<string, number>;
4872
4842
  loading: "idle" | "pending";
4873
4843
  loadingAvailableLicenses: "idle" | "pending";
@@ -4881,7 +4851,7 @@ declare const jland: {
4881
4851
  };
4882
4852
  actions: {
4883
4853
  assignLicense: _reduxjs_toolkit.AsyncThunk<boolean | undefined, {
4884
- map: JLandMapFront$1;
4854
+ map: JLandMapFront;
4885
4855
  retrieveAllMaps: boolean;
4886
4856
  }, {
4887
4857
  dispatch: any;
@@ -5065,7 +5035,7 @@ declare const jland: {
5065
5035
  rejectedMeta?: unknown;
5066
5036
  }>;
5067
5037
  unassignLicense: _reduxjs_toolkit.AsyncThunk<boolean | undefined, {
5068
- map: JLandMapFront$1;
5038
+ map: JLandMapFront;
5069
5039
  retrieveAllMaps: boolean;
5070
5040
  }, {
5071
5041
  dispatch: any;
@@ -5249,7 +5219,7 @@ declare const jland: {
5249
5219
  rejectedMeta?: unknown;
5250
5220
  }>;
5251
5221
  deleteJlandMap: _reduxjs_toolkit.AsyncThunk<boolean | undefined, {
5252
- map: JLandMapFront$1;
5222
+ map: JLandMapFront;
5253
5223
  retrieveAllMaps: boolean;
5254
5224
  }, {
5255
5225
  dispatch: any;
@@ -5432,7 +5402,7 @@ declare const jland: {
5432
5402
  fulfilledMeta?: unknown;
5433
5403
  rejectedMeta?: unknown;
5434
5404
  }>;
5435
- fetchJLandMaps: _reduxjs_toolkit.AsyncThunk<JLandMapFront$1[], {
5405
+ fetchJLandMaps: _reduxjs_toolkit.AsyncThunk<JLandMapFront[], {
5436
5406
  jlandUrlBase: string;
5437
5407
  retrieveAllMaps: boolean;
5438
5408
  }, {
@@ -6010,7 +5980,7 @@ declare const jland: {
6010
5980
  resetCreateMapState: _reduxjs_toolkit.ActionCreatorWithoutPayload<"mapCreate/resetCreateMapState">;
6011
5981
  };
6012
5982
  selectors: {
6013
- selectJLandMaps: (state: JLandRootState) => JLandMapFront$1[];
5983
+ selectJLandMaps: (state: JLandRootState) => JLandMapFront[];
6014
5984
  selectJLandAvailableLicenses: (state: JLandRootState) => Record<string, number>;
6015
5985
  selectMapCreate: (state: JLandRootState) => MapCreateState;
6016
5986
  };
@@ -6057,6 +6027,7 @@ type MagicPadSliceRootState = Loading & {
6057
6027
  type MagicPadRootState = {
6058
6028
  magicPad: MagicPadSliceRootState;
6059
6029
  };
6030
+
6060
6031
  declare const magicPadSlice: _reduxjs_toolkit.Slice<MagicPadSliceRootState, {
6061
6032
  setTab: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState['tab']>) => void;
6062
6033
  setQuery: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState['query']>) => void;
@@ -9673,6 +9644,44 @@ declare const Platform: {
9673
9644
  };
9674
9645
  };
9675
9646
 
9647
+ declare const actions: {
9648
+ addMessage: ({ id, ...toast }: Toast$1, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
9649
+ success: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9650
+ warning: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9651
+ error: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9652
+ };
9653
+ declare const Toast: {
9654
+ slice: _reduxjs_toolkit.Slice<_reduxjs_toolkit.EntityState<ToastEntity>, {
9655
+ addOne: {
9656
+ <S extends _reduxjs_toolkit.EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S, _reduxjs_toolkit.EntityState<ToastEntity>, S>, entity: ToastEntity): S;
9657
+ <S_1 extends _reduxjs_toolkit.EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_1, _reduxjs_toolkit.EntityState<ToastEntity>, S_1>, action: {
9658
+ payload: ToastEntity;
9659
+ type: string;
9660
+ }): S_1;
9661
+ };
9662
+ removeOne: {
9663
+ <S_2 extends _reduxjs_toolkit.EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_2, _reduxjs_toolkit.EntityState<ToastEntity>, S_2>, key: _reduxjs_toolkit.EntityId): S_2;
9664
+ <S_3 extends _reduxjs_toolkit.EntityState<ToastEntity>>(state: _reduxjs_toolkit_dist_tsHelpers.IsAny<S_3, _reduxjs_toolkit.EntityState<ToastEntity>, S_3>, key: {
9665
+ payload: _reduxjs_toolkit.EntityId;
9666
+ type: string;
9667
+ }): S_3;
9668
+ };
9669
+ }, "toasts">;
9670
+ actions: {
9671
+ addOne: _reduxjs_toolkit.ActionCreatorWithPayload<ToastEntity, "toasts/addOne">;
9672
+ removeOne: _reduxjs_toolkit.ActionCreatorWithPayload<_reduxjs_toolkit.EntityId, "toasts/removeOne">;
9673
+ addMessage: ({ id, ...toast }: Toast$1, type?: ToastType, timeout?: number) => (dispatch: Dispatch) => string;
9674
+ success: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9675
+ warning: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9676
+ error: (toast: Toast$1, timeout?: number) => (dispatch: Dispatch) => string;
9677
+ };
9678
+ selectors: _reduxjs_toolkit.EntitySelectors<ToastEntity, ToastRootState>;
9679
+ };
9680
+
9681
+ type WedocAppTabKeys = 'my-documents' | 'all-documents';
9682
+ type WedocAppRootState = {
9683
+ wedoc: WedocAppState;
9684
+ };
9676
9685
  type WedocAppState = {
9677
9686
  entities: WedocFileType[];
9678
9687
  nbEntities: number;
@@ -9683,11 +9692,14 @@ type WedocAppState = {
9683
9692
  query: string;
9684
9693
  page: number;
9685
9694
  };
9686
-
9687
- type WedocAppRootState = {
9688
- wedoc: WedocAppState;
9695
+ type WedocFilesQuery = {
9696
+ query: string;
9697
+ filters: Filters;
9698
+ orders: Orders;
9699
+ page: number;
9700
+ limit: number;
9689
9701
  };
9690
- type WedocAppTabKeys = 'my-documents' | 'all-documents';
9702
+
9691
9703
  declare const WedocApp: {
9692
9704
  slice: _reduxjs_toolkit.Slice<WedocAppState, {
9693
9705
  update: (state: Draft<S>, action: {
@@ -10273,15 +10285,6 @@ declare const WedocApp: {
10273
10285
  };
10274
10286
  };
10275
10287
 
10276
- type ShareAppState = {
10277
- entities: jUserLittle[];
10278
- nbEntities: number;
10279
- loading: 'idle' | 'pending';
10280
- };
10281
-
10282
- type ShareRootState = {
10283
- share: ShareAppState;
10284
- };
10285
10288
  declare const Share: {
10286
10289
  slice: _reduxjs_toolkit.Slice<ShareAppState, {
10287
10290
  remove: (state: Draft<S>, action: {
@@ -10483,6 +10486,9 @@ declare const Share: {
10483
10486
  };
10484
10487
  };
10485
10488
 
10489
+ type TVDisplayRootState = {
10490
+ tvDisplay: ChannelsListRootState;
10491
+ };
10486
10492
  type ChannelsListState = Loading & {
10487
10493
  channels: PagingResults<TVChannelList> | undefined;
10488
10494
  loadingChannelDeletion: 'idle' | 'pending';
@@ -10493,9 +10499,6 @@ type ChannelsListRootState = {
10493
10499
 
10494
10500
  declare function isChannelConfigured(channel: TVChannelList): boolean;
10495
10501
 
10496
- type TVDisplayRootState = {
10497
- tvDisplay: ChannelsListRootState;
10498
- };
10499
10502
  declare const TVDisplay: {
10500
10503
  slice: {
10501
10504
  name: "tvDisplay";
@@ -11687,40 +11690,10 @@ declare const TVDisplay: {
11687
11690
 
11688
11691
  type TinyMCEOptionsState = {
11689
11692
  common?: TinyMCECommonOptions;
11693
+ extended?: TinyMCEExtendedOptions;
11690
11694
  };
11691
11695
  declare const TinyMCEOptionsSlice: _reduxjs_toolkit.Slice<TinyMCEOptionsState, {
11692
- initOptions: (_: Draft<S>, { payload }: PayloadAction<TinyMCECommonOptions>) => {
11693
- common: {
11694
- height: number;
11695
- language: string;
11696
- cache_suffix: string;
11697
- toolbar: string;
11698
- content_css: string;
11699
- quickbars_selection_toolbar: string;
11700
- plugins: string[];
11701
- text_patterns: {
11702
- start: string;
11703
- end?: string | undefined;
11704
- format?: string | undefined;
11705
- cmd?: string | undefined;
11706
- }[];
11707
- menubar: boolean;
11708
- branding: boolean;
11709
- skin: string;
11710
- convert_urls: boolean;
11711
- invalid_elements: string;
11712
- extended_valid_elements: string;
11713
- custom_elements: string;
11714
- inline_boundaries_selector: string;
11715
- toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
11716
- promotion: boolean;
11717
- font_size_formats: string;
11718
- contextmenu: string | false;
11719
- paste_data_images: boolean;
11720
- browser_spellcheck: boolean;
11721
- quickbars_insert_toolbar: boolean;
11722
- };
11723
- };
11696
+ initOptions: (_: Draft<S>, { payload }: PayloadAction<TinyMCEOptionsState>) => TinyMCEOptionsState;
11724
11697
  }, "options">;
11725
11698
 
11726
11699
  declare const TinyMCESlice: {
@@ -11742,36 +11715,7 @@ declare const TinyMCE: {
11742
11715
  }>, redux.AnyAction>;
11743
11716
  };
11744
11717
  actions: {
11745
- initOptions: _reduxjs_toolkit.ActionCreatorWithPayload<{
11746
- height: number;
11747
- language: string;
11748
- cache_suffix: string;
11749
- toolbar: string;
11750
- content_css: string;
11751
- quickbars_selection_toolbar: string;
11752
- plugins: string[];
11753
- text_patterns: {
11754
- start: string;
11755
- end?: string | undefined;
11756
- format?: string | undefined;
11757
- cmd?: string | undefined;
11758
- }[];
11759
- menubar: boolean;
11760
- branding: boolean;
11761
- skin: string;
11762
- convert_urls: boolean;
11763
- invalid_elements: string;
11764
- extended_valid_elements: string;
11765
- custom_elements: string;
11766
- inline_boundaries_selector: string;
11767
- toolbar_mode: "floating" | "sliding" | "scrolling" | "wrap";
11768
- promotion: boolean;
11769
- font_size_formats: string;
11770
- contextmenu: string | false;
11771
- paste_data_images: boolean;
11772
- browser_spellcheck: boolean;
11773
- quickbars_insert_toolbar: boolean;
11774
- }, "options/initOptions">;
11718
+ initOptions: _reduxjs_toolkit.ActionCreatorWithPayload<TinyMCEOptionsState, "options/initOptions">;
11775
11719
  };
11776
11720
  selectors: {
11777
11721
  selectTinyMCECommonOptions: (state: TinyMCERootState) => {
@@ -11804,12 +11748,16 @@ declare const TinyMCE: {
11804
11748
  browser_spellcheck: boolean;
11805
11749
  quickbars_insert_toolbar: boolean;
11806
11750
  } | undefined;
11751
+ selectTinyMCEExtendedOptions: (state: TinyMCERootState) => {
11752
+ commentsToolbar: string;
11753
+ } | undefined;
11807
11754
  };
11808
11755
  };
11809
11756
 
11810
11757
  type UserCurrentRootState = {
11811
11758
  userCurrent: jUserList;
11812
11759
  };
11760
+
11813
11761
  declare const slice: _reduxjs_toolkit.Slice<jUserList, {
11814
11762
  init: (_: Draft<S>, { payload }: PayloadAction<jUserList>) => jUserList;
11815
11763
  }, "userCurrent">;
@@ -11831,6 +11779,11 @@ declare const UserCurrent: {
11831
11779
 
11832
11780
  declare function uniqid(): string;
11833
11781
 
11782
+ type WidgetModalProps = {
11783
+ title?: string;
11784
+ view?: React.ReactNode;
11785
+ };
11786
+
11834
11787
  declare const WIDGET_ARTICLE_TITLE = "widget-article-title";
11835
11788
  declare const WIDGET_ARTICLE_TEXT = "widget-article-text";
11836
11789
  declare const WIDGET_ARTICLE_IMAGE = "widget-article-image";
@@ -11868,16 +11821,132 @@ declare function widgetDefinition(name: WidgetKeys | undefined): WidgetDefinitio
11868
11821
 
11869
11822
  declare function widgetFactory<T extends WidgetKeys>(name: T): WidgetWrapperProps;
11870
11823
 
11871
- declare const MODE_EDIT = "edit";
11872
- declare const MODE_VIEW = "view";
11873
- type WidgetModalProps = {
11874
- title?: string;
11875
- view?: React.ReactNode;
11876
- };
11877
11824
  declare const updateWidgetContent: <T>(uniqid: string, content: Partial<T>, override?: boolean) => {
11878
11825
  payload: {
11879
11826
  uniqid: string;
11880
- content: Partial<CombinedWidgetContent>;
11827
+ content: Partial<{
11828
+ widgets?: jamespot_user_api.WidgetWrapperGeneric<({
11829
+ layers?: string[] | undefined;
11830
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
11831
+ layers?: string[] | undefined;
11832
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
11833
+ layers?: string[] | undefined;
11834
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
11835
+ layers?: string[] | undefined;
11836
+ } & jamespot_user_api.WidgetArticleImageType) | ({
11837
+ layers?: string[] | undefined;
11838
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
11839
+ layers?: string[] | undefined;
11840
+ } & jamespot_user_api.WidgetArticleTextType) | ({
11841
+ layers?: string[] | undefined;
11842
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
11843
+ layers?: string[] | undefined;
11844
+ } & jamespot_user_api.WidgetType<{
11845
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
11846
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
11847
+ css?: Record<string, string> | undefined;
11848
+ edit?: boolean | undefined;
11849
+ }>) | ({
11850
+ layers?: string[] | undefined;
11851
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
11852
+ layers?: string[] | undefined;
11853
+ } & {
11854
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
11855
+ uniqid: string;
11856
+ content: {
11857
+ uri?: string | undefined;
11858
+ limit?: number | boolean | undefined;
11859
+ tableColumnsData?: {
11860
+ name?: string | undefined;
11861
+ label?: string | undefined;
11862
+ isVisible?: boolean | undefined;
11863
+ textEllipsis?: boolean | undefined;
11864
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
11865
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
11866
+ }[] | undefined;
11867
+ tableHeadColor?: string | undefined;
11868
+ tableHeadTextColor?: string | undefined;
11869
+ tableHeadIconColor?: string | undefined;
11870
+ tableRowColor?: string | undefined;
11871
+ tableRowTextColor?: string | undefined;
11872
+ tableBorderRadius?: number | undefined;
11873
+ tableSizedColumns?: boolean | undefined;
11874
+ tableSizedColumnsWidth?: number | undefined;
11875
+ };
11876
+ }) | ({
11877
+ layers?: string[] | undefined;
11878
+ } & jamespot_user_api.WidgetPresenceType)>[] | undefined;
11879
+ } & (jamespot_user_api.WidgetArticleAttachmentContent | {
11880
+ url?: string | undefined;
11881
+ target?: string | undefined;
11882
+ text?: string | undefined;
11883
+ color?: string | undefined;
11884
+ backgroundColor?: string | undefined;
11885
+ borderRadius?: string | undefined;
11886
+ fontSize?: string | undefined;
11887
+ buttonSize?: "lg" | "sm" | "md" | undefined;
11888
+ variant?: "contained" | "outlined" | undefined;
11889
+ openingType?: "popup" | "anchor" | "link" | undefined;
11890
+ openingTypeLink?: {
11891
+ url: string;
11892
+ target: string;
11893
+ } | undefined;
11894
+ openingTypeAnchor?: {
11895
+ uniqid: string;
11896
+ } | undefined;
11897
+ openingTypePopup?: {
11898
+ title: string;
11899
+ widgets: jamespot_user_api.WidgetBaseType[];
11900
+ } | undefined;
11901
+ } | jamespot_user_api.WidgetArticleGalleryContent | jamespot_user_api.WidgetArticleImageContent | jamespot_user_api.WidgetArticleTextContent | jamespot_user_api.WidgetArticleTitleContent | jamespot_user_api.WidgetArticleSliderContent | {
11902
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
11903
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
11904
+ css?: Record<string, string> | undefined;
11905
+ edit?: boolean | undefined;
11906
+ } | {
11907
+ uri?: string | undefined;
11908
+ limit?: number | boolean | undefined;
11909
+ tableColumnsData?: {
11910
+ name?: string | undefined;
11911
+ label?: string | undefined;
11912
+ isVisible?: boolean | undefined;
11913
+ textEllipsis?: boolean | undefined;
11914
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
11915
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
11916
+ }[] | undefined;
11917
+ tableHeadColor?: string | undefined;
11918
+ tableHeadTextColor?: string | undefined;
11919
+ tableHeadIconColor?: string | undefined;
11920
+ tableRowColor?: string | undefined;
11921
+ tableRowTextColor?: string | undefined;
11922
+ tableBorderRadius?: number | undefined;
11923
+ tableSizedColumns?: boolean | undefined;
11924
+ tableSizedColumnsWidth?: number | undefined;
11925
+ } | {
11926
+ uri?: string | undefined;
11927
+ limit?: number | boolean | undefined;
11928
+ tableColumnsData?: {
11929
+ name?: string | undefined;
11930
+ label?: string | undefined;
11931
+ isVisible?: boolean | undefined;
11932
+ textEllipsis?: boolean | undefined;
11933
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
11934
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
11935
+ }[] | undefined;
11936
+ tableHeadColor?: string | undefined;
11937
+ tableHeadTextColor?: string | undefined;
11938
+ tableHeadIconColor?: string | undefined;
11939
+ tableRowColor?: string | undefined;
11940
+ tableRowTextColor?: string | undefined;
11941
+ tableBorderRadius?: number | undefined;
11942
+ tableSizedColumns?: boolean | undefined;
11943
+ tableSizedColumnsWidth?: number | undefined;
11944
+ } | {
11945
+ limit?: number | boolean | undefined;
11946
+ limitValue?: number | undefined;
11947
+ closing?: boolean | undefined;
11948
+ isClosed?: boolean | undefined;
11949
+ })>;
11881
11950
  override?: boolean;
11882
11951
  };
11883
11952
  type: "widgets/updateWidget";
@@ -11919,7 +11988,7 @@ declare const Widget: {
11919
11988
  } & jamespot_user_api.WidgetDatasourceTableType) | ({
11920
11989
  layers?: string[] | undefined;
11921
11990
  } & {
11922
- name: WidgetsName.ExcelDatasourceTable;
11991
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
11923
11992
  uniqid: string;
11924
11993
  content: {
11925
11994
  uri?: string | undefined;
@@ -11977,7 +12046,7 @@ declare const Widget: {
11977
12046
  } & jamespot_user_api.WidgetDatasourceTableType) | ({
11978
12047
  layers?: string[] | undefined;
11979
12048
  } & {
11980
- name: WidgetsName.ExcelDatasourceTable;
12049
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
11981
12050
  uniqid: string;
11982
12051
  content: {
11983
12052
  uri?: string | undefined;
@@ -12026,7 +12095,7 @@ declare const Widget: {
12026
12095
  title?: string | undefined;
12027
12096
  _url?: string | undefined;
12028
12097
  }>;
12029
- widgetObjectRights: Record<string, Rights>;
12098
+ widgetObjectRights: Record<string, jamespot_user_api.Rights>;
12030
12099
  widgetAuthor: Record<string, zod.objectOutputType<{
12031
12100
  id: zod.ZodOptional<zod.ZodType<number, zod.ZodTypeDef, number>>;
12032
12101
  mainType: zod.ZodOptional<zod.ZodType<string, zod.ZodTypeDef, string>>;
@@ -12057,79 +12126,374 @@ declare const Widget: {
12057
12126
  } | undefined;
12058
12127
  currentEditableWidgetId?: string | undefined;
12059
12128
  }, {
12060
- registerWidget: (state: Draft<S>, action: PayloadAction<{
12061
- uniqid: string;
12062
- widget: WidgetWrapperProps;
12063
- }>) => void;
12064
- registerWidgetObject: (state: Draft<S>, action: PayloadAction<{
12065
- uniqid: string;
12066
- object: Partial<jObjectLittle>;
12067
- }>) => void;
12068
- registerWidgetObjectRights: (state: Draft<S>, action: PayloadAction<{
12069
- uniqid: string;
12070
- rights: Rights;
12071
- }>) => void;
12072
- registerWidgetAuthor: (state: Draft<S>, action: PayloadAction<{
12073
- uniqid: string;
12074
- author: jUserLittle;
12075
- }>) => void;
12076
- updateWidget: (state: Draft<S>, action: PayloadAction<{
12077
- uniqid: string;
12078
- content: Partial<CombinedWidgetContent>;
12079
- override?: boolean;
12080
- }>) => void;
12081
- registerWidgetRTObject: (state: Draft<S>, action: PayloadAction<{
12082
- uniqid: string;
12083
- object: jObjectLittle;
12084
- }>) => void;
12085
- flushWidget: (state: Draft<S>, action: PayloadAction<{
12086
- uniqid: string;
12087
- }>) => void;
12088
- flushAllWidget: (state: Draft<S>) => void;
12089
- updateWidgetWrapper: (state: Draft<S>, action: PayloadAction<{
12090
- uniqid: string;
12091
- title?: string;
12092
- position?: WidgetVector;
12093
- }>) => void;
12094
- registerLayer: (state: Draft<S>, action: PayloadAction<{
12095
- uniqid: string;
12096
- widget: WidgetWrapperProps;
12097
- }>) => void;
12098
- updateLayer: (state: Draft<S>, action: PayloadAction<{
12099
- uniqid: string;
12100
- props: {
12101
- locked?: boolean;
12102
- visible?: boolean;
12103
- position?: {
12104
- x: number;
12105
- y: number;
12106
- };
12129
+ registerWidget: (state: Draft<S>, action: {
12130
+ payload: {
12131
+ uniqid: string;
12132
+ widget: jamespot_user_api.WidgetWrapperGeneric<({
12133
+ layers?: string[] | undefined;
12134
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
12135
+ layers?: string[] | undefined;
12136
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
12137
+ layers?: string[] | undefined;
12138
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
12139
+ layers?: string[] | undefined;
12140
+ } & jamespot_user_api.WidgetArticleImageType) | ({
12141
+ layers?: string[] | undefined;
12142
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
12143
+ layers?: string[] | undefined;
12144
+ } & jamespot_user_api.WidgetArticleTextType) | ({
12145
+ layers?: string[] | undefined;
12146
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
12147
+ layers?: string[] | undefined;
12148
+ } & jamespot_user_api.WidgetType<{
12149
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
12150
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
12151
+ css?: Record<string, string> | undefined;
12152
+ edit?: boolean | undefined;
12153
+ }>) | ({
12154
+ layers?: string[] | undefined;
12155
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
12156
+ layers?: string[] | undefined;
12157
+ } & {
12158
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
12159
+ uniqid: string;
12160
+ content: {
12161
+ uri?: string | undefined;
12162
+ limit?: number | boolean | undefined;
12163
+ tableColumnsData?: {
12164
+ name?: string | undefined;
12165
+ label?: string | undefined;
12166
+ isVisible?: boolean | undefined;
12167
+ textEllipsis?: boolean | undefined;
12168
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
12169
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
12170
+ }[] | undefined;
12171
+ tableHeadColor?: string | undefined;
12172
+ tableHeadTextColor?: string | undefined;
12173
+ tableHeadIconColor?: string | undefined;
12174
+ tableRowColor?: string | undefined;
12175
+ tableRowTextColor?: string | undefined;
12176
+ tableBorderRadius?: number | undefined;
12177
+ tableSizedColumns?: boolean | undefined;
12178
+ tableSizedColumnsWidth?: number | undefined;
12179
+ };
12180
+ }) | ({
12181
+ layers?: string[] | undefined;
12182
+ } & jamespot_user_api.WidgetPresenceType)>;
12107
12183
  };
12108
- }>) => void;
12109
- flushLayer: (state: Draft<S>, action: PayloadAction<{
12110
- uniqid: string;
12111
- layerId: string;
12112
- }>) => void;
12184
+ type: string;
12185
+ }) => void;
12186
+ registerWidgetObject: (state: Draft<S>, action: {
12187
+ payload: {
12188
+ uniqid: string;
12189
+ object: Partial<jamespot_user_api.jObjectLittle>;
12190
+ };
12191
+ type: string;
12192
+ }) => void;
12193
+ registerWidgetObjectRights: (state: Draft<S>, action: {
12194
+ payload: {
12195
+ uniqid: string;
12196
+ rights: jamespot_user_api.Rights;
12197
+ };
12198
+ type: string;
12199
+ }) => void;
12200
+ registerWidgetAuthor: (state: Draft<S>, action: {
12201
+ payload: {
12202
+ uniqid: string;
12203
+ author: jamespot_user_api.jUserLittle;
12204
+ };
12205
+ type: string;
12206
+ }) => void;
12207
+ updateWidget: (state: Draft<S>, action: {
12208
+ payload: {
12209
+ uniqid: string;
12210
+ content: Partial<{
12211
+ widgets?: jamespot_user_api.WidgetWrapperGeneric<({
12212
+ layers?: string[] | undefined;
12213
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
12214
+ layers?: string[] | undefined;
12215
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
12216
+ layers?: string[] | undefined;
12217
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
12218
+ layers?: string[] | undefined;
12219
+ } & jamespot_user_api.WidgetArticleImageType) | ({
12220
+ layers?: string[] | undefined;
12221
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
12222
+ layers?: string[] | undefined;
12223
+ } & jamespot_user_api.WidgetArticleTextType) | ({
12224
+ layers?: string[] | undefined;
12225
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
12226
+ layers?: string[] | undefined;
12227
+ } & jamespot_user_api.WidgetType<{
12228
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
12229
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
12230
+ css?: Record<string, string> | undefined;
12231
+ edit?: boolean | undefined;
12232
+ }>) | ({
12233
+ layers?: string[] | undefined;
12234
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
12235
+ layers?: string[] | undefined;
12236
+ } & {
12237
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
12238
+ uniqid: string;
12239
+ content: {
12240
+ uri?: string | undefined;
12241
+ limit?: number | boolean | undefined;
12242
+ tableColumnsData?: {
12243
+ name?: string | undefined;
12244
+ label?: string | undefined;
12245
+ isVisible?: boolean | undefined;
12246
+ textEllipsis?: boolean | undefined;
12247
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
12248
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
12249
+ }[] | undefined;
12250
+ tableHeadColor?: string | undefined;
12251
+ tableHeadTextColor?: string | undefined;
12252
+ tableHeadIconColor?: string | undefined;
12253
+ tableRowColor?: string | undefined;
12254
+ tableRowTextColor?: string | undefined;
12255
+ tableBorderRadius?: number | undefined;
12256
+ tableSizedColumns?: boolean | undefined;
12257
+ tableSizedColumnsWidth?: number | undefined;
12258
+ };
12259
+ }) | ({
12260
+ layers?: string[] | undefined;
12261
+ } & jamespot_user_api.WidgetPresenceType)>[] | undefined;
12262
+ } & (jamespot_user_api.WidgetArticleAttachmentContent | {
12263
+ url?: string | undefined;
12264
+ target?: string | undefined;
12265
+ text?: string | undefined;
12266
+ color?: string | undefined;
12267
+ backgroundColor?: string | undefined;
12268
+ borderRadius?: string | undefined;
12269
+ fontSize?: string | undefined;
12270
+ buttonSize?: "lg" | "sm" | "md" | undefined;
12271
+ variant?: "contained" | "outlined" | undefined;
12272
+ openingType?: "popup" | "anchor" | "link" | undefined;
12273
+ openingTypeLink?: {
12274
+ url: string;
12275
+ target: string;
12276
+ } | undefined;
12277
+ openingTypeAnchor?: {
12278
+ uniqid: string;
12279
+ } | undefined;
12280
+ openingTypePopup?: {
12281
+ title: string;
12282
+ widgets: jamespot_user_api.WidgetBaseType[];
12283
+ } | undefined;
12284
+ } | jamespot_user_api.WidgetArticleGalleryContent | jamespot_user_api.WidgetArticleImageContent | jamespot_user_api.WidgetArticleTextContent | jamespot_user_api.WidgetArticleTitleContent | jamespot_user_api.WidgetArticleSliderContent | {
12285
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
12286
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
12287
+ css?: Record<string, string> | undefined;
12288
+ edit?: boolean | undefined;
12289
+ } | {
12290
+ uri?: string | undefined;
12291
+ limit?: number | boolean | undefined;
12292
+ tableColumnsData?: {
12293
+ name?: string | undefined;
12294
+ label?: string | undefined;
12295
+ isVisible?: boolean | undefined;
12296
+ textEllipsis?: boolean | undefined;
12297
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
12298
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
12299
+ }[] | undefined;
12300
+ tableHeadColor?: string | undefined;
12301
+ tableHeadTextColor?: string | undefined;
12302
+ tableHeadIconColor?: string | undefined;
12303
+ tableRowColor?: string | undefined;
12304
+ tableRowTextColor?: string | undefined;
12305
+ tableBorderRadius?: number | undefined;
12306
+ tableSizedColumns?: boolean | undefined;
12307
+ tableSizedColumnsWidth?: number | undefined;
12308
+ } | {
12309
+ uri?: string | undefined;
12310
+ limit?: number | boolean | undefined;
12311
+ tableColumnsData?: {
12312
+ name?: string | undefined;
12313
+ label?: string | undefined;
12314
+ isVisible?: boolean | undefined;
12315
+ textEllipsis?: boolean | undefined;
12316
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
12317
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
12318
+ }[] | undefined;
12319
+ tableHeadColor?: string | undefined;
12320
+ tableHeadTextColor?: string | undefined;
12321
+ tableHeadIconColor?: string | undefined;
12322
+ tableRowColor?: string | undefined;
12323
+ tableRowTextColor?: string | undefined;
12324
+ tableBorderRadius?: number | undefined;
12325
+ tableSizedColumns?: boolean | undefined;
12326
+ tableSizedColumnsWidth?: number | undefined;
12327
+ } | {
12328
+ limit?: number | boolean | undefined;
12329
+ limitValue?: number | undefined;
12330
+ closing?: boolean | undefined;
12331
+ isClosed?: boolean | undefined;
12332
+ })>;
12333
+ override?: boolean;
12334
+ };
12335
+ type: string;
12336
+ }) => void;
12337
+ registerWidgetRTObject: (state: Draft<S>, action: {
12338
+ payload: {
12339
+ uniqid: string;
12340
+ object: jamespot_user_api.jObjectLittle;
12341
+ };
12342
+ type: string;
12343
+ }) => void;
12344
+ flushWidget: (state: Draft<S>, action: {
12345
+ payload: {
12346
+ uniqid: string;
12347
+ };
12348
+ type: string;
12349
+ }) => void;
12350
+ flushAllWidget: (state: Draft<S>) => void;
12351
+ updateWidgetWrapper: (state: Draft<S>, action: {
12352
+ payload: {
12353
+ uniqid: string;
12354
+ title?: string;
12355
+ position?: {
12356
+ x: number;
12357
+ y: number;
12358
+ };
12359
+ };
12360
+ type: string;
12361
+ }) => void;
12362
+ registerLayer: (state: Draft<S>, action: {
12363
+ payload: {
12364
+ uniqid: string;
12365
+ widget: jamespot_user_api.WidgetWrapperGeneric<({
12366
+ layers?: string[] | undefined;
12367
+ } & jamespot_user_api.WidgetArticleAttachmentType) | ({
12368
+ layers?: string[] | undefined;
12369
+ } & jamespot_user_api.WidgetArticleButtonType) | ({
12370
+ layers?: string[] | undefined;
12371
+ } & jamespot_user_api.WidgetArticleGalleryType) | ({
12372
+ layers?: string[] | undefined;
12373
+ } & jamespot_user_api.WidgetArticleImageType) | ({
12374
+ layers?: string[] | undefined;
12375
+ } & jamespot_user_api.WidgetArticleTitleType) | ({
12376
+ layers?: string[] | undefined;
12377
+ } & jamespot_user_api.WidgetArticleTextType) | ({
12378
+ layers?: string[] | undefined;
12379
+ } & jamespot_user_api.WidgetArticleSliderType) | ({
12380
+ layers?: string[] | undefined;
12381
+ } & jamespot_user_api.WidgetType<{
12382
+ widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
12383
+ arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
12384
+ css?: Record<string, string> | undefined;
12385
+ edit?: boolean | undefined;
12386
+ }>) | ({
12387
+ layers?: string[] | undefined;
12388
+ } & jamespot_user_api.WidgetDatasourceTableType) | ({
12389
+ layers?: string[] | undefined;
12390
+ } & {
12391
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
12392
+ uniqid: string;
12393
+ content: {
12394
+ uri?: string | undefined;
12395
+ limit?: number | boolean | undefined;
12396
+ tableColumnsData?: {
12397
+ name?: string | undefined;
12398
+ label?: string | undefined;
12399
+ isVisible?: boolean | undefined;
12400
+ textEllipsis?: boolean | undefined;
12401
+ dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
12402
+ numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
12403
+ }[] | undefined;
12404
+ tableHeadColor?: string | undefined;
12405
+ tableHeadTextColor?: string | undefined;
12406
+ tableHeadIconColor?: string | undefined;
12407
+ tableRowColor?: string | undefined;
12408
+ tableRowTextColor?: string | undefined;
12409
+ tableBorderRadius?: number | undefined;
12410
+ tableSizedColumns?: boolean | undefined;
12411
+ tableSizedColumnsWidth?: number | undefined;
12412
+ };
12413
+ }) | ({
12414
+ layers?: string[] | undefined;
12415
+ } & jamespot_user_api.WidgetPresenceType)>;
12416
+ };
12417
+ type: string;
12418
+ }) => void;
12419
+ updateLayer: (state: Draft<S>, action: {
12420
+ payload: {
12421
+ uniqid: string;
12422
+ props: {
12423
+ locked?: boolean;
12424
+ visible?: boolean;
12425
+ position?: {
12426
+ x: number;
12427
+ y: number;
12428
+ };
12429
+ };
12430
+ };
12431
+ type: string;
12432
+ }) => void;
12433
+ flushLayer: (state: Draft<S>, action: {
12434
+ payload: {
12435
+ uniqid: string;
12436
+ layerId: string;
12437
+ };
12438
+ type: string;
12439
+ }) => void;
12113
12440
  prevEditableIndex: (state: Draft<S>) => void;
12114
12441
  nextEditableIndex: (state: Draft<S>) => void;
12115
- setEditableIndex: (state: Draft<S>, action: PayloadAction<{
12116
- index: number;
12117
- }>) => void;
12118
- setEditableWidgetId: (state: Draft<S>, action: PayloadAction<{
12119
- uniqid: string | undefined;
12120
- }>) => void;
12121
- registerEditableWidget: (state: Draft<S>, action: PayloadAction<{
12122
- index: number;
12123
- uniqid: string;
12124
- }>) => void;
12125
- setToken: (state: Draft<S>, action: PayloadAction<{
12126
- token: string;
12127
- }>) => void;
12128
- setWidgetState: (state: Draft<S>, action: PayloadAction<{
12129
- uniqid: string;
12130
- } & WidgetStateProps>) => void;
12131
- setAllWidgetStates: (state: Draft<S>, action: PayloadAction<WidgetStateProps>) => void;
12132
- registerModal: (state: Draft<S>, action: PayloadAction<WidgetModalProps>) => void;
12442
+ setEditableIndex: (state: Draft<S>, action: {
12443
+ payload: {
12444
+ index: number;
12445
+ };
12446
+ type: string;
12447
+ }) => void;
12448
+ setEditableWidgetId: (state: Draft<S>, action: {
12449
+ payload: {
12450
+ uniqid: string | undefined;
12451
+ };
12452
+ type: string;
12453
+ }) => void;
12454
+ registerEditableWidget: (state: Draft<S>, action: {
12455
+ payload: {
12456
+ index: number;
12457
+ uniqid: string;
12458
+ };
12459
+ type: string;
12460
+ }) => void;
12461
+ setToken: (state: Draft<S>, action: {
12462
+ payload: {
12463
+ token: string;
12464
+ };
12465
+ type: string;
12466
+ }) => void;
12467
+ setWidgetState: (state: Draft<S>, action: {
12468
+ payload: {
12469
+ uniqid: string;
12470
+ } & {
12471
+ busy?: boolean | undefined;
12472
+ loading?: boolean | undefined;
12473
+ initialized?: boolean | undefined;
12474
+ mounted?: boolean | undefined;
12475
+ hover?: boolean | undefined;
12476
+ empty?: boolean | undefined;
12477
+ locked?: boolean | undefined;
12478
+ };
12479
+ type: string;
12480
+ }) => void;
12481
+ setAllWidgetStates: (state: Draft<S>, action: {
12482
+ payload: {
12483
+ busy?: boolean | undefined;
12484
+ loading?: boolean | undefined;
12485
+ initialized?: boolean | undefined;
12486
+ mounted?: boolean | undefined;
12487
+ hover?: boolean | undefined;
12488
+ empty?: boolean | undefined;
12489
+ locked?: boolean | undefined;
12490
+ };
12491
+ type: string;
12492
+ }) => void;
12493
+ registerModal: (state: Draft<S>, action: {
12494
+ payload: WidgetModalProps;
12495
+ type: string;
12496
+ }) => void;
12133
12497
  flushModal: (state: Draft<S>) => void;
12134
12498
  }, "widgets">;
12135
12499
  getWidgetRTHandlers: (dispatch: RTDispatch, uniqid: string) => jamespot_user_api.RTMessageHandler<"WIDGET", "widget-presence-response">[];
@@ -12162,7 +12526,7 @@ declare const Widget: {
12162
12526
  } & jamespot_user_api.WidgetDatasourceTableType) | ({
12163
12527
  layers?: string[] | undefined;
12164
12528
  } & {
12165
- name: WidgetsName.ExcelDatasourceTable;
12529
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
12166
12530
  uniqid: string;
12167
12531
  content: {
12168
12532
  uri?: string | undefined;
@@ -12213,7 +12577,7 @@ declare const Widget: {
12213
12577
  } & jamespot_user_api.WidgetDatasourceTableType) | ({
12214
12578
  layers?: string[] | undefined;
12215
12579
  } & {
12216
- name: WidgetsName.ExcelDatasourceTable;
12580
+ name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
12217
12581
  uniqid: string;
12218
12582
  content: {
12219
12583
  uri?: string | undefined;
@@ -12277,7 +12641,7 @@ declare const Widget: {
12277
12641
  dateCreation: zod.ZodOptional<zod.ZodString>;
12278
12642
  dateModified: zod.ZodOptional<zod.ZodString>;
12279
12643
  }, zod.ZodUnion<[zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodNumber, zod.ZodNullable<zod.ZodString>, zod.ZodString, zod.ZodString]>, "strip"> | undefined;
12280
- selectWidgetObjectRights: (state: WidgetsRootState, uniqid: string) => Rights | undefined;
12644
+ selectWidgetObjectRights: (state: WidgetsRootState, uniqid: string) => jamespot_user_api.Rights | undefined;
12281
12645
  selectAllWidgetRTObject: (state: WidgetsRootState, uniqid: string) => {
12282
12646
  object: jamespot_user_api.jObjectBase & {
12283
12647
  title: string;
@@ -12293,7 +12657,7 @@ type EditorProps = {
12293
12657
  name: WidgetKeys;
12294
12658
  position: 'left' | 'right';
12295
12659
  popup?: boolean;
12296
- view?: React.ReactNode;
12660
+ view?: React$1.ReactNode;
12297
12661
  onSave?: <T = CombinedWidgetContent>(content: Partial<T>) => void;
12298
12662
  };
12299
12663
  type EditorsState = {
@@ -12307,7 +12671,7 @@ declare const WidgetEditor: {
12307
12671
  registerEditor: (state: Draft<S>, action: PayloadAction<Pick<EditorProps, 'name' | 'onSave' | 'uniqid'>>) => void;
12308
12672
  registerEditorPopup: (state: Draft<S>, action: PayloadAction<{
12309
12673
  uniqid: string;
12310
- view: React.ReactNode;
12674
+ view: React$1.ReactNode;
12311
12675
  }>) => void;
12312
12676
  flushEditorPopup: (state: Draft<S>, action: PayloadAction<{
12313
12677
  uniqid: string;
@@ -13020,21 +13384,19 @@ declare const SocialActions: {
13020
13384
  }, RootState$1>;
13021
13385
  };
13022
13386
 
13023
- type RootState = Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
13024
- type RootDispatch = Dispatch$1<Action$1>;
13025
- type RTDispatch = Dispatch<any>;
13026
- type ApiError = {
13027
- error: number;
13028
- errorMsg?: string;
13387
+ type StudioAppsListState = {
13388
+ studioAppsList?: StudioApplication[];
13389
+ loadingStudioAppsList: 'idle' | 'pending';
13390
+ deleteStudioAppStatus: 'idle' | 'pending';
13391
+ suspendStudioAppStatus: 'idle' | 'pending';
13392
+ restartStudioAppStatus: 'idle' | 'pending';
13393
+ cloneStudioAppStatus: 'idle' | 'pending';
13394
+ createInWorkAppStatus: 'idle' | 'pending';
13395
+ createNewStudioAppStatus: 'idle' | 'pending';
13029
13396
  };
13030
- type ThunkApiConfig<T> = {
13031
- dispatch: any;
13032
- state: RootState & T;
13033
- extra: {
13034
- jApi: JamespotUserApi;
13035
- };
13397
+ type StudioAppsListRootState = {
13398
+ studioAppsList: StudioAppsListState;
13036
13399
  };
13037
-
13038
13400
  declare const AUDIENCE: {
13039
13401
  readonly ALL: "1";
13040
13402
  readonly CUSTOM: "0";
@@ -13381,21 +13743,6 @@ interface AccessRightObjectList {
13381
13743
  mail: string;
13382
13744
  _values: Values;
13383
13745
  }
13384
- interface AccessRightObjectList {
13385
- id: number;
13386
- type: string;
13387
- uri: string;
13388
- title: string;
13389
- mainType: string;
13390
- _cssColor: string;
13391
- _cssClass: string;
13392
- _url: string;
13393
- _right: Right;
13394
- firstname: string;
13395
- lastname: string;
13396
- mail: string;
13397
- _values: Values;
13398
- }
13399
13746
  interface Right {
13400
13747
  create: boolean;
13401
13748
  read: boolean;
@@ -13545,7 +13892,9 @@ interface ParamsClass {
13545
13892
  idTaxonomy?: string;
13546
13893
  jagCheckbox?: string;
13547
13894
  }
13548
-
13895
+ type StudioRootState = {
13896
+ studio: StudioAppsListRootState & CurrentStudioAppRootState;
13897
+ };
13549
13898
  interface CurrentStudioAppState {
13550
13899
  currentStudioApp: StudioApplication | null;
13551
13900
  fetchCurrentStudioAppStatus: 'idle' | 'pending';
@@ -13556,28 +13905,47 @@ interface CurrentStudioAppState {
13556
13905
  type CurrentStudioAppRootState = {
13557
13906
  currentStudioApp: CurrentStudioAppState;
13558
13907
  };
13908
+ type HTMLInfo = {
13909
+ id: string;
13910
+ name: string;
13911
+ type: string;
13912
+ fixed: boolean;
13913
+ views: {
13914
+ create: boolean;
13915
+ popup: boolean;
13916
+ edit: boolean;
13917
+ list: boolean;
13918
+ filter: boolean;
13919
+ view: boolean;
13920
+ };
13921
+ table: string;
13922
+ properties: {
13923
+ code: {
13924
+ html: string;
13925
+ text: string;
13926
+ };
13927
+ };
13928
+ };
13559
13929
 
13560
- type StudioAppsListState = {
13561
- studioAppsList?: StudioApplication[];
13562
- loadingStudioAppsList: 'idle' | 'pending';
13563
- deleteStudioAppStatus: 'idle' | 'pending';
13564
- suspendStudioAppStatus: 'idle' | 'pending';
13565
- restartStudioAppStatus: 'idle' | 'pending';
13566
- cloneStudioAppStatus: 'idle' | 'pending';
13567
- createInWorkAppStatus: 'idle' | 'pending';
13568
- createNewStudioAppStatus: 'idle' | 'pending';
13930
+ type RootState = Partial<AnimationsRootState & ApplicationRootState & AssetReservationRootState & EditorsRootState & JLandRootState & MagicPadRootState & ModelRootState & ShareRootState & StudioRootState & ToastRootState & TVDisplayRootState & WidgetsRootState & WedocAppRootState & UserCurrentRootState>;
13931
+ type RootDispatch = Dispatch$1<Action$1>;
13932
+ type RTDispatch = Dispatch<any>;
13933
+ type ApiError = {
13934
+ error: number;
13935
+ errorMsg?: string;
13569
13936
  };
13570
- type StudioAppsListRootState = {
13571
- studioAppsList: StudioAppsListState;
13937
+ type ThunkApiConfig<T> = {
13938
+ dispatch: any;
13939
+ state: RootState & T;
13940
+ extra: {
13941
+ jApi: JamespotUserApi;
13942
+ };
13572
13943
  };
13573
13944
 
13574
13945
  declare function updateViewsFromFields(clonedApp: StudioApplication, appFields: AppFieldsFormItem[]): any;
13575
13946
 
13576
13947
  declare function generateNewFormField(type: AppFormItemTypesValues, viewsDefault?: boolean): AppFieldsFormItem;
13577
13948
 
13578
- type StudioRootState = {
13579
- studio: StudioAppsListRootState & CurrentStudioAppRootState;
13580
- };
13581
13949
  declare function selectStudioAppsList(state: StudioRootState): StudioAppsListState;
13582
13950
  declare function selectCurrentStudioApp(state: StudioRootState): CurrentStudioAppState;
13583
13951
  declare const studio: {
@@ -15434,4 +15802,4 @@ declare const studio: {
15434
15802
  };
15435
15803
  };
15436
15804
 
15437
- export { APP_STATUS_TYPE, AUDIENCE, AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormItemTypesValues, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Attribute, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, ContentTypePropertyValue, Create, CreateComposant, Description, Display, DisplayComposant, Displays, EditorProps, EditorsRootState, EditorsState, Element, ExtraAppFieldsItemViews, ExtraAppFieldsItemViewsValues, Faq, FaqRootState, Hook, HookRootState, InstalledApp, JLandMapFront, JLandRootState, JType, MODE_EDIT, MODE_VIEW, MagicPad, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, OptionsClass, PagingState, ParamsClass, Platform, PlatformRootState, RTDispatch, ReservationForm, Right, RootDispatch, RootState, STUDIO_VIEW, Share, ShareRootState, SocialActions, Solr, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAudienceType, StudioRootState, StudioWidget, TVDisplay, TVDisplayRootState, Table, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, ToastRootState, UserCurrent, UserCurrentRootState, Values, ViewName, WedocApp, WedocAppRootState, WedocAppTabKeys, Widget, WidgetEditor, WidgetModalProps, actions, animationsReducer, animationsSlice, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };
15805
+ export { APP_STATUS_TYPE, AUDIENCE, AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, Animations, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppColumnsDefaultTypes, AppFieldFormProperty, AppFieldFormPropertyTypes, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormItemTypesValues, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, Application, ApplicationRootState, AssetReservation, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, Bookmark, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, Comment, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Description, Display, DisplayComposant, Displays, EditorProps, EditorsRootState, EditorsState, Element, ExtraAppFieldsItemViews, ExtraAppFieldsItemViewsValues, Faq, FaqRootState, HTMLInfo, Hook, HookRootState, InstalledApp, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPad, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, MapExtraFieldsWithView, MediaLibrary, MediaLibraryRootState, MediaLibraryState, Model, ModelRootState, Network, NetworkRootState, OptionsClass, PagingState, ParamsClass, Platform, PlatformRootState, RTDispatch, ReservationForm, ReservationRootState, ReservationState, Right, RootDispatch, RootState, STUDIO_VIEW, Share, SocialActions, Solr, StatusType, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplay, TVDisplayRootState, Table, TaxonomyPropertyValue, ThunkApiConfig, TinyMCE, TinyMCERootState, Toast, UserCurrent, UserCurrentRootState, Values, ViewName, WedocApp, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, Widget, WidgetEditor, actions, animationsReducer, animationsSlice, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, slice, studio, updateWidgetContent, viewsList };