@hubs101/js-api-skd-client 1.0.10337 → 1.0.10338
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/lib/api/event/types.d.ts +11 -1
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -757,6 +757,16 @@ export type DiscountServerResponse = {
|
|
|
757
757
|
expire_at: null | string;
|
|
758
758
|
updated_at: string;
|
|
759
759
|
};
|
|
760
|
+
export type PortfolioDesign = {
|
|
761
|
+
primaryColor: string;
|
|
762
|
+
secondaryColor: string;
|
|
763
|
+
backgroundColor: string;
|
|
764
|
+
logoPosImage: string;
|
|
765
|
+
logoNegImage: string;
|
|
766
|
+
backgroundDesktopImage: string;
|
|
767
|
+
backgroundTabletImage: string;
|
|
768
|
+
backgroundMobileImage: string;
|
|
769
|
+
};
|
|
760
770
|
export type Portfolio = {
|
|
761
771
|
id: string;
|
|
762
772
|
name: string;
|
|
@@ -766,7 +776,7 @@ export type Portfolio = {
|
|
|
766
776
|
description_en: string;
|
|
767
777
|
tags_de: string[];
|
|
768
778
|
tags_en: string[];
|
|
769
|
-
design:
|
|
779
|
+
design: PortfolioDesign;
|
|
770
780
|
belong_to: string;
|
|
771
781
|
published: number;
|
|
772
782
|
created_at: string | null;
|