@forge/cli
12.9.012.10.0-next.4
out/command-line/view/install-view.d.ts~
out/command-line/view/install-view.d.tsModified+3−3
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, ListScope } from '@forge/cli-shared';
+import { UI, ListScope, ListEgress } from '@forge/cli-shared';
import { AppEnvironmentPermissions, Installation } from '../../service/installation-service';
interface InstallOrUpgradeCommandText {
listScopes: (scopes: ListScope[], codeOnlyUpgrade: boolean) => string;
- listEgressAddresses: (egressAddresses: string[], codeOnlyUpgrade: boolean) => string;
+ listEgressAddresses: (egressAddresses: ListEgress[], codeOnlyUpgrade: boolean) => string;
permissionsMismatch: (environment: string) => string;
promptForPermissionsConfirmation: (permissionsMismatchInDevelopment: boolean) => string;
}
export declare class InstallView {
private readonly ui;
constructor(ui: UI);
- promptForPermissionsConfirmation({ scopes, egressAddresses }: AppEnvironmentPermissions, listScopes: ListScope[], manifestScopes: string[], manifestEgressAddresses: string[], environment: string, confirmScopes: boolean, nonInteractive: boolean, text: InstallOrUpgradeCommandText, isPreviousVersion: boolean, isCodeUpgrade?: boolean): Promise<boolean>;
+ promptForPermissionsConfirmation({ scopes, egressAddresses }: AppEnvironmentPermissions, listScopes: ListScope[], listEgress: ListEgress[], manifestScopes: string[], manifestEgressAddresses: string[], environment: string, confirmScopes: boolean, nonInteractive: boolean, text: InstallOrUpgradeCommandText, isPreviousVersion: boolean, isCodeUpgrade?: boolean): Promise<boolean>;
promptForUpgrade(installations: Installation[], isCodeUpgrade?: boolean, version?: string, isLatest?: boolean): Promise<Installation>;
displayUIKit1DeprecationMessage(modules: string[]): void;
}
export {};