diff --git a/apps/cli/src/tools/send/commands/get.command.ts b/apps/cli/src/tools/send/commands/get.command.ts index b577e911a3d..b8254aec48a 100644 --- a/apps/cli/src/tools/send/commands/get.command.ts +++ b/apps/cli/src/tools/send/commands/get.command.ts @@ -21,7 +21,6 @@ import { SendResponse } from "../models/send.response"; import { SendReceiveCommand } from "./receive.command"; - export class SendGetCommand extends DownloadCommand { constructor( private sendService: SendService, diff --git a/apps/cli/src/tools/send/send.program.ts b/apps/cli/src/tools/send/send.program.ts index b4df4a9c6c7..f32fc246928 100644 --- a/apps/cli/src/tools/send/send.program.ts +++ b/apps/cli/src/tools/send/send.program.ts @@ -163,7 +163,7 @@ export class SendProgram extends BaseProgram { return new Command("get") .arguments("") .description("Get Sends owned by you.") - .option("--file", "Specifies to return the file content of a Send") + .option("--file", "Specifies to return the file content of a Send", true) .option("--password ", "Password needed to access the Send.") .option("--passwordenv ", "Environment variable storing the Send's password") .option( @@ -172,6 +172,7 @@ export class SendProgram extends BaseProgram { ) .option("--obj", "Return the Send's json object rather than the Send's content") .option("--output ", "Specify a file path to save a File-type Send to") + .option("--raw", "Return the raw content of a Send", true) .option("--text", "Specifies to return the text content of a Send") .on("--help", () => { writeLn("");