feat(plugin): add SCUM ownership migration foundation
This commit is contained in:
@@ -78,6 +78,9 @@ export interface PluginPageContract {
|
||||
key: string;
|
||||
title: string;
|
||||
path: string;
|
||||
bundleKey?: string;
|
||||
bundleVersion?: string;
|
||||
bundleIntegritySha256?: string;
|
||||
permissions?: PluginPermission[];
|
||||
bridgeActions?: PluginBridgeAction[];
|
||||
}
|
||||
@@ -101,6 +104,9 @@ export function pluginBridgeManifestContractFromResponse(
|
||||
key: page.key,
|
||||
title: page.title,
|
||||
path: page.path,
|
||||
bundleKey: page.bundleKey,
|
||||
bundleVersion: page.bundleVersion,
|
||||
bundleIntegritySha256: page.bundleIntegritySha256,
|
||||
permissions: page.permissions.filter(isPluginPermission),
|
||||
bridgeActions: page.bridgeActions?.filter(isPluginBridgeAction)
|
||||
})),
|
||||
|
||||
Reference in New Issue
Block a user