jamespot-front-business 1.2.43 → 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/cjs.js +45 -13
- package/dist/cjs.js.map +1 -1
- package/dist/esm.js +45 -14
- package/dist/esm.js.map +1 -1
- package/dist/types.d.ts +155 -1952
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
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, WidgetsRootState, JamespotUserApi, ApiWrapper, ContentReportStatus, LicenseHookListType, ApiPagingResults, MediaLibraryFolderList, WidgetDefinitionProps, WidgetWrapperProps, SocialAction } from 'jamespot-user-api';
|
|
1
3
|
import * as _reduxjs_toolkit from '@reduxjs/toolkit';
|
|
2
4
|
import { EntityState, ThunkDispatch, AnyAction, PayloadAction } from '@reduxjs/toolkit';
|
|
3
|
-
import * as jamespot_user_api from 'jamespot-user-api';
|
|
4
|
-
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';
|
|
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
|
|
|
10
|
+
declare const Article: {
|
|
11
|
+
getArticleRTHandlers: (listener: (article: jamespot_user_api.jObjectBase) => void) => Array<jamespot_user_api.RTMessageHandler<"JAMESPOT", jamespot_user_api.Namespaces["JAMESPOT"]>>;
|
|
12
|
+
};
|
|
13
|
+
|
|
11
14
|
type Loading = {
|
|
12
15
|
loading: 'idle' | 'pending';
|
|
13
16
|
};
|
|
@@ -447,7 +450,7 @@ type JType = {
|
|
|
447
450
|
mainType: string;
|
|
448
451
|
};
|
|
449
452
|
type ContentTypePropertyValue = Pick<JType, 'type' | 'label'>;
|
|
450
|
-
declare const AppFormFixedList: ("
|
|
453
|
+
declare const AppFormFixedList: ("TITLE" | "USER" | "PUBLISHTO" | "SENDALERTTOSUBSCRIBERS" | "RECEIVEACOPY" | "CREATIONDATE")[];
|
|
451
454
|
declare const AppFormNoAsFieldList: Array<ExtraAppFieldsItemViewsValues | AppFormItemTypesValues>;
|
|
452
455
|
declare const AppFormFieldOnlyInView: "CODEHTML"[];
|
|
453
456
|
declare const AppFormNonPrimaryList: (AppFormItemTypesValues | ExtraAppFieldsItemViewsValues)[];
|
|
@@ -707,8 +710,9 @@ type MapCreateState = Loading & {
|
|
|
707
710
|
type MapCreateRootState = {
|
|
708
711
|
mapCreate: MapCreateState;
|
|
709
712
|
};
|
|
713
|
+
type JLandMap = ArticleWithExtensions<Articles<'raw-list', 'jlandmap'>, ['licenses']>;
|
|
710
714
|
type JLandMapFront = JLandMap & {
|
|
711
|
-
urlToJland?: string;
|
|
715
|
+
urlToJland?: string | undefined;
|
|
712
716
|
};
|
|
713
717
|
type JLandMapListState = {
|
|
714
718
|
maps: Array<JLandMapFront>;
|
|
@@ -728,7 +732,7 @@ type JLandRootState = {
|
|
|
728
732
|
};
|
|
729
733
|
|
|
730
734
|
type MagicPadSliceRootState = Loading & {
|
|
731
|
-
pads:
|
|
735
|
+
pads: ArticlesView[];
|
|
732
736
|
query: string;
|
|
733
737
|
page: number;
|
|
734
738
|
tab: 'my' | 'all';
|
|
@@ -776,13 +780,13 @@ type AdminLogsRootState = {
|
|
|
776
780
|
};
|
|
777
781
|
|
|
778
782
|
type ExtraBotGlobalState = Loading;
|
|
779
|
-
type ExtraBotListAllState = PagingState$1<
|
|
780
|
-
type ExtraBotListMinesState = PagingState$1<
|
|
783
|
+
type ExtraBotListAllState = PagingState$1<jExtraBotView>;
|
|
784
|
+
type ExtraBotListMinesState = PagingState$1<jExtraBotView>;
|
|
781
785
|
type ExtraBotFormModalState = {
|
|
782
786
|
open: boolean;
|
|
783
787
|
mode: 'create' | 'edit';
|
|
784
788
|
type: 'all' | 'mines';
|
|
785
|
-
extraBot?:
|
|
789
|
+
extraBot?: jExtraBotView | undefined;
|
|
786
790
|
};
|
|
787
791
|
type ExtraBotState = {
|
|
788
792
|
global: ExtraBotGlobalState;
|
|
@@ -816,7 +820,7 @@ type CommentRootState = {
|
|
|
816
820
|
};
|
|
817
821
|
type CommentsList = {
|
|
818
822
|
idArticle: number;
|
|
819
|
-
list: Array<CommentWithExtensions<
|
|
823
|
+
list: Array<CommentWithExtensions<FormatComments<'raw-list'>, ['actions']> & {
|
|
820
824
|
pending?: boolean;
|
|
821
825
|
}>;
|
|
822
826
|
};
|
|
@@ -1007,8 +1011,8 @@ declare const AdminLogs: {
|
|
|
1007
1011
|
level: number;
|
|
1008
1012
|
pseudo: string;
|
|
1009
1013
|
idUser: number;
|
|
1010
|
-
action: string;
|
|
1011
1014
|
ip: string;
|
|
1015
|
+
action: string;
|
|
1012
1016
|
extended?: string | undefined;
|
|
1013
1017
|
}>, jamespot_user_api.ListQueryParameters, {
|
|
1014
1018
|
dispatch: AppDispatch;
|
|
@@ -1084,7 +1088,7 @@ declare const AdminLogs: {
|
|
|
1084
1088
|
start: string;
|
|
1085
1089
|
end: string;
|
|
1086
1090
|
};
|
|
1087
|
-
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | undefined;
|
|
1091
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
1088
1092
|
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
1089
1093
|
or?: boolean | undefined;
|
|
1090
1094
|
isNull?: boolean | undefined;
|
|
@@ -1107,7 +1111,7 @@ declare const AdminLogs: {
|
|
|
1107
1111
|
start: string;
|
|
1108
1112
|
end: string;
|
|
1109
1113
|
};
|
|
1110
|
-
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | undefined;
|
|
1114
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
1111
1115
|
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
1112
1116
|
or?: boolean | undefined;
|
|
1113
1117
|
isNull?: boolean | undefined;
|
|
@@ -1130,7 +1134,7 @@ declare const AdminLogs: {
|
|
|
1130
1134
|
start: string;
|
|
1131
1135
|
end: string;
|
|
1132
1136
|
};
|
|
1133
|
-
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | undefined;
|
|
1137
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
1134
1138
|
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
1135
1139
|
or?: boolean | undefined;
|
|
1136
1140
|
isNull?: boolean | undefined;
|
|
@@ -1563,8 +1567,8 @@ declare const Bookmark: {
|
|
|
1563
1567
|
srcType: string;
|
|
1564
1568
|
targetId: number;
|
|
1565
1569
|
targetType: string | null;
|
|
1566
|
-
url?: string | null | undefined;
|
|
1567
1570
|
dateCreation?: string | undefined;
|
|
1571
|
+
url?: string | null | undefined;
|
|
1568
1572
|
dateModified?: string | null | undefined;
|
|
1569
1573
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1570
1574
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1583,8 +1587,8 @@ declare const Bookmark: {
|
|
|
1583
1587
|
srcType: string;
|
|
1584
1588
|
targetId: number;
|
|
1585
1589
|
targetType: string | null;
|
|
1586
|
-
url?: string | null | undefined;
|
|
1587
1590
|
dateCreation?: string | undefined;
|
|
1591
|
+
url?: string | null | undefined;
|
|
1588
1592
|
dateModified?: string | null | undefined;
|
|
1589
1593
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1590
1594
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1603,8 +1607,8 @@ declare const Bookmark: {
|
|
|
1603
1607
|
srcType: string;
|
|
1604
1608
|
targetId: number;
|
|
1605
1609
|
targetType: string | null;
|
|
1606
|
-
url?: string | null | undefined;
|
|
1607
1610
|
dateCreation?: string | undefined;
|
|
1611
|
+
url?: string | null | undefined;
|
|
1608
1612
|
dateModified?: string | null | undefined;
|
|
1609
1613
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1610
1614
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1623,8 +1627,8 @@ declare const Bookmark: {
|
|
|
1623
1627
|
srcType: string;
|
|
1624
1628
|
targetId: number;
|
|
1625
1629
|
targetType: string | null;
|
|
1626
|
-
url?: string | null | undefined;
|
|
1627
1630
|
dateCreation?: string | undefined;
|
|
1631
|
+
url?: string | null | undefined;
|
|
1628
1632
|
dateModified?: string | null | undefined;
|
|
1629
1633
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1630
1634
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1645,8 +1649,8 @@ declare const Bookmark: {
|
|
|
1645
1649
|
srcType: string;
|
|
1646
1650
|
targetId: number;
|
|
1647
1651
|
targetType: string | null;
|
|
1648
|
-
url?: string | null | undefined;
|
|
1649
1652
|
dateCreation?: string | undefined;
|
|
1653
|
+
url?: string | null | undefined;
|
|
1650
1654
|
dateModified?: string | null | undefined;
|
|
1651
1655
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1652
1656
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1679,8 +1683,8 @@ declare const Bookmark: {
|
|
|
1679
1683
|
srcType: string;
|
|
1680
1684
|
targetId: number;
|
|
1681
1685
|
targetType: string | null;
|
|
1682
|
-
url?: string | null | undefined;
|
|
1683
1686
|
dateCreation?: string | undefined;
|
|
1687
|
+
url?: string | null | undefined;
|
|
1684
1688
|
dateModified?: string | null | undefined;
|
|
1685
1689
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1686
1690
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1721,8 +1725,8 @@ declare const Bookmark: {
|
|
|
1721
1725
|
srcType: string;
|
|
1722
1726
|
targetId: number;
|
|
1723
1727
|
targetType: string | null;
|
|
1724
|
-
url?: string | null | undefined;
|
|
1725
1728
|
dateCreation?: string | undefined;
|
|
1729
|
+
url?: string | null | undefined;
|
|
1726
1730
|
dateModified?: string | null | undefined;
|
|
1727
1731
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1728
1732
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1784,8 +1788,8 @@ declare const Bookmark: {
|
|
|
1784
1788
|
srcType: string;
|
|
1785
1789
|
targetId: number;
|
|
1786
1790
|
targetType: string | null;
|
|
1787
|
-
url?: string | null | undefined;
|
|
1788
1791
|
dateCreation?: string | undefined;
|
|
1792
|
+
url?: string | null | undefined;
|
|
1789
1793
|
dateModified?: string | null | undefined;
|
|
1790
1794
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1791
1795
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1820,8 +1824,8 @@ declare const Bookmark: {
|
|
|
1820
1824
|
srcType: string;
|
|
1821
1825
|
targetId: number;
|
|
1822
1826
|
targetType: string | null;
|
|
1823
|
-
url?: string | null | undefined;
|
|
1824
1827
|
dateCreation?: string | undefined;
|
|
1828
|
+
url?: string | null | undefined;
|
|
1825
1829
|
dateModified?: string | null | undefined;
|
|
1826
1830
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1827
1831
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1858,8 +1862,8 @@ declare const Bookmark: {
|
|
|
1858
1862
|
srcType: string;
|
|
1859
1863
|
targetId: number;
|
|
1860
1864
|
targetType: string | null;
|
|
1861
|
-
url?: string | null | undefined;
|
|
1862
1865
|
dateCreation?: string | undefined;
|
|
1866
|
+
url?: string | null | undefined;
|
|
1863
1867
|
dateModified?: string | null | undefined;
|
|
1864
1868
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1865
1869
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1878,8 +1882,8 @@ declare const Bookmark: {
|
|
|
1878
1882
|
srcType: string;
|
|
1879
1883
|
targetId: number;
|
|
1880
1884
|
targetType: string | null;
|
|
1881
|
-
url?: string | null | undefined;
|
|
1882
1885
|
dateCreation?: string | undefined;
|
|
1886
|
+
url?: string | null | undefined;
|
|
1883
1887
|
dateModified?: string | null | undefined;
|
|
1884
1888
|
_src?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
1885
1889
|
_target?: jamespot_user_api.jObjectLittle | jamespot_user_api.jUserLittle | undefined;
|
|
@@ -1890,13 +1894,13 @@ declare const Bookmark: {
|
|
|
1890
1894
|
} | undefined;
|
|
1891
1895
|
};
|
|
1892
1896
|
getRTHandlers: (dispatch: AppDispatch) => ({
|
|
1893
|
-
namespace: "CUSTOM-ACTION";
|
|
1894
|
-
function: "update" | "add" | "remove";
|
|
1895
|
-
handler: (message: jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "update", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "add", {}, {}> | jamespot_user_api.RTMessageObject<"CUSTOM-ACTION", "remove", {}, {}>) => void;
|
|
1896
|
-
} | {
|
|
1897
1897
|
namespace: "BOOKMARKS";
|
|
1898
1898
|
function: "update" | "add" | "delete";
|
|
1899
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;
|
|
1900
1904
|
})[];
|
|
1901
1905
|
};
|
|
1902
1906
|
|
|
@@ -1971,9 +1975,20 @@ declare const Comment: {
|
|
|
1971
1975
|
_widgets?: jamespot_user_api.WidgetWrapperProps[] | undefined;
|
|
1972
1976
|
} & {
|
|
1973
1977
|
_extend: Pick<{
|
|
1978
|
+
licenses: {
|
|
1979
|
+
id: number;
|
|
1980
|
+
status: number;
|
|
1981
|
+
uri: string;
|
|
1982
|
+
dateCreation: string;
|
|
1983
|
+
kind: string;
|
|
1984
|
+
idFeature: number;
|
|
1985
|
+
contentId: number;
|
|
1986
|
+
contentType: string;
|
|
1987
|
+
}[];
|
|
1974
1988
|
socialEventRecord: {
|
|
1975
|
-
|
|
1989
|
+
subscribers: jamespot_user_api.jUserLittle[];
|
|
1976
1990
|
subscribersTotal: number;
|
|
1991
|
+
userResponseStatus: 0 | 1 | "unknown" | "available" | "onSpot" | "visio" | "unavailable";
|
|
1977
1992
|
subscribeAction: {
|
|
1978
1993
|
type: string;
|
|
1979
1994
|
class: string;
|
|
@@ -1992,24 +2007,57 @@ declare const Comment: {
|
|
|
1992
2007
|
total: number;
|
|
1993
2008
|
} | undefined;
|
|
1994
2009
|
};
|
|
1995
|
-
subscribers: jamespot_user_api.jUserLittle[];
|
|
1996
2010
|
isVisio?: boolean | undefined;
|
|
1997
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
|
+
};
|
|
1998
2058
|
search: never;
|
|
1999
2059
|
bookmark: never;
|
|
2000
2060
|
contact: never;
|
|
2001
|
-
quizFieldDefinitions: never;
|
|
2002
|
-
quizResponseRecord: never;
|
|
2003
|
-
surveyDateRecord: never;
|
|
2004
|
-
actions?: {
|
|
2005
|
-
type: string;
|
|
2006
|
-
targetId: number;
|
|
2007
|
-
targetType: string;
|
|
2008
|
-
label: string;
|
|
2009
|
-
icon: string | null;
|
|
2010
|
-
isActive?: boolean | undefined;
|
|
2011
|
-
count?: number | undefined;
|
|
2012
|
-
}[] | undefined;
|
|
2013
2061
|
comments?: {
|
|
2014
2062
|
id: number;
|
|
2015
2063
|
type: string;
|
|
@@ -2160,12 +2208,22 @@ declare const Comment: {
|
|
|
2160
2208
|
mimetype: string;
|
|
2161
2209
|
path?: string | undefined;
|
|
2162
2210
|
}[] | undefined;
|
|
2163
|
-
|
|
2211
|
+
actions?: {
|
|
2212
|
+
type: string;
|
|
2213
|
+
targetId: number;
|
|
2214
|
+
targetType: string;
|
|
2215
|
+
label: string;
|
|
2216
|
+
icon: string | null;
|
|
2217
|
+
isActive?: boolean | undefined;
|
|
2218
|
+
count?: number | undefined;
|
|
2219
|
+
}[] | undefined;
|
|
2164
2220
|
licensesExtrabot?: {
|
|
2165
2221
|
active: boolean;
|
|
2166
2222
|
monthRequestsMax: number;
|
|
2167
2223
|
monthRequestsHit: number;
|
|
2168
2224
|
} | undefined;
|
|
2225
|
+
messenger?: jamespot_user_api.jMessengerGroupLittle | null | undefined;
|
|
2226
|
+
filebank?: jamespot_user_api.jFolderLittle | null | undefined;
|
|
2169
2227
|
}, "actions">;
|
|
2170
2228
|
} & {
|
|
2171
2229
|
pending?: boolean;
|
|
@@ -2175,190 +2233,7 @@ declare const Comment: {
|
|
|
2175
2233
|
getCommentsLikeRTHandlers: (dispatch: AppDispatch, idComments: number[] | undefined, idArticle: number) => Array<jamespot_user_api.RTMessageHandler<"CUSTOM-ACTION", jamespot_user_api.Namespaces["CUSTOM-ACTION"]>>;
|
|
2176
2234
|
};
|
|
2177
2235
|
|
|
2178
|
-
declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
2179
|
-
id: number;
|
|
2180
|
-
type: string;
|
|
2181
|
-
uri: string;
|
|
2182
|
-
mainType: string;
|
|
2183
|
-
dateCreation: string;
|
|
2184
|
-
dateModified: string;
|
|
2185
|
-
title: string;
|
|
2186
|
-
_url: string;
|
|
2187
|
-
description: string;
|
|
2188
|
-
enabled: boolean;
|
|
2189
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
2190
|
-
title: string;
|
|
2191
|
-
_url: string;
|
|
2192
|
-
} & {
|
|
2193
|
-
[key: string]: string | number | null | undefined;
|
|
2194
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
2195
|
-
dateCreation: string;
|
|
2196
|
-
dateModified: string;
|
|
2197
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
2198
|
-
};
|
|
2199
|
-
_right: jamespot_user_api.Rights;
|
|
2200
|
-
_attachedFiles: {
|
|
2201
|
-
id: number;
|
|
2202
|
-
type: string;
|
|
2203
|
-
uri: string;
|
|
2204
|
-
mainType: string;
|
|
2205
|
-
dateCreation: string;
|
|
2206
|
-
dateModified: string | null;
|
|
2207
|
-
title: string;
|
|
2208
|
-
_url: string;
|
|
2209
|
-
size: number;
|
|
2210
|
-
mimetype: string;
|
|
2211
|
-
path?: string | undefined;
|
|
2212
|
-
}[];
|
|
2213
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
2214
|
-
context: string;
|
|
2215
|
-
disclaimer: string;
|
|
2216
|
-
prompt: string;
|
|
2217
|
-
trigger: "mentionOnly" | "matchComment";
|
|
2218
|
-
image?: {
|
|
2219
|
-
width: number;
|
|
2220
|
-
height: number;
|
|
2221
|
-
} | undefined;
|
|
2222
|
-
avatar?: {
|
|
2223
|
-
id: number;
|
|
2224
|
-
type: string;
|
|
2225
|
-
uri: string;
|
|
2226
|
-
mainType: string;
|
|
2227
|
-
dateCreation: string;
|
|
2228
|
-
dateModified: string | null;
|
|
2229
|
-
title: string;
|
|
2230
|
-
_url: string;
|
|
2231
|
-
size: number;
|
|
2232
|
-
mimetype: string;
|
|
2233
|
-
path?: string | undefined;
|
|
2234
|
-
} | undefined;
|
|
2235
|
-
moderators?: {
|
|
2236
|
-
id: string;
|
|
2237
|
-
name: string;
|
|
2238
|
-
type: string;
|
|
2239
|
-
class: string;
|
|
2240
|
-
uri: string;
|
|
2241
|
-
mainType: string;
|
|
2242
|
-
title: string;
|
|
2243
|
-
_url: string;
|
|
2244
|
-
label: string;
|
|
2245
|
-
Pseudo: string;
|
|
2246
|
-
shortUri: string;
|
|
2247
|
-
cssClass: string;
|
|
2248
|
-
cssColor: string;
|
|
2249
|
-
}[] | undefined;
|
|
2250
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
2251
|
-
layers?: string[] | undefined;
|
|
2252
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2253
|
-
layers?: string[] | undefined;
|
|
2254
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2255
|
-
layers?: string[] | undefined;
|
|
2256
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2257
|
-
layers?: string[] | undefined;
|
|
2258
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2259
|
-
layers?: string[] | undefined;
|
|
2260
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2261
|
-
layers?: string[] | undefined;
|
|
2262
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2263
|
-
layers?: string[] | undefined;
|
|
2264
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2265
|
-
layers?: string[] | undefined;
|
|
2266
|
-
} & jamespot_user_api.WidgetType<{
|
|
2267
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2268
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2269
|
-
css?: Record<string, string> | undefined;
|
|
2270
|
-
edit?: boolean | undefined;
|
|
2271
|
-
}>) | ({
|
|
2272
|
-
layers?: string[] | undefined;
|
|
2273
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2274
|
-
layers?: string[] | undefined;
|
|
2275
|
-
} & {
|
|
2276
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2277
|
-
uniqid: string;
|
|
2278
|
-
content: {
|
|
2279
|
-
limit?: number | boolean | undefined;
|
|
2280
|
-
uri?: string | undefined;
|
|
2281
|
-
tableColumnsData?: {
|
|
2282
|
-
name?: string | undefined;
|
|
2283
|
-
label?: string | undefined;
|
|
2284
|
-
isVisible?: boolean | undefined;
|
|
2285
|
-
textEllipsis?: boolean | undefined;
|
|
2286
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2287
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2288
|
-
}[] | undefined;
|
|
2289
|
-
tableHeadColor?: string | undefined;
|
|
2290
|
-
tableHeadTextColor?: string | undefined;
|
|
2291
|
-
tableHeadIconColor?: string | undefined;
|
|
2292
|
-
tableRowColor?: string | undefined;
|
|
2293
|
-
tableRowTextColor?: string | undefined;
|
|
2294
|
-
tableBorderRadius?: number | undefined;
|
|
2295
|
-
tableSizedColumns?: boolean | undefined;
|
|
2296
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
2297
|
-
};
|
|
2298
|
-
}) | ({
|
|
2299
|
-
layers?: string[] | undefined;
|
|
2300
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2301
|
-
layers?: string[] | undefined;
|
|
2302
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2303
|
-
layers?: string[] | undefined;
|
|
2304
|
-
} & jamespot_user_api.WidgetType<{
|
|
2305
|
-
calEventsLimit?: boolean | undefined;
|
|
2306
|
-
calEventsLimitValue?: number | undefined;
|
|
2307
|
-
calEventsPromptStatus?: string | undefined;
|
|
2308
|
-
}>) | ({
|
|
2309
|
-
layers?: string[] | undefined;
|
|
2310
|
-
} & jamespot_user_api.WidgetType<{
|
|
2311
|
-
contactLimit?: boolean | undefined;
|
|
2312
|
-
contactLimitValue?: number | undefined;
|
|
2313
|
-
contactPromptStatus?: string | undefined;
|
|
2314
|
-
}>) | ({
|
|
2315
|
-
layers?: string[] | undefined;
|
|
2316
|
-
} & jamespot_user_api.WidgetType<{
|
|
2317
|
-
emailsLimit?: boolean | undefined;
|
|
2318
|
-
emailsLimitValue?: number | undefined;
|
|
2319
|
-
emailsPromptStatus?: string | undefined;
|
|
2320
|
-
}>) | ({
|
|
2321
|
-
layers?: string[] | undefined;
|
|
2322
|
-
} & jamespot_user_api.WidgetType<{
|
|
2323
|
-
url?: string | undefined;
|
|
2324
|
-
}>)>[] | undefined;
|
|
2325
|
-
tags?: {
|
|
2326
|
-
id: string;
|
|
2327
|
-
name: string;
|
|
2328
|
-
type: string;
|
|
2329
|
-
class: string;
|
|
2330
|
-
uri: string;
|
|
2331
|
-
mainType: string;
|
|
2332
|
-
title: string;
|
|
2333
|
-
label: string;
|
|
2334
|
-
shortUri: string;
|
|
2335
|
-
cssClass: string;
|
|
2336
|
-
cssColor: string;
|
|
2337
|
-
}[] | undefined;
|
|
2338
|
-
processContext?: null | undefined;
|
|
2339
|
-
_transientCtx?: null | undefined;
|
|
2340
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
2341
|
-
groups?: {
|
|
2342
|
-
id: string;
|
|
2343
|
-
name: string;
|
|
2344
|
-
type: string;
|
|
2345
|
-
class: string;
|
|
2346
|
-
uri: string;
|
|
2347
|
-
mainType: string;
|
|
2348
|
-
title: string;
|
|
2349
|
-
label: string;
|
|
2350
|
-
shortUri: string;
|
|
2351
|
-
cssClass: string;
|
|
2352
|
-
cssColor: string;
|
|
2353
|
-
idspot: string;
|
|
2354
|
-
}[] | undefined;
|
|
2355
|
-
matchThreshold?: number | undefined;
|
|
2356
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
2357
|
-
webhookMethod?: string | undefined;
|
|
2358
|
-
webhookUrl?: string | undefined;
|
|
2359
|
-
webhookKey?: string | undefined;
|
|
2360
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
2361
|
-
}>, void, {
|
|
2236
|
+
declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
|
|
2362
2237
|
dispatch: AppDispatch;
|
|
2363
2238
|
state: RootState$1;
|
|
2364
2239
|
extra: {
|
|
@@ -2373,190 +2248,7 @@ declare const fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
|
2373
2248
|
fulfilledMeta?: unknown;
|
|
2374
2249
|
rejectedMeta?: unknown;
|
|
2375
2250
|
}>;
|
|
2376
|
-
declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
2377
|
-
id: number;
|
|
2378
|
-
type: string;
|
|
2379
|
-
uri: string;
|
|
2380
|
-
mainType: string;
|
|
2381
|
-
dateCreation: string;
|
|
2382
|
-
dateModified: string;
|
|
2383
|
-
title: string;
|
|
2384
|
-
_url: string;
|
|
2385
|
-
description: string;
|
|
2386
|
-
enabled: boolean;
|
|
2387
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
2388
|
-
title: string;
|
|
2389
|
-
_url: string;
|
|
2390
|
-
} & {
|
|
2391
|
-
[key: string]: string | number | null | undefined;
|
|
2392
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
2393
|
-
dateCreation: string;
|
|
2394
|
-
dateModified: string;
|
|
2395
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
2396
|
-
};
|
|
2397
|
-
_right: jamespot_user_api.Rights;
|
|
2398
|
-
_attachedFiles: {
|
|
2399
|
-
id: number;
|
|
2400
|
-
type: string;
|
|
2401
|
-
uri: string;
|
|
2402
|
-
mainType: string;
|
|
2403
|
-
dateCreation: string;
|
|
2404
|
-
dateModified: string | null;
|
|
2405
|
-
title: string;
|
|
2406
|
-
_url: string;
|
|
2407
|
-
size: number;
|
|
2408
|
-
mimetype: string;
|
|
2409
|
-
path?: string | undefined;
|
|
2410
|
-
}[];
|
|
2411
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
2412
|
-
context: string;
|
|
2413
|
-
disclaimer: string;
|
|
2414
|
-
prompt: string;
|
|
2415
|
-
trigger: "mentionOnly" | "matchComment";
|
|
2416
|
-
image?: {
|
|
2417
|
-
width: number;
|
|
2418
|
-
height: number;
|
|
2419
|
-
} | undefined;
|
|
2420
|
-
avatar?: {
|
|
2421
|
-
id: number;
|
|
2422
|
-
type: string;
|
|
2423
|
-
uri: string;
|
|
2424
|
-
mainType: string;
|
|
2425
|
-
dateCreation: string;
|
|
2426
|
-
dateModified: string | null;
|
|
2427
|
-
title: string;
|
|
2428
|
-
_url: string;
|
|
2429
|
-
size: number;
|
|
2430
|
-
mimetype: string;
|
|
2431
|
-
path?: string | undefined;
|
|
2432
|
-
} | undefined;
|
|
2433
|
-
moderators?: {
|
|
2434
|
-
id: string;
|
|
2435
|
-
name: string;
|
|
2436
|
-
type: string;
|
|
2437
|
-
class: string;
|
|
2438
|
-
uri: string;
|
|
2439
|
-
mainType: string;
|
|
2440
|
-
title: string;
|
|
2441
|
-
_url: string;
|
|
2442
|
-
label: string;
|
|
2443
|
-
Pseudo: string;
|
|
2444
|
-
shortUri: string;
|
|
2445
|
-
cssClass: string;
|
|
2446
|
-
cssColor: string;
|
|
2447
|
-
}[] | undefined;
|
|
2448
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
2449
|
-
layers?: string[] | undefined;
|
|
2450
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2451
|
-
layers?: string[] | undefined;
|
|
2452
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2453
|
-
layers?: string[] | undefined;
|
|
2454
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2455
|
-
layers?: string[] | undefined;
|
|
2456
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2457
|
-
layers?: string[] | undefined;
|
|
2458
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2459
|
-
layers?: string[] | undefined;
|
|
2460
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2461
|
-
layers?: string[] | undefined;
|
|
2462
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2463
|
-
layers?: string[] | undefined;
|
|
2464
|
-
} & jamespot_user_api.WidgetType<{
|
|
2465
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2466
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2467
|
-
css?: Record<string, string> | undefined;
|
|
2468
|
-
edit?: boolean | undefined;
|
|
2469
|
-
}>) | ({
|
|
2470
|
-
layers?: string[] | undefined;
|
|
2471
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2472
|
-
layers?: string[] | undefined;
|
|
2473
|
-
} & {
|
|
2474
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2475
|
-
uniqid: string;
|
|
2476
|
-
content: {
|
|
2477
|
-
limit?: number | boolean | undefined;
|
|
2478
|
-
uri?: string | undefined;
|
|
2479
|
-
tableColumnsData?: {
|
|
2480
|
-
name?: string | undefined;
|
|
2481
|
-
label?: string | undefined;
|
|
2482
|
-
isVisible?: boolean | undefined;
|
|
2483
|
-
textEllipsis?: boolean | undefined;
|
|
2484
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2485
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2486
|
-
}[] | undefined;
|
|
2487
|
-
tableHeadColor?: string | undefined;
|
|
2488
|
-
tableHeadTextColor?: string | undefined;
|
|
2489
|
-
tableHeadIconColor?: string | undefined;
|
|
2490
|
-
tableRowColor?: string | undefined;
|
|
2491
|
-
tableRowTextColor?: string | undefined;
|
|
2492
|
-
tableBorderRadius?: number | undefined;
|
|
2493
|
-
tableSizedColumns?: boolean | undefined;
|
|
2494
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
2495
|
-
};
|
|
2496
|
-
}) | ({
|
|
2497
|
-
layers?: string[] | undefined;
|
|
2498
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2499
|
-
layers?: string[] | undefined;
|
|
2500
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2501
|
-
layers?: string[] | undefined;
|
|
2502
|
-
} & jamespot_user_api.WidgetType<{
|
|
2503
|
-
calEventsLimit?: boolean | undefined;
|
|
2504
|
-
calEventsLimitValue?: number | undefined;
|
|
2505
|
-
calEventsPromptStatus?: string | undefined;
|
|
2506
|
-
}>) | ({
|
|
2507
|
-
layers?: string[] | undefined;
|
|
2508
|
-
} & jamespot_user_api.WidgetType<{
|
|
2509
|
-
contactLimit?: boolean | undefined;
|
|
2510
|
-
contactLimitValue?: number | undefined;
|
|
2511
|
-
contactPromptStatus?: string | undefined;
|
|
2512
|
-
}>) | ({
|
|
2513
|
-
layers?: string[] | undefined;
|
|
2514
|
-
} & jamespot_user_api.WidgetType<{
|
|
2515
|
-
emailsLimit?: boolean | undefined;
|
|
2516
|
-
emailsLimitValue?: number | undefined;
|
|
2517
|
-
emailsPromptStatus?: string | undefined;
|
|
2518
|
-
}>) | ({
|
|
2519
|
-
layers?: string[] | undefined;
|
|
2520
|
-
} & jamespot_user_api.WidgetType<{
|
|
2521
|
-
url?: string | undefined;
|
|
2522
|
-
}>)>[] | undefined;
|
|
2523
|
-
tags?: {
|
|
2524
|
-
id: string;
|
|
2525
|
-
name: string;
|
|
2526
|
-
type: string;
|
|
2527
|
-
class: string;
|
|
2528
|
-
uri: string;
|
|
2529
|
-
mainType: string;
|
|
2530
|
-
title: string;
|
|
2531
|
-
label: string;
|
|
2532
|
-
shortUri: string;
|
|
2533
|
-
cssClass: string;
|
|
2534
|
-
cssColor: string;
|
|
2535
|
-
}[] | undefined;
|
|
2536
|
-
processContext?: null | undefined;
|
|
2537
|
-
_transientCtx?: null | undefined;
|
|
2538
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
2539
|
-
groups?: {
|
|
2540
|
-
id: string;
|
|
2541
|
-
name: string;
|
|
2542
|
-
type: string;
|
|
2543
|
-
class: string;
|
|
2544
|
-
uri: string;
|
|
2545
|
-
mainType: string;
|
|
2546
|
-
title: string;
|
|
2547
|
-
label: string;
|
|
2548
|
-
shortUri: string;
|
|
2549
|
-
cssClass: string;
|
|
2550
|
-
cssColor: string;
|
|
2551
|
-
idspot: string;
|
|
2552
|
-
}[] | undefined;
|
|
2553
|
-
matchThreshold?: number | undefined;
|
|
2554
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
2555
|
-
webhookMethod?: string | undefined;
|
|
2556
|
-
webhookUrl?: string | undefined;
|
|
2557
|
-
webhookKey?: string | undefined;
|
|
2558
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
2559
|
-
}>, void, {
|
|
2251
|
+
declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<jExtraBotView>, void, {
|
|
2560
2252
|
dispatch: AppDispatch;
|
|
2561
2253
|
state: RootState$1;
|
|
2562
2254
|
extra: {
|
|
@@ -2571,373 +2263,7 @@ declare const fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<
|
|
|
2571
2263
|
fulfilledMeta?: unknown;
|
|
2572
2264
|
rejectedMeta?: unknown;
|
|
2573
2265
|
}>;
|
|
2574
|
-
declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
|
|
2575
|
-
id: number;
|
|
2576
|
-
type: string;
|
|
2577
|
-
uri: string;
|
|
2578
|
-
mainType: string;
|
|
2579
|
-
dateCreation: string;
|
|
2580
|
-
dateModified: string;
|
|
2581
|
-
title: string;
|
|
2582
|
-
_url: string;
|
|
2583
|
-
description: string;
|
|
2584
|
-
enabled: boolean;
|
|
2585
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
2586
|
-
title: string;
|
|
2587
|
-
_url: string;
|
|
2588
|
-
} & {
|
|
2589
|
-
[key: string]: string | number | null | undefined;
|
|
2590
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
2591
|
-
dateCreation: string;
|
|
2592
|
-
dateModified: string;
|
|
2593
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
2594
|
-
};
|
|
2595
|
-
_right: jamespot_user_api.Rights;
|
|
2596
|
-
_attachedFiles: {
|
|
2597
|
-
id: number;
|
|
2598
|
-
type: string;
|
|
2599
|
-
uri: string;
|
|
2600
|
-
mainType: string;
|
|
2601
|
-
dateCreation: string;
|
|
2602
|
-
dateModified: string | null;
|
|
2603
|
-
title: string;
|
|
2604
|
-
_url: string;
|
|
2605
|
-
size: number;
|
|
2606
|
-
mimetype: string;
|
|
2607
|
-
path?: string | undefined;
|
|
2608
|
-
}[];
|
|
2609
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
2610
|
-
context: string;
|
|
2611
|
-
disclaimer: string;
|
|
2612
|
-
prompt: string;
|
|
2613
|
-
trigger: "mentionOnly" | "matchComment";
|
|
2614
|
-
image?: {
|
|
2615
|
-
width: number;
|
|
2616
|
-
height: number;
|
|
2617
|
-
} | undefined;
|
|
2618
|
-
avatar?: {
|
|
2619
|
-
id: number;
|
|
2620
|
-
type: string;
|
|
2621
|
-
uri: string;
|
|
2622
|
-
mainType: string;
|
|
2623
|
-
dateCreation: string;
|
|
2624
|
-
dateModified: string | null;
|
|
2625
|
-
title: string;
|
|
2626
|
-
_url: string;
|
|
2627
|
-
size: number;
|
|
2628
|
-
mimetype: string;
|
|
2629
|
-
path?: string | undefined;
|
|
2630
|
-
} | undefined;
|
|
2631
|
-
moderators?: {
|
|
2632
|
-
id: string;
|
|
2633
|
-
name: string;
|
|
2634
|
-
type: string;
|
|
2635
|
-
class: string;
|
|
2636
|
-
uri: string;
|
|
2637
|
-
mainType: string;
|
|
2638
|
-
title: string;
|
|
2639
|
-
_url: string;
|
|
2640
|
-
label: string;
|
|
2641
|
-
Pseudo: string;
|
|
2642
|
-
shortUri: string;
|
|
2643
|
-
cssClass: string;
|
|
2644
|
-
cssColor: string;
|
|
2645
|
-
}[] | undefined;
|
|
2646
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
2647
|
-
layers?: string[] | undefined;
|
|
2648
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2649
|
-
layers?: string[] | undefined;
|
|
2650
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2651
|
-
layers?: string[] | undefined;
|
|
2652
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2653
|
-
layers?: string[] | undefined;
|
|
2654
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2655
|
-
layers?: string[] | undefined;
|
|
2656
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2657
|
-
layers?: string[] | undefined;
|
|
2658
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2659
|
-
layers?: string[] | undefined;
|
|
2660
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2661
|
-
layers?: string[] | undefined;
|
|
2662
|
-
} & jamespot_user_api.WidgetType<{
|
|
2663
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2664
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2665
|
-
css?: Record<string, string> | undefined;
|
|
2666
|
-
edit?: boolean | undefined;
|
|
2667
|
-
}>) | ({
|
|
2668
|
-
layers?: string[] | undefined;
|
|
2669
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2670
|
-
layers?: string[] | undefined;
|
|
2671
|
-
} & {
|
|
2672
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2673
|
-
uniqid: string;
|
|
2674
|
-
content: {
|
|
2675
|
-
limit?: number | boolean | undefined;
|
|
2676
|
-
uri?: string | undefined;
|
|
2677
|
-
tableColumnsData?: {
|
|
2678
|
-
name?: string | undefined;
|
|
2679
|
-
label?: string | undefined;
|
|
2680
|
-
isVisible?: boolean | undefined;
|
|
2681
|
-
textEllipsis?: boolean | undefined;
|
|
2682
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2683
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2684
|
-
}[] | undefined;
|
|
2685
|
-
tableHeadColor?: string | undefined;
|
|
2686
|
-
tableHeadTextColor?: string | undefined;
|
|
2687
|
-
tableHeadIconColor?: string | undefined;
|
|
2688
|
-
tableRowColor?: string | undefined;
|
|
2689
|
-
tableRowTextColor?: string | undefined;
|
|
2690
|
-
tableBorderRadius?: number | undefined;
|
|
2691
|
-
tableSizedColumns?: boolean | undefined;
|
|
2692
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
2693
|
-
};
|
|
2694
|
-
}) | ({
|
|
2695
|
-
layers?: string[] | undefined;
|
|
2696
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2697
|
-
layers?: string[] | undefined;
|
|
2698
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2699
|
-
layers?: string[] | undefined;
|
|
2700
|
-
} & jamespot_user_api.WidgetType<{
|
|
2701
|
-
calEventsLimit?: boolean | undefined;
|
|
2702
|
-
calEventsLimitValue?: number | undefined;
|
|
2703
|
-
calEventsPromptStatus?: string | undefined;
|
|
2704
|
-
}>) | ({
|
|
2705
|
-
layers?: string[] | undefined;
|
|
2706
|
-
} & jamespot_user_api.WidgetType<{
|
|
2707
|
-
contactLimit?: boolean | undefined;
|
|
2708
|
-
contactLimitValue?: number | undefined;
|
|
2709
|
-
contactPromptStatus?: string | undefined;
|
|
2710
|
-
}>) | ({
|
|
2711
|
-
layers?: string[] | undefined;
|
|
2712
|
-
} & jamespot_user_api.WidgetType<{
|
|
2713
|
-
emailsLimit?: boolean | undefined;
|
|
2714
|
-
emailsLimitValue?: number | undefined;
|
|
2715
|
-
emailsPromptStatus?: string | undefined;
|
|
2716
|
-
}>) | ({
|
|
2717
|
-
layers?: string[] | undefined;
|
|
2718
|
-
} & jamespot_user_api.WidgetType<{
|
|
2719
|
-
url?: string | undefined;
|
|
2720
|
-
}>)>[] | undefined;
|
|
2721
|
-
tags?: {
|
|
2722
|
-
id: string;
|
|
2723
|
-
name: string;
|
|
2724
|
-
type: string;
|
|
2725
|
-
class: string;
|
|
2726
|
-
uri: string;
|
|
2727
|
-
mainType: string;
|
|
2728
|
-
title: string;
|
|
2729
|
-
label: string;
|
|
2730
|
-
shortUri: string;
|
|
2731
|
-
cssClass: string;
|
|
2732
|
-
cssColor: string;
|
|
2733
|
-
}[] | undefined;
|
|
2734
|
-
processContext?: null | undefined;
|
|
2735
|
-
_transientCtx?: null | undefined;
|
|
2736
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
2737
|
-
groups?: {
|
|
2738
|
-
id: string;
|
|
2739
|
-
name: string;
|
|
2740
|
-
type: string;
|
|
2741
|
-
class: string;
|
|
2742
|
-
uri: string;
|
|
2743
|
-
mainType: string;
|
|
2744
|
-
title: string;
|
|
2745
|
-
label: string;
|
|
2746
|
-
shortUri: string;
|
|
2747
|
-
cssClass: string;
|
|
2748
|
-
cssColor: string;
|
|
2749
|
-
idspot: string;
|
|
2750
|
-
}[] | undefined;
|
|
2751
|
-
matchThreshold?: number | undefined;
|
|
2752
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
2753
|
-
webhookMethod?: string | undefined;
|
|
2754
|
-
webhookUrl?: string | undefined;
|
|
2755
|
-
webhookKey?: string | undefined;
|
|
2756
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
2757
|
-
}, {
|
|
2758
|
-
id: number;
|
|
2759
|
-
type: string;
|
|
2760
|
-
uri: string;
|
|
2761
|
-
mainType: string;
|
|
2762
|
-
dateCreation: string;
|
|
2763
|
-
dateModified: string;
|
|
2764
|
-
title: string;
|
|
2765
|
-
_url: string;
|
|
2766
|
-
description: string;
|
|
2767
|
-
enabled: boolean;
|
|
2768
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
2769
|
-
title: string;
|
|
2770
|
-
_url: string;
|
|
2771
|
-
} & {
|
|
2772
|
-
[key: string]: string | number | null | undefined;
|
|
2773
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
2774
|
-
dateCreation: string;
|
|
2775
|
-
dateModified: string;
|
|
2776
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
2777
|
-
};
|
|
2778
|
-
_right: jamespot_user_api.Rights;
|
|
2779
|
-
_attachedFiles: {
|
|
2780
|
-
id: number;
|
|
2781
|
-
type: string;
|
|
2782
|
-
uri: string;
|
|
2783
|
-
mainType: string;
|
|
2784
|
-
dateCreation: string;
|
|
2785
|
-
dateModified: string | null;
|
|
2786
|
-
title: string;
|
|
2787
|
-
_url: string;
|
|
2788
|
-
size: number;
|
|
2789
|
-
mimetype: string;
|
|
2790
|
-
path?: string | undefined;
|
|
2791
|
-
}[];
|
|
2792
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
2793
|
-
context: string;
|
|
2794
|
-
disclaimer: string;
|
|
2795
|
-
prompt: string;
|
|
2796
|
-
trigger: "mentionOnly" | "matchComment";
|
|
2797
|
-
image?: {
|
|
2798
|
-
width: number;
|
|
2799
|
-
height: number;
|
|
2800
|
-
} | undefined;
|
|
2801
|
-
avatar?: {
|
|
2802
|
-
id: number;
|
|
2803
|
-
type: string;
|
|
2804
|
-
uri: string;
|
|
2805
|
-
mainType: string;
|
|
2806
|
-
dateCreation: string;
|
|
2807
|
-
dateModified: string | null;
|
|
2808
|
-
title: string;
|
|
2809
|
-
_url: string;
|
|
2810
|
-
size: number;
|
|
2811
|
-
mimetype: string;
|
|
2812
|
-
path?: string | undefined;
|
|
2813
|
-
} | undefined;
|
|
2814
|
-
moderators?: {
|
|
2815
|
-
id: string;
|
|
2816
|
-
name: string;
|
|
2817
|
-
type: string;
|
|
2818
|
-
class: string;
|
|
2819
|
-
uri: string;
|
|
2820
|
-
mainType: string;
|
|
2821
|
-
title: string;
|
|
2822
|
-
_url: string;
|
|
2823
|
-
label: string;
|
|
2824
|
-
Pseudo: string;
|
|
2825
|
-
shortUri: string;
|
|
2826
|
-
cssClass: string;
|
|
2827
|
-
cssColor: string;
|
|
2828
|
-
}[] | undefined;
|
|
2829
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
2830
|
-
layers?: string[] | undefined;
|
|
2831
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
2832
|
-
layers?: string[] | undefined;
|
|
2833
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
2834
|
-
layers?: string[] | undefined;
|
|
2835
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
2836
|
-
layers?: string[] | undefined;
|
|
2837
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
2838
|
-
layers?: string[] | undefined;
|
|
2839
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
2840
|
-
layers?: string[] | undefined;
|
|
2841
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
2842
|
-
layers?: string[] | undefined;
|
|
2843
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
2844
|
-
layers?: string[] | undefined;
|
|
2845
|
-
} & jamespot_user_api.WidgetType<{
|
|
2846
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
2847
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
2848
|
-
css?: Record<string, string> | undefined;
|
|
2849
|
-
edit?: boolean | undefined;
|
|
2850
|
-
}>) | ({
|
|
2851
|
-
layers?: string[] | undefined;
|
|
2852
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
2853
|
-
layers?: string[] | undefined;
|
|
2854
|
-
} & {
|
|
2855
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
2856
|
-
uniqid: string;
|
|
2857
|
-
content: {
|
|
2858
|
-
limit?: number | boolean | undefined;
|
|
2859
|
-
uri?: string | undefined;
|
|
2860
|
-
tableColumnsData?: {
|
|
2861
|
-
name?: string | undefined;
|
|
2862
|
-
label?: string | undefined;
|
|
2863
|
-
isVisible?: boolean | undefined;
|
|
2864
|
-
textEllipsis?: boolean | undefined;
|
|
2865
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
2866
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
2867
|
-
}[] | undefined;
|
|
2868
|
-
tableHeadColor?: string | undefined;
|
|
2869
|
-
tableHeadTextColor?: string | undefined;
|
|
2870
|
-
tableHeadIconColor?: string | undefined;
|
|
2871
|
-
tableRowColor?: string | undefined;
|
|
2872
|
-
tableRowTextColor?: string | undefined;
|
|
2873
|
-
tableBorderRadius?: number | undefined;
|
|
2874
|
-
tableSizedColumns?: boolean | undefined;
|
|
2875
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
2876
|
-
};
|
|
2877
|
-
}) | ({
|
|
2878
|
-
layers?: string[] | undefined;
|
|
2879
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
2880
|
-
layers?: string[] | undefined;
|
|
2881
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
2882
|
-
layers?: string[] | undefined;
|
|
2883
|
-
} & jamespot_user_api.WidgetType<{
|
|
2884
|
-
calEventsLimit?: boolean | undefined;
|
|
2885
|
-
calEventsLimitValue?: number | undefined;
|
|
2886
|
-
calEventsPromptStatus?: string | undefined;
|
|
2887
|
-
}>) | ({
|
|
2888
|
-
layers?: string[] | undefined;
|
|
2889
|
-
} & jamespot_user_api.WidgetType<{
|
|
2890
|
-
contactLimit?: boolean | undefined;
|
|
2891
|
-
contactLimitValue?: number | undefined;
|
|
2892
|
-
contactPromptStatus?: string | undefined;
|
|
2893
|
-
}>) | ({
|
|
2894
|
-
layers?: string[] | undefined;
|
|
2895
|
-
} & jamespot_user_api.WidgetType<{
|
|
2896
|
-
emailsLimit?: boolean | undefined;
|
|
2897
|
-
emailsLimitValue?: number | undefined;
|
|
2898
|
-
emailsPromptStatus?: string | undefined;
|
|
2899
|
-
}>) | ({
|
|
2900
|
-
layers?: string[] | undefined;
|
|
2901
|
-
} & jamespot_user_api.WidgetType<{
|
|
2902
|
-
url?: string | undefined;
|
|
2903
|
-
}>)>[] | undefined;
|
|
2904
|
-
tags?: {
|
|
2905
|
-
id: string;
|
|
2906
|
-
name: string;
|
|
2907
|
-
type: string;
|
|
2908
|
-
class: string;
|
|
2909
|
-
uri: string;
|
|
2910
|
-
mainType: string;
|
|
2911
|
-
title: string;
|
|
2912
|
-
label: string;
|
|
2913
|
-
shortUri: string;
|
|
2914
|
-
cssClass: string;
|
|
2915
|
-
cssColor: string;
|
|
2916
|
-
}[] | undefined;
|
|
2917
|
-
processContext?: null | undefined;
|
|
2918
|
-
_transientCtx?: null | undefined;
|
|
2919
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
2920
|
-
groups?: {
|
|
2921
|
-
id: string;
|
|
2922
|
-
name: string;
|
|
2923
|
-
type: string;
|
|
2924
|
-
class: string;
|
|
2925
|
-
uri: string;
|
|
2926
|
-
mainType: string;
|
|
2927
|
-
title: string;
|
|
2928
|
-
label: string;
|
|
2929
|
-
shortUri: string;
|
|
2930
|
-
cssClass: string;
|
|
2931
|
-
cssColor: string;
|
|
2932
|
-
idspot: string;
|
|
2933
|
-
}[] | undefined;
|
|
2934
|
-
matchThreshold?: number | undefined;
|
|
2935
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
2936
|
-
webhookMethod?: string | undefined;
|
|
2937
|
-
webhookUrl?: string | undefined;
|
|
2938
|
-
webhookKey?: string | undefined;
|
|
2939
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
2940
|
-
}, {
|
|
2266
|
+
declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<jExtraBotView, jExtraBotView, {
|
|
2941
2267
|
dispatch: AppDispatch;
|
|
2942
2268
|
state: RootState$1;
|
|
2943
2269
|
extra: {
|
|
@@ -2953,192 +2279,9 @@ declare const toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
|
|
|
2953
2279
|
rejectedMeta?: unknown;
|
|
2954
2280
|
}>;
|
|
2955
2281
|
type PayloadSave = {
|
|
2956
|
-
extraBot: Omit<
|
|
2282
|
+
extraBot: Omit<jExtraBotView, 'image' | '_user'>;
|
|
2957
2283
|
};
|
|
2958
|
-
declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<{
|
|
2959
|
-
id: number;
|
|
2960
|
-
type: string;
|
|
2961
|
-
uri: string;
|
|
2962
|
-
mainType: string;
|
|
2963
|
-
dateCreation: string;
|
|
2964
|
-
dateModified: string;
|
|
2965
|
-
title: string;
|
|
2966
|
-
_url: string;
|
|
2967
|
-
description: string;
|
|
2968
|
-
enabled: boolean;
|
|
2969
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
2970
|
-
title: string;
|
|
2971
|
-
_url: string;
|
|
2972
|
-
} & {
|
|
2973
|
-
[key: string]: string | number | null | undefined;
|
|
2974
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
2975
|
-
dateCreation: string;
|
|
2976
|
-
dateModified: string;
|
|
2977
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
2978
|
-
};
|
|
2979
|
-
_right: jamespot_user_api.Rights;
|
|
2980
|
-
_attachedFiles: {
|
|
2981
|
-
id: number;
|
|
2982
|
-
type: string;
|
|
2983
|
-
uri: string;
|
|
2984
|
-
mainType: string;
|
|
2985
|
-
dateCreation: string;
|
|
2986
|
-
dateModified: string | null;
|
|
2987
|
-
title: string;
|
|
2988
|
-
_url: string;
|
|
2989
|
-
size: number;
|
|
2990
|
-
mimetype: string;
|
|
2991
|
-
path?: string | undefined;
|
|
2992
|
-
}[];
|
|
2993
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
2994
|
-
context: string;
|
|
2995
|
-
disclaimer: string;
|
|
2996
|
-
prompt: string;
|
|
2997
|
-
trigger: "mentionOnly" | "matchComment";
|
|
2998
|
-
image?: {
|
|
2999
|
-
width: number;
|
|
3000
|
-
height: number;
|
|
3001
|
-
} | undefined;
|
|
3002
|
-
avatar?: {
|
|
3003
|
-
id: number;
|
|
3004
|
-
type: string;
|
|
3005
|
-
uri: string;
|
|
3006
|
-
mainType: string;
|
|
3007
|
-
dateCreation: string;
|
|
3008
|
-
dateModified: string | null;
|
|
3009
|
-
title: string;
|
|
3010
|
-
_url: string;
|
|
3011
|
-
size: number;
|
|
3012
|
-
mimetype: string;
|
|
3013
|
-
path?: string | undefined;
|
|
3014
|
-
} | undefined;
|
|
3015
|
-
moderators?: {
|
|
3016
|
-
id: string;
|
|
3017
|
-
name: string;
|
|
3018
|
-
type: string;
|
|
3019
|
-
class: string;
|
|
3020
|
-
uri: string;
|
|
3021
|
-
mainType: string;
|
|
3022
|
-
title: string;
|
|
3023
|
-
_url: string;
|
|
3024
|
-
label: string;
|
|
3025
|
-
Pseudo: string;
|
|
3026
|
-
shortUri: string;
|
|
3027
|
-
cssClass: string;
|
|
3028
|
-
cssColor: string;
|
|
3029
|
-
}[] | undefined;
|
|
3030
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
3031
|
-
layers?: string[] | undefined;
|
|
3032
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
3033
|
-
layers?: string[] | undefined;
|
|
3034
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
3035
|
-
layers?: string[] | undefined;
|
|
3036
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
3037
|
-
layers?: string[] | undefined;
|
|
3038
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
3039
|
-
layers?: string[] | undefined;
|
|
3040
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
3041
|
-
layers?: string[] | undefined;
|
|
3042
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
3043
|
-
layers?: string[] | undefined;
|
|
3044
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
3045
|
-
layers?: string[] | undefined;
|
|
3046
|
-
} & jamespot_user_api.WidgetType<{
|
|
3047
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
3048
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
3049
|
-
css?: Record<string, string> | undefined;
|
|
3050
|
-
edit?: boolean | undefined;
|
|
3051
|
-
}>) | ({
|
|
3052
|
-
layers?: string[] | undefined;
|
|
3053
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
3054
|
-
layers?: string[] | undefined;
|
|
3055
|
-
} & {
|
|
3056
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
3057
|
-
uniqid: string;
|
|
3058
|
-
content: {
|
|
3059
|
-
limit?: number | boolean | undefined;
|
|
3060
|
-
uri?: string | undefined;
|
|
3061
|
-
tableColumnsData?: {
|
|
3062
|
-
name?: string | undefined;
|
|
3063
|
-
label?: string | undefined;
|
|
3064
|
-
isVisible?: boolean | undefined;
|
|
3065
|
-
textEllipsis?: boolean | undefined;
|
|
3066
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
3067
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3068
|
-
}[] | undefined;
|
|
3069
|
-
tableHeadColor?: string | undefined;
|
|
3070
|
-
tableHeadTextColor?: string | undefined;
|
|
3071
|
-
tableHeadIconColor?: string | undefined;
|
|
3072
|
-
tableRowColor?: string | undefined;
|
|
3073
|
-
tableRowTextColor?: string | undefined;
|
|
3074
|
-
tableBorderRadius?: number | undefined;
|
|
3075
|
-
tableSizedColumns?: boolean | undefined;
|
|
3076
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
3077
|
-
};
|
|
3078
|
-
}) | ({
|
|
3079
|
-
layers?: string[] | undefined;
|
|
3080
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
3081
|
-
layers?: string[] | undefined;
|
|
3082
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
3083
|
-
layers?: string[] | undefined;
|
|
3084
|
-
} & jamespot_user_api.WidgetType<{
|
|
3085
|
-
calEventsLimit?: boolean | undefined;
|
|
3086
|
-
calEventsLimitValue?: number | undefined;
|
|
3087
|
-
calEventsPromptStatus?: string | undefined;
|
|
3088
|
-
}>) | ({
|
|
3089
|
-
layers?: string[] | undefined;
|
|
3090
|
-
} & jamespot_user_api.WidgetType<{
|
|
3091
|
-
contactLimit?: boolean | undefined;
|
|
3092
|
-
contactLimitValue?: number | undefined;
|
|
3093
|
-
contactPromptStatus?: string | undefined;
|
|
3094
|
-
}>) | ({
|
|
3095
|
-
layers?: string[] | undefined;
|
|
3096
|
-
} & jamespot_user_api.WidgetType<{
|
|
3097
|
-
emailsLimit?: boolean | undefined;
|
|
3098
|
-
emailsLimitValue?: number | undefined;
|
|
3099
|
-
emailsPromptStatus?: string | undefined;
|
|
3100
|
-
}>) | ({
|
|
3101
|
-
layers?: string[] | undefined;
|
|
3102
|
-
} & jamespot_user_api.WidgetType<{
|
|
3103
|
-
url?: string | undefined;
|
|
3104
|
-
}>)>[] | undefined;
|
|
3105
|
-
tags?: {
|
|
3106
|
-
id: string;
|
|
3107
|
-
name: string;
|
|
3108
|
-
type: string;
|
|
3109
|
-
class: string;
|
|
3110
|
-
uri: string;
|
|
3111
|
-
mainType: string;
|
|
3112
|
-
title: string;
|
|
3113
|
-
label: string;
|
|
3114
|
-
shortUri: string;
|
|
3115
|
-
cssClass: string;
|
|
3116
|
-
cssColor: string;
|
|
3117
|
-
}[] | undefined;
|
|
3118
|
-
processContext?: null | undefined;
|
|
3119
|
-
_transientCtx?: null | undefined;
|
|
3120
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
3121
|
-
groups?: {
|
|
3122
|
-
id: string;
|
|
3123
|
-
name: string;
|
|
3124
|
-
type: string;
|
|
3125
|
-
class: string;
|
|
3126
|
-
uri: string;
|
|
3127
|
-
mainType: string;
|
|
3128
|
-
title: string;
|
|
3129
|
-
label: string;
|
|
3130
|
-
shortUri: string;
|
|
3131
|
-
cssClass: string;
|
|
3132
|
-
cssColor: string;
|
|
3133
|
-
idspot: string;
|
|
3134
|
-
}[] | undefined;
|
|
3135
|
-
matchThreshold?: number | undefined;
|
|
3136
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
3137
|
-
webhookMethod?: string | undefined;
|
|
3138
|
-
webhookUrl?: string | undefined;
|
|
3139
|
-
webhookKey?: string | undefined;
|
|
3140
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
3141
|
-
}, PayloadSave, {
|
|
2284
|
+
declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<jExtraBotView, PayloadSave, {
|
|
3142
2285
|
dispatch: AppDispatch;
|
|
3143
2286
|
state: RootState$1;
|
|
3144
2287
|
extra: {
|
|
@@ -3153,7 +2296,7 @@ declare const saveExtraBot: _reduxjs_toolkit.AsyncThunk<{
|
|
|
3153
2296
|
fulfilledMeta?: unknown;
|
|
3154
2297
|
rejectedMeta?: unknown;
|
|
3155
2298
|
}>;
|
|
3156
|
-
declare const updateListBotProperty: <K extends keyof
|
|
2299
|
+
declare const updateListBotProperty: <K extends keyof jExtraBotView>(state: ExtraBotState, extraBotUri: string, property: K, value: jExtraBotView[K]) => void;
|
|
3157
2300
|
declare const extraBotSlice: _reduxjs_toolkit.Slice<ExtraBotState, {
|
|
3158
2301
|
setListAllOrder: (state: Draft<S>, action: PayloadAction<Orders>) => void;
|
|
3159
2302
|
setListAllFilter: (state: Draft<S>, action: PayloadAction<Filters>) => void;
|
|
@@ -3194,7 +2337,7 @@ declare const ExtraBot: {
|
|
|
3194
2337
|
start: string;
|
|
3195
2338
|
end: string;
|
|
3196
2339
|
};
|
|
3197
|
-
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | undefined;
|
|
2340
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
3198
2341
|
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
3199
2342
|
or?: boolean | undefined;
|
|
3200
2343
|
isNull?: boolean | undefined;
|
|
@@ -3217,7 +2360,7 @@ declare const ExtraBot: {
|
|
|
3217
2360
|
start: string;
|
|
3218
2361
|
end: string;
|
|
3219
2362
|
};
|
|
3220
|
-
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | undefined;
|
|
2363
|
+
operator?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "not in" | "match" | "equal" | undefined;
|
|
3221
2364
|
method?: "link" | "<" | ">" | "<=" | ">=" | "!=" | "<>" | "like" | "between" | "is" | "is not" | "in" | "match" | "equal" | "+" | "-" | undefined;
|
|
3222
2365
|
or?: boolean | undefined;
|
|
3223
2366
|
isNull?: boolean | undefined;
|
|
@@ -3226,769 +2369,22 @@ declare const ExtraBot: {
|
|
|
3226
2369
|
setListMinesPage: _reduxjs_toolkit.ActionCreatorWithPayload<number, "extraBot/setListMinesPage">;
|
|
3227
2370
|
openFormModal: _reduxjs_toolkit.ActionCreatorWithPayload<ExtraBotFormModalOpen, "extraBot/openFormModal">;
|
|
3228
2371
|
closeFormModal: _reduxjs_toolkit.ActionCreatorWithoutPayload<"extraBot/closeFormModal">;
|
|
3229
|
-
fetchExtraBotListAll: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
dateCreation: string;
|
|
3235
|
-
dateModified: string;
|
|
3236
|
-
title: string;
|
|
3237
|
-
_url: string;
|
|
3238
|
-
description: string;
|
|
3239
|
-
enabled: boolean;
|
|
3240
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
3241
|
-
title: string;
|
|
3242
|
-
_url: string;
|
|
3243
|
-
} & {
|
|
3244
|
-
[key: string]: string | number | null | undefined;
|
|
3245
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
3246
|
-
dateCreation: string;
|
|
3247
|
-
dateModified: string;
|
|
3248
|
-
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;
|
|
3249
2377
|
};
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
size: number;
|
|
3261
|
-
mimetype: string;
|
|
3262
|
-
path?: string | undefined;
|
|
3263
|
-
}[];
|
|
3264
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
3265
|
-
context: string;
|
|
3266
|
-
disclaimer: string;
|
|
3267
|
-
prompt: string;
|
|
3268
|
-
trigger: "mentionOnly" | "matchComment";
|
|
3269
|
-
image?: {
|
|
3270
|
-
width: number;
|
|
3271
|
-
height: number;
|
|
3272
|
-
} | undefined;
|
|
3273
|
-
avatar?: {
|
|
3274
|
-
id: number;
|
|
3275
|
-
type: string;
|
|
3276
|
-
uri: string;
|
|
3277
|
-
mainType: string;
|
|
3278
|
-
dateCreation: string;
|
|
3279
|
-
dateModified: string | null;
|
|
3280
|
-
title: string;
|
|
3281
|
-
_url: string;
|
|
3282
|
-
size: number;
|
|
3283
|
-
mimetype: string;
|
|
3284
|
-
path?: string | undefined;
|
|
3285
|
-
} | undefined;
|
|
3286
|
-
moderators?: {
|
|
3287
|
-
id: string;
|
|
3288
|
-
name: string;
|
|
3289
|
-
type: string;
|
|
3290
|
-
class: string;
|
|
3291
|
-
uri: string;
|
|
3292
|
-
mainType: string;
|
|
3293
|
-
title: string;
|
|
3294
|
-
_url: string;
|
|
3295
|
-
label: string;
|
|
3296
|
-
Pseudo: string;
|
|
3297
|
-
shortUri: string;
|
|
3298
|
-
cssClass: string;
|
|
3299
|
-
cssColor: string;
|
|
3300
|
-
}[] | undefined;
|
|
3301
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
3302
|
-
layers?: string[] | undefined;
|
|
3303
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
3304
|
-
layers?: string[] | undefined;
|
|
3305
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
3306
|
-
layers?: string[] | undefined;
|
|
3307
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
3308
|
-
layers?: string[] | undefined;
|
|
3309
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
3310
|
-
layers?: string[] | undefined;
|
|
3311
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
3312
|
-
layers?: string[] | undefined;
|
|
3313
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
3314
|
-
layers?: string[] | undefined;
|
|
3315
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
3316
|
-
layers?: string[] | undefined;
|
|
3317
|
-
} & jamespot_user_api.WidgetType<{
|
|
3318
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
3319
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
3320
|
-
css?: Record<string, string> | undefined;
|
|
3321
|
-
edit?: boolean | undefined;
|
|
3322
|
-
}>) | ({
|
|
3323
|
-
layers?: string[] | undefined;
|
|
3324
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
3325
|
-
layers?: string[] | undefined;
|
|
3326
|
-
} & {
|
|
3327
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
3328
|
-
uniqid: string;
|
|
3329
|
-
content: {
|
|
3330
|
-
limit?: number | boolean | undefined;
|
|
3331
|
-
uri?: string | undefined;
|
|
3332
|
-
tableColumnsData?: {
|
|
3333
|
-
name?: string | undefined;
|
|
3334
|
-
label?: string | undefined;
|
|
3335
|
-
isVisible?: boolean | undefined;
|
|
3336
|
-
textEllipsis?: boolean | undefined;
|
|
3337
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
3338
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3339
|
-
}[] | undefined;
|
|
3340
|
-
tableHeadColor?: string | undefined;
|
|
3341
|
-
tableHeadTextColor?: string | undefined;
|
|
3342
|
-
tableHeadIconColor?: string | undefined;
|
|
3343
|
-
tableRowColor?: string | undefined;
|
|
3344
|
-
tableRowTextColor?: string | undefined;
|
|
3345
|
-
tableBorderRadius?: number | undefined;
|
|
3346
|
-
tableSizedColumns?: boolean | undefined;
|
|
3347
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
3348
|
-
};
|
|
3349
|
-
}) | ({
|
|
3350
|
-
layers?: string[] | undefined;
|
|
3351
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
3352
|
-
layers?: string[] | undefined;
|
|
3353
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
3354
|
-
layers?: string[] | undefined;
|
|
3355
|
-
} & jamespot_user_api.WidgetType<{
|
|
3356
|
-
calEventsLimit?: boolean | undefined;
|
|
3357
|
-
calEventsLimitValue?: number | undefined;
|
|
3358
|
-
calEventsPromptStatus?: string | undefined;
|
|
3359
|
-
}>) | ({
|
|
3360
|
-
layers?: string[] | undefined;
|
|
3361
|
-
} & jamespot_user_api.WidgetType<{
|
|
3362
|
-
contactLimit?: boolean | undefined;
|
|
3363
|
-
contactLimitValue?: number | undefined;
|
|
3364
|
-
contactPromptStatus?: string | undefined;
|
|
3365
|
-
}>) | ({
|
|
3366
|
-
layers?: string[] | undefined;
|
|
3367
|
-
} & jamespot_user_api.WidgetType<{
|
|
3368
|
-
emailsLimit?: boolean | undefined;
|
|
3369
|
-
emailsLimitValue?: number | undefined;
|
|
3370
|
-
emailsPromptStatus?: string | undefined;
|
|
3371
|
-
}>) | ({
|
|
3372
|
-
layers?: string[] | undefined;
|
|
3373
|
-
} & jamespot_user_api.WidgetType<{
|
|
3374
|
-
url?: string | undefined;
|
|
3375
|
-
}>)>[] | undefined;
|
|
3376
|
-
tags?: {
|
|
3377
|
-
id: string;
|
|
3378
|
-
name: string;
|
|
3379
|
-
type: string;
|
|
3380
|
-
class: string;
|
|
3381
|
-
uri: string;
|
|
3382
|
-
mainType: string;
|
|
3383
|
-
title: string;
|
|
3384
|
-
label: string;
|
|
3385
|
-
shortUri: string;
|
|
3386
|
-
cssClass: string;
|
|
3387
|
-
cssColor: string;
|
|
3388
|
-
}[] | undefined;
|
|
3389
|
-
processContext?: null | undefined;
|
|
3390
|
-
_transientCtx?: null | undefined;
|
|
3391
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
3392
|
-
groups?: {
|
|
3393
|
-
id: string;
|
|
3394
|
-
name: string;
|
|
3395
|
-
type: string;
|
|
3396
|
-
class: string;
|
|
3397
|
-
uri: string;
|
|
3398
|
-
mainType: string;
|
|
3399
|
-
title: string;
|
|
3400
|
-
label: string;
|
|
3401
|
-
shortUri: string;
|
|
3402
|
-
cssClass: string;
|
|
3403
|
-
cssColor: string;
|
|
3404
|
-
idspot: string;
|
|
3405
|
-
}[] | undefined;
|
|
3406
|
-
matchThreshold?: number | undefined;
|
|
3407
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
3408
|
-
webhookMethod?: string | undefined;
|
|
3409
|
-
webhookUrl?: string | undefined;
|
|
3410
|
-
webhookKey?: string | undefined;
|
|
3411
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
3412
|
-
}>, void, {
|
|
3413
|
-
dispatch: AppDispatch;
|
|
3414
|
-
state: RootState$1;
|
|
3415
|
-
extra: {
|
|
3416
|
-
jApi: jamespot_user_api.JamespotUserApi;
|
|
3417
|
-
};
|
|
3418
|
-
rejectValue: {
|
|
3419
|
-
error: number;
|
|
3420
|
-
errorMsg: string;
|
|
3421
|
-
};
|
|
3422
|
-
serializedErrorType?: unknown;
|
|
3423
|
-
pendingMeta?: unknown;
|
|
3424
|
-
fulfilledMeta?: unknown;
|
|
3425
|
-
rejectedMeta?: unknown;
|
|
3426
|
-
}>;
|
|
3427
|
-
fetchExtraBotListMines: _reduxjs_toolkit.AsyncThunk<PagingResults<{
|
|
3428
|
-
id: number;
|
|
3429
|
-
type: string;
|
|
3430
|
-
uri: string;
|
|
3431
|
-
mainType: string;
|
|
3432
|
-
dateCreation: string;
|
|
3433
|
-
dateModified: string;
|
|
3434
|
-
title: string;
|
|
3435
|
-
_url: string;
|
|
3436
|
-
description: string;
|
|
3437
|
-
enabled: boolean;
|
|
3438
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
3439
|
-
title: string;
|
|
3440
|
-
_url: string;
|
|
3441
|
-
} & {
|
|
3442
|
-
[key: string]: string | number | null | undefined;
|
|
3443
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
3444
|
-
dateCreation: string;
|
|
3445
|
-
dateModified: string;
|
|
3446
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
3447
|
-
};
|
|
3448
|
-
_right: jamespot_user_api.Rights;
|
|
3449
|
-
_attachedFiles: {
|
|
3450
|
-
id: number;
|
|
3451
|
-
type: string;
|
|
3452
|
-
uri: string;
|
|
3453
|
-
mainType: string;
|
|
3454
|
-
dateCreation: string;
|
|
3455
|
-
dateModified: string | null;
|
|
3456
|
-
title: string;
|
|
3457
|
-
_url: string;
|
|
3458
|
-
size: number;
|
|
3459
|
-
mimetype: string;
|
|
3460
|
-
path?: string | undefined;
|
|
3461
|
-
}[];
|
|
3462
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
3463
|
-
context: string;
|
|
3464
|
-
disclaimer: string;
|
|
3465
|
-
prompt: string;
|
|
3466
|
-
trigger: "mentionOnly" | "matchComment";
|
|
3467
|
-
image?: {
|
|
3468
|
-
width: number;
|
|
3469
|
-
height: number;
|
|
3470
|
-
} | undefined;
|
|
3471
|
-
avatar?: {
|
|
3472
|
-
id: number;
|
|
3473
|
-
type: string;
|
|
3474
|
-
uri: string;
|
|
3475
|
-
mainType: string;
|
|
3476
|
-
dateCreation: string;
|
|
3477
|
-
dateModified: string | null;
|
|
3478
|
-
title: string;
|
|
3479
|
-
_url: string;
|
|
3480
|
-
size: number;
|
|
3481
|
-
mimetype: string;
|
|
3482
|
-
path?: string | undefined;
|
|
3483
|
-
} | undefined;
|
|
3484
|
-
moderators?: {
|
|
3485
|
-
id: string;
|
|
3486
|
-
name: string;
|
|
3487
|
-
type: string;
|
|
3488
|
-
class: string;
|
|
3489
|
-
uri: string;
|
|
3490
|
-
mainType: string;
|
|
3491
|
-
title: string;
|
|
3492
|
-
_url: string;
|
|
3493
|
-
label: string;
|
|
3494
|
-
Pseudo: string;
|
|
3495
|
-
shortUri: string;
|
|
3496
|
-
cssClass: string;
|
|
3497
|
-
cssColor: string;
|
|
3498
|
-
}[] | undefined;
|
|
3499
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
3500
|
-
layers?: string[] | undefined;
|
|
3501
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
3502
|
-
layers?: string[] | undefined;
|
|
3503
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
3504
|
-
layers?: string[] | undefined;
|
|
3505
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
3506
|
-
layers?: string[] | undefined;
|
|
3507
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
3508
|
-
layers?: string[] | undefined;
|
|
3509
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
3510
|
-
layers?: string[] | undefined;
|
|
3511
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
3512
|
-
layers?: string[] | undefined;
|
|
3513
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
3514
|
-
layers?: string[] | undefined;
|
|
3515
|
-
} & jamespot_user_api.WidgetType<{
|
|
3516
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
3517
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
3518
|
-
css?: Record<string, string> | undefined;
|
|
3519
|
-
edit?: boolean | undefined;
|
|
3520
|
-
}>) | ({
|
|
3521
|
-
layers?: string[] | undefined;
|
|
3522
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
3523
|
-
layers?: string[] | undefined;
|
|
3524
|
-
} & {
|
|
3525
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
3526
|
-
uniqid: string;
|
|
3527
|
-
content: {
|
|
3528
|
-
limit?: number | boolean | undefined;
|
|
3529
|
-
uri?: string | undefined;
|
|
3530
|
-
tableColumnsData?: {
|
|
3531
|
-
name?: string | undefined;
|
|
3532
|
-
label?: string | undefined;
|
|
3533
|
-
isVisible?: boolean | undefined;
|
|
3534
|
-
textEllipsis?: boolean | undefined;
|
|
3535
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
3536
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3537
|
-
}[] | undefined;
|
|
3538
|
-
tableHeadColor?: string | undefined;
|
|
3539
|
-
tableHeadTextColor?: string | undefined;
|
|
3540
|
-
tableHeadIconColor?: string | undefined;
|
|
3541
|
-
tableRowColor?: string | undefined;
|
|
3542
|
-
tableRowTextColor?: string | undefined;
|
|
3543
|
-
tableBorderRadius?: number | undefined;
|
|
3544
|
-
tableSizedColumns?: boolean | undefined;
|
|
3545
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
3546
|
-
};
|
|
3547
|
-
}) | ({
|
|
3548
|
-
layers?: string[] | undefined;
|
|
3549
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
3550
|
-
layers?: string[] | undefined;
|
|
3551
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
3552
|
-
layers?: string[] | undefined;
|
|
3553
|
-
} & jamespot_user_api.WidgetType<{
|
|
3554
|
-
calEventsLimit?: boolean | undefined;
|
|
3555
|
-
calEventsLimitValue?: number | undefined;
|
|
3556
|
-
calEventsPromptStatus?: string | undefined;
|
|
3557
|
-
}>) | ({
|
|
3558
|
-
layers?: string[] | undefined;
|
|
3559
|
-
} & jamespot_user_api.WidgetType<{
|
|
3560
|
-
contactLimit?: boolean | undefined;
|
|
3561
|
-
contactLimitValue?: number | undefined;
|
|
3562
|
-
contactPromptStatus?: string | undefined;
|
|
3563
|
-
}>) | ({
|
|
3564
|
-
layers?: string[] | undefined;
|
|
3565
|
-
} & jamespot_user_api.WidgetType<{
|
|
3566
|
-
emailsLimit?: boolean | undefined;
|
|
3567
|
-
emailsLimitValue?: number | undefined;
|
|
3568
|
-
emailsPromptStatus?: string | undefined;
|
|
3569
|
-
}>) | ({
|
|
3570
|
-
layers?: string[] | undefined;
|
|
3571
|
-
} & jamespot_user_api.WidgetType<{
|
|
3572
|
-
url?: string | undefined;
|
|
3573
|
-
}>)>[] | undefined;
|
|
3574
|
-
tags?: {
|
|
3575
|
-
id: string;
|
|
3576
|
-
name: string;
|
|
3577
|
-
type: string;
|
|
3578
|
-
class: string;
|
|
3579
|
-
uri: string;
|
|
3580
|
-
mainType: string;
|
|
3581
|
-
title: string;
|
|
3582
|
-
label: string;
|
|
3583
|
-
shortUri: string;
|
|
3584
|
-
cssClass: string;
|
|
3585
|
-
cssColor: string;
|
|
3586
|
-
}[] | undefined;
|
|
3587
|
-
processContext?: null | undefined;
|
|
3588
|
-
_transientCtx?: null | undefined;
|
|
3589
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
3590
|
-
groups?: {
|
|
3591
|
-
id: string;
|
|
3592
|
-
name: string;
|
|
3593
|
-
type: string;
|
|
3594
|
-
class: string;
|
|
3595
|
-
uri: string;
|
|
3596
|
-
mainType: string;
|
|
3597
|
-
title: string;
|
|
3598
|
-
label: string;
|
|
3599
|
-
shortUri: string;
|
|
3600
|
-
cssClass: string;
|
|
3601
|
-
cssColor: string;
|
|
3602
|
-
idspot: string;
|
|
3603
|
-
}[] | undefined;
|
|
3604
|
-
matchThreshold?: number | undefined;
|
|
3605
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
3606
|
-
webhookMethod?: string | undefined;
|
|
3607
|
-
webhookUrl?: string | undefined;
|
|
3608
|
-
webhookKey?: string | undefined;
|
|
3609
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
3610
|
-
}>, void, {
|
|
3611
|
-
dispatch: AppDispatch;
|
|
3612
|
-
state: RootState$1;
|
|
3613
|
-
extra: {
|
|
3614
|
-
jApi: jamespot_user_api.JamespotUserApi;
|
|
3615
|
-
};
|
|
3616
|
-
rejectValue: {
|
|
3617
|
-
error: number;
|
|
3618
|
-
errorMsg: string;
|
|
3619
|
-
};
|
|
3620
|
-
serializedErrorType?: unknown;
|
|
3621
|
-
pendingMeta?: unknown;
|
|
3622
|
-
fulfilledMeta?: unknown;
|
|
3623
|
-
rejectedMeta?: unknown;
|
|
3624
|
-
}>;
|
|
3625
|
-
toggleExtraBotActivation: _reduxjs_toolkit.AsyncThunk<{
|
|
3626
|
-
id: number;
|
|
3627
|
-
type: string;
|
|
3628
|
-
uri: string;
|
|
3629
|
-
mainType: string;
|
|
3630
|
-
dateCreation: string;
|
|
3631
|
-
dateModified: string;
|
|
3632
|
-
title: string;
|
|
3633
|
-
_url: string;
|
|
3634
|
-
description: string;
|
|
3635
|
-
enabled: boolean;
|
|
3636
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
3637
|
-
title: string;
|
|
3638
|
-
_url: string;
|
|
3639
|
-
} & {
|
|
3640
|
-
[key: string]: string | number | null | undefined;
|
|
3641
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
3642
|
-
dateCreation: string;
|
|
3643
|
-
dateModified: string;
|
|
3644
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
3645
|
-
};
|
|
3646
|
-
_right: jamespot_user_api.Rights;
|
|
3647
|
-
_attachedFiles: {
|
|
3648
|
-
id: number;
|
|
3649
|
-
type: string;
|
|
3650
|
-
uri: string;
|
|
3651
|
-
mainType: string;
|
|
3652
|
-
dateCreation: string;
|
|
3653
|
-
dateModified: string | null;
|
|
3654
|
-
title: string;
|
|
3655
|
-
_url: string;
|
|
3656
|
-
size: number;
|
|
3657
|
-
mimetype: string;
|
|
3658
|
-
path?: string | undefined;
|
|
3659
|
-
}[];
|
|
3660
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
3661
|
-
context: string;
|
|
3662
|
-
disclaimer: string;
|
|
3663
|
-
prompt: string;
|
|
3664
|
-
trigger: "mentionOnly" | "matchComment";
|
|
3665
|
-
image?: {
|
|
3666
|
-
width: number;
|
|
3667
|
-
height: number;
|
|
3668
|
-
} | undefined;
|
|
3669
|
-
avatar?: {
|
|
3670
|
-
id: number;
|
|
3671
|
-
type: string;
|
|
3672
|
-
uri: string;
|
|
3673
|
-
mainType: string;
|
|
3674
|
-
dateCreation: string;
|
|
3675
|
-
dateModified: string | null;
|
|
3676
|
-
title: string;
|
|
3677
|
-
_url: string;
|
|
3678
|
-
size: number;
|
|
3679
|
-
mimetype: string;
|
|
3680
|
-
path?: string | undefined;
|
|
3681
|
-
} | undefined;
|
|
3682
|
-
moderators?: {
|
|
3683
|
-
id: string;
|
|
3684
|
-
name: string;
|
|
3685
|
-
type: string;
|
|
3686
|
-
class: string;
|
|
3687
|
-
uri: string;
|
|
3688
|
-
mainType: string;
|
|
3689
|
-
title: string;
|
|
3690
|
-
_url: string;
|
|
3691
|
-
label: string;
|
|
3692
|
-
Pseudo: string;
|
|
3693
|
-
shortUri: string;
|
|
3694
|
-
cssClass: string;
|
|
3695
|
-
cssColor: string;
|
|
3696
|
-
}[] | undefined;
|
|
3697
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
3698
|
-
layers?: string[] | undefined;
|
|
3699
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
3700
|
-
layers?: string[] | undefined;
|
|
3701
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
3702
|
-
layers?: string[] | undefined;
|
|
3703
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
3704
|
-
layers?: string[] | undefined;
|
|
3705
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
3706
|
-
layers?: string[] | undefined;
|
|
3707
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
3708
|
-
layers?: string[] | undefined;
|
|
3709
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
3710
|
-
layers?: string[] | undefined;
|
|
3711
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
3712
|
-
layers?: string[] | undefined;
|
|
3713
|
-
} & jamespot_user_api.WidgetType<{
|
|
3714
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
3715
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
3716
|
-
css?: Record<string, string> | undefined;
|
|
3717
|
-
edit?: boolean | undefined;
|
|
3718
|
-
}>) | ({
|
|
3719
|
-
layers?: string[] | undefined;
|
|
3720
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
3721
|
-
layers?: string[] | undefined;
|
|
3722
|
-
} & {
|
|
3723
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
3724
|
-
uniqid: string;
|
|
3725
|
-
content: {
|
|
3726
|
-
limit?: number | boolean | undefined;
|
|
3727
|
-
uri?: string | undefined;
|
|
3728
|
-
tableColumnsData?: {
|
|
3729
|
-
name?: string | undefined;
|
|
3730
|
-
label?: string | undefined;
|
|
3731
|
-
isVisible?: boolean | undefined;
|
|
3732
|
-
textEllipsis?: boolean | undefined;
|
|
3733
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
3734
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3735
|
-
}[] | undefined;
|
|
3736
|
-
tableHeadColor?: string | undefined;
|
|
3737
|
-
tableHeadTextColor?: string | undefined;
|
|
3738
|
-
tableHeadIconColor?: string | undefined;
|
|
3739
|
-
tableRowColor?: string | undefined;
|
|
3740
|
-
tableRowTextColor?: string | undefined;
|
|
3741
|
-
tableBorderRadius?: number | undefined;
|
|
3742
|
-
tableSizedColumns?: boolean | undefined;
|
|
3743
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
3744
|
-
};
|
|
3745
|
-
}) | ({
|
|
3746
|
-
layers?: string[] | undefined;
|
|
3747
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
3748
|
-
layers?: string[] | undefined;
|
|
3749
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
3750
|
-
layers?: string[] | undefined;
|
|
3751
|
-
} & jamespot_user_api.WidgetType<{
|
|
3752
|
-
calEventsLimit?: boolean | undefined;
|
|
3753
|
-
calEventsLimitValue?: number | undefined;
|
|
3754
|
-
calEventsPromptStatus?: string | undefined;
|
|
3755
|
-
}>) | ({
|
|
3756
|
-
layers?: string[] | undefined;
|
|
3757
|
-
} & jamespot_user_api.WidgetType<{
|
|
3758
|
-
contactLimit?: boolean | undefined;
|
|
3759
|
-
contactLimitValue?: number | undefined;
|
|
3760
|
-
contactPromptStatus?: string | undefined;
|
|
3761
|
-
}>) | ({
|
|
3762
|
-
layers?: string[] | undefined;
|
|
3763
|
-
} & jamespot_user_api.WidgetType<{
|
|
3764
|
-
emailsLimit?: boolean | undefined;
|
|
3765
|
-
emailsLimitValue?: number | undefined;
|
|
3766
|
-
emailsPromptStatus?: string | undefined;
|
|
3767
|
-
}>) | ({
|
|
3768
|
-
layers?: string[] | undefined;
|
|
3769
|
-
} & jamespot_user_api.WidgetType<{
|
|
3770
|
-
url?: string | undefined;
|
|
3771
|
-
}>)>[] | undefined;
|
|
3772
|
-
tags?: {
|
|
3773
|
-
id: string;
|
|
3774
|
-
name: string;
|
|
3775
|
-
type: string;
|
|
3776
|
-
class: string;
|
|
3777
|
-
uri: string;
|
|
3778
|
-
mainType: string;
|
|
3779
|
-
title: string;
|
|
3780
|
-
label: string;
|
|
3781
|
-
shortUri: string;
|
|
3782
|
-
cssClass: string;
|
|
3783
|
-
cssColor: string;
|
|
3784
|
-
}[] | undefined;
|
|
3785
|
-
processContext?: null | undefined;
|
|
3786
|
-
_transientCtx?: null | undefined;
|
|
3787
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
3788
|
-
groups?: {
|
|
3789
|
-
id: string;
|
|
3790
|
-
name: string;
|
|
3791
|
-
type: string;
|
|
3792
|
-
class: string;
|
|
3793
|
-
uri: string;
|
|
3794
|
-
mainType: string;
|
|
3795
|
-
title: string;
|
|
3796
|
-
label: string;
|
|
3797
|
-
shortUri: string;
|
|
3798
|
-
cssClass: string;
|
|
3799
|
-
cssColor: string;
|
|
3800
|
-
idspot: string;
|
|
3801
|
-
}[] | undefined;
|
|
3802
|
-
matchThreshold?: number | undefined;
|
|
3803
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
3804
|
-
webhookMethod?: string | undefined;
|
|
3805
|
-
webhookUrl?: string | undefined;
|
|
3806
|
-
webhookKey?: string | undefined;
|
|
3807
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
3808
|
-
}, {
|
|
3809
|
-
id: number;
|
|
3810
|
-
type: string;
|
|
3811
|
-
uri: string;
|
|
3812
|
-
mainType: string;
|
|
3813
|
-
dateCreation: string;
|
|
3814
|
-
dateModified: string;
|
|
3815
|
-
title: string;
|
|
3816
|
-
_url: string;
|
|
3817
|
-
description: string;
|
|
3818
|
-
enabled: boolean;
|
|
3819
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
3820
|
-
title: string;
|
|
3821
|
-
_url: string;
|
|
3822
|
-
} & {
|
|
3823
|
-
[key: string]: string | number | null | undefined;
|
|
3824
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
3825
|
-
dateCreation: string;
|
|
3826
|
-
dateModified: string;
|
|
3827
|
-
variant?: typeof jamespot_user_api.UserVariant[keyof typeof jamespot_user_api.UserVariant] | undefined;
|
|
3828
|
-
};
|
|
3829
|
-
_right: jamespot_user_api.Rights;
|
|
3830
|
-
_attachedFiles: {
|
|
3831
|
-
id: number;
|
|
3832
|
-
type: string;
|
|
3833
|
-
uri: string;
|
|
3834
|
-
mainType: string;
|
|
3835
|
-
dateCreation: string;
|
|
3836
|
-
dateModified: string | null;
|
|
3837
|
-
title: string;
|
|
3838
|
-
_url: string;
|
|
3839
|
-
size: number;
|
|
3840
|
-
mimetype: string;
|
|
3841
|
-
path?: string | undefined;
|
|
3842
|
-
}[];
|
|
3843
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
3844
|
-
context: string;
|
|
3845
|
-
disclaimer: string;
|
|
3846
|
-
prompt: string;
|
|
3847
|
-
trigger: "mentionOnly" | "matchComment";
|
|
3848
|
-
image?: {
|
|
3849
|
-
width: number;
|
|
3850
|
-
height: number;
|
|
3851
|
-
} | undefined;
|
|
3852
|
-
avatar?: {
|
|
3853
|
-
id: number;
|
|
3854
|
-
type: string;
|
|
3855
|
-
uri: string;
|
|
3856
|
-
mainType: string;
|
|
3857
|
-
dateCreation: string;
|
|
3858
|
-
dateModified: string | null;
|
|
3859
|
-
title: string;
|
|
3860
|
-
_url: string;
|
|
3861
|
-
size: number;
|
|
3862
|
-
mimetype: string;
|
|
3863
|
-
path?: string | undefined;
|
|
3864
|
-
} | undefined;
|
|
3865
|
-
moderators?: {
|
|
3866
|
-
id: string;
|
|
3867
|
-
name: string;
|
|
3868
|
-
type: string;
|
|
3869
|
-
class: string;
|
|
3870
|
-
uri: string;
|
|
3871
|
-
mainType: string;
|
|
3872
|
-
title: string;
|
|
3873
|
-
_url: string;
|
|
3874
|
-
label: string;
|
|
3875
|
-
Pseudo: string;
|
|
3876
|
-
shortUri: string;
|
|
3877
|
-
cssClass: string;
|
|
3878
|
-
cssColor: string;
|
|
3879
|
-
}[] | undefined;
|
|
3880
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
3881
|
-
layers?: string[] | undefined;
|
|
3882
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
3883
|
-
layers?: string[] | undefined;
|
|
3884
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
3885
|
-
layers?: string[] | undefined;
|
|
3886
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
3887
|
-
layers?: string[] | undefined;
|
|
3888
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
3889
|
-
layers?: string[] | undefined;
|
|
3890
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
3891
|
-
layers?: string[] | undefined;
|
|
3892
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
3893
|
-
layers?: string[] | undefined;
|
|
3894
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
3895
|
-
layers?: string[] | undefined;
|
|
3896
|
-
} & jamespot_user_api.WidgetType<{
|
|
3897
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
3898
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
3899
|
-
css?: Record<string, string> | undefined;
|
|
3900
|
-
edit?: boolean | undefined;
|
|
3901
|
-
}>) | ({
|
|
3902
|
-
layers?: string[] | undefined;
|
|
3903
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
3904
|
-
layers?: string[] | undefined;
|
|
3905
|
-
} & {
|
|
3906
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
3907
|
-
uniqid: string;
|
|
3908
|
-
content: {
|
|
3909
|
-
limit?: number | boolean | undefined;
|
|
3910
|
-
uri?: string | undefined;
|
|
3911
|
-
tableColumnsData?: {
|
|
3912
|
-
name?: string | undefined;
|
|
3913
|
-
label?: string | undefined;
|
|
3914
|
-
isVisible?: boolean | undefined;
|
|
3915
|
-
textEllipsis?: boolean | undefined;
|
|
3916
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
3917
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
3918
|
-
}[] | undefined;
|
|
3919
|
-
tableHeadColor?: string | undefined;
|
|
3920
|
-
tableHeadTextColor?: string | undefined;
|
|
3921
|
-
tableHeadIconColor?: string | undefined;
|
|
3922
|
-
tableRowColor?: string | undefined;
|
|
3923
|
-
tableRowTextColor?: string | undefined;
|
|
3924
|
-
tableBorderRadius?: number | undefined;
|
|
3925
|
-
tableSizedColumns?: boolean | undefined;
|
|
3926
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
3927
|
-
};
|
|
3928
|
-
}) | ({
|
|
3929
|
-
layers?: string[] | undefined;
|
|
3930
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
3931
|
-
layers?: string[] | undefined;
|
|
3932
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
3933
|
-
layers?: string[] | undefined;
|
|
3934
|
-
} & jamespot_user_api.WidgetType<{
|
|
3935
|
-
calEventsLimit?: boolean | undefined;
|
|
3936
|
-
calEventsLimitValue?: number | undefined;
|
|
3937
|
-
calEventsPromptStatus?: string | undefined;
|
|
3938
|
-
}>) | ({
|
|
3939
|
-
layers?: string[] | undefined;
|
|
3940
|
-
} & jamespot_user_api.WidgetType<{
|
|
3941
|
-
contactLimit?: boolean | undefined;
|
|
3942
|
-
contactLimitValue?: number | undefined;
|
|
3943
|
-
contactPromptStatus?: string | undefined;
|
|
3944
|
-
}>) | ({
|
|
3945
|
-
layers?: string[] | undefined;
|
|
3946
|
-
} & jamespot_user_api.WidgetType<{
|
|
3947
|
-
emailsLimit?: boolean | undefined;
|
|
3948
|
-
emailsLimitValue?: number | undefined;
|
|
3949
|
-
emailsPromptStatus?: string | undefined;
|
|
3950
|
-
}>) | ({
|
|
3951
|
-
layers?: string[] | undefined;
|
|
3952
|
-
} & jamespot_user_api.WidgetType<{
|
|
3953
|
-
url?: string | undefined;
|
|
3954
|
-
}>)>[] | undefined;
|
|
3955
|
-
tags?: {
|
|
3956
|
-
id: string;
|
|
3957
|
-
name: string;
|
|
3958
|
-
type: string;
|
|
3959
|
-
class: string;
|
|
3960
|
-
uri: string;
|
|
3961
|
-
mainType: string;
|
|
3962
|
-
title: string;
|
|
3963
|
-
label: string;
|
|
3964
|
-
shortUri: string;
|
|
3965
|
-
cssClass: string;
|
|
3966
|
-
cssColor: string;
|
|
3967
|
-
}[] | undefined;
|
|
3968
|
-
processContext?: null | undefined;
|
|
3969
|
-
_transientCtx?: null | undefined;
|
|
3970
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
3971
|
-
groups?: {
|
|
3972
|
-
id: string;
|
|
3973
|
-
name: string;
|
|
3974
|
-
type: string;
|
|
3975
|
-
class: string;
|
|
3976
|
-
uri: string;
|
|
3977
|
-
mainType: string;
|
|
3978
|
-
title: string;
|
|
3979
|
-
label: string;
|
|
3980
|
-
shortUri: string;
|
|
3981
|
-
cssClass: string;
|
|
3982
|
-
cssColor: string;
|
|
3983
|
-
idspot: string;
|
|
3984
|
-
}[] | undefined;
|
|
3985
|
-
matchThreshold?: number | undefined;
|
|
3986
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
3987
|
-
webhookMethod?: string | undefined;
|
|
3988
|
-
webhookUrl?: string | undefined;
|
|
3989
|
-
webhookKey?: string | undefined;
|
|
3990
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
3991
|
-
}, {
|
|
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, {
|
|
3992
2388
|
dispatch: AppDispatch;
|
|
3993
2389
|
state: RootState$1;
|
|
3994
2390
|
extra: {
|
|
@@ -4003,190 +2399,22 @@ declare const ExtraBot: {
|
|
|
4003
2399
|
fulfilledMeta?: unknown;
|
|
4004
2400
|
rejectedMeta?: unknown;
|
|
4005
2401
|
}>;
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
dateCreation: string;
|
|
4012
|
-
dateModified: string;
|
|
4013
|
-
title: string;
|
|
4014
|
-
_url: string;
|
|
4015
|
-
description: string;
|
|
4016
|
-
enabled: boolean;
|
|
4017
|
-
_user: jamespot_user_api.jObjectBase & {
|
|
4018
|
-
title: string;
|
|
4019
|
-
_url: string;
|
|
4020
|
-
} & {
|
|
4021
|
-
[key: string]: string | number | null | undefined;
|
|
4022
|
-
level: typeof jamespot_user_api.UserLevel[keyof typeof jamespot_user_api.UserLevel];
|
|
4023
|
-
dateCreation: string;
|
|
4024
|
-
dateModified: string;
|
|
4025
|
-
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;
|
|
4026
2407
|
};
|
|
4027
|
-
|
|
4028
|
-
|
|
4029
|
-
|
|
4030
|
-
|
|
4031
|
-
|
|
4032
|
-
|
|
4033
|
-
|
|
4034
|
-
|
|
4035
|
-
|
|
4036
|
-
|
|
4037
|
-
size: number;
|
|
4038
|
-
mimetype: string;
|
|
4039
|
-
path?: string | undefined;
|
|
4040
|
-
}[];
|
|
4041
|
-
_audience: (jamespot_user_api_lib_src_types_user.jUserLittle | jamespot_user_api.jGroupLittle | jamespot_user_api.jFolderLittle)[];
|
|
4042
|
-
context: string;
|
|
4043
|
-
disclaimer: string;
|
|
4044
|
-
prompt: string;
|
|
4045
|
-
trigger: "mentionOnly" | "matchComment";
|
|
4046
|
-
image?: {
|
|
4047
|
-
width: number;
|
|
4048
|
-
height: number;
|
|
4049
|
-
} | undefined;
|
|
4050
|
-
avatar?: {
|
|
4051
|
-
id: number;
|
|
4052
|
-
type: string;
|
|
4053
|
-
uri: string;
|
|
4054
|
-
mainType: string;
|
|
4055
|
-
dateCreation: string;
|
|
4056
|
-
dateModified: string | null;
|
|
4057
|
-
title: string;
|
|
4058
|
-
_url: string;
|
|
4059
|
-
size: number;
|
|
4060
|
-
mimetype: string;
|
|
4061
|
-
path?: string | undefined;
|
|
4062
|
-
} | undefined;
|
|
4063
|
-
moderators?: {
|
|
4064
|
-
id: string;
|
|
4065
|
-
name: string;
|
|
4066
|
-
type: string;
|
|
4067
|
-
class: string;
|
|
4068
|
-
uri: string;
|
|
4069
|
-
mainType: string;
|
|
4070
|
-
title: string;
|
|
4071
|
-
_url: string;
|
|
4072
|
-
label: string;
|
|
4073
|
-
Pseudo: string;
|
|
4074
|
-
shortUri: string;
|
|
4075
|
-
cssClass: string;
|
|
4076
|
-
cssColor: string;
|
|
4077
|
-
}[] | undefined;
|
|
4078
|
-
articleWidgets?: jamespot_user_api.WidgetWrapperGeneric<({
|
|
4079
|
-
layers?: string[] | undefined;
|
|
4080
|
-
} & jamespot_user_api.WidgetArticleAttachmentType) | ({
|
|
4081
|
-
layers?: string[] | undefined;
|
|
4082
|
-
} & jamespot_user_api.WidgetArticleButtonType) | ({
|
|
4083
|
-
layers?: string[] | undefined;
|
|
4084
|
-
} & jamespot_user_api.WidgetArticleGalleryType) | ({
|
|
4085
|
-
layers?: string[] | undefined;
|
|
4086
|
-
} & jamespot_user_api.WidgetArticleImageType) | ({
|
|
4087
|
-
layers?: string[] | undefined;
|
|
4088
|
-
} & jamespot_user_api.WidgetArticleTitleType) | ({
|
|
4089
|
-
layers?: string[] | undefined;
|
|
4090
|
-
} & jamespot_user_api.WidgetArticleTextType) | ({
|
|
4091
|
-
layers?: string[] | undefined;
|
|
4092
|
-
} & jamespot_user_api.WidgetArticleSliderType) | ({
|
|
4093
|
-
layers?: string[] | undefined;
|
|
4094
|
-
} & jamespot_user_api.WidgetType<{
|
|
4095
|
-
widgets?: jamespot_user_api.WidgetBaseType[] | undefined;
|
|
4096
|
-
arr?: jamespot_user_api.WidgetCheckListContentArr[] | undefined;
|
|
4097
|
-
css?: Record<string, string> | undefined;
|
|
4098
|
-
edit?: boolean | undefined;
|
|
4099
|
-
}>) | ({
|
|
4100
|
-
layers?: string[] | undefined;
|
|
4101
|
-
} & jamespot_user_api.WidgetDatasourceTableType) | ({
|
|
4102
|
-
layers?: string[] | undefined;
|
|
4103
|
-
} & {
|
|
4104
|
-
name: jamespot_user_api.WidgetsName.ExcelDatasourceTable;
|
|
4105
|
-
uniqid: string;
|
|
4106
|
-
content: {
|
|
4107
|
-
limit?: number | boolean | undefined;
|
|
4108
|
-
uri?: string | undefined;
|
|
4109
|
-
tableColumnsData?: {
|
|
4110
|
-
name?: string | undefined;
|
|
4111
|
-
label?: string | undefined;
|
|
4112
|
-
isVisible?: boolean | undefined;
|
|
4113
|
-
textEllipsis?: boolean | undefined;
|
|
4114
|
-
dateFormat?: "date" | "time" | "date-time" | "date-time-sec" | "time-sec" | undefined;
|
|
4115
|
-
numberFormat?: "fr-FR" | "en-EN" | "filesize" | undefined;
|
|
4116
|
-
}[] | undefined;
|
|
4117
|
-
tableHeadColor?: string | undefined;
|
|
4118
|
-
tableHeadTextColor?: string | undefined;
|
|
4119
|
-
tableHeadIconColor?: string | undefined;
|
|
4120
|
-
tableRowColor?: string | undefined;
|
|
4121
|
-
tableRowTextColor?: string | undefined;
|
|
4122
|
-
tableBorderRadius?: number | undefined;
|
|
4123
|
-
tableSizedColumns?: boolean | undefined;
|
|
4124
|
-
tableSizedColumnsWidth?: number | undefined;
|
|
4125
|
-
};
|
|
4126
|
-
}) | ({
|
|
4127
|
-
layers?: string[] | undefined;
|
|
4128
|
-
} & jamespot_user_api.WidgetPresenceType) | ({
|
|
4129
|
-
layers?: string[] | undefined;
|
|
4130
|
-
} & jamespot_user_api.WidgetQuickSurveyType) | ({
|
|
4131
|
-
layers?: string[] | undefined;
|
|
4132
|
-
} & jamespot_user_api.WidgetType<{
|
|
4133
|
-
calEventsLimit?: boolean | undefined;
|
|
4134
|
-
calEventsLimitValue?: number | undefined;
|
|
4135
|
-
calEventsPromptStatus?: string | undefined;
|
|
4136
|
-
}>) | ({
|
|
4137
|
-
layers?: string[] | undefined;
|
|
4138
|
-
} & jamespot_user_api.WidgetType<{
|
|
4139
|
-
contactLimit?: boolean | undefined;
|
|
4140
|
-
contactLimitValue?: number | undefined;
|
|
4141
|
-
contactPromptStatus?: string | undefined;
|
|
4142
|
-
}>) | ({
|
|
4143
|
-
layers?: string[] | undefined;
|
|
4144
|
-
} & jamespot_user_api.WidgetType<{
|
|
4145
|
-
emailsLimit?: boolean | undefined;
|
|
4146
|
-
emailsLimitValue?: number | undefined;
|
|
4147
|
-
emailsPromptStatus?: string | undefined;
|
|
4148
|
-
}>) | ({
|
|
4149
|
-
layers?: string[] | undefined;
|
|
4150
|
-
} & jamespot_user_api.WidgetType<{
|
|
4151
|
-
url?: string | undefined;
|
|
4152
|
-
}>)>[] | undefined;
|
|
4153
|
-
tags?: {
|
|
4154
|
-
id: string;
|
|
4155
|
-
name: string;
|
|
4156
|
-
type: string;
|
|
4157
|
-
class: string;
|
|
4158
|
-
uri: string;
|
|
4159
|
-
mainType: string;
|
|
4160
|
-
title: string;
|
|
4161
|
-
label: string;
|
|
4162
|
-
shortUri: string;
|
|
4163
|
-
cssClass: string;
|
|
4164
|
-
cssColor: string;
|
|
4165
|
-
}[] | undefined;
|
|
4166
|
-
processContext?: null | undefined;
|
|
4167
|
-
_transientCtx?: null | undefined;
|
|
4168
|
-
uiObjectLink?: jamespot_user_api.jObjectLittle[] | undefined;
|
|
4169
|
-
groups?: {
|
|
4170
|
-
id: string;
|
|
4171
|
-
name: string;
|
|
4172
|
-
type: string;
|
|
4173
|
-
class: string;
|
|
4174
|
-
uri: string;
|
|
4175
|
-
mainType: string;
|
|
4176
|
-
title: string;
|
|
4177
|
-
label: string;
|
|
4178
|
-
shortUri: string;
|
|
4179
|
-
cssClass: string;
|
|
4180
|
-
cssColor: string;
|
|
4181
|
-
idspot: string;
|
|
4182
|
-
}[] | undefined;
|
|
4183
|
-
matchThreshold?: number | undefined;
|
|
4184
|
-
bot?: jamespot_user_api_lib_src_types_user.jUserLittle | undefined;
|
|
4185
|
-
webhookMethod?: string | undefined;
|
|
4186
|
-
webhookUrl?: string | undefined;
|
|
4187
|
-
webhookKey?: string | undefined;
|
|
4188
|
-
webhookAutomationOnly?: boolean | undefined;
|
|
4189
|
-
}, 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, {
|
|
4190
2418
|
dispatch: AppDispatch;
|
|
4191
2419
|
state: RootState$1;
|
|
4192
2420
|
extra: {
|
|
@@ -4218,7 +2446,7 @@ declare const Faq: {
|
|
|
4218
2446
|
};
|
|
4219
2447
|
actions: {
|
|
4220
2448
|
fetchFaqConfig: _reduxjs_toolkit.AsyncThunk<{
|
|
4221
|
-
_web: "" | "
|
|
2449
|
+
_web: "" | "1" | "0" | undefined;
|
|
4222
2450
|
appImage: string | {
|
|
4223
2451
|
image: {
|
|
4224
2452
|
id: string;
|
|
@@ -4229,7 +2457,7 @@ declare const Faq: {
|
|
|
4229
2457
|
access: {
|
|
4230
2458
|
createCategory: boolean;
|
|
4231
2459
|
};
|
|
4232
|
-
_displayComment: "" | "
|
|
2460
|
+
_displayComment: "" | "1" | "0" | undefined;
|
|
4233
2461
|
} | {
|
|
4234
2462
|
_web: string;
|
|
4235
2463
|
appImage?: never;
|
|
@@ -4350,8 +2578,8 @@ declare const Hook: {
|
|
|
4350
2578
|
hasLicense: boolean;
|
|
4351
2579
|
} | undefined;
|
|
4352
2580
|
AdminAdvancedHook?: {
|
|
4353
|
-
isActive: boolean;
|
|
4354
2581
|
sendAlert: boolean;
|
|
2582
|
+
isActive: boolean;
|
|
4355
2583
|
} | undefined;
|
|
4356
2584
|
AnimatedMeetingHook?: {
|
|
4357
2585
|
color: string;
|
|
@@ -4508,8 +2736,8 @@ declare const Hook: {
|
|
|
4508
2736
|
hasLicense: boolean;
|
|
4509
2737
|
} | undefined;
|
|
4510
2738
|
AdminAdvancedHook?: {
|
|
4511
|
-
isActive: boolean;
|
|
4512
2739
|
sendAlert: boolean;
|
|
2740
|
+
isActive: boolean;
|
|
4513
2741
|
} | undefined;
|
|
4514
2742
|
AnimatedMeetingHook?: {
|
|
4515
2743
|
color: string;
|
|
@@ -4666,8 +2894,8 @@ declare const Hook: {
|
|
|
4666
2894
|
hasLicense: boolean;
|
|
4667
2895
|
} | undefined;
|
|
4668
2896
|
AdminAdvancedHook?: {
|
|
4669
|
-
isActive: boolean;
|
|
4670
2897
|
sendAlert: boolean;
|
|
2898
|
+
isActive: boolean;
|
|
4671
2899
|
} | undefined;
|
|
4672
2900
|
AnimatedMeetingHook?: {
|
|
4673
2901
|
color: string;
|
|
@@ -4837,32 +3065,7 @@ declare const jland: {
|
|
|
4837
3065
|
fulfilledMeta?: unknown;
|
|
4838
3066
|
rejectedMeta?: unknown;
|
|
4839
3067
|
}>;
|
|
4840
|
-
createMap: _reduxjs_toolkit.AsyncThunk<{
|
|
4841
|
-
id: number;
|
|
4842
|
-
type: string;
|
|
4843
|
-
uri: string;
|
|
4844
|
-
mainType: string;
|
|
4845
|
-
dateCreation: string;
|
|
4846
|
-
dateModified: string;
|
|
4847
|
-
title: string;
|
|
4848
|
-
_url: string;
|
|
4849
|
-
_extend: {
|
|
4850
|
-
licenses: {
|
|
4851
|
-
id: number;
|
|
4852
|
-
status: number;
|
|
4853
|
-
uri: string;
|
|
4854
|
-
dateCreation: string;
|
|
4855
|
-
kind: string;
|
|
4856
|
-
idFeature: number;
|
|
4857
|
-
contentId: number;
|
|
4858
|
-
contentType: string;
|
|
4859
|
-
}[];
|
|
4860
|
-
};
|
|
4861
|
-
jlandMapFlavor: string;
|
|
4862
|
-
jlandMapKind: string;
|
|
4863
|
-
limit?: number | undefined;
|
|
4864
|
-
waMapUrl?: string | undefined;
|
|
4865
|
-
}[] | undefined, {
|
|
3068
|
+
createMap: _reduxjs_toolkit.AsyncThunk<JLandMap[] | undefined, {
|
|
4866
3069
|
jlandUrlBase: string;
|
|
4867
3070
|
map: MapCreationFront;
|
|
4868
3071
|
}, {
|
|
@@ -4886,7 +3089,7 @@ declare const jland: {
|
|
|
4886
3089
|
selectMapCreate: (state: RootState$1) => MapCreateState;
|
|
4887
3090
|
};
|
|
4888
3091
|
utils: {
|
|
4889
|
-
buildUrlToJland: (map: Pick<
|
|
3092
|
+
buildUrlToJland: (map: Pick<JLandMap, "uri">, hostname: string, urlBase: string) => string;
|
|
4890
3093
|
};
|
|
4891
3094
|
};
|
|
4892
3095
|
|
|
@@ -4897,7 +3100,7 @@ declare const magicPadSlice: _reduxjs_toolkit.Slice<MagicPadSliceRootState, {
|
|
|
4897
3100
|
setFilters: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["filters"]>) => void;
|
|
4898
3101
|
setOrders: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["orders"]>) => void;
|
|
4899
3102
|
}, "magicPad">;
|
|
4900
|
-
declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<
|
|
3103
|
+
declare const fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<ArticlesView>, {
|
|
4901
3104
|
idUserLogged: number;
|
|
4902
3105
|
}, {
|
|
4903
3106
|
dispatch: AppDispatch;
|
|
@@ -4923,7 +3126,7 @@ declare const MagicPad: {
|
|
|
4923
3126
|
setOrders: (state: Draft<S>, action: PayloadAction<MagicPadSliceRootState["orders"]>) => void;
|
|
4924
3127
|
}, "magicPad">;
|
|
4925
3128
|
actions: {
|
|
4926
|
-
fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<
|
|
3129
|
+
fetchPads: _reduxjs_toolkit.AsyncThunk<PagingResults<ArticlesView>, {
|
|
4927
3130
|
idUserLogged: number;
|
|
4928
3131
|
}, {
|
|
4929
3132
|
dispatch: AppDispatch;
|
|
@@ -4955,7 +3158,7 @@ declare const mediaLibrarySlice: _reduxjs_toolkit.Slice<MediaLibraryState, {
|
|
|
4955
3158
|
totalPages: number;
|
|
4956
3159
|
}>): any;
|
|
4957
3160
|
}, "mediaLibrary">;
|
|
4958
|
-
declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<
|
|
3161
|
+
declare const fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryFolderList>, void, {
|
|
4959
3162
|
dispatch: AppDispatch;
|
|
4960
3163
|
state: RootState$1;
|
|
4961
3164
|
extra: {
|
|
@@ -5062,7 +3265,7 @@ declare const MediaLibrary: {
|
|
|
5062
3265
|
}>): any;
|
|
5063
3266
|
}, "mediaLibrary">;
|
|
5064
3267
|
actions: {
|
|
5065
|
-
fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<
|
|
3268
|
+
fetchMediaLibraryFolders: _reduxjs_toolkit.AsyncThunk<ApiPagingResults<MediaLibraryFolderList>, void, {
|
|
5066
3269
|
dispatch: AppDispatch;
|
|
5067
3270
|
state: RootState$1;
|
|
5068
3271
|
extra: {
|
|
@@ -6268,8 +4471,8 @@ declare const Widget: {
|
|
|
6268
4471
|
fn: "widget-presence-response" | "check-list-response" | "widget-update" | "widget-quick-survey-response";
|
|
6269
4472
|
}[];
|
|
6270
4473
|
selectFlushedWidgets: (state: RootState$1) => string[];
|
|
6271
|
-
selectWidgetContext: (state: RootState$1, uniqid: string) => "
|
|
6272
|
-
selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 |
|
|
4474
|
+
selectWidgetContext: (state: RootState$1, uniqid: string) => "article" | "comment" | undefined;
|
|
4475
|
+
selectWidgetLevel: (state: RootState$1, uniqid: string) => 1 | 3 | 2 | 4 | undefined;
|
|
6273
4476
|
selectWidgetWrapperStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
|
|
6274
4477
|
selectWidgetTitleStyle: (state: RootState$1, uniqid: string) => Record<string, string | number>;
|
|
6275
4478
|
selectWidgetChipCount: (state: RootState$1, uniqid: string) => number;
|
|
@@ -6824,5 +5027,5 @@ declare const studio: {
|
|
|
6824
5027
|
};
|
|
6825
5028
|
};
|
|
6826
5029
|
|
|
6827
|
-
export { APP_STATUS_TYPE, AUDIENCE, AdminLogs, Animations, AppColumnsDefaultTypes, AppFieldFormPropertyTypes, AppFormBannedFromViews, AppFormFieldOnlyInView, AppFormFixedList, AppFormItemTypes, AppFormNoAsFieldList, AppFormNonPrimaryList, AppFormPrimaryList, AppFormPrimaryListValues, AppFormUniqueList, AppFormUniqueListCheck, Application, 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 };
|
|
6828
|
-
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 };
|
|
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 };
|
|
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 };
|