@@ -14,6 +14,7 @@ import PSCDiscrepancyService from "./services/psc-discrepancies/service";
1414import PSCDiscrepanciesReportService from "./services/psc-discrepancies-report/service" ;
1515import TransactionService from "./services/transaction/service" ;
1616import CompanyPscStatementsService from "./services/company-psc-statements/service" ;
17+ import { ConfirmationStatementService } from "./services/confirmation-statement" ;
1718
1819/**
1920 * ApiClient is the class that all service objects hang off.
@@ -25,6 +26,7 @@ export default class ApiClient {
2526 public readonly companyProfile : CompanyProfileService ;
2627 public readonly companyPsc : CompanyPscService ;
2728 public readonly companyPscStatements : CompanyPscStatementsService ;
29+ public readonly confirmationStatementService : ConfirmationStatementService ;
2830 public readonly certificate : CertificateService ;
2931 public readonly certifiedCopies : CertifiedCopiesService ;
3032 public readonly basket : BasketService ;
@@ -47,6 +49,7 @@ export default class ApiClient {
4749 this . companyProfile = new CompanyProfileService ( apiClient ) ;
4850 this . companyPsc = new CompanyPscService ( apiClient ) ;
4951 this . companyPscStatements = new CompanyPscStatementsService ( apiClient ) ;
52+ this . confirmationStatementService = new ConfirmationStatementService ( apiClient ) ;
5053 this . certificate = new CertificateService ( apiClient ) ;
5154 this . certifiedCopies = new CertifiedCopiesService ( apiClient ) ;
5255 this . basket = new BasketService ( apiClient ) ;
0 commit comments