mirror of
https://github.com/bitwarden/browser
synced 2026-02-27 10:03:23 +00:00
* Add way to convert TaskSchedulerService to RX Scheduler * Add docs to `toScheduler` * Rollback combined subscription change. * Move to barrel file * Expand `toScheduler` documentation * Add TaskName to Doc Example * Ensure register is called on service worker start
14 lines
677 B
TypeScript
14 lines
677 B
TypeScript
export const ScheduledTaskNames = {
|
|
generatePasswordClearClipboardTimeout: "generatePasswordClearClipboardTimeout",
|
|
systemClearClipboardTimeout: "systemClearClipboardTimeout",
|
|
loginStrategySessionTimeout: "loginStrategySessionTimeout",
|
|
notificationsReconnectTimeout: "notificationsReconnectTimeout",
|
|
fido2ClientAbortTimeout: "fido2ClientAbortTimeout",
|
|
scheduleNextSyncInterval: "scheduleNextSyncInterval",
|
|
eventUploadsInterval: "eventUploadsInterval",
|
|
vaultTimeoutCheckInterval: "vaultTimeoutCheckInterval",
|
|
clearPopupViewCache: "clearPopupViewCache",
|
|
} as const;
|
|
|
|
export type ScheduledTaskName = (typeof ScheduledTaskNames)[keyof typeof ScheduledTaskNames];
|