backend-plugin-api: remove WIP permissions from service principal

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-02-10 12:04:39 +01:00
parent c599fe1f7b
commit 99dadac0af
2 changed files with 0 additions and 4 deletions
@@ -125,7 +125,6 @@ export type BackstagePrincipalTypes = {
export type BackstageServicePrincipal = {
type: 'service';
subject: string;
permissions?: string[];
};
// @public (undocumented)
@@ -38,9 +38,6 @@ export type BackstageServicePrincipal = {
// Exact format TBD, possibly 'plugin:<pluginId>' or 'external:<externalServiceId>'
subject: string;
// Not implemented in the first iteration, but this is how we might extend this in the future
permissions?: string[];
};
/**