@daocloud-proto/skoala 0.27.2-104 → 0.27.2-108
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.
|
@@ -17,6 +17,26 @@ type OneOf<T> =
|
|
|
17
17
|
: never)
|
|
18
18
|
: never);
|
|
19
19
|
|
|
20
|
+
export enum SentinelStatus {
|
|
21
|
+
Sentinel_Unknown = "Sentinel_Unknown",
|
|
22
|
+
Sentinel_Waiting = "Sentinel_Waiting",
|
|
23
|
+
Sentinel_Running = "Sentinel_Running",
|
|
24
|
+
Sentinel_Deleting = "Sentinel_Deleting",
|
|
25
|
+
Sentinel_NotReady = "Sentinel_NotReady",
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export enum SeataStatus {
|
|
29
|
+
Seata_Unknown = "Seata_Unknown",
|
|
30
|
+
Seata_Waiting = "Seata_Waiting",
|
|
31
|
+
Seata_Running = "Seata_Running",
|
|
32
|
+
Seata_Deleting = "Seata_Deleting",
|
|
33
|
+
Seata_NotReady = "Seata_NotReady",
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export enum MeshStatus {
|
|
37
|
+
Mesh_Unknown = "Mesh_Unknown",
|
|
38
|
+
}
|
|
39
|
+
|
|
20
40
|
export enum GetSeataPluginResPhase {
|
|
21
41
|
Waiting = "Waiting",
|
|
22
42
|
Running = "Running",
|
|
@@ -47,7 +67,9 @@ export enum GetSentinelResPhase {
|
|
|
47
67
|
export type Plugin = {
|
|
48
68
|
name?: string
|
|
49
69
|
enabled?: boolean
|
|
50
|
-
|
|
70
|
+
sentinelStatus?: SentinelStatus
|
|
71
|
+
seataStatus?: SeataStatus
|
|
72
|
+
meshStatus?: MeshStatus
|
|
51
73
|
}
|
|
52
74
|
|
|
53
75
|
export type ListPluginReq = {
|