@daocloud-proto/skoala 0.19.0 → 0.19.1-2
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.
|
@@ -102,11 +102,15 @@ export type ListSkoalaPluginReq = {
|
|
|
102
102
|
workspaceId?: string
|
|
103
103
|
pluginName?: string
|
|
104
104
|
pluginType?: PluginType
|
|
105
|
-
disabled?:
|
|
105
|
+
disabled?: Disabled
|
|
106
106
|
page?: number
|
|
107
107
|
pageSize?: number
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
export type Disabled = {
|
|
111
|
+
disabled?: boolean
|
|
112
|
+
}
|
|
113
|
+
|
|
110
114
|
export type ListSkoalaPluginRes = {
|
|
111
115
|
items?: SkoalaPluginInfo[]
|
|
112
116
|
pagination?: SkoalaApiGeneralV1alpha1Common.Pagination
|