1
0
mirror of https://github.com/bitwarden/browser synced 2026-03-02 11:31:44 +00:00

Revert "factor out generator metadata provider"

This reverts commit 3f40d72b5c.
This commit is contained in:
✨ Audrey ✨
2025-02-28 11:56:39 -05:00
parent 4347f82c06
commit 5c6a6da101
18 changed files with 418 additions and 49 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;