@daocloud-proto/skoala 0.7.0 → 0.7.1-4

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.
@@ -57,6 +57,19 @@ export enum AlertSeverity {
57
57
  Info = "Info",
58
58
  }
59
59
 
60
+ export enum GatewayConditionType {
61
+ TYPE_UNSPECIFIED = "TYPE_UNSPECIFIED",
62
+ Scheduled = "Scheduled",
63
+ Ready = "Ready",
64
+ }
65
+
66
+ export enum GatewayConditionStatus {
67
+ STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
68
+ True = "True",
69
+ False = "False",
70
+ Unknown = "Unknown",
71
+ }
72
+
60
73
  export enum LogLogLevel {
61
74
  STATUS_UNSPECIFIED = "STATUS_UNSPECIFIED",
62
75
  Trace = "Trace",
@@ -73,6 +86,12 @@ export type Node = {
73
86
  online?: number
74
87
  }
75
88
 
89
+ export type GatewayCondition = {
90
+ type?: GatewayConditionType
91
+ status?: GatewayConditionStatus
92
+ message?: string
93
+ }
94
+
76
95
  export type Gateway = {
77
96
  workspaceId?: string
78
97
  clusterName?: string
@@ -80,7 +99,7 @@ export type Gateway = {
80
99
  gatewayName?: string
81
100
  createdAt?: string
82
101
  updatedAt?: string
83
- status?: SkoalaApiGeneralV1alpha1Common.Status
102
+ condition?: GatewayCondition
84
103
  endpoints?: string[]
85
104
  contour?: Node
86
105
  envoy?: Node
@@ -276,6 +276,8 @@ export type GetNacosServiceInsightReq = {
276
276
  nacosNamespace?: string
277
277
  nacosGroupName?: string
278
278
  nacosService?: string
279
+ start?: string
280
+ end?: string
279
281
  }
280
282
 
281
283
  export type GetNacosServiceInsightRes = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daocloud-proto/skoala",
3
- "version": "0.7.0",
3
+ "version": "0.7.1-4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {