├── .eslintrc ├── .github ├── CODEOWNERS ├── pull_request_template.md └── workflows │ ├── lint.yml │ ├── newsfile.yml │ ├── sign-off.yml │ ├── tests.yml │ └── triage-incoming.yml ├── .gitignore ├── .node-version ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── changelog.d └── .gitkeep ├── package.json ├── pyproject.toml ├── scripts ├── changelog-release.sh └── check-newsfragment ├── src ├── AppserviceHttpError.ts ├── app-service-registration.ts ├── app-service.ts └── index.ts ├── test └── test_app-service-registration.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @matrix-org/bridges 2 | -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/newsfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/workflows/newsfile.yml -------------------------------------------------------------------------------- /.github/workflows/sign-off.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/workflows/sign-off.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/triage-incoming.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.github/workflows/triage-incoming.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.tsbuildinfo 2 | .typedoc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/README.md -------------------------------------------------------------------------------- /changelog.d/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/package.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/changelog-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/scripts/changelog-release.sh -------------------------------------------------------------------------------- /scripts/check-newsfragment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/scripts/check-newsfragment -------------------------------------------------------------------------------- /src/AppserviceHttpError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/src/AppserviceHttpError.ts -------------------------------------------------------------------------------- /src/app-service-registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/src/app-service-registration.ts -------------------------------------------------------------------------------- /src/app-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/src/app-service.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/test_app-service-registration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/test/test_app-service-registration.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matrix-org/matrix-appservice-node/HEAD/yarn.lock --------------------------------------------------------------------------------