@daocloud-proto/skoala 0.2.0-30 → 0.2.0-36
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.
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
* This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
+
export enum RegistryRegistryStatus {
|
|
8
|
+
STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
|
|
9
|
+
RUNNING = "RUNNING",
|
|
10
|
+
ANOMALY = "ANOMALY",
|
|
11
|
+
}
|
|
12
|
+
|
|
7
13
|
export enum RegistryRegistryType {
|
|
8
14
|
TYPE_UNSPECIFIED = "TYPE_UNSPECIFIED",
|
|
9
15
|
NACOS = "NACOS",
|
|
@@ -17,9 +23,13 @@ export type Registry = {
|
|
|
17
23
|
registryId?: string
|
|
18
24
|
name?: string
|
|
19
25
|
type?: RegistryRegistryType
|
|
26
|
+
status?: RegistryRegistryStatus
|
|
20
27
|
addresses?: string[]
|
|
21
28
|
namespaces?: Namespace[]
|
|
29
|
+
isHosted?: boolean
|
|
22
30
|
serviceCount?: number
|
|
31
|
+
updatedAt?: string
|
|
32
|
+
createdAt?: string
|
|
23
33
|
}
|
|
24
34
|
|
|
25
35
|
export type RegistryOnlyID = {
|
|
@@ -54,6 +64,7 @@ export type UpdateRegistryReq = {
|
|
|
54
64
|
type?: string
|
|
55
65
|
addresses?: string[]
|
|
56
66
|
namespaces?: Namespace[]
|
|
67
|
+
isHosted?: boolean
|
|
57
68
|
}
|
|
58
69
|
|
|
59
70
|
export type UpdateRegistryRes = {
|
|
@@ -65,6 +76,7 @@ export type CreateRegistryReq = {
|
|
|
65
76
|
type?: string
|
|
66
77
|
addresses?: string[]
|
|
67
78
|
namespaces?: Namespace[]
|
|
79
|
+
isHosted?: boolean
|
|
68
80
|
}
|
|
69
81
|
|
|
70
82
|
export type CreateRegistryRes = {
|
|
@@ -82,6 +94,7 @@ export type DeleteRegistryRes = {
|
|
|
82
94
|
export type PingRegistryReq = {
|
|
83
95
|
type?: string
|
|
84
96
|
addresses?: string[]
|
|
97
|
+
namespaces?: Namespace[]
|
|
85
98
|
}
|
|
86
99
|
|
|
87
100
|
export type PingRegistryRes = {
|