Add domain filter to cookie template function (#452)

This commit is contained in:
Gregory Schier
2026-05-07 07:06:21 -07:00
committed by GitHub
parent 41fe01adb9
commit 50f33b45b9
7 changed files with 119 additions and 14 deletions

View File

@@ -396,7 +396,7 @@ description?: string, };
export type GenericCompletionOption = { label: string, detail?: string, info?: string, type?: CompletionOptionType, boost?: number, };
export type GetCookieValueRequest = { name: string, };
export type GetCookieValueRequest = { name: string, domain?: string | null, };
export type GetCookieValueResponse = { value: string | null, };