├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── biome.json ├── bun.lock ├── deno.json ├── package.json ├── scripts ├── generate-changelog.ts └── release-jsr.ts ├── src ├── bot.ts ├── composer.ts ├── errors.ts ├── filters.ts ├── index.ts ├── plugin.ts ├── queue.ts ├── types.ts ├── updates.ts ├── utils.internal.ts ├── utils.ts └── webhook │ ├── adapters.ts │ └── index.ts ├── tests ├── types │ ├── index.ts │ └── triggers.ts ├── updates.test.ts └── utils.test.ts └── tsconfig.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/README.md -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/biome.json -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/bun.lock -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/deno.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-changelog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/scripts/generate-changelog.ts -------------------------------------------------------------------------------- /scripts/release-jsr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/scripts/release-jsr.ts -------------------------------------------------------------------------------- /src/bot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/bot.ts -------------------------------------------------------------------------------- /src/composer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/composer.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/filters.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/plugin.ts -------------------------------------------------------------------------------- /src/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/queue.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/updates.ts -------------------------------------------------------------------------------- /src/utils.internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/utils.internal.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/utils.ts -------------------------------------------------------------------------------- /src/webhook/adapters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/webhook/adapters.ts -------------------------------------------------------------------------------- /src/webhook/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/src/webhook/index.ts -------------------------------------------------------------------------------- /tests/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/tests/types/index.ts -------------------------------------------------------------------------------- /tests/types/triggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/tests/types/triggers.ts -------------------------------------------------------------------------------- /tests/updates.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/tests/updates.test.ts -------------------------------------------------------------------------------- /tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/tests/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gramiojs/gramio/HEAD/tsconfig.json --------------------------------------------------------------------------------