@tolinax/ayoune-interfaces 2024.9.1 → 2024.9.2

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.
@@ -1,4 +1,5 @@
1
1
  import { IDefaultFields } from "./IDefaultFields";
2
+ import { ISEOAttributes } from "./ISEOAttributes";
2
3
  interface AiSettings {
3
4
  useAI?: boolean;
4
5
  primingMessage?: string;
@@ -81,6 +82,14 @@ interface ColorsSettings {
81
82
  error?: string;
82
83
  info?: string;
83
84
  }
85
+ interface FontsSettings {
86
+ brand?: string;
87
+ primary?: string;
88
+ secondary?: string;
89
+ accent?: string;
90
+ error?: string;
91
+ info?: string;
92
+ }
84
93
  interface RewardsSettings {
85
94
  playSound?: boolean;
86
95
  sound?: string;
@@ -640,6 +649,21 @@ interface ProductsSettings {
640
649
  lockProductsAfterApprove?: boolean;
641
650
  reCheckPriceOnAmountChange?: boolean;
642
651
  }
652
+ interface SlidesSettings {
653
+ active: boolean;
654
+ title: string;
655
+ defaultLanguage: string;
656
+ description: string;
657
+ color1: string;
658
+ color2: string;
659
+ useIcon: boolean;
660
+ showChat: boolean;
661
+ chatBot: boolean;
662
+ tacLink: string;
663
+ imprintLink: string;
664
+ privacyLink: string;
665
+ seo: ISEOAttributes;
666
+ }
643
667
  export interface ISetting extends IDefaultFields {
644
668
  _customerID: ObjectId;
645
669
  ai: AiSettings;
@@ -649,6 +673,7 @@ export interface ISetting extends IDefaultFields {
649
673
  setup: SetupSettings;
650
674
  formats: FormatsSettings;
651
675
  colors: ColorsSettings;
676
+ fonts: FontsSettings;
652
677
  useRewards?: boolean;
653
678
  rewards: RewardsSettings;
654
679
  attention: AttentionSettings;
@@ -684,6 +709,7 @@ export interface ISetting extends IDefaultFields {
684
709
  pim: PimSettings;
685
710
  marketplace: MarketplaceSettings;
686
711
  products: ProductsSettings;
712
+ slides: SlidesSettings;
687
713
  [x: string]: any;
688
714
  }
689
715
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.9.1",
3
+ "version": "2024.9.2",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",