(messageId: string)
| 314 | } |
| 315 | |
| 316 | async getPendingMessage(messageId: string): Promise<MessageView> { |
| 317 | // Runtime-tier (agent-visible): use the agent-reachable messages path, not |
| 318 | // the account-only /v1/reviews/{id}. Resolve the owning inbox first. |
| 319 | const address = await this.ownerOfPending(messageId); |
| 320 | return this.sdk.messages.get(address, messageId); |
| 321 | } |
| 322 | |
| 323 | async approveMessage( |
| 324 | messageId: string, |
no test coverage detected