(wip) init token APIs

This commit is contained in:
Hayden 2022-10-01 14:02:14 -08:00
parent c4916ea762
commit 245591cb23
37 changed files with 4286 additions and 131 deletions

View file

@ -222,6 +222,7 @@ export interface UserRegistration {
groupName: string;
name: string;
password: string;
token: string;
}
export interface ApiSummary {
@ -238,6 +239,17 @@ export interface Build {
version: string;
}
export interface GroupTokenPayload {
expiresAt: string;
uses: number;
}
export interface GroupTokenResponse {
expiresAt: string;
token: string;
uses: number;
}
export interface ItemAttachmentToken {
token: string;
}