@daocloud-proto/ghippo 0.2.2 → 0.2.3
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
package/v1alpha1/login.pb.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
import * as fm from "../fetch.pb"
|
|
8
8
|
export type LoginGetRequest = {
|
|
9
|
-
|
|
9
|
+
callback_url?: string
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export type LoginGetResponse = {
|
|
@@ -15,12 +15,12 @@ export type LoginGetResponse = {
|
|
|
15
15
|
export type LoginPostRequest = {
|
|
16
16
|
code?: string
|
|
17
17
|
state?: string
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
session_state?: string
|
|
19
|
+
callback_url?: string
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
export type LoginPostResponse = {
|
|
23
|
-
|
|
23
|
+
id_token?: string
|
|
24
24
|
username?: string
|
|
25
25
|
}
|
|
26
26
|
|
package/v1alpha1/topnav.pb.ts
CHANGED
|
@@ -9,12 +9,12 @@ export type TopNavRequest = {
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
export type TopNavResponse = {
|
|
12
|
-
|
|
12
|
+
platform_name?: string
|
|
13
13
|
icon?: Uint8Array
|
|
14
14
|
favicon?: Uint8Array
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
icon_filename?: string
|
|
16
|
+
favicon_filename?: string
|
|
17
|
+
portal_url?: string
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
export class TopNavigator {
|
package/v1alpha1/user.pb.ts
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
import * as fm from "../fetch.pb"
|
|
8
8
|
export type GetUsersRequest = {
|
|
9
9
|
search?: string
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
page_size?: number
|
|
11
|
+
page_no?: number
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
export type GetUsersResponse = {
|
|
@@ -19,8 +19,8 @@ export type GetUsersResponse = {
|
|
|
19
19
|
export type User = {
|
|
20
20
|
id?: string
|
|
21
21
|
name?: string
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
created_at?: string
|
|
23
|
+
updated_at?: string
|
|
24
24
|
}
|
|
25
25
|
|
|
26
26
|
export type GetUserRequest = {
|