UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

23 lines 512 B
/** * Copyright IBM Corp. 2024, 2025 */ export interface OAuthExchange { client_id: string; client_scrt: string; code: string; state: string; grant_type?: string; } export interface OAuthDeviceExchange { client_id: string; device_code: string; grant_type?: string; } export interface OAuthDeviceInfo { device_code: string; user_code: string; verification_uri: string; expires_in: number; interval: number; } //# sourceMappingURL=oauth-exchange.model.d.ts.map