(req: AttachmentInitRequest)
| 248 | |
| 249 | async redeliverMessage(conversationId: string, messageId: string): Promise<{ ok: true }> { |
| 250 | return this.httpRequest(`/v1/conversations/${conversationId}/messages/${messageId}/redeliver`, { |
| 251 | method: 'POST', |
| 252 | schema: okResponseSchema, |
| 253 | }); |
| 254 | } |
| 255 | |
| 256 | async executeAction( |
| 257 | conversationId: string, |
| 258 | messageId: string, |
| 259 | req: z.input<typeof executeActionRequestSchema> |
| 260 | ): Promise<ExecuteActionResponse> { |
no test coverage detected