@evanp/activitypub-bot 0.19.0 → 0.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.js +2 -0
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -3,3 +3,5 @@ export { default as Bot } from './bot.js'
3
3
  export { default as BotFactory } from './botfactory.js'
4
4
  export { default as OKBot } from './bots/ok.js'
5
5
  export { default as DoNothingBot } from './bots/donothing.js'
6
+ export { default as RelayClientBot } from './bots/relayclient.js'
7
+ export { default as RelayServerBot } from './bots/relayserver.js'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanp/activitypub-bot",
3
- "version": "0.19.0",
3
+ "version": "0.20.0",
4
4
  "description": "server-side ActivityPub bot framework",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",