@tolinax/ayoune-interfaces 2024.116.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.
@@ -938,6 +938,73 @@ interface LinkPortalCustomArea {
938
938
  title: string;
939
939
  content: string;
940
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
+ }
941
1008
  interface ILinkPortal {
942
1009
  title: string;
943
1010
  description: string;
@@ -999,6 +1066,7 @@ export interface ISetting extends IDefaultFields {
999
1066
  slides: SlidesSettings;
1000
1067
  customerportal: ISettingCustomerPortal;
1001
1068
  linkPortal: ILinkPortal;
1069
+ supportPortal: ISupportPortal;
1002
1070
  [x: string]: any;
1003
1071
  }
1004
1072
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.116.0",
3
+ "version": "2024.117.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",