@ayasofyazilim/saas 0.0.13 → 0.0.15
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.
- package/AccountService/schemas.gen.ts +4 -17
- package/AccountService/types.gen.ts +0 -9
- package/AdministrationService/schemas.gen.ts +7 -7
- package/BackerService/BackerServiceClient.ts +44 -0
- package/BackerService/core/ApiError.ts +21 -0
- package/BackerService/core/ApiRequestOptions.ts +13 -0
- package/BackerService/core/ApiResult.ts +7 -0
- package/BackerService/core/BaseHttpRequest.ts +10 -0
- package/BackerService/core/CancelablePromise.ts +126 -0
- package/BackerService/core/FetchHttpRequest.ts +22 -0
- package/BackerService/core/OpenAPI.ts +56 -0
- package/BackerService/core/request.ts +341 -0
- package/BackerService/index.ts +9 -0
- package/BackerService/schemas.gen.ts +8991 -0
- package/BackerService/services.gen.ts +270 -0
- package/BackerService/types.gen.ts +6611 -0
- package/IdentityService/schemas.gen.ts +10 -36
- package/IdentityService/services.gen.ts +1 -25
- package/IdentityService/types.gen.ts +0 -241
- package/MerchantService/MerchantServiceClient.ts +44 -0
- package/MerchantService/core/ApiError.ts +21 -0
- package/MerchantService/core/ApiRequestOptions.ts +13 -0
- package/MerchantService/core/ApiResult.ts +7 -0
- package/MerchantService/core/BaseHttpRequest.ts +10 -0
- package/MerchantService/core/CancelablePromise.ts +126 -0
- package/MerchantService/core/FetchHttpRequest.ts +22 -0
- package/MerchantService/core/OpenAPI.ts +56 -0
- package/MerchantService/core/request.ts +341 -0
- package/MerchantService/index.ts +9 -0
- package/MerchantService/schemas.gen.ts +6782 -0
- package/MerchantService/services.gen.ts +334 -0
- package/MerchantService/types.gen.ts +5088 -0
- package/ProjectService/ProjectServiceClient.ts +3 -9
- package/ProjectService/schemas.gen.ts +26 -723
- package/ProjectService/services.gen.ts +8 -348
- package/ProjectService/types.gen.ts +36 -2252
- package/SaasService/schemas.gen.ts +5 -5
- package/SettingService/SettingServiceClient.ts +53 -53
- package/SettingService/core/ApiError.ts +20 -20
- package/SettingService/core/ApiRequestOptions.ts +12 -12
- package/SettingService/core/ApiResult.ts +6 -6
- package/SettingService/core/BaseHttpRequest.ts +9 -9
- package/SettingService/core/CancelablePromise.ts +125 -125
- package/SettingService/core/FetchHttpRequest.ts +21 -21
- package/SettingService/core/OpenAPI.ts +55 -55
- package/SettingService/core/request.ts +340 -340
- package/SettingService/index.ts +8 -8
- package/SettingService/schemas.gen.ts +1521 -1524
- package/SettingService/services.gen.ts +316 -316
- package/SettingService/types.gen.ts +980 -981
- package/generator.mjs +34 -3
- package/package.json +4 -2
|
@@ -6,9 +6,7 @@ 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 {
|
|
10
|
-
import { ProjectSectionService } from './services.gen';
|
|
11
|
-
import { ProjectSectionRelationService } from './services.gen';
|
|
9
|
+
import { AbpTenantService } from './services.gen';
|
|
12
10
|
|
|
13
11
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
14
12
|
|
|
@@ -17,9 +15,7 @@ export class ProjectServiceClient {
|
|
|
17
15
|
public readonly abpApiDefinition: AbpApiDefinitionService;
|
|
18
16
|
public readonly abpApplicationConfiguration: AbpApplicationConfigurationService;
|
|
19
17
|
public readonly abpApplicationLocalization: AbpApplicationLocalizationService;
|
|
20
|
-
public readonly
|
|
21
|
-
public readonly projectSection: ProjectSectionService;
|
|
22
|
-
public readonly projectSectionRelation: ProjectSectionRelationService;
|
|
18
|
+
public readonly abpTenant: AbpTenantService;
|
|
23
19
|
|
|
24
20
|
public readonly request: BaseHttpRequest;
|
|
25
21
|
|
|
@@ -43,8 +39,6 @@ export class ProjectServiceClient {
|
|
|
43
39
|
this.abpApiDefinition = new AbpApiDefinitionService(this.request);
|
|
44
40
|
this.abpApplicationConfiguration = new AbpApplicationConfigurationService(this.request);
|
|
45
41
|
this.abpApplicationLocalization = new AbpApplicationLocalizationService(this.request);
|
|
46
|
-
this.
|
|
47
|
-
this.projectSection = new ProjectSectionService(this.request);
|
|
48
|
-
this.projectSectionRelation = new ProjectSectionRelationService(this.request);
|
|
42
|
+
this.abpTenant = new AbpTenantService(this.request);
|
|
49
43
|
}
|
|
50
44
|
}
|