@tolinax/ayoune-interfaces 2024.115.0 → 2024.117.0
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/interfaces/ISetting.d.ts +135 -0
- package/package.json +1 -1
package/interfaces/ISetting.d.ts
CHANGED
|
@@ -885,6 +885,139 @@ interface ISettingCustomerPortal {
|
|
|
885
885
|
startPageAffiliate: string;
|
|
886
886
|
startPageMultiplier: string;
|
|
887
887
|
}
|
|
888
|
+
interface LinkPortalPerson {
|
|
889
|
+
person: ObjectId;
|
|
890
|
+
description: string;
|
|
891
|
+
tagLine: string;
|
|
892
|
+
}
|
|
893
|
+
interface LinkPortalLink {
|
|
894
|
+
title: string;
|
|
895
|
+
tagLine: string;
|
|
896
|
+
icon: string;
|
|
897
|
+
link: string;
|
|
898
|
+
adult: boolean;
|
|
899
|
+
}
|
|
900
|
+
interface LinkPortalGroup {
|
|
901
|
+
title: string;
|
|
902
|
+
description: string;
|
|
903
|
+
links: LinkPortalLink[];
|
|
904
|
+
}
|
|
905
|
+
interface LinkPortalStyle {
|
|
906
|
+
backgroundMode: "gradient" | "image";
|
|
907
|
+
color1: string;
|
|
908
|
+
color2: string;
|
|
909
|
+
fontColor: string;
|
|
910
|
+
backgroundImage: string;
|
|
911
|
+
buttonColor1: string;
|
|
912
|
+
buttonColor2: string;
|
|
913
|
+
buttonFontColor: string;
|
|
914
|
+
}
|
|
915
|
+
interface LinkPortalHeaders {
|
|
916
|
+
vCard?: string;
|
|
917
|
+
qrCode?: string;
|
|
918
|
+
contact?: string;
|
|
919
|
+
links?: string;
|
|
920
|
+
social?: string;
|
|
921
|
+
team?: string;
|
|
922
|
+
}
|
|
923
|
+
interface LinkPortalOptions {
|
|
924
|
+
useIcon?: boolean;
|
|
925
|
+
showLogo?: boolean;
|
|
926
|
+
useLightVersions?: boolean;
|
|
927
|
+
showClaim?: boolean;
|
|
928
|
+
showDownload?: boolean;
|
|
929
|
+
showQR?: boolean;
|
|
930
|
+
showContact?: boolean;
|
|
931
|
+
showLinks?: boolean;
|
|
932
|
+
showSocial?: boolean;
|
|
933
|
+
showTeam?: boolean;
|
|
934
|
+
showCustomArea1?: boolean;
|
|
935
|
+
showCustomArea2?: boolean;
|
|
936
|
+
}
|
|
937
|
+
interface LinkPortalCustomArea {
|
|
938
|
+
title: string;
|
|
939
|
+
content: string;
|
|
940
|
+
}
|
|
941
|
+
interface OpenGraph {
|
|
942
|
+
title: string;
|
|
943
|
+
description: string;
|
|
944
|
+
image: string;
|
|
945
|
+
locale: string;
|
|
946
|
+
url: string;
|
|
947
|
+
type: string;
|
|
948
|
+
video: string;
|
|
949
|
+
audio: string;
|
|
950
|
+
}
|
|
951
|
+
interface MetaTag {
|
|
952
|
+
name: string;
|
|
953
|
+
property: string;
|
|
954
|
+
content: string;
|
|
955
|
+
schema: string;
|
|
956
|
+
}
|
|
957
|
+
interface SEOAttributes {
|
|
958
|
+
title: string;
|
|
959
|
+
description: string;
|
|
960
|
+
robots: string;
|
|
961
|
+
canonical: string;
|
|
962
|
+
openGraph: OpenGraph;
|
|
963
|
+
additionalMetaTags: MetaTag[];
|
|
964
|
+
}
|
|
965
|
+
interface KnowledgeBaseSettings {
|
|
966
|
+
showReadingTime: boolean;
|
|
967
|
+
showAuthor: boolean;
|
|
968
|
+
showExcerpt: boolean;
|
|
969
|
+
showViews: boolean;
|
|
970
|
+
showLikes: boolean;
|
|
971
|
+
showShares: boolean;
|
|
972
|
+
seo: SEOAttributes;
|
|
973
|
+
}
|
|
974
|
+
interface BlogSettings extends KnowledgeBaseSettings {
|
|
975
|
+
mainVideoPlatform: string;
|
|
976
|
+
}
|
|
977
|
+
interface ISupportPortal {
|
|
978
|
+
active: boolean;
|
|
979
|
+
title: string;
|
|
980
|
+
defaultLanguage: string;
|
|
981
|
+
description: string;
|
|
982
|
+
color1: string;
|
|
983
|
+
color2: string;
|
|
984
|
+
useIcon: boolean;
|
|
985
|
+
showChat: boolean;
|
|
986
|
+
chatBot: boolean;
|
|
987
|
+
showFaqs: boolean;
|
|
988
|
+
showGlossar: boolean;
|
|
989
|
+
showBlog: boolean;
|
|
990
|
+
showUniversity: boolean;
|
|
991
|
+
showChecklists: boolean;
|
|
992
|
+
showBugs: boolean;
|
|
993
|
+
bugProjects: ObjectId[];
|
|
994
|
+
showAnnouncements: boolean;
|
|
995
|
+
showTicketCreation: boolean;
|
|
996
|
+
knowledgeBase: KnowledgeBaseSettings;
|
|
997
|
+
blog: BlogSettings;
|
|
998
|
+
ticketCreationProject?: ObjectId;
|
|
999
|
+
ticketCreationButtonText?: string;
|
|
1000
|
+
showReleaseNotes: boolean;
|
|
1001
|
+
releaseNotesProjects: ObjectId[];
|
|
1002
|
+
showChangelogs: boolean;
|
|
1003
|
+
changeLogsProjects: ObjectId[];
|
|
1004
|
+
showRoadMap: boolean;
|
|
1005
|
+
roadMapProjects: ObjectId[];
|
|
1006
|
+
seo: SEOAttributes;
|
|
1007
|
+
}
|
|
1008
|
+
interface ILinkPortal {
|
|
1009
|
+
title: string;
|
|
1010
|
+
description: string;
|
|
1011
|
+
style: LinkPortalStyle;
|
|
1012
|
+
headers: LinkPortalHeaders;
|
|
1013
|
+
options: LinkPortalOptions;
|
|
1014
|
+
customArea1?: LinkPortalCustomArea;
|
|
1015
|
+
customArea2?: LinkPortalCustomArea;
|
|
1016
|
+
links: {
|
|
1017
|
+
groups: LinkPortalGroup[];
|
|
1018
|
+
};
|
|
1019
|
+
persons: LinkPortalPerson[];
|
|
1020
|
+
}
|
|
888
1021
|
export interface ISetting extends IDefaultFields {
|
|
889
1022
|
_customerID: ObjectId;
|
|
890
1023
|
ai: AiSettings;
|
|
@@ -932,6 +1065,8 @@ export interface ISetting extends IDefaultFields {
|
|
|
932
1065
|
products: ProductsSettings;
|
|
933
1066
|
slides: SlidesSettings;
|
|
934
1067
|
customerportal: ISettingCustomerPortal;
|
|
1068
|
+
linkPortal: ILinkPortal;
|
|
1069
|
+
supportPortal: ISupportPortal;
|
|
935
1070
|
[x: string]: any;
|
|
936
1071
|
}
|
|
937
1072
|
export {};
|