jamespot-front-business 1.2.44 → 1.2.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -1,11 +1,10 @@
1
1
  import * as jamespot_user_api from 'jamespot-user-api';
2
- import { Filters, Orders, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, WedocFileType, PagingResults, TVChannelList, ValueOf, StudioApplicationBase, jTaxonomyLittle, jUserLittle, JLandMap, AdminLicensesNotAssigned, AudienceAutocomplete, jArticleView, jUserList, AdminLogNavigation, AdminLogObject, AdminLogSearch, ExtraBotConfig, CommentWithExtensions, jCommentList, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, NetworkType, TeamWorkTaskStatus, TinyMCECommonOptions, TinyMCEExtendedOptions, WidgetKeys, WidgetDisplayMode, CombinedWidgetContent, Model as Model$1, WidgetsRootState, JamespotUserApi, ApiWrapper, ContentReportStatus, LicenseHookListType, ApiPagingResults, WidgetDefinitionProps, WidgetWrapperProps, SocialAction } from 'jamespot-user-api';
2
+ import { Filters, Orders, AnimationConfigurationType, AnimationStats, ApplicationType, BookableAssetList, AssetReservationConfiguration, ReservationList, WedocFileType, PagingResults, TVChannelList, ValueOf, StudioApplicationBase, jTaxonomyLittle, jUserLittle, ArticleWithExtensions, Articles, AdminLicensesNotAssigned, AudienceAutocomplete, ArticlesView, jUserList, AdminLogNavigation, AdminLogObject, AdminLogSearch, jExtraBotView, CommentWithExtensions, FormatComments, BookmarkRawList, FaqHookProperties, FaqAccess, ExtendedFaqCategory, FaqList, HookListType, MediaLibraryList, MediaLibraryStats, MediaLibraryFolderStats, MediaLibraryFilesStats, NetworkType, TeamWorkTaskStatus, TinyMCECommonOptions, TinyMCEExtendedOptions, WidgetKeys, WidgetDisplayMode, CombinedWidgetContent, Model as Model$1, WidgetsRootState, JamespotUserApi, ApiWrapper, ContentReportStatus, LicenseHookListType, ApiPagingResults, MediaLibraryFolderList, WidgetDefinitionProps, WidgetWrapperProps, SocialAction } from 'jamespot-user-api';
3
3
  import * as _reduxjs_toolkit from '@reduxjs/toolkit';
4
4
  import { EntityState, ThunkDispatch, AnyAction, PayloadAction } from '@reduxjs/toolkit';
5
5
  import { ContentReportList } from 'jamespot-user-api/lib/src/types/contentReport';
6
6
  import * as redux from 'redux';
7
7
  import * as _reduxjs_toolkit_dist_tsHelpers from '@reduxjs/toolkit/dist/tsHelpers';
8
- import * as jamespot_user_api_lib_src_types_user from 'jamespot-user-api/lib/src/types/user';
9
8
  import React$1 from 'react';
10
9
 
