Skip to content

Commit

Permalink
Update interfaces.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth committed Jul 24, 2024
1 parent 8265ed0 commit 441220b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/client/src/internal/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ export interface IClientMethods {
/** Retrieves metadata for many daos */
getDaos: (params: DaoQueryParams) => Promise<DaoListItem[]>;
/** retrieves the plugin details given an address, release and build */
getPlugin: (pluginAddress: string) => Promise<PluginRepo>;
getPlugin: (pluginAddress: string, includeMetadata?: boolean) => Promise<PluginRepo>;
/** Retrieves the list of plugins available on the PluginRegistry */
getPlugins: (params?: PluginQueryParams) => Promise<PluginRepoListItem[]>;
getPlugins: (params?: PluginQueryParams, includeMetadata?: boolean) => Promise<PluginRepoListItem[]>;
/** Prepare uninstallation of a plugin */
prepareUninstallation: (
params: PrepareUninstallationParams,
Expand Down

0 comments on commit 441220b

Please sign in to comment.