UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

23 lines 539 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ 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