@hubs101/js-api-skd-client 1.0.10334 → 1.0.10335

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.
@@ -775,4 +775,30 @@ export type Portfolio = {
775
775
  updated_by: string | null;
776
776
  deleted_by: string | null;
777
777
  };
778
+ export type PortfolioInput = {
779
+ id: string;
780
+ name: string;
781
+ slug: string;
782
+ website: string;
783
+ description_de: string;
784
+ description_en: string;
785
+ tags_de: string[];
786
+ tags_en: string[];
787
+ belong_to: string;
788
+ published: number;
789
+ created_at: string | null;
790
+ updated_at: string | null;
791
+ deleted_at: string | null;
792
+ created_by: string | null;
793
+ updated_by: string | null;
794
+ deleted_by: string | null;
795
+ design_portfolio_primary_color: string;
796
+ design_portfolio_secondary_color: string;
797
+ design_portfolio_background_color: string;
798
+ design_portfolio_pos: string;
799
+ design_portfolio_neg: string;
800
+ design_portfolio_desktop_background: string;
801
+ design_portfolio_tablet_background: string;
802
+ design_portfolio_mobile_background: string;
803
+ };
778
804
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hubs101/js-api-skd-client",
3
- "version": "1.0.10334",
3
+ "version": "1.0.10335",
4
4
  "author": "Liveware",
5
5
  "scripts": {
6
6
  "test": "jest --config jestconfig.json",