@daocloud-proto/skoala 0.49.0-4 → 0.49.0-6
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.
|
@@ -97,6 +97,11 @@ export type HigressConfig = {
|
|
|
97
97
|
observability?: boolean
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
+
export type Observability = {
|
|
101
|
+
enabled?: boolean
|
|
102
|
+
builtin?: boolean
|
|
103
|
+
}
|
|
104
|
+
|
|
100
105
|
export type HigressConsoleConfig = {
|
|
101
106
|
}
|
|
102
107
|
|
|
@@ -250,6 +255,33 @@ export type AIGateway = {
|
|
|
250
255
|
consoleUrl?: string
|
|
251
256
|
status?: HelmStatus
|
|
252
257
|
serviceType?: SkoalaApiGeneralV1alpha1Service.ServiceType
|
|
258
|
+
dashboardUrl?: DashboardURL
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
export type DashboardURLAI = {
|
|
262
|
+
url?: string
|
|
263
|
+
zhUrl?: string
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
export type DashboardURLMain = {
|
|
267
|
+
url?: string
|
|
268
|
+
zhUrl?: string
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
export type DashboardURLLog = {
|
|
272
|
+
url?: string
|
|
273
|
+
zhUrl?: string
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
export type DashboardURL = {
|
|
277
|
+
log?: DashboardURLLog
|
|
278
|
+
main?: DashboardURLMain
|
|
279
|
+
ai?: DashboardURLAI
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
export type LogDashboardURL = {
|
|
283
|
+
url?: string
|
|
284
|
+
zhUrl?: string
|
|
253
285
|
}
|
|
254
286
|
|
|
255
287
|
export type GatewayCondition = {
|