Skip to content

Commit a2f4c09

Browse files
Copilotrzhao271
andauthored
npm audit fix: update lodash from 4.17.23 to 4.18.1
Agent-Logs-Url: https://github.com/microsoft/vscode-pull-request-github/sessions/ecf3d0d5-3976-49c9-9dec-71dd7c029aa0 Co-authored-by: rzhao271 <7199958+rzhao271@users.noreply.github.com>
1 parent aa7eb41 commit a2f4c09

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

package-lock.json

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/@types/vscode.proposed.chatParticipantPrivate.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,14 @@ declare module 'vscode' {
127127
* Whether any hooks are enabled for this request.
128128
*/
129129
readonly hasHooksEnabled: boolean;
130+
131+
/**
132+
* When true, this request was initiated by the system (e.g. a terminal
133+
* command completion notification) rather than by the user typing a
134+
* message. Extensions can use this to render the prompt differently
135+
* and skip billing.
136+
*/
137+
readonly isSystemInitiated?: boolean;
130138
}
131139

132140
export enum ChatRequestEditedFileEventKind {

src/@types/vscode.proposed.chatSessionsProvider.d.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -682,27 +682,11 @@ declare module 'vscode' {
682682
*/
683683
readonly when?: string;
684684

685-
/**
686-
* When true, displays a searchable QuickPick with a "See more..." option.
687-
* Recommended for option groups with additional async items (e.g., repositories).
688-
*/
689-
readonly searchable?: boolean;
690-
691685
/**
692686
* An icon for the option group shown in UI.
693687
*/
694688
readonly icon?: ThemeIcon;
695689

696-
/**
697-
* Handler for dynamic search when `searchable` is true.
698-
* Called when the user types in the searchable QuickPick or clicks "See more..." to load additional items.
699-
*
700-
* @param query The search query entered by the user. Empty string for initial load.
701-
* @param token A cancellation token.
702-
* @returns Additional items to display in the searchable QuickPick.
703-
*/
704-
readonly onSearch?: (query: string, token: CancellationToken) => Thenable<ChatSessionProviderOptionItem[]>;
705-
706690
/**
707691
* Optional commands.
708692
*

0 commit comments

Comments
 (0)