@@ -46,7 +46,7 @@ import { createServiceIdentifier } from '../../src/util/common/services';
4646import { ChatReferenceDiagnostic } from '../../src/util/common/test/shims/chatTypes' ;
4747import { disposableTimeout , IntervalTimer } from '../../src/util/vs/base/common/async' ;
4848import { CancellationToken } from '../../src/util/vs/base/common/cancellation' ;
49- import { Emitter } from '../../src/util/vs/base/common/event' ;
49+ import { Event , Emitter } from '../../src/util/vs/base/common/event' ;
5050import { Lazy } from '../../src/util/vs/base/common/lazy' ;
5151import { Disposable , DisposableStore , IReference } from '../../src/util/vs/base/common/lifecycle' ;
5252import { URI } from '../../src/util/vs/base/common/uri' ;
@@ -76,9 +76,13 @@ export class MockChatPromptFileService extends Disposable implements IChatPrompt
7676 customAgents : ChatResource [ ] = [ ] ;
7777 instructions : ChatResource [ ] = [ ] ;
7878 skills : ChatResource [ ] = [ ] ;
79+ readonly hooks : readonly ChatResource [ ] = [ ] ;
80+ readonly plugins : readonly ChatResource [ ] = [ ] ;
7981 private readonly _onDidChangeCustomAgents = this . _register ( new Emitter < void > ( ) ) ;
8082 private readonly _onDidChangeInstructions = this . _register ( new Emitter < void > ( ) ) ;
8183 private readonly _onDidChangeSkills = this . _register ( new Emitter < void > ( ) ) ;
84+ readonly onDidChangeHooks = Event . None ;
85+ readonly onDidChangePlugins = Event . None ;
8286
8387 get onDidChangeCustomAgents ( ) {
8488 return this . _onDidChangeCustomAgents . event ;
0 commit comments