mirror of
https://github.com/jlengrand/adyen-node-api-library.git
synced 2026-03-10 08:01:20 +00:00
* merge modifications service with checkout service and add cardDetails endpoint to checkout service * add classic integration/payment API types and service to library * add unit test for cardDetails endpoint * fix unit tests for binlookup * PW-6663: Do not run model generation on every PR * remove inconsistent e2e/unit hybrid test for binlookup Co-authored-by: Michael Paul <michael@michaelpaul.com.br>
14 lines
385 B
TypeScript
14 lines
385 B
TypeScript
import Client from "../../../client";
|
|
import Service from "../../../service";
|
|
import Resource from "../../resource";
|
|
|
|
class Authorise3ds2 extends Resource {
|
|
public constructor(service: Service) {
|
|
super(
|
|
service,
|
|
`${service.client.config.paymentEndpoint}/${Client.PAYMENT_API_VERSION}/authorise3ds2`,
|
|
);
|
|
}
|
|
}
|
|
|
|
export default Authorise3ds2; |