mirror of
https://github.com/unraid/api.git
synced 2026-01-07 00:59:48 -06:00
fix: eslint fixes stores rd.2
This commit is contained in:
@@ -26,6 +26,15 @@ export type PurchaseAction = Purchase | Redeem | Upgrade;
|
||||
|
||||
export type ServerAction = AccountAction | AccountKeyAction | PurchaseAction;
|
||||
|
||||
export interface UserInfo {
|
||||
'custom:ips_id'?: string;
|
||||
email?: string;
|
||||
email_verifed?: 'true' | 'false';
|
||||
preferred_username?: string;
|
||||
sub?: string;
|
||||
username?: string;
|
||||
}
|
||||
|
||||
export interface ServerData {
|
||||
description?: string;
|
||||
deviceCount?: number;
|
||||
@@ -83,15 +92,6 @@ export type SendPayloads = ExternalActions[] | UpcActions[];
|
||||
|
||||
export type QueryPayloads = ExternalPayload | UpcPayload;
|
||||
|
||||
export interface UserInfo {
|
||||
'custom:ips_id'?: string;
|
||||
email?: string;
|
||||
email_verifed?: 'true' | 'false';
|
||||
preferred_username?: string;
|
||||
sub?: string;
|
||||
username?: string;
|
||||
}
|
||||
|
||||
interface CallbackActionsStore {
|
||||
redirectToCallbackType: (decryptedData: QueryPayloads) => void;
|
||||
encryptionKey: string;
|
||||
|
||||
Reference in New Issue
Block a user