@daocloud-proto/ghippo 0.47.0 → 0.48.0-dev2
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/package.json
CHANGED
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import * as fm from "../fetch.pb"
|
|
8
|
+
|
|
9
|
+
export enum CategoryDisplayMode {
|
|
10
|
+
CATEGORY_DISPLAY_MODE_UNSPECIFIED = "CATEGORY_DISPLAY_MODE_UNSPECIFIED",
|
|
11
|
+
CATEGORY_DISPLAY_MODE_FLAT = "CATEGORY_DISPLAY_MODE_FLAT",
|
|
12
|
+
CATEGORY_DISPLAY_MODE_COLLAPSIBLE = "CATEGORY_DISPLAY_MODE_COLLAPSIBLE",
|
|
13
|
+
}
|
|
14
|
+
|
|
8
15
|
export type ProductNavRequest = {
|
|
9
16
|
}
|
|
10
17
|
|
|
@@ -16,6 +23,7 @@ export type ProductNavResponse = {
|
|
|
16
23
|
export type ProductNavCategory = {
|
|
17
24
|
name?: string
|
|
18
25
|
menus?: ProductMenu[]
|
|
26
|
+
displayMode?: CategoryDisplayMode
|
|
19
27
|
}
|
|
20
28
|
|
|
21
29
|
export type ProductMenu = {
|