@daocloud-proto/skoala 0.30.0-2 → 0.30.0-22
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.
|
@@ -44,6 +44,12 @@ export enum APIStatusEnum {
|
|
|
44
44
|
unknown = "unknown",
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
export enum APICreateType {
|
|
48
|
+
DIRECT_API = "DIRECT_API",
|
|
49
|
+
LANE_API = "LANE_API",
|
|
50
|
+
IMPORT_API = "IMPORT_API",
|
|
51
|
+
}
|
|
52
|
+
|
|
47
53
|
export enum MatchType {
|
|
48
54
|
EXACT = "EXACT",
|
|
49
55
|
PREFIX = "PREFIX",
|
|
@@ -158,6 +164,7 @@ export type APIInfo = {
|
|
|
158
164
|
apiStatus?: APIStatus
|
|
159
165
|
status?: string
|
|
160
166
|
statusDescription?: string
|
|
167
|
+
apiCreateType?: APICreateType
|
|
161
168
|
updatedAt?: string
|
|
162
169
|
}
|
|
163
170
|
|
|
@@ -166,13 +166,14 @@ export type GetGatewayServiceReq = {
|
|
|
166
166
|
}
|
|
167
167
|
|
|
168
168
|
export type GetGatewayServiceRes = {
|
|
169
|
-
|
|
169
|
+
basicAccessServiceConfig?: ExternalServiceConf
|
|
170
170
|
manageServiceConf?: ServiceInfo
|
|
171
171
|
serviceType?: SesameServiceType
|
|
172
172
|
api?: SkoalaApiHostedV1alpha1Http.APIInfo[]
|
|
173
173
|
sesameId?: string
|
|
174
174
|
createdAt?: string
|
|
175
175
|
advancedAccessServiceConfig?: AdvancedAccessServiceConfig
|
|
176
|
+
displayAddress?: string[]
|
|
176
177
|
}
|
|
177
178
|
|
|
178
179
|
|
|
@@ -191,6 +192,7 @@ export type ServiceInfo = {
|
|
|
191
192
|
createdAt?: string
|
|
192
193
|
serviceType?: SesameServiceType
|
|
193
194
|
sesameId?: string
|
|
195
|
+
displayAddress?: string[]
|
|
194
196
|
servicePort?: SkoalaApiGeneralV1alpha1Common.KubernetesServicePort[]
|
|
195
197
|
}
|
|
196
198
|
|