@@ -3,7 +3,7 @@ import CompanyOfficersService from "./services/company-officers/service";
33import CompanyProfileService from "./services/company-profile/service" ;
44import CompanyPscService from "./services/company-psc/service" ;
55import { LateFilingPenaltyService } from "./services/lfp" ;
6- import { BasketService , OrderService , CertificateService , CertifiedCopiesService , MidService } from "./services/order/" ;
6+ import { BasketService , CheckoutService , OrderService , CertificateService , CertifiedCopiesService , MidService } from "./services/order/" ;
77import { PaymentService } from "./services/payment/" ;
88import CompanyFilingHistoryService from "./services/company-filing-history/service" ;
99import { RefreshTokenService } from "./services/refresh-token" ;
@@ -31,6 +31,7 @@ export default class ApiClient {
3131 public readonly certifiedCopies : CertifiedCopiesService ;
3232 public readonly basket : BasketService ;
3333 public readonly payment : PaymentService ;
34+ public readonly checkout : CheckoutService ;
3435 public readonly order : OrderService ;
3536 public readonly mid : MidService ;
3637 public readonly refreshToken : RefreshTokenService ;
@@ -54,6 +55,7 @@ export default class ApiClient {
5455 this . certifiedCopies = new CertifiedCopiesService ( apiClient ) ;
5556 this . basket = new BasketService ( apiClient ) ;
5657 this . payment = new PaymentService ( apiClient ) ; // TODO split payments url/domain into a separate config item and http client
58+ this . checkout = new CheckoutService ( apiClient ) ;
5759 this . order = new OrderService ( apiClient ) ;
5860 this . mid = new MidService ( apiClient ) ;
5961 this . alphabeticalSearch = new AlphabeticalSearchService ( apiClient ) ;
0 commit comments