@daocloud-proto/skoala 0.5.1-76 → 0.5.1-78
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.
|
@@ -153,6 +153,20 @@ export type UpdateAPIReq = {
|
|
|
153
153
|
apiConfig?: APIConfig
|
|
154
154
|
}
|
|
155
155
|
|
|
156
|
+
export type UpdateAPIStatusReq = {
|
|
157
|
+
workspaceId?: string
|
|
158
|
+
gatewayName?: string
|
|
159
|
+
clusterName?: string
|
|
160
|
+
namespaceName?: string
|
|
161
|
+
apiName?: string
|
|
162
|
+
enabled?: boolean
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export type UpdateAPIStatusRes = {
|
|
166
|
+
apiName?: string
|
|
167
|
+
enabled?: boolean
|
|
168
|
+
}
|
|
169
|
+
|
|
156
170
|
export type CreateAPIRes = {
|
|
157
171
|
apiName?: string
|
|
158
172
|
}
|
|
@@ -110,8 +110,8 @@ export type ServiceInfo = {
|
|
|
110
110
|
|
|
111
111
|
export type ServiceSourceInfo = {
|
|
112
112
|
serviceSource?: ServiceSource
|
|
113
|
-
|
|
114
|
-
|
|
113
|
+
kubernetesClusterName?: string
|
|
114
|
+
kubernetesNamespaceName?: string
|
|
115
115
|
registrationId?: string
|
|
116
116
|
registrationName?: string
|
|
117
117
|
registrationType?: string
|