npm package diff
Package: @forge/cli-shared
Versions: 6.6.1-next.5 - 6.6.1-next.6
File: package/out/ui/command-line-ui.d.ts
Index: package/out/ui/command-line-ui.d.ts
===================================================================
--- package/out/ui/command-line-ui.d.ts
+++ package/out/ui/command-line-ui.d.ts
@@ -31,8 +31,11 @@
promptForSecret(message: string): Promise<string>;
promptForList<T extends string>(message: string, choices: T[], config?: {
format?: (choice: T) => string;
}): Promise<T>;
+ promptForMultiSelectList<T extends string>(message: string, choices: T[], config?: {
+ format?: (choice: T) => string;
+ }): Promise<T[]>;
promptForTable(message: string, infoMessage: string, columns: string[], choices: object[]): Promise<number[]>;
promptForSingleChoiceTable(message: string, infoMessage: string, columns: string[], choices: object[]): Promise<number>;
table<Key extends string>(head: [Key, string][], data: Record<Key, TableCell>[] | undefined | null, { json, emptyMessage, preMessage, postMessage, format, groupRows }?: TableOptions<Key>): void;
private formatTableValue;