@open-tender/types 0.0.121 → 0.0.123
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.
|
@@ -634,6 +634,14 @@ export interface ConfigThemeLayout {
|
|
|
634
634
|
padding: string;
|
|
635
635
|
paddingMobile: string;
|
|
636
636
|
}
|
|
637
|
+
export interface ConfigCategoriesItem {
|
|
638
|
+
desktop: {
|
|
639
|
+
displayType: string;
|
|
640
|
+
};
|
|
641
|
+
mobile: {
|
|
642
|
+
displayType: string;
|
|
643
|
+
};
|
|
644
|
+
}
|
|
637
645
|
export interface ConfigThemeButtons {
|
|
638
646
|
colors: {
|
|
639
647
|
cart: ButtonColor;
|
|
@@ -786,4 +794,5 @@ export interface ConfigTheme {
|
|
|
786
794
|
color: string;
|
|
787
795
|
};
|
|
788
796
|
welcome: ConfigThemeWelcome;
|
|
797
|
+
categories: ConfigCategoriesItem;
|
|
789
798
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CustomerLoyalty } from "./loyalty";
|
|
1
2
|
export interface Auth {
|
|
2
3
|
access_token: string;
|
|
3
4
|
expires_in: number;
|
|
@@ -15,6 +16,7 @@ export interface Profile {
|
|
|
15
16
|
is_verified: boolean;
|
|
16
17
|
last_name: string;
|
|
17
18
|
phone: string;
|
|
19
|
+
program: CustomerLoyalty;
|
|
18
20
|
}
|
|
19
21
|
export interface LoginData {
|
|
20
22
|
email: string;
|
|
@@ -634,6 +634,14 @@ export interface ConfigThemeLayout {
|
|
|
634
634
|
padding: string;
|
|
635
635
|
paddingMobile: string;
|
|
636
636
|
}
|
|
637
|
+
export interface ConfigCategoriesItem {
|
|
638
|
+
desktop: {
|
|
639
|
+
displayType: string;
|
|
640
|
+
};
|
|
641
|
+
mobile: {
|
|
642
|
+
displayType: string;
|
|
643
|
+
};
|
|
644
|
+
}
|
|
637
645
|
export interface ConfigThemeButtons {
|
|
638
646
|
colors: {
|
|
639
647
|
cart: ButtonColor;
|
|
@@ -786,4 +794,5 @@ export interface ConfigTheme {
|
|
|
786
794
|
color: string;
|
|
787
795
|
};
|
|
788
796
|
welcome: ConfigThemeWelcome;
|
|
797
|
+
categories: ConfigCategoriesItem;
|
|
789
798
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CustomerLoyalty } from "./loyalty";
|
|
1
2
|
export interface Auth {
|
|
2
3
|
access_token: string;
|
|
3
4
|
expires_in: number;
|
|
@@ -15,6 +16,7 @@ export interface Profile {
|
|
|
15
16
|
is_verified: boolean;
|
|
16
17
|
last_name: string;
|
|
17
18
|
phone: string;
|
|
19
|
+
program: CustomerLoyalty;
|
|
18
20
|
}
|
|
19
21
|
export interface LoginData {
|
|
20
22
|
email: string;
|
package/package.json
CHANGED