jamespot-react-core 1.2.57 → 1.2.62

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.
@@ -115,16 +115,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
115
115
  userCurrent: jUserList;
116
116
  adminLogs: import("redux").CombinedState<{
117
117
  logsNavigation: {
118
- data: {
119
- url: string;
120
- dateCreation: string;
121
- level: number;
122
- pseudo: string;
123
- idUser: number;
124
- action: string;
125
- ip: string;
126
- extended?: string | undefined;
127
- }[];
118
+ data: import("jamespot-user-api").AdminLogNavigation[];
128
119
  page: number;
129
120
  filters: import("jamespot-user-api").Filters;
130
121
  orders: import("jamespot-user-api").Orders;
@@ -134,16 +125,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
134
125
  loading: "idle" | "pending";
135
126
  };
136
127
  logsObjects: {
137
- data: {
138
- url: string;
139
- mainType: string;
140
- dateCreation: string;
141
- action: string;
142
- idObject: number;
143
- typeObject: string;
144
- mail?: string | undefined;
145
- extended?: string | undefined;
146
- }[];
128
+ data: import("jamespot-user-api").AdminLogObject[];
147
129
  page: number;
148
130
  filters: import("jamespot-user-api").Filters;
149
131
  orders: import("jamespot-user-api").Orders;
@@ -153,11 +135,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
153
135
  loading: "idle" | "pending";
154
136
  };
155
137
  logsSearch: {
156
- data: {
157
- type: string;
158
- dateCreation: string;
159
- msg: string;
160
- }[];
138
+ data: import("jamespot-user-api").AdminLogSearch[];
161
139
  page: number;
162
140
  filters: import("jamespot-user-api").Filters;
163
141
  orders: import("jamespot-user-api").Orders;
@@ -174,7 +152,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
174
152
  }>;
175
153
  assetReservation: import("redux").CombinedState<{
176
154
  bookableAsset: import("jamespot-front-business").BookableAssetState;
177
- configuration: import("jamespot-front-business").Configuration;
155
+ configuration: any;
178
156
  reservation: import("jamespot-front-business").ReservationState;
179
157
  }>;
180
158
  bookmark: import("redux").CombinedState<{
@@ -203,21 +181,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
203
181
  extraBot: import("jamespot-front-business").ExtraBotState;
204
182
  contentReport: import("jamespot-front-business").ContentReportSliceRootState;
205
183
  faq: import("redux").CombinedState<{
206
- config: {
207
- loading: "idle" | "pending";
208
- } & Partial<{
209
- _web?: "" | "0" | "1" | undefined;
210
- appImageText?: string | undefined;
211
- appImage?: string | {
212
- image: {
213
- id: string;
214
- type: string;
215
- };
216
- } | undefined;
217
- _displayComment?: "" | "0" | "1" | undefined;
218
- }> & {
219
- access: import("jamespot-user-api").FaqAccess;
220
- };
184
+ config: any;
221
185
  categories: {
222
186
  loading: "idle" | "pending";
223
187
  } & {
@@ -274,236 +238,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
274
238
  };
275
239
  }>;
276
240
  wedoc: import("jamespot-front-business").WedocAppState;
277
- widgets: {
278
- layers: Record<string, {
279
- title: string;
280
- widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
281
- layers?: string[] | undefined;
282
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
283
- layers?: string[] | undefined;
284
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
285
- layers?: string[] | undefined;
286
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
287
- layers?: string[] | undefined;
288
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
289
- layers?: string[] | undefined;
290
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
291
- layers?: string[] | undefined;
292
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
293
- layers?: string[] | undefined;
294
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
295
- layers?: string[] | undefined;
296
- } & import("jamespot-user-api").WidgetType<{
297
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
298
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
299
- css?: Record<string, string | number> | undefined;
300
- edit?: boolean | undefined;
301
- }>) | ({
302
- layers?: string[] | undefined;
303
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
304
- layers?: string[] | undefined;
305
- } & {
306
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
307
- uniqid: string;
308
- content: {
309
- limit?: number | boolean | undefined;
310
- uri?: string | undefined;
311
- tableColumnsData?: {
312
- name?: string | undefined;
313
- label?: string | undefined;
314
- isVisible?: boolean | undefined;
315
- textEllipsis?: boolean | undefined;
316
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
317
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
318
- }[] | undefined;
319
- tableHeadColor?: string | undefined;
320
- tableHeadTextColor?: string | undefined;
321
- tableHeadIconColor?: string | undefined;
322
- tableRowColor?: string | undefined;
323
- tableRowTextColor?: string | undefined;
324
- tableBorderRadius?: number | undefined;
325
- tableSizedColumns?: boolean | undefined;
326
- tableSizedColumnsWidth?: number | undefined;
327
- };
328
- }) | ({
329
- layers?: string[] | undefined;
330
- } & import("jamespot-user-api").WidgetPresenceType) | ({
331
- layers?: string[] | undefined;
332
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
333
- layers?: string[] | undefined;
334
- } & import("jamespot-user-api").WidgetType<{
335
- calEventsLimit?: boolean | undefined;
336
- calEventsLimitValue?: number | undefined;
337
- calEventsPromptStatus?: string | undefined;
338
- }>) | ({
339
- layers?: string[] | undefined;
340
- } & import("jamespot-user-api").WidgetType<{
341
- contactLimit?: boolean | undefined;
342
- contactLimitValue?: number | undefined;
343
- contactPromptStatus?: string | undefined;
344
- }>) | ({
345
- layers?: string[] | undefined;
346
- } & import("jamespot-user-api").WidgetType<{
347
- emailsLimit?: boolean | undefined;
348
- emailsLimitValue?: number | undefined;
349
- emailsPromptStatus?: string | undefined;
350
- }>) | ({
351
- layers?: string[] | undefined;
352
- } & import("jamespot-user-api").WidgetType<{
353
- url?: string | undefined;
354
- }>) | ({
355
- layers?: string[] | undefined;
356
- } & import("jamespot-user-api").WidgetType<{
357
- css?: Record<string, string | number> | undefined;
358
- buttonName?: string | undefined;
359
- pictureSize?: string | undefined;
360
- }>)>[];
361
- visible: boolean;
362
- uniqid: string;
363
- locked: boolean;
364
- position?: {
365
- x: number;
366
- y: number;
367
- } | undefined;
368
- }>;
369
- ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
370
- layers?: string[] | undefined;
371
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
372
- layers?: string[] | undefined;
373
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
374
- layers?: string[] | undefined;
375
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
376
- layers?: string[] | undefined;
377
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
378
- layers?: string[] | undefined;
379
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
380
- layers?: string[] | undefined;
381
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
382
- layers?: string[] | undefined;
383
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
384
- layers?: string[] | undefined;
385
- } & import("jamespot-user-api").WidgetType<{
386
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
387
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
388
- css?: Record<string, string | number> | undefined;
389
- edit?: boolean | undefined;
390
- }>) | ({
391
- layers?: string[] | undefined;
392
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
393
- layers?: string[] | undefined;
394
- } & {
395
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
396
- uniqid: string;
397
- content: {
398
- limit?: number | boolean | undefined;
399
- uri?: string | undefined;
400
- tableColumnsData?: {
401
- name?: string | undefined;
402
- label?: string | undefined;
403
- isVisible?: boolean | undefined;
404
- textEllipsis?: boolean | undefined;
405
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
406
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
407
- }[] | undefined;
408
- tableHeadColor?: string | undefined;
409
- tableHeadTextColor?: string | undefined;
410
- tableHeadIconColor?: string | undefined;
411
- tableRowColor?: string | undefined;
412
- tableRowTextColor?: string | undefined;
413
- tableBorderRadius?: number | undefined;
414
- tableSizedColumns?: boolean | undefined;
415
- tableSizedColumnsWidth?: number | undefined;
416
- };
417
- }) | ({
418
- layers?: string[] | undefined;
419
- } & import("jamespot-user-api").WidgetPresenceType) | ({
420
- layers?: string[] | undefined;
421
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
422
- layers?: string[] | undefined;
423
- } & import("jamespot-user-api").WidgetType<{
424
- calEventsLimit?: boolean | undefined;
425
- calEventsLimitValue?: number | undefined;
426
- calEventsPromptStatus?: string | undefined;
427
- }>) | ({
428
- layers?: string[] | undefined;
429
- } & import("jamespot-user-api").WidgetType<{
430
- contactLimit?: boolean | undefined;
431
- contactLimitValue?: number | undefined;
432
- contactPromptStatus?: string | undefined;
433
- }>) | ({
434
- layers?: string[] | undefined;
435
- } & import("jamespot-user-api").WidgetType<{
436
- emailsLimit?: boolean | undefined;
437
- emailsLimitValue?: number | undefined;
438
- emailsPromptStatus?: string | undefined;
439
- }>) | ({
440
- layers?: string[] | undefined;
441
- } & import("jamespot-user-api").WidgetType<{
442
- url?: string | undefined;
443
- }>) | ({
444
- layers?: string[] | undefined;
445
- } & import("jamespot-user-api").WidgetType<{
446
- css?: Record<string, string | number> | undefined;
447
- buttonName?: string | undefined;
448
- pictureSize?: string | undefined;
449
- }>)>>;
450
- states: Record<string, {
451
- busy?: boolean | undefined;
452
- loading?: boolean | undefined;
453
- initialized?: boolean | undefined;
454
- mounted?: boolean | undefined;
455
- hover?: boolean | undefined;
456
- empty?: boolean | undefined;
457
- locked?: boolean | undefined;
458
- }>;
459
- editableMap: Record<string, {
460
- uniqid: string;
461
- index: number;
462
- }>;
463
- currentEditableIndex: number;
464
- widgetWrapperStyle: Record<string, Record<string, string | number>>;
465
- widgetTitleStyle: Record<string, Record<string, string | number>>;
466
- widgetObject: Record<string, {
467
- id?: number | undefined;
468
- type?: string | undefined;
469
- uri?: string | undefined;
470
- mainType?: string | undefined;
471
- dateCreation?: string | undefined | undefined;
472
- dateModified?: string | null | undefined | undefined;
473
- title?: string | undefined;
474
- _url?: string | undefined;
475
- }>;
476
- widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
477
- widgetChipCount: Record<string, number>;
478
- widgetAuthor: Record<string, {
479
- id?: number | undefined;
480
- type?: string | undefined;
481
- uri?: string | undefined;
482
- mainType?: string | undefined;
483
- dateCreation?: string | undefined;
484
- dateModified?: string | undefined;
485
- title?: string | undefined;
486
- _url?: string | undefined;
487
- level?: 0 | 9 | 3 | 5 | undefined;
488
- variant?: "extraBot" | undefined;
489
- }>;
490
- flushedWidgets: string[];
491
- rtObjectStack: {
492
- object: import("jamespot-user-api").jObjectBase & {
493
- title: string;
494
- _url: string;
495
- };
496
- uniqid: string;
497
- fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
498
- }[];
499
- widgetContext: Record<string, "comment" | "article">;
500
- token?: string | undefined;
501
- modal?: {
502
- title?: string | undefined;
503
- view?: any;
504
- } | undefined;
505
- currentEditableWidgetId?: string | undefined;
506
- };
241
+ widgets: import("jamespot-user-api").WidgetsState;
507
242
  jland: import("redux").CombinedState<{
508
243
  jLandMapList: {
509
244
  maps: Array<import("jamespot-front-business").JLandMapFront>;
@@ -581,16 +316,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
581
316
  userCurrent: jUserList;
582
317
  adminLogs: import("redux").CombinedState<{
583
318
  logsNavigation: {
584
- data: {
585
- url: string;
586
- dateCreation: string;
587
- level: number;
588
- pseudo: string;
589
- idUser: number;
590
- action: string;
591
- ip: string;
592
- extended?: string | undefined;
593
- }[];
319
+ data: import("jamespot-user-api").AdminLogNavigation[];
594
320
  page: number;
595
321
  filters: import("jamespot-user-api").Filters;
596
322
  orders: import("jamespot-user-api").Orders;
@@ -600,16 +326,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
600
326
  loading: "idle" | "pending";
601
327
  };
602
328
  logsObjects: {
603
- data: {
604
- url: string;
605
- mainType: string;
606
- dateCreation: string;
607
- action: string;
608
- idObject: number;
609
- typeObject: string;
610
- mail?: string | undefined;
611
- extended?: string | undefined;
612
- }[];
329
+ data: import("jamespot-user-api").AdminLogObject[];
613
330
  page: number;
614
331
  filters: import("jamespot-user-api").Filters;
615
332
  orders: import("jamespot-user-api").Orders;
@@ -619,11 +336,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
619
336
  loading: "idle" | "pending";
620
337
  };
621
338
  logsSearch: {
622
- data: {
623
- type: string;
624
- dateCreation: string;
625
- msg: string;
626
- }[];
339
+ data: import("jamespot-user-api").AdminLogSearch[];
627
340
  page: number;
628
341
  filters: import("jamespot-user-api").Filters;
629
342
  orders: import("jamespot-user-api").Orders;
@@ -640,7 +353,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
640
353
  }>;
641
354
  assetReservation: import("redux").CombinedState<{
642
355
  bookableAsset: import("jamespot-front-business").BookableAssetState;
643
- configuration: import("jamespot-front-business").Configuration;
356
+ configuration: any;
644
357
  reservation: import("jamespot-front-business").ReservationState;
645
358
  }>;
646
359
  bookmark: import("redux").CombinedState<{
@@ -669,21 +382,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
669
382
  extraBot: import("jamespot-front-business").ExtraBotState;
670
383
  contentReport: import("jamespot-front-business").ContentReportSliceRootState;
671
384
  faq: import("redux").CombinedState<{
672
- config: {
673
- loading: "idle" | "pending";
674
- } & Partial<{
675
- _web?: "" | "0" | "1" | undefined;
676
- appImageText?: string | undefined;
677
- appImage?: string | {
678
- image: {
679
- id: string;
680
- type: string;
681
- };
682
- } | undefined;
683
- _displayComment?: "" | "0" | "1" | undefined;
684
- }> & {
685
- access: import("jamespot-user-api").FaqAccess;
686
- };
385
+ config: any;
687
386
  categories: {
688
387
  loading: "idle" | "pending";
689
388
  } & {
@@ -740,236 +439,7 @@ declare function createStore(initialAsyncReducers: AsyncReducers): import("@redu
740
439
  };
741
440
  }>;
742
441
  wedoc: import("jamespot-front-business").WedocAppState;
743
- widgets: {
744
- layers: Record<string, {
745
- title: string;
746
- widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
747
- layers?: string[] | undefined;
748
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
749
- layers?: string[] | undefined;
750
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
751
- layers?: string[] | undefined;
752
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
753
- layers?: string[] | undefined;
754
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
755
- layers?: string[] | undefined;
756
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
757
- layers?: string[] | undefined;
758
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
759
- layers?: string[] | undefined;
760
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
761
- layers?: string[] | undefined;
762
- } & import("jamespot-user-api").WidgetType<{
763
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
764
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
765
- css?: Record<string, string | number> | undefined;
766
- edit?: boolean | undefined;
767
- }>) | ({
768
- layers?: string[] | undefined;
769
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
770
- layers?: string[] | undefined;
771
- } & {
772
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
773
- uniqid: string;
774
- content: {
775
- limit?: number | boolean | undefined;
776
- uri?: string | undefined;
777
- tableColumnsData?: {
778
- name?: string | undefined;
779
- label?: string | undefined;
780
- isVisible?: boolean | undefined;
781
- textEllipsis?: boolean | undefined;
782
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
783
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
784
- }[] | undefined;
785
- tableHeadColor?: string | undefined;
786
- tableHeadTextColor?: string | undefined;
787
- tableHeadIconColor?: string | undefined;
788
- tableRowColor?: string | undefined;
789
- tableRowTextColor?: string | undefined;
790
- tableBorderRadius?: number | undefined;
791
- tableSizedColumns?: boolean | undefined;
792
- tableSizedColumnsWidth?: number | undefined;
793
- };
794
- }) | ({
795
- layers?: string[] | undefined;
796
- } & import("jamespot-user-api").WidgetPresenceType) | ({
797
- layers?: string[] | undefined;
798
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
799
- layers?: string[] | undefined;
800
- } & import("jamespot-user-api").WidgetType<{
801
- calEventsLimit?: boolean | undefined;
802
- calEventsLimitValue?: number | undefined;
803
- calEventsPromptStatus?: string | undefined;
804
- }>) | ({
805
- layers?: string[] | undefined;
806
- } & import("jamespot-user-api").WidgetType<{
807
- contactLimit?: boolean | undefined;
808
- contactLimitValue?: number | undefined;
809
- contactPromptStatus?: string | undefined;
810
- }>) | ({
811
- layers?: string[] | undefined;
812
- } & import("jamespot-user-api").WidgetType<{
813
- emailsLimit?: boolean | undefined;
814
- emailsLimitValue?: number | undefined;
815
- emailsPromptStatus?: string | undefined;
816
- }>) | ({
817
- layers?: string[] | undefined;
818
- } & import("jamespot-user-api").WidgetType<{
819
- url?: string | undefined;
820
- }>) | ({
821
- layers?: string[] | undefined;
822
- } & import("jamespot-user-api").WidgetType<{
823
- css?: Record<string, string | number> | undefined;
824
- buttonName?: string | undefined;
825
- pictureSize?: string | undefined;
826
- }>)>[];
827
- visible: boolean;
828
- uniqid: string;
829
- locked: boolean;
830
- position?: {
831
- x: number;
832
- y: number;
833
- } | undefined;
834
- }>;
835
- ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
836
- layers?: string[] | undefined;
837
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
838
- layers?: string[] | undefined;
839
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
840
- layers?: string[] | undefined;
841
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
842
- layers?: string[] | undefined;
843
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
844
- layers?: string[] | undefined;
845
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
846
- layers?: string[] | undefined;
847
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
848
- layers?: string[] | undefined;
849
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
850
- layers?: string[] | undefined;
851
- } & import("jamespot-user-api").WidgetType<{
852
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
853
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
854
- css?: Record<string, string | number> | undefined;
855
- edit?: boolean | undefined;
856
- }>) | ({
857
- layers?: string[] | undefined;
858
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
859
- layers?: string[] | undefined;
860
- } & {
861
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
862
- uniqid: string;
863
- content: {
864
- limit?: number | boolean | undefined;
865
- uri?: string | undefined;
866
- tableColumnsData?: {
867
- name?: string | undefined;
868
- label?: string | undefined;
869
- isVisible?: boolean | undefined;
870
- textEllipsis?: boolean | undefined;
871
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
872
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
873
- }[] | undefined;
874
- tableHeadColor?: string | undefined;
875
- tableHeadTextColor?: string | undefined;
876
- tableHeadIconColor?: string | undefined;
877
- tableRowColor?: string | undefined;
878
- tableRowTextColor?: string | undefined;
879
- tableBorderRadius?: number | undefined;
880
- tableSizedColumns?: boolean | undefined;
881
- tableSizedColumnsWidth?: number | undefined;
882
- };
883
- }) | ({
884
- layers?: string[] | undefined;
885
- } & import("jamespot-user-api").WidgetPresenceType) | ({
886
- layers?: string[] | undefined;
887
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
888
- layers?: string[] | undefined;
889
- } & import("jamespot-user-api").WidgetType<{
890
- calEventsLimit?: boolean | undefined;
891
- calEventsLimitValue?: number | undefined;
892
- calEventsPromptStatus?: string | undefined;
893
- }>) | ({
894
- layers?: string[] | undefined;
895
- } & import("jamespot-user-api").WidgetType<{
896
- contactLimit?: boolean | undefined;
897
- contactLimitValue?: number | undefined;
898
- contactPromptStatus?: string | undefined;
899
- }>) | ({
900
- layers?: string[] | undefined;
901
- } & import("jamespot-user-api").WidgetType<{
902
- emailsLimit?: boolean | undefined;
903
- emailsLimitValue?: number | undefined;
904
- emailsPromptStatus?: string | undefined;
905
- }>) | ({
906
- layers?: string[] | undefined;
907
- } & import("jamespot-user-api").WidgetType<{
908
- url?: string | undefined;
909
- }>) | ({
910
- layers?: string[] | undefined;
911
- } & import("jamespot-user-api").WidgetType<{
912
- css?: Record<string, string | number> | undefined;
913
- buttonName?: string | undefined;
914
- pictureSize?: string | undefined;
915
- }>)>>;
916
- states: Record<string, {
917
- busy?: boolean | undefined;
918
- loading?: boolean | undefined;
919
- initialized?: boolean | undefined;
920
- mounted?: boolean | undefined;
921
- hover?: boolean | undefined;
922
- empty?: boolean | undefined;
923
- locked?: boolean | undefined;
924
- }>;
925
- editableMap: Record<string, {
926
- uniqid: string;
927
- index: number;
928
- }>;
929
- currentEditableIndex: number;
930
- widgetWrapperStyle: Record<string, Record<string, string | number>>;
931
- widgetTitleStyle: Record<string, Record<string, string | number>>;
932
- widgetObject: Record<string, {
933
- id?: number | undefined;
934
- type?: string | undefined;
935
- uri?: string | undefined;
936
- mainType?: string | undefined;
937
- dateCreation?: string | undefined | undefined;
938
- dateModified?: string | null | undefined | undefined;
939
- title?: string | undefined;
940
- _url?: string | undefined;
941
- }>;
942
- widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
943
- widgetChipCount: Record<string, number>;
944
- widgetAuthor: Record<string, {
945
- id?: number | undefined;
946
- type?: string | undefined;
947
- uri?: string | undefined;
948
- mainType?: string | undefined;
949
- dateCreation?: string | undefined;
950
- dateModified?: string | undefined;
951
- title?: string | undefined;
952
- _url?: string | undefined;
953
- level?: 0 | 9 | 3 | 5 | undefined;
954
- variant?: "extraBot" | undefined;
955
- }>;
956
- flushedWidgets: string[];
957
- rtObjectStack: {
958
- object: import("jamespot-user-api").jObjectBase & {
959
- title: string;
960
- _url: string;
961
- };
962
- uniqid: string;
963
- fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
964
- }[];
965
- widgetContext: Record<string, "comment" | "article">;
966
- token?: string | undefined;
967
- modal?: {
968
- title?: string | undefined;
969
- view?: any;
970
- } | undefined;
971
- currentEditableWidgetId?: string | undefined;
972
- };
442
+ widgets: import("jamespot-user-api").WidgetsState;
973
443
  jland: import("redux").CombinedState<{
974
444
  jLandMapList: {
975
445
  maps: Array<import("jamespot-front-business").JLandMapFront>;
@@ -1052,16 +522,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1052
522
  userCurrent: jUserList;
1053
523
  adminLogs: import("redux").CombinedState<{
1054
524
  logsNavigation: {
1055
- data: {
1056
- url: string;
1057
- dateCreation: string;
1058
- level: number;
1059
- pseudo: string;
1060
- idUser: number;
1061
- action: string;
1062
- ip: string;
1063
- extended?: string | undefined;
1064
- }[];
525
+ data: import("jamespot-user-api").AdminLogNavigation[];
1065
526
  page: number;
1066
527
  filters: import("jamespot-user-api").Filters;
1067
528
  orders: import("jamespot-user-api").Orders;
@@ -1071,16 +532,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1071
532
  loading: "idle" | "pending";
1072
533
  };
1073
534
  logsObjects: {
1074
- data: {
1075
- url: string;
1076
- mainType: string;
1077
- dateCreation: string;
1078
- action: string;
1079
- idObject: number;
1080
- typeObject: string;
1081
- mail?: string | undefined;
1082
- extended?: string | undefined;
1083
- }[];
535
+ data: import("jamespot-user-api").AdminLogObject[];
1084
536
  page: number;
1085
537
  filters: import("jamespot-user-api").Filters;
1086
538
  orders: import("jamespot-user-api").Orders;
@@ -1090,11 +542,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1090
542
  loading: "idle" | "pending";
1091
543
  };
1092
544
  logsSearch: {
1093
- data: {
1094
- type: string;
1095
- dateCreation: string;
1096
- msg: string;
1097
- }[];
545
+ data: import("jamespot-user-api").AdminLogSearch[];
1098
546
  page: number;
1099
547
  filters: import("jamespot-user-api").Filters;
1100
548
  orders: import("jamespot-user-api").Orders;
@@ -1111,7 +559,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1111
559
  }>;
1112
560
  assetReservation: import("redux").CombinedState<{
1113
561
  bookableAsset: import("jamespot-front-business").BookableAssetState;
1114
- configuration: import("jamespot-front-business").Configuration;
562
+ configuration: any;
1115
563
  reservation: import("jamespot-front-business").ReservationState;
1116
564
  }>;
1117
565
  bookmark: import("redux").CombinedState<{
@@ -1140,21 +588,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1140
588
  extraBot: import("jamespot-front-business").ExtraBotState;
1141
589
  contentReport: import("jamespot-front-business").ContentReportSliceRootState;
1142
590
  faq: import("redux").CombinedState<{
1143
- config: {
1144
- loading: "idle" | "pending";
1145
- } & Partial<{
1146
- _web?: "" | "0" | "1" | undefined;
1147
- appImageText?: string | undefined;
1148
- appImage?: string | {
1149
- image: {
1150
- id: string;
1151
- type: string;
1152
- };
1153
- } | undefined;
1154
- _displayComment?: "" | "0" | "1" | undefined;
1155
- }> & {
1156
- access: import("jamespot-user-api").FaqAccess;
1157
- };
591
+ config: any;
1158
592
  categories: {
1159
593
  loading: "idle" | "pending";
1160
594
  } & {
@@ -1211,236 +645,7 @@ export declare const useAppDispatch: () => import("@reduxjs/toolkit").ThunkDispa
1211
645
  };
1212
646
  }>;
1213
647
  wedoc: import("jamespot-front-business").WedocAppState;
1214
- widgets: {
1215
- layers: Record<string, {
1216
- title: string;
1217
- widgets: import("jamespot-user-api").WidgetWrapperGeneric<({
1218
- layers?: string[] | undefined;
1219
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1220
- layers?: string[] | undefined;
1221
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1222
- layers?: string[] | undefined;
1223
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1224
- layers?: string[] | undefined;
1225
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
1226
- layers?: string[] | undefined;
1227
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1228
- layers?: string[] | undefined;
1229
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
1230
- layers?: string[] | undefined;
1231
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1232
- layers?: string[] | undefined;
1233
- } & import("jamespot-user-api").WidgetType<{
1234
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1235
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1236
- css?: Record<string, string | number> | undefined;
1237
- edit?: boolean | undefined;
1238
- }>) | ({
1239
- layers?: string[] | undefined;
1240
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1241
- layers?: string[] | undefined;
1242
- } & {
1243
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1244
- uniqid: string;
1245
- content: {
1246
- limit?: number | boolean | undefined;
1247
- uri?: string | undefined;
1248
- tableColumnsData?: {
1249
- name?: string | undefined;
1250
- label?: string | undefined;
1251
- isVisible?: boolean | undefined;
1252
- textEllipsis?: boolean | undefined;
1253
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
1254
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1255
- }[] | undefined;
1256
- tableHeadColor?: string | undefined;
1257
- tableHeadTextColor?: string | undefined;
1258
- tableHeadIconColor?: string | undefined;
1259
- tableRowColor?: string | undefined;
1260
- tableRowTextColor?: string | undefined;
1261
- tableBorderRadius?: number | undefined;
1262
- tableSizedColumns?: boolean | undefined;
1263
- tableSizedColumnsWidth?: number | undefined;
1264
- };
1265
- }) | ({
1266
- layers?: string[] | undefined;
1267
- } & import("jamespot-user-api").WidgetPresenceType) | ({
1268
- layers?: string[] | undefined;
1269
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1270
- layers?: string[] | undefined;
1271
- } & import("jamespot-user-api").WidgetType<{
1272
- calEventsLimit?: boolean | undefined;
1273
- calEventsLimitValue?: number | undefined;
1274
- calEventsPromptStatus?: string | undefined;
1275
- }>) | ({
1276
- layers?: string[] | undefined;
1277
- } & import("jamespot-user-api").WidgetType<{
1278
- contactLimit?: boolean | undefined;
1279
- contactLimitValue?: number | undefined;
1280
- contactPromptStatus?: string | undefined;
1281
- }>) | ({
1282
- layers?: string[] | undefined;
1283
- } & import("jamespot-user-api").WidgetType<{
1284
- emailsLimit?: boolean | undefined;
1285
- emailsLimitValue?: number | undefined;
1286
- emailsPromptStatus?: string | undefined;
1287
- }>) | ({
1288
- layers?: string[] | undefined;
1289
- } & import("jamespot-user-api").WidgetType<{
1290
- url?: string | undefined;
1291
- }>) | ({
1292
- layers?: string[] | undefined;
1293
- } & import("jamespot-user-api").WidgetType<{
1294
- css?: Record<string, string | number> | undefined;
1295
- buttonName?: string | undefined;
1296
- pictureSize?: string | undefined;
1297
- }>)>[];
1298
- visible: boolean;
1299
- uniqid: string;
1300
- locked: boolean;
1301
- position?: {
1302
- x: number;
1303
- y: number;
1304
- } | undefined;
1305
- }>;
1306
- ids: Record<string, import("jamespot-user-api").WidgetWrapperGeneric<({
1307
- layers?: string[] | undefined;
1308
- } & import("jamespot-user-api").WidgetArticleAttachmentType) | ({
1309
- layers?: string[] | undefined;
1310
- } & import("jamespot-user-api").WidgetArticleButtonType) | ({
1311
- layers?: string[] | undefined;
1312
- } & import("jamespot-user-api").WidgetArticleGalleryType) | ({
1313
- layers?: string[] | undefined;
1314
- } & import("jamespot-user-api").WidgetArticleImageType) | ({
1315
- layers?: string[] | undefined;
1316
- } & import("jamespot-user-api").WidgetArticleTitleType) | ({
1317
- layers?: string[] | undefined;
1318
- } & import("jamespot-user-api").WidgetArticleTextType) | ({
1319
- layers?: string[] | undefined;
1320
- } & import("jamespot-user-api").WidgetArticleSliderType) | ({
1321
- layers?: string[] | undefined;
1322
- } & import("jamespot-user-api").WidgetType<{
1323
- widgets?: import("jamespot-user-api").WidgetBaseType[] | undefined;
1324
- arr?: import("jamespot-user-api").WidgetCheckListContentArr[] | undefined;
1325
- css?: Record<string, string | number> | undefined;
1326
- edit?: boolean | undefined;
1327
- }>) | ({
1328
- layers?: string[] | undefined;
1329
- } & import("jamespot-user-api").WidgetDatasourceTableType) | ({
1330
- layers?: string[] | undefined;
1331
- } & {
1332
- name: import("jamespot-user-api").WidgetsName.ExcelDatasourceTable;
1333
- uniqid: string;
1334
- content: {
1335
- limit?: number | boolean | undefined;
1336
- uri?: string | undefined;
1337
- tableColumnsData?: {
1338
- name?: string | undefined;
1339
- label?: string | undefined;
1340
- isVisible?: boolean | undefined;
1341
- textEllipsis?: boolean | undefined;
1342
- dateFormat?: "date" | "date-time" | "date-time-sec" | "time" | "time-sec" | undefined;
1343
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
1344
- }[] | undefined;
1345
- tableHeadColor?: string | undefined;
1346
- tableHeadTextColor?: string | undefined;
1347
- tableHeadIconColor?: string | undefined;
1348
- tableRowColor?: string | undefined;
1349
- tableRowTextColor?: string | undefined;
1350
- tableBorderRadius?: number | undefined;
1351
- tableSizedColumns?: boolean | undefined;
1352
- tableSizedColumnsWidth?: number | undefined;
1353
- };
1354
- }) | ({
1355
- layers?: string[] | undefined;
1356
- } & import("jamespot-user-api").WidgetPresenceType) | ({
1357
- layers?: string[] | undefined;
1358
- } & import("jamespot-user-api").WidgetQuickSurveyType) | ({
1359
- layers?: string[] | undefined;
1360
- } & import("jamespot-user-api").WidgetType<{
1361
- calEventsLimit?: boolean | undefined;
1362
- calEventsLimitValue?: number | undefined;
1363
- calEventsPromptStatus?: string | undefined;
1364
- }>) | ({
1365
- layers?: string[] | undefined;
1366
- } & import("jamespot-user-api").WidgetType<{
1367
- contactLimit?: boolean | undefined;
1368
- contactLimitValue?: number | undefined;
1369
- contactPromptStatus?: string | undefined;
1370
- }>) | ({
1371
- layers?: string[] | undefined;
1372
- } & import("jamespot-user-api").WidgetType<{
1373
- emailsLimit?: boolean | undefined;
1374
- emailsLimitValue?: number | undefined;
1375
- emailsPromptStatus?: string | undefined;
1376
- }>) | ({
1377
- layers?: string[] | undefined;
1378
- } & import("jamespot-user-api").WidgetType<{
1379
- url?: string | undefined;
1380
- }>) | ({
1381
- layers?: string[] | undefined;
1382
- } & import("jamespot-user-api").WidgetType<{
1383
- css?: Record<string, string | number> | undefined;
1384
- buttonName?: string | undefined;
1385
- pictureSize?: string | undefined;
1386
- }>)>>;
1387
- states: Record<string, {
1388
- busy?: boolean | undefined;
1389
- loading?: boolean | undefined;
1390
- initialized?: boolean | undefined;
1391
- mounted?: boolean | undefined;
1392
- hover?: boolean | undefined;
1393
- empty?: boolean | undefined;
1394
- locked?: boolean | undefined;
1395
- }>;
1396
- editableMap: Record<string, {
1397
- uniqid: string;
1398
- index: number;
1399
- }>;
1400
- currentEditableIndex: number;
1401
- widgetWrapperStyle: Record<string, Record<string, string | number>>;
1402
- widgetTitleStyle: Record<string, Record<string, string | number>>;
1403
- widgetObject: Record<string, {
1404
- id?: number | undefined;
1405
- type?: string | undefined;
1406
- uri?: string | undefined;
1407
- mainType?: string | undefined;
1408
- dateCreation?: string | undefined | undefined;
1409
- dateModified?: string | null | undefined | undefined;
1410
- title?: string | undefined;
1411
- _url?: string | undefined;
1412
- }>;
1413
- widgetObjectRights: Record<string, import("jamespot-user-api").Rights>;
1414
- widgetChipCount: Record<string, number>;
1415
- widgetAuthor: Record<string, {
1416
- id?: number | undefined;
1417
- type?: string | undefined;
1418
- uri?: string | undefined;
1419
- mainType?: string | undefined;
1420
- dateCreation?: string | undefined;
1421
- dateModified?: string | undefined;
1422
- title?: string | undefined;
1423
- _url?: string | undefined;
1424
- level?: 0 | 9 | 3 | 5 | undefined;
1425
- variant?: "extraBot" | undefined;
1426
- }>;
1427
- flushedWidgets: string[];
1428
- rtObjectStack: {
1429
- object: import("jamespot-user-api").jObjectBase & {
1430
- title: string;
1431
- _url: string;
1432
- };
1433
- uniqid: string;
1434
- fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
1435
- }[];
1436
- widgetContext: Record<string, "comment" | "article">;
1437
- token?: string | undefined;
1438
- modal?: {
1439
- title?: string | undefined;
1440
- view?: any;
1441
- } | undefined;
1442
- currentEditableWidgetId?: string | undefined;
1443
- };
648
+ widgets: import("jamespot-user-api").WidgetsState;
1444
649
  jland: import("redux").CombinedState<{
1445
650
  jLandMapList: {
1446
651
  maps: Array<import("jamespot-front-business").JLandMapFront>;