@daocloud-proto/ghippo 0.33.0 → 0.34.0-csp-rc1

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/ghippo",
3
- "version":"0.33.0",
3
+ "version":"0.34.0-csp-rc1",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "license": "ISC"
@@ -85,6 +85,7 @@ export type GetUserResponse = {
85
85
  email?: string
86
86
  locale?: string
87
87
  source?: string
88
+ phoneNumber?: string
88
89
  }
89
90
 
90
91
  export type ListAccessTokensRequest = {
@@ -8,6 +8,7 @@ import * as fm from "../fetch.pb"
8
8
 
9
9
  export enum FeatureGateID {
10
10
  CreateUserInWorkspace = "CreateUserInWorkspace",
11
+ IsCSP = "IsCSP",
11
12
  }
12
13
 
13
14
  export type FeatureGateInfo = {
@@ -10,6 +10,7 @@ export type ProductNavRequest = {
10
10
 
11
11
  export type ProductNavResponse = {
12
12
  categories?: ProductNavCategory[]
13
+ shortcutMenus?: ShortcutMenus
13
14
  }
14
15
 
15
16
  export type ProductNavCategory = {
@@ -23,6 +24,12 @@ export type ProductMenu = {
23
24
  iconUrl?: string
24
25
  target?: string
25
26
  menus?: ProductMenu[]
27
+ order?: number
28
+ }
29
+
30
+ export type ShortcutMenus = {
31
+ left?: ProductMenu[]
32
+ right?: ProductMenu[]
26
33
  }
27
34
 
28
35
  export class ProductNavigator {