11
10
  declare const Article: {
@@ -451,7 +450,7 @@ type JType = {
451
450
  mainType: string;
452
451
  };
453
452
  type ContentTypePropertyValue = Pick<JType, 'type' | 'label'>;
454
- declare const AppFormFixedList: ("USER" | "TITLE" | "PUBLISHTO" | "SENDALERTTOSUBSCRIBERS" | "RECEIVEACOPY" | "CREATIONDATE")[];
453
+ declare const AppFormFixedList: ("TITLE" | "USER" | "PUBLISHTO" | "SENDALERTTOSUBSCRIBERS" | "RECEIVEACOPY" | "CREATIONDATE")[];
455
454
  declare const AppFormNoAsFieldList: Array<ExtraAppFieldsItemViewsValues | AppFormItemTypesValues>;
456
455
  declare const AppFormFieldOnlyInView: "CODEHTML"[];
457
456
  declare const AppFormNonPrimaryList: (AppFormItemTypesValues | ExtraAppFieldsItemViewsValues)[];
@@ -711,8 +710,9 @@ type MapCreateState = Loading & {
711
710
  type MapCreateRootState = {
712
711
  mapCreate: MapCreateState;
713
712
  };
713
+ type JLandMap = ArticleWithExtensions<Articles<'raw-list', 'jlandmap'>, ['licenses']>;
714
714
  type JLandMapFront = JLandMap & {
715
- urlToJland?: string;
715
+ urlToJland?: string | undefined;
716
716
  };
717
717
  type JLandMapListState = {
718
718
  maps: Array<JLandMapFront>;
@@ -732,7 +732,7 @@ type JLandRootState = {
732
732
  };
733
733
 
734
734
  type MagicPadSliceRootState = Loading & {
735
- pads: jArticleView[];
735
+ pads: ArticlesView[];
736
736
  query: string;
737
737
  page: number;
738
738
  tab: 'my' | 'all';
@@ -780,13 +780,13 @@ type AdminLogsRootState = {
780
780
  };
781
781
 
782
782
  type ExtraBotGlobalState = Loading;
783
- type ExtraBotListAllState = PagingState$1<ExtraBotConfig>;
784
- type ExtraBotListMinesState = PagingState$1<ExtraBotConfig>;
783
+ type ExtraBotListAllState = PagingState$1<jExtraBotView>;
784
+ type ExtraBotListMinesState = PagingState$1<jExtraBotView>;
785
785
  type ExtraBotFormModalState = {
786
786
  open: boolean;
787
787
  mode: 'create' | 'edit';
788
788
  type: 'all' | 'mines';
789
- extraBot?: ExtraBotConfig | undefined;
789
+ extraBot?: jExtraBotView | undefined;
790
790
  };
791
791
  type ExtraBotState = {
792
792
  global: ExtraBotGlobalState;
@@ -820,7 +820,7 @@ type CommentRootState = {
820
820
  };
821
821
  type CommentsList = {
822
822
  idArticle: number;
823
- list: Array<CommentWithExtensions<jCommentList, ['actions']> & {
823
+ list: Array<CommentWithExtensions<FormatComments<'raw-list'>, ['actions']> & {
824
824
  pending?: boolean;
825
825
  }>;
826
826
  };
@@ -1558,9 +1558,9 @@ declare const Bookmark: {
1558
1558
  resetMoveBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkList/resetMoveBookmarkStatus">;
1559
1559
  resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
1560
1560
  addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
1561
+ type: "bookmarkLink";
1561
1562
  id: number;
1562
1563
  mainType: string;
1563
- type: "bookmarkLink";
1564
1564
  uri: string;
1565
1565
  value: string | null;
1566
1566
  srcId: number;
@@ -1568,6 +1568,7 @@ declare const Bookmark: {
1568
1568
  targetId: number;
1569
1569
  targetType: string | null;
1570
1570
  dateCreation?: string | undefined;
1571
+ url?: string | null | undefined;
1571
1572
  dateModified?: string | null | undefined;
1572
1573
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1573
1574
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1575,12 +1576,11 @@ declare const Bookmark: {
1575
1576
  bookmarkOrder?: number | undefined;
1576
1577
  bookmarkLabel?: string | undefined;
1577
1578
  bookmarkMeta?: string | null | undefined;
1578
- url?: string | null | undefined;
1579
1579
  }, "bookmarkList/addBookmarkRT">;
1580
1580
  deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
1581
+ type: "bookmarkLink";
1581
1582
  id: number;
1582
1583
  mainType: string;
1583
- type: "bookmarkLink";
1584
1584
  uri: string;
1585
1585
  value: string | null;
1586
1586
  srcId: number;
@@ -1588,6 +1588,7 @@ declare const Bookmark: {
1588
1588
  targetId: number;
1589
1589
  targetType: string | null;
1590
1590
  dateCreation?: string | undefined;
1591
+ url?: string | null | undefined;
1591
1592
  dateModified?: string | null | undefined;
1592
1593
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1593
1594
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1595,12 +1596,11 @@ declare const Bookmark: {
1595
1596
  bookmarkOrder?: number | undefined;
1596
1597
  bookmarkLabel?: string | undefined;
1597
1598
  bookmarkMeta?: string | null | undefined;
1598
- url?: string | null | undefined;
1599
1599
  }, "bookmarkList/deleteBookmarkRT">;
1600
1600
  updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
1601
+ type: "bookmarkLink";
1601
1602
  id: number;
1602
1603
  mainType: string;
1603
- type: "bookmarkLink";
1604
1604
  uri: string;
1605
1605
  value: string | null;
1606
1606
  srcId: number;
@@ -1608,6 +1608,7 @@ declare const Bookmark: {
1608
1608
  targetId: number;
1609
1609
  targetType: string | null;
1610
1610
  dateCreation?: string | undefined;
1611
+ url?: string | null | undefined;
1611
1612
  dateModified?: string | null | undefined;
1612
1613
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1613
1614
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1615,12 +1616,11 @@ declare const Bookmark: {
1615
1616
  bookmarkOrder?: number | undefined;
1616
1617
  bookmarkLabel?: string | undefined;
1617
1618
  bookmarkMeta?: string | null | undefined;
1618
- url?: string | null | undefined;
1619
1619
  }, "bookmarkList/updateBookmarkRT">;
1620
1620
  setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
1621
+ type: "bookmarkLink";
1621
1622
  id: number;
1622
1623
  mainType: string;
1623
- type: "bookmarkLink";
1624
1624
  uri: string;
1625
1625
  value: string | null;
1626
1626
  srcId: number;
@@ -1628,6 +1628,7 @@ declare const Bookmark: {
1628
1628
  targetId: number;
1629
1629
  targetType: string | null;
1630
1630
  dateCreation?: string | undefined;
1631
+ url?: string | null | undefined;
1631
1632
  dateModified?: string | null | undefined;
1632
1633
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1633
1634
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1635,14 +1636,13 @@ declare const Bookmark: {
1635
1636
  bookmarkOrder?: number | undefined;
1636
1637
  bookmarkLabel?: string | undefined;
1637
1638
  bookmarkMeta?: string | null | undefined;
1638
- url?: string | null | undefined;
1639
1639
  }, "bookmarkEdit/setEditBookmark">;
1640
1640
  unsetEditBookmark: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/unsetEditBookmark">;
1641
1641
  resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
1642
1642
  fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
1643
+ type: "bookmarkLink";
1643
1644
  id: number;
1644
1645
  mainType: string;
1645
- type: "bookmarkLink";
1646
1646
  uri: string;
1647
1647
  value: string | null;
1648
1648
  srcId: number;
@@ -1650,6 +1650,7 @@ declare const Bookmark: {
1650
1650
  targetId: number;
1651
1651
  targetType: string | null;
1652
1652
  dateCreation?: string | undefined;
1653
+ url?: string | null | undefined;
1653
1654
  dateModified?: string | null | undefined;
1654
1655
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1655
1656
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1657,7 +1658,6 @@ declare const Bookmark: {
1657
1658
  bookmarkOrder?: number | undefined;
1658
1659
  bookmarkLabel?: string | undefined;
1659
1660
  bookmarkMeta?: string | null | undefined;
1660
- url?: string | null | undefined;
1661
1661
  }>, void, {
1662
1662
  dispatch: AppDispatch;
1663
1663
  state: RootState$1;
@@ -1674,9 +1674,9 @@ declare const Bookmark: {
1674
1674
  rejectedMeta?: unknown;
1675
1675
  }>;
1676
1676
  addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
1677
+ type: "bookmarkLink";
1677
1678
  id: number;
1678
1679
  mainType: string;
1679
- type: "bookmarkLink";
1680
1680
  uri: string;
1681
1681
  value: string | null;
1682
1682
  srcId: number;
@@ -1684,6 +1684,7 @@ declare const Bookmark: {
1684
1684
  targetId: number;
1685
1685
  targetType: string | null;
1686
1686
  dateCreation?: string | undefined;
1687
+ url?: string | null | undefined;
1687
1688
  dateModified?: string | null | undefined;
1688
1689
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1689
1690
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1691,11 +1692,10 @@ declare const Bookmark: {
1691
1692
  bookmarkOrder?: number | undefined;
1692
1693
  bookmarkLabel?: string | undefined;
1693
1694
  bookmarkMeta?: string | null | undefined;
1694
- url?: string | null | undefined;
1695
1695
  } | {
1696
+ type: string;
1696
1697
  id: number;
1697
1698
  mainType: string;
1698
- type: string;
1699
1699
  uri: string;
1700
1700
  value: string | null;
1701
1701
  srcId: number;
@@ -1704,21 +1704,21 @@ declare const Bookmark: {
1704
1704
  targetType: string | null;
1705
1705
  _cssColor: string;
1706
1706
  _cssClass: string;
1707
+ url?: string | null | undefined;
1707
1708
  _src?: jamespot_user_api.jObjectLittle | undefined;
1708
1709
  _target?: jamespot_user_api.jObjectLittle | undefined;
1709
1710
  bookmarkUrl?: string | null | undefined;
1710
1711
  bookmarkOrder?: string | undefined;
1711
1712
  bookmarkLabel?: string | undefined;
1712
1713
  bookmarkMeta?: string | null | undefined;
1713
- url?: string | null | undefined;
1714
1714
  _values?: {
1715
1715
  dateCreation: string;
1716
1716
  dateModified: string;
1717
1717
  } | undefined;
1718
1718
  }, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
1719
+ type: "bookmarkLink";
1719
1720
  id: number;
1720
1721
  mainType: string;
1721
- type: "bookmarkLink";
1722
1722
  uri: string;
1723
1723
  value: string | null;
1724
1724
  srcId: number;
@@ -1726,6 +1726,7 @@ declare const Bookmark: {
1726
1726
  targetId: number;
1727
1727
  targetType: string | null;
1728
1728
  dateCreation?: string | undefined;
1729
+ url?: string | null | undefined;
1729
1730
  dateModified?: string | null | undefined;
1730
1731
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1731
1732
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1733,7 +1734,6 @@ declare const Bookmark: {
1733
1734
  bookmarkOrder?: number | undefined;
1734
1735
  bookmarkLabel?: string | undefined;
1735
1736
  bookmarkMeta?: string | null | undefined;
1736
- url?: string | null | undefined;
1737
1737
  }, jamespot_user_api.BaseMessages>, ({
1738
1738
  bookmarkUrl?: string | null | undefined;
1739
1739
  bookmarkLabel?: string | undefined;
@@ -1779,9 +1779,9 @@ declare const Bookmark: {
1779
1779
  rejectedMeta?: unknown;
1780
1780
  }>;
1781
1781
  deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
1782
+ type: "bookmarkLink";
1782
1783
  id: number;
1783
1784
  mainType: string;
1784
- type: "bookmarkLink";
1785
1785
  uri: string;
1786
1786
  value: string | null;
1787
1787
  srcId: number;
@@ -1789,6 +1789,7 @@ declare const Bookmark: {
1789
1789
  targetId: number;
1790
1790
  targetType: string | null;
1791
1791
  dateCreation?: string | undefined;
1792
+ url?: string | null | undefined;
1792
1793
  dateModified?: string | null | undefined;
1793
1794
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1794
1795
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1796,7 +1797,6 @@ declare const Bookmark: {
1796
1797
  bookmarkOrder?: number | undefined;
1797
1798
  bookmarkLabel?: string | undefined;
1798
1799
  bookmarkMeta?: string | null | undefined;
1799
- url?: string | null | undefined;
1800
1800
  }, "id"> & {
1801
1801
  requestId?: string | undefined;
1802
1802
  }, {
@@ -1815,9 +1815,9 @@ declare const Bookmark: {
1815
1815
  rejectedMeta?: unknown;
1816
1816
  }>;
1817
1817
  editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
1818
+ type: "bookmarkLink";
1818
1819
  id: number;
1819
1820
  mainType: string;
1820
- type: "bookmarkLink";
1821
1821
  uri: string;
1822
1822
  value: string | null;
1823
1823
  srcId: number;
@@ -1825,6 +1825,7 @@ declare const Bookmark: {
1825
1825
  targetId: number;
1826
1826
  targetType: string | null;
1827
1827
  dateCreation?: string | undefined;
1828
+ url?: string | null | undefined;
1828
1829
  dateModified?: string | null | undefined;
1829
1830
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1830
1831
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1832,7 +1833,6 @@ declare const Bookmark: {
1832
1833
  bookmarkOrder?: number | undefined;
1833
1834
  bookmarkLabel?: string | undefined;
1834
1835
  bookmarkMeta?: string | null | undefined;
1835
- url?: string | null | undefined;
1836
1836
  }>, {
1837
1837
  dispatch: AppDispatch;
1838
1838
  state: RootState$1;
@@ -1853,9 +1853,9 @@ declare const Bookmark: {
1853
1853
  bookmarkList: (state: RootState$1) => bookmarkListState;
1854
1854
  bookmarkListIsInitialized: (state: RootState$1) => boolean;
1855
1855
  bookmarkEditBookmark: (state: RootState$1) => {
1856
+ type: "bookmarkLink";
1856
1857
  id: number;
1857
1858
  mainType: string;
1858
- type: "bookmarkLink";
1859
1859
  uri: string;
1860
1860
  value: string | null;
1861
1861
  srcId: number;
@@ -1863,6 +1863,7 @@ declare const Bookmark: {
1863
1863
  targetId: number;
1864
1864
  targetType: string | null;
1865
1865
  dateCreation?: string | undefined;
1866
+ url?: string | null | undefined;
1866
1867
  dateModified?: string | null | undefined;
1867
1868
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1868
1869
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1870,12 +1871,11 @@ declare const Bookmark: {
1870
1871
  bookmarkOrder?: number | undefined;
1871
1872
  bookmarkLabel?: string | undefined;
1872
1873
  bookmarkMeta?: string | null | undefined;
1873
- url?: string | null | undefined;
1874
1874
  } | undefined;
1875
1875
  bookmarkByArticleId: (state: RootState$1, idArticle: number) => {
1876
+ type: "bookmarkLink";
1876
1877
  id: number;
1877
1878
  mainType: string;
1878
- type: "bookmarkLink";
1879
1879
  uri: string;
1880
1880
  value: string | null;
1881
1881
  srcId: number;
@@ -1883,6 +1883,7 @@ declare const Bookmark: {
1883
1883
  targetId: number;
1884
1884
  targetType: string | null;
1885
1885
  dateCreation?: string | undefined;
1886
+ url?: string | null | undefined;
1886
1887
  dateModified?: string | null | undefined;
1887
1888
  _src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
1888
1889
  _target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
@@ -1890,17 +1891,16 @@ declare const Bookmark: {
1890
1891
  bookmarkOrder?: number | undefined;
1891
1892
  bookmarkLabel?: string | undefined;
1892
1893
  bookmarkMeta?: string | null | undefined;
1893
- url?: string | null | undefined;
1894
1894
  } | undefined;
1895
1895
  };
1896
1896
  getRTHandlers: (dispatch: AppDispatch) => ({
1897
- namespace: "CUSTOM-ACTION";
1898
- function: "update" | "add" | "remove";
1899
- handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
1900
- } | {
1901
1897
  namespace: "BOOKMARKS";
1902
1898
  function: "update" | "add" | "delete";
1903
1899
  handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
1900
+ } | {
1901
+ namespace: "CUSTOM-ACTION";
1902
+ function: "update" | "add" | "remove";
1903
+ handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
1904
1904
  })[];
1905
1905
  };
1906
1906
 
@@ -1986,8 +1986,9 @@ declare const Comment: {
1986
1986
  contentType: string;
1987
1987
  }[];
1988
1988
  socialEventRecord: {
1989
- userResponseStatus: 0 | 1 | "unknown" | "onSpot" | "visio" | "available" | "unavailable";
1989
+ subscribers: jamespot_user_api.jUserLittle[];
1990
1990
  subscribersTotal: number;
1991
+ userResponseStatus: 0 | 1 | "unknown" | "available" | "onSpot" | "visio" | "unavailable";
1991
1992
  subscribeAction: {
1992
1993
  type: string;
1993
1994
  class: string;
@@ -2006,15 +2007,57 @@ declare const Comment: {
2006
2007
  total: number;
2007
2008
  } | undefined;
2008
2009
  };
2009
- subscribers: jamespot_user_api.jUserLittle[];
2010
2010
  isVisio?: boolean | undefined;
2011
2011
  };
2012
+ quizFieldDefinitions: Record<string, {
2013
+ type: string;
2014
+ widget: {
2015
+ params: {
2016
+ fieldFile?: string | undefined;
2017
+ fieldPicture?: string | undefined;
2018
+ explanation?: string | undefined;
2019
+ };
2020
+ name: string;
2021
+ value: string;
2022
+ type: string;
2023
+ options: {
2024
+ value: string;
2025
+ label: string;
2026
+ }[];
2027
+ label: string;
2028
+ multiple: string;
2029
+ scoreMap: Record<string, unknown>;
2030
+ };
2031
+ mandatory: boolean;
2032
+ description?: string | undefined;
2033
+ }>;
2034
+ quizResponseRecord: {
2035
+ duration: number;
2036
+ countMembers: number;
2037
+ countResponse: number;
2038
+ done: boolean;
2039
+ score: number;
2040
+ maxScore: number;
2041
+ };
2042
+ surveyDateRecord: {
2043
+ members: jamespot_user_api.jUserLittle[];
2044
+ responses: Record<string, {
2045
+ user: jamespot_user_api.jObjectBase & {
2046
+ title: string;
2047
+ _url: string;
2048
+ } & {
2049
+ [key: string]: string | number | null | undefined;
2050
+ level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
2051
+ dateCreation: string;
2052
+ dateModified: string;
2053
+ variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2054
+ };
2055
+ dates: string[];
2056
+ }>;
2057
+ };
2012
2058
  search: never;
2013
2059
  bookmark: never;
2014
2060
  contact: never;
2015
- quizFieldDefinitions: never;
2016
- quizResponseRecord: never;
2017
- surveyDateRecord: never;
2018
2061
  comments?: {
2019
2062
  id: number;
2020
2063
  type: string;
@@ -2179,19 +2222,7 @@ declare const Comment: {
2179
2222
  monthRequestsMax: number;
2180
2223
  monthRequestsHit: number;
2181
2224
  } | undefined;
2182
- messenger?: {
2183
- id: number;
2184
- type: string;
2185
- uri: string;
2186
- mainType: string;
2187
- title: string;
2188
- _url: string;
2189
- idDiscussion: string;
2190
- isMessengerSpotGroup: boolean;
2191
- disabled: boolean;
2192
- dateCreation?: string | undefined | undefined;
2193
- dateModified?: string | null | undefined | undefined;
2194
- } | null | undefined;
2225
+ messenger?: jamespot_user_api.jMessengerGroupLittle | null | undefined;
2195
2226
  filebank?: jamespot_user_api.jFolderLittle | null | undefined;
2196
2227
  }, "actions">;
2197
2228
  } & {
@@ -2202,190 +2233,7 @@ declare const Comment: {
2202
2233
  getCommentsLikeRTHandlers: (dispatch: AppDispatch, idComments: number[] | undefined, idArticle: number) => Array<jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", jamespot_user_api.Namespaces["CUSTOM-ACTION"]>>;
2203
2234
  };
2204
2235
 
2205
- declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
2206
- id: number;
2207
- type: string;
2208
- uri: string;
2209
- mainType: string;
2210
- dateCreation: string;
2211
- dateModified: string;
2212
- title: string;
2213
- _url: string;
2214
- description: string;
2215
- enabled: boolean;
2216
- _user: jamespot_user_api.jObjectBase & {
2217
- title: string;
2218
- _url: string;
2219
- } & {
2220
- [key: string]: string | number | null | undefined;
2221
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
2222
- dateCreation: string;
2223
- dateModified: string;
2224
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2225
- };
2226
- _right: jamespot_user_api.Rights;
2227
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
2228
- _attachedFiles: {
2229
- id: number;
2230
- type: string;
2231
- uri: string;
2232
- mainType: string;
2233
- dateCreation: string;
2234
- dateModified: string | null;
2235
- title: string;
2236
- _url: string;
2237
- size: number;
2238
- mimetype: string;
2239
- path?: string | undefined;
2240
- }[];
2241
- context: string;
2242
- disclaimer: string;
2243
- prompt: string;
2244
- trigger: "mentionOnly" | "matchComment";
2245
- image?: {
2246
- width: number;
2247
- height: number;
2248
- } | undefined;
2249
- avatar?: {
2250
- id: number;
2251
- type: string;
2252
- uri: string;
2253
- mainType: string;
2254
- dateCreation: string;
2255
- dateModified: string | null;
2256
- title: string;
2257
- _url: string;
2258
- size: number;
2259
- mimetype: string;
2260
- path?: string | undefined;
2261
- } | undefined;
2262
- moderators?: {
2263
- id: string;
2264
- name: string;
2265
- type: string;
2266
- class: string;
2267
- uri: string;
2268
- mainType: string;
2269
- title: string;
2270
- _url: string;
2271
- label: string;
2272
- Pseudo: string;
2273
- shortUri: string;
2274
- cssClass: string;
2275
- cssColor: string;
2276
- }[] | undefined;
2277
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
2278
- layers?: string[] | undefined;
2279
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
2280
- layers?: string[] | undefined;
2281
- } & jamespot_user_api.WidgetArticleButtonType) | ({
2282
- layers?: string[] | undefined;
2283
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
2284
- layers?: string[] | undefined;
2285
- } & jamespot_user_api.WidgetArticleImageType) | ({
2286
- layers?: string[] | undefined;
2287
- } & jamespot_user_api.WidgetArticleTitleType) | ({
2288
- layers?: string[] | undefined;
2289
- } & jamespot_user_api.WidgetArticleTextType) | ({
2290
- layers?: string[] | undefined;
2291
- } & jamespot_user_api.WidgetArticleSliderType) | ({
2292
- layers?: string[] | undefined;
2293
- } & jamespot_user_api.WidgetType<{
2294
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
2295
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
2296
- css?: Record<string, string> | undefined;
2297
- edit?: boolean | undefined;
2298
- }>) | ({
2299
- layers?: string[] | undefined;
2300
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
2301
- layers?: string[] | undefined;
2302
- } & {
2303
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
2304
- uniqid: string;
2305
- content: {
2306
- limit?: number | boolean | undefined;
2307
- uri?: string | undefined;
2308
- tableColumnsData?: {
2309
- name?: string | undefined;
2310
- label?: string | undefined;
2311
- isVisible?: boolean | undefined;
2312
- textEllipsis?: boolean | undefined;
2313
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2314
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2315
- }[] | undefined;
2316
- tableHeadColor?: string | undefined;
2317
- tableHeadTextColor?: string | undefined;
2318
- tableHeadIconColor?: string | undefined;
2319
- tableRowColor?: string | undefined;
2320
- tableRowTextColor?: string | undefined;
2321
- tableBorderRadius?: number | undefined;
2322
- tableSizedColumns?: boolean | undefined;
2323
- tableSizedColumnsWidth?: number | undefined;
2324
- };
2325
- }) | ({
2326
- layers?: string[] | undefined;
2327
- } & jamespot_user_api.WidgetPresenceType) | ({
2328
- layers?: string[] | undefined;
2329
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
2330
- layers?: string[] | undefined;
2331
- } & jamespot_user_api.WidgetType<{
2332
- calEventsLimit?: boolean | undefined;
2333
- calEventsLimitValue?: number | undefined;
2334
- calEventsPromptStatus?: string | undefined;
2335
- }>) | ({
2336
- layers?: string[] | undefined;
2337
- } & jamespot_user_api.WidgetType<{
2338
- contactLimit?: boolean | undefined;
2339
- contactLimitValue?: number | undefined;
2340
- contactPromptStatus?: string | undefined;
2341
- }>) | ({
2342
- layers?: string[] | undefined;
2343
- } & jamespot_user_api.WidgetType<{
2344
- emailsLimit?: boolean | undefined;
2345
- emailsLimitValue?: number | undefined;
2346
- emailsPromptStatus?: string | undefined;
2347
- }>) | ({
2348
- layers?: string[] | undefined;
2349
- } & jamespot_user_api.WidgetType<{
2350
- url?: string | undefined;
2351
- }>)>[] | undefined;
2352
- tags?: {
2353
- id: string;
2354
- name: string;
2355
- type: string;
2356
- class: string;
2357
- uri: string;
2358
- mainType: string;
2359
- title: string;
2360
- label: string;
2361
- shortUri: string;
2362
- cssClass: string;
2363
- cssColor: string;
2364
- }[] | undefined;
2365
- processContext?: null | undefined;
2366
- _transientCtx?: null | undefined;
2367
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
2368
- groups?: {
2369
- id: string;
2370
- name: string;
2371
- type: string;
2372
- class: string;
2373
- uri: string;
2374
- mainType: string;
2375
- title: string;
2376
- label: string;
2377
- shortUri: string;
2378
- cssClass: string;
2379
- cssColor: string;
2380
- idspot: string;
2381
- }[] | undefined;
2382
- matchThreshold?: number | undefined;
2383
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
2384
- webhookMethod?: string | undefined;
2385
- webhookUrl?: string | undefined;
2386
- webhookKey?: string | undefined;
2387
- webhookAutomationOnly?: boolean | undefined;
2388
- }>, void, {
2236
+ declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
2389
2237
  dispatch: AppDispatch;
2390
2238
  state: RootState$1;
2391
2239
  extra: {
@@ -2400,190 +2248,7 @@ declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
2400
2248
  fulfilledMeta?: unknown;
2401
2249
  rejectedMeta?: unknown;
2402
2250
  }>;
2403
- declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<{
2404
- id: number;
2405
- type: string;
2406
- uri: string;
2407
- mainType: string;
2408
- dateCreation: string;
2409
- dateModified: string;
2410
- title: string;
2411
- _url: string;
2412
- description: string;
2413
- enabled: boolean;
2414
- _user: jamespot_user_api.jObjectBase & {
2415
- title: string;
2416
- _url: string;
2417
- } & {
2418
- [key: string]: string | number | null | undefined;
2419
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
2420
- dateCreation: string;
2421
- dateModified: string;
2422
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2423
- };
2424
- _right: jamespot_user_api.Rights;
2425
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
2426
- _attachedFiles: {
2427
- id: number;
2428
- type: string;
2429
- uri: string;
2430
- mainType: string;
2431
- dateCreation: string;
2432
- dateModified: string | null;
2433
- title: string;
2434
- _url: string;
2435
- size: number;
2436
- mimetype: string;
2437
- path?: string | undefined;
2438
- }[];
2439
- context: string;
2440
- disclaimer: string;
2441
- prompt: string;
2442
- trigger: "mentionOnly" | "matchComment";
2443
- image?: {
2444
- width: number;
2445
- height: number;
2446
- } | undefined;
2447
- avatar?: {
2448
- id: number;
2449
- type: string;
2450
- uri: string;
2451
- mainType: string;
2452
- dateCreation: string;
2453
- dateModified: string | null;
2454
- title: string;
2455
- _url: string;
2456
- size: number;
2457
- mimetype: string;
2458
- path?: string | undefined;
2459
- } | undefined;
2460
- moderators?: {
2461
- id: string;
2462
- name: string;
2463
- type: string;
2464
- class: string;
2465
- uri: string;
2466
- mainType: string;
2467
- title: string;
2468
- _url: string;
2469
- label: string;
2470
- Pseudo: string;
2471
- shortUri: string;
2472
- cssClass: string;
2473
- cssColor: string;
2474
- }[] | undefined;
2475
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
2476
- layers?: string[] | undefined;
2477
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
2478
- layers?: string[] | undefined;
2479
- } & jamespot_user_api.WidgetArticleButtonType) | ({
2480
- layers?: string[] | undefined;
2481
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
2482
- layers?: string[] | undefined;
2483
- } & jamespot_user_api.WidgetArticleImageType) | ({
2484
- layers?: string[] | undefined;
2485
- } & jamespot_user_api.WidgetArticleTitleType) | ({
2486
- layers?: string[] | undefined;
2487
- } & jamespot_user_api.WidgetArticleTextType) | ({
2488
- layers?: string[] | undefined;
2489
- } & jamespot_user_api.WidgetArticleSliderType) | ({
2490
- layers?: string[] | undefined;
2491
- } & jamespot_user_api.WidgetType<{
2492
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
2493
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
2494
- css?: Record<string, string> | undefined;
2495
- edit?: boolean | undefined;
2496
- }>) | ({
2497
- layers?: string[] | undefined;
2498
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
2499
- layers?: string[] | undefined;
2500
- } & {
2501
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
2502
- uniqid: string;
2503
- content: {
2504
- limit?: number | boolean | undefined;
2505
- uri?: string | undefined;
2506
- tableColumnsData?: {
2507
- name?: string | undefined;
2508
- label?: string | undefined;
2509
- isVisible?: boolean | undefined;
2510
- textEllipsis?: boolean | undefined;
2511
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2512
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2513
- }[] | undefined;
2514
- tableHeadColor?: string | undefined;
2515
- tableHeadTextColor?: string | undefined;
2516
- tableHeadIconColor?: string | undefined;
2517
- tableRowColor?: string | undefined;
2518
- tableRowTextColor?: string | undefined;
2519
- tableBorderRadius?: number | undefined;
2520
- tableSizedColumns?: boolean | undefined;
2521
- tableSizedColumnsWidth?: number | undefined;
2522
- };
2523
- }) | ({
2524
- layers?: string[] | undefined;
2525
- } & jamespot_user_api.WidgetPresenceType) | ({
2526
- layers?: string[] | undefined;
2527
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
2528
- layers?: string[] | undefined;
2529
- } & jamespot_user_api.WidgetType<{
2530
- calEventsLimit?: boolean | undefined;
2531
- calEventsLimitValue?: number | undefined;
2532
- calEventsPromptStatus?: string | undefined;
2533
- }>) | ({
2534
- layers?: string[] | undefined;
2535
- } & jamespot_user_api.WidgetType<{
2536
- contactLimit?: boolean | undefined;
2537
- contactLimitValue?: number | undefined;
2538
- contactPromptStatus?: string | undefined;
2539
- }>) | ({
2540
- layers?: string[] | undefined;
2541
- } & jamespot_user_api.WidgetType<{
2542
- emailsLimit?: boolean | undefined;
2543
- emailsLimitValue?: number | undefined;
2544
- emailsPromptStatus?: string | undefined;
2545
- }>) | ({
2546
- layers?: string[] | undefined;
2547
- } & jamespot_user_api.WidgetType<{
2548
- url?: string | undefined;
2549
- }>)>[] | undefined;
2550
- tags?: {
2551
- id: string;
2552
- name: string;
2553
- type: string;
2554
- class: string;
2555
- uri: string;
2556
- mainType: string;
2557
- title: string;
2558
- label: string;
2559
- shortUri: string;
2560
- cssClass: string;
2561
- cssColor: string;
2562
- }[] | undefined;
2563
- processContext?: null | undefined;
2564
- _transientCtx?: null | undefined;
2565
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
2566
- groups?: {
2567
- id: string;
2568
- name: string;
2569
- type: string;
2570
- class: string;
2571
- uri: string;
2572
- mainType: string;
2573
- title: string;
2574
- label: string;
2575
- shortUri: string;
2576
- cssClass: string;
2577
- cssColor: string;
2578
- idspot: string;
2579
- }[] | undefined;
2580
- matchThreshold?: number | undefined;
2581
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
2582
- webhookMethod?: string | undefined;
2583
- webhookUrl?: string | undefined;
2584
- webhookKey?: string | undefined;
2585
- webhookAutomationOnly?: boolean | undefined;
2586
- }>, void, {
2251
+ declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
2587
2252
  dispatch: AppDispatch;
2588
2253
  state: RootState$1;
2589
2254
  extra: {
@@ -2598,373 +2263,7 @@ declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<
2598
2263
  fulfilledMeta?: unknown;
2599
2264
  rejectedMeta?: unknown;
2600
2265
  }>;
2601
- declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
2602
- id: number;
2603
- type: string;
2604
- uri: string;
2605
- mainType: string;
2606
- dateCreation: string;
2607
- dateModified: string;
2608
- title: string;
2609
- _url: string;
2610
- description: string;
2611
- enabled: boolean;
2612
- _user: jamespot_user_api.jObjectBase & {
2613
- title: string;
2614
- _url: string;
2615
- } & {
2616
- [key: string]: string | number | null | undefined;
2617
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
2618
- dateCreation: string;
2619
- dateModified: string;
2620
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2621
- };
2622
- _right: jamespot_user_api.Rights;
2623
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
2624
- _attachedFiles: {
2625
- id: number;
2626
- type: string;
2627
- uri: string;
2628
- mainType: string;
2629
- dateCreation: string;
2630
- dateModified: string | null;
2631
- title: string;
2632
- _url: string;
2633
- size: number;
2634
- mimetype: string;
2635
- path?: string | undefined;
2636
- }[];
2637
- context: string;
2638
- disclaimer: string;
2639
- prompt: string;
2640
- trigger: "mentionOnly" | "matchComment";
2641
- image?: {
2642
- width: number;
2643
- height: number;
2644
- } | undefined;
2645
- avatar?: {
2646
- id: number;
2647
- type: string;
2648
- uri: string;
2649
- mainType: string;
2650
- dateCreation: string;
2651
- dateModified: string | null;
2652
- title: string;
2653
- _url: string;
2654
- size: number;
2655
- mimetype: string;
2656
- path?: string | undefined;
2657
- } | undefined;
2658
- moderators?: {
2659
- id: string;
2660
- name: string;
2661
- type: string;
2662
- class: string;
2663
- uri: string;
2664
- mainType: string;
2665
- title: string;
2666
- _url: string;
2667
- label: string;
2668
- Pseudo: string;
2669
- shortUri: string;
2670
- cssClass: string;
2671
- cssColor: string;
2672
- }[] | undefined;
2673
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
2674
- layers?: string[] | undefined;
2675
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
2676
- layers?: string[] | undefined;
2677
- } & jamespot_user_api.WidgetArticleButtonType) | ({
2678
- layers?: string[] | undefined;
2679
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
2680
- layers?: string[] | undefined;
2681
- } & jamespot_user_api.WidgetArticleImageType) | ({
2682
- layers?: string[] | undefined;
2683
- } & jamespot_user_api.WidgetArticleTitleType) | ({
2684
- layers?: string[] | undefined;
2685
- } & jamespot_user_api.WidgetArticleTextType) | ({
2686
- layers?: string[] | undefined;
2687
- } & jamespot_user_api.WidgetArticleSliderType) | ({
2688
- layers?: string[] | undefined;
2689
- } & jamespot_user_api.WidgetType<{
2690
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
2691
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
2692
- css?: Record<string, string> | undefined;
2693
- edit?: boolean | undefined;
2694
- }>) | ({
2695
- layers?: string[] | undefined;
2696
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
2697
- layers?: string[] | undefined;
2698
- } & {
2699
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
2700
- uniqid: string;
2701
- content: {
2702
- limit?: number | boolean | undefined;
2703
- uri?: string | undefined;
2704
- tableColumnsData?: {
2705
- name?: string | undefined;
2706
- label?: string | undefined;
2707
- isVisible?: boolean | undefined;
2708
- textEllipsis?: boolean | undefined;
2709
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2710
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2711
- }[] | undefined;
2712
- tableHeadColor?: string | undefined;
2713
- tableHeadTextColor?: string | undefined;
2714
- tableHeadIconColor?: string | undefined;
2715
- tableRowColor?: string | undefined;
2716
- tableRowTextColor?: string | undefined;
2717
- tableBorderRadius?: number | undefined;
2718
- tableSizedColumns?: boolean | undefined;
2719
- tableSizedColumnsWidth?: number | undefined;
2720
- };
2721
- }) | ({
2722
- layers?: string[] | undefined;
2723
- } & jamespot_user_api.WidgetPresenceType) | ({
2724
- layers?: string[] | undefined;
2725
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
2726
- layers?: string[] | undefined;
2727
- } & jamespot_user_api.WidgetType<{
2728
- calEventsLimit?: boolean | undefined;
2729
- calEventsLimitValue?: number | undefined;
2730
- calEventsPromptStatus?: string | undefined;
2731
- }>) | ({
2732
- layers?: string[] | undefined;
2733
- } & jamespot_user_api.WidgetType<{
2734
- contactLimit?: boolean | undefined;
2735
- contactLimitValue?: number | undefined;
2736
- contactPromptStatus?: string | undefined;
2737
- }>) | ({
2738
- layers?: string[] | undefined;
2739
- } & jamespot_user_api.WidgetType<{
2740
- emailsLimit?: boolean | undefined;
2741
- emailsLimitValue?: number | undefined;
2742
- emailsPromptStatus?: string | undefined;
2743
- }>) | ({
2744
- layers?: string[] | undefined;
2745
- } & jamespot_user_api.WidgetType<{
2746
- url?: string | undefined;
2747
- }>)>[] | undefined;
2748
- tags?: {
2749
- id: string;
2750
- name: string;
2751
- type: string;
2752
- class: string;
2753
- uri: string;
2754
- mainType: string;
2755
- title: string;
2756
- label: string;
2757
- shortUri: string;
2758
- cssClass: string;
2759
- cssColor: string;
2760
- }[] | undefined;
2761
- processContext?: null | undefined;
2762
- _transientCtx?: null | undefined;
2763
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
2764
- groups?: {
2765
- id: string;
2766
- name: string;
2767
- type: string;
2768
- class: string;
2769
- uri: string;
2770
- mainType: string;
2771
- title: string;
2772
- label: string;
2773
- shortUri: string;
2774
- cssClass: string;
2775
- cssColor: string;
2776
- idspot: string;
2777
- }[] | undefined;
2778
- matchThreshold?: number | undefined;
2779
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
2780
- webhookMethod?: string | undefined;
2781
- webhookUrl?: string | undefined;
2782
- webhookKey?: string | undefined;
2783
- webhookAutomationOnly?: boolean | undefined;
2784
- }, {
2785
- id: number;
2786
- type: string;
2787
- uri: string;
2788
- mainType: string;
2789
- dateCreation: string;
2790
- dateModified: string;
2791
- title: string;
2792
- _url: string;
2793
- description: string;
2794
- enabled: boolean;
2795
- _user: jamespot_user_api.jObjectBase & {
2796
- title: string;
2797
- _url: string;
2798
- } & {
2799
- [key: string]: string | number | null | undefined;
2800
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
2801
- dateCreation: string;
2802
- dateModified: string;
2803
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2804
- };
2805
- _right: jamespot_user_api.Rights;
2806
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
2807
- _attachedFiles: {
2808
- id: number;
2809
- type: string;
2810
- uri: string;
2811
- mainType: string;
2812
- dateCreation: string;
2813
- dateModified: string | null;
2814
- title: string;
2815
- _url: string;
2816
- size: number;
2817
- mimetype: string;
2818
- path?: string | undefined;
2819
- }[];
2820
- context: string;
2821
- disclaimer: string;
2822
- prompt: string;
2823
- trigger: "mentionOnly" | "matchComment";
2824
- image?: {
2825
- width: number;
2826
- height: number;
2827
- } | undefined;
2828
- avatar?: {
2829
- id: number;
2830
- type: string;
2831
- uri: string;
2832
- mainType: string;
2833
- dateCreation: string;
2834
- dateModified: string | null;
2835
- title: string;
2836
- _url: string;
2837
- size: number;
2838
- mimetype: string;
2839
- path?: string | undefined;
2840
- } | undefined;
2841
- moderators?: {
2842
- id: string;
2843
- name: string;
2844
- type: string;
2845
- class: string;
2846
- uri: string;
2847
- mainType: string;
2848
- title: string;
2849
- _url: string;
2850
- label: string;
2851
- Pseudo: string;
2852
- shortUri: string;
2853
- cssClass: string;
2854
- cssColor: string;
2855
- }[] | undefined;
2856
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
2857
- layers?: string[] | undefined;
2858
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
2859
- layers?: string[] | undefined;
2860
- } & jamespot_user_api.WidgetArticleButtonType) | ({
2861
- layers?: string[] | undefined;
2862
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
2863
- layers?: string[] | undefined;
2864
- } & jamespot_user_api.WidgetArticleImageType) | ({
2865
- layers?: string[] | undefined;
2866
- } & jamespot_user_api.WidgetArticleTitleType) | ({
2867
- layers?: string[] | undefined;
2868
- } & jamespot_user_api.WidgetArticleTextType) | ({
2869
- layers?: string[] | undefined;
2870
- } & jamespot_user_api.WidgetArticleSliderType) | ({
2871
- layers?: string[] | undefined;
2872
- } & jamespot_user_api.WidgetType<{
2873
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
2874
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
2875
- css?: Record<string, string> | undefined;
2876
- edit?: boolean | undefined;
2877
- }>) | ({
2878
- layers?: string[] | undefined;
2879
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
2880
- layers?: string[] | undefined;
2881
- } & {
2882
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
2883
- uniqid: string;
2884
- content: {
2885
- limit?: number | boolean | undefined;
2886
- uri?: string | undefined;
2887
- tableColumnsData?: {
2888
- name?: string | undefined;
2889
- label?: string | undefined;
2890
- isVisible?: boolean | undefined;
2891
- textEllipsis?: boolean | undefined;
2892
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
2893
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
2894
- }[] | undefined;
2895
- tableHeadColor?: string | undefined;
2896
- tableHeadTextColor?: string | undefined;
2897
- tableHeadIconColor?: string | undefined;
2898
- tableRowColor?: string | undefined;
2899
- tableRowTextColor?: string | undefined;
2900
- tableBorderRadius?: number | undefined;
2901
- tableSizedColumns?: boolean | undefined;
2902
- tableSizedColumnsWidth?: number | undefined;
2903
- };
2904
- }) | ({
2905
- layers?: string[] | undefined;
2906
- } & jamespot_user_api.WidgetPresenceType) | ({
2907
- layers?: string[] | undefined;
2908
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
2909
- layers?: string[] | undefined;
2910
- } & jamespot_user_api.WidgetType<{
2911
- calEventsLimit?: boolean | undefined;
2912
- calEventsLimitValue?: number | undefined;
2913
- calEventsPromptStatus?: string | undefined;
2914
- }>) | ({
2915
- layers?: string[] | undefined;
2916
- } & jamespot_user_api.WidgetType<{
2917
- contactLimit?: boolean | undefined;
2918
- contactLimitValue?: number | undefined;
2919
- contactPromptStatus?: string | undefined;
2920
- }>) | ({
2921
- layers?: string[] | undefined;
2922
- } & jamespot_user_api.WidgetType<{
2923
- emailsLimit?: boolean | undefined;
2924
- emailsLimitValue?: number | undefined;
2925
- emailsPromptStatus?: string | undefined;
2926
- }>) | ({
2927
- layers?: string[] | undefined;
2928
- } & jamespot_user_api.WidgetType<{
2929
- url?: string | undefined;
2930
- }>)>[] | undefined;
2931
- tags?: {
2932
- id: string;
2933
- name: string;
2934
- type: string;
2935
- class: string;
2936
- uri: string;
2937
- mainType: string;
2938
- title: string;
2939
- label: string;
2940
- shortUri: string;
2941
- cssClass: string;
2942
- cssColor: string;
2943
- }[] | undefined;
2944
- processContext?: null | undefined;
2945
- _transientCtx?: null | undefined;
2946
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
2947
- groups?: {
2948
- id: string;
2949
- name: string;
2950
- type: string;
2951
- class: string;
2952
- uri: string;
2953
- mainType: string;
2954
- title: string;
2955
- label: string;
2956
- shortUri: string;
2957
- cssClass: string;
2958
- cssColor: string;
2959
- idspot: string;
2960
- }[] | undefined;
2961
- matchThreshold?: number | undefined;
2962
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
2963
- webhookMethod?: string | undefined;
2964
- webhookUrl?: string | undefined;
2965
- webhookKey?: string | undefined;
2966
- webhookAutomationOnly?: boolean | undefined;
2967
- }, {
2266
+ declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<jExtraBotView, jExtraBotView, {
2968
2267
  dispatch: AppDispatch;
2969
2268
  state: RootState$1;
2970
2269
  extra: {
@@ -2980,192 +2279,9 @@ declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
2980
2279
  rejectedMeta?: unknown;
2981
2280
  }>;
2982
2281
  type PayloadSave = {
2983
- extraBot: Omit<ExtraBotConfig, 'image' | '_user'>;
2282
+ extraBot: Omit<jExtraBotView, 'image' | '_user'>;
2984
2283
  };
2985
- declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<{
2986
- id: number;
2987
- type: string;
2988
- uri: string;
2989
- mainType: string;
2990
- dateCreation: string;
2991
- dateModified: string;
2992
- title: string;
2993
- _url: string;
2994
- description: string;
2995
- enabled: boolean;
2996
- _user: jamespot_user_api.jObjectBase & {
2997
- title: string;
2998
- _url: string;
2999
- } & {
3000
- [key: string]: string | number | null | undefined;
3001
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
3002
- dateCreation: string;
3003
- dateModified: string;
3004
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
3005
- };
3006
- _right: jamespot_user_api.Rights;
3007
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
3008
- _attachedFiles: {
3009
- id: number;
3010
- type: string;
3011
- uri: string;
3012
- mainType: string;
3013
- dateCreation: string;
3014
- dateModified: string | null;
3015
- title: string;
3016
- _url: string;
3017
- size: number;
3018
- mimetype: string;
3019
- path?: string | undefined;
3020
- }[];
3021
- context: string;
3022
- disclaimer: string;
3023
- prompt: string;
3024
- trigger: "mentionOnly" | "matchComment";
3025
- image?: {
3026
- width: number;
3027
- height: number;
3028
- } | undefined;
3029
- avatar?: {
3030
- id: number;
3031
- type: string;
3032
- uri: string;
3033
- mainType: string;
3034
- dateCreation: string;
3035
- dateModified: string | null;
3036
- title: string;
3037
- _url: string;
3038
- size: number;
3039
- mimetype: string;
3040
- path?: string | undefined;
3041
- } | undefined;
3042
- moderators?: {
3043
- id: string;
3044
- name: string;
3045
- type: string;
3046
- class: string;
3047
- uri: string;
3048
- mainType: string;
3049
- title: string;
3050
- _url: string;
3051
- label: string;
3052
- Pseudo: string;
3053
- shortUri: string;
3054
- cssClass: string;
3055
- cssColor: string;
3056
- }[] | undefined;
3057
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
3058
- layers?: string[] | undefined;
3059
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3060
- layers?: string[] | undefined;
3061
- } & jamespot_user_api.WidgetArticleButtonType) | ({
3062
- layers?: string[] | undefined;
3063
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
3064
- layers?: string[] | undefined;
3065
- } & jamespot_user_api.WidgetArticleImageType) | ({
3066
- layers?: string[] | undefined;
3067
- } & jamespot_user_api.WidgetArticleTitleType) | ({
3068
- layers?: string[] | undefined;
3069
- } & jamespot_user_api.WidgetArticleTextType) | ({
3070
- layers?: string[] | undefined;
3071
- } & jamespot_user_api.WidgetArticleSliderType) | ({
3072
- layers?: string[] | undefined;
3073
- } & jamespot_user_api.WidgetType<{
3074
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3075
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3076
- css?: Record<string, string> | undefined;
3077
- edit?: boolean | undefined;
3078
- }>) | ({
3079
- layers?: string[] | undefined;
3080
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
3081
- layers?: string[] | undefined;
3082
- } & {
3083
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3084
- uniqid: string;
3085
- content: {
3086
- limit?: number | boolean | undefined;
3087
- uri?: string | undefined;
3088
- tableColumnsData?: {
3089
- name?: string | undefined;
3090
- label?: string | undefined;
3091
- isVisible?: boolean | undefined;
3092
- textEllipsis?: boolean | undefined;
3093
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3094
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3095
- }[] | undefined;
3096
- tableHeadColor?: string | undefined;
3097
- tableHeadTextColor?: string | undefined;
3098
- tableHeadIconColor?: string | undefined;
3099
- tableRowColor?: string | undefined;
3100
- tableRowTextColor?: string | undefined;
3101
- tableBorderRadius?: number | undefined;
3102
- tableSizedColumns?: boolean | undefined;
3103
- tableSizedColumnsWidth?: number | undefined;
3104
- };
3105
- }) | ({
3106
- layers?: string[] | undefined;
3107
- } & jamespot_user_api.WidgetPresenceType) | ({
3108
- layers?: string[] | undefined;
3109
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
3110
- layers?: string[] | undefined;
3111
- } & jamespot_user_api.WidgetType<{
3112
- calEventsLimit?: boolean | undefined;
3113
- calEventsLimitValue?: number | undefined;
3114
- calEventsPromptStatus?: string | undefined;
3115
- }>) | ({
3116
- layers?: string[] | undefined;
3117
- } & jamespot_user_api.WidgetType<{
3118
- contactLimit?: boolean | undefined;
3119
- contactLimitValue?: number | undefined;
3120
- contactPromptStatus?: string | undefined;
3121
- }>) | ({
3122
- layers?: string[] | undefined;
3123
- } & jamespot_user_api.WidgetType<{
3124
- emailsLimit?: boolean | undefined;
3125
- emailsLimitValue?: number | undefined;
3126
- emailsPromptStatus?: string | undefined;
3127
- }>) | ({
3128
- layers?: string[] | undefined;
3129
- } & jamespot_user_api.WidgetType<{
3130
- url?: string | undefined;
3131
- }>)>[] | undefined;
3132
- tags?: {
3133
- id: string;
3134
- name: string;
3135
- type: string;
3136
- class: string;
3137
- uri: string;
3138
- mainType: string;
3139
- title: string;
3140
- label: string;
3141
- shortUri: string;
3142
- cssClass: string;
3143
- cssColor: string;
3144
- }[] | undefined;
3145
- processContext?: null | undefined;
3146
- _transientCtx?: null | undefined;
3147
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
3148
- groups?: {
3149
- id: string;
3150
- name: string;
3151
- type: string;
3152
- class: string;
3153
- uri: string;
3154
- mainType: string;
3155
- title: string;
3156
- label: string;
3157
- shortUri: string;
3158
- cssClass: string;
3159
- cssColor: string;
3160
- idspot: string;
3161
- }[] | undefined;
3162
- matchThreshold?: number | undefined;
3163
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
3164
- webhookMethod?: string | undefined;
3165
- webhookUrl?: string | undefined;
3166
- webhookKey?: string | undefined;
3167
- webhookAutomationOnly?: boolean | undefined;
3168
- }, PayloadSave, {
2284
+ declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<jExtraBotView, PayloadSave, {
3169
2285
  dispatch: AppDispatch;
3170
2286
  state: RootState$1;
3171
2287
  extra: {
@@ -3180,7 +2296,7 @@ declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<{
3180
2296
  fulfilledMeta?: unknown;
3181
2297
  rejectedMeta?: unknown;
3182
2298
  }>;
3183
- declare const updateListBotProperty: <K extends keyof ExtraBotConfig>(state: ExtraBotState, extraBotUri: string, property: K, value: ExtraBotConfig[K]) => void;
2299
+ declare const updateListBotProperty: <K extends keyof jExtraBotView>(state: ExtraBotState, extraBotUri: string, property: K, value: jExtraBotView[K]) => void;
3184
2300
  declare const extraBotSlice: _reduxjs_toolkit.Slice<ExtraBotState, {
3185
2301
  setListAllOrder: (state: Draft<S>, action: PayloadAction<Orders>) => void;
3186
2302
  setListAllFilter: (state: Draft<S>, action: PayloadAction<Filters>) => void;
@@ -3253,769 +2369,22 @@ declare const ExtraBot: {
3253
2369
  setListMinesPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "extraBot/setListMinesPage">;
3254
2370
  openFormModal: _reduxjs_toolkit.ActionCreatorWithPayload<ExtraBotFormModalOpen, "extraBot/openFormModal">;
3255
2371
  closeFormModal: _reduxjs_toolkit.ActionCreatorWithoutPayload<"extraBot/closeFormModal">;
3256
- fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
3257
- id: number;
3258
- type: string;
3259
- uri: string;
3260
- mainType: string;
3261
- dateCreation: string;
3262
- dateModified: string;
3263
- title: string;
3264
- _url: string;
3265
- description: string;
3266
- enabled: boolean;
3267
- _user: jamespot_user_api.jObjectBase & {
3268
- title: string;
3269
- _url: string;
3270
- } & {
3271
- [key: string]: string | number | null | undefined;
3272
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
3273
- dateCreation: string;
3274
- dateModified: string;
3275
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2372
+ fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
2373
+ dispatch: AppDispatch;
2374
+ state: RootState$1;
2375
+ extra: {
2376
+ jApi: jamespot_user_api.JamespotUserApi;
3276
2377
  };
3277
- _right: jamespot_user_api.Rights;
3278
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
3279
- _attachedFiles: {
3280
- id: number;
3281
- type: string;
3282
- uri: string;
3283
- mainType: string;
3284
- dateCreation: string;
3285
- dateModified: string | null;
3286
- title: string;
3287
- _url: string;
3288
- size: number;
3289
- mimetype: string;
3290
- path?: string | undefined;
3291
- }[];
3292
- context: string;
3293
- disclaimer: string;
3294
- prompt: string;
3295
- trigger: "mentionOnly" | "matchComment";
3296
- image?: {
3297
- width: number;
3298
- height: number;
3299
- } | undefined;
3300
- avatar?: {
3301
- id: number;
3302
- type: string;
3303
- uri: string;
3304
- mainType: string;
3305
- dateCreation: string;
3306
- dateModified: string | null;
3307
- title: string;
3308
- _url: string;
3309
- size: number;
3310
- mimetype: string;
3311
- path?: string | undefined;
3312
- } | undefined;
3313
- moderators?: {
3314
- id: string;
3315
- name: string;
3316
- type: string;
3317
- class: string;
3318
- uri: string;
3319
- mainType: string;
3320
- title: string;
3321
- _url: string;
3322
- label: string;
3323
- Pseudo: string;
3324
- shortUri: string;
3325
- cssClass: string;
3326
- cssColor: string;
3327
- }[] | undefined;
3328
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
3329
- layers?: string[] | undefined;
3330
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3331
- layers?: string[] | undefined;
3332
- } & jamespot_user_api.WidgetArticleButtonType) | ({
3333
- layers?: string[] | undefined;
3334
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
3335
- layers?: string[] | undefined;
3336
- } & jamespot_user_api.WidgetArticleImageType) | ({
3337
- layers?: string[] | undefined;
3338
- } & jamespot_user_api.WidgetArticleTitleType) | ({
3339
- layers?: string[] | undefined;
3340
- } & jamespot_user_api.WidgetArticleTextType) | ({
3341
- layers?: string[] | undefined;
3342
- } & jamespot_user_api.WidgetArticleSliderType) | ({
3343
- layers?: string[] | undefined;
3344
- } & jamespot_user_api.WidgetType<{
3345
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3346
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3347
- css?: Record<string, string> | undefined;
3348
- edit?: boolean | undefined;
3349
- }>) | ({
3350
- layers?: string[] | undefined;
3351
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
3352
- layers?: string[] | undefined;
3353
- } & {
3354
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3355
- uniqid: string;
3356
- content: {
3357
- limit?: number | boolean | undefined;
3358
- uri?: string | undefined;
3359
- tableColumnsData?: {
3360
- name?: string | undefined;
3361
- label?: string | undefined;
3362
- isVisible?: boolean | undefined;
3363
- textEllipsis?: boolean | undefined;
3364
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3365
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3366
- }[] | undefined;
3367
- tableHeadColor?: string | undefined;
3368
- tableHeadTextColor?: string | undefined;
3369
- tableHeadIconColor?: string | undefined;
3370
- tableRowColor?: string | undefined;
3371
- tableRowTextColor?: string | undefined;
3372
- tableBorderRadius?: number | undefined;
3373
- tableSizedColumns?: boolean | undefined;
3374
- tableSizedColumnsWidth?: number | undefined;
3375
- };
3376
- }) | ({
3377
- layers?: string[] | undefined;
3378
- } & jamespot_user_api.WidgetPresenceType) | ({
3379
- layers?: string[] | undefined;
3380
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
3381
- layers?: string[] | undefined;
3382
- } & jamespot_user_api.WidgetType<{
3383
- calEventsLimit?: boolean | undefined;
3384
- calEventsLimitValue?: number | undefined;
3385
- calEventsPromptStatus?: string | undefined;
3386
- }>) | ({
3387
- layers?: string[] | undefined;
3388
- } & jamespot_user_api.WidgetType<{
3389
- contactLimit?: boolean | undefined;
3390
- contactLimitValue?: number | undefined;
3391
- contactPromptStatus?: string | undefined;
3392
- }>) | ({
3393
- layers?: string[] | undefined;
3394
- } & jamespot_user_api.WidgetType<{
3395
- emailsLimit?: boolean | undefined;
3396
- emailsLimitValue?: number | undefined;
3397
- emailsPromptStatus?: string | undefined;
3398
- }>) | ({
3399
- layers?: string[] | undefined;
3400
- } & jamespot_user_api.WidgetType<{
3401
- url?: string | undefined;
3402
- }>)>[] | undefined;
3403
- tags?: {
3404
- id: string;
3405
- name: string;
3406
- type: string;
3407
- class: string;
3408
- uri: string;
3409
- mainType: string;
3410
- title: string;
3411
- label: string;
3412
- shortUri: string;
3413
- cssClass: string;
3414
- cssColor: string;
3415
- }[] | undefined;
3416
- processContext?: null | undefined;
3417
- _transientCtx?: null | undefined;
3418
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
3419
- groups?: {
3420
- id: string;
3421
- name: string;
3422
- type: string;
3423
- class: string;
3424
- uri: string;
3425
- mainType: string;
3426
- title: string;
3427
- label: string;
3428
- shortUri: string;
3429
- cssClass: string;
3430
- cssColor: string;
3431
- idspot: string;
3432
- }[] | undefined;
3433
- matchThreshold?: number | undefined;
3434
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
3435
- webhookMethod?: string | undefined;
3436
- webhookUrl?: string | undefined;
3437
- webhookKey?: string | undefined;
3438
- webhookAutomationOnly?: boolean | undefined;
3439
- }>, void, {
3440
- dispatch: AppDispatch;
3441
- state: RootState$1;
3442
- extra: {
3443
- jApi: jamespot_user_api.JamespotUserApi;
3444
- };
3445
- rejectValue: {
3446
- error: number;
3447
- errorMsg: string;
3448
- };
3449
- serializedErrorType?: unknown;
3450
- pendingMeta?: unknown;
3451
- fulfilledMeta?: unknown;
3452
- rejectedMeta?: unknown;
3453
- }>;
3454
- fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<{
3455
- id: number;
3456
- type: string;
3457
- uri: string;
3458
- mainType: string;
3459
- dateCreation: string;
3460
- dateModified: string;
3461
- title: string;
3462
- _url: string;
3463
- description: string;
3464
- enabled: boolean;
3465
- _user: jamespot_user_api.jObjectBase & {
3466
- title: string;
3467
- _url: string;
3468
- } & {
3469
- [key: string]: string | number | null | undefined;
3470
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
3471
- dateCreation: string;
3472
- dateModified: string;
3473
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
3474
- };
3475
- _right: jamespot_user_api.Rights;
3476
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
3477
- _attachedFiles: {
3478
- id: number;
3479
- type: string;
3480
- uri: string;
3481
- mainType: string;
3482
- dateCreation: string;
3483
- dateModified: string | null;
3484
- title: string;
3485
- _url: string;
3486
- size: number;
3487
- mimetype: string;
3488
- path?: string | undefined;
3489
- }[];
3490
- context: string;
3491
- disclaimer: string;
3492
- prompt: string;
3493
- trigger: "mentionOnly" | "matchComment";
3494
- image?: {
3495
- width: number;
3496
- height: number;
3497
- } | undefined;
3498
- avatar?: {
3499
- id: number;
3500
- type: string;
3501
- uri: string;
3502
- mainType: string;
3503
- dateCreation: string;
3504
- dateModified: string | null;
3505
- title: string;
3506
- _url: string;
3507
- size: number;
3508
- mimetype: string;
3509
- path?: string | undefined;
3510
- } | undefined;
3511
- moderators?: {
3512
- id: string;
3513
- name: string;
3514
- type: string;
3515
- class: string;
3516
- uri: string;
3517
- mainType: string;
3518
- title: string;
3519
- _url: string;
3520
- label: string;
3521
- Pseudo: string;
3522
- shortUri: string;
3523
- cssClass: string;
3524
- cssColor: string;
3525
- }[] | undefined;
3526
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
3527
- layers?: string[] | undefined;
3528
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3529
- layers?: string[] | undefined;
3530
- } & jamespot_user_api.WidgetArticleButtonType) | ({
3531
- layers?: string[] | undefined;
3532
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
3533
- layers?: string[] | undefined;
3534
- } & jamespot_user_api.WidgetArticleImageType) | ({
3535
- layers?: string[] | undefined;
3536
- } & jamespot_user_api.WidgetArticleTitleType) | ({
3537
- layers?: string[] | undefined;
3538
- } & jamespot_user_api.WidgetArticleTextType) | ({
3539
- layers?: string[] | undefined;
3540
- } & jamespot_user_api.WidgetArticleSliderType) | ({
3541
- layers?: string[] | undefined;
3542
- } & jamespot_user_api.WidgetType<{
3543
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3544
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3545
- css?: Record<string, string> | undefined;
3546
- edit?: boolean | undefined;
3547
- }>) | ({
3548
- layers?: string[] | undefined;
3549
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
3550
- layers?: string[] | undefined;
3551
- } & {
3552
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3553
- uniqid: string;
3554
- content: {
3555
- limit?: number | boolean | undefined;
3556
- uri?: string | undefined;
3557
- tableColumnsData?: {
3558
- name?: string | undefined;
3559
- label?: string | undefined;
3560
- isVisible?: boolean | undefined;
3561
- textEllipsis?: boolean | undefined;
3562
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3563
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3564
- }[] | undefined;
3565
- tableHeadColor?: string | undefined;
3566
- tableHeadTextColor?: string | undefined;
3567
- tableHeadIconColor?: string | undefined;
3568
- tableRowColor?: string | undefined;
3569
- tableRowTextColor?: string | undefined;
3570
- tableBorderRadius?: number | undefined;
3571
- tableSizedColumns?: boolean | undefined;
3572
- tableSizedColumnsWidth?: number | undefined;
3573
- };
3574
- }) | ({
3575
- layers?: string[] | undefined;
3576
- } & jamespot_user_api.WidgetPresenceType) | ({
3577
- layers?: string[] | undefined;
3578
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
3579
- layers?: string[] | undefined;
3580
- } & jamespot_user_api.WidgetType<{
3581
- calEventsLimit?: boolean | undefined;
3582
- calEventsLimitValue?: number | undefined;
3583
- calEventsPromptStatus?: string | undefined;
3584
- }>) | ({
3585
- layers?: string[] | undefined;
3586
- } & jamespot_user_api.WidgetType<{
3587
- contactLimit?: boolean | undefined;
3588
- contactLimitValue?: number | undefined;
3589
- contactPromptStatus?: string | undefined;
3590
- }>) | ({
3591
- layers?: string[] | undefined;
3592
- } & jamespot_user_api.WidgetType<{
3593
- emailsLimit?: boolean | undefined;
3594
- emailsLimitValue?: number | undefined;
3595
- emailsPromptStatus?: string | undefined;
3596
- }>) | ({
3597
- layers?: string[] | undefined;
3598
- } & jamespot_user_api.WidgetType<{
3599
- url?: string | undefined;
3600
- }>)>[] | undefined;
3601
- tags?: {
3602
- id: string;
3603
- name: string;
3604
- type: string;
3605
- class: string;
3606
- uri: string;
3607
- mainType: string;
3608
- title: string;
3609
- label: string;
3610
- shortUri: string;
3611
- cssClass: string;
3612
- cssColor: string;
3613
- }[] | undefined;
3614
- processContext?: null | undefined;
3615
- _transientCtx?: null | undefined;
3616
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
3617
- groups?: {
3618
- id: string;
3619
- name: string;
3620
- type: string;
3621
- class: string;
3622
- uri: string;
3623
- mainType: string;
3624
- title: string;
3625
- label: string;
3626
- shortUri: string;
3627
- cssClass: string;
3628
- cssColor: string;
3629
- idspot: string;
3630
- }[] | undefined;
3631
- matchThreshold?: number | undefined;
3632
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
3633
- webhookMethod?: string | undefined;
3634
- webhookUrl?: string | undefined;
3635
- webhookKey?: string | undefined;
3636
- webhookAutomationOnly?: boolean | undefined;
3637
- }>, void, {
3638
- dispatch: AppDispatch;
3639
- state: RootState$1;
3640
- extra: {
3641
- jApi: jamespot_user_api.JamespotUserApi;
3642
- };
3643
- rejectValue: {
3644
- error: number;
3645
- errorMsg: string;
3646
- };
3647
- serializedErrorType?: unknown;
3648
- pendingMeta?: unknown;
3649
- fulfilledMeta?: unknown;
3650
- rejectedMeta?: unknown;
3651
- }>;
3652
- toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
3653
- id: number;
3654
- type: string;
3655
- uri: string;
3656
- mainType: string;
3657
- dateCreation: string;
3658
- dateModified: string;
3659
- title: string;
3660
- _url: string;
3661
- description: string;
3662
- enabled: boolean;
3663
- _user: jamespot_user_api.jObjectBase & {
3664
- title: string;
3665
- _url: string;
3666
- } & {
3667
- [key: string]: string | number | null | undefined;
3668
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
3669
- dateCreation: string;
3670
- dateModified: string;
3671
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
3672
- };
3673
- _right: jamespot_user_api.Rights;
3674
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
3675
- _attachedFiles: {
3676
- id: number;
3677
- type: string;
3678
- uri: string;
3679
- mainType: string;
3680
- dateCreation: string;
3681
- dateModified: string | null;
3682
- title: string;
3683
- _url: string;
3684
- size: number;
3685
- mimetype: string;
3686
- path?: string | undefined;
3687
- }[];
3688
- context: string;
3689
- disclaimer: string;
3690
- prompt: string;
3691
- trigger: "mentionOnly" | "matchComment";
3692
- image?: {
3693
- width: number;
3694
- height: number;
3695
- } | undefined;
3696
- avatar?: {
3697
- id: number;
3698
- type: string;
3699
- uri: string;
3700
- mainType: string;
3701
- dateCreation: string;
3702
- dateModified: string | null;
3703
- title: string;
3704
- _url: string;
3705
- size: number;
3706
- mimetype: string;
3707
- path?: string | undefined;
3708
- } | undefined;
3709
- moderators?: {
3710
- id: string;
3711
- name: string;
3712
- type: string;
3713
- class: string;
3714
- uri: string;
3715
- mainType: string;
3716
- title: string;
3717
- _url: string;
3718
- label: string;
3719
- Pseudo: string;
3720
- shortUri: string;
3721
- cssClass: string;
3722
- cssColor: string;
3723
- }[] | undefined;
3724
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
3725
- layers?: string[] | undefined;
3726
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3727
- layers?: string[] | undefined;
3728
- } & jamespot_user_api.WidgetArticleButtonType) | ({
3729
- layers?: string[] | undefined;
3730
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
3731
- layers?: string[] | undefined;
3732
- } & jamespot_user_api.WidgetArticleImageType) | ({
3733
- layers?: string[] | undefined;
3734
- } & jamespot_user_api.WidgetArticleTitleType) | ({
3735
- layers?: string[] | undefined;
3736
- } & jamespot_user_api.WidgetArticleTextType) | ({
3737
- layers?: string[] | undefined;
3738
- } & jamespot_user_api.WidgetArticleSliderType) | ({
3739
- layers?: string[] | undefined;
3740
- } & jamespot_user_api.WidgetType<{
3741
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3742
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3743
- css?: Record<string, string> | undefined;
3744
- edit?: boolean | undefined;
3745
- }>) | ({
3746
- layers?: string[] | undefined;
3747
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
3748
- layers?: string[] | undefined;
3749
- } & {
3750
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3751
- uniqid: string;
3752
- content: {
3753
- limit?: number | boolean | undefined;
3754
- uri?: string | undefined;
3755
- tableColumnsData?: {
3756
- name?: string | undefined;
3757
- label?: string | undefined;
3758
- isVisible?: boolean | undefined;
3759
- textEllipsis?: boolean | undefined;
3760
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3761
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3762
- }[] | undefined;
3763
- tableHeadColor?: string | undefined;
3764
- tableHeadTextColor?: string | undefined;
3765
- tableHeadIconColor?: string | undefined;
3766
- tableRowColor?: string | undefined;
3767
- tableRowTextColor?: string | undefined;
3768
- tableBorderRadius?: number | undefined;
3769
- tableSizedColumns?: boolean | undefined;
3770
- tableSizedColumnsWidth?: number | undefined;
3771
- };
3772
- }) | ({
3773
- layers?: string[] | undefined;
3774
- } & jamespot_user_api.WidgetPresenceType) | ({
3775
- layers?: string[] | undefined;
3776
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
3777
- layers?: string[] | undefined;
3778
- } & jamespot_user_api.WidgetType<{
3779
- calEventsLimit?: boolean | undefined;
3780
- calEventsLimitValue?: number | undefined;
3781
- calEventsPromptStatus?: string | undefined;
3782
- }>) | ({
3783
- layers?: string[] | undefined;
3784
- } & jamespot_user_api.WidgetType<{
3785
- contactLimit?: boolean | undefined;
3786
- contactLimitValue?: number | undefined;
3787
- contactPromptStatus?: string | undefined;
3788
- }>) | ({
3789
- layers?: string[] | undefined;
3790
- } & jamespot_user_api.WidgetType<{
3791
- emailsLimit?: boolean | undefined;
3792
- emailsLimitValue?: number | undefined;
3793
- emailsPromptStatus?: string | undefined;
3794
- }>) | ({
3795
- layers?: string[] | undefined;
3796
- } & jamespot_user_api.WidgetType<{
3797
- url?: string | undefined;
3798
- }>)>[] | undefined;
3799
- tags?: {
3800
- id: string;
3801
- name: string;
3802
- type: string;
3803
- class: string;
3804
- uri: string;
3805
- mainType: string;
3806
- title: string;
3807
- label: string;
3808
- shortUri: string;
3809
- cssClass: string;
3810
- cssColor: string;
3811
- }[] | undefined;
3812
- processContext?: null | undefined;
3813
- _transientCtx?: null | undefined;
3814
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
3815
- groups?: {
3816
- id: string;
3817
- name: string;
3818
- type: string;
3819
- class: string;
3820
- uri: string;
3821
- mainType: string;
3822
- title: string;
3823
- label: string;
3824
- shortUri: string;
3825
- cssClass: string;
3826
- cssColor: string;
3827
- idspot: string;
3828
- }[] | undefined;
3829
- matchThreshold?: number | undefined;
3830
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
3831
- webhookMethod?: string | undefined;
3832
- webhookUrl?: string | undefined;
3833
- webhookKey?: string | undefined;
3834
- webhookAutomationOnly?: boolean | undefined;
3835
- }, {
3836
- id: number;
3837
- type: string;
3838
- uri: string;
3839
- mainType: string;
3840
- dateCreation: string;
3841
- dateModified: string;
3842
- title: string;
3843
- _url: string;
3844
- description: string;
3845
- enabled: boolean;
3846
- _user: jamespot_user_api.jObjectBase & {
3847
- title: string;
3848
- _url: string;
3849
- } & {
3850
- [key: string]: string | number | null | undefined;
3851
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
3852
- dateCreation: string;
3853
- dateModified: string;
3854
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
3855
- };
3856
- _right: jamespot_user_api.Rights;
3857
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
3858
- _attachedFiles: {
3859
- id: number;
3860
- type: string;
3861
- uri: string;
3862
- mainType: string;
3863
- dateCreation: string;
3864
- dateModified: string | null;
3865
- title: string;
3866
- _url: string;
3867
- size: number;
3868
- mimetype: string;
3869
- path?: string | undefined;
3870
- }[];
3871
- context: string;
3872
- disclaimer: string;
3873
- prompt: string;
3874
- trigger: "mentionOnly" | "matchComment";
3875
- image?: {
3876
- width: number;
3877
- height: number;
3878
- } | undefined;
3879
- avatar?: {
3880
- id: number;
3881
- type: string;
3882
- uri: string;
3883
- mainType: string;
3884
- dateCreation: string;
3885
- dateModified: string | null;
3886
- title: string;
3887
- _url: string;
3888
- size: number;
3889
- mimetype: string;
3890
- path?: string | undefined;
3891
- } | undefined;
3892
- moderators?: {
3893
- id: string;
3894
- name: string;
3895
- type: string;
3896
- class: string;
3897
- uri: string;
3898
- mainType: string;
3899
- title: string;
3900
- _url: string;
3901
- label: string;
3902
- Pseudo: string;
3903
- shortUri: string;
3904
- cssClass: string;
3905
- cssColor: string;
3906
- }[] | undefined;
3907
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
3908
- layers?: string[] | undefined;
3909
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
3910
- layers?: string[] | undefined;
3911
- } & jamespot_user_api.WidgetArticleButtonType) | ({
3912
- layers?: string[] | undefined;
3913
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
3914
- layers?: string[] | undefined;
3915
- } & jamespot_user_api.WidgetArticleImageType) | ({
3916
- layers?: string[] | undefined;
3917
- } & jamespot_user_api.WidgetArticleTitleType) | ({
3918
- layers?: string[] | undefined;
3919
- } & jamespot_user_api.WidgetArticleTextType) | ({
3920
- layers?: string[] | undefined;
3921
- } & jamespot_user_api.WidgetArticleSliderType) | ({
3922
- layers?: string[] | undefined;
3923
- } & jamespot_user_api.WidgetType<{
3924
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
3925
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
3926
- css?: Record<string, string> | undefined;
3927
- edit?: boolean | undefined;
3928
- }>) | ({
3929
- layers?: string[] | undefined;
3930
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
3931
- layers?: string[] | undefined;
3932
- } & {
3933
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
3934
- uniqid: string;
3935
- content: {
3936
- limit?: number | boolean | undefined;
3937
- uri?: string | undefined;
3938
- tableColumnsData?: {
3939
- name?: string | undefined;
3940
- label?: string | undefined;
3941
- isVisible?: boolean | undefined;
3942
- textEllipsis?: boolean | undefined;
3943
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
3944
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
3945
- }[] | undefined;
3946
- tableHeadColor?: string | undefined;
3947
- tableHeadTextColor?: string | undefined;
3948
- tableHeadIconColor?: string | undefined;
3949
- tableRowColor?: string | undefined;
3950
- tableRowTextColor?: string | undefined;
3951
- tableBorderRadius?: number | undefined;
3952
- tableSizedColumns?: boolean | undefined;
3953
- tableSizedColumnsWidth?: number | undefined;
3954
- };
3955
- }) | ({
3956
- layers?: string[] | undefined;
3957
- } & jamespot_user_api.WidgetPresenceType) | ({
3958
- layers?: string[] | undefined;
3959
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
3960
- layers?: string[] | undefined;
3961
- } & jamespot_user_api.WidgetType<{
3962
- calEventsLimit?: boolean | undefined;
3963
- calEventsLimitValue?: number | undefined;
3964
- calEventsPromptStatus?: string | undefined;
3965
- }>) | ({
3966
- layers?: string[] | undefined;
3967
- } & jamespot_user_api.WidgetType<{
3968
- contactLimit?: boolean | undefined;
3969
- contactLimitValue?: number | undefined;
3970
- contactPromptStatus?: string | undefined;
3971
- }>) | ({
3972
- layers?: string[] | undefined;
3973
- } & jamespot_user_api.WidgetType<{
3974
- emailsLimit?: boolean | undefined;
3975
- emailsLimitValue?: number | undefined;
3976
- emailsPromptStatus?: string | undefined;
3977
- }>) | ({
3978
- layers?: string[] | undefined;
3979
- } & jamespot_user_api.WidgetType<{
3980
- url?: string | undefined;
3981
- }>)>[] | undefined;
3982
- tags?: {
3983
- id: string;
3984
- name: string;
3985
- type: string;
3986
- class: string;
3987
- uri: string;
3988
- mainType: string;
3989
- title: string;
3990
- label: string;
3991
- shortUri: string;
3992
- cssClass: string;
3993
- cssColor: string;
3994
- }[] | undefined;
3995
- processContext?: null | undefined;
3996
- _transientCtx?: null | undefined;
3997
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
3998
- groups?: {
3999
- id: string;
4000
- name: string;
4001
- type: string;
4002
- class: string;
4003
- uri: string;
4004
- mainType: string;
4005
- title: string;
4006
- label: string;
4007
- shortUri: string;
4008
- cssClass: string;
4009
- cssColor: string;
4010
- idspot: string;
4011
- }[] | undefined;
4012
- matchThreshold?: number | undefined;
4013
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
4014
- webhookMethod?: string | undefined;
4015
- webhookUrl?: string | undefined;
4016
- webhookKey?: string | undefined;
4017
- webhookAutomationOnly?: boolean | undefined;
4018
- }, {
2378
+ rejectValue: {
2379
+ error: number;
2380
+ errorMsg: string;
2381
+ };
2382
+ serializedErrorType?: unknown;
2383
+ pendingMeta?: unknown;
2384
+ fulfilledMeta?: unknown;
2385
+ rejectedMeta?: unknown;
2386
+ }>;
2387
+ fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
4019
2388
  dispatch: AppDispatch;
4020
2389
  state: RootState$1;
4021
2390
  extra: {
@@ -4030,190 +2399,22 @@ declare const ExtraBot: {
4030
2399
  fulfilledMeta?: unknown;
4031
2400
  rejectedMeta?: unknown;
4032
2401
  }>;
4033
- saveExtraBot: _reduxjs_toolkit.AsyncThunk<{
4034
- id: number;
4035
- type: string;
4036
- uri: string;
4037
- mainType: string;
4038
- dateCreation: string;
4039
- dateModified: string;
4040
- title: string;
4041
- _url: string;
4042
- description: string;
4043
- enabled: boolean;
4044
- _user: jamespot_user_api.jObjectBase & {
4045
- title: string;
4046
- _url: string;
4047
- } & {
4048
- [key: string]: string | number | null | undefined;
4049
- level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
4050
- dateCreation: string;
4051
- dateModified: string;
4052
- variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
2402
+ toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<jExtraBotView, jExtraBotView, {
2403
+ dispatch: AppDispatch;
2404
+ state: RootState$1;
2405
+ extra: {
2406
+ jApi: jamespot_user_api.JamespotUserApi;
4053
2407
  };
4054
- _right: jamespot_user_api.Rights;
4055
- _audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
4056
- _attachedFiles: {
4057
- id: number;
4058
- type: string;
4059
- uri: string;
4060
- mainType: string;
4061
- dateCreation: string;
4062
- dateModified: string | null;
4063
- title: string;
4064
- _url: string;
4065
- size: number;
4066
- mimetype: string;
4067
- path?: string | undefined;
4068
- }[];
4069
- context: string;
4070
- disclaimer: string;
4071
- prompt: string;
4072
- trigger: "mentionOnly" | "matchComment";
4073
- image?: {
4074
- width: number;
4075
- height: number;
4076
- } | undefined;
4077
- avatar?: {
4078
- id: number;
4079
- type: string;
4080
- uri: string;
4081
- mainType: string;
4082
- dateCreation: string;
4083
- dateModified: string | null;
4084
- title: string;
4085
- _url: string;
4086
- size: number;
4087
- mimetype: string;
4088
- path?: string | undefined;
4089
- } | undefined;
4090
- moderators?: {
4091
- id: string;
4092
- name: string;
4093
- type: string;
4094
- class: string;
4095
- uri: string;
4096
- mainType: string;
4097
- title: string;
4098
- _url: string;
4099
- label: string;
4100
- Pseudo: string;
4101
- shortUri: string;
4102
- cssClass: string;
4103
- cssColor: string;
4104
- }[] | undefined;
4105
- articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
4106
- layers?: string[] | undefined;
4107
- } & jamespot_user_api.WidgetArticleAttachmentType) | ({
4108
- layers?: string[] | undefined;
4109
- } & jamespot_user_api.WidgetArticleButtonType) | ({
4110
- layers?: string[] | undefined;
4111
- } & jamespot_user_api.WidgetArticleGalleryType) | ({
4112
- layers?: string[] | undefined;
4113
- } & jamespot_user_api.WidgetArticleImageType) | ({
4114
- layers?: string[] | undefined;
4115
- } & jamespot_user_api.WidgetArticleTitleType) | ({
4116
- layers?: string[] | undefined;
4117
- } & jamespot_user_api.WidgetArticleTextType) | ({
4118
- layers?: string[] | undefined;
4119
- } & jamespot_user_api.WidgetArticleSliderType) | ({
4120
- layers?: string[] | undefined;
4121
- } & jamespot_user_api.WidgetType<{
4122
- widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
4123
- arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
4124
- css?: Record<string, string> | undefined;
4125
- edit?: boolean | undefined;
4126
- }>) | ({
4127
- layers?: string[] | undefined;
4128
- } & jamespot_user_api.WidgetDatasourceTableType) | ({
4129
- layers?: string[] | undefined;
4130
- } & {
4131
- name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
4132
- uniqid: string;
4133
- content: {
4134
- limit?: number | boolean | undefined;
4135
- uri?: string | undefined;
4136
- tableColumnsData?: {
4137
- name?: string | undefined;
4138
- label?: string | undefined;
4139
- isVisible?: boolean | undefined;
4140
- textEllipsis?: boolean | undefined;
4141
- dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
4142
- numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
4143
- }[] | undefined;
4144
- tableHeadColor?: string | undefined;
4145
- tableHeadTextColor?: string | undefined;
4146
- tableHeadIconColor?: string | undefined;
4147
- tableRowColor?: string | undefined;
4148
- tableRowTextColor?: string | undefined;
4149
- tableBorderRadius?: number | undefined;
4150
- tableSizedColumns?: boolean | undefined;
4151
- tableSizedColumnsWidth?: number | undefined;
4152
- };
4153
- }) | ({
4154
- layers?: string[] | undefined;
4155
- } & jamespot_user_api.WidgetPresenceType) | ({
4156
- layers?: string[] | undefined;
4157
- } & jamespot_user_api.WidgetQuickSurveyType) | ({
4158
- layers?: string[] | undefined;
4159
- } & jamespot_user_api.WidgetType<{
4160
- calEventsLimit?: boolean | undefined;
4161
- calEventsLimitValue?: number | undefined;
4162
- calEventsPromptStatus?: string | undefined;
4163
- }>) | ({
4164
- layers?: string[] | undefined;
4165
- } & jamespot_user_api.WidgetType<{
4166
- contactLimit?: boolean | undefined;
4167
- contactLimitValue?: number | undefined;
4168
- contactPromptStatus?: string | undefined;
4169
- }>) | ({
4170
- layers?: string[] | undefined;
4171
- } & jamespot_user_api.WidgetType<{
4172
- emailsLimit?: boolean | undefined;
4173
- emailsLimitValue?: number | undefined;
4174
- emailsPromptStatus?: string | undefined;
4175
- }>) | ({
4176
- layers?: string[] | undefined;
4177
- } & jamespot_user_api.WidgetType<{
4178
- url?: string | undefined;
4179
- }>)>[] | undefined;
4180
- tags?: {
4181
- id: string;
4182
- name: string;
4183
- type: string;
4184
- class: string;
4185
- uri: string;
4186
- mainType: string;
4187
- title: string;
4188
- label: string;
4189
- shortUri: string;
4190
- cssClass: string;
4191
- cssColor: string;
4192
- }[] | undefined;
4193
- processContext?: null | undefined;
4194
- _transientCtx?: null | undefined;
4195
- uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
4196
- groups?: {
4197
- id: string;
4198
- name: string;
4199
- type: string;
4200
- class: string;
4201
- uri: string;
4202
- mainType: string;
4203
- title: string;
4204
- label: string;
4205
- shortUri: string;
4206
- cssClass: string;
4207
- cssColor: string;
4208
- idspot: string;
4209
- }[] | undefined;
4210
- matchThreshold?: number | undefined;
4211
- bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
4212
- webhookMethod?: string | undefined;
4213
- webhookUrl?: string | undefined;
4214
- webhookKey?: string | undefined;
4215
- webhookAutomationOnly?: boolean | undefined;
4216
- }, PayloadSave, {
2408
+ rejectValue: {
2409
+ error: number;
2410
+ errorMsg: string;
2411
+ };
2412
+ serializedErrorType?: unknown;
2413
+ pendingMeta?: unknown;
2414
+ fulfilledMeta?: unknown;
2415
+ rejectedMeta?: unknown;
2416
+ }>;
2417
+ saveExtraBot: _reduxjs_toolkit.AsyncThunk<jExtraBotView, PayloadSave, {
4217
2418
  dispatch: AppDispatch;
4218
2419
  state: RootState$1;
4219
2420
  extra: {
@@ -4245,7 +2446,7 @@ declare const Faq: {
4245
2446
  };
4246
2447
  actions: {
4247
2448
  fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
4248
- _web: "" | "0" | "1" | undefined;
2449
+ _web: "" | "1" | "0" | undefined;
4249
2450
  appImage: string | {
4250
2451
  image: {
4251
2452
  id: string;
@@ -4256,7 +2457,7 @@ declare const Faq: {
4256
2457
  access: {
4257
2458
  createCategory: boolean;
4258
2459
  };
4259
- _displayComment: "" | "0" | "1" | undefined;
2460
+ _displayComment: "" | "1" | "0" | undefined;
4260
2461
  } | {
4261
2462
  _web: string;
4262
2463
  appImage?: never;
@@ -4864,32 +3065,7 @@ declare const jland: {
4864
3065
  fulfilledMeta?: unknown;
4865
3066
  rejectedMeta?: unknown;
4866
3067
  }>;
4867
- createMap: _reduxjs_toolkit.AsyncThunk<{
4868
- id: number;
4869
- type: string;
4870
- uri: string;
4871
- mainType: string;
4872
- dateCreation: string;
4873
- dateModified: string;
4874
- title: string;
4875
- _url: string;
4876
- _extend: {
4877
- licenses: {
4878
- id: number;
4879
- status: number;
4880
- uri: string;
4881
- dateCreation: string;
4882
- kind: string;
4883
- idFeature: number;
4884
- contentId: number;
4885
- contentType: string;
4886
- }[];
4887
- };
4888
- jlandMapFlavor: string;
4889
- jlandMapKind: string;
4890
- limit?: number | undefined;
4891
- waMapUrl?: string | undefined;
4892
- }[] | undefined, {
3068
+ createMap: _reduxjs_toolkit.AsyncThunk<JLandMap[] | undefined, {
4893
3069
  jlandUrlBase: string;
4894
3070
  map: MapCreationFront;
4895
3071
  }, {
@@ -4913,7 +3089,7 @@ declare const jland: {
4913
3089
  selectMapCreate: (state: RootState$1) => MapCreateState;
4914
3090
  };
4915
3091
  utils: {
4916
- buildUrlToJland: (map: Pick<jamespot_user_api.JLandMap, "uri">, hostname: string, urlBase: string) => string;
3092
+ buildUrlToJland: (map: Pick<JLandMap, "uri">, hostname: string, urlBase: string) => string;
4917
3093
  };
4918
3094
  };
4919
3095
 
@@ -4924,7 +3100,7 @@ declare const magicPadSlice: _reduxjs_toolkit.Slice<MagicPadSliceRootState, {
4924
3100
  setFilters: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["filters"]>) => void;
4925
3101
  setOrders: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["orders"]>) => void;
4926
3102
  }, "magicPad">;
4927
- declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<jArticleView>, {
3103
+ declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<ArticlesView>, {
4928
3104
  idUserLogged: number;
4929
3105
  }, {
4930
3106
  dispatch: AppDispatch;
@@ -4950,7 +3126,7 @@ declare const MagicPad: {
4950
3126
  setOrders: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["orders"]>) => void;
4951
3127
  }, "magicPad">;
4952
3128
  actions: {
4953
- fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<jArticleView>, {
3129
+ fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<ArticlesView>, {
4954
3130
  idUserLogged: number;
4955
3131
  }, {
4956
3132
  dispatch: AppDispatch;
@@ -4982,7 +3158,7 @@ declare const mediaLibrarySlice: _reduxjs_toolkit.Slice<MediaLibraryState, {
4982
3158
  totalPages: number;
4983
3159
  }>): any;
4984
3160
  }, "mediaLibrary">;
4985
- declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList>, void, {
3161
+ declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryFolderList>, void, {
4986
3162
  dispatch: AppDispatch;
4987
3163
  state: RootState$1;
4988
3164
  extra: {
@@ -5089,7 +3265,7 @@ declare const MediaLibrary: {
5089
3265
  }>): any;
5090
3266
  }, "mediaLibrary">;
5091
3267
  actions: {
5092
- fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryList>, void, {
3268
+ fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryFolderList>, void, {
5093
3269
  dispatch: AppDispatch;
5094
3270
  state: RootState$1;
5095
3271
  extra: {
@@ -6295,8 +4471,8 @@ declare const Widget: {
6295
4471
  fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
6296
4472
  }[];
6297
4473
  selectFlushedWidgets: (state: RootState$1) => string[];
6298
- selectWidgetContext: (state: RootState$1, uniqid: string) => "comment" | "article" | undefined;
6299
- selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 | 2 | 3 | 4 | undefined;
4474
+ selectWidgetContext: (state: RootState$1, uniqid: string) => "article" | "comment" | undefined;
4475
+ selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 | 3 | 2 | 4 | undefined;
6300
4476
  selectWidgetWrapperStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
6301
4477
  selectWidgetTitleStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
6302
4478
  selectWidgetChipCount: (state: RootState$1, uniqid: string) => number;
@@ -6852,4 +5028,4 @@ declare const studio: {
6852
5028
  };
6853
5029
 
6854
5030
  export { APP_STATUS_TYPE, AUDIENCE, AdminLogs, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, Application, Article, AssetReservation, Bookmark, Comment, ContentReport, Description, Element, ExtraAppFieldsItemName, ExtraAppFieldsItemViews, ExtraBot, Faq, Hook, MagicPad, MapExtraFieldsWithView, MediaLibrary, Model, Network, Platform, STUDIO_VIEW, Share, SocialActions, StatusType, TVDisplay, TeamWork, TinyMCE, Toast, UserCurrent, WedocApp, Widget, WidgetEditor, actions, adminLogsReducer, adminLogsSlice, animationsReducer, animationsSlice, contentReportSlice, extraBotSlice, fetchExtraBotListAll, fetchExtraBotListMines, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, fetchReports, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, saveExtraBot, selectExtraBotListAll, selectExtraBotListMines, slice, studio, teamWorkSlice, teamworkReducer, toggleExtraBotActivation, updateListBotProperty, updateStatus, updateWidgetContent, viewsList };
6855
- export type { AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppDispatch, AppFieldFormProperty, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormItemTypesValues, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppSyncViewFieldOrder, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, ApplicationRootState, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentReportRootState, ContentReportSliceRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Display, DisplayComposant, Displays, ExtraAppFieldsItemViewsValues, ExtraBotFormModalOpen, ExtraBotFormModalState, ExtraBotGlobalState, ExtraBotListAllState, ExtraBotListMinesState, ExtraBotRootState, ExtraBotState, HTMLInfo, InstalledApp, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, OptionsClass, ParamsClass, ReservationForm, ReservationRootState, ReservationState, Right, RootState$1 as RootState, Solr, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplayRootState, Table, TaxonomyPropertyValue, TeamWorkRootState, TeamWorkSliceToDoState, ThunkApiConfig, UserCurrentRootState, Values, ViewName, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState };
5031
+ export type { AccessRightObjectList, Action, AnimationSliceListState, AnimationStatsCurrentSliceState, AnimationStatsSliceState, AnimationsRootState, ApiError, AppAttrSolrModel, AppAttrWidgetModel, AppDispatch, AppFieldFormProperty, AppFieldFormPropertyTypesValues, AppFieldView, AppFieldsFormItem, AppFormItemTypesValues, AppInstallForType, AppLabelContentType, AppLabelsType, AppServerDisplayModel, AppServerDisplaysModel, AppServerViewModel, AppStatusKeys, AppStatusType, AppSyncViewFieldOrder, AppTableAttributesModel, AppTableModel, AppTypeServerModel, AppViewFieldItem, AppViewFieldsItems, AppViews, AppViewsFields, ApplicationRootState, AssetReservationRootState, Attribute, BookableAssetRootState, BookableAssetState, BookmarkRootState, ChannelsListRootState, ChannelsListState, CheckBoxOption, Columns, CommentListRootState, CommentListState, CommentRootState, CommentsList, Configuration, ConfigurationRootState, ContentReportRootState, ContentReportSliceRootState, ContentTypePropertyValue, Create, CreateComposant, CurrentStudioAppRootState, CurrentStudioAppState, Display, DisplayComposant, Displays, ExtraAppFieldsItemViewsValues, ExtraBotFormModalOpen, ExtraBotFormModalState, ExtraBotGlobalState, ExtraBotListAllState, ExtraBotListMinesState, ExtraBotRootState, ExtraBotState, HTMLInfo, InstalledApp, JLandMap, JLandMapFront, JLandMapListRootState, JLandMapListState, JLandRootState, JType, MagicPadRootState, MagicPadSliceRootState, Manifest, MapCreateRootState, MapCreateState, MapCreationFront, OptionsClass, ParamsClass, ReservationForm, ReservationRootState, ReservationState, Right, RootState$1 as RootState, Solr, StudioAppBase, StudioAppManifest, StudioApplication, StudioAppsListRootState, StudioAppsListState, StudioAudienceType, StudioRootState, StudioWidget, TVDisplayRootState, Table, TaxonomyPropertyValue, TeamWorkRootState, TeamWorkSliceToDoState, ThunkApiConfig, UserCurrentRootState, Values, ViewName, WedocAppRootState, WedocAppState, WedocAppTabKeys, WedocFilesQuery, bookmarkEditRootState, bookmarkEditState, bookmarkListRootState, bookmarkListState };