@ayasofyazilim/saas 0.0.11 → 0.0.13
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 +7252 -522
- package/AdministrationService/schemas.gen.ts +3664 -73
- package/AdministrationService/services.gen.ts +32 -32
- package/AdministrationService/types.gen.ts +6741 -442
- package/IdentityService/schemas.gen.ts +3506 -76
- package/IdentityService/services.gen.ts +69 -69
- package/IdentityService/types.gen.ts +13238 -892
- package/ProjectService/schemas.gen.ts +2802 -55
- package/ProjectService/services.gen.ts +15 -15
- package/ProjectService/types.gen.ts +3483 -199
- package/SaasService/schemas.gen.ts +3204 -73
- package/SaasService/services.gen.ts +36 -36
- package/SaasService/types.gen.ts +6780 -462
- package/SettingService/SettingServiceClient.ts +53 -0
- package/SettingService/core/ApiError.ts +21 -0
- package/SettingService/core/ApiRequestOptions.ts +13 -0
- package/SettingService/core/ApiResult.ts +7 -0
- package/SettingService/core/BaseHttpRequest.ts +10 -0
- package/SettingService/core/CancelablePromise.ts +126 -0
- package/SettingService/core/FetchHttpRequest.ts +22 -0
- package/SettingService/core/OpenAPI.ts +56 -0
- package/SettingService/core/request.ts +341 -0
- package/SettingService/index.ts +9 -0
- package/SettingService/schemas.gen.ts +1525 -0
- package/SettingService/services.gen.ts +317 -0
- package/SettingService/types.gen.ts +982 -0
- package/generator.mjs +67 -0
- package/package.json +28 -30
|
@@ -10,7 +10,7 @@ export class AbpApiDefinitionService {
|
|
|
10
10
|
/**
|
|
11
11
|
* @param data The data for the request.
|
|
12
12
|
* @param data.includeTypes
|
|
13
|
-
* @returns
|
|
13
|
+
* @returns unknown Success
|
|
14
14
|
* @throws ApiError
|
|
15
15
|
*/
|
|
16
16
|
public getApiAbpApiDefinition(data: GetApiAbpApiDefinitionData = {}): CancelablePromise<GetApiAbpApiDefinitionResponse> {
|
|
@@ -39,7 +39,7 @@ export class AbpApplicationConfigurationService {
|
|
|
39
39
|
/**
|
|
40
40
|
* @param data The data for the request.
|
|
41
41
|
* @param data.includeLocalizationResources
|
|
42
|
-
* @returns
|
|
42
|
+
* @returns unknown Success
|
|
43
43
|
* @throws ApiError
|
|
44
44
|
*/
|
|
45
45
|
public getApiAbpApplicationConfiguration(data: GetApiAbpApplicationConfigurationData = {}): CancelablePromise<GetApiAbpApplicationConfigurationResponse> {
|
|
@@ -69,7 +69,7 @@ export class AbpApplicationLocalizationService {
|
|
|
69
69
|
* @param data The data for the request.
|
|
70
70
|
* @param data.cultureName
|
|
71
71
|
* @param data.onlyDynamics
|
|
72
|
-
* @returns
|
|
72
|
+
* @returns unknown Success
|
|
73
73
|
* @throws ApiError
|
|
74
74
|
*/
|
|
75
75
|
public getApiAbpApplicationLocalization(data: GetApiAbpApplicationLocalizationData): CancelablePromise<GetApiAbpApplicationLocalizationResponse> {
|
|
@@ -99,7 +99,7 @@ export class ProjectService {
|
|
|
99
99
|
/**
|
|
100
100
|
* @param data The data for the request.
|
|
101
101
|
* @param data.requestBody
|
|
102
|
-
* @returns
|
|
102
|
+
* @returns unknown Success
|
|
103
103
|
* @throws ApiError
|
|
104
104
|
*/
|
|
105
105
|
public postApiProjectServiceProjects(data: PostApiProjectServiceProjectsData = {}): CancelablePromise<PostApiProjectServiceProjectsResponse> {
|
|
@@ -124,7 +124,7 @@ export class ProjectService {
|
|
|
124
124
|
* @param data.sorting
|
|
125
125
|
* @param data.skipCount
|
|
126
126
|
* @param data.maxResultCount
|
|
127
|
-
* @returns
|
|
127
|
+
* @returns unknown Success
|
|
128
128
|
* @throws ApiError
|
|
129
129
|
*/
|
|
130
130
|
public getApiProjectServiceProjects(data: GetApiProjectServiceProjectsData = {}): CancelablePromise<GetApiProjectServiceProjectsResponse> {
|
|
@@ -174,7 +174,7 @@ export class ProjectService {
|
|
|
174
174
|
/**
|
|
175
175
|
* @param data The data for the request.
|
|
176
176
|
* @param data.id
|
|
177
|
-
* @returns
|
|
177
|
+
* @returns unknown Success
|
|
178
178
|
* @throws ApiError
|
|
179
179
|
*/
|
|
180
180
|
public getApiProjectServiceProjectsById(data: GetApiProjectServiceProjectsByIdData): CancelablePromise<GetApiProjectServiceProjectsByIdResponse> {
|
|
@@ -199,7 +199,7 @@ export class ProjectService {
|
|
|
199
199
|
* @param data The data for the request.
|
|
200
200
|
* @param data.id
|
|
201
201
|
* @param data.requestBody
|
|
202
|
-
* @returns
|
|
202
|
+
* @returns unknown Success
|
|
203
203
|
* @throws ApiError
|
|
204
204
|
*/
|
|
205
205
|
public putApiProjectServiceProjectsById(data: PutApiProjectServiceProjectsByIdData): CancelablePromise<PutApiProjectServiceProjectsByIdResponse> {
|
|
@@ -230,7 +230,7 @@ export class ProjectSectionService {
|
|
|
230
230
|
/**
|
|
231
231
|
* @param data The data for the request.
|
|
232
232
|
* @param data.requestBody
|
|
233
|
-
* @returns
|
|
233
|
+
* @returns unknown Success
|
|
234
234
|
* @throws ApiError
|
|
235
235
|
*/
|
|
236
236
|
public postApiProjectSectionServiceProjectSection(data: PostApiProjectSectionServiceProjectSectionData = {}): CancelablePromise<PostApiProjectSectionServiceProjectSectionResponse> {
|
|
@@ -279,7 +279,7 @@ export class ProjectSectionService {
|
|
|
279
279
|
* @param data.sorting
|
|
280
280
|
* @param data.skipCount
|
|
281
281
|
* @param data.maxResultCount
|
|
282
|
-
* @returns
|
|
282
|
+
* @returns unknown Success
|
|
283
283
|
* @throws ApiError
|
|
284
284
|
*/
|
|
285
285
|
public getApiProjectSectionServiceProjectSection(data: GetApiProjectSectionServiceProjectSectionData = {}): CancelablePromise<GetApiProjectSectionServiceProjectSectionResponse> {
|
|
@@ -306,7 +306,7 @@ export class ProjectSectionService {
|
|
|
306
306
|
* @param data The data for the request.
|
|
307
307
|
* @param data.id
|
|
308
308
|
* @param data.requestBody
|
|
309
|
-
* @returns
|
|
309
|
+
* @returns unknown Success
|
|
310
310
|
* @throws ApiError
|
|
311
311
|
*/
|
|
312
312
|
public putApiProjectSectionServiceProjectSection(data: PutApiProjectSectionServiceProjectSectionData = {}): CancelablePromise<PutApiProjectSectionServiceProjectSectionResponse> {
|
|
@@ -332,7 +332,7 @@ export class ProjectSectionService {
|
|
|
332
332
|
/**
|
|
333
333
|
* @param data The data for the request.
|
|
334
334
|
* @param data.id
|
|
335
|
-
* @returns
|
|
335
|
+
* @returns unknown Success
|
|
336
336
|
* @throws ApiError
|
|
337
337
|
*/
|
|
338
338
|
public getApiProjectSectionServiceProjectSectionById(data: GetApiProjectSectionServiceProjectSectionByIdData): CancelablePromise<GetApiProjectSectionServiceProjectSectionByIdResponse> {
|
|
@@ -361,7 +361,7 @@ export class ProjectSectionRelationService {
|
|
|
361
361
|
/**
|
|
362
362
|
* @param data The data for the request.
|
|
363
363
|
* @param data.requestBody
|
|
364
|
-
* @returns
|
|
364
|
+
* @returns unknown Success
|
|
365
365
|
* @throws ApiError
|
|
366
366
|
*/
|
|
367
367
|
public postApiProjectSectionRelationServiceProjectSectionRelation(data: PostApiProjectSectionRelationServiceProjectSectionRelationData = {}): CancelablePromise<PostApiProjectSectionRelationServiceProjectSectionRelationResponse> {
|
|
@@ -410,7 +410,7 @@ export class ProjectSectionRelationService {
|
|
|
410
410
|
* @param data.sorting
|
|
411
411
|
* @param data.skipCount
|
|
412
412
|
* @param data.maxResultCount
|
|
413
|
-
* @returns
|
|
413
|
+
* @returns unknown Success
|
|
414
414
|
* @throws ApiError
|
|
415
415
|
*/
|
|
416
416
|
public getApiProjectSectionRelationServiceProjectSectionRelation(data: GetApiProjectSectionRelationServiceProjectSectionRelationData = {}): CancelablePromise<GetApiProjectSectionRelationServiceProjectSectionRelationResponse> {
|
|
@@ -436,7 +436,7 @@ export class ProjectSectionRelationService {
|
|
|
436
436
|
/**
|
|
437
437
|
* @param data The data for the request.
|
|
438
438
|
* @param data.id
|
|
439
|
-
* @returns
|
|
439
|
+
* @returns unknown Success
|
|
440
440
|
* @throws ApiError
|
|
441
441
|
*/
|
|
442
442
|
public getApiProjectSectionRelationServiceProjectSectionRelationById(data: GetApiProjectSectionRelationServiceProjectSectionRelationByIdData): CancelablePromise<GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse> {
|
|
@@ -461,7 +461,7 @@ export class ProjectSectionRelationService {
|
|
|
461
461
|
* @param data The data for the request.
|
|
462
462
|
* @param data.id
|
|
463
463
|
* @param data.requestBody
|
|
464
|
-
* @returns
|
|
464
|
+
* @returns unknown Success
|
|
465
465
|
* @throws ApiError
|
|
466
466
|
*/
|
|
467
467
|
public putApiProjectSectionRelationServiceProjectSectionRelationById(data: PutApiProjectSectionRelationServiceProjectSectionRelationByIdData): CancelablePromise<PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse> {
|