@ayasofyazilim/saas 0.0.72 → 0.0.74

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,6 +8,7 @@ import { AbpApplicationConfigurationService } from './services.gen';
8
8
  import { AbpApplicationLocalizationService } from './services.gen';
9
9
  import { AbpTenantService } from './services.gen';
10
10
  import { AuditLogsService } from './services.gen';
11
+ import { CountrySettingService } from './services.gen';
11
12
  import { EmailSettingsService } from './services.gen';
12
13
  import { FeaturesService } from './services.gen';
13
14
  import { GdprRequestService } from './services.gen';
@@ -28,6 +29,7 @@ export class AdministrationServiceClient {
28
29
  public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
29
30
  public readonly abpTenant: AbpTenantService;
30
31
  public readonly auditLogs: AuditLogsService;
32
+ public readonly countrySetting: CountrySettingService;
31
33
  public readonly emailSettings: EmailSettingsService;
32
34
  public readonly features: FeaturesService;
33
35
  public readonly gdprRequest: GdprRequestService;
@@ -63,6 +65,7 @@ export class AdministrationServiceClient {
63
65
  this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
64
66
  this.abpTenant = new AbpTenantService(this.request);
65
67
  this.auditLogs = new AuditLogsService(this.request);
68
+ this.countrySetting = new CountrySettingService(this.request);
66
69
  this.emailSettings = new EmailSettingsService(this.request);
67
70
  this.features = new FeaturesService(this.request);
68
71
  this.gdprRequest = new GdprRequestService(this.request);