File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
src/Shared/Components/Plugin Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -104,18 +104,15 @@ export interface PluginListFiltersType extends Pick<BaseFilterQueryParams<unknow
104
104
selectedTags : string [ ]
105
105
}
106
106
107
- interface ParentPluginType
107
+ export interface ParentPluginType
108
108
extends Pick < ParentPluginDTO , 'id' | 'name' | 'description' | 'type' | 'icon' | 'pluginIdentifier' > {
109
109
latestVersionId : MinimalPluginVersionDataDTO [ 'id' ]
110
110
pluginVersions : MinimalPluginVersionDataDTO [ ]
111
111
}
112
112
113
113
interface DetailedPluginVersionType
114
114
extends Pick < MinimalPluginVersionDataDTO , 'id' | 'description' | 'name' | 'pluginVersion' > ,
115
- Pick <
116
- DetailedPluginVersionDTO ,
117
- 'tags' | 'isLatest' | 'inputVariables' | 'outputVariables' | 'updatedBy' | 'docLink'
118
- > ,
115
+ Pick < DetailedPluginVersionDTO , 'tags' | 'inputVariables' | 'outputVariables' | 'updatedBy' | 'docLink' > ,
119
116
Pick < ParentPluginType , 'icon' | 'type' | 'pluginIdentifier' > {
120
117
parentPluginId : ParentPluginType [ 'id' ]
121
118
}
Original file line number Diff line number Diff line change @@ -84,7 +84,6 @@ export const parsePluginDetailsDTOIntoPluginStore = (pluginData: ParentPluginDTO
84
84
plugin . type === PluginCreationType . SHARED ? pluginVersionData . updatedBy : DEFAULT_PLUGIN_CREATED_BY ,
85
85
outputVariables : pluginVersionData . outputVariables || [ ] ,
86
86
inputVariables : pluginVersionData . inputVariables || [ ] ,
87
- isLatest : pluginVersionData . isLatest || false ,
88
87
tags : sortedUniqueTags ,
89
88
parentPluginId : plugin . id ,
90
89
icon : plugin . icon || '' ,
You can’t perform that action at this time.
0 commit comments