@@ -16,6 +16,9 @@ export interface PluginTagNamesDTO {
16
16
tagNames : string [ ]
17
17
}
18
18
19
+ /**
20
+ * Minimal data of child plugins
21
+ */
19
22
interface MinimalPluginVersionDataDTO {
20
23
id : number
21
24
name : string
@@ -26,7 +29,6 @@ interface MinimalPluginVersionDataDTO {
26
29
27
30
interface DetailedPluginVersionDTO extends MinimalPluginVersionDataDTO {
28
31
tags : string [ ]
29
- isLatest : boolean
30
32
inputVariables : VariableType [ ]
31
33
outputVariables : VariableType [ ]
32
34
/**
@@ -87,7 +89,7 @@ export interface PluginDataStoreType {
87
89
pluginVersionStore : Record < number , DetailedPluginVersionType >
88
90
}
89
91
90
- // TODO: Deprecate this type
92
+ // TODO: Check if can deprecate this if have time
91
93
export interface PluginDetailType extends DetailedPluginVersionType { }
92
94
export type PluginListItemType = Pick < PluginDetailType , 'parentPluginId' >
93
95
@@ -178,7 +180,7 @@ export interface PluginListProps
178
180
/**
179
181
* If true, the response would be appended to the existing data
180
182
* if false, the existing data would be replaced with the new data
181
- * default value is false
183
+ * @ default false
182
184
*/
183
185
appendResponse ?: boolean ,
184
186
) => void
@@ -195,7 +197,9 @@ export interface PluginCardProps
195
197
}
196
198
197
199
export interface PluginCardSkeletonListProps {
198
- // Default value is 3
200
+ /**
201
+ * @default 3
202
+ */
199
203
count ?: number
200
204
}
201
205
0 commit comments