Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@
"@types/node": "^24.10.9",
"@types/qrcode": "^1.5.6",
"@types/qrcode-terminal": "^0.12.2",
"@xmtp/node-bindings": "1.11.0-nightly.20260612.578abea",
"@xmtp/node-sdk": "6.1.0-nightly.20260612.578abea",
"@xmtp/node-bindings": "1.11.0-nightly.20260613.32d608d",
"@xmtp/node-sdk": "6.1.0-nightly.20260613.32d608d",
"execa": "^9.6.1",
"oclif": "^4.22.70",
"tsx": "^4.21.0",
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/commands/agent/serve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,7 @@ STDERR: QR code, diagnostic logs (does not interfere with protocol)`;
contentLength: encrypted.payload.length,
filename,
},
false,
{},
);
}

Expand Down Expand Up @@ -1321,7 +1321,7 @@ STDERR: QR code, diagnostic logs (does not interfere with protocol)`;

const remoteMessageId = await conversation.sendRemoteAttachment(
remoteAttachment,
false,
{},
);

this.emit({
Expand Down
2 changes: 1 addition & 1 deletion src/commands/conversation/send-attachment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ without sending (for manual upload workflows).`;
contentLength: encrypted.payload.length,
filename,
},
false,
{},
);

this.output({
Expand Down
2 changes: 1 addition & 1 deletion src/commands/conversation/send-remote-attachment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ command to send the message.`;

const messageId = await conversation.sendRemoteAttachment(
remoteAttachment,
false,
{},
);

this.output({
Expand Down
Loading