mirror of
https://github.com/spacebarchat/server.git
synced 2026-07-28 16:19:25 +00:00
- Aded /users/@me/connections/:connection_name/:connection_id/access-token - Replaced `access_token` property on ConnectedAccount with `token_data` object for refreshing tokens - Made a common interface for connection things like ComonOAuthTokenResponse - Added `RefreshableConnection` class - Added token refresh to Spotify connection (disabled)
17 lines
348 B
TypeScript
17 lines
348 B
TypeScript
export interface ConnectedAccountCommonOAuthTokenResponse {
|
|
access_token: string;
|
|
token_type: string;
|
|
scope: string;
|
|
refresh_token?: string;
|
|
expires_in?: number;
|
|
}
|
|
|
|
export interface ConnectedAccountTokenData {
|
|
access_token: string;
|
|
token_type?: string;
|
|
scope?: string;
|
|
refresh_token?: string;
|
|
expires_in?: number;
|
|
expires_at?: number;
|
|
}
|