Paul 676cf920c9 0.5.1-alpha.8
Route: Added `Edit Role`.
Structure: Moved `Colour` into its own type.
Fix: Missing bodies on two auth routes.
Fix: First entry to edits should be optional.
Library: Ignore temp file.
Library: Add guidelines.
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00
2021-07-10 23:11:03 +01:00
2021-07-12 20:32:18 +01:00
2021-07-12 20:32:18 +01:00

Revolt API

Commit Style

If publishing a new version of the spec, the first line should always be the API version.

0.5.0-alpha.0
Commit description.
Line 2.

For any subsequent lines, prepend the relevant text:

Prefix Description
Structure Added a new data structure to the API.
Route Added a new route to the API.
Change Changed an existing route or data structure.
Fix Fixes to structures / routes.
Deprecation Use when deprecating a structure or route.
Library Changes to this repo unrelated to the API.

Add new prefixes to this list as necessary.

Tip

For faster compile times when working on API routes, comment out the categories you don't care about.

// src/routes/index.ts
export async function load() {
    // await import('./core.js');
    // await import('./users.js');
    // await import('./channels.js');
    await import('./servers.js');
}

await load();
S
Description
Typescript typings and OpenAPI v3 generator for the Stoat API.
Readme MIT 1.7 MiB
Languages
TypeScript 98.1%
JavaScript 1.8%