UNPKG

@putdotio/api-client

Version:

JavaScript SDK for interacting with the put.io API.

60 lines (59 loc) 1.43 kB
import { ISODateString } from 'utils/types'; export interface ILoginResponse { access_token: string; user_id: number; } export interface IValidateTokenResponse { result: boolean; token_id: number; token_scope: 'default' | 'two_factor'; user_id: number; } export declare type TwoFactorRecoveryCodes = { created_at: ISODateString; codes: Array<{ code: string; used_at: ISODateString | null; }>; }; export interface IGenerateTOTPResponse { secret: string; uri: string; recovery_codes: TwoFactorRecoveryCodes; } export interface IVerifyTOTPResponse { token: string; user_id: number; } export declare type OAuthApp = { id: number; name: string; description: string; website: string; has_icon: boolean; }; export declare type MyOAuthApp = OAuthApp & { users: number; callback: string; secret: string; hidden: boolean; }; export declare type PopularOAuthApp = OAuthApp & { maker: string; /** admin only */ hidden?: boolean; /** admin only */ users?: number; }; export declare type OAuthAppSession = { id: number; app_id: OAuthApp['id']; app_name: OAuthApp['name']; active: boolean; client_name: string; ip_address: string; user_agent: string; note: string | null; created_at: string; last_used_at: string; };