1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-02 03:21:19 +00:00

add autofill targeting rules state to domain settings service

This commit is contained in:
Jonathan Prusik
2025-10-07 17:54:22 -04:00
parent 4a71e7a65a
commit 6f0e14384c
4 changed files with 80 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
/** @deprecated use `AutofillFieldQualifier` in `libs/common/src/autofill/constants` instead */
export const AutofillFieldQualifier = {
password: "password",
newPassword: "newPassword",
@@ -26,5 +27,6 @@ export const AutofillFieldQualifier = {
identityUsername: "identityUsername",
} as const;
/** @deprecated use `AutofillFieldQualifierType` in `libs/common/src/autofill/types` instead */
export type AutofillFieldQualifierType =
(typeof AutofillFieldQualifier)[keyof typeof AutofillFieldQualifier];