Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/calm-hotels-act.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eight-bikes-prove.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fifty-tips-deliver.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/good-bananas-deny.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/perfect-bottles-raise.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/short-coins-dance.md

This file was deleted.

25 changes: 25 additions & 0 deletions packages/adapter-hono/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# @disci/adapter-hono

## 1.0.0

### Major Changes

- 889a97b: Introduce new adapter for hono framework
- d79ee3c: All provide packages are esm only

They can be only imported using `import` statements and cannot be used with `require` statements.
Check [here](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) for more information.

```diff
- const { createInteractionRequestHandler } = require('@disci/adapter-hono');
+ import { createInteractionRequestHandler } from "@disci/adapter-hono";
```

### Patch Changes

- Updated dependencies [e1a8ffc]
- Updated dependencies [698d46e]
- Updated dependencies [b86e71c]
- Updated dependencies [2f0e179]
- Updated dependencies [d79ee3c]
- [email protected]
2 changes: 1 addition & 1 deletion packages/adapter-hono/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@disci/adapter-hono",
"version": "0.0.0",
"version": "1.0.0",
"description": "DisciJS adapter for hono framework",
"type": "module",
"exports": "./dist/index.js",
Expand Down
22 changes: 22 additions & 0 deletions packages/disci/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# disci

## 1.0.0

### Major Changes

- d79ee3c: All provide packages are esm only

They can be only imported using `import` statements and cannot be used with `require` statements.
Check [here](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c) for more information.

```diff
- const { createInteractionRequestHandler } = require('@disci/adapter-hono');
+ import { createInteractionRequestHandler } from "@disci/adapter-hono";
```

### Minor Changes

- e1a8ffc: Removed replyTimeout and added base functions to BaseInteraction
- 698d46e: Refine returned response type
- b86e71c: Adds support for sending buttons in reply to interactions
- 2f0e179: Return a ApiInteraction on successful interaction and error on other instead of returning a response object
2 changes: 1 addition & 1 deletion packages/disci/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "disci",
"private": true,
"version": "0.0.6-alpha",
"version": "1.0.0",
"description": "Create HTTP webserver powered discord bots",
"type": "module",
"exports": "./dist/index.js",
Expand Down