@apistudio/apim-cli
Version:
CLI for API Management Products
20 lines • 709 B
TypeScript
import { GatewaysJson } from '@apic/studio-shared';
export declare const sendToGateway: (gatewayURL: string, gatewayUser: string, gatewaySecret: string, is_mcsp_enabled: boolean, zipBuffer: Buffer, gatewaysJsonContent: GatewaysJson) => Promise<{
success: boolean;
statusCode: number;
message: string;
data: any;
errors: string[];
} | {
success: boolean;
statusCode: any;
message: any;
data: null;
errors: any[];
}>;
export declare function validationManager(url: string, authorizationHeader: string): Promise<{
data: string;
status: number;
}>;
export declare function ParseAndFindResponse(response: any): string[];
//# sourceMappingURL=gateway-service.d.ts.map