mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
[PM-8280] email forwarders (#11563)
* forwarder lookup and generation support * localize algorithm names and descriptions in the credential generator service * add encryption support to UserStateSubject * move generic rx utilities to common * move icon button labels to generator configurations
This commit is contained in:
@@ -1,7 +1,13 @@
|
||||
import { Opaque } from "type-fest";
|
||||
|
||||
export const IntegrationIds = [
|
||||
"anonaddy",
|
||||
"duckduckgo",
|
||||
"fastmail",
|
||||
"firefoxrelay",
|
||||
"forwardemail",
|
||||
"simplelogin",
|
||||
] as const;
|
||||
|
||||
/** Identifies a vendor integrated into bitwarden */
|
||||
export type IntegrationId = Opaque<
|
||||
"anonaddy" | "duckduckgo" | "fastmail" | "firefoxrelay" | "forwardemail" | "simplelogin",
|
||||
"IntegrationId"
|
||||
>;
|
||||
export type IntegrationId = Opaque<(typeof IntegrationIds)[number], "IntegrationId">;
|
||||
|
||||
Reference in New Issue
Block a user