@ayasofyazilim/saas 0.0.10 → 0.0.11
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/types.gen.ts +42 -145
- package/AdministrationService/types.gen.ts +39 -181
- package/IdentityService/types.gen.ts +87 -452
- package/ProjectService/ProjectServiceClient.ts +0 -3
- package/ProjectService/schemas.gen.ts +188 -109
- package/ProjectService/services.gen.ts +1 -48
- package/ProjectService/types.gen.ts +74 -187
- 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 +2148 -0
- package/SaasService/services.gen.ts +1326 -0
- package/SaasService/types.gen.ts +2735 -0
- package/package.json +6 -9
|
@@ -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
|
}
|
|
@@ -1,12 +1,44 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
|
-
export const $
|
|
3
|
+
export const $AbpForDeploy_ProjectService_ProjectSectionRelations_CreateUpdateProjectSectionRelationDto = {
|
|
4
4
|
type: 'object',
|
|
5
5
|
properties: {
|
|
6
6
|
id: {
|
|
7
7
|
type: 'string',
|
|
8
8
|
format: 'uuid'
|
|
9
9
|
},
|
|
10
|
+
creationTime: {
|
|
11
|
+
type: 'string',
|
|
12
|
+
format: 'date-time'
|
|
13
|
+
},
|
|
14
|
+
creatorId: {
|
|
15
|
+
type: 'string',
|
|
16
|
+
format: 'uuid',
|
|
17
|
+
nullable: true
|
|
18
|
+
},
|
|
19
|
+
lastModificationTime: {
|
|
20
|
+
type: 'string',
|
|
21
|
+
format: 'date-time',
|
|
22
|
+
nullable: true
|
|
23
|
+
},
|
|
24
|
+
lastModifierId: {
|
|
25
|
+
type: 'string',
|
|
26
|
+
format: 'uuid',
|
|
27
|
+
nullable: true
|
|
28
|
+
},
|
|
29
|
+
isDeleted: {
|
|
30
|
+
type: 'boolean'
|
|
31
|
+
},
|
|
32
|
+
deleterId: {
|
|
33
|
+
type: 'string',
|
|
34
|
+
format: 'uuid',
|
|
35
|
+
nullable: true
|
|
36
|
+
},
|
|
37
|
+
deletionTime: {
|
|
38
|
+
type: 'string',
|
|
39
|
+
format: 'date-time',
|
|
40
|
+
nullable: true
|
|
41
|
+
},
|
|
10
42
|
projectId: {
|
|
11
43
|
type: 'string',
|
|
12
44
|
format: 'uuid'
|
|
@@ -30,28 +62,37 @@ export const $AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSection
|
|
|
30
62
|
type: 'string',
|
|
31
63
|
format: 'uuid'
|
|
32
64
|
},
|
|
33
|
-
|
|
65
|
+
creationTime: {
|
|
34
66
|
type: 'string',
|
|
35
|
-
format: '
|
|
67
|
+
format: 'date-time'
|
|
36
68
|
},
|
|
37
|
-
|
|
69
|
+
creatorId: {
|
|
38
70
|
type: 'string',
|
|
39
|
-
format: 'uuid'
|
|
71
|
+
format: 'uuid',
|
|
72
|
+
nullable: true
|
|
40
73
|
},
|
|
41
|
-
|
|
74
|
+
lastModificationTime: {
|
|
42
75
|
type: 'string',
|
|
76
|
+
format: 'date-time',
|
|
43
77
|
nullable: true
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
additionalProperties: false
|
|
47
|
-
} as const;
|
|
48
|
-
|
|
49
|
-
export const $AbpForDeploy_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto = {
|
|
50
|
-
type: 'object',
|
|
51
|
-
properties: {
|
|
52
|
-
id: {
|
|
78
|
+
},
|
|
79
|
+
lastModifierId: {
|
|
53
80
|
type: 'string',
|
|
54
|
-
format: 'uuid'
|
|
81
|
+
format: 'uuid',
|
|
82
|
+
nullable: true
|
|
83
|
+
},
|
|
84
|
+
isDeleted: {
|
|
85
|
+
type: 'boolean'
|
|
86
|
+
},
|
|
87
|
+
deleterId: {
|
|
88
|
+
type: 'string',
|
|
89
|
+
format: 'uuid',
|
|
90
|
+
nullable: true
|
|
91
|
+
},
|
|
92
|
+
deletionTime: {
|
|
93
|
+
type: 'string',
|
|
94
|
+
format: 'date-time',
|
|
95
|
+
nullable: true
|
|
55
96
|
},
|
|
56
97
|
projectId: {
|
|
57
98
|
type: 'string',
|
|
@@ -69,13 +110,45 @@ export const $AbpForDeploy_ProjectService_ProjectSectionRelations_UpdateProjectS
|
|
|
69
110
|
additionalProperties: false
|
|
70
111
|
} as const;
|
|
71
112
|
|
|
72
|
-
export const $
|
|
113
|
+
export const $AbpForDeploy_ProjectService_ProjectSections_CreateUpdateProjectSectionDto = {
|
|
73
114
|
type: 'object',
|
|
74
115
|
properties: {
|
|
75
116
|
id: {
|
|
76
117
|
type: 'string',
|
|
77
118
|
format: 'uuid'
|
|
78
119
|
},
|
|
120
|
+
creationTime: {
|
|
121
|
+
type: 'string',
|
|
122
|
+
format: 'date-time'
|
|
123
|
+
},
|
|
124
|
+
creatorId: {
|
|
125
|
+
type: 'string',
|
|
126
|
+
format: 'uuid',
|
|
127
|
+
nullable: true
|
|
128
|
+
},
|
|
129
|
+
lastModificationTime: {
|
|
130
|
+
type: 'string',
|
|
131
|
+
format: 'date-time',
|
|
132
|
+
nullable: true
|
|
133
|
+
},
|
|
134
|
+
lastModifierId: {
|
|
135
|
+
type: 'string',
|
|
136
|
+
format: 'uuid',
|
|
137
|
+
nullable: true
|
|
138
|
+
},
|
|
139
|
+
isDeleted: {
|
|
140
|
+
type: 'boolean'
|
|
141
|
+
},
|
|
142
|
+
deleterId: {
|
|
143
|
+
type: 'string',
|
|
144
|
+
format: 'uuid',
|
|
145
|
+
nullable: true
|
|
146
|
+
},
|
|
147
|
+
deletionTime: {
|
|
148
|
+
type: 'string',
|
|
149
|
+
format: 'date-time',
|
|
150
|
+
nullable: true
|
|
151
|
+
},
|
|
79
152
|
name: {
|
|
80
153
|
type: 'string',
|
|
81
154
|
nullable: true
|
|
@@ -90,27 +163,44 @@ export const $AbpForDeploy_ProjectService_ProjectSections_CreateProjectSectionDt
|
|
|
90
163
|
additionalProperties: false
|
|
91
164
|
} as const;
|
|
92
165
|
|
|
93
|
-
export const $
|
|
166
|
+
export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto = {
|
|
94
167
|
type: 'object',
|
|
95
168
|
properties: {
|
|
96
|
-
|
|
169
|
+
id: {
|
|
97
170
|
type: 'string',
|
|
171
|
+
format: 'uuid'
|
|
172
|
+
},
|
|
173
|
+
creationTime: {
|
|
174
|
+
type: 'string',
|
|
175
|
+
format: 'date-time'
|
|
176
|
+
},
|
|
177
|
+
creatorId: {
|
|
178
|
+
type: 'string',
|
|
179
|
+
format: 'uuid',
|
|
98
180
|
nullable: true
|
|
99
181
|
},
|
|
100
|
-
|
|
182
|
+
lastModificationTime: {
|
|
101
183
|
type: 'string',
|
|
184
|
+
format: 'date-time',
|
|
102
185
|
nullable: true
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
additionalProperties: false
|
|
106
|
-
} as const;
|
|
107
|
-
|
|
108
|
-
export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto = {
|
|
109
|
-
type: 'object',
|
|
110
|
-
properties: {
|
|
111
|
-
id: {
|
|
186
|
+
},
|
|
187
|
+
lastModifierId: {
|
|
112
188
|
type: 'string',
|
|
113
|
-
format: 'uuid'
|
|
189
|
+
format: 'uuid',
|
|
190
|
+
nullable: true
|
|
191
|
+
},
|
|
192
|
+
isDeleted: {
|
|
193
|
+
type: 'boolean'
|
|
194
|
+
},
|
|
195
|
+
deleterId: {
|
|
196
|
+
type: 'string',
|
|
197
|
+
format: 'uuid',
|
|
198
|
+
nullable: true
|
|
199
|
+
},
|
|
200
|
+
deletionTime: {
|
|
201
|
+
type: 'string',
|
|
202
|
+
format: 'date-time',
|
|
203
|
+
nullable: true
|
|
114
204
|
},
|
|
115
205
|
name: {
|
|
116
206
|
type: 'string',
|
|
@@ -126,18 +216,24 @@ export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto = {
|
|
|
126
216
|
additionalProperties: false
|
|
127
217
|
} as const;
|
|
128
218
|
|
|
129
|
-
export const $
|
|
219
|
+
export const $AbpForDeploy_ProjectService_ProjectSections_ProjectSectionRelationDetailDto = {
|
|
130
220
|
type: 'object',
|
|
131
221
|
properties: {
|
|
222
|
+
id: {
|
|
223
|
+
type: 'string',
|
|
224
|
+
format: 'uuid'
|
|
225
|
+
},
|
|
226
|
+
sectionId: {
|
|
227
|
+
type: 'string',
|
|
228
|
+
format: 'uuid'
|
|
229
|
+
},
|
|
132
230
|
name: {
|
|
133
231
|
type: 'string',
|
|
134
232
|
nullable: true
|
|
135
233
|
},
|
|
136
|
-
|
|
137
|
-
type: '
|
|
138
|
-
|
|
139
|
-
isOptional: {
|
|
140
|
-
type: 'boolean'
|
|
234
|
+
value: {
|
|
235
|
+
type: 'string',
|
|
236
|
+
nullable: true
|
|
141
237
|
}
|
|
142
238
|
},
|
|
143
239
|
additionalProperties: false
|
|
@@ -150,6 +246,38 @@ export const $AbpForDeploy_ProjectService_Projects_ProjectDto = {
|
|
|
150
246
|
type: 'string',
|
|
151
247
|
format: 'uuid'
|
|
152
248
|
},
|
|
249
|
+
creationTime: {
|
|
250
|
+
type: 'string',
|
|
251
|
+
format: 'date-time'
|
|
252
|
+
},
|
|
253
|
+
creatorId: {
|
|
254
|
+
type: 'string',
|
|
255
|
+
format: 'uuid',
|
|
256
|
+
nullable: true
|
|
257
|
+
},
|
|
258
|
+
lastModificationTime: {
|
|
259
|
+
type: 'string',
|
|
260
|
+
format: 'date-time',
|
|
261
|
+
nullable: true
|
|
262
|
+
},
|
|
263
|
+
lastModifierId: {
|
|
264
|
+
type: 'string',
|
|
265
|
+
format: 'uuid',
|
|
266
|
+
nullable: true
|
|
267
|
+
},
|
|
268
|
+
isDeleted: {
|
|
269
|
+
type: 'boolean'
|
|
270
|
+
},
|
|
271
|
+
deleterId: {
|
|
272
|
+
type: 'string',
|
|
273
|
+
format: 'uuid',
|
|
274
|
+
nullable: true
|
|
275
|
+
},
|
|
276
|
+
deletionTime: {
|
|
277
|
+
type: 'string',
|
|
278
|
+
format: 'date-time',
|
|
279
|
+
nullable: true
|
|
280
|
+
},
|
|
153
281
|
projectName: {
|
|
154
282
|
type: 'string',
|
|
155
283
|
nullable: true
|
|
@@ -197,91 +325,59 @@ export const $AbpForDeploy_ProjectService_Projects_ProjectDto = {
|
|
|
197
325
|
type: 'string',
|
|
198
326
|
format: 'date-time'
|
|
199
327
|
},
|
|
200
|
-
|
|
328
|
+
organizationId: {
|
|
329
|
+
type: 'string',
|
|
330
|
+
format: 'uuid'
|
|
331
|
+
},
|
|
332
|
+
projectSectionRelationDetails: {
|
|
201
333
|
type: 'array',
|
|
202
334
|
items: {
|
|
203
|
-
'$ref': '#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.
|
|
335
|
+
'$ref': '#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionRelationDetailDto'
|
|
204
336
|
},
|
|
205
337
|
nullable: true
|
|
206
|
-
},
|
|
207
|
-
organizationId: {
|
|
208
|
-
type: 'string',
|
|
209
|
-
format: 'uuid'
|
|
210
338
|
}
|
|
211
339
|
},
|
|
212
340
|
additionalProperties: false
|
|
213
341
|
} as const;
|
|
214
342
|
|
|
215
|
-
export const $
|
|
343
|
+
export const $AbpForDeploy_ProjectService_ProjectsDto_CreateUpdateProjectDto = {
|
|
216
344
|
type: 'object',
|
|
217
345
|
properties: {
|
|
218
346
|
id: {
|
|
219
347
|
type: 'string',
|
|
220
348
|
format: 'uuid'
|
|
221
349
|
},
|
|
222
|
-
|
|
350
|
+
creationTime: {
|
|
223
351
|
type: 'string',
|
|
224
|
-
|
|
352
|
+
format: 'date-time'
|
|
225
353
|
},
|
|
226
|
-
|
|
354
|
+
creatorId: {
|
|
227
355
|
type: 'string',
|
|
356
|
+
format: 'uuid',
|
|
228
357
|
nullable: true
|
|
229
358
|
},
|
|
230
|
-
|
|
231
|
-
type: 'integer',
|
|
232
|
-
format: 'int64'
|
|
233
|
-
},
|
|
234
|
-
additionalFundRate: {
|
|
359
|
+
lastModificationTime: {
|
|
235
360
|
type: 'string',
|
|
361
|
+
format: 'date-time',
|
|
236
362
|
nullable: true
|
|
237
363
|
},
|
|
238
|
-
|
|
364
|
+
lastModifierId: {
|
|
239
365
|
type: 'string',
|
|
366
|
+
format: 'uuid',
|
|
240
367
|
nullable: true
|
|
241
368
|
},
|
|
242
|
-
|
|
243
|
-
type: '
|
|
244
|
-
format: 'int64'
|
|
245
|
-
},
|
|
246
|
-
fundableAmount: {
|
|
247
|
-
type: 'integer',
|
|
248
|
-
format: 'int64'
|
|
249
|
-
},
|
|
250
|
-
overFunding: {
|
|
251
|
-
type: 'string'
|
|
369
|
+
isDeleted: {
|
|
370
|
+
type: 'boolean'
|
|
252
371
|
},
|
|
253
|
-
|
|
372
|
+
deleterId: {
|
|
254
373
|
type: 'string',
|
|
374
|
+
format: 'uuid',
|
|
255
375
|
nullable: true
|
|
256
376
|
},
|
|
257
|
-
|
|
258
|
-
type: 'string',
|
|
259
|
-
format: 'date-time'
|
|
260
|
-
},
|
|
261
|
-
projectEndDate: {
|
|
262
|
-
type: 'string',
|
|
263
|
-
format: 'date-time'
|
|
264
|
-
},
|
|
265
|
-
organizationId: {
|
|
266
|
-
type: 'string',
|
|
267
|
-
format: 'uuid'
|
|
268
|
-
},
|
|
269
|
-
fundCollectionType: {
|
|
270
|
-
maxLength: 4,
|
|
271
|
-
minLength: 0,
|
|
377
|
+
deletionTime: {
|
|
272
378
|
type: 'string',
|
|
379
|
+
format: 'date-time',
|
|
273
380
|
nullable: true
|
|
274
|
-
}
|
|
275
|
-
},
|
|
276
|
-
additionalProperties: false
|
|
277
|
-
} as const;
|
|
278
|
-
|
|
279
|
-
export const $AbpForDeploy_ProjectService_ProjectsDto_UpdateProjectDto = {
|
|
280
|
-
type: 'object',
|
|
281
|
-
properties: {
|
|
282
|
-
id: {
|
|
283
|
-
type: 'string',
|
|
284
|
-
format: 'uuid'
|
|
285
381
|
},
|
|
286
382
|
projectName: {
|
|
287
383
|
type: 'string',
|
|
@@ -326,30 +422,13 @@ export const $AbpForDeploy_ProjectService_ProjectsDto_UpdateProjectDto = {
|
|
|
326
422
|
type: 'string',
|
|
327
423
|
format: 'date-time'
|
|
328
424
|
},
|
|
329
|
-
|
|
425
|
+
fundCollectionType: {
|
|
330
426
|
type: 'string',
|
|
331
|
-
|
|
427
|
+
nullable: true
|
|
332
428
|
},
|
|
333
|
-
|
|
429
|
+
organizationId: {
|
|
334
430
|
type: 'string',
|
|
335
431
|
format: 'uuid'
|
|
336
|
-
},
|
|
337
|
-
fundCollectType: {
|
|
338
|
-
maxLength: 4,
|
|
339
|
-
minLength: 0,
|
|
340
|
-
type: 'string',
|
|
341
|
-
nullable: true
|
|
342
|
-
}
|
|
343
|
-
},
|
|
344
|
-
additionalProperties: false
|
|
345
|
-
} as const;
|
|
346
|
-
|
|
347
|
-
export const $AbpForDeploy_ProjectService_Samples_SampleDto = {
|
|
348
|
-
type: 'object',
|
|
349
|
-
properties: {
|
|
350
|
-
value: {
|
|
351
|
-
type: 'integer',
|
|
352
|
-
format: 'int32'
|
|
353
432
|
}
|
|
354
433
|
},
|
|
355
434
|
additionalProperties: false
|
|
@@ -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, DeleteApiProjectServiceProjectsByIdData, DeleteApiProjectServiceProjectsByIdResponse, GetApiProjectServiceProjectsByIdData, GetApiProjectServiceProjectsByIdResponse, PutApiProjectServiceProjectsByIdData, PutApiProjectServiceProjectsByIdResponse, PostApiProjectSectionServiceProjectSectionData, PostApiProjectSectionServiceProjectSectionResponse, DeleteApiProjectSectionServiceProjectSectionData, DeleteApiProjectSectionServiceProjectSectionResponse, GetApiProjectSectionServiceProjectSectionData, GetApiProjectSectionServiceProjectSectionResponse, PutApiProjectSectionServiceProjectSectionData, PutApiProjectSectionServiceProjectSectionResponse, GetApiProjectSectionServiceProjectSectionByIdData, GetApiProjectSectionServiceProjectSectionByIdResponse, PostApiProjectSectionRelationServiceProjectSectionRelationData, PostApiProjectSectionRelationServiceProjectSectionRelationResponse, DeleteApiProjectSectionRelationServiceProjectSectionRelationData, DeleteApiProjectSectionRelationServiceProjectSectionRelationResponse, GetApiProjectSectionRelationServiceProjectSectionRelationData, GetApiProjectSectionRelationServiceProjectSectionRelationResponse, GetApiProjectSectionRelationServiceProjectSectionRelationByIdData, GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse, PutApiProjectSectionRelationServiceProjectSectionRelationByIdData, PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse
|
|
5
|
+
import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationResponse, PostApiProjectServiceProjectsData, PostApiProjectServiceProjectsResponse, GetApiProjectServiceProjectsData, GetApiProjectServiceProjectsResponse, DeleteApiProjectServiceProjectsByIdData, DeleteApiProjectServiceProjectsByIdResponse, GetApiProjectServiceProjectsByIdData, GetApiProjectServiceProjectsByIdResponse, PutApiProjectServiceProjectsByIdData, PutApiProjectServiceProjectsByIdResponse, PostApiProjectSectionServiceProjectSectionData, PostApiProjectSectionServiceProjectSectionResponse, DeleteApiProjectSectionServiceProjectSectionData, DeleteApiProjectSectionServiceProjectSectionResponse, GetApiProjectSectionServiceProjectSectionData, GetApiProjectSectionServiceProjectSectionResponse, PutApiProjectSectionServiceProjectSectionData, PutApiProjectSectionServiceProjectSectionResponse, GetApiProjectSectionServiceProjectSectionByIdData, GetApiProjectSectionServiceProjectSectionByIdResponse, PostApiProjectSectionRelationServiceProjectSectionRelationData, PostApiProjectSectionRelationServiceProjectSectionRelationResponse, DeleteApiProjectSectionRelationServiceProjectSectionRelationData, DeleteApiProjectSectionRelationServiceProjectSectionRelationResponse, GetApiProjectSectionRelationServiceProjectSectionRelationData, GetApiProjectSectionRelationServiceProjectSectionRelationResponse, GetApiProjectSectionRelationServiceProjectSectionRelationByIdData, GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse, PutApiProjectSectionRelationServiceProjectSectionRelationByIdData, PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse } from './types.gen';
|
|
6
6
|
|
|
7
7
|
export class AbpApiDefinitionService {
|
|
8
8
|
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
@@ -121,8 +121,6 @@ export class ProjectService {
|
|
|
121
121
|
|
|
122
122
|
/**
|
|
123
123
|
* @param data The data for the request.
|
|
124
|
-
* @param data.name
|
|
125
|
-
* @param data.endDate
|
|
126
124
|
* @param data.sorting
|
|
127
125
|
* @param data.skipCount
|
|
128
126
|
* @param data.maxResultCount
|
|
@@ -134,8 +132,6 @@ export class ProjectService {
|
|
|
134
132
|
method: 'GET',
|
|
135
133
|
url: '/api/project-service/projects',
|
|
136
134
|
query: {
|
|
137
|
-
Name: data.name,
|
|
138
|
-
EndDate: data.endDate,
|
|
139
135
|
Sorting: data.sorting,
|
|
140
136
|
SkipCount: data.skipCount,
|
|
141
137
|
MaxResultCount: data.maxResultCount
|
|
@@ -488,47 +484,4 @@ export class ProjectSectionRelationService {
|
|
|
488
484
|
});
|
|
489
485
|
}
|
|
490
486
|
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
export class ProjectServiceService {
|
|
494
|
-
constructor(public readonly httpRequest: BaseHttpRequest) { }
|
|
495
|
-
|
|
496
|
-
/**
|
|
497
|
-
* @returns AbpForDeploy_ProjectService_Samples_SampleDto Success
|
|
498
|
-
* @throws ApiError
|
|
499
|
-
*/
|
|
500
|
-
public getApiProjectServiceSample(): CancelablePromise<GetApiProjectServiceSampleResponse> {
|
|
501
|
-
return this.httpRequest.request({
|
|
502
|
-
method: 'GET',
|
|
503
|
-
url: '/api/ProjectService/sample',
|
|
504
|
-
errors: {
|
|
505
|
-
400: 'Bad Request',
|
|
506
|
-
401: 'Unauthorized',
|
|
507
|
-
403: 'Forbidden',
|
|
508
|
-
404: 'Not Found',
|
|
509
|
-
500: 'Server Error',
|
|
510
|
-
501: 'Server Error'
|
|
511
|
-
}
|
|
512
|
-
});
|
|
513
|
-
}
|
|
514
|
-
|
|
515
|
-
/**
|
|
516
|
-
* @returns AbpForDeploy_ProjectService_Samples_SampleDto Success
|
|
517
|
-
* @throws ApiError
|
|
518
|
-
*/
|
|
519
|
-
public getApiProjectServiceSampleAuthorized(): CancelablePromise<GetApiProjectServiceSampleAuthorizedResponse> {
|
|
520
|
-
return this.httpRequest.request({
|
|
521
|
-
method: 'GET',
|
|
522
|
-
url: '/api/ProjectService/sample/authorized',
|
|
523
|
-
errors: {
|
|
524
|
-
400: 'Bad Request',
|
|
525
|
-
401: 'Unauthorized',
|
|
526
|
-
403: 'Forbidden',
|
|
527
|
-
404: 'Not Found',
|
|
528
|
-
500: 'Server Error',
|
|
529
|
-
501: 'Server Error'
|
|
530
|
-
}
|
|
531
|
-
});
|
|
532
|
-
}
|
|
533
|
-
|
|
534
487
|
}
|