@@ -30,7 +30,9 @@ export interface PluginAPIBaseQueryParamsType {
3030}
3131
3232export interface GetPluginTagsPayloadType extends PluginAPIBaseQueryParamsType { }
33- export interface GetParentPluginListPayloadType extends PluginAPIBaseQueryParamsType { }
33+ export interface GetParentPluginListPayloadType extends PluginAPIBaseQueryParamsType {
34+ type ?: 'ALL'
35+ }
3436
3537export interface PluginTagNamesDTO {
3638 tagNames : string [ ]
@@ -73,7 +75,7 @@ export interface ParentPluginDTO {
7375 pluginIdentifier : string
7476}
7577
76- export interface MinParentPluginDTO extends Pick < ParentPluginDTO , 'id' | 'name' | 'icon' > { }
78+ export interface MinParentPluginDTO extends Pick < ParentPluginDTO , 'id' | 'name' | 'icon' | 'pluginIdentifier' > { }
7779
7880export interface PluginDetailDTO {
7981 parentPlugins : ParentPluginDTO [ ]
@@ -84,6 +86,7 @@ export interface PluginDetailServiceParamsType {
8486 appId : number
8587 pluginIds ?: number [ ]
8688 parentPluginIds ?: number [ ]
89+ parentPluginIdentifiers ?: string [ ]
8790 /**
8891 * @default true
8992 */
@@ -94,6 +97,7 @@ export interface PluginDetailServiceParamsType {
9497export interface PluginDetailPayloadType extends Pick < PluginDetailServiceParamsType , 'appId' > {
9598 pluginId ?: PluginDetailServiceParamsType [ 'pluginIds' ]
9699 parentPluginId ?: PluginDetailServiceParamsType [ 'parentPluginIds' ]
100+ parentPluginIdentifier ?: PluginDetailServiceParamsType [ 'parentPluginIdentifiers' ] [ number ]
97101}
98102
99103export interface PluginListFiltersType extends Pick < BaseFilterQueryParams < unknown > , 'searchKey' > {
@@ -178,7 +182,6 @@ export interface GetPluginStoreDataServiceParamsType extends Pick<PluginListFilt
178182 signal : AbortSignal
179183 appId : number
180184 offset ?: number
181- size ?: number
182185}
183186
184187export interface GetPluginListPayloadType
0 commit comments