1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 14:53:33 +00:00

[PM-18665] introduce metadata provider (#13744)

This commit is contained in:
✨ Audrey ✨
2025-03-25 17:08:30 -04:00
committed by GitHub
parent abb314a0e7
commit 15b2b46b85
25 changed files with 910 additions and 62 deletions

View File

@@ -1,10 +1,12 @@
import { VendorId } from "../extension";
import { ExtensionPointId } from "./extension-point-id";
import { IntegrationId } from "./integration-id";
/** The capabilities and descriptive content for an integration */
export type IntegrationMetadata = {
/** Uniquely identifies the integrator. */
id: IntegrationId;
id: IntegrationId & VendorId;
/** Brand name of the integrator. */
name: string;