Skip to content

Commit 4a73fcc

Browse files
authored
Merge pull request #235 from companieshouse/ncs-670-move-cs01-to-public-api-domain
Add CS01 service to api sdk node
2 parents 89cf0d6 + f919a01 commit 4a73fcc

File tree

6 files changed

+1720
-0
lines changed

6 files changed

+1720
-0
lines changed

src/client.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import PSCDiscrepancyService from "./services/psc-discrepancies/service";
1414
import PSCDiscrepanciesReportService from "./services/psc-discrepancies-report/service";
1515
import TransactionService from "./services/transaction/service";
1616
import 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);
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./types";
2+
export { default as ConfirmationStatementService } from "./service";

0 commit comments

Comments
 (0)