jamespot-front-business 1.2.50 → 1.2.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs.js +166 -32
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +160 -33
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +189 -32
- package/package.json +9 -9
package/dist/types.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
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, 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, CalendarEventWithExtensions, CalendarEventViewAbstractType, EventStatusFilter, UserResponseStatus, WidgetsRootState, JamespotUserApi, ApiWrapper, ContentReportStatus, LicenseHookListType, ApiPagingResults, MediaLibraryFolderList, 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, CalendarEventWithExtensions, CalendarEventViewAbstractType, EventStatusFilter, UserResponseStatus, jQuarantineList, WidgetsRootState, JamespotUserApi, ApiWrapper, ContentReportStatus, jArticleLittle, 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';
|
|
@@ -984,7 +984,18 @@ type CalendarRootState = {
|
|
|
984
984
|
};
|
|
985
985
|
};
|
|
986
986
|
|
|
987
|
-
type
|
|
987
|
+
type FileIntegrityGlobalState = Loading;
|
|
988
|
+
type FileIntegrityListState = PagingState$1<jQuarantineList>;
|
|
989
|
+
type FileIntegrityReleaseState = Loading;
|
|
990
|
+
type FileIntegrityState = {
|
|
991
|
+
list: FileIntegrityListState;
|
|
992
|
+
action: FileIntegrityReleaseState;
|
|
993
|
+
};
|
|
994
|
+
type FileIntegrityRootState = {
|
|
995
|
+
fileIntegrity: FileIntegrityState;
|
|
996
|
+
};
|
|
997
|
+
|
|
998
|
+
type AsyncReducers = AdminLogsRootState & AnimationsRootState & AssetReservationRootState & BookmarkRootState & CalendarRootState & ContentReportRootState & EditorsRootState & ExtraBotRootState & FaqRootState & FileIntegrityRootState & JLandRootState & MagicPadRootState & MediaLibraryRootState & ShareRootState & StudioRootState & TeamWorkRootState & TinyMCERootState & TVDisplayRootState & WedocAppRootState & WidgetsRootState;
|
|
988
999
|
type StaticReducers = {
|
|
989
1000
|
entities: ApplicationRootState & ModelRootState;
|
|
990
1001
|
} & CommentRootState & HookRootState & NetworkRootState & PlatformRootState & ToastRootState & UserCurrentRootState;
|
|
@@ -1583,15 +1594,16 @@ declare const Bookmark: {
|
|
|
1583
1594
|
resetMoveBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkList/resetMoveBookmarkStatus">;
|
|
1584
1595
|
resetDeleteBookmarkStatus: _reduxjs_toolkit.ActionCreatorWithPayload<string, "bookmarkList/resetDeleteBookmarkStatus">;
|
|
1585
1596
|
addBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1597
|
+
type: "bookmarkLink";
|
|
1586
1598
|
id: number;
|
|
1587
1599
|
mainType: string;
|
|
1588
|
-
type: "bookmarkLink";
|
|
1589
1600
|
uri: string;
|
|
1590
1601
|
value: string | null;
|
|
1591
1602
|
srcId: number;
|
|
1592
1603
|
srcType: string;
|
|
1593
1604
|
targetId: number;
|
|
1594
1605
|
targetType: string | null;
|
|
1606
|
+
url?: string | null | undefined;
|
|
1595
1607
|
dateCreation?: string | undefined;
|
|
1596
1608
|
dateModified?: string | null | undefined;
|
|
1597
1609
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1600,18 +1612,18 @@ declare const Bookmark: {
|
|
|
1600
1612
|
bookmarkOrder?: number | undefined;
|
|
1601
1613
|
bookmarkLabel?: string | undefined;
|
|
1602
1614
|
bookmarkMeta?: string | null | undefined;
|
|
1603
|
-
url?: string | null | undefined;
|
|
1604
1615
|
}, "bookmarkList/addBookmarkRT">;
|
|
1605
1616
|
deleteBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1617
|
+
type: "bookmarkLink";
|
|
1606
1618
|
id: number;
|
|
1607
1619
|
mainType: string;
|
|
1608
|
-
type: "bookmarkLink";
|
|
1609
1620
|
uri: string;
|
|
1610
1621
|
value: string | null;
|
|
1611
1622
|
srcId: number;
|
|
1612
1623
|
srcType: string;
|
|
1613
1624
|
targetId: number;
|
|
1614
1625
|
targetType: string | null;
|
|
1626
|
+
url?: string | null | undefined;
|
|
1615
1627
|
dateCreation?: string | undefined;
|
|
1616
1628
|
dateModified?: string | null | undefined;
|
|
1617
1629
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1620,18 +1632,18 @@ declare const Bookmark: {
|
|
|
1620
1632
|
bookmarkOrder?: number | undefined;
|
|
1621
1633
|
bookmarkLabel?: string | undefined;
|
|
1622
1634
|
bookmarkMeta?: string | null | undefined;
|
|
1623
|
-
url?: string | null | undefined;
|
|
1624
1635
|
}, "bookmarkList/deleteBookmarkRT">;
|
|
1625
1636
|
updateBookmarkRT: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1637
|
+
type: "bookmarkLink";
|
|
1626
1638
|
id: number;
|
|
1627
1639
|
mainType: string;
|
|
1628
|
-
type: "bookmarkLink";
|
|
1629
1640
|
uri: string;
|
|
1630
1641
|
value: string | null;
|
|
1631
1642
|
srcId: number;
|
|
1632
1643
|
srcType: string;
|
|
1633
1644
|
targetId: number;
|
|
1634
1645
|
targetType: string | null;
|
|
1646
|
+
url?: string | null | undefined;
|
|
1635
1647
|
dateCreation?: string | undefined;
|
|
1636
1648
|
dateModified?: string | null | undefined;
|
|
1637
1649
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1640,18 +1652,18 @@ declare const Bookmark: {
|
|
|
1640
1652
|
bookmarkOrder?: number | undefined;
|
|
1641
1653
|
bookmarkLabel?: string | undefined;
|
|
1642
1654
|
bookmarkMeta?: string | null | undefined;
|
|
1643
|
-
url?: string | null | undefined;
|
|
1644
1655
|
}, "bookmarkList/updateBookmarkRT">;
|
|
1645
1656
|
setEditBookmark: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
1657
|
+
type: "bookmarkLink";
|
|
1646
1658
|
id: number;
|
|
1647
1659
|
mainType: string;
|
|
1648
|
-
type: "bookmarkLink";
|
|
1649
1660
|
uri: string;
|
|
1650
1661
|
value: string | null;
|
|
1651
1662
|
srcId: number;
|
|
1652
1663
|
srcType: string;
|
|
1653
1664
|
targetId: number;
|
|
1654
1665
|
targetType: string | null;
|
|
1666
|
+
url?: string | null | undefined;
|
|
1655
1667
|
dateCreation?: string | undefined;
|
|
1656
1668
|
dateModified?: string | null | undefined;
|
|
1657
1669
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1660,20 +1672,20 @@ declare const Bookmark: {
|
|
|
1660
1672
|
bookmarkOrder?: number | undefined;
|
|
1661
1673
|
bookmarkLabel?: string | undefined;
|
|
1662
1674
|
bookmarkMeta?: string | null | undefined;
|
|
1663
|
-
url?: string | null | undefined;
|
|
1664
1675
|
}, "bookmarkEdit/setEditBookmark">;
|
|
1665
1676
|
unsetEditBookmark: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/unsetEditBookmark">;
|
|
1666
1677
|
resetStatus: _reduxjs_toolkit.ActionCreatorWithoutPayload<"bookmarkEdit/resetStatus">;
|
|
1667
1678
|
fetchBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiPagingResults<{
|
|
1679
|
+
type: "bookmarkLink";
|
|
1668
1680
|
id: number;
|
|
1669
1681
|
mainType: string;
|
|
1670
|
-
type: "bookmarkLink";
|
|
1671
1682
|
uri: string;
|
|
1672
1683
|
value: string | null;
|
|
1673
1684
|
srcId: number;
|
|
1674
1685
|
srcType: string;
|
|
1675
1686
|
targetId: number;
|
|
1676
1687
|
targetType: string | null;
|
|
1688
|
+
url?: string | null | undefined;
|
|
1677
1689
|
dateCreation?: string | undefined;
|
|
1678
1690
|
dateModified?: string | null | undefined;
|
|
1679
1691
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1682,7 +1694,6 @@ declare const Bookmark: {
|
|
|
1682
1694
|
bookmarkOrder?: number | undefined;
|
|
1683
1695
|
bookmarkLabel?: string | undefined;
|
|
1684
1696
|
bookmarkMeta?: string | null | undefined;
|
|
1685
|
-
url?: string | null | undefined;
|
|
1686
1697
|
}>, void, {
|
|
1687
1698
|
dispatch: AppDispatch;
|
|
1688
1699
|
state: RootState$1;
|
|
@@ -1699,15 +1710,16 @@ declare const Bookmark: {
|
|
|
1699
1710
|
rejectedMeta?: unknown;
|
|
1700
1711
|
}>;
|
|
1701
1712
|
addBookmark: _reduxjs_toolkit.AsyncThunk<jamespot_user_api.ApiWrapper<{
|
|
1713
|
+
type: "bookmarkLink";
|
|
1702
1714
|
id: number;
|
|
1703
1715
|
mainType: string;
|
|
1704
|
-
type: "bookmarkLink";
|
|
1705
1716
|
uri: string;
|
|
1706
1717
|
value: string | null;
|
|
1707
1718
|
srcId: number;
|
|
1708
1719
|
srcType: string;
|
|
1709
1720
|
targetId: number;
|
|
1710
1721
|
targetType: string | null;
|
|
1722
|
+
url?: string | null | undefined;
|
|
1711
1723
|
dateCreation?: string | undefined;
|
|
1712
1724
|
dateModified?: string | null | undefined;
|
|
1713
1725
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1716,11 +1728,10 @@ declare const Bookmark: {
|
|
|
1716
1728
|
bookmarkOrder?: number | undefined;
|
|
1717
1729
|
bookmarkLabel?: string | undefined;
|
|
1718
1730
|
bookmarkMeta?: string | null | undefined;
|
|
1719
|
-
url?: string | null | undefined;
|
|
1720
1731
|
} | {
|
|
1732
|
+
type: string;
|
|
1721
1733
|
id: number;
|
|
1722
1734
|
mainType: string;
|
|
1723
|
-
type: string;
|
|
1724
1735
|
uri: string;
|
|
1725
1736
|
value: string | null;
|
|
1726
1737
|
srcId: number;
|
|
@@ -1729,27 +1740,28 @@ declare const Bookmark: {
|
|
|
1729
1740
|
targetType: string | null;
|
|
1730
1741
|
_cssColor: string;
|
|
1731
1742
|
_cssClass: string;
|
|
1743
|
+
url?: string | null | undefined;
|
|
1732
1744
|
_src?: jamespot_user_api.jObjectLittle | undefined;
|
|
1733
1745
|
_target?: jamespot_user_api.jObjectLittle | undefined;
|
|
1734
1746
|
bookmarkUrl?: string | null | undefined;
|
|
1735
1747
|
bookmarkOrder?: string | undefined;
|
|
1736
1748
|
bookmarkLabel?: string | undefined;
|
|
1737
1749
|
bookmarkMeta?: string | null | undefined;
|
|
1738
|
-
url?: string | null | undefined;
|
|
1739
1750
|
_values?: {
|
|
1740
1751
|
dateCreation: string;
|
|
1741
1752
|
dateModified: string;
|
|
1742
1753
|
} | undefined;
|
|
1743
1754
|
}, jamespot_user_api.BaseMessagesOne> | jamespot_user_api.ApiWrapper<{
|
|
1755
|
+
type: "bookmarkLink";
|
|
1744
1756
|
id: number;
|
|
1745
1757
|
mainType: string;
|
|
1746
|
-
type: "bookmarkLink";
|
|
1747
1758
|
uri: string;
|
|
1748
1759
|
value: string | null;
|
|
1749
1760
|
srcId: number;
|
|
1750
1761
|
srcType: string;
|
|
1751
1762
|
targetId: number;
|
|
1752
1763
|
targetType: string | null;
|
|
1764
|
+
url?: string | null | undefined;
|
|
1753
1765
|
dateCreation?: string | undefined;
|
|
1754
1766
|
dateModified?: string | null | undefined;
|
|
1755
1767
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1758,7 +1770,6 @@ declare const Bookmark: {
|
|
|
1758
1770
|
bookmarkOrder?: number | undefined;
|
|
1759
1771
|
bookmarkLabel?: string | undefined;
|
|
1760
1772
|
bookmarkMeta?: string | null | undefined;
|
|
1761
|
-
url?: string | null | undefined;
|
|
1762
1773
|
}, jamespot_user_api.BaseMessages>, ({
|
|
1763
1774
|
bookmarkUrl?: string | null | undefined;
|
|
1764
1775
|
bookmarkLabel?: string | undefined;
|
|
@@ -1804,15 +1815,16 @@ declare const Bookmark: {
|
|
|
1804
1815
|
rejectedMeta?: unknown;
|
|
1805
1816
|
}>;
|
|
1806
1817
|
deleteBookmark: _reduxjs_toolkit.AsyncThunk<void, Pick<{
|
|
1818
|
+
type: "bookmarkLink";
|
|
1807
1819
|
id: number;
|
|
1808
1820
|
mainType: string;
|
|
1809
|
-
type: "bookmarkLink";
|
|
1810
1821
|
uri: string;
|
|
1811
1822
|
value: string | null;
|
|
1812
1823
|
srcId: number;
|
|
1813
1824
|
srcType: string;
|
|
1814
1825
|
targetId: number;
|
|
1815
1826
|
targetType: string | null;
|
|
1827
|
+
url?: string | null | undefined;
|
|
1816
1828
|
dateCreation?: string | undefined;
|
|
1817
1829
|
dateModified?: string | null | undefined;
|
|
1818
1830
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1821,7 +1833,6 @@ declare const Bookmark: {
|
|
|
1821
1833
|
bookmarkOrder?: number | undefined;
|
|
1822
1834
|
bookmarkLabel?: string | undefined;
|
|
1823
1835
|
bookmarkMeta?: string | null | undefined;
|
|
1824
|
-
url?: string | null | undefined;
|
|
1825
1836
|
}, "id"> & {
|
|
1826
1837
|
requestId?: string | undefined;
|
|
1827
1838
|
}, {
|
|
@@ -1840,15 +1851,16 @@ declare const Bookmark: {
|
|
|
1840
1851
|
rejectedMeta?: unknown;
|
|
1841
1852
|
}>;
|
|
1842
1853
|
editBookmark: _reduxjs_toolkit.AsyncThunk<void, Partial<{
|
|
1854
|
+
type: "bookmarkLink";
|
|
1843
1855
|
id: number;
|
|
1844
1856
|
mainType: string;
|
|
1845
|
-
type: "bookmarkLink";
|
|
1846
1857
|
uri: string;
|
|
1847
1858
|
value: string | null;
|
|
1848
1859
|
srcId: number;
|
|
1849
1860
|
srcType: string;
|
|
1850
1861
|
targetId: number;
|
|
1851
1862
|
targetType: string | null;
|
|
1863
|
+
url?: string | null | undefined;
|
|
1852
1864
|
dateCreation?: string | undefined;
|
|
1853
1865
|
dateModified?: string | null | undefined;
|
|
1854
1866
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1857,7 +1869,6 @@ declare const Bookmark: {
|
|
|
1857
1869
|
bookmarkOrder?: number | undefined;
|
|
1858
1870
|
bookmarkLabel?: string | undefined;
|
|
1859
1871
|
bookmarkMeta?: string | null | undefined;
|
|
1860
|
-
url?: string | null | undefined;
|
|
1861
1872
|
}>, {
|
|
1862
1873
|
dispatch: AppDispatch;
|
|
1863
1874
|
state: RootState$1;
|
|
@@ -1878,15 +1889,16 @@ declare const Bookmark: {
|
|
|
1878
1889
|
bookmarkList: (state: RootState$1) => bookmarkListState;
|
|
1879
1890
|
bookmarkListIsInitialized: (state: RootState$1) => boolean;
|
|
1880
1891
|
bookmarkEditBookmark: (state: RootState$1) => {
|
|
1892
|
+
type: "bookmarkLink";
|
|
1881
1893
|
id: number;
|
|
1882
1894
|
mainType: string;
|
|
1883
|
-
type: "bookmarkLink";
|
|
1884
1895
|
uri: string;
|
|
1885
1896
|
value: string | null;
|
|
1886
1897
|
srcId: number;
|
|
1887
1898
|
srcType: string;
|
|
1888
1899
|
targetId: number;
|
|
1889
1900
|
targetType: string | null;
|
|
1901
|
+
url?: string | null | undefined;
|
|
1890
1902
|
dateCreation?: string | undefined;
|
|
1891
1903
|
dateModified?: string | null | undefined;
|
|
1892
1904
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1895,18 +1907,18 @@ declare const Bookmark: {
|
|
|
1895
1907
|
bookmarkOrder?: number | undefined;
|
|
1896
1908
|
bookmarkLabel?: string | undefined;
|
|
1897
1909
|
bookmarkMeta?: string | null | undefined;
|
|
1898
|
-
url?: string | null | undefined;
|
|
1899
1910
|
} | undefined;
|
|
1900
1911
|
bookmarkByArticleId: (state: RootState$1, idArticle: number) => {
|
|
1912
|
+
type: "bookmarkLink";
|
|
1901
1913
|
id: number;
|
|
1902
1914
|
mainType: string;
|
|
1903
|
-
type: "bookmarkLink";
|
|
1904
1915
|
uri: string;
|
|
1905
1916
|
value: string | null;
|
|
1906
1917
|
srcId: number;
|
|
1907
1918
|
srcType: string;
|
|
1908
1919
|
targetId: number;
|
|
1909
1920
|
targetType: string | null;
|
|
1921
|
+
url?: string | null | undefined;
|
|
1910
1922
|
dateCreation?: string | undefined;
|
|
1911
1923
|
dateModified?: string | null | undefined;
|
|
1912
1924
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1915,17 +1927,16 @@ declare const Bookmark: {
|
|
|
1915
1927
|
bookmarkOrder?: number | undefined;
|
|
1916
1928
|
bookmarkLabel?: string | undefined;
|
|
1917
1929
|
bookmarkMeta?: string | null | undefined;
|
|
1918
|
-
url?: string | null | undefined;
|
|
1919
1930
|
} | undefined;
|
|
1920
1931
|
};
|
|
1921
1932
|
getRTHandlers: (dispatch: AppDispatch) => ({
|
|
1922
|
-
namespace: "BOOKMARKS";
|
|
1923
|
-
function: "update" | "add" | "delete";
|
|
1924
|
-
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
|
|
1925
|
-
} | {
|
|
1926
1933
|
namespace: "CUSTOM-ACTION";
|
|
1927
1934
|
function: "update" | "add" | "remove";
|
|
1928
1935
|
handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
|
|
1936
|
+
} | {
|
|
1937
|
+
namespace: "BOOKMARKS";
|
|
1938
|
+
function: "update" | "add" | "delete";
|
|
1939
|
+
handler: (message: jamespot_user_api.RTMessageObject<"BOOKMARKS", "update", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "add", {}, {}> | jamespot_user_api.RTMessageObject<"BOOKMARKS", "delete", {}, {}>) => void;
|
|
1929
1940
|
})[];
|
|
1930
1941
|
};
|
|
1931
1942
|
|
|
@@ -2819,6 +2830,9 @@ declare const Comment: {
|
|
|
2819
2830
|
} | undefined;
|
|
2820
2831
|
messenger?: jamespot_user_api.jMessengerGroupLittle | null | undefined;
|
|
2821
2832
|
filebank?: jamespot_user_api.jFolderLittle | null | undefined;
|
|
2833
|
+
quarantine?: {
|
|
2834
|
+
count: number;
|
|
2835
|
+
} | undefined;
|
|
2822
2836
|
}, "actions">;
|
|
2823
2837
|
} & {
|
|
2824
2838
|
pending?: boolean;
|
|
@@ -3088,6 +3102,140 @@ declare const Faq: {
|
|
|
3088
3102
|
};
|
|
3089
3103
|
};
|
|
3090
3104
|
|
|
3105
|
+
declare const fetchFileIntegrityList: _reduxjs_toolkit.AsyncThunk<PagingResults<jQuarantineList>, void, {
|
|
3106
|
+
dispatch: AppDispatch;
|
|
3107
|
+
state: RootState$1;
|
|
3108
|
+
extra: {
|
|
3109
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3110
|
+
};
|
|
3111
|
+
rejectValue: {
|
|
3112
|
+
error: number;
|
|
3113
|
+
errorMsg: string;
|
|
3114
|
+
};
|
|
3115
|
+
serializedErrorType?: unknown;
|
|
3116
|
+
pendingMeta?: unknown;
|
|
3117
|
+
fulfilledMeta?: unknown;
|
|
3118
|
+
rejectedMeta?: unknown;
|
|
3119
|
+
}>;
|
|
3120
|
+
declare const releaseQuarantine: _reduxjs_toolkit.AsyncThunk<jArticleLittle, number, {
|
|
3121
|
+
dispatch: AppDispatch;
|
|
3122
|
+
state: RootState$1;
|
|
3123
|
+
extra: {
|
|
3124
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3125
|
+
};
|
|
3126
|
+
rejectValue: {
|
|
3127
|
+
error: number;
|
|
3128
|
+
errorMsg: string;
|
|
3129
|
+
};
|
|
3130
|
+
serializedErrorType?: unknown;
|
|
3131
|
+
pendingMeta?: unknown;
|
|
3132
|
+
fulfilledMeta?: unknown;
|
|
3133
|
+
rejectedMeta?: unknown;
|
|
3134
|
+
}>;
|
|
3135
|
+
declare const deleteQuarantine: _reduxjs_toolkit.AsyncThunk<boolean, number, {
|
|
3136
|
+
dispatch: AppDispatch;
|
|
3137
|
+
state: RootState$1;
|
|
3138
|
+
extra: {
|
|
3139
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3140
|
+
};
|
|
3141
|
+
rejectValue: {
|
|
3142
|
+
error: number;
|
|
3143
|
+
errorMsg: string;
|
|
3144
|
+
};
|
|
3145
|
+
serializedErrorType?: unknown;
|
|
3146
|
+
pendingMeta?: unknown;
|
|
3147
|
+
fulfilledMeta?: unknown;
|
|
3148
|
+
rejectedMeta?: unknown;
|
|
3149
|
+
}>;
|
|
3150
|
+
declare const FileIntegritySlice: _reduxjs_toolkit.Slice<FileIntegrityState, {
|
|
3151
|
+
setListOrder: (state: Draft<S>, action: PayloadAction<Orders>) => void;
|
|
3152
|
+
setListFilter: (state: Draft<S>, action: PayloadAction<Filters>) => void;
|
|
3153
|
+
setListPage: (state: Draft<S>, action: PayloadAction<number>) => void;
|
|
3154
|
+
}, "fileIntegrity">;
|
|
3155
|
+
declare const selectFileIntegrityAction: (state: FileIntegrityRootState) => Loading;
|
|
3156
|
+
declare const selectFileIntegrityList: (state: FileIntegrityRootState) => FileIntegrityListState;
|
|
3157
|
+
declare const FileIntegrity: {
|
|
3158
|
+
slice: _reduxjs_toolkit.Slice<FileIntegrityState, {
|
|
3159
|
+
setListOrder: (state: Draft<S>, action: PayloadAction<Orders>) => void;
|
|
3160
|
+
setListFilter: (state: Draft<S>, action: PayloadAction<Filters>) => void;
|
|
3161
|
+
setListPage: (state: Draft<S>, action: PayloadAction<number>) => void;
|
|
3162
|
+
}, "fileIntegrity">;
|
|
3163
|
+
actions: {
|
|
3164
|
+
setListOrder: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
3165
|
+
name: string;
|
|
3166
|
+
sort: "ASC" | "DESC";
|
|
3167
|
+
}[], "fileIntegrity/setListOrder">;
|
|
3168
|
+
setListFilter: _reduxjs_toolkit.ActionCreatorWithPayload<{
|
|
3169
|
+
name: string;
|
|
3170
|
+
value: string | number | boolean | string[] | {
|
|
3171
|
+
srcId: string | number;
|
|
3172
|
+
srcType: string;
|
|
3173
|
+
} | {
|
|
3174
|
+
targetId: string | number;
|
|
3175
|
+
targetType: string;
|
|
3176
|
+
} | {
|
|
3177
|
+
start: string;
|
|
3178
|
+
end: string;
|
|
3179
|
+
};
|
|
3180
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
3181
|
+
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
3182
|
+
or?: boolean | undefined;
|
|
3183
|
+
isNull?: boolean | undefined;
|
|
3184
|
+
isNotNull?: boolean | undefined;
|
|
3185
|
+
}[], "fileIntegrity/setListFilter">;
|
|
3186
|
+
setListPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "fileIntegrity/setListPage">;
|
|
3187
|
+
deleteQuarantine: _reduxjs_toolkit.AsyncThunk<boolean, number, {
|
|
3188
|
+
dispatch: AppDispatch;
|
|
3189
|
+
state: RootState$1;
|
|
3190
|
+
extra: {
|
|
3191
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3192
|
+
};
|
|
3193
|
+
rejectValue: {
|
|
3194
|
+
error: number;
|
|
3195
|
+
errorMsg: string;
|
|
3196
|
+
};
|
|
3197
|
+
serializedErrorType?: unknown;
|
|
3198
|
+
pendingMeta?: unknown;
|
|
3199
|
+
fulfilledMeta?: unknown;
|
|
3200
|
+
rejectedMeta?: unknown;
|
|
3201
|
+
}>;
|
|
3202
|
+
fetchFileIntegrityList: _reduxjs_toolkit.AsyncThunk<PagingResults<jQuarantineList>, void, {
|
|
3203
|
+
dispatch: AppDispatch;
|
|
3204
|
+
state: RootState$1;
|
|
3205
|
+
extra: {
|
|
3206
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3207
|
+
};
|
|
3208
|
+
rejectValue: {
|
|
3209
|
+
error: number;
|
|
3210
|
+
errorMsg: string;
|
|
3211
|
+
};
|
|
3212
|
+
serializedErrorType?: unknown;
|
|
3213
|
+
pendingMeta?: unknown;
|
|
3214
|
+
fulfilledMeta?: unknown;
|
|
3215
|
+
rejectedMeta?: unknown;
|
|
3216
|
+
}>;
|
|
3217
|
+
releaseQuarantine: _reduxjs_toolkit.AsyncThunk<jArticleLittle, number, {
|
|
3218
|
+
dispatch: AppDispatch;
|
|
3219
|
+
state: RootState$1;
|
|
3220
|
+
extra: {
|
|
3221
|
+
jApi: jamespot_user_api.JamespotUserApi;
|
|
3222
|
+
};
|
|
3223
|
+
rejectValue: {
|
|
3224
|
+
error: number;
|
|
3225
|
+
errorMsg: string;
|
|
3226
|
+
};
|
|
3227
|
+
serializedErrorType?: unknown;
|
|
3228
|
+
pendingMeta?: unknown;
|
|
3229
|
+
fulfilledMeta?: unknown;
|
|
3230
|
+
rejectedMeta?: unknown;
|
|
3231
|
+
}>;
|
|
3232
|
+
};
|
|
3233
|
+
selectors: {
|
|
3234
|
+
selectFileIntegrityAction: (state: FileIntegrityRootState) => Loading;
|
|
3235
|
+
selectFileIntegrityList: (state: FileIntegrityRootState) => FileIntegrityListState;
|
|
3236
|
+
};
|
|
3237
|
+
};
|
|
3238
|
+
|
|
3091
3239
|
declare const Hook: {
|
|
3092
3240
|
slice: _reduxjs_toolkit.Slice<{}, {
|
|
3093
3241
|
initHooks: (_: Draft<S>, { payload }: PayloadAction<HookListType>) => {
|
|
@@ -3224,6 +3372,9 @@ declare const Hook: {
|
|
|
3224
3372
|
order: "ASC" | "DESC";
|
|
3225
3373
|
orderBy: string;
|
|
3226
3374
|
} | undefined;
|
|
3375
|
+
FileIntegrityHook?: {
|
|
3376
|
+
isActive: boolean;
|
|
3377
|
+
} | undefined;
|
|
3227
3378
|
JitsiHook?: {
|
|
3228
3379
|
create: boolean;
|
|
3229
3380
|
label: string;
|
|
@@ -3385,6 +3536,9 @@ declare const Hook: {
|
|
|
3385
3536
|
order: "ASC" | "DESC";
|
|
3386
3537
|
orderBy: string;
|
|
3387
3538
|
} | undefined;
|
|
3539
|
+
FileIntegrityHook?: {
|
|
3540
|
+
isActive: boolean;
|
|
3541
|
+
} | undefined;
|
|
3388
3542
|
JitsiHook?: {
|
|
3389
3543
|
create: boolean;
|
|
3390
3544
|
label: string;
|
|
@@ -3546,6 +3700,9 @@ declare const Hook: {
|
|
|
3546
3700
|
order: "ASC" | "DESC";
|
|
3547
3701
|
orderBy: string;
|
|
3548
3702
|
} | undefined;
|
|
3703
|
+
FileIntegrityHook?: {
|
|
3704
|
+
isActive: boolean;
|
|
3705
|
+
} | undefined;
|
|
3549
3706
|
JitsiHook?: {
|
|
3550
3707
|
create: boolean;
|
|
3551
3708
|
label: string;
|
|
@@ -5631,5 +5788,5 @@ declare const studio: {
|
|
|
5631
5788
|
};
|
|
5632
5789
|
};
|
|
5633
5790
|
|
|
5634
|
-
export { APP_STATUS_TYPE, AUDIENCE, AdminLogs, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, Application, Article, AssetReservation, Bookmark, Calendar, 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 };
|
|
5635
|
-
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 };
|
|
5791
|
+
export { APP_STATUS_TYPE, AUDIENCE, AdminLogs, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, Application, Article, AssetReservation, Bookmark, Calendar, Comment, ContentReport, Description, Element, ExtraAppFieldsItemName, ExtraAppFieldsItemViews, ExtraBot, Faq, FileIntegrity, FileIntegritySlice, 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, deleteQuarantine, extraBotSlice, fetchExtraBotListAll, fetchExtraBotListMines, fetchFileIntegrityList, fetchMediaLibraryConfig, fetchMediaLibraryFilesStats, fetchMediaLibraryFolders, fetchMediaLibraryFoldersStats, fetchMediaLibraryStats, fetchMediaLibraryUnclassifiedFiles, fetchPads, fetchReports, jland, magicPadSlice, mediaLibraryReducer, mediaLibrarySlice, releaseQuarantine, saveExtraBot, selectExtraBotListAll, selectExtraBotListMines, selectFileIntegrityAction, selectFileIntegrityList, slice, studio, teamWorkSlice, teamworkReducer, toggleExtraBotActivation, updateListBotProperty, updateStatus, updateWidgetContent, viewsList };
|
|
5792
|
+
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, FileIntegrityGlobalState, FileIntegrityListState, FileIntegrityReleaseState, FileIntegrityRootState, FileIntegrityState, 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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jamespot-front-business",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.52",
|
|
4
4
|
"description": "typescript utils",
|
|
5
5
|
"main": "dist/cjs.js",
|
|
6
6
|
"module": "dist/esm.js",
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
],
|
|
18
18
|
"author": "Jamespot",
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@changesets/cli": "^2.29.
|
|
20
|
+
"@changesets/cli": "^2.29.7",
|
|
21
21
|
"@reduxjs/toolkit": "^1.9.7",
|
|
22
22
|
"@rollup/plugin-commonjs": "^28.0.6",
|
|
23
23
|
"@rollup/plugin-json": "^6.1.0",
|
|
24
24
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
25
25
|
"@types/jest": "^30.0.0",
|
|
26
|
-
"@types/react": "^18.3.
|
|
26
|
+
"@types/react": "^18.3.25",
|
|
27
27
|
"@types/uuid": "^10.0.0",
|
|
28
28
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
29
29
|
"@typescript-eslint/parser": "^5.62.0",
|
|
@@ -31,19 +31,19 @@
|
|
|
31
31
|
"eslint-config-prettier": "^8.10.2",
|
|
32
32
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
33
33
|
"eslint-plugin-import": "^2.32.0",
|
|
34
|
-
"jamespot-user-api": "^1.2.
|
|
35
|
-
"jest": "^30.
|
|
36
|
-
"jest-environment-jsdom": "^30.
|
|
34
|
+
"jamespot-user-api": "^1.2.52",
|
|
35
|
+
"jest": "^30.2.0",
|
|
36
|
+
"jest-environment-jsdom": "^30.2.0",
|
|
37
37
|
"prettier": "^3.6.2",
|
|
38
38
|
"react": "^18.3.1",
|
|
39
39
|
"react-intl": "7.1.11",
|
|
40
40
|
"react-redux": "^8.1.3",
|
|
41
41
|
"redux": "^4.2.1",
|
|
42
|
-
"rollup": "^4.
|
|
42
|
+
"rollup": "^4.52.4",
|
|
43
43
|
"rollup-plugin-dts": "^6.2.3",
|
|
44
|
-
"ts-jest": "^29.4.
|
|
44
|
+
"ts-jest": "^29.4.4",
|
|
45
45
|
"tslib": "^2.8.1",
|
|
46
|
-
"typescript": "^5.9.
|
|
46
|
+
"typescript": "^5.9.3",
|
|
47
47
|
"uuid": "^10.0.0",
|
|
48
48
|
"zod": "^3.25.76"
|
|
49
49
|
},
|