@ayasofyazilim/saas 0.0.10 → 0.0.12
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 +2853 -67
- package/AccountService/services.gen.ts +28 -28
- package/AccountService/types.gen.ts +7294 -667
- package/AdministrationService/schemas.gen.ts +3664 -73
- package/AdministrationService/services.gen.ts +32 -32
- package/AdministrationService/types.gen.ts +6780 -623
- package/IdentityService/schemas.gen.ts +3506 -76
- package/IdentityService/services.gen.ts +69 -69
- package/IdentityService/types.gen.ts +13316 -1335
- package/ProjectService/ProjectServiceClient.ts +0 -3
- package/ProjectService/schemas.gen.ts +2989 -163
- package/ProjectService/services.gen.ts +16 -63
- package/ProjectService/types.gen.ts +3550 -379
- package/SaasService/SaasServiceClient.ts +65 -0
- package/SaasService/core/ApiError.ts +21 -0
- package/SaasService/core/ApiRequestOptions.ts +13 -0
- package/SaasService/core/ApiResult.ts +7 -0
- package/SaasService/core/BaseHttpRequest.ts +10 -0
- package/SaasService/core/CancelablePromise.ts +126 -0
- package/SaasService/core/FetchHttpRequest.ts +22 -0
- package/SaasService/core/OpenAPI.ts +56 -0
- package/SaasService/core/request.ts +341 -0
- package/SaasService/index.ts +9 -0
- package/SaasService/schemas.gen.ts +5279 -0
- package/SaasService/services.gen.ts +1326 -0
- package/SaasService/types.gen.ts +9053 -0
- package/generator.mjs +61 -0
- package/package.json +27 -33
|
@@ -9,7 +9,6 @@ import { AbpApplicationLocalizationService } from './services.gen';
|
|
|
9
9
|
import { ProjectService } from './services.gen';
|
|
10
10
|
import { ProjectSectionService } from './services.gen';
|
|
11
11
|
import { ProjectSectionRelationService } from './services.gen';
|
|
12
|
-
import { ProjectServiceService } from './services.gen';
|
|
13
12
|
|
|
14
13
|
type HttpRequestConstructor = new (config: OpenAPIConfig) => BaseHttpRequest;
|
|
15
14
|
|
|
@@ -21,7 +20,6 @@ export class ProjectServiceClient {
|
|
|
21
20
|
public readonly project: ProjectService;
|
|
22
21
|
public readonly projectSection: ProjectSectionService;
|
|
23
22
|
public readonly projectSectionRelation: ProjectSectionRelationService;
|
|
24
|
-
public readonly projectService: ProjectServiceService;
|
|
25
23
|
|
|
26
24
|
public readonly request: BaseHttpRequest;
|
|
27
25
|
|
|
@@ -48,6 +46,5 @@ export class ProjectServiceClient {
|
|
|
48
46
|
this.project = new ProjectService(this.request);
|
|
49
47
|
this.projectSection = new ProjectSectionService(this.request);
|
|
50
48
|
this.projectSectionRelation = new ProjectSectionRelationService(this.request);
|
|
51
|
-
this.projectService = new ProjectServiceService(this.request);
|
|
52
49
|
}
|
|
53
50
|
}
|