fake-toss-payments-server
Version:
Fake toss-payments server for testing
175 lines (174 loc) • 7.68 kB
TypeScript
/**
* @packageDocumentation
* @module api.functional.v1.payments
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
import type { IConnection } from "@nestia/fetcher";
import type { ITossCardPayment } from "../../../structures/ITossCardPayment";
import type { ITossPayment } from "../../../structures/ITossPayment";
import type { ITossPaymentCancel } from "../../../structures/ITossPaymentCancel";
/**
* 결제 정보 조회하기.
*
* `payments.at` 은 결제 정보를 조회하는 함수이다.
*
* 주로 클라이언트 어플리케이션이 토스 페이먼츠가 자체적으로 제공하는 결제 창을 사용하는
* 경우, 그래서 프론트 어플리케이션이 귀하의 백엔드 서버에 `paymentKey` 등 극히 일부의
* 식별자 정보만을 전달해주어, 상세 결제 정보가 필요할 때 사용한다.
*
* 참고로 토스 페이먼츠는 다른 결제 PG 사들과 다르게, 클라이언트 어플리케이션에서 토스
* 페이먼츠의 결제 창을 이용하여 진행한 결제가 바로 확정되는 것은 아니다. 귀사의 백엔드
* 서버가 현재의 `payments.at` 을 통하여 해당 결제 정보를 확인하고, {@link approve} 를
* 호출하여 직접 승인하기 전까지, 해당 결제는 확정되지 않으니, 이 점에 유의하기 바란다.
*
* @param paymentKey 결제 정보의 {@link ITossPayment.paymentKey }
* @returns 결제 정보
* @author Samchon
*
* @controller FakeTossPaymentsController.at
* @path GET /v1/payments/:paymentKey
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
export declare function at(connection: IConnection, paymentKey: string): Promise<at.Output>;
export declare namespace at {
type Output = ITossPayment;
const METADATA: {
readonly method: "GET";
readonly path: "/v1/payments/:paymentKey";
readonly request: null;
readonly response: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly status: 200;
};
const path: (paymentKey: string) => string;
}
/**
* 카드로 결제하기.
*
* `payments.key_in` 은 카드를 이용한 결제를 할 때 호출되는 API 함수이다.
*
* 참고로 `payments.key_in` 는 클라이언트 어플리케이션이 토스 페이먼츠가 자체적으로
* 제공하는 결제 창을 사용하는 경우, 귀하의 백엔드 서버가 이를 실 서비스에서 호출하는
* 일은 없을 것이다. 다만, 고객이 카드를 통하여 결제하는 상황을 시뮬레이션하기 위하여,
* 테스트 자동화 프로그램 수준에서 사용될 수는 있다.
*
* 그리고 귀하의 백엔드 서버가 `payments.key-in` 을 직접 호출하는 경우, 토스 페이먼츠
* 서버는 이를 완전히 승인된 결제로 보고 바로 확정한다. 때문에 `payments.key-in` 을
* 직접 호출하는 경우, 토스 페이먼츠의 결제 창을 이용하여 별도의 {@link approve} 가
* 필요한 때 대비, 훨씬 더 세심한 주의가 요구된다.
*
* 더하여 만약 귀하의 백엔드 서버가 `fake-toss-payments-server` 를 이용하여 고객의
* 카드 결제를 시뮬레이션하는 경우, {@link ITossCardPayment.ICreate.__approved} 값을
* `false` 로 하여 카드 결제의 확정을 고의로 회피할 수 있다. 이를 통하여 토스
* 페이먼츠의 결제 창을 이용한 카드 결제의 경우, 별도의 {@link approve} 가 필요한
* 상황을 시뮬레이션 할 수 있다.
*
* @param input 카드 결제 입력 정보
* @returns 카드 결제 정보
* @security basic
* @author Samchon
*
* @controller FakeTossPaymentsController.key_in
* @path POST /v1/payments/key-in
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
export declare function key_in(connection: IConnection, input: ITossCardPayment.ICreate): Promise<key_in.Output>;
export declare namespace key_in {
type Input = ITossCardPayment.ICreate;
type Output = ITossCardPayment;
const METADATA: {
readonly method: "POST";
readonly path: "/v1/payments/key-in";
readonly request: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly response: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly status: 201;
};
const path: () => string;
}
/**
* 결제 승인하기.
*
* 토스 페이먼츠는 귀사의 백엔드에서 일어난 결제가 아닌 프론트 어플리케이션의 결제 창에서
* 이루어진 결제의 경우, 해당 서비스으 백엔드 서버로부터 결제를 승인받기 전까지, 이를
* 확정하지 않는다. `payments.approve` 는 바로 이러한 상황에서, 해당 결제를 승인해주는
* 함수이다.
*
* 만일 귀하가 `fake-toss-payments-server` 를 이용하여 결제를 시뮬레이션하는 경우라면,
* 결제 관련 API 를 호출함에 있어 {@link ITossCardPayment.ICreate.__approved} 내지
* {@link ITossVirtualAccountPayment.ICreate.__approved} 를 `false` 로 함으로써, 별도
* 승인이 필요한 이러한 상황을 시뮬레이션 할 수 있다.
*
* @param paymentKey 대상 결제의 {@link ITossPayment.paymentKey }
* @param input 주문 정보 확인
* @returns 승인된 결제 정보
* @security basic
* @author Samchon
*
* @controller FakeTossPaymentsController.approve
* @path POST /v1/payments/:paymentKey
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
export declare function approve(connection: IConnection, paymentKey: string, input: ITossPayment.IApproval): Promise<approve.Output>;
export declare namespace approve {
type Input = ITossPayment.IApproval;
type Output = ITossPayment;
const METADATA: {
readonly method: "POST";
readonly path: "/v1/payments/:paymentKey";
readonly request: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly response: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly status: 201;
};
const path: (paymentKey: string) => string;
}
/**
* 결제 취소하기.
*
* `payments.cancel` 은 결제를 취소하는 API 이다.
*
* 결제 취소 입력 정보 {@link ITossPaymentCancel.ICreate} 에는 취소 사유를 비롯하여,
* 고객에게 환불해 줄 금액과 부가세 및 필요시 환불 계좌 정보 등을 입력하게 되어있다.
*
* @param paymentKey 결제 정보의 {@link ITossPayment.paymentKey }
* @param input 취소 입력 정보
* @returns 취소된 결제 정보
* @security basic
* @author Samchon
*
* @controller FakeTossPaymentsController.cancel
* @path POST /v1/payments/:paymentKey/cancel
* @nestia Generated by Nestia - https://github.com/samchon/nestia
*/
export declare function cancel(connection: IConnection, paymentKey: string, input: ITossPaymentCancel.ICreate): Promise<cancel.Output>;
export declare namespace cancel {
type Input = ITossPaymentCancel.ICreate;
type Output = ITossPayment;
const METADATA: {
readonly method: "POST";
readonly path: "/v1/payments/:paymentKey/cancel";
readonly request: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly response: {
readonly type: "application/json";
readonly encrypted: false;
};
readonly status: 201;
};
const path: (paymentKey: string) => string;
}