@ayasofyazilim/saas 0.0.20 → 0.0.22
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/BackerService/schemas.gen.ts +12401 -12401
- package/BackerService/types.gen.ts +14936 -14936
- package/MerchantService/MerchantServiceClient.ts +33 -0
- package/MerchantService/schemas.gen.ts +2608 -82
- package/MerchantService/services.gen.ts +1029 -133
- package/MerchantService/types.gen.ts +11786 -3509
- package/ProjectService/schemas.gen.ts +8939 -4492
- package/ProjectService/services.gen.ts +37 -5
- package/ProjectService/types.gen.ts +6228 -4544
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import type { CancelablePromise } from './core/CancelablePromise';
|
|
4
4
|
import type { BaseHttpRequest } from './core/BaseHttpRequest';
|
|
5
|
-
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiProjectServiceProjectsData, PostApiProjectServiceProjectsResponse, GetApiProjectServiceProjectsData, GetApiProjectServiceProjectsResponse,
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiProjectServiceProjectsData, PostApiProjectServiceProjectsResponse, GetApiProjectServiceProjectsData, GetApiProjectServiceProjectsResponse, GetApiProjectServiceProjectsByIdData, GetApiProjectServiceProjectsByIdResponse, DeleteApiProjectServiceProjectsByIdData, DeleteApiProjectServiceProjectsByIdResponse, PutApiProjectServiceProjectsByIdData, PutApiProjectServiceProjectsByIdResponse, GetApiProjectServiceProjectsDetailByIdData, GetApiProjectServiceProjectsDetailByIdResponse, GetApiProjectServiceProjectsSectionListByProjectIdData, GetApiProjectServiceProjectsSectionListByProjectIdResponse, GetApiProjectServiceProjectsMyProjectsResponse, PostApiProjectServiceProjectsSectionData, PostApiProjectServiceProjectsSectionResponse, PostApiProjectServiceProjectsSectionRelationData, PostApiProjectServiceProjectsSectionRelationResponse, PutApiProjectServiceProjectsSectionByIdData, PutApiProjectServiceProjectsSectionByIdResponse, PutApiProjectServiceProjectsSectionRelationByIdData, PutApiProjectServiceProjectsSectionRelationByIdResponse, PutApiProjectServiceProjectsStatusByProjectIdData, PutApiProjectServiceProjectsStatusByProjectIdResponse, GetApiProjectServiceProjectsWithFundraiserListAsyncData, GetApiProjectServiceProjectsWithFundraiserListAsyncResponse, GetApiProjectServicePublicProjectsData, GetApiProjectServicePublicProjectsResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -157,9 +157,9 @@ export class ProjectService {
|
|
|
157
157
|
* @returns unknown Success
|
|
158
158
|
* @throws ApiError
|
|
159
159
|
*/
|
|
160
|
-
public
|
|
160
|
+
public getApiProjectServiceProjectsById(data: GetApiProjectServiceProjectsByIdData): CancelablePromise<GetApiProjectServiceProjectsByIdResponse> {
|
|
161
161
|
return this.httpRequest.request({
|
|
162
|
-
method: '
|
|
162
|
+
method: 'GET',
|
|
163
163
|
url: '/api/project-service/projects/{id}',
|
|
164
164
|
path: {
|
|
165
165
|
id: data.id
|
|
@@ -181,9 +181,9 @@ export class ProjectService {
|
|
|
181
181
|
* @returns unknown Success
|
|
182
182
|
* @throws ApiError
|
|
183
183
|
*/
|
|
184
|
-
public
|
|
184
|
+
public deleteApiProjectServiceProjectsById(data: DeleteApiProjectServiceProjectsByIdData): CancelablePromise<DeleteApiProjectServiceProjectsByIdResponse> {
|
|
185
185
|
return this.httpRequest.request({
|
|
186
|
-
method: '
|
|
186
|
+
method: 'DELETE',
|
|
187
187
|
url: '/api/project-service/projects/{id}',
|
|
188
188
|
path: {
|
|
189
189
|
id: data.id
|
|
@@ -421,6 +421,38 @@ export class ProjectService {
|
|
|
421
421
|
});
|
|
422
422
|
}
|
|
423
423
|
|
|
424
|
+
/**
|
|
425
|
+
* @param data The data for the request.
|
|
426
|
+
* @param data.status
|
|
427
|
+
* @param data.type
|
|
428
|
+
* @param data.sorting
|
|
429
|
+
* @param data.skipCount
|
|
430
|
+
* @param data.maxResultCount
|
|
431
|
+
* @returns unknown Success
|
|
432
|
+
* @throws ApiError
|
|
433
|
+
*/
|
|
434
|
+
public getApiProjectServiceProjectsWithFundraiserListAsync(data: GetApiProjectServiceProjectsWithFundraiserListAsyncData = {}): CancelablePromise<GetApiProjectServiceProjectsWithFundraiserListAsyncResponse> {
|
|
435
|
+
return this.httpRequest.request({
|
|
436
|
+
method: 'GET',
|
|
437
|
+
url: '/api/project-service/projects/with-fundraiser-list-async',
|
|
438
|
+
query: {
|
|
439
|
+
Status: data.status,
|
|
440
|
+
Type: data.type,
|
|
441
|
+
Sorting: data.sorting,
|
|
442
|
+
SkipCount: data.skipCount,
|
|
443
|
+
MaxResultCount: data.maxResultCount
|
|
444
|
+
},
|
|
445
|
+
errors: {
|
|
446
|
+
400: 'Bad Request',
|
|
447
|
+
401: 'Unauthorized',
|
|
448
|
+
403: 'Forbidden',
|
|
449
|
+
404: 'Not Found',
|
|
450
|
+
500: 'Server Error',
|
|
451
|
+
501: 'Server Error'
|
|
452
|
+
}
|
|
453
|
+
});
|
|
454
|
+
}
|
|
455
|
+
|
|
424
456
|
}
|
|
425
457
|
|
|
426
458
|
export class ProjectPublicService {
|