npm package diff
Package: @forge/cli
Versions: 11.2.0 - 11.2.1-next.2-experimental-611b366
File: package/out/command-line/view/install-view.d.ts
Index: package/out/command-line/view/install-view.d.ts
===================================================================
--- package/out/command-line/view/install-view.d.ts
+++ package/out/command-line/view/install-view.d.ts
@@ -1,16 +1,16 @@
-import { UI, AddedScope } from '@forge/cli-shared';
+import { UI, ListScope } from '@forge/cli-shared';
import { AppEnvironmentPermissions, Installation } from '../../service/installation-service';
interface InstallOrUpgradeCommandText {
- listScopes: (scopes: AddedScope[]) => string;
+ listScopes: (scopes: ListScope[]) => string;
listEgressAddresses: (egressAddresses: string[]) => string;
permissionsMismatch: (environment: string) => string;
promptForPermissionsConfirmation: (permissionsMismatchInDevelopment: boolean) => string;
}
export declare class InstallView {
private readonly ui;
constructor(ui: UI);
- promptForPermissionsConfirmation({ scopes, egressAddresses }: AppEnvironmentPermissions, addedScopes: AddedScope[], manifestScopes: string[], manifestEgressAddresses: string[], environment: string, confirmScopes: boolean, nonInteractive: boolean, text: InstallOrUpgradeCommandText): Promise<boolean>;
+ promptForPermissionsConfirmation({ scopes, egressAddresses }: AppEnvironmentPermissions, listScopes: ListScope[], manifestScopes: string[], manifestEgressAddresses: string[], environment: string, confirmScopes: boolean, nonInteractive: boolean, text: InstallOrUpgradeCommandText): Promise<boolean>;
promptForUpgrade(installations: Installation[]): Promise<Installation>;
displayUIKit1DeprecationMessage(modules: string[]): void;
}
export {};