@parra/parra-js-sdk 0.3.549 → 0.3.550
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/dist/ParraAPI.d.ts +16 -6
- package/package.json +1 -1
package/dist/ParraAPI.d.ts
CHANGED
@@ -841,12 +841,22 @@ export interface CreateDesignSystemRequestBody {
|
|
841
841
|
version?: string | null;
|
842
842
|
description?: string | null;
|
843
843
|
}
|
844
|
+
export declare enum ThemeCornerRadiusStyle {
|
845
|
+
rounded = "rounded",
|
846
|
+
circle = "circle",
|
847
|
+
square = "square"
|
848
|
+
}
|
844
849
|
export interface ThemeStyles {
|
845
850
|
primary_color_key?: string | null;
|
846
851
|
secondary_color_key?: string | null;
|
847
852
|
tertiary_color_key?: string | null;
|
848
853
|
accent_color_key?: string | null;
|
849
|
-
|
854
|
+
success_color_key?: string | null;
|
855
|
+
warning_color_key?: string | null;
|
856
|
+
danger_color_key?: string | null;
|
857
|
+
info_color_key?: string | null;
|
858
|
+
neutral_color_key?: string | null;
|
859
|
+
corner_radius_style?: ThemeCornerRadiusStyle | null;
|
850
860
|
}
|
851
861
|
export interface ThemeStub {
|
852
862
|
id: string;
|
@@ -936,11 +946,6 @@ export interface Theme {
|
|
936
946
|
is_default: boolean;
|
937
947
|
styles?: ThemeStyles | null;
|
938
948
|
}
|
939
|
-
export declare enum ThemeCornerRadiusStyle {
|
940
|
-
rounded = "rounded",
|
941
|
-
circle = "circle",
|
942
|
-
square = "square"
|
943
|
-
}
|
944
949
|
export interface UpdateThemeRequestBody {
|
945
950
|
name?: string;
|
946
951
|
key?: string;
|
@@ -950,6 +955,11 @@ export interface UpdateThemeRequestBody {
|
|
950
955
|
secondary_color_key?: string | null;
|
951
956
|
tertiary_color_key?: string | null;
|
952
957
|
accent_color_key?: string | null;
|
958
|
+
success_color_key?: string | null;
|
959
|
+
warning_color_key?: string | null;
|
960
|
+
danger_color_key?: string | null;
|
961
|
+
info_color_key?: string | null;
|
962
|
+
neutral_color_key?: string | null;
|
953
963
|
corner_radius_style?: ThemeCornerRadiusStyle | null;
|
954
964
|
}
|
955
965
|
export declare enum ShareAssetType {
|