@daocloud-proto/skoala 0.49.0 → 0.50.0
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.
|
@@ -51,7 +51,9 @@ export enum GatewayStatus {
|
|
|
51
51
|
Unknown = "Unknown",
|
|
52
52
|
Error = "Error",
|
|
53
53
|
Starting = "Starting",
|
|
54
|
+
upgrading = "upgrading",
|
|
54
55
|
Running = "Running",
|
|
56
|
+
uninstall = "uninstall",
|
|
55
57
|
}
|
|
56
58
|
|
|
57
59
|
export type CreateAIGatewayReq = {
|
|
@@ -97,6 +99,11 @@ export type HigressConfig = {
|
|
|
97
99
|
observability?: boolean
|
|
98
100
|
}
|
|
99
101
|
|
|
102
|
+
export type Observability = {
|
|
103
|
+
enabled?: boolean
|
|
104
|
+
builtin?: boolean
|
|
105
|
+
}
|
|
106
|
+
|
|
100
107
|
export type HigressConsoleConfig = {
|
|
101
108
|
}
|
|
102
109
|
|
|
@@ -250,6 +257,33 @@ export type AIGateway = {
|
|
|
250
257
|
consoleUrl?: string
|
|
251
258
|
status?: HelmStatus
|
|
252
259
|
serviceType?: SkoalaApiGeneralV1alpha1Service.ServiceType
|
|
260
|
+
dashboardUrl?: DashboardURL
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
export type DashboardURLAI = {
|
|
264
|
+
url?: string
|
|
265
|
+
zhUrl?: string
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
export type DashboardURLMain = {
|
|
269
|
+
url?: string
|
|
270
|
+
zhUrl?: string
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
export type DashboardURLLog = {
|
|
274
|
+
url?: string
|
|
275
|
+
zhUrl?: string
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
export type DashboardURL = {
|
|
279
|
+
log?: DashboardURLLog
|
|
280
|
+
main?: DashboardURLMain
|
|
281
|
+
ai?: DashboardURLAI
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export type LogDashboardURL = {
|
|
285
|
+
url?: string
|
|
286
|
+
zhUrl?: string
|
|
253
287
|
}
|
|
254
288
|
|
|
255
289
|
export type GatewayCondition = {
|