Skip to content

Commit

Permalink
niek is now fired, no need to worry
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHawkinss committed Oct 24, 2020
1 parent 60c3ff1 commit 4af1223
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "whmcs-node",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "src/index.ts",
"scripts": {
Expand Down
32 changes: 16 additions & 16 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ export default class WhmcsApi {

constructor(private readonly options: WhmcsSetupOptions) { }

public addons: WhmcsAddonsService = new WhmcsAddonsService(options);
public affiliates: WhmcsAffiliatesService = new WhmcsAffiliatesService(options);
public authentication: WhmcsAuthenticationService = new WhmcsAuthenticationService(options);
public billing: WhmcsBillingService = new WhmcsBillingService(options);
public client: WhmcsClientService = new WhmcsClientService(options);
public domains: WhmcsDomainsService = new WhmcsDomainsService(options);
public module: WhmcsModuleService = new WhmcsModuleService(options);
public orders: WhmcsOrdersService = new WhmcsOrdersService(options);
public products: WhmcsProductsService = new WhmcsProductsService(options);
public projectmanagement: WhmcsProjectManagementService = new WhmcsProjectManagementService(options);
public servers: WhmcsServersService = new WhmcsServersService(options);
public service: WhmcsServiceService = new WhmcsServiceService(options);
public support: WhmcsSupportService = new WhmcsSupportService(options);
public system: WhmcsSystemService = new WhmcsSystemService(options);
public tickets: WhmcsTicketsService = new WhmcsTicketsService(options);
public users: WhmcsUsersService = new WhmcsUsersService(options);
public addons: WhmcsAddonsService = new WhmcsAddonsService(this.options);
public affiliates: WhmcsAffiliatesService = new WhmcsAffiliatesService(this.options);
public authentication: WhmcsAuthenticationService = new WhmcsAuthenticationService(this.options);
public billing: WhmcsBillingService = new WhmcsBillingService(this.options);
public client: WhmcsClientService = new WhmcsClientService(this.options);
public domains: WhmcsDomainsService = new WhmcsDomainsService(this.options);
public module: WhmcsModuleService = new WhmcsModuleService(this.options);
public orders: WhmcsOrdersService = new WhmcsOrdersService(this.options);
public products: WhmcsProductsService = new WhmcsProductsService(this.options);
public projectmanagement: WhmcsProjectManagementService = new WhmcsProjectManagementService(this.options);
public servers: WhmcsServersService = new WhmcsServersService(this.options);
public service: WhmcsServiceService = new WhmcsServiceService(this.options);
public support: WhmcsSupportService = new WhmcsSupportService(this.options);
public system: WhmcsSystemService = new WhmcsSystemService(this.options);
public tickets: WhmcsTicketsService = new WhmcsTicketsService(this.options);
public users: WhmcsUsersService = new WhmcsUsersService(this.options);
}

0 comments on commit 4af1223

Please sign in to comment.