fix(plugins): drop stale commandOptions fields

This commit is contained in:
Rohit Amarnath 2026-02-23 17:51:39 -05:00
parent cd9736f7ad
commit 142fa9c919
5 changed files with 0 additions and 5 deletions

View File

@ -67,7 +67,6 @@ const createRegistry = (channels: PluginRegistry["channels"]): PluginRegistry =>
hooks: [],
typedHooks: [],
commands: [],
commandOptions: [],
channels,
providers: [],
gatewayHandlers: {},

View File

@ -16,7 +16,6 @@ const createRegistry = (diagnostics: PluginDiagnostic[]): PluginRegistry => ({
typedHooks: [],
channels: [],
commands: [],
commandOptions: [],
providers: [],
gatewayHandlers: {},
httpHandlers: [],

View File

@ -151,7 +151,6 @@ const createStubPluginRegistry = (): PluginRegistry => ({
cliRegistrars: [],
services: [],
commands: [],
commandOptions: [],
diagnostics: [],
});

View File

@ -176,7 +176,6 @@ function createPluginRecord(params: {
cliCommands: [],
services: [],
commands: [],
commandOptions: [],
httpHandlers: 0,
hookCount: 0,
configSchema: params.configSchema,

View File

@ -25,7 +25,6 @@ export const createTestRegistry = (channels: TestChannelRegistration[] = []): Pl
cliRegistrars: [],
services: [],
commands: [],
commandOptions: [],
diagnostics: [],
});