UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

27 lines (24 loc) 613 B
/** * Copyright Super iPaaS Integration LLC, an IBM Company 2024 */ import {GenericAssetAdaptor} from '@apic/api-model/adaptor/GenericAssetAdaptor.js'; export interface Gateway { gatewayURL: string; gatewayUser: string; gatewaySecret: string; is_mcsp_enabled: boolean; } export interface GatewaysJson { gateways: Gateway[]; overwrite: string; skip: string; } export interface SpecObject { [key: string]: SpecObject | string; } export type YamlContent=Required<GenericAssetAdaptor>; export interface ErrorResponse { code: string; field: string; description: string; }