prefixed data entity endpoints with /entity

This commit is contained in:
dswbx
2025-02-18 09:12:12 +01:00
parent bd362607ae
commit 3e6d381239
14 changed files with 147 additions and 73 deletions

View File

@@ -22,6 +22,7 @@ export type ApiOptions = {
key?: string;
localStorage?: boolean;
fetcher?: typeof fetch;
verbose?: boolean;
verified?: boolean;
} & (
| {
@@ -196,7 +197,8 @@ export class Api {
host: this.baseUrl,
token: this.token,
headers: this.options.headers,
token_transport: this.token_transport
token_transport: this.token_transport,
verbose: this.options.verbose
});
}