From 3ace60a1c8e08223b9e7a9230b6eacdd800019a1 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Mon, 23 Mar 2026 08:30:10 +0100 Subject: [PATCH] fix: expose delete() and update() on ActivityPub syndicator object --- index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.js b/index.js index 4ca609b..0c1c01e 100644 --- a/index.js +++ b/index.js @@ -683,6 +683,9 @@ export default class ActivityPubEndpoint { return undefined; } }, + + delete: async (url) => this.delete(url), + update: async (properties) => this.update(properties), }; }