@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.
Files changed (52) hide show
  1. package/AccountService/schemas.gen.ts +4 -17
  2. package/AccountService/types.gen.ts +0 -9
  3. package/AdministrationService/schemas.gen.ts +7 -7
  4. package/BackerService/BackerServiceClient.ts +44 -0
  5. package/BackerService/core/ApiError.ts +21 -0
  6. package/BackerService/core/ApiRequestOptions.ts +13 -0
  7. package/BackerService/core/ApiResult.ts +7 -0
  8. package/BackerService/core/BaseHttpRequest.ts +10 -0
  9. package/BackerService/core/CancelablePromise.ts +126 -0
  10. package/BackerService/core/FetchHttpRequest.ts +22 -0
  11. package/BackerService/core/OpenAPI.ts +56 -0
  12. package/BackerService/core/request.ts +341 -0
  13. package/BackerService/index.ts +9 -0
  14. package/BackerService/schemas.gen.ts +8991 -0
  15. package/BackerService/services.gen.ts +270 -0
  16. package/BackerService/types.gen.ts +6611 -0
  17. package/IdentityService/schemas.gen.ts +10 -36
  18. package/IdentityService/services.gen.ts +1 -25
  19. package/IdentityService/types.gen.ts +0 -241
  20. package/MerchantService/MerchantServiceClient.ts +44 -0
  21. package/MerchantService/core/ApiError.ts +21 -0
  22. package/MerchantService/core/ApiRequestOptions.ts +13 -0
  23. package/MerchantService/core/ApiResult.ts +7 -0
  24. package/MerchantService/core/BaseHttpRequest.ts +10 -0
  25. package/MerchantService/core/CancelablePromise.ts +126 -0
  26. package/MerchantService/core/FetchHttpRequest.ts +22 -0
  27. package/MerchantService/core/OpenAPI.ts +56 -0
  28. package/MerchantService/core/request.ts +341 -0
  29. package/MerchantService/index.ts +9 -0
  30. package/MerchantService/schemas.gen.ts +6782 -0
  31. package/MerchantService/services.gen.ts +334 -0
  32. package/MerchantService/types.gen.ts +5088 -0
  33. package/ProjectService/ProjectServiceClient.ts +3 -9
  34. package/ProjectService/schemas.gen.ts +26 -723
  35. package/ProjectService/services.gen.ts +8 -348
  36. package/ProjectService/types.gen.ts +36 -2252
  37. package/SaasService/schemas.gen.ts +5 -5
  38. package/SettingService/SettingServiceClient.ts +53 -53
  39. package/SettingService/core/ApiError.ts +20 -20
  40. package/SettingService/core/ApiRequestOptions.ts +12 -12
  41. package/SettingService/core/ApiResult.ts +6 -6
  42. package/SettingService/core/BaseHttpRequest.ts +9 -9
  43. package/SettingService/core/CancelablePromise.ts +125 -125
  44. package/SettingService/core/FetchHttpRequest.ts +21 -21
  45. package/SettingService/core/OpenAPI.ts +55 -55
  46. package/SettingService/core/request.ts +340 -340
  47. package/SettingService/index.ts +8 -8
  48. package/SettingService/schemas.gen.ts +1521 -1524
  49. package/SettingService/services.gen.ts +316 -316
  50. package/SettingService/types.gen.ts +980 -981
  51. package/generator.mjs +34 -3
  52. 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 { ProjectService } from './services.gen';
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 project: ProjectService;
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.project = new ProjectService(this.request);
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
  }