diff --git a/src/auto-reply/reply/route-reply.test.ts b/src/auto-reply/reply/route-reply.test.ts index eea2bc15004..ca369375870 100644 --- a/src/auto-reply/reply/route-reply.test.ts +++ b/src/auto-reply/reply/route-reply.test.ts @@ -67,7 +67,6 @@ const createRegistry = (channels: PluginRegistry["channels"]): PluginRegistry => hooks: [], typedHooks: [], commands: [], - commandOptions: [], channels, providers: [], gatewayHandlers: {}, diff --git a/src/gateway/server-plugins.test.ts b/src/gateway/server-plugins.test.ts index 27d2372ca38..7fb34ff5efc 100644 --- a/src/gateway/server-plugins.test.ts +++ b/src/gateway/server-plugins.test.ts @@ -16,7 +16,6 @@ const createRegistry = (diagnostics: PluginDiagnostic[]): PluginRegistry => ({ typedHooks: [], channels: [], commands: [], - commandOptions: [], providers: [], gatewayHandlers: {}, httpHandlers: [], diff --git a/src/gateway/test-helpers.mocks.ts b/src/gateway/test-helpers.mocks.ts index a422644d97b..19c6d2e91a4 100644 --- a/src/gateway/test-helpers.mocks.ts +++ b/src/gateway/test-helpers.mocks.ts @@ -151,7 +151,6 @@ const createStubPluginRegistry = (): PluginRegistry => ({ cliRegistrars: [], services: [], commands: [], - commandOptions: [], diagnostics: [], }); diff --git a/src/plugins/loader.ts b/src/plugins/loader.ts index 3d3cf129542..c60acba7396 100644 --- a/src/plugins/loader.ts +++ b/src/plugins/loader.ts @@ -176,7 +176,6 @@ function createPluginRecord(params: { cliCommands: [], services: [], commands: [], - commandOptions: [], httpHandlers: 0, hookCount: 0, configSchema: params.configSchema, diff --git a/src/test-utils/channel-plugins.ts b/src/test-utils/channel-plugins.ts index 6d2479c149e..64e24deab52 100644 --- a/src/test-utils/channel-plugins.ts +++ b/src/test-utils/channel-plugins.ts @@ -25,7 +25,6 @@ export const createTestRegistry = (channels: TestChannelRegistration[] = []): Pl cliRegistrars: [], services: [], commands: [], - commandOptions: [], diagnostics: [], });