resolve conflicts

This commit is contained in:
Rohit Amarnath 2026-02-21 17:56:04 -05:00
parent a9b378a0b1
commit cd9736f7ad
5 changed files with 5 additions and 0 deletions

View File

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

View File

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

View File

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

View File

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

View File

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