diff --git a/src/common/interface/client.ts b/src/common/interface/client.ts index a0f10eb..f6c8b26 100644 --- a/src/common/interface/client.ts +++ b/src/common/interface/client.ts @@ -21,6 +21,14 @@ export interface IClientAdapter { * @publicApi */ create: (config: C) => void | Promise; + /** + * Redeploy the client instance. + * + * @param config C The configuration of client instance + * + * @publicApi + */ + redeploy: (config: C) => void | Promise; } export interface IClientMediator extends IConfigSubscriber {