@ayasofyazilim/saas 0.0.17 → 0.0.19

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.
@@ -6,7 +6,8 @@ import { FetchHttpRequest } from './core/FetchHttpRequest';
6
6
  import { AbpApiDefinitionService } from './services.gen';
7
7
  import { AbpApplicationConfigurationService } from './services.gen';
8
8
  import { AbpApplicationLocalizationService } from './services.gen';
9
- import { AbpTenantService } from './services.gen';
9
+ import { ProjectService } from './services.gen';
10
+ import { ProjectPublicService } from './services.gen';
10
11
 
11
12
  type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
12
13
 
@@ -15,7 +16,8 @@ export class ProjectServiceClient {
15
16
  public readonly abpApiDefinition: AbpApiDefinitionService;
16
17
  public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
17
18
  public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
18
- public readonly abpTenant: AbpTenantService;
19
+ public readonly project: ProjectService;
20
+ public readonly projectPublic: ProjectPublicService;
19
21
 
20
22
  public readonly request: BaseHttpRequest;
21
23
 
@@ -39,6 +41,7 @@ export class ProjectServiceClient {
39
41
  this.abpApiDefinition = new AbpApiDefinitionService(this.request);
40
42
  this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
41
43
  this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
42
- this.abpTenant = new AbpTenantService(this.request);
44
+ this.project = new ProjectService(this.request);
45
+ this.projectPublic = new ProjectPublicService(this.request);
43
46
  }
44
47
  }