nestjs-connectips
Version:
This is simple wrapper for ConnectIPS Payment @nestjs-connectips. Just ping us or open pull request and contribute :)
23 lines • 934 B
TypeScript
import { ConnectIpsDto, ConnectIpsOptions, ConnectIpsRequestDto, ConnectIpsResponseDto } from "./connectIps.interface";
import { HttpService } from "@nestjs/axios";
export declare class ConnectIpsService {
private readonly options;
private readonly httpService;
private readonly paymentMode;
private readonly paymentUrlTest;
private readonly paymentUrl;
private readonly validateUrlTest;
private readonly validateUrl;
private readonly merchantId;
private readonly appId;
private readonly appName;
private readonly pfxPassword;
private readonly pfxPath;
private readonly basicAuthPassword;
constructor(options: ConnectIpsOptions, httpService: HttpService);
private static getMessage;
init(data: ConnectIpsRequestDto): ConnectIpsDto;
validate(data: any): Promise<ConnectIpsResponseDto>;
private generateSignature;
}
//# sourceMappingURL=connectIps.service.d.ts.map