@hubs101/js-api-skd-client 1.0.10341 → 1.0.10343
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 +6 -5
- package/package.json +1 -1
package/lib/api/event/types.d.ts
CHANGED
|
@@ -789,6 +789,7 @@ export type Portfolio = {
|
|
|
789
789
|
export type PortfolioInput = {
|
|
790
790
|
id: string;
|
|
791
791
|
name: string;
|
|
792
|
+
account: string;
|
|
792
793
|
slug: string;
|
|
793
794
|
website: string;
|
|
794
795
|
description_de: string;
|
|
@@ -806,10 +807,10 @@ export type PortfolioInput = {
|
|
|
806
807
|
design_portfolio_primary_color: string;
|
|
807
808
|
design_portfolio_secondary_color: string;
|
|
808
809
|
design_portfolio_background_color: string;
|
|
809
|
-
design_portfolio_pos
|
|
810
|
-
design_portfolio_neg
|
|
811
|
-
design_portfolio_desktop_background
|
|
812
|
-
design_portfolio_tablet_background
|
|
813
|
-
design_portfolio_mobile_background
|
|
810
|
+
design_portfolio_pos?: string;
|
|
811
|
+
design_portfolio_neg?: string;
|
|
812
|
+
design_portfolio_desktop_background?: string;
|
|
813
|
+
design_portfolio_tablet_background?: string;
|
|
814
|
+
design_portfolio_mobile_background?: string;
|
|
814
815
|
};
|
|
815
816
|
export {};
|