react-memory-optimization 0.0.102 → 0.0.103
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.
|
@@ -134,6 +134,8 @@ export type ResponseHomePageInfo = {
|
|
|
134
134
|
})[];
|
|
135
135
|
isProviderSection: boolean;
|
|
136
136
|
providerSectionPosition: null | number;
|
|
137
|
+
isLastWinnerSection: boolean;
|
|
138
|
+
lastWinnerPosition: null | number;
|
|
137
139
|
};
|
|
138
140
|
export type HomeCategoriesInfo = {
|
|
139
141
|
[countryCode: string]: CategoriesHomeInfo;
|
|
@@ -143,6 +145,8 @@ export type HomeCategoriesInfo = {
|
|
|
143
145
|
export type CategoriesHomeInfo = {
|
|
144
146
|
isProviderSection: boolean;
|
|
145
147
|
providerSectionPosition: null | number;
|
|
148
|
+
isLastWinnerSection: boolean;
|
|
149
|
+
lastWinnerPosition: null | number;
|
|
146
150
|
categories: HomeCategoryInfo[];
|
|
147
151
|
};
|
|
148
152
|
export type HomeCategoryInfo = {
|