Method
deleteAttachment
(key: IntegrationTaskKey, params: { id: string })
Source from the content-addressed store, hash-verified
| 253 | } |
| 254 | |
| 255 | deleteAttachment(key: IntegrationTaskKey, params: { id: string }): Promise<DeletePayload> { |
| 256 | return this.runTask(key, (client) => client.deleteAttachment(params.id), { |
| 257 | name: "Delete Attachment", |
| 258 | params, |
| 259 | properties: [{ label: "Attachment ID", text: params.id }], |
| 260 | }); |
| 261 | } |
| 262 | |
| 263 | updateAttachment( |
| 264 | key: IntegrationTaskKey, |
Callers
nothing calls this directly
Tested by
no test coverage detected