@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
|
@@ -85,7 +85,12 @@ export type AbpForDeploy_ProjectService_Projects_ProjectDto = {
|
|
|
85
85
|
projectStartDate?: string;
|
|
86
86
|
projectEndDate?: string;
|
|
87
87
|
organizationId?: string;
|
|
88
|
-
projectSectionRelationDetails?: Array<
|
|
88
|
+
projectSectionRelationDetails?: Array<{
|
|
89
|
+
id?: string;
|
|
90
|
+
sectionId?: string;
|
|
91
|
+
name?: string | null;
|
|
92
|
+
value?: string | null;
|
|
93
|
+
}> | null;
|
|
89
94
|
};
|
|
90
95
|
|
|
91
96
|
export type AbpForDeploy_ProjectService_ProjectsDto_CreateUpdateProjectDto = {
|
|
@@ -113,17 +118,69 @@ export type AbpForDeploy_ProjectService_ProjectsDto_CreateUpdateProjectDto = {
|
|
|
113
118
|
};
|
|
114
119
|
|
|
115
120
|
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
116
|
-
items?: Array<
|
|
121
|
+
items?: Array<{
|
|
122
|
+
id?: string;
|
|
123
|
+
creationTime?: string;
|
|
124
|
+
creatorId?: string | null;
|
|
125
|
+
lastModificationTime?: string | null;
|
|
126
|
+
lastModifierId?: string | null;
|
|
127
|
+
isDeleted?: boolean;
|
|
128
|
+
deleterId?: string | null;
|
|
129
|
+
deletionTime?: string | null;
|
|
130
|
+
projectId?: string;
|
|
131
|
+
projectSectionId?: string;
|
|
132
|
+
value?: string | null;
|
|
133
|
+
}> | null;
|
|
117
134
|
totalCount?: number;
|
|
118
135
|
};
|
|
119
136
|
|
|
120
137
|
export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
|
|
121
|
-
items?: Array<
|
|
138
|
+
items?: Array<{
|
|
139
|
+
id?: string;
|
|
140
|
+
creationTime?: string;
|
|
141
|
+
creatorId?: string | null;
|
|
142
|
+
lastModificationTime?: string | null;
|
|
143
|
+
lastModifierId?: string | null;
|
|
144
|
+
isDeleted?: boolean;
|
|
145
|
+
deleterId?: string | null;
|
|
146
|
+
deletionTime?: string | null;
|
|
147
|
+
name?: string | null;
|
|
148
|
+
isDefault?: boolean;
|
|
149
|
+
isOptional?: boolean;
|
|
150
|
+
}> | null;
|
|
122
151
|
totalCount?: number;
|
|
123
152
|
};
|
|
124
153
|
|
|
125
154
|
export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
|
|
126
|
-
items?: Array<
|
|
155
|
+
items?: Array<{
|
|
156
|
+
id?: string;
|
|
157
|
+
creationTime?: string;
|
|
158
|
+
creatorId?: string | null;
|
|
159
|
+
lastModificationTime?: string | null;
|
|
160
|
+
lastModifierId?: string | null;
|
|
161
|
+
isDeleted?: boolean;
|
|
162
|
+
deleterId?: string | null;
|
|
163
|
+
deletionTime?: string | null;
|
|
164
|
+
projectName?: string | null;
|
|
165
|
+
projectDefinition?: string | null;
|
|
166
|
+
cashValue?: number;
|
|
167
|
+
fundCollectionType?: string | null;
|
|
168
|
+
additionalFundRate?: string | null;
|
|
169
|
+
qualifiedFundRate?: string | null;
|
|
170
|
+
fundNominalAmount?: number;
|
|
171
|
+
fundableAmount?: number;
|
|
172
|
+
overFunding?: string;
|
|
173
|
+
privilege?: string | null;
|
|
174
|
+
projectStartDate?: string;
|
|
175
|
+
projectEndDate?: string;
|
|
176
|
+
organizationId?: string;
|
|
177
|
+
projectSectionRelationDetails?: Array<{
|
|
178
|
+
id?: string;
|
|
179
|
+
sectionId?: string;
|
|
180
|
+
name?: string | null;
|
|
181
|
+
value?: string | null;
|
|
182
|
+
}> | null;
|
|
183
|
+
}> | null;
|
|
127
184
|
totalCount?: number;
|
|
128
185
|
};
|
|
129
186
|
|
|
@@ -134,17 +191,190 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthCon
|
|
|
134
191
|
};
|
|
135
192
|
|
|
136
193
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
137
|
-
localization?:
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
194
|
+
localization?: {
|
|
195
|
+
values?: {
|
|
196
|
+
[key: string]: {
|
|
197
|
+
[key: string]: (string);
|
|
198
|
+
};
|
|
199
|
+
} | null;
|
|
200
|
+
resources?: {
|
|
201
|
+
[key: string]: {
|
|
202
|
+
texts?: {
|
|
203
|
+
[key: string]: (string);
|
|
204
|
+
} | null;
|
|
205
|
+
baseResources?: Array<(string)> | null;
|
|
206
|
+
};
|
|
207
|
+
} | null;
|
|
208
|
+
languages?: Array<{
|
|
209
|
+
cultureName?: string | null;
|
|
210
|
+
uiCultureName?: string | null;
|
|
211
|
+
displayName?: string | null;
|
|
212
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
213
|
+
flagIcon?: string | null;
|
|
214
|
+
}> | null;
|
|
215
|
+
currentCulture?: {
|
|
216
|
+
displayName?: string | null;
|
|
217
|
+
englishName?: string | null;
|
|
218
|
+
threeLetterIsoLanguageName?: string | null;
|
|
219
|
+
twoLetterIsoLanguageName?: string | null;
|
|
220
|
+
isRightToLeft?: boolean;
|
|
221
|
+
cultureName?: string | null;
|
|
222
|
+
name?: string | null;
|
|
223
|
+
nativeName?: string | null;
|
|
224
|
+
dateTimeFormat?: {
|
|
225
|
+
calendarAlgorithmType?: string | null;
|
|
226
|
+
dateTimeFormatLong?: string | null;
|
|
227
|
+
shortDatePattern?: string | null;
|
|
228
|
+
fullDateTimePattern?: string | null;
|
|
229
|
+
dateSeparator?: string | null;
|
|
230
|
+
shortTimePattern?: string | null;
|
|
231
|
+
longTimePattern?: string | null;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
defaultResourceName?: string | null;
|
|
235
|
+
languagesMap?: {
|
|
236
|
+
[key: string]: Array<{
|
|
237
|
+
name?: string | null;
|
|
238
|
+
value?: string | null;
|
|
239
|
+
}>;
|
|
240
|
+
} | null;
|
|
241
|
+
languageFilesMap?: {
|
|
242
|
+
[key: string]: Array<{
|
|
243
|
+
name?: string | null;
|
|
244
|
+
value?: string | null;
|
|
245
|
+
}>;
|
|
246
|
+
} | null;
|
|
247
|
+
};
|
|
248
|
+
auth?: {
|
|
249
|
+
grantedPolicies?: {
|
|
250
|
+
[key: string]: (boolean);
|
|
251
|
+
} | null;
|
|
252
|
+
};
|
|
253
|
+
setting?: {
|
|
254
|
+
values?: {
|
|
255
|
+
[key: string]: (string | null);
|
|
256
|
+
} | null;
|
|
257
|
+
};
|
|
258
|
+
currentUser?: {
|
|
259
|
+
isAuthenticated?: boolean;
|
|
260
|
+
id?: string | null;
|
|
261
|
+
tenantId?: string | null;
|
|
262
|
+
impersonatorUserId?: string | null;
|
|
263
|
+
impersonatorTenantId?: string | null;
|
|
264
|
+
impersonatorUserName?: string | null;
|
|
265
|
+
impersonatorTenantName?: string | null;
|
|
266
|
+
userName?: string | null;
|
|
267
|
+
name?: string | null;
|
|
268
|
+
surName?: string | null;
|
|
269
|
+
email?: string | null;
|
|
270
|
+
emailVerified?: boolean;
|
|
271
|
+
phoneNumber?: string | null;
|
|
272
|
+
phoneNumberVerified?: boolean;
|
|
273
|
+
roles?: Array<(string)> | null;
|
|
274
|
+
};
|
|
275
|
+
features?: {
|
|
276
|
+
values?: {
|
|
277
|
+
[key: string]: (string | null);
|
|
278
|
+
} | null;
|
|
279
|
+
};
|
|
280
|
+
globalFeatures?: {
|
|
281
|
+
enabledFeatures?: Array<(string)> | null;
|
|
282
|
+
};
|
|
283
|
+
multiTenancy?: {
|
|
284
|
+
isEnabled?: boolean;
|
|
285
|
+
};
|
|
286
|
+
currentTenant?: {
|
|
287
|
+
id?: string | null;
|
|
288
|
+
name?: string | null;
|
|
289
|
+
isAvailable?: boolean;
|
|
290
|
+
};
|
|
291
|
+
timing?: {
|
|
292
|
+
timeZone?: {
|
|
293
|
+
iana?: {
|
|
294
|
+
timeZoneName?: string | null;
|
|
295
|
+
};
|
|
296
|
+
windows?: {
|
|
297
|
+
timeZoneId?: string | null;
|
|
298
|
+
};
|
|
299
|
+
};
|
|
300
|
+
};
|
|
301
|
+
clock?: {
|
|
302
|
+
kind?: string | null;
|
|
303
|
+
};
|
|
304
|
+
objectExtensions?: {
|
|
305
|
+
modules?: {
|
|
306
|
+
[key: string]: {
|
|
307
|
+
entities?: {
|
|
308
|
+
[key: string]: {
|
|
309
|
+
properties?: {
|
|
310
|
+
[key: string]: {
|
|
311
|
+
type?: string | null;
|
|
312
|
+
typeSimple?: string | null;
|
|
313
|
+
displayName?: {
|
|
314
|
+
name?: string | null;
|
|
315
|
+
resource?: string | null;
|
|
316
|
+
};
|
|
317
|
+
api?: {
|
|
318
|
+
onGet?: {
|
|
319
|
+
isAvailable?: boolean;
|
|
320
|
+
};
|
|
321
|
+
onCreate?: {
|
|
322
|
+
isAvailable?: boolean;
|
|
323
|
+
};
|
|
324
|
+
onUpdate?: {
|
|
325
|
+
isAvailable?: boolean;
|
|
326
|
+
};
|
|
327
|
+
};
|
|
328
|
+
ui?: {
|
|
329
|
+
onTable?: {
|
|
330
|
+
isVisible?: boolean;
|
|
331
|
+
};
|
|
332
|
+
onCreateForm?: {
|
|
333
|
+
isVisible?: boolean;
|
|
334
|
+
};
|
|
335
|
+
onEditForm?: {
|
|
336
|
+
isVisible?: boolean;
|
|
337
|
+
};
|
|
338
|
+
lookup?: {
|
|
339
|
+
url?: string | null;
|
|
340
|
+
resultListPropertyName?: string | null;
|
|
341
|
+
displayPropertyName?: string | null;
|
|
342
|
+
valuePropertyName?: string | null;
|
|
343
|
+
filterParamName?: string | null;
|
|
344
|
+
};
|
|
345
|
+
};
|
|
346
|
+
attributes?: Array<{
|
|
347
|
+
typeSimple?: string | null;
|
|
348
|
+
config?: {
|
|
349
|
+
[key: string]: unknown;
|
|
350
|
+
} | null;
|
|
351
|
+
}> | null;
|
|
352
|
+
configuration?: {
|
|
353
|
+
[key: string]: unknown;
|
|
354
|
+
} | null;
|
|
355
|
+
defaultValue?: unknown;
|
|
356
|
+
};
|
|
357
|
+
} | null;
|
|
358
|
+
configuration?: {
|
|
359
|
+
[key: string]: unknown;
|
|
360
|
+
} | null;
|
|
361
|
+
};
|
|
362
|
+
} | null;
|
|
363
|
+
configuration?: {
|
|
364
|
+
[key: string]: unknown;
|
|
365
|
+
} | null;
|
|
366
|
+
};
|
|
367
|
+
} | null;
|
|
368
|
+
enums?: {
|
|
369
|
+
[key: string]: {
|
|
370
|
+
fields?: Array<{
|
|
371
|
+
name?: string | null;
|
|
372
|
+
value?: unknown;
|
|
373
|
+
}> | null;
|
|
374
|
+
localizationResource?: string | null;
|
|
375
|
+
};
|
|
376
|
+
} | null;
|
|
377
|
+
};
|
|
148
378
|
extraProperties?: {
|
|
149
379
|
[key: string]: unknown;
|
|
150
380
|
} | null;
|
|
@@ -167,22 +397,62 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocaliz
|
|
|
167
397
|
};
|
|
168
398
|
} | null;
|
|
169
399
|
resources?: {
|
|
170
|
-
[key: string]:
|
|
400
|
+
[key: string]: {
|
|
401
|
+
texts?: {
|
|
402
|
+
[key: string]: (string);
|
|
403
|
+
} | null;
|
|
404
|
+
baseResources?: Array<(string)> | null;
|
|
405
|
+
};
|
|
171
406
|
} | null;
|
|
172
|
-
languages?: Array<
|
|
173
|
-
|
|
407
|
+
languages?: Array<{
|
|
408
|
+
cultureName?: string | null;
|
|
409
|
+
uiCultureName?: string | null;
|
|
410
|
+
displayName?: string | null;
|
|
411
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
412
|
+
flagIcon?: string | null;
|
|
413
|
+
}> | null;
|
|
414
|
+
currentCulture?: {
|
|
415
|
+
displayName?: string | null;
|
|
416
|
+
englishName?: string | null;
|
|
417
|
+
threeLetterIsoLanguageName?: string | null;
|
|
418
|
+
twoLetterIsoLanguageName?: string | null;
|
|
419
|
+
isRightToLeft?: boolean;
|
|
420
|
+
cultureName?: string | null;
|
|
421
|
+
name?: string | null;
|
|
422
|
+
nativeName?: string | null;
|
|
423
|
+
dateTimeFormat?: {
|
|
424
|
+
calendarAlgorithmType?: string | null;
|
|
425
|
+
dateTimeFormatLong?: string | null;
|
|
426
|
+
shortDatePattern?: string | null;
|
|
427
|
+
fullDateTimePattern?: string | null;
|
|
428
|
+
dateSeparator?: string | null;
|
|
429
|
+
shortTimePattern?: string | null;
|
|
430
|
+
longTimePattern?: string | null;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
174
433
|
defaultResourceName?: string | null;
|
|
175
434
|
languagesMap?: {
|
|
176
|
-
[key: string]: Array<
|
|
435
|
+
[key: string]: Array<{
|
|
436
|
+
name?: string | null;
|
|
437
|
+
value?: string | null;
|
|
438
|
+
}>;
|
|
177
439
|
} | null;
|
|
178
440
|
languageFilesMap?: {
|
|
179
|
-
[key: string]: Array<
|
|
441
|
+
[key: string]: Array<{
|
|
442
|
+
name?: string | null;
|
|
443
|
+
value?: string | null;
|
|
444
|
+
}>;
|
|
180
445
|
} | null;
|
|
181
446
|
};
|
|
182
447
|
|
|
183
448
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
184
449
|
resources?: {
|
|
185
|
-
[key: string]:
|
|
450
|
+
[key: string]: {
|
|
451
|
+
texts?: {
|
|
452
|
+
[key: string]: (string);
|
|
453
|
+
} | null;
|
|
454
|
+
baseResources?: Array<(string)> | null;
|
|
455
|
+
};
|
|
186
456
|
} | null;
|
|
187
457
|
};
|
|
188
458
|
|
|
@@ -212,7 +482,15 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto
|
|
|
212
482
|
cultureName?: string | null;
|
|
213
483
|
name?: string | null;
|
|
214
484
|
nativeName?: string | null;
|
|
215
|
-
dateTimeFormat?:
|
|
485
|
+
dateTimeFormat?: {
|
|
486
|
+
calendarAlgorithmType?: string | null;
|
|
487
|
+
dateTimeFormatLong?: string | null;
|
|
488
|
+
shortDatePattern?: string | null;
|
|
489
|
+
fullDateTimePattern?: string | null;
|
|
490
|
+
dateSeparator?: string | null;
|
|
491
|
+
shortTimePattern?: string | null;
|
|
492
|
+
longTimePattern?: string | null;
|
|
493
|
+
};
|
|
216
494
|
};
|
|
217
495
|
|
|
218
496
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
@@ -249,7 +527,53 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
|
249
527
|
|
|
250
528
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
251
529
|
properties?: {
|
|
252
|
-
[key: string]:
|
|
530
|
+
[key: string]: {
|
|
531
|
+
type?: string | null;
|
|
532
|
+
typeSimple?: string | null;
|
|
533
|
+
displayName?: {
|
|
534
|
+
name?: string | null;
|
|
535
|
+
resource?: string | null;
|
|
536
|
+
};
|
|
537
|
+
api?: {
|
|
538
|
+
onGet?: {
|
|
539
|
+
isAvailable?: boolean;
|
|
540
|
+
};
|
|
541
|
+
onCreate?: {
|
|
542
|
+
isAvailable?: boolean;
|
|
543
|
+
};
|
|
544
|
+
onUpdate?: {
|
|
545
|
+
isAvailable?: boolean;
|
|
546
|
+
};
|
|
547
|
+
};
|
|
548
|
+
ui?: {
|
|
549
|
+
onTable?: {
|
|
550
|
+
isVisible?: boolean;
|
|
551
|
+
};
|
|
552
|
+
onCreateForm?: {
|
|
553
|
+
isVisible?: boolean;
|
|
554
|
+
};
|
|
555
|
+
onEditForm?: {
|
|
556
|
+
isVisible?: boolean;
|
|
557
|
+
};
|
|
558
|
+
lookup?: {
|
|
559
|
+
url?: string | null;
|
|
560
|
+
resultListPropertyName?: string | null;
|
|
561
|
+
displayPropertyName?: string | null;
|
|
562
|
+
valuePropertyName?: string | null;
|
|
563
|
+
filterParamName?: string | null;
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
attributes?: Array<{
|
|
567
|
+
typeSimple?: string | null;
|
|
568
|
+
config?: {
|
|
569
|
+
[key: string]: unknown;
|
|
570
|
+
} | null;
|
|
571
|
+
}> | null;
|
|
572
|
+
configuration?: {
|
|
573
|
+
[key: string]: unknown;
|
|
574
|
+
} | null;
|
|
575
|
+
defaultValue?: unknown;
|
|
576
|
+
};
|
|
253
577
|
} | null;
|
|
254
578
|
configuration?: {
|
|
255
579
|
[key: string]: unknown;
|
|
@@ -257,7 +581,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_En
|
|
|
257
581
|
};
|
|
258
582
|
|
|
259
583
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
260
|
-
fields?: Array<
|
|
584
|
+
fields?: Array<{
|
|
585
|
+
name?: string | null;
|
|
586
|
+
value?: unknown;
|
|
587
|
+
}> | null;
|
|
261
588
|
localizationResource?: string | null;
|
|
262
589
|
};
|
|
263
590
|
|
|
@@ -271,9 +598,15 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
271
598
|
};
|
|
272
599
|
|
|
273
600
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
274
|
-
onGet?:
|
|
275
|
-
|
|
276
|
-
|
|
601
|
+
onGet?: {
|
|
602
|
+
isAvailable?: boolean;
|
|
603
|
+
};
|
|
604
|
+
onCreate?: {
|
|
605
|
+
isAvailable?: boolean;
|
|
606
|
+
};
|
|
607
|
+
onUpdate?: {
|
|
608
|
+
isAvailable?: boolean;
|
|
609
|
+
};
|
|
277
610
|
};
|
|
278
611
|
|
|
279
612
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
@@ -294,10 +627,45 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
294
627
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
295
628
|
type?: string | null;
|
|
296
629
|
typeSimple?: string | null;
|
|
297
|
-
displayName?:
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
630
|
+
displayName?: {
|
|
631
|
+
name?: string | null;
|
|
632
|
+
resource?: string | null;
|
|
633
|
+
};
|
|
634
|
+
api?: {
|
|
635
|
+
onGet?: {
|
|
636
|
+
isAvailable?: boolean;
|
|
637
|
+
};
|
|
638
|
+
onCreate?: {
|
|
639
|
+
isAvailable?: boolean;
|
|
640
|
+
};
|
|
641
|
+
onUpdate?: {
|
|
642
|
+
isAvailable?: boolean;
|
|
643
|
+
};
|
|
644
|
+
};
|
|
645
|
+
ui?: {
|
|
646
|
+
onTable?: {
|
|
647
|
+
isVisible?: boolean;
|
|
648
|
+
};
|
|
649
|
+
onCreateForm?: {
|
|
650
|
+
isVisible?: boolean;
|
|
651
|
+
};
|
|
652
|
+
onEditForm?: {
|
|
653
|
+
isVisible?: boolean;
|
|
654
|
+
};
|
|
655
|
+
lookup?: {
|
|
656
|
+
url?: string | null;
|
|
657
|
+
resultListPropertyName?: string | null;
|
|
658
|
+
displayPropertyName?: string | null;
|
|
659
|
+
valuePropertyName?: string | null;
|
|
660
|
+
filterParamName?: string | null;
|
|
661
|
+
};
|
|
662
|
+
};
|
|
663
|
+
attributes?: Array<{
|
|
664
|
+
typeSimple?: string | null;
|
|
665
|
+
config?: {
|
|
666
|
+
[key: string]: unknown;
|
|
667
|
+
} | null;
|
|
668
|
+
}> | null;
|
|
301
669
|
configuration?: {
|
|
302
670
|
[key: string]: unknown;
|
|
303
671
|
} | null;
|
|
@@ -305,10 +673,22 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
305
673
|
};
|
|
306
674
|
|
|
307
675
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
308
|
-
onTable?:
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
676
|
+
onTable?: {
|
|
677
|
+
isVisible?: boolean;
|
|
678
|
+
};
|
|
679
|
+
onCreateForm?: {
|
|
680
|
+
isVisible?: boolean;
|
|
681
|
+
};
|
|
682
|
+
onEditForm?: {
|
|
683
|
+
isVisible?: boolean;
|
|
684
|
+
};
|
|
685
|
+
lookup?: {
|
|
686
|
+
url?: string | null;
|
|
687
|
+
resultListPropertyName?: string | null;
|
|
688
|
+
displayPropertyName?: string | null;
|
|
689
|
+
valuePropertyName?: string | null;
|
|
690
|
+
filterParamName?: string | null;
|
|
691
|
+
};
|
|
312
692
|
};
|
|
313
693
|
|
|
314
694
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
@@ -334,7 +714,60 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Lo
|
|
|
334
714
|
|
|
335
715
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
336
716
|
entities?: {
|
|
337
|
-
[key: string]:
|
|
717
|
+
[key: string]: {
|
|
718
|
+
properties?: {
|
|
719
|
+
[key: string]: {
|
|
720
|
+
type?: string | null;
|
|
721
|
+
typeSimple?: string | null;
|
|
722
|
+
displayName?: {
|
|
723
|
+
name?: string | null;
|
|
724
|
+
resource?: string | null;
|
|
725
|
+
};
|
|
726
|
+
api?: {
|
|
727
|
+
onGet?: {
|
|
728
|
+
isAvailable?: boolean;
|
|
729
|
+
};
|
|
730
|
+
onCreate?: {
|
|
731
|
+
isAvailable?: boolean;
|
|
732
|
+
};
|
|
733
|
+
onUpdate?: {
|
|
734
|
+
isAvailable?: boolean;
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
ui?: {
|
|
738
|
+
onTable?: {
|
|
739
|
+
isVisible?: boolean;
|
|
740
|
+
};
|
|
741
|
+
onCreateForm?: {
|
|
742
|
+
isVisible?: boolean;
|
|
743
|
+
};
|
|
744
|
+
onEditForm?: {
|
|
745
|
+
isVisible?: boolean;
|
|
746
|
+
};
|
|
747
|
+
lookup?: {
|
|
748
|
+
url?: string | null;
|
|
749
|
+
resultListPropertyName?: string | null;
|
|
750
|
+
displayPropertyName?: string | null;
|
|
751
|
+
valuePropertyName?: string | null;
|
|
752
|
+
filterParamName?: string | null;
|
|
753
|
+
};
|
|
754
|
+
};
|
|
755
|
+
attributes?: Array<{
|
|
756
|
+
typeSimple?: string | null;
|
|
757
|
+
config?: {
|
|
758
|
+
[key: string]: unknown;
|
|
759
|
+
} | null;
|
|
760
|
+
}> | null;
|
|
761
|
+
configuration?: {
|
|
762
|
+
[key: string]: unknown;
|
|
763
|
+
} | null;
|
|
764
|
+
defaultValue?: unknown;
|
|
765
|
+
};
|
|
766
|
+
} | null;
|
|
767
|
+
configuration?: {
|
|
768
|
+
[key: string]: unknown;
|
|
769
|
+
} | null;
|
|
770
|
+
};
|
|
338
771
|
} | null;
|
|
339
772
|
configuration?: {
|
|
340
773
|
[key: string]: unknown;
|
|
@@ -343,20 +776,97 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Mo
|
|
|
343
776
|
|
|
344
777
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
345
778
|
modules?: {
|
|
346
|
-
[key: string]:
|
|
779
|
+
[key: string]: {
|
|
780
|
+
entities?: {
|
|
781
|
+
[key: string]: {
|
|
782
|
+
properties?: {
|
|
783
|
+
[key: string]: {
|
|
784
|
+
type?: string | null;
|
|
785
|
+
typeSimple?: string | null;
|
|
786
|
+
displayName?: {
|
|
787
|
+
name?: string | null;
|
|
788
|
+
resource?: string | null;
|
|
789
|
+
};
|
|
790
|
+
api?: {
|
|
791
|
+
onGet?: {
|
|
792
|
+
isAvailable?: boolean;
|
|
793
|
+
};
|
|
794
|
+
onCreate?: {
|
|
795
|
+
isAvailable?: boolean;
|
|
796
|
+
};
|
|
797
|
+
onUpdate?: {
|
|
798
|
+
isAvailable?: boolean;
|
|
799
|
+
};
|
|
800
|
+
};
|
|
801
|
+
ui?: {
|
|
802
|
+
onTable?: {
|
|
803
|
+
isVisible?: boolean;
|
|
804
|
+
};
|
|
805
|
+
onCreateForm?: {
|
|
806
|
+
isVisible?: boolean;
|
|
807
|
+
};
|
|
808
|
+
onEditForm?: {
|
|
809
|
+
isVisible?: boolean;
|
|
810
|
+
};
|
|
811
|
+
lookup?: {
|
|
812
|
+
url?: string | null;
|
|
813
|
+
resultListPropertyName?: string | null;
|
|
814
|
+
displayPropertyName?: string | null;
|
|
815
|
+
valuePropertyName?: string | null;
|
|
816
|
+
filterParamName?: string | null;
|
|
817
|
+
};
|
|
818
|
+
};
|
|
819
|
+
attributes?: Array<{
|
|
820
|
+
typeSimple?: string | null;
|
|
821
|
+
config?: {
|
|
822
|
+
[key: string]: unknown;
|
|
823
|
+
} | null;
|
|
824
|
+
}> | null;
|
|
825
|
+
configuration?: {
|
|
826
|
+
[key: string]: unknown;
|
|
827
|
+
} | null;
|
|
828
|
+
defaultValue?: unknown;
|
|
829
|
+
};
|
|
830
|
+
} | null;
|
|
831
|
+
configuration?: {
|
|
832
|
+
[key: string]: unknown;
|
|
833
|
+
} | null;
|
|
834
|
+
};
|
|
835
|
+
} | null;
|
|
836
|
+
configuration?: {
|
|
837
|
+
[key: string]: unknown;
|
|
838
|
+
} | null;
|
|
839
|
+
};
|
|
347
840
|
} | null;
|
|
348
841
|
enums?: {
|
|
349
|
-
[key: string]:
|
|
842
|
+
[key: string]: {
|
|
843
|
+
fields?: Array<{
|
|
844
|
+
name?: string | null;
|
|
845
|
+
value?: unknown;
|
|
846
|
+
}> | null;
|
|
847
|
+
localizationResource?: string | null;
|
|
848
|
+
};
|
|
350
849
|
} | null;
|
|
351
850
|
};
|
|
352
851
|
|
|
353
852
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
354
|
-
iana?:
|
|
355
|
-
|
|
853
|
+
iana?: {
|
|
854
|
+
timeZoneName?: string | null;
|
|
855
|
+
};
|
|
856
|
+
windows?: {
|
|
857
|
+
timeZoneId?: string | null;
|
|
858
|
+
};
|
|
356
859
|
};
|
|
357
860
|
|
|
358
861
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
359
|
-
timeZone?:
|
|
862
|
+
timeZone?: {
|
|
863
|
+
iana?: {
|
|
864
|
+
timeZoneName?: string | null;
|
|
865
|
+
};
|
|
866
|
+
windows?: {
|
|
867
|
+
timeZoneId?: string | null;
|
|
868
|
+
};
|
|
869
|
+
};
|
|
360
870
|
};
|
|
361
871
|
|
|
362
872
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
@@ -379,19 +889,125 @@ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
379
889
|
httpMethod?: string | null;
|
|
380
890
|
url?: string | null;
|
|
381
891
|
supportedVersions?: Array<(string)> | null;
|
|
382
|
-
parametersOnMethod?: Array<
|
|
383
|
-
|
|
384
|
-
|
|
892
|
+
parametersOnMethod?: Array<{
|
|
893
|
+
name?: string | null;
|
|
894
|
+
typeAsString?: string | null;
|
|
895
|
+
type?: string | null;
|
|
896
|
+
typeSimple?: string | null;
|
|
897
|
+
isOptional?: boolean;
|
|
898
|
+
defaultValue?: unknown;
|
|
899
|
+
}> | null;
|
|
900
|
+
parameters?: Array<{
|
|
901
|
+
nameOnMethod?: string | null;
|
|
902
|
+
name?: string | null;
|
|
903
|
+
jsonName?: string | null;
|
|
904
|
+
type?: string | null;
|
|
905
|
+
typeSimple?: string | null;
|
|
906
|
+
isOptional?: boolean;
|
|
907
|
+
defaultValue?: unknown;
|
|
908
|
+
constraintTypes?: Array<(string)> | null;
|
|
909
|
+
bindingSourceId?: string | null;
|
|
910
|
+
descriptorName?: string | null;
|
|
911
|
+
}> | null;
|
|
912
|
+
returnValue?: {
|
|
913
|
+
type?: string | null;
|
|
914
|
+
typeSimple?: string | null;
|
|
915
|
+
};
|
|
385
916
|
allowAnonymous?: boolean | null;
|
|
386
917
|
implementFrom?: string | null;
|
|
387
918
|
};
|
|
388
919
|
|
|
389
920
|
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
390
921
|
modules?: {
|
|
391
|
-
[key: string]:
|
|
922
|
+
[key: string]: {
|
|
923
|
+
rootPath?: string | null;
|
|
924
|
+
remoteServiceName?: string | null;
|
|
925
|
+
controllers?: {
|
|
926
|
+
[key: string]: {
|
|
927
|
+
controllerName?: string | null;
|
|
928
|
+
controllerGroupName?: string | null;
|
|
929
|
+
isRemoteService?: boolean;
|
|
930
|
+
isIntegrationService?: boolean;
|
|
931
|
+
apiVersion?: string | null;
|
|
932
|
+
type?: string | null;
|
|
933
|
+
interfaces?: Array<{
|
|
934
|
+
type?: string | null;
|
|
935
|
+
name?: string | null;
|
|
936
|
+
methods?: Array<{
|
|
937
|
+
name?: string | null;
|
|
938
|
+
parametersOnMethod?: Array<{
|
|
939
|
+
name?: string | null;
|
|
940
|
+
typeAsString?: string | null;
|
|
941
|
+
type?: string | null;
|
|
942
|
+
typeSimple?: string | null;
|
|
943
|
+
isOptional?: boolean;
|
|
944
|
+
defaultValue?: unknown;
|
|
945
|
+
}> | null;
|
|
946
|
+
returnValue?: {
|
|
947
|
+
type?: string | null;
|
|
948
|
+
typeSimple?: string | null;
|
|
949
|
+
};
|
|
950
|
+
}> | null;
|
|
951
|
+
}> | null;
|
|
952
|
+
actions?: {
|
|
953
|
+
[key: string]: {
|
|
954
|
+
uniqueName?: string | null;
|
|
955
|
+
name?: string | null;
|
|
956
|
+
httpMethod?: string | null;
|
|
957
|
+
url?: string | null;
|
|
958
|
+
supportedVersions?: Array<(string)> | null;
|
|
959
|
+
parametersOnMethod?: Array<{
|
|
960
|
+
name?: string | null;
|
|
961
|
+
typeAsString?: string | null;
|
|
962
|
+
type?: string | null;
|
|
963
|
+
typeSimple?: string | null;
|
|
964
|
+
isOptional?: boolean;
|
|
965
|
+
defaultValue?: unknown;
|
|
966
|
+
}> | null;
|
|
967
|
+
parameters?: Array<{
|
|
968
|
+
nameOnMethod?: string | null;
|
|
969
|
+
name?: string | null;
|
|
970
|
+
jsonName?: string | null;
|
|
971
|
+
type?: string | null;
|
|
972
|
+
typeSimple?: string | null;
|
|
973
|
+
isOptional?: boolean;
|
|
974
|
+
defaultValue?: unknown;
|
|
975
|
+
constraintTypes?: Array<(string)> | null;
|
|
976
|
+
bindingSourceId?: string | null;
|
|
977
|
+
descriptorName?: string | null;
|
|
978
|
+
}> | null;
|
|
979
|
+
returnValue?: {
|
|
980
|
+
type?: string | null;
|
|
981
|
+
typeSimple?: string | null;
|
|
982
|
+
};
|
|
983
|
+
allowAnonymous?: boolean | null;
|
|
984
|
+
implementFrom?: string | null;
|
|
985
|
+
};
|
|
986
|
+
} | null;
|
|
987
|
+
};
|
|
988
|
+
} | null;
|
|
989
|
+
};
|
|
392
990
|
} | null;
|
|
393
991
|
types?: {
|
|
394
|
-
[key: string]:
|
|
992
|
+
[key: string]: {
|
|
993
|
+
baseType?: string | null;
|
|
994
|
+
isEnum?: boolean;
|
|
995
|
+
enumNames?: Array<(string)> | null;
|
|
996
|
+
enumValues?: Array<unknown> | null;
|
|
997
|
+
genericArguments?: Array<(string)> | null;
|
|
998
|
+
properties?: Array<{
|
|
999
|
+
name?: string | null;
|
|
1000
|
+
jsonName?: string | null;
|
|
1001
|
+
type?: string | null;
|
|
1002
|
+
typeSimple?: string | null;
|
|
1003
|
+
isRequired?: boolean;
|
|
1004
|
+
minLength?: number | null;
|
|
1005
|
+
maxLength?: number | null;
|
|
1006
|
+
minimum?: string | null;
|
|
1007
|
+
maximum?: string | null;
|
|
1008
|
+
regex?: string | null;
|
|
1009
|
+
}> | null;
|
|
1010
|
+
};
|
|
395
1011
|
} | null;
|
|
396
1012
|
};
|
|
397
1013
|
|
|
@@ -402,22 +1018,96 @@ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
402
1018
|
isIntegrationService?: boolean;
|
|
403
1019
|
apiVersion?: string | null;
|
|
404
1020
|
type?: string | null;
|
|
405
|
-
interfaces?: Array<
|
|
1021
|
+
interfaces?: Array<{
|
|
1022
|
+
type?: string | null;
|
|
1023
|
+
name?: string | null;
|
|
1024
|
+
methods?: Array<{
|
|
1025
|
+
name?: string | null;
|
|
1026
|
+
parametersOnMethod?: Array<{
|
|
1027
|
+
name?: string | null;
|
|
1028
|
+
typeAsString?: string | null;
|
|
1029
|
+
type?: string | null;
|
|
1030
|
+
typeSimple?: string | null;
|
|
1031
|
+
isOptional?: boolean;
|
|
1032
|
+
defaultValue?: unknown;
|
|
1033
|
+
}> | null;
|
|
1034
|
+
returnValue?: {
|
|
1035
|
+
type?: string | null;
|
|
1036
|
+
typeSimple?: string | null;
|
|
1037
|
+
};
|
|
1038
|
+
}> | null;
|
|
1039
|
+
}> | null;
|
|
406
1040
|
actions?: {
|
|
407
|
-
[key: string]:
|
|
1041
|
+
[key: string]: {
|
|
1042
|
+
uniqueName?: string | null;
|
|
1043
|
+
name?: string | null;
|
|
1044
|
+
httpMethod?: string | null;
|
|
1045
|
+
url?: string | null;
|
|
1046
|
+
supportedVersions?: Array<(string)> | null;
|
|
1047
|
+
parametersOnMethod?: Array<{
|
|
1048
|
+
name?: string | null;
|
|
1049
|
+
typeAsString?: string | null;
|
|
1050
|
+
type?: string | null;
|
|
1051
|
+
typeSimple?: string | null;
|
|
1052
|
+
isOptional?: boolean;
|
|
1053
|
+
defaultValue?: unknown;
|
|
1054
|
+
}> | null;
|
|
1055
|
+
parameters?: Array<{
|
|
1056
|
+
nameOnMethod?: string | null;
|
|
1057
|
+
name?: string | null;
|
|
1058
|
+
jsonName?: string | null;
|
|
1059
|
+
type?: string | null;
|
|
1060
|
+
typeSimple?: string | null;
|
|
1061
|
+
isOptional?: boolean;
|
|
1062
|
+
defaultValue?: unknown;
|
|
1063
|
+
constraintTypes?: Array<(string)> | null;
|
|
1064
|
+
bindingSourceId?: string | null;
|
|
1065
|
+
descriptorName?: string | null;
|
|
1066
|
+
}> | null;
|
|
1067
|
+
returnValue?: {
|
|
1068
|
+
type?: string | null;
|
|
1069
|
+
typeSimple?: string | null;
|
|
1070
|
+
};
|
|
1071
|
+
allowAnonymous?: boolean | null;
|
|
1072
|
+
implementFrom?: string | null;
|
|
1073
|
+
};
|
|
408
1074
|
} | null;
|
|
409
1075
|
};
|
|
410
1076
|
|
|
411
1077
|
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
412
1078
|
type?: string | null;
|
|
413
1079
|
name?: string | null;
|
|
414
|
-
methods?: Array<
|
|
1080
|
+
methods?: Array<{
|
|
1081
|
+
name?: string | null;
|
|
1082
|
+
parametersOnMethod?: Array<{
|
|
1083
|
+
name?: string | null;
|
|
1084
|
+
typeAsString?: string | null;
|
|
1085
|
+
type?: string | null;
|
|
1086
|
+
typeSimple?: string | null;
|
|
1087
|
+
isOptional?: boolean;
|
|
1088
|
+
defaultValue?: unknown;
|
|
1089
|
+
}> | null;
|
|
1090
|
+
returnValue?: {
|
|
1091
|
+
type?: string | null;
|
|
1092
|
+
typeSimple?: string | null;
|
|
1093
|
+
};
|
|
1094
|
+
}> | null;
|
|
415
1095
|
};
|
|
416
1096
|
|
|
417
1097
|
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
418
1098
|
name?: string | null;
|
|
419
|
-
parametersOnMethod?: Array<
|
|
420
|
-
|
|
1099
|
+
parametersOnMethod?: Array<{
|
|
1100
|
+
name?: string | null;
|
|
1101
|
+
typeAsString?: string | null;
|
|
1102
|
+
type?: string | null;
|
|
1103
|
+
typeSimple?: string | null;
|
|
1104
|
+
isOptional?: boolean;
|
|
1105
|
+
defaultValue?: unknown;
|
|
1106
|
+
}> | null;
|
|
1107
|
+
returnValue?: {
|
|
1108
|
+
type?: string | null;
|
|
1109
|
+
typeSimple?: string | null;
|
|
1110
|
+
};
|
|
421
1111
|
};
|
|
422
1112
|
|
|
423
1113
|
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
@@ -433,7 +1123,68 @@ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
433
1123
|
rootPath?: string | null;
|
|
434
1124
|
remoteServiceName?: string | null;
|
|
435
1125
|
controllers?: {
|
|
436
|
-
[key: string]:
|
|
1126
|
+
[key: string]: {
|
|
1127
|
+
controllerName?: string | null;
|
|
1128
|
+
controllerGroupName?: string | null;
|
|
1129
|
+
isRemoteService?: boolean;
|
|
1130
|
+
isIntegrationService?: boolean;
|
|
1131
|
+
apiVersion?: string | null;
|
|
1132
|
+
type?: string | null;
|
|
1133
|
+
interfaces?: Array<{
|
|
1134
|
+
type?: string | null;
|
|
1135
|
+
name?: string | null;
|
|
1136
|
+
methods?: Array<{
|
|
1137
|
+
name?: string | null;
|
|
1138
|
+
parametersOnMethod?: Array<{
|
|
1139
|
+
name?: string | null;
|
|
1140
|
+
typeAsString?: string | null;
|
|
1141
|
+
type?: string | null;
|
|
1142
|
+
typeSimple?: string | null;
|
|
1143
|
+
isOptional?: boolean;
|
|
1144
|
+
defaultValue?: unknown;
|
|
1145
|
+
}> | null;
|
|
1146
|
+
returnValue?: {
|
|
1147
|
+
type?: string | null;
|
|
1148
|
+
typeSimple?: string | null;
|
|
1149
|
+
};
|
|
1150
|
+
}> | null;
|
|
1151
|
+
}> | null;
|
|
1152
|
+
actions?: {
|
|
1153
|
+
[key: string]: {
|
|
1154
|
+
uniqueName?: string | null;
|
|
1155
|
+
name?: string | null;
|
|
1156
|
+
httpMethod?: string | null;
|
|
1157
|
+
url?: string | null;
|
|
1158
|
+
supportedVersions?: Array<(string)> | null;
|
|
1159
|
+
parametersOnMethod?: Array<{
|
|
1160
|
+
name?: string | null;
|
|
1161
|
+
typeAsString?: string | null;
|
|
1162
|
+
type?: string | null;
|
|
1163
|
+
typeSimple?: string | null;
|
|
1164
|
+
isOptional?: boolean;
|
|
1165
|
+
defaultValue?: unknown;
|
|
1166
|
+
}> | null;
|
|
1167
|
+
parameters?: Array<{
|
|
1168
|
+
nameOnMethod?: string | null;
|
|
1169
|
+
name?: string | null;
|
|
1170
|
+
jsonName?: string | null;
|
|
1171
|
+
type?: string | null;
|
|
1172
|
+
typeSimple?: string | null;
|
|
1173
|
+
isOptional?: boolean;
|
|
1174
|
+
defaultValue?: unknown;
|
|
1175
|
+
constraintTypes?: Array<(string)> | null;
|
|
1176
|
+
bindingSourceId?: string | null;
|
|
1177
|
+
descriptorName?: string | null;
|
|
1178
|
+
}> | null;
|
|
1179
|
+
returnValue?: {
|
|
1180
|
+
type?: string | null;
|
|
1181
|
+
typeSimple?: string | null;
|
|
1182
|
+
};
|
|
1183
|
+
allowAnonymous?: boolean | null;
|
|
1184
|
+
implementFrom?: string | null;
|
|
1185
|
+
};
|
|
1186
|
+
} | null;
|
|
1187
|
+
};
|
|
437
1188
|
} | null;
|
|
438
1189
|
};
|
|
439
1190
|
|
|
@@ -474,7 +1225,18 @@ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
474
1225
|
enumNames?: Array<(string)> | null;
|
|
475
1226
|
enumValues?: Array<unknown> | null;
|
|
476
1227
|
genericArguments?: Array<(string)> | null;
|
|
477
|
-
properties?: Array<
|
|
1228
|
+
properties?: Array<{
|
|
1229
|
+
name?: string | null;
|
|
1230
|
+
jsonName?: string | null;
|
|
1231
|
+
type?: string | null;
|
|
1232
|
+
typeSimple?: string | null;
|
|
1233
|
+
isRequired?: boolean;
|
|
1234
|
+
minLength?: number | null;
|
|
1235
|
+
maxLength?: number | null;
|
|
1236
|
+
minimum?: string | null;
|
|
1237
|
+
maximum?: string | null;
|
|
1238
|
+
regex?: string | null;
|
|
1239
|
+
}> | null;
|
|
478
1240
|
};
|
|
479
1241
|
|
|
480
1242
|
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
@@ -484,11 +1246,25 @@ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
484
1246
|
data?: {
|
|
485
1247
|
[key: string]: unknown;
|
|
486
1248
|
} | null;
|
|
487
|
-
validationErrors?: Array<
|
|
1249
|
+
validationErrors?: Array<{
|
|
1250
|
+
message?: string | null;
|
|
1251
|
+
members?: Array<(string)> | null;
|
|
1252
|
+
}> | null;
|
|
488
1253
|
};
|
|
489
1254
|
|
|
490
1255
|
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
491
|
-
error?:
|
|
1256
|
+
error?: {
|
|
1257
|
+
code?: string | null;
|
|
1258
|
+
message?: string | null;
|
|
1259
|
+
details?: string | null;
|
|
1260
|
+
data?: {
|
|
1261
|
+
[key: string]: unknown;
|
|
1262
|
+
} | null;
|
|
1263
|
+
validationErrors?: Array<{
|
|
1264
|
+
message?: string | null;
|
|
1265
|
+
members?: Array<(string)> | null;
|
|
1266
|
+
}> | null;
|
|
1267
|
+
};
|
|
492
1268
|
};
|
|
493
1269
|
|
|
494
1270
|
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
@@ -513,26 +1289,365 @@ export type GetApiAbpApiDefinitionData = {
|
|
|
513
1289
|
includeTypes?: boolean;
|
|
514
1290
|
};
|
|
515
1291
|
|
|
516
|
-
export type GetApiAbpApiDefinitionResponse =
|
|
1292
|
+
export type GetApiAbpApiDefinitionResponse = {
|
|
1293
|
+
modules?: {
|
|
1294
|
+
[key: string]: {
|
|
1295
|
+
rootPath?: string | null;
|
|
1296
|
+
remoteServiceName?: string | null;
|
|
1297
|
+
controllers?: {
|
|
1298
|
+
[key: string]: {
|
|
1299
|
+
controllerName?: string | null;
|
|
1300
|
+
controllerGroupName?: string | null;
|
|
1301
|
+
isRemoteService?: boolean;
|
|
1302
|
+
isIntegrationService?: boolean;
|
|
1303
|
+
apiVersion?: string | null;
|
|
1304
|
+
type?: string | null;
|
|
1305
|
+
interfaces?: Array<{
|
|
1306
|
+
type?: string | null;
|
|
1307
|
+
name?: string | null;
|
|
1308
|
+
methods?: Array<{
|
|
1309
|
+
name?: string | null;
|
|
1310
|
+
parametersOnMethod?: Array<{
|
|
1311
|
+
name?: string | null;
|
|
1312
|
+
typeAsString?: string | null;
|
|
1313
|
+
type?: string | null;
|
|
1314
|
+
typeSimple?: string | null;
|
|
1315
|
+
isOptional?: boolean;
|
|
1316
|
+
defaultValue?: unknown;
|
|
1317
|
+
}> | null;
|
|
1318
|
+
returnValue?: {
|
|
1319
|
+
type?: string | null;
|
|
1320
|
+
typeSimple?: string | null;
|
|
1321
|
+
};
|
|
1322
|
+
}> | null;
|
|
1323
|
+
}> | null;
|
|
1324
|
+
actions?: {
|
|
1325
|
+
[key: string]: {
|
|
1326
|
+
uniqueName?: string | null;
|
|
1327
|
+
name?: string | null;
|
|
1328
|
+
httpMethod?: string | null;
|
|
1329
|
+
url?: string | null;
|
|
1330
|
+
supportedVersions?: Array<(string)> | null;
|
|
1331
|
+
parametersOnMethod?: Array<{
|
|
1332
|
+
name?: string | null;
|
|
1333
|
+
typeAsString?: string | null;
|
|
1334
|
+
type?: string | null;
|
|
1335
|
+
typeSimple?: string | null;
|
|
1336
|
+
isOptional?: boolean;
|
|
1337
|
+
defaultValue?: unknown;
|
|
1338
|
+
}> | null;
|
|
1339
|
+
parameters?: Array<{
|
|
1340
|
+
nameOnMethod?: string | null;
|
|
1341
|
+
name?: string | null;
|
|
1342
|
+
jsonName?: string | null;
|
|
1343
|
+
type?: string | null;
|
|
1344
|
+
typeSimple?: string | null;
|
|
1345
|
+
isOptional?: boolean;
|
|
1346
|
+
defaultValue?: unknown;
|
|
1347
|
+
constraintTypes?: Array<(string)> | null;
|
|
1348
|
+
bindingSourceId?: string | null;
|
|
1349
|
+
descriptorName?: string | null;
|
|
1350
|
+
}> | null;
|
|
1351
|
+
returnValue?: {
|
|
1352
|
+
type?: string | null;
|
|
1353
|
+
typeSimple?: string | null;
|
|
1354
|
+
};
|
|
1355
|
+
allowAnonymous?: boolean | null;
|
|
1356
|
+
implementFrom?: string | null;
|
|
1357
|
+
};
|
|
1358
|
+
} | null;
|
|
1359
|
+
};
|
|
1360
|
+
} | null;
|
|
1361
|
+
};
|
|
1362
|
+
} | null;
|
|
1363
|
+
types?: {
|
|
1364
|
+
[key: string]: {
|
|
1365
|
+
baseType?: string | null;
|
|
1366
|
+
isEnum?: boolean;
|
|
1367
|
+
enumNames?: Array<(string)> | null;
|
|
1368
|
+
enumValues?: Array<unknown> | null;
|
|
1369
|
+
genericArguments?: Array<(string)> | null;
|
|
1370
|
+
properties?: Array<{
|
|
1371
|
+
name?: string | null;
|
|
1372
|
+
jsonName?: string | null;
|
|
1373
|
+
type?: string | null;
|
|
1374
|
+
typeSimple?: string | null;
|
|
1375
|
+
isRequired?: boolean;
|
|
1376
|
+
minLength?: number | null;
|
|
1377
|
+
maxLength?: number | null;
|
|
1378
|
+
minimum?: string | null;
|
|
1379
|
+
maximum?: string | null;
|
|
1380
|
+
regex?: string | null;
|
|
1381
|
+
}> | null;
|
|
1382
|
+
};
|
|
1383
|
+
} | null;
|
|
1384
|
+
};
|
|
517
1385
|
|
|
518
1386
|
export type GetApiAbpApplicationConfigurationData = {
|
|
519
1387
|
includeLocalizationResources?: boolean;
|
|
520
1388
|
};
|
|
521
1389
|
|
|
522
|
-
export type GetApiAbpApplicationConfigurationResponse =
|
|
1390
|
+
export type GetApiAbpApplicationConfigurationResponse = {
|
|
1391
|
+
localization?: {
|
|
1392
|
+
values?: {
|
|
1393
|
+
[key: string]: {
|
|
1394
|
+
[key: string]: (string);
|
|
1395
|
+
};
|
|
1396
|
+
} | null;
|
|
1397
|
+
resources?: {
|
|
1398
|
+
[key: string]: {
|
|
1399
|
+
texts?: {
|
|
1400
|
+
[key: string]: (string);
|
|
1401
|
+
} | null;
|
|
1402
|
+
baseResources?: Array<(string)> | null;
|
|
1403
|
+
};
|
|
1404
|
+
} | null;
|
|
1405
|
+
languages?: Array<{
|
|
1406
|
+
cultureName?: string | null;
|
|
1407
|
+
uiCultureName?: string | null;
|
|
1408
|
+
displayName?: string | null;
|
|
1409
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
1410
|
+
flagIcon?: string | null;
|
|
1411
|
+
}> | null;
|
|
1412
|
+
currentCulture?: {
|
|
1413
|
+
displayName?: string | null;
|
|
1414
|
+
englishName?: string | null;
|
|
1415
|
+
threeLetterIsoLanguageName?: string | null;
|
|
1416
|
+
twoLetterIsoLanguageName?: string | null;
|
|
1417
|
+
isRightToLeft?: boolean;
|
|
1418
|
+
cultureName?: string | null;
|
|
1419
|
+
name?: string | null;
|
|
1420
|
+
nativeName?: string | null;
|
|
1421
|
+
dateTimeFormat?: {
|
|
1422
|
+
calendarAlgorithmType?: string | null;
|
|
1423
|
+
dateTimeFormatLong?: string | null;
|
|
1424
|
+
shortDatePattern?: string | null;
|
|
1425
|
+
fullDateTimePattern?: string | null;
|
|
1426
|
+
dateSeparator?: string | null;
|
|
1427
|
+
shortTimePattern?: string | null;
|
|
1428
|
+
longTimePattern?: string | null;
|
|
1429
|
+
};
|
|
1430
|
+
};
|
|
1431
|
+
defaultResourceName?: string | null;
|
|
1432
|
+
languagesMap?: {
|
|
1433
|
+
[key: string]: Array<{
|
|
1434
|
+
name?: string | null;
|
|
1435
|
+
value?: string | null;
|
|
1436
|
+
}>;
|
|
1437
|
+
} | null;
|
|
1438
|
+
languageFilesMap?: {
|
|
1439
|
+
[key: string]: Array<{
|
|
1440
|
+
name?: string | null;
|
|
1441
|
+
value?: string | null;
|
|
1442
|
+
}>;
|
|
1443
|
+
} | null;
|
|
1444
|
+
};
|
|
1445
|
+
auth?: {
|
|
1446
|
+
grantedPolicies?: {
|
|
1447
|
+
[key: string]: (boolean);
|
|
1448
|
+
} | null;
|
|
1449
|
+
};
|
|
1450
|
+
setting?: {
|
|
1451
|
+
values?: {
|
|
1452
|
+
[key: string]: (string | null);
|
|
1453
|
+
} | null;
|
|
1454
|
+
};
|
|
1455
|
+
currentUser?: {
|
|
1456
|
+
isAuthenticated?: boolean;
|
|
1457
|
+
id?: string | null;
|
|
1458
|
+
tenantId?: string | null;
|
|
1459
|
+
impersonatorUserId?: string | null;
|
|
1460
|
+
impersonatorTenantId?: string | null;
|
|
1461
|
+
impersonatorUserName?: string | null;
|
|
1462
|
+
impersonatorTenantName?: string | null;
|
|
1463
|
+
userName?: string | null;
|
|
1464
|
+
name?: string | null;
|
|
1465
|
+
surName?: string | null;
|
|
1466
|
+
email?: string | null;
|
|
1467
|
+
emailVerified?: boolean;
|
|
1468
|
+
phoneNumber?: string | null;
|
|
1469
|
+
phoneNumberVerified?: boolean;
|
|
1470
|
+
roles?: Array<(string)> | null;
|
|
1471
|
+
};
|
|
1472
|
+
features?: {
|
|
1473
|
+
values?: {
|
|
1474
|
+
[key: string]: (string | null);
|
|
1475
|
+
} | null;
|
|
1476
|
+
};
|
|
1477
|
+
globalFeatures?: {
|
|
1478
|
+
enabledFeatures?: Array<(string)> | null;
|
|
1479
|
+
};
|
|
1480
|
+
multiTenancy?: {
|
|
1481
|
+
isEnabled?: boolean;
|
|
1482
|
+
};
|
|
1483
|
+
currentTenant?: {
|
|
1484
|
+
id?: string | null;
|
|
1485
|
+
name?: string | null;
|
|
1486
|
+
isAvailable?: boolean;
|
|
1487
|
+
};
|
|
1488
|
+
timing?: {
|
|
1489
|
+
timeZone?: {
|
|
1490
|
+
iana?: {
|
|
1491
|
+
timeZoneName?: string | null;
|
|
1492
|
+
};
|
|
1493
|
+
windows?: {
|
|
1494
|
+
timeZoneId?: string | null;
|
|
1495
|
+
};
|
|
1496
|
+
};
|
|
1497
|
+
};
|
|
1498
|
+
clock?: {
|
|
1499
|
+
kind?: string | null;
|
|
1500
|
+
};
|
|
1501
|
+
objectExtensions?: {
|
|
1502
|
+
modules?: {
|
|
1503
|
+
[key: string]: {
|
|
1504
|
+
entities?: {
|
|
1505
|
+
[key: string]: {
|
|
1506
|
+
properties?: {
|
|
1507
|
+
[key: string]: {
|
|
1508
|
+
type?: string | null;
|
|
1509
|
+
typeSimple?: string | null;
|
|
1510
|
+
displayName?: {
|
|
1511
|
+
name?: string | null;
|
|
1512
|
+
resource?: string | null;
|
|
1513
|
+
};
|
|
1514
|
+
api?: {
|
|
1515
|
+
onGet?: {
|
|
1516
|
+
isAvailable?: boolean;
|
|
1517
|
+
};
|
|
1518
|
+
onCreate?: {
|
|
1519
|
+
isAvailable?: boolean;
|
|
1520
|
+
};
|
|
1521
|
+
onUpdate?: {
|
|
1522
|
+
isAvailable?: boolean;
|
|
1523
|
+
};
|
|
1524
|
+
};
|
|
1525
|
+
ui?: {
|
|
1526
|
+
onTable?: {
|
|
1527
|
+
isVisible?: boolean;
|
|
1528
|
+
};
|
|
1529
|
+
onCreateForm?: {
|
|
1530
|
+
isVisible?: boolean;
|
|
1531
|
+
};
|
|
1532
|
+
onEditForm?: {
|
|
1533
|
+
isVisible?: boolean;
|
|
1534
|
+
};
|
|
1535
|
+
lookup?: {
|
|
1536
|
+
url?: string | null;
|
|
1537
|
+
resultListPropertyName?: string | null;
|
|
1538
|
+
displayPropertyName?: string | null;
|
|
1539
|
+
valuePropertyName?: string | null;
|
|
1540
|
+
filterParamName?: string | null;
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1543
|
+
attributes?: Array<{
|
|
1544
|
+
typeSimple?: string | null;
|
|
1545
|
+
config?: {
|
|
1546
|
+
[key: string]: unknown;
|
|
1547
|
+
} | null;
|
|
1548
|
+
}> | null;
|
|
1549
|
+
configuration?: {
|
|
1550
|
+
[key: string]: unknown;
|
|
1551
|
+
} | null;
|
|
1552
|
+
defaultValue?: unknown;
|
|
1553
|
+
};
|
|
1554
|
+
} | null;
|
|
1555
|
+
configuration?: {
|
|
1556
|
+
[key: string]: unknown;
|
|
1557
|
+
} | null;
|
|
1558
|
+
};
|
|
1559
|
+
} | null;
|
|
1560
|
+
configuration?: {
|
|
1561
|
+
[key: string]: unknown;
|
|
1562
|
+
} | null;
|
|
1563
|
+
};
|
|
1564
|
+
} | null;
|
|
1565
|
+
enums?: {
|
|
1566
|
+
[key: string]: {
|
|
1567
|
+
fields?: Array<{
|
|
1568
|
+
name?: string | null;
|
|
1569
|
+
value?: unknown;
|
|
1570
|
+
}> | null;
|
|
1571
|
+
localizationResource?: string | null;
|
|
1572
|
+
};
|
|
1573
|
+
} | null;
|
|
1574
|
+
};
|
|
1575
|
+
extraProperties?: {
|
|
1576
|
+
[key: string]: unknown;
|
|
1577
|
+
} | null;
|
|
1578
|
+
};
|
|
523
1579
|
|
|
524
1580
|
export type GetApiAbpApplicationLocalizationData = {
|
|
525
1581
|
cultureName: string;
|
|
526
1582
|
onlyDynamics?: boolean;
|
|
527
1583
|
};
|
|
528
1584
|
|
|
529
|
-
export type GetApiAbpApplicationLocalizationResponse =
|
|
1585
|
+
export type GetApiAbpApplicationLocalizationResponse = {
|
|
1586
|
+
resources?: {
|
|
1587
|
+
[key: string]: {
|
|
1588
|
+
texts?: {
|
|
1589
|
+
[key: string]: (string);
|
|
1590
|
+
} | null;
|
|
1591
|
+
baseResources?: Array<(string)> | null;
|
|
1592
|
+
};
|
|
1593
|
+
} | null;
|
|
1594
|
+
};
|
|
530
1595
|
|
|
531
1596
|
export type PostApiProjectServiceProjectsData = {
|
|
532
|
-
requestBody?:
|
|
1597
|
+
requestBody?: {
|
|
1598
|
+
id?: string;
|
|
1599
|
+
creationTime?: string;
|
|
1600
|
+
creatorId?: string | null;
|
|
1601
|
+
lastModificationTime?: string | null;
|
|
1602
|
+
lastModifierId?: string | null;
|
|
1603
|
+
isDeleted?: boolean;
|
|
1604
|
+
deleterId?: string | null;
|
|
1605
|
+
deletionTime?: string | null;
|
|
1606
|
+
projectName?: string | null;
|
|
1607
|
+
projectDefinition?: string | null;
|
|
1608
|
+
cashValue?: number;
|
|
1609
|
+
additionalFundRate?: string | null;
|
|
1610
|
+
qualifiedFundRate?: string | null;
|
|
1611
|
+
fundNominalAmount?: number;
|
|
1612
|
+
fundableAmount?: number;
|
|
1613
|
+
overFunding?: string;
|
|
1614
|
+
privilege?: string | null;
|
|
1615
|
+
projectStartDate?: string;
|
|
1616
|
+
projectEndDate?: string;
|
|
1617
|
+
fundCollectionType?: string | null;
|
|
1618
|
+
organizationId?: string;
|
|
1619
|
+
};
|
|
533
1620
|
};
|
|
534
1621
|
|
|
535
|
-
export type PostApiProjectServiceProjectsResponse =
|
|
1622
|
+
export type PostApiProjectServiceProjectsResponse = {
|
|
1623
|
+
id?: string;
|
|
1624
|
+
creationTime?: string;
|
|
1625
|
+
creatorId?: string | null;
|
|
1626
|
+
lastModificationTime?: string | null;
|
|
1627
|
+
lastModifierId?: string | null;
|
|
1628
|
+
isDeleted?: boolean;
|
|
1629
|
+
deleterId?: string | null;
|
|
1630
|
+
deletionTime?: string | null;
|
|
1631
|
+
projectName?: string | null;
|
|
1632
|
+
projectDefinition?: string | null;
|
|
1633
|
+
cashValue?: number;
|
|
1634
|
+
fundCollectionType?: string | null;
|
|
1635
|
+
additionalFundRate?: string | null;
|
|
1636
|
+
qualifiedFundRate?: string | null;
|
|
1637
|
+
fundNominalAmount?: number;
|
|
1638
|
+
fundableAmount?: number;
|
|
1639
|
+
overFunding?: string;
|
|
1640
|
+
privilege?: string | null;
|
|
1641
|
+
projectStartDate?: string;
|
|
1642
|
+
projectEndDate?: string;
|
|
1643
|
+
organizationId?: string;
|
|
1644
|
+
projectSectionRelationDetails?: Array<{
|
|
1645
|
+
id?: string;
|
|
1646
|
+
sectionId?: string;
|
|
1647
|
+
name?: string | null;
|
|
1648
|
+
value?: string | null;
|
|
1649
|
+
}> | null;
|
|
1650
|
+
};
|
|
536
1651
|
|
|
537
1652
|
export type GetApiProjectServiceProjectsData = {
|
|
538
1653
|
maxResultCount?: number;
|
|
@@ -540,7 +1655,38 @@ export type GetApiProjectServiceProjectsData = {
|
|
|
540
1655
|
sorting?: string;
|
|
541
1656
|
};
|
|
542
1657
|
|
|
543
|
-
export type GetApiProjectServiceProjectsResponse =
|
|
1658
|
+
export type GetApiProjectServiceProjectsResponse = {
|
|
1659
|
+
items?: Array<{
|
|
1660
|
+
id?: string;
|
|
1661
|
+
creationTime?: string;
|
|
1662
|
+
creatorId?: string | null;
|
|
1663
|
+
lastModificationTime?: string | null;
|
|
1664
|
+
lastModifierId?: string | null;
|
|
1665
|
+
isDeleted?: boolean;
|
|
1666
|
+
deleterId?: string | null;
|
|
1667
|
+
deletionTime?: string | null;
|
|
1668
|
+
projectName?: string | null;
|
|
1669
|
+
projectDefinition?: string | null;
|
|
1670
|
+
cashValue?: number;
|
|
1671
|
+
fundCollectionType?: string | null;
|
|
1672
|
+
additionalFundRate?: string | null;
|
|
1673
|
+
qualifiedFundRate?: string | null;
|
|
1674
|
+
fundNominalAmount?: number;
|
|
1675
|
+
fundableAmount?: number;
|
|
1676
|
+
overFunding?: string;
|
|
1677
|
+
privilege?: string | null;
|
|
1678
|
+
projectStartDate?: string;
|
|
1679
|
+
projectEndDate?: string;
|
|
1680
|
+
organizationId?: string;
|
|
1681
|
+
projectSectionRelationDetails?: Array<{
|
|
1682
|
+
id?: string;
|
|
1683
|
+
sectionId?: string;
|
|
1684
|
+
name?: string | null;
|
|
1685
|
+
value?: string | null;
|
|
1686
|
+
}> | null;
|
|
1687
|
+
}> | null;
|
|
1688
|
+
totalCount?: number;
|
|
1689
|
+
};
|
|
544
1690
|
|
|
545
1691
|
export type DeleteApiProjectServiceProjectsByIdData = {
|
|
546
1692
|
id: string;
|
|
@@ -552,20 +1698,122 @@ export type GetApiProjectServiceProjectsByIdData = {
|
|
|
552
1698
|
id: string;
|
|
553
1699
|
};
|
|
554
1700
|
|
|
555
|
-
export type GetApiProjectServiceProjectsByIdResponse =
|
|
1701
|
+
export type GetApiProjectServiceProjectsByIdResponse = {
|
|
1702
|
+
id?: string;
|
|
1703
|
+
creationTime?: string;
|
|
1704
|
+
creatorId?: string | null;
|
|
1705
|
+
lastModificationTime?: string | null;
|
|
1706
|
+
lastModifierId?: string | null;
|
|
1707
|
+
isDeleted?: boolean;
|
|
1708
|
+
deleterId?: string | null;
|
|
1709
|
+
deletionTime?: string | null;
|
|
1710
|
+
projectName?: string | null;
|
|
1711
|
+
projectDefinition?: string | null;
|
|
1712
|
+
cashValue?: number;
|
|
1713
|
+
fundCollectionType?: string | null;
|
|
1714
|
+
additionalFundRate?: string | null;
|
|
1715
|
+
qualifiedFundRate?: string | null;
|
|
1716
|
+
fundNominalAmount?: number;
|
|
1717
|
+
fundableAmount?: number;
|
|
1718
|
+
overFunding?: string;
|
|
1719
|
+
privilege?: string | null;
|
|
1720
|
+
projectStartDate?: string;
|
|
1721
|
+
projectEndDate?: string;
|
|
1722
|
+
organizationId?: string;
|
|
1723
|
+
projectSectionRelationDetails?: Array<{
|
|
1724
|
+
id?: string;
|
|
1725
|
+
sectionId?: string;
|
|
1726
|
+
name?: string | null;
|
|
1727
|
+
value?: string | null;
|
|
1728
|
+
}> | null;
|
|
1729
|
+
};
|
|
556
1730
|
|
|
557
1731
|
export type PutApiProjectServiceProjectsByIdData = {
|
|
558
1732
|
id: string;
|
|
559
|
-
requestBody?:
|
|
1733
|
+
requestBody?: {
|
|
1734
|
+
id?: string;
|
|
1735
|
+
creationTime?: string;
|
|
1736
|
+
creatorId?: string | null;
|
|
1737
|
+
lastModificationTime?: string | null;
|
|
1738
|
+
lastModifierId?: string | null;
|
|
1739
|
+
isDeleted?: boolean;
|
|
1740
|
+
deleterId?: string | null;
|
|
1741
|
+
deletionTime?: string | null;
|
|
1742
|
+
projectName?: string | null;
|
|
1743
|
+
projectDefinition?: string | null;
|
|
1744
|
+
cashValue?: number;
|
|
1745
|
+
additionalFundRate?: string | null;
|
|
1746
|
+
qualifiedFundRate?: string | null;
|
|
1747
|
+
fundNominalAmount?: number;
|
|
1748
|
+
fundableAmount?: number;
|
|
1749
|
+
overFunding?: string;
|
|
1750
|
+
privilege?: string | null;
|
|
1751
|
+
projectStartDate?: string;
|
|
1752
|
+
projectEndDate?: string;
|
|
1753
|
+
fundCollectionType?: string | null;
|
|
1754
|
+
organizationId?: string;
|
|
1755
|
+
};
|
|
560
1756
|
};
|
|
561
1757
|
|
|
562
|
-
export type PutApiProjectServiceProjectsByIdResponse =
|
|
1758
|
+
export type PutApiProjectServiceProjectsByIdResponse = {
|
|
1759
|
+
id?: string;
|
|
1760
|
+
creationTime?: string;
|
|
1761
|
+
creatorId?: string | null;
|
|
1762
|
+
lastModificationTime?: string | null;
|
|
1763
|
+
lastModifierId?: string | null;
|
|
1764
|
+
isDeleted?: boolean;
|
|
1765
|
+
deleterId?: string | null;
|
|
1766
|
+
deletionTime?: string | null;
|
|
1767
|
+
projectName?: string | null;
|
|
1768
|
+
projectDefinition?: string | null;
|
|
1769
|
+
cashValue?: number;
|
|
1770
|
+
fundCollectionType?: string | null;
|
|
1771
|
+
additionalFundRate?: string | null;
|
|
1772
|
+
qualifiedFundRate?: string | null;
|
|
1773
|
+
fundNominalAmount?: number;
|
|
1774
|
+
fundableAmount?: number;
|
|
1775
|
+
overFunding?: string;
|
|
1776
|
+
privilege?: string | null;
|
|
1777
|
+
projectStartDate?: string;
|
|
1778
|
+
projectEndDate?: string;
|
|
1779
|
+
organizationId?: string;
|
|
1780
|
+
projectSectionRelationDetails?: Array<{
|
|
1781
|
+
id?: string;
|
|
1782
|
+
sectionId?: string;
|
|
1783
|
+
name?: string | null;
|
|
1784
|
+
value?: string | null;
|
|
1785
|
+
}> | null;
|
|
1786
|
+
};
|
|
563
1787
|
|
|
564
1788
|
export type PostApiProjectSectionServiceProjectSectionData = {
|
|
565
|
-
requestBody?:
|
|
1789
|
+
requestBody?: {
|
|
1790
|
+
id?: string;
|
|
1791
|
+
creationTime?: string;
|
|
1792
|
+
creatorId?: string | null;
|
|
1793
|
+
lastModificationTime?: string | null;
|
|
1794
|
+
lastModifierId?: string | null;
|
|
1795
|
+
isDeleted?: boolean;
|
|
1796
|
+
deleterId?: string | null;
|
|
1797
|
+
deletionTime?: string | null;
|
|
1798
|
+
name?: string | null;
|
|
1799
|
+
isDefault?: boolean;
|
|
1800
|
+
isOptional?: boolean;
|
|
1801
|
+
};
|
|
566
1802
|
};
|
|
567
1803
|
|
|
568
|
-
export type PostApiProjectSectionServiceProjectSectionResponse =
|
|
1804
|
+
export type PostApiProjectSectionServiceProjectSectionResponse = {
|
|
1805
|
+
id?: string;
|
|
1806
|
+
creationTime?: string;
|
|
1807
|
+
creatorId?: string | null;
|
|
1808
|
+
lastModificationTime?: string | null;
|
|
1809
|
+
lastModifierId?: string | null;
|
|
1810
|
+
isDeleted?: boolean;
|
|
1811
|
+
deleterId?: string | null;
|
|
1812
|
+
deletionTime?: string | null;
|
|
1813
|
+
name?: string | null;
|
|
1814
|
+
isDefault?: boolean;
|
|
1815
|
+
isOptional?: boolean;
|
|
1816
|
+
};
|
|
569
1817
|
|
|
570
1818
|
export type DeleteApiProjectSectionServiceProjectSectionData = {
|
|
571
1819
|
id?: string;
|
|
@@ -579,26 +1827,101 @@ export type GetApiProjectSectionServiceProjectSectionData = {
|
|
|
579
1827
|
sorting?: string;
|
|
580
1828
|
};
|
|
581
1829
|
|
|
582
|
-
export type GetApiProjectSectionServiceProjectSectionResponse =
|
|
1830
|
+
export type GetApiProjectSectionServiceProjectSectionResponse = {
|
|
1831
|
+
items?: Array<{
|
|
1832
|
+
id?: string;
|
|
1833
|
+
creationTime?: string;
|
|
1834
|
+
creatorId?: string | null;
|
|
1835
|
+
lastModificationTime?: string | null;
|
|
1836
|
+
lastModifierId?: string | null;
|
|
1837
|
+
isDeleted?: boolean;
|
|
1838
|
+
deleterId?: string | null;
|
|
1839
|
+
deletionTime?: string | null;
|
|
1840
|
+
name?: string | null;
|
|
1841
|
+
isDefault?: boolean;
|
|
1842
|
+
isOptional?: boolean;
|
|
1843
|
+
}> | null;
|
|
1844
|
+
totalCount?: number;
|
|
1845
|
+
};
|
|
583
1846
|
|
|
584
1847
|
export type PutApiProjectSectionServiceProjectSectionData = {
|
|
585
1848
|
id?: string;
|
|
586
|
-
requestBody?:
|
|
1849
|
+
requestBody?: {
|
|
1850
|
+
id?: string;
|
|
1851
|
+
creationTime?: string;
|
|
1852
|
+
creatorId?: string | null;
|
|
1853
|
+
lastModificationTime?: string | null;
|
|
1854
|
+
lastModifierId?: string | null;
|
|
1855
|
+
isDeleted?: boolean;
|
|
1856
|
+
deleterId?: string | null;
|
|
1857
|
+
deletionTime?: string | null;
|
|
1858
|
+
name?: string | null;
|
|
1859
|
+
isDefault?: boolean;
|
|
1860
|
+
isOptional?: boolean;
|
|
1861
|
+
};
|
|
587
1862
|
};
|
|
588
1863
|
|
|
589
|
-
export type PutApiProjectSectionServiceProjectSectionResponse =
|
|
1864
|
+
export type PutApiProjectSectionServiceProjectSectionResponse = {
|
|
1865
|
+
id?: string;
|
|
1866
|
+
creationTime?: string;
|
|
1867
|
+
creatorId?: string | null;
|
|
1868
|
+
lastModificationTime?: string | null;
|
|
1869
|
+
lastModifierId?: string | null;
|
|
1870
|
+
isDeleted?: boolean;
|
|
1871
|
+
deleterId?: string | null;
|
|
1872
|
+
deletionTime?: string | null;
|
|
1873
|
+
name?: string | null;
|
|
1874
|
+
isDefault?: boolean;
|
|
1875
|
+
isOptional?: boolean;
|
|
1876
|
+
};
|
|
590
1877
|
|
|
591
1878
|
export type GetApiProjectSectionServiceProjectSectionByIdData = {
|
|
592
1879
|
id: string;
|
|
593
1880
|
};
|
|
594
1881
|
|
|
595
|
-
export type GetApiProjectSectionServiceProjectSectionByIdResponse =
|
|
1882
|
+
export type GetApiProjectSectionServiceProjectSectionByIdResponse = {
|
|
1883
|
+
id?: string;
|
|
1884
|
+
creationTime?: string;
|
|
1885
|
+
creatorId?: string | null;
|
|
1886
|
+
lastModificationTime?: string | null;
|
|
1887
|
+
lastModifierId?: string | null;
|
|
1888
|
+
isDeleted?: boolean;
|
|
1889
|
+
deleterId?: string | null;
|
|
1890
|
+
deletionTime?: string | null;
|
|
1891
|
+
name?: string | null;
|
|
1892
|
+
isDefault?: boolean;
|
|
1893
|
+
isOptional?: boolean;
|
|
1894
|
+
};
|
|
596
1895
|
|
|
597
1896
|
export type PostApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
598
|
-
requestBody?:
|
|
1897
|
+
requestBody?: {
|
|
1898
|
+
id?: string;
|
|
1899
|
+
creationTime?: string;
|
|
1900
|
+
creatorId?: string | null;
|
|
1901
|
+
lastModificationTime?: string | null;
|
|
1902
|
+
lastModifierId?: string | null;
|
|
1903
|
+
isDeleted?: boolean;
|
|
1904
|
+
deleterId?: string | null;
|
|
1905
|
+
deletionTime?: string | null;
|
|
1906
|
+
projectId?: string;
|
|
1907
|
+
projectSectionId?: string;
|
|
1908
|
+
value?: string | null;
|
|
1909
|
+
};
|
|
599
1910
|
};
|
|
600
1911
|
|
|
601
|
-
export type PostApiProjectSectionRelationServiceProjectSectionRelationResponse =
|
|
1912
|
+
export type PostApiProjectSectionRelationServiceProjectSectionRelationResponse = {
|
|
1913
|
+
id?: string;
|
|
1914
|
+
creationTime?: string;
|
|
1915
|
+
creatorId?: string | null;
|
|
1916
|
+
lastModificationTime?: string | null;
|
|
1917
|
+
lastModifierId?: string | null;
|
|
1918
|
+
isDeleted?: boolean;
|
|
1919
|
+
deleterId?: string | null;
|
|
1920
|
+
deletionTime?: string | null;
|
|
1921
|
+
projectId?: string;
|
|
1922
|
+
projectSectionId?: string;
|
|
1923
|
+
value?: string | null;
|
|
1924
|
+
};
|
|
602
1925
|
|
|
603
1926
|
export type DeleteApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
604
1927
|
id?: string;
|
|
@@ -612,20 +1935,71 @@ export type GetApiProjectSectionRelationServiceProjectSectionRelationData = {
|
|
|
612
1935
|
sorting?: string;
|
|
613
1936
|
};
|
|
614
1937
|
|
|
615
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationResponse =
|
|
1938
|
+
export type GetApiProjectSectionRelationServiceProjectSectionRelationResponse = {
|
|
1939
|
+
items?: Array<{
|
|
1940
|
+
id?: string;
|
|
1941
|
+
creationTime?: string;
|
|
1942
|
+
creatorId?: string | null;
|
|
1943
|
+
lastModificationTime?: string | null;
|
|
1944
|
+
lastModifierId?: string | null;
|
|
1945
|
+
isDeleted?: boolean;
|
|
1946
|
+
deleterId?: string | null;
|
|
1947
|
+
deletionTime?: string | null;
|
|
1948
|
+
projectId?: string;
|
|
1949
|
+
projectSectionId?: string;
|
|
1950
|
+
value?: string | null;
|
|
1951
|
+
}> | null;
|
|
1952
|
+
totalCount?: number;
|
|
1953
|
+
};
|
|
616
1954
|
|
|
617
1955
|
export type GetApiProjectSectionRelationServiceProjectSectionRelationByIdData = {
|
|
618
1956
|
id: string;
|
|
619
1957
|
};
|
|
620
1958
|
|
|
621
|
-
export type GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse =
|
|
1959
|
+
export type GetApiProjectSectionRelationServiceProjectSectionRelationByIdResponse = {
|
|
1960
|
+
id?: string;
|
|
1961
|
+
creationTime?: string;
|
|
1962
|
+
creatorId?: string | null;
|
|
1963
|
+
lastModificationTime?: string | null;
|
|
1964
|
+
lastModifierId?: string | null;
|
|
1965
|
+
isDeleted?: boolean;
|
|
1966
|
+
deleterId?: string | null;
|
|
1967
|
+
deletionTime?: string | null;
|
|
1968
|
+
projectId?: string;
|
|
1969
|
+
projectSectionId?: string;
|
|
1970
|
+
value?: string | null;
|
|
1971
|
+
};
|
|
622
1972
|
|
|
623
1973
|
export type PutApiProjectSectionRelationServiceProjectSectionRelationByIdData = {
|
|
624
1974
|
id: string;
|
|
625
|
-
requestBody?:
|
|
1975
|
+
requestBody?: {
|
|
1976
|
+
id?: string;
|
|
1977
|
+
creationTime?: string;
|
|
1978
|
+
creatorId?: string | null;
|
|
1979
|
+
lastModificationTime?: string | null;
|
|
1980
|
+
lastModifierId?: string | null;
|
|
1981
|
+
isDeleted?: boolean;
|
|
1982
|
+
deleterId?: string | null;
|
|
1983
|
+
deletionTime?: string | null;
|
|
1984
|
+
projectId?: string;
|
|
1985
|
+
projectSectionId?: string;
|
|
1986
|
+
value?: string | null;
|
|
1987
|
+
};
|
|
626
1988
|
};
|
|
627
1989
|
|
|
628
|
-
export type PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse =
|
|
1990
|
+
export type PutApiProjectSectionRelationServiceProjectSectionRelationByIdResponse = {
|
|
1991
|
+
id?: string;
|
|
1992
|
+
creationTime?: string;
|
|
1993
|
+
creatorId?: string | null;
|
|
1994
|
+
lastModificationTime?: string | null;
|
|
1995
|
+
lastModifierId?: string | null;
|
|
1996
|
+
isDeleted?: boolean;
|
|
1997
|
+
deleterId?: string | null;
|
|
1998
|
+
deletionTime?: string | null;
|
|
1999
|
+
projectId?: string;
|
|
2000
|
+
projectSectionId?: string;
|
|
2001
|
+
value?: string | null;
|
|
2002
|
+
};
|
|
629
2003
|
|
|
630
2004
|
export type $OpenApiTs = {
|
|
631
2005
|
'/api/abp/api-definition': {
|
|
@@ -635,31 +2009,201 @@ export type $OpenApiTs = {
|
|
|
635
2009
|
/**
|
|
636
2010
|
* Success
|
|
637
2011
|
*/
|
|
638
|
-
200:
|
|
2012
|
+
200: {
|
|
2013
|
+
modules?: {
|
|
2014
|
+
[key: string]: {
|
|
2015
|
+
rootPath?: string | null;
|
|
2016
|
+
remoteServiceName?: string | null;
|
|
2017
|
+
controllers?: {
|
|
2018
|
+
[key: string]: {
|
|
2019
|
+
controllerName?: string | null;
|
|
2020
|
+
controllerGroupName?: string | null;
|
|
2021
|
+
isRemoteService?: boolean;
|
|
2022
|
+
isIntegrationService?: boolean;
|
|
2023
|
+
apiVersion?: string | null;
|
|
2024
|
+
type?: string | null;
|
|
2025
|
+
interfaces?: Array<{
|
|
2026
|
+
type?: string | null;
|
|
2027
|
+
name?: string | null;
|
|
2028
|
+
methods?: Array<{
|
|
2029
|
+
name?: string | null;
|
|
2030
|
+
parametersOnMethod?: Array<{
|
|
2031
|
+
name?: string | null;
|
|
2032
|
+
typeAsString?: string | null;
|
|
2033
|
+
type?: string | null;
|
|
2034
|
+
typeSimple?: string | null;
|
|
2035
|
+
isOptional?: boolean;
|
|
2036
|
+
defaultValue?: unknown;
|
|
2037
|
+
}> | null;
|
|
2038
|
+
returnValue?: {
|
|
2039
|
+
type?: string | null;
|
|
2040
|
+
typeSimple?: string | null;
|
|
2041
|
+
};
|
|
2042
|
+
}> | null;
|
|
2043
|
+
}> | null;
|
|
2044
|
+
actions?: {
|
|
2045
|
+
[key: string]: {
|
|
2046
|
+
uniqueName?: string | null;
|
|
2047
|
+
name?: string | null;
|
|
2048
|
+
httpMethod?: string | null;
|
|
2049
|
+
url?: string | null;
|
|
2050
|
+
supportedVersions?: Array<(string)> | null;
|
|
2051
|
+
parametersOnMethod?: Array<{
|
|
2052
|
+
name?: string | null;
|
|
2053
|
+
typeAsString?: string | null;
|
|
2054
|
+
type?: string | null;
|
|
2055
|
+
typeSimple?: string | null;
|
|
2056
|
+
isOptional?: boolean;
|
|
2057
|
+
defaultValue?: unknown;
|
|
2058
|
+
}> | null;
|
|
2059
|
+
parameters?: Array<{
|
|
2060
|
+
nameOnMethod?: string | null;
|
|
2061
|
+
name?: string | null;
|
|
2062
|
+
jsonName?: string | null;
|
|
2063
|
+
type?: string | null;
|
|
2064
|
+
typeSimple?: string | null;
|
|
2065
|
+
isOptional?: boolean;
|
|
2066
|
+
defaultValue?: unknown;
|
|
2067
|
+
constraintTypes?: Array<(string)> | null;
|
|
2068
|
+
bindingSourceId?: string | null;
|
|
2069
|
+
descriptorName?: string | null;
|
|
2070
|
+
}> | null;
|
|
2071
|
+
returnValue?: {
|
|
2072
|
+
type?: string | null;
|
|
2073
|
+
typeSimple?: string | null;
|
|
2074
|
+
};
|
|
2075
|
+
allowAnonymous?: boolean | null;
|
|
2076
|
+
implementFrom?: string | null;
|
|
2077
|
+
};
|
|
2078
|
+
} | null;
|
|
2079
|
+
};
|
|
2080
|
+
} | null;
|
|
2081
|
+
};
|
|
2082
|
+
} | null;
|
|
2083
|
+
types?: {
|
|
2084
|
+
[key: string]: {
|
|
2085
|
+
baseType?: string | null;
|
|
2086
|
+
isEnum?: boolean;
|
|
2087
|
+
enumNames?: Array<(string)> | null;
|
|
2088
|
+
enumValues?: Array<unknown> | null;
|
|
2089
|
+
genericArguments?: Array<(string)> | null;
|
|
2090
|
+
properties?: Array<{
|
|
2091
|
+
name?: string | null;
|
|
2092
|
+
jsonName?: string | null;
|
|
2093
|
+
type?: string | null;
|
|
2094
|
+
typeSimple?: string | null;
|
|
2095
|
+
isRequired?: boolean;
|
|
2096
|
+
minLength?: number | null;
|
|
2097
|
+
maxLength?: number | null;
|
|
2098
|
+
minimum?: string | null;
|
|
2099
|
+
maximum?: string | null;
|
|
2100
|
+
regex?: string | null;
|
|
2101
|
+
}> | null;
|
|
2102
|
+
};
|
|
2103
|
+
} | null;
|
|
2104
|
+
};
|
|
639
2105
|
/**
|
|
640
2106
|
* Bad Request
|
|
641
2107
|
*/
|
|
642
|
-
400:
|
|
2108
|
+
400: {
|
|
2109
|
+
error?: {
|
|
2110
|
+
code?: string | null;
|
|
2111
|
+
message?: string | null;
|
|
2112
|
+
details?: string | null;
|
|
2113
|
+
data?: {
|
|
2114
|
+
[key: string]: unknown;
|
|
2115
|
+
} | null;
|
|
2116
|
+
validationErrors?: Array<{
|
|
2117
|
+
message?: string | null;
|
|
2118
|
+
members?: Array<(string)> | null;
|
|
2119
|
+
}> | null;
|
|
2120
|
+
};
|
|
2121
|
+
};
|
|
643
2122
|
/**
|
|
644
2123
|
* Unauthorized
|
|
645
2124
|
*/
|
|
646
|
-
401:
|
|
2125
|
+
401: {
|
|
2126
|
+
error?: {
|
|
2127
|
+
code?: string | null;
|
|
2128
|
+
message?: string | null;
|
|
2129
|
+
details?: string | null;
|
|
2130
|
+
data?: {
|
|
2131
|
+
[key: string]: unknown;
|
|
2132
|
+
} | null;
|
|
2133
|
+
validationErrors?: Array<{
|
|
2134
|
+
message?: string | null;
|
|
2135
|
+
members?: Array<(string)> | null;
|
|
2136
|
+
}> | null;
|
|
2137
|
+
};
|
|
2138
|
+
};
|
|
647
2139
|
/**
|
|
648
2140
|
* Forbidden
|
|
649
2141
|
*/
|
|
650
|
-
403:
|
|
2142
|
+
403: {
|
|
2143
|
+
error?: {
|
|
2144
|
+
code?: string | null;
|
|
2145
|
+
message?: string | null;
|
|
2146
|
+
details?: string | null;
|
|
2147
|
+
data?: {
|
|
2148
|
+
[key: string]: unknown;
|
|
2149
|
+
} | null;
|
|
2150
|
+
validationErrors?: Array<{
|
|
2151
|
+
message?: string | null;
|
|
2152
|
+
members?: Array<(string)> | null;
|
|
2153
|
+
}> | null;
|
|
2154
|
+
};
|
|
2155
|
+
};
|
|
651
2156
|
/**
|
|
652
2157
|
* Not Found
|
|
653
2158
|
*/
|
|
654
|
-
404:
|
|
2159
|
+
404: {
|
|
2160
|
+
error?: {
|
|
2161
|
+
code?: string | null;
|
|
2162
|
+
message?: string | null;
|
|
2163
|
+
details?: string | null;
|
|
2164
|
+
data?: {
|
|
2165
|
+
[key: string]: unknown;
|
|
2166
|
+
} | null;
|
|
2167
|
+
validationErrors?: Array<{
|
|
2168
|
+
message?: string | null;
|
|
2169
|
+
members?: Array<(string)> | null;
|
|
2170
|
+
}> | null;
|
|
2171
|
+
};
|
|
2172
|
+
};
|
|
655
2173
|
/**
|
|
656
2174
|
* Server Error
|
|
657
2175
|
*/
|
|
658
|
-
500:
|
|
2176
|
+
500: {
|
|
2177
|
+
error?: {
|
|
2178
|
+
code?: string | null;
|
|
2179
|
+
message?: string | null;
|
|
2180
|
+
details?: string | null;
|
|
2181
|
+
data?: {
|
|
2182
|
+
[key: string]: unknown;
|
|
2183
|
+
} | null;
|
|
2184
|
+
validationErrors?: Array<{
|
|
2185
|
+
message?: string | null;
|
|
2186
|
+
members?: Array<(string)> | null;
|
|
2187
|
+
}> | null;
|
|
2188
|
+
};
|
|
2189
|
+
};
|
|
659
2190
|
/**
|
|
660
2191
|
* Server Error
|
|
661
2192
|
*/
|
|
662
|
-
501:
|
|
2193
|
+
501: {
|
|
2194
|
+
error?: {
|
|
2195
|
+
code?: string | null;
|
|
2196
|
+
message?: string | null;
|
|
2197
|
+
details?: string | null;
|
|
2198
|
+
data?: {
|
|
2199
|
+
[key: string]: unknown;
|
|
2200
|
+
} | null;
|
|
2201
|
+
validationErrors?: Array<{
|
|
2202
|
+
message?: string | null;
|
|
2203
|
+
members?: Array<(string)> | null;
|
|
2204
|
+
}> | null;
|
|
2205
|
+
};
|
|
2206
|
+
};
|
|
663
2207
|
};
|
|
664
2208
|
};
|
|
665
2209
|
};
|
|
@@ -670,31 +2214,297 @@ export type $OpenApiTs = {
|
|
|
670
2214
|
/**
|
|
671
2215
|
* Success
|
|
672
2216
|
*/
|
|
673
|
-
200:
|
|
2217
|
+
200: {
|
|
2218
|
+
localization?: {
|
|
2219
|
+
values?: {
|
|
2220
|
+
[key: string]: {
|
|
2221
|
+
[key: string]: (string);
|
|
2222
|
+
};
|
|
2223
|
+
} | null;
|
|
2224
|
+
resources?: {
|
|
2225
|
+
[key: string]: {
|
|
2226
|
+
texts?: {
|
|
2227
|
+
[key: string]: (string);
|
|
2228
|
+
} | null;
|
|
2229
|
+
baseResources?: Array<(string)> | null;
|
|
2230
|
+
};
|
|
2231
|
+
} | null;
|
|
2232
|
+
languages?: Array<{
|
|
2233
|
+
cultureName?: string | null;
|
|
2234
|
+
uiCultureName?: string | null;
|
|
2235
|
+
displayName?: string | null;
|
|
2236
|
+
readonly twoLetterISOLanguageName?: string | null;
|
|
2237
|
+
flagIcon?: string | null;
|
|
2238
|
+
}> | null;
|
|
2239
|
+
currentCulture?: {
|
|
2240
|
+
displayName?: string | null;
|
|
2241
|
+
englishName?: string | null;
|
|
2242
|
+
threeLetterIsoLanguageName?: string | null;
|
|
2243
|
+
twoLetterIsoLanguageName?: string | null;
|
|
2244
|
+
isRightToLeft?: boolean;
|
|
2245
|
+
cultureName?: string | null;
|
|
2246
|
+
name?: string | null;
|
|
2247
|
+
nativeName?: string | null;
|
|
2248
|
+
dateTimeFormat?: {
|
|
2249
|
+
calendarAlgorithmType?: string | null;
|
|
2250
|
+
dateTimeFormatLong?: string | null;
|
|
2251
|
+
shortDatePattern?: string | null;
|
|
2252
|
+
fullDateTimePattern?: string | null;
|
|
2253
|
+
dateSeparator?: string | null;
|
|
2254
|
+
shortTimePattern?: string | null;
|
|
2255
|
+
longTimePattern?: string | null;
|
|
2256
|
+
};
|
|
2257
|
+
};
|
|
2258
|
+
defaultResourceName?: string | null;
|
|
2259
|
+
languagesMap?: {
|
|
2260
|
+
[key: string]: Array<{
|
|
2261
|
+
name?: string | null;
|
|
2262
|
+
value?: string | null;
|
|
2263
|
+
}>;
|
|
2264
|
+
} | null;
|
|
2265
|
+
languageFilesMap?: {
|
|
2266
|
+
[key: string]: Array<{
|
|
2267
|
+
name?: string | null;
|
|
2268
|
+
value?: string | null;
|
|
2269
|
+
}>;
|
|
2270
|
+
} | null;
|
|
2271
|
+
};
|
|
2272
|
+
auth?: {
|
|
2273
|
+
grantedPolicies?: {
|
|
2274
|
+
[key: string]: (boolean);
|
|
2275
|
+
} | null;
|
|
2276
|
+
};
|
|
2277
|
+
setting?: {
|
|
2278
|
+
values?: {
|
|
2279
|
+
[key: string]: (string | null);
|
|
2280
|
+
} | null;
|
|
2281
|
+
};
|
|
2282
|
+
currentUser?: {
|
|
2283
|
+
isAuthenticated?: boolean;
|
|
2284
|
+
id?: string | null;
|
|
2285
|
+
tenantId?: string | null;
|
|
2286
|
+
impersonatorUserId?: string | null;
|
|
2287
|
+
impersonatorTenantId?: string | null;
|
|
2288
|
+
impersonatorUserName?: string | null;
|
|
2289
|
+
impersonatorTenantName?: string | null;
|
|
2290
|
+
userName?: string | null;
|
|
2291
|
+
name?: string | null;
|
|
2292
|
+
surName?: string | null;
|
|
2293
|
+
email?: string | null;
|
|
2294
|
+
emailVerified?: boolean;
|
|
2295
|
+
phoneNumber?: string | null;
|
|
2296
|
+
phoneNumberVerified?: boolean;
|
|
2297
|
+
roles?: Array<(string)> | null;
|
|
2298
|
+
};
|
|
2299
|
+
features?: {
|
|
2300
|
+
values?: {
|
|
2301
|
+
[key: string]: (string | null);
|
|
2302
|
+
} | null;
|
|
2303
|
+
};
|
|
2304
|
+
globalFeatures?: {
|
|
2305
|
+
enabledFeatures?: Array<(string)> | null;
|
|
2306
|
+
};
|
|
2307
|
+
multiTenancy?: {
|
|
2308
|
+
isEnabled?: boolean;
|
|
2309
|
+
};
|
|
2310
|
+
currentTenant?: {
|
|
2311
|
+
id?: string | null;
|
|
2312
|
+
name?: string | null;
|
|
2313
|
+
isAvailable?: boolean;
|
|
2314
|
+
};
|
|
2315
|
+
timing?: {
|
|
2316
|
+
timeZone?: {
|
|
2317
|
+
iana?: {
|
|
2318
|
+
timeZoneName?: string | null;
|
|
2319
|
+
};
|
|
2320
|
+
windows?: {
|
|
2321
|
+
timeZoneId?: string | null;
|
|
2322
|
+
};
|
|
2323
|
+
};
|
|
2324
|
+
};
|
|
2325
|
+
clock?: {
|
|
2326
|
+
kind?: string | null;
|
|
2327
|
+
};
|
|
2328
|
+
objectExtensions?: {
|
|
2329
|
+
modules?: {
|
|
2330
|
+
[key: string]: {
|
|
2331
|
+
entities?: {
|
|
2332
|
+
[key: string]: {
|
|
2333
|
+
properties?: {
|
|
2334
|
+
[key: string]: {
|
|
2335
|
+
type?: string | null;
|
|
2336
|
+
typeSimple?: string | null;
|
|
2337
|
+
displayName?: {
|
|
2338
|
+
name?: string | null;
|
|
2339
|
+
resource?: string | null;
|
|
2340
|
+
};
|
|
2341
|
+
api?: {
|
|
2342
|
+
onGet?: {
|
|
2343
|
+
isAvailable?: boolean;
|
|
2344
|
+
};
|
|
2345
|
+
onCreate?: {
|
|
2346
|
+
isAvailable?: boolean;
|
|
2347
|
+
};
|
|
2348
|
+
onUpdate?: {
|
|
2349
|
+
isAvailable?: boolean;
|
|
2350
|
+
};
|
|
2351
|
+
};
|
|
2352
|
+
ui?: {
|
|
2353
|
+
onTable?: {
|
|
2354
|
+
isVisible?: boolean;
|
|
2355
|
+
};
|
|
2356
|
+
onCreateForm?: {
|
|
2357
|
+
isVisible?: boolean;
|
|
2358
|
+
};
|
|
2359
|
+
onEditForm?: {
|
|
2360
|
+
isVisible?: boolean;
|
|
2361
|
+
};
|
|
2362
|
+
lookup?: {
|
|
2363
|
+
url?: string | null;
|
|
2364
|
+
resultListPropertyName?: string | null;
|
|
2365
|
+
displayPropertyName?: string | null;
|
|
2366
|
+
valuePropertyName?: string | null;
|
|
2367
|
+
filterParamName?: string | null;
|
|
2368
|
+
};
|
|
2369
|
+
};
|
|
2370
|
+
attributes?: Array<{
|
|
2371
|
+
typeSimple?: string | null;
|
|
2372
|
+
config?: {
|
|
2373
|
+
[key: string]: unknown;
|
|
2374
|
+
} | null;
|
|
2375
|
+
}> | null;
|
|
2376
|
+
configuration?: {
|
|
2377
|
+
[key: string]: unknown;
|
|
2378
|
+
} | null;
|
|
2379
|
+
defaultValue?: unknown;
|
|
2380
|
+
};
|
|
2381
|
+
} | null;
|
|
2382
|
+
configuration?: {
|
|
2383
|
+
[key: string]: unknown;
|
|
2384
|
+
} | null;
|
|
2385
|
+
};
|
|
2386
|
+
} | null;
|
|
2387
|
+
configuration?: {
|
|
2388
|
+
[key: string]: unknown;
|
|
2389
|
+
} | null;
|
|
2390
|
+
};
|
|
2391
|
+
} | null;
|
|
2392
|
+
enums?: {
|
|
2393
|
+
[key: string]: {
|
|
2394
|
+
fields?: Array<{
|
|
2395
|
+
name?: string | null;
|
|
2396
|
+
value?: unknown;
|
|
2397
|
+
}> | null;
|
|
2398
|
+
localizationResource?: string | null;
|
|
2399
|
+
};
|
|
2400
|
+
} | null;
|
|
2401
|
+
};
|
|
2402
|
+
extraProperties?: {
|
|
2403
|
+
[key: string]: unknown;
|
|
2404
|
+
} | null;
|
|
2405
|
+
};
|
|
674
2406
|
/**
|
|
675
2407
|
* Bad Request
|
|
676
2408
|
*/
|
|
677
|
-
400:
|
|
2409
|
+
400: {
|
|
2410
|
+
error?: {
|
|
2411
|
+
code?: string | null;
|
|
2412
|
+
message?: string | null;
|
|
2413
|
+
details?: string | null;
|
|
2414
|
+
data?: {
|
|
2415
|
+
[key: string]: unknown;
|
|
2416
|
+
} | null;
|
|
2417
|
+
validationErrors?: Array<{
|
|
2418
|
+
message?: string | null;
|
|
2419
|
+
members?: Array<(string)> | null;
|
|
2420
|
+
}> | null;
|
|
2421
|
+
};
|
|
2422
|
+
};
|
|
678
2423
|
/**
|
|
679
2424
|
* Unauthorized
|
|
680
2425
|
*/
|
|
681
|
-
401:
|
|
2426
|
+
401: {
|
|
2427
|
+
error?: {
|
|
2428
|
+
code?: string | null;
|
|
2429
|
+
message?: string | null;
|
|
2430
|
+
details?: string | null;
|
|
2431
|
+
data?: {
|
|
2432
|
+
[key: string]: unknown;
|
|
2433
|
+
} | null;
|
|
2434
|
+
validationErrors?: Array<{
|
|
2435
|
+
message?: string | null;
|
|
2436
|
+
members?: Array<(string)> | null;
|
|
2437
|
+
}> | null;
|
|
2438
|
+
};
|
|
2439
|
+
};
|
|
682
2440
|
/**
|
|
683
2441
|
* Forbidden
|
|
684
2442
|
*/
|
|
685
|
-
403:
|
|
2443
|
+
403: {
|
|
2444
|
+
error?: {
|
|
2445
|
+
code?: string | null;
|
|
2446
|
+
message?: string | null;
|
|
2447
|
+
details?: string | null;
|
|
2448
|
+
data?: {
|
|
2449
|
+
[key: string]: unknown;
|
|
2450
|
+
} | null;
|
|
2451
|
+
validationErrors?: Array<{
|
|
2452
|
+
message?: string | null;
|
|
2453
|
+
members?: Array<(string)> | null;
|
|
2454
|
+
}> | null;
|
|
2455
|
+
};
|
|
2456
|
+
};
|
|
686
2457
|
/**
|
|
687
2458
|
* Not Found
|
|
688
2459
|
*/
|
|
689
|
-
404:
|
|
2460
|
+
404: {
|
|
2461
|
+
error?: {
|
|
2462
|
+
code?: string | null;
|
|
2463
|
+
message?: string | null;
|
|
2464
|
+
details?: string | null;
|
|
2465
|
+
data?: {
|
|
2466
|
+
[key: string]: unknown;
|
|
2467
|
+
} | null;
|
|
2468
|
+
validationErrors?: Array<{
|
|
2469
|
+
message?: string | null;
|
|
2470
|
+
members?: Array<(string)> | null;
|
|
2471
|
+
}> | null;
|
|
2472
|
+
};
|
|
2473
|
+
};
|
|
690
2474
|
/**
|
|
691
2475
|
* Server Error
|
|
692
2476
|
*/
|
|
693
|
-
500:
|
|
2477
|
+
500: {
|
|
2478
|
+
error?: {
|
|
2479
|
+
code?: string | null;
|
|
2480
|
+
message?: string | null;
|
|
2481
|
+
details?: string | null;
|
|
2482
|
+
data?: {
|
|
2483
|
+
[key: string]: unknown;
|
|
2484
|
+
} | null;
|
|
2485
|
+
validationErrors?: Array<{
|
|
2486
|
+
message?: string | null;
|
|
2487
|
+
members?: Array<(string)> | null;
|
|
2488
|
+
}> | null;
|
|
2489
|
+
};
|
|
2490
|
+
};
|
|
694
2491
|
/**
|
|
695
2492
|
* Server Error
|
|
696
2493
|
*/
|
|
697
|
-
501:
|
|
2494
|
+
501: {
|
|
2495
|
+
error?: {
|
|
2496
|
+
code?: string | null;
|
|
2497
|
+
message?: string | null;
|
|
2498
|
+
details?: string | null;
|
|
2499
|
+
data?: {
|
|
2500
|
+
[key: string]: unknown;
|
|
2501
|
+
} | null;
|
|
2502
|
+
validationErrors?: Array<{
|
|
2503
|
+
message?: string | null;
|
|
2504
|
+
members?: Array<(string)> | null;
|
|
2505
|
+
}> | null;
|
|
2506
|
+
};
|
|
2507
|
+
};
|
|
698
2508
|
};
|
|
699
2509
|
};
|
|
700
2510
|
};
|
|
@@ -705,31 +2515,118 @@ export type $OpenApiTs = {
|
|
|
705
2515
|
/**
|
|
706
2516
|
* Success
|
|
707
2517
|
*/
|
|
708
|
-
200:
|
|
2518
|
+
200: {
|
|
2519
|
+
resources?: {
|
|
2520
|
+
[key: string]: {
|
|
2521
|
+
texts?: {
|
|
2522
|
+
[key: string]: (string);
|
|
2523
|
+
} | null;
|
|
2524
|
+
baseResources?: Array<(string)> | null;
|
|
2525
|
+
};
|
|
2526
|
+
} | null;
|
|
2527
|
+
};
|
|
709
2528
|
/**
|
|
710
2529
|
* Bad Request
|
|
711
2530
|
*/
|
|
712
|
-
400:
|
|
2531
|
+
400: {
|
|
2532
|
+
error?: {
|
|
2533
|
+
code?: string | null;
|
|
2534
|
+
message?: string | null;
|
|
2535
|
+
details?: string | null;
|
|
2536
|
+
data?: {
|
|
2537
|
+
[key: string]: unknown;
|
|
2538
|
+
} | null;
|
|
2539
|
+
validationErrors?: Array<{
|
|
2540
|
+
message?: string | null;
|
|
2541
|
+
members?: Array<(string)> | null;
|
|
2542
|
+
}> | null;
|
|
2543
|
+
};
|
|
2544
|
+
};
|
|
713
2545
|
/**
|
|
714
2546
|
* Unauthorized
|
|
715
2547
|
*/
|
|
716
|
-
401:
|
|
2548
|
+
401: {
|
|
2549
|
+
error?: {
|
|
2550
|
+
code?: string | null;
|
|
2551
|
+
message?: string | null;
|
|
2552
|
+
details?: string | null;
|
|
2553
|
+
data?: {
|
|
2554
|
+
[key: string]: unknown;
|
|
2555
|
+
} | null;
|
|
2556
|
+
validationErrors?: Array<{
|
|
2557
|
+
message?: string | null;
|
|
2558
|
+
members?: Array<(string)> | null;
|
|
2559
|
+
}> | null;
|
|
2560
|
+
};
|
|
2561
|
+
};
|
|
717
2562
|
/**
|
|
718
2563
|
* Forbidden
|
|
719
2564
|
*/
|
|
720
|
-
403:
|
|
2565
|
+
403: {
|
|
2566
|
+
error?: {
|
|
2567
|
+
code?: string | null;
|
|
2568
|
+
message?: string | null;
|
|
2569
|
+
details?: string | null;
|
|
2570
|
+
data?: {
|
|
2571
|
+
[key: string]: unknown;
|
|
2572
|
+
} | null;
|
|
2573
|
+
validationErrors?: Array<{
|
|
2574
|
+
message?: string | null;
|
|
2575
|
+
members?: Array<(string)> | null;
|
|
2576
|
+
}> | null;
|
|
2577
|
+
};
|
|
2578
|
+
};
|
|
721
2579
|
/**
|
|
722
2580
|
* Not Found
|
|
723
2581
|
*/
|
|
724
|
-
404:
|
|
2582
|
+
404: {
|
|
2583
|
+
error?: {
|
|
2584
|
+
code?: string | null;
|
|
2585
|
+
message?: string | null;
|
|
2586
|
+
details?: string | null;
|
|
2587
|
+
data?: {
|
|
2588
|
+
[key: string]: unknown;
|
|
2589
|
+
} | null;
|
|
2590
|
+
validationErrors?: Array<{
|
|
2591
|
+
message?: string | null;
|
|
2592
|
+
members?: Array<(string)> | null;
|
|
2593
|
+
}> | null;
|
|
2594
|
+
};
|
|
2595
|
+
};
|
|
725
2596
|
/**
|
|
726
2597
|
* Server Error
|
|
727
2598
|
*/
|
|
728
|
-
500:
|
|
2599
|
+
500: {
|
|
2600
|
+
error?: {
|
|
2601
|
+
code?: string | null;
|
|
2602
|
+
message?: string | null;
|
|
2603
|
+
details?: string | null;
|
|
2604
|
+
data?: {
|
|
2605
|
+
[key: string]: unknown;
|
|
2606
|
+
} | null;
|
|
2607
|
+
validationErrors?: Array<{
|
|
2608
|
+
message?: string | null;
|
|
2609
|
+
members?: Array<(string)> | null;
|
|
2610
|
+
}> | null;
|
|
2611
|
+
};
|
|
2612
|
+
};
|
|
729
2613
|
/**
|
|
730
2614
|
* Server Error
|
|
731
2615
|
*/
|
|
732
|
-
501:
|
|
2616
|
+
501: {
|
|
2617
|
+
error?: {
|
|
2618
|
+
code?: string | null;
|
|
2619
|
+
message?: string | null;
|
|
2620
|
+
details?: string | null;
|
|
2621
|
+
data?: {
|
|
2622
|
+
[key: string]: unknown;
|
|
2623
|
+
} | null;
|
|
2624
|
+
validationErrors?: Array<{
|
|
2625
|
+
message?: string | null;
|
|
2626
|
+
members?: Array<(string)> | null;
|
|
2627
|
+
}> | null;
|
|
2628
|
+
};
|
|
2629
|
+
};
|
|
733
2630
|
};
|
|
734
2631
|
};
|
|
735
2632
|
};
|
|
@@ -740,31 +2637,137 @@ export type $OpenApiTs = {
|
|
|
740
2637
|
/**
|
|
741
2638
|
* Success
|
|
742
2639
|
*/
|
|
743
|
-
200:
|
|
2640
|
+
200: {
|
|
2641
|
+
id?: string;
|
|
2642
|
+
creationTime?: string;
|
|
2643
|
+
creatorId?: string | null;
|
|
2644
|
+
lastModificationTime?: string | null;
|
|
2645
|
+
lastModifierId?: string | null;
|
|
2646
|
+
isDeleted?: boolean;
|
|
2647
|
+
deleterId?: string | null;
|
|
2648
|
+
deletionTime?: string | null;
|
|
2649
|
+
projectName?: string | null;
|
|
2650
|
+
projectDefinition?: string | null;
|
|
2651
|
+
cashValue?: number;
|
|
2652
|
+
fundCollectionType?: string | null;
|
|
2653
|
+
additionalFundRate?: string | null;
|
|
2654
|
+
qualifiedFundRate?: string | null;
|
|
2655
|
+
fundNominalAmount?: number;
|
|
2656
|
+
fundableAmount?: number;
|
|
2657
|
+
overFunding?: string;
|
|
2658
|
+
privilege?: string | null;
|
|
2659
|
+
projectStartDate?: string;
|
|
2660
|
+
projectEndDate?: string;
|
|
2661
|
+
organizationId?: string;
|
|
2662
|
+
projectSectionRelationDetails?: Array<{
|
|
2663
|
+
id?: string;
|
|
2664
|
+
sectionId?: string;
|
|
2665
|
+
name?: string | null;
|
|
2666
|
+
value?: string | null;
|
|
2667
|
+
}> | null;
|
|
2668
|
+
};
|
|
744
2669
|
/**
|
|
745
2670
|
* Bad Request
|
|
746
2671
|
*/
|
|
747
|
-
400:
|
|
2672
|
+
400: {
|
|
2673
|
+
error?: {
|
|
2674
|
+
code?: string | null;
|
|
2675
|
+
message?: string | null;
|
|
2676
|
+
details?: string | null;
|
|
2677
|
+
data?: {
|
|
2678
|
+
[key: string]: unknown;
|
|
2679
|
+
} | null;
|
|
2680
|
+
validationErrors?: Array<{
|
|
2681
|
+
message?: string | null;
|
|
2682
|
+
members?: Array<(string)> | null;
|
|
2683
|
+
}> | null;
|
|
2684
|
+
};
|
|
2685
|
+
};
|
|
748
2686
|
/**
|
|
749
2687
|
* Unauthorized
|
|
750
2688
|
*/
|
|
751
|
-
401:
|
|
2689
|
+
401: {
|
|
2690
|
+
error?: {
|
|
2691
|
+
code?: string | null;
|
|
2692
|
+
message?: string | null;
|
|
2693
|
+
details?: string | null;
|
|
2694
|
+
data?: {
|
|
2695
|
+
[key: string]: unknown;
|
|
2696
|
+
} | null;
|
|
2697
|
+
validationErrors?: Array<{
|
|
2698
|
+
message?: string | null;
|
|
2699
|
+
members?: Array<(string)> | null;
|
|
2700
|
+
}> | null;
|
|
2701
|
+
};
|
|
2702
|
+
};
|
|
752
2703
|
/**
|
|
753
2704
|
* Forbidden
|
|
754
2705
|
*/
|
|
755
|
-
403:
|
|
2706
|
+
403: {
|
|
2707
|
+
error?: {
|
|
2708
|
+
code?: string | null;
|
|
2709
|
+
message?: string | null;
|
|
2710
|
+
details?: string | null;
|
|
2711
|
+
data?: {
|
|
2712
|
+
[key: string]: unknown;
|
|
2713
|
+
} | null;
|
|
2714
|
+
validationErrors?: Array<{
|
|
2715
|
+
message?: string | null;
|
|
2716
|
+
members?: Array<(string)> | null;
|
|
2717
|
+
}> | null;
|
|
2718
|
+
};
|
|
2719
|
+
};
|
|
756
2720
|
/**
|
|
757
2721
|
* Not Found
|
|
758
2722
|
*/
|
|
759
|
-
404:
|
|
2723
|
+
404: {
|
|
2724
|
+
error?: {
|
|
2725
|
+
code?: string | null;
|
|
2726
|
+
message?: string | null;
|
|
2727
|
+
details?: string | null;
|
|
2728
|
+
data?: {
|
|
2729
|
+
[key: string]: unknown;
|
|
2730
|
+
} | null;
|
|
2731
|
+
validationErrors?: Array<{
|
|
2732
|
+
message?: string | null;
|
|
2733
|
+
members?: Array<(string)> | null;
|
|
2734
|
+
}> | null;
|
|
2735
|
+
};
|
|
2736
|
+
};
|
|
760
2737
|
/**
|
|
761
2738
|
* Server Error
|
|
762
2739
|
*/
|
|
763
|
-
500:
|
|
2740
|
+
500: {
|
|
2741
|
+
error?: {
|
|
2742
|
+
code?: string | null;
|
|
2743
|
+
message?: string | null;
|
|
2744
|
+
details?: string | null;
|
|
2745
|
+
data?: {
|
|
2746
|
+
[key: string]: unknown;
|
|
2747
|
+
} | null;
|
|
2748
|
+
validationErrors?: Array<{
|
|
2749
|
+
message?: string | null;
|
|
2750
|
+
members?: Array<(string)> | null;
|
|
2751
|
+
}> | null;
|
|
2752
|
+
};
|
|
2753
|
+
};
|
|
764
2754
|
/**
|
|
765
2755
|
* Server Error
|
|
766
2756
|
*/
|
|
767
|
-
501:
|
|
2757
|
+
501: {
|
|
2758
|
+
error?: {
|
|
2759
|
+
code?: string | null;
|
|
2760
|
+
message?: string | null;
|
|
2761
|
+
details?: string | null;
|
|
2762
|
+
data?: {
|
|
2763
|
+
[key: string]: unknown;
|
|
2764
|
+
} | null;
|
|
2765
|
+
validationErrors?: Array<{
|
|
2766
|
+
message?: string | null;
|
|
2767
|
+
members?: Array<(string)> | null;
|
|
2768
|
+
}> | null;
|
|
2769
|
+
};
|
|
2770
|
+
};
|
|
768
2771
|
};
|
|
769
2772
|
};
|
|
770
2773
|
get: {
|
|
@@ -773,31 +2776,140 @@ export type $OpenApiTs = {
|
|
|
773
2776
|
/**
|
|
774
2777
|
* Success
|
|
775
2778
|
*/
|
|
776
|
-
200:
|
|
2779
|
+
200: {
|
|
2780
|
+
items?: Array<{
|
|
2781
|
+
id?: string;
|
|
2782
|
+
creationTime?: string;
|
|
2783
|
+
creatorId?: string | null;
|
|
2784
|
+
lastModificationTime?: string | null;
|
|
2785
|
+
lastModifierId?: string | null;
|
|
2786
|
+
isDeleted?: boolean;
|
|
2787
|
+
deleterId?: string | null;
|
|
2788
|
+
deletionTime?: string | null;
|
|
2789
|
+
projectName?: string | null;
|
|
2790
|
+
projectDefinition?: string | null;
|
|
2791
|
+
cashValue?: number;
|
|
2792
|
+
fundCollectionType?: string | null;
|
|
2793
|
+
additionalFundRate?: string | null;
|
|
2794
|
+
qualifiedFundRate?: string | null;
|
|
2795
|
+
fundNominalAmount?: number;
|
|
2796
|
+
fundableAmount?: number;
|
|
2797
|
+
overFunding?: string;
|
|
2798
|
+
privilege?: string | null;
|
|
2799
|
+
projectStartDate?: string;
|
|
2800
|
+
projectEndDate?: string;
|
|
2801
|
+
organizationId?: string;
|
|
2802
|
+
projectSectionRelationDetails?: Array<{
|
|
2803
|
+
id?: string;
|
|
2804
|
+
sectionId?: string;
|
|
2805
|
+
name?: string | null;
|
|
2806
|
+
value?: string | null;
|
|
2807
|
+
}> | null;
|
|
2808
|
+
}> | null;
|
|
2809
|
+
totalCount?: number;
|
|
2810
|
+
};
|
|
777
2811
|
/**
|
|
778
2812
|
* Bad Request
|
|
779
2813
|
*/
|
|
780
|
-
400:
|
|
2814
|
+
400: {
|
|
2815
|
+
error?: {
|
|
2816
|
+
code?: string | null;
|
|
2817
|
+
message?: string | null;
|
|
2818
|
+
details?: string | null;
|
|
2819
|
+
data?: {
|
|
2820
|
+
[key: string]: unknown;
|
|
2821
|
+
} | null;
|
|
2822
|
+
validationErrors?: Array<{
|
|
2823
|
+
message?: string | null;
|
|
2824
|
+
members?: Array<(string)> | null;
|
|
2825
|
+
}> | null;
|
|
2826
|
+
};
|
|
2827
|
+
};
|
|
781
2828
|
/**
|
|
782
2829
|
* Unauthorized
|
|
783
2830
|
*/
|
|
784
|
-
401:
|
|
2831
|
+
401: {
|
|
2832
|
+
error?: {
|
|
2833
|
+
code?: string | null;
|
|
2834
|
+
message?: string | null;
|
|
2835
|
+
details?: string | null;
|
|
2836
|
+
data?: {
|
|
2837
|
+
[key: string]: unknown;
|
|
2838
|
+
} | null;
|
|
2839
|
+
validationErrors?: Array<{
|
|
2840
|
+
message?: string | null;
|
|
2841
|
+
members?: Array<(string)> | null;
|
|
2842
|
+
}> | null;
|
|
2843
|
+
};
|
|
2844
|
+
};
|
|
785
2845
|
/**
|
|
786
2846
|
* Forbidden
|
|
787
2847
|
*/
|
|
788
|
-
403:
|
|
2848
|
+
403: {
|
|
2849
|
+
error?: {
|
|
2850
|
+
code?: string | null;
|
|
2851
|
+
message?: string | null;
|
|
2852
|
+
details?: string | null;
|
|
2853
|
+
data?: {
|
|
2854
|
+
[key: string]: unknown;
|
|
2855
|
+
} | null;
|
|
2856
|
+
validationErrors?: Array<{
|
|
2857
|
+
message?: string | null;
|
|
2858
|
+
members?: Array<(string)> | null;
|
|
2859
|
+
}> | null;
|
|
2860
|
+
};
|
|
2861
|
+
};
|
|
789
2862
|
/**
|
|
790
2863
|
* Not Found
|
|
791
2864
|
*/
|
|
792
|
-
404:
|
|
2865
|
+
404: {
|
|
2866
|
+
error?: {
|
|
2867
|
+
code?: string | null;
|
|
2868
|
+
message?: string | null;
|
|
2869
|
+
details?: string | null;
|
|
2870
|
+
data?: {
|
|
2871
|
+
[key: string]: unknown;
|
|
2872
|
+
} | null;
|
|
2873
|
+
validationErrors?: Array<{
|
|
2874
|
+
message?: string | null;
|
|
2875
|
+
members?: Array<(string)> | null;
|
|
2876
|
+
}> | null;
|
|
2877
|
+
};
|
|
2878
|
+
};
|
|
793
2879
|
/**
|
|
794
2880
|
* Server Error
|
|
795
2881
|
*/
|
|
796
|
-
500:
|
|
2882
|
+
500: {
|
|
2883
|
+
error?: {
|
|
2884
|
+
code?: string | null;
|
|
2885
|
+
message?: string | null;
|
|
2886
|
+
details?: string | null;
|
|
2887
|
+
data?: {
|
|
2888
|
+
[key: string]: unknown;
|
|
2889
|
+
} | null;
|
|
2890
|
+
validationErrors?: Array<{
|
|
2891
|
+
message?: string | null;
|
|
2892
|
+
members?: Array<(string)> | null;
|
|
2893
|
+
}> | null;
|
|
2894
|
+
};
|
|
2895
|
+
};
|
|
797
2896
|
/**
|
|
798
2897
|
* Server Error
|
|
799
2898
|
*/
|
|
800
|
-
501:
|
|
2899
|
+
501: {
|
|
2900
|
+
error?: {
|
|
2901
|
+
code?: string | null;
|
|
2902
|
+
message?: string | null;
|
|
2903
|
+
details?: string | null;
|
|
2904
|
+
data?: {
|
|
2905
|
+
[key: string]: unknown;
|
|
2906
|
+
} | null;
|
|
2907
|
+
validationErrors?: Array<{
|
|
2908
|
+
message?: string | null;
|
|
2909
|
+
members?: Array<(string)> | null;
|
|
2910
|
+
}> | null;
|
|
2911
|
+
};
|
|
2912
|
+
};
|
|
801
2913
|
};
|
|
802
2914
|
};
|
|
803
2915
|
};
|
|
@@ -812,27 +2924,105 @@ export type $OpenApiTs = {
|
|
|
812
2924
|
/**
|
|
813
2925
|
* Bad Request
|
|
814
2926
|
*/
|
|
815
|
-
400:
|
|
2927
|
+
400: {
|
|
2928
|
+
error?: {
|
|
2929
|
+
code?: string | null;
|
|
2930
|
+
message?: string | null;
|
|
2931
|
+
details?: string | null;
|
|
2932
|
+
data?: {
|
|
2933
|
+
[key: string]: unknown;
|
|
2934
|
+
} | null;
|
|
2935
|
+
validationErrors?: Array<{
|
|
2936
|
+
message?: string | null;
|
|
2937
|
+
members?: Array<(string)> | null;
|
|
2938
|
+
}> | null;
|
|
2939
|
+
};
|
|
2940
|
+
};
|
|
816
2941
|
/**
|
|
817
2942
|
* Unauthorized
|
|
818
2943
|
*/
|
|
819
|
-
401:
|
|
2944
|
+
401: {
|
|
2945
|
+
error?: {
|
|
2946
|
+
code?: string | null;
|
|
2947
|
+
message?: string | null;
|
|
2948
|
+
details?: string | null;
|
|
2949
|
+
data?: {
|
|
2950
|
+
[key: string]: unknown;
|
|
2951
|
+
} | null;
|
|
2952
|
+
validationErrors?: Array<{
|
|
2953
|
+
message?: string | null;
|
|
2954
|
+
members?: Array<(string)> | null;
|
|
2955
|
+
}> | null;
|
|
2956
|
+
};
|
|
2957
|
+
};
|
|
820
2958
|
/**
|
|
821
2959
|
* Forbidden
|
|
822
2960
|
*/
|
|
823
|
-
403:
|
|
2961
|
+
403: {
|
|
2962
|
+
error?: {
|
|
2963
|
+
code?: string | null;
|
|
2964
|
+
message?: string | null;
|
|
2965
|
+
details?: string | null;
|
|
2966
|
+
data?: {
|
|
2967
|
+
[key: string]: unknown;
|
|
2968
|
+
} | null;
|
|
2969
|
+
validationErrors?: Array<{
|
|
2970
|
+
message?: string | null;
|
|
2971
|
+
members?: Array<(string)> | null;
|
|
2972
|
+
}> | null;
|
|
2973
|
+
};
|
|
2974
|
+
};
|
|
824
2975
|
/**
|
|
825
2976
|
* Not Found
|
|
826
2977
|
*/
|
|
827
|
-
404:
|
|
2978
|
+
404: {
|
|
2979
|
+
error?: {
|
|
2980
|
+
code?: string | null;
|
|
2981
|
+
message?: string | null;
|
|
2982
|
+
details?: string | null;
|
|
2983
|
+
data?: {
|
|
2984
|
+
[key: string]: unknown;
|
|
2985
|
+
} | null;
|
|
2986
|
+
validationErrors?: Array<{
|
|
2987
|
+
message?: string | null;
|
|
2988
|
+
members?: Array<(string)> | null;
|
|
2989
|
+
}> | null;
|
|
2990
|
+
};
|
|
2991
|
+
};
|
|
828
2992
|
/**
|
|
829
2993
|
* Server Error
|
|
830
2994
|
*/
|
|
831
|
-
500:
|
|
2995
|
+
500: {
|
|
2996
|
+
error?: {
|
|
2997
|
+
code?: string | null;
|
|
2998
|
+
message?: string | null;
|
|
2999
|
+
details?: string | null;
|
|
3000
|
+
data?: {
|
|
3001
|
+
[key: string]: unknown;
|
|
3002
|
+
} | null;
|
|
3003
|
+
validationErrors?: Array<{
|
|
3004
|
+
message?: string | null;
|
|
3005
|
+
members?: Array<(string)> | null;
|
|
3006
|
+
}> | null;
|
|
3007
|
+
};
|
|
3008
|
+
};
|
|
832
3009
|
/**
|
|
833
3010
|
* Server Error
|
|
834
3011
|
*/
|
|
835
|
-
501:
|
|
3012
|
+
501: {
|
|
3013
|
+
error?: {
|
|
3014
|
+
code?: string | null;
|
|
3015
|
+
message?: string | null;
|
|
3016
|
+
details?: string | null;
|
|
3017
|
+
data?: {
|
|
3018
|
+
[key: string]: unknown;
|
|
3019
|
+
} | null;
|
|
3020
|
+
validationErrors?: Array<{
|
|
3021
|
+
message?: string | null;
|
|
3022
|
+
members?: Array<(string)> | null;
|
|
3023
|
+
}> | null;
|
|
3024
|
+
};
|
|
3025
|
+
};
|
|
836
3026
|
};
|
|
837
3027
|
};
|
|
838
3028
|
get: {
|
|
@@ -841,31 +3031,137 @@ export type $OpenApiTs = {
|
|
|
841
3031
|
/**
|
|
842
3032
|
* Success
|
|
843
3033
|
*/
|
|
844
|
-
200:
|
|
3034
|
+
200: {
|
|
3035
|
+
id?: string;
|
|
3036
|
+
creationTime?: string;
|
|
3037
|
+
creatorId?: string | null;
|
|
3038
|
+
lastModificationTime?: string | null;
|
|
3039
|
+
lastModifierId?: string | null;
|
|
3040
|
+
isDeleted?: boolean;
|
|
3041
|
+
deleterId?: string | null;
|
|
3042
|
+
deletionTime?: string | null;
|
|
3043
|
+
projectName?: string | null;
|
|
3044
|
+
projectDefinition?: string | null;
|
|
3045
|
+
cashValue?: number;
|
|
3046
|
+
fundCollectionType?: string | null;
|
|
3047
|
+
additionalFundRate?: string | null;
|
|
3048
|
+
qualifiedFundRate?: string | null;
|
|
3049
|
+
fundNominalAmount?: number;
|
|
3050
|
+
fundableAmount?: number;
|
|
3051
|
+
overFunding?: string;
|
|
3052
|
+
privilege?: string | null;
|
|
3053
|
+
projectStartDate?: string;
|
|
3054
|
+
projectEndDate?: string;
|
|
3055
|
+
organizationId?: string;
|
|
3056
|
+
projectSectionRelationDetails?: Array<{
|
|
3057
|
+
id?: string;
|
|
3058
|
+
sectionId?: string;
|
|
3059
|
+
name?: string | null;
|
|
3060
|
+
value?: string | null;
|
|
3061
|
+
}> | null;
|
|
3062
|
+
};
|
|
845
3063
|
/**
|
|
846
3064
|
* Bad Request
|
|
847
3065
|
*/
|
|
848
|
-
400:
|
|
3066
|
+
400: {
|
|
3067
|
+
error?: {
|
|
3068
|
+
code?: string | null;
|
|
3069
|
+
message?: string | null;
|
|
3070
|
+
details?: string | null;
|
|
3071
|
+
data?: {
|
|
3072
|
+
[key: string]: unknown;
|
|
3073
|
+
} | null;
|
|
3074
|
+
validationErrors?: Array<{
|
|
3075
|
+
message?: string | null;
|
|
3076
|
+
members?: Array<(string)> | null;
|
|
3077
|
+
}> | null;
|
|
3078
|
+
};
|
|
3079
|
+
};
|
|
849
3080
|
/**
|
|
850
3081
|
* Unauthorized
|
|
851
3082
|
*/
|
|
852
|
-
401:
|
|
3083
|
+
401: {
|
|
3084
|
+
error?: {
|
|
3085
|
+
code?: string | null;
|
|
3086
|
+
message?: string | null;
|
|
3087
|
+
details?: string | null;
|
|
3088
|
+
data?: {
|
|
3089
|
+
[key: string]: unknown;
|
|
3090
|
+
} | null;
|
|
3091
|
+
validationErrors?: Array<{
|
|
3092
|
+
message?: string | null;
|
|
3093
|
+
members?: Array<(string)> | null;
|
|
3094
|
+
}> | null;
|
|
3095
|
+
};
|
|
3096
|
+
};
|
|
853
3097
|
/**
|
|
854
3098
|
* Forbidden
|
|
855
3099
|
*/
|
|
856
|
-
403:
|
|
3100
|
+
403: {
|
|
3101
|
+
error?: {
|
|
3102
|
+
code?: string | null;
|
|
3103
|
+
message?: string | null;
|
|
3104
|
+
details?: string | null;
|
|
3105
|
+
data?: {
|
|
3106
|
+
[key: string]: unknown;
|
|
3107
|
+
} | null;
|
|
3108
|
+
validationErrors?: Array<{
|
|
3109
|
+
message?: string | null;
|
|
3110
|
+
members?: Array<(string)> | null;
|
|
3111
|
+
}> | null;
|
|
3112
|
+
};
|
|
3113
|
+
};
|
|
857
3114
|
/**
|
|
858
3115
|
* Not Found
|
|
859
3116
|
*/
|
|
860
|
-
404:
|
|
3117
|
+
404: {
|
|
3118
|
+
error?: {
|
|
3119
|
+
code?: string | null;
|
|
3120
|
+
message?: string | null;
|
|
3121
|
+
details?: string | null;
|
|
3122
|
+
data?: {
|
|
3123
|
+
[key: string]: unknown;
|
|
3124
|
+
} | null;
|
|
3125
|
+
validationErrors?: Array<{
|
|
3126
|
+
message?: string | null;
|
|
3127
|
+
members?: Array<(string)> | null;
|
|
3128
|
+
}> | null;
|
|
3129
|
+
};
|
|
3130
|
+
};
|
|
861
3131
|
/**
|
|
862
3132
|
* Server Error
|
|
863
3133
|
*/
|
|
864
|
-
500:
|
|
3134
|
+
500: {
|
|
3135
|
+
error?: {
|
|
3136
|
+
code?: string | null;
|
|
3137
|
+
message?: string | null;
|
|
3138
|
+
details?: string | null;
|
|
3139
|
+
data?: {
|
|
3140
|
+
[key: string]: unknown;
|
|
3141
|
+
} | null;
|
|
3142
|
+
validationErrors?: Array<{
|
|
3143
|
+
message?: string | null;
|
|
3144
|
+
members?: Array<(string)> | null;
|
|
3145
|
+
}> | null;
|
|
3146
|
+
};
|
|
3147
|
+
};
|
|
865
3148
|
/**
|
|
866
3149
|
* Server Error
|
|
867
3150
|
*/
|
|
868
|
-
501:
|
|
3151
|
+
501: {
|
|
3152
|
+
error?: {
|
|
3153
|
+
code?: string | null;
|
|
3154
|
+
message?: string | null;
|
|
3155
|
+
details?: string | null;
|
|
3156
|
+
data?: {
|
|
3157
|
+
[key: string]: unknown;
|
|
3158
|
+
} | null;
|
|
3159
|
+
validationErrors?: Array<{
|
|
3160
|
+
message?: string | null;
|
|
3161
|
+
members?: Array<(string)> | null;
|
|
3162
|
+
}> | null;
|
|
3163
|
+
};
|
|
3164
|
+
};
|
|
869
3165
|
};
|
|
870
3166
|
};
|
|
871
3167
|
put: {
|
|
@@ -874,31 +3170,137 @@ export type $OpenApiTs = {
|
|
|
874
3170
|
/**
|
|
875
3171
|
* Success
|
|
876
3172
|
*/
|
|
877
|
-
200:
|
|
3173
|
+
200: {
|
|
3174
|
+
id?: string;
|
|
3175
|
+
creationTime?: string;
|
|
3176
|
+
creatorId?: string | null;
|
|
3177
|
+
lastModificationTime?: string | null;
|
|
3178
|
+
lastModifierId?: string | null;
|
|
3179
|
+
isDeleted?: boolean;
|
|
3180
|
+
deleterId?: string | null;
|
|
3181
|
+
deletionTime?: string | null;
|
|
3182
|
+
projectName?: string | null;
|
|
3183
|
+
projectDefinition?: string | null;
|
|
3184
|
+
cashValue?: number;
|
|
3185
|
+
fundCollectionType?: string | null;
|
|
3186
|
+
additionalFundRate?: string | null;
|
|
3187
|
+
qualifiedFundRate?: string | null;
|
|
3188
|
+
fundNominalAmount?: number;
|
|
3189
|
+
fundableAmount?: number;
|
|
3190
|
+
overFunding?: string;
|
|
3191
|
+
privilege?: string | null;
|
|
3192
|
+
projectStartDate?: string;
|
|
3193
|
+
projectEndDate?: string;
|
|
3194
|
+
organizationId?: string;
|
|
3195
|
+
projectSectionRelationDetails?: Array<{
|
|
3196
|
+
id?: string;
|
|
3197
|
+
sectionId?: string;
|
|
3198
|
+
name?: string | null;
|
|
3199
|
+
value?: string | null;
|
|
3200
|
+
}> | null;
|
|
3201
|
+
};
|
|
878
3202
|
/**
|
|
879
3203
|
* Bad Request
|
|
880
3204
|
*/
|
|
881
|
-
400:
|
|
3205
|
+
400: {
|
|
3206
|
+
error?: {
|
|
3207
|
+
code?: string | null;
|
|
3208
|
+
message?: string | null;
|
|
3209
|
+
details?: string | null;
|
|
3210
|
+
data?: {
|
|
3211
|
+
[key: string]: unknown;
|
|
3212
|
+
} | null;
|
|
3213
|
+
validationErrors?: Array<{
|
|
3214
|
+
message?: string | null;
|
|
3215
|
+
members?: Array<(string)> | null;
|
|
3216
|
+
}> | null;
|
|
3217
|
+
};
|
|
3218
|
+
};
|
|
882
3219
|
/**
|
|
883
3220
|
* Unauthorized
|
|
884
3221
|
*/
|
|
885
|
-
401:
|
|
3222
|
+
401: {
|
|
3223
|
+
error?: {
|
|
3224
|
+
code?: string | null;
|
|
3225
|
+
message?: string | null;
|
|
3226
|
+
details?: string | null;
|
|
3227
|
+
data?: {
|
|
3228
|
+
[key: string]: unknown;
|
|
3229
|
+
} | null;
|
|
3230
|
+
validationErrors?: Array<{
|
|
3231
|
+
message?: string | null;
|
|
3232
|
+
members?: Array<(string)> | null;
|
|
3233
|
+
}> | null;
|
|
3234
|
+
};
|
|
3235
|
+
};
|
|
886
3236
|
/**
|
|
887
3237
|
* Forbidden
|
|
888
3238
|
*/
|
|
889
|
-
403:
|
|
3239
|
+
403: {
|
|
3240
|
+
error?: {
|
|
3241
|
+
code?: string | null;
|
|
3242
|
+
message?: string | null;
|
|
3243
|
+
details?: string | null;
|
|
3244
|
+
data?: {
|
|
3245
|
+
[key: string]: unknown;
|
|
3246
|
+
} | null;
|
|
3247
|
+
validationErrors?: Array<{
|
|
3248
|
+
message?: string | null;
|
|
3249
|
+
members?: Array<(string)> | null;
|
|
3250
|
+
}> | null;
|
|
3251
|
+
};
|
|
3252
|
+
};
|
|
890
3253
|
/**
|
|
891
3254
|
* Not Found
|
|
892
3255
|
*/
|
|
893
|
-
404:
|
|
3256
|
+
404: {
|
|
3257
|
+
error?: {
|
|
3258
|
+
code?: string | null;
|
|
3259
|
+
message?: string | null;
|
|
3260
|
+
details?: string | null;
|
|
3261
|
+
data?: {
|
|
3262
|
+
[key: string]: unknown;
|
|
3263
|
+
} | null;
|
|
3264
|
+
validationErrors?: Array<{
|
|
3265
|
+
message?: string | null;
|
|
3266
|
+
members?: Array<(string)> | null;
|
|
3267
|
+
}> | null;
|
|
3268
|
+
};
|
|
3269
|
+
};
|
|
894
3270
|
/**
|
|
895
3271
|
* Server Error
|
|
896
3272
|
*/
|
|
897
|
-
500:
|
|
3273
|
+
500: {
|
|
3274
|
+
error?: {
|
|
3275
|
+
code?: string | null;
|
|
3276
|
+
message?: string | null;
|
|
3277
|
+
details?: string | null;
|
|
3278
|
+
data?: {
|
|
3279
|
+
[key: string]: unknown;
|
|
3280
|
+
} | null;
|
|
3281
|
+
validationErrors?: Array<{
|
|
3282
|
+
message?: string | null;
|
|
3283
|
+
members?: Array<(string)> | null;
|
|
3284
|
+
}> | null;
|
|
3285
|
+
};
|
|
3286
|
+
};
|
|
898
3287
|
/**
|
|
899
3288
|
* Server Error
|
|
900
3289
|
*/
|
|
901
|
-
501:
|
|
3290
|
+
501: {
|
|
3291
|
+
error?: {
|
|
3292
|
+
code?: string | null;
|
|
3293
|
+
message?: string | null;
|
|
3294
|
+
details?: string | null;
|
|
3295
|
+
data?: {
|
|
3296
|
+
[key: string]: unknown;
|
|
3297
|
+
} | null;
|
|
3298
|
+
validationErrors?: Array<{
|
|
3299
|
+
message?: string | null;
|
|
3300
|
+
members?: Array<(string)> | null;
|
|
3301
|
+
}> | null;
|
|
3302
|
+
};
|
|
3303
|
+
};
|
|
902
3304
|
};
|
|
903
3305
|
};
|
|
904
3306
|
};
|
|
@@ -909,31 +3311,121 @@ export type $OpenApiTs = {
|
|
|
909
3311
|
/**
|
|
910
3312
|
* Success
|
|
911
3313
|
*/
|
|
912
|
-
200:
|
|
3314
|
+
200: {
|
|
3315
|
+
id?: string;
|
|
3316
|
+
creationTime?: string;
|
|
3317
|
+
creatorId?: string | null;
|
|
3318
|
+
lastModificationTime?: string | null;
|
|
3319
|
+
lastModifierId?: string | null;
|
|
3320
|
+
isDeleted?: boolean;
|
|
3321
|
+
deleterId?: string | null;
|
|
3322
|
+
deletionTime?: string | null;
|
|
3323
|
+
name?: string | null;
|
|
3324
|
+
isDefault?: boolean;
|
|
3325
|
+
isOptional?: boolean;
|
|
3326
|
+
};
|
|
913
3327
|
/**
|
|
914
3328
|
* Bad Request
|
|
915
3329
|
*/
|
|
916
|
-
400:
|
|
3330
|
+
400: {
|
|
3331
|
+
error?: {
|
|
3332
|
+
code?: string | null;
|
|
3333
|
+
message?: string | null;
|
|
3334
|
+
details?: string | null;
|
|
3335
|
+
data?: {
|
|
3336
|
+
[key: string]: unknown;
|
|
3337
|
+
} | null;
|
|
3338
|
+
validationErrors?: Array<{
|
|
3339
|
+
message?: string | null;
|
|
3340
|
+
members?: Array<(string)> | null;
|
|
3341
|
+
}> | null;
|
|
3342
|
+
};
|
|
3343
|
+
};
|
|
917
3344
|
/**
|
|
918
3345
|
* Unauthorized
|
|
919
3346
|
*/
|
|
920
|
-
401:
|
|
3347
|
+
401: {
|
|
3348
|
+
error?: {
|
|
3349
|
+
code?: string | null;
|
|
3350
|
+
message?: string | null;
|
|
3351
|
+
details?: string | null;
|
|
3352
|
+
data?: {
|
|
3353
|
+
[key: string]: unknown;
|
|
3354
|
+
} | null;
|
|
3355
|
+
validationErrors?: Array<{
|
|
3356
|
+
message?: string | null;
|
|
3357
|
+
members?: Array<(string)> | null;
|
|
3358
|
+
}> | null;
|
|
3359
|
+
};
|
|
3360
|
+
};
|
|
921
3361
|
/**
|
|
922
3362
|
* Forbidden
|
|
923
3363
|
*/
|
|
924
|
-
403:
|
|
3364
|
+
403: {
|
|
3365
|
+
error?: {
|
|
3366
|
+
code?: string | null;
|
|
3367
|
+
message?: string | null;
|
|
3368
|
+
details?: string | null;
|
|
3369
|
+
data?: {
|
|
3370
|
+
[key: string]: unknown;
|
|
3371
|
+
} | null;
|
|
3372
|
+
validationErrors?: Array<{
|
|
3373
|
+
message?: string | null;
|
|
3374
|
+
members?: Array<(string)> | null;
|
|
3375
|
+
}> | null;
|
|
3376
|
+
};
|
|
3377
|
+
};
|
|
925
3378
|
/**
|
|
926
3379
|
* Not Found
|
|
927
3380
|
*/
|
|
928
|
-
404:
|
|
3381
|
+
404: {
|
|
3382
|
+
error?: {
|
|
3383
|
+
code?: string | null;
|
|
3384
|
+
message?: string | null;
|
|
3385
|
+
details?: string | null;
|
|
3386
|
+
data?: {
|
|
3387
|
+
[key: string]: unknown;
|
|
3388
|
+
} | null;
|
|
3389
|
+
validationErrors?: Array<{
|
|
3390
|
+
message?: string | null;
|
|
3391
|
+
members?: Array<(string)> | null;
|
|
3392
|
+
}> | null;
|
|
3393
|
+
};
|
|
3394
|
+
};
|
|
929
3395
|
/**
|
|
930
3396
|
* Server Error
|
|
931
3397
|
*/
|
|
932
|
-
500:
|
|
3398
|
+
500: {
|
|
3399
|
+
error?: {
|
|
3400
|
+
code?: string | null;
|
|
3401
|
+
message?: string | null;
|
|
3402
|
+
details?: string | null;
|
|
3403
|
+
data?: {
|
|
3404
|
+
[key: string]: unknown;
|
|
3405
|
+
} | null;
|
|
3406
|
+
validationErrors?: Array<{
|
|
3407
|
+
message?: string | null;
|
|
3408
|
+
members?: Array<(string)> | null;
|
|
3409
|
+
}> | null;
|
|
3410
|
+
};
|
|
3411
|
+
};
|
|
933
3412
|
/**
|
|
934
3413
|
* Server Error
|
|
935
3414
|
*/
|
|
936
|
-
501:
|
|
3415
|
+
501: {
|
|
3416
|
+
error?: {
|
|
3417
|
+
code?: string | null;
|
|
3418
|
+
message?: string | null;
|
|
3419
|
+
details?: string | null;
|
|
3420
|
+
data?: {
|
|
3421
|
+
[key: string]: unknown;
|
|
3422
|
+
} | null;
|
|
3423
|
+
validationErrors?: Array<{
|
|
3424
|
+
message?: string | null;
|
|
3425
|
+
members?: Array<(string)> | null;
|
|
3426
|
+
}> | null;
|
|
3427
|
+
};
|
|
3428
|
+
};
|
|
937
3429
|
};
|
|
938
3430
|
};
|
|
939
3431
|
delete: {
|
|
@@ -946,27 +3438,105 @@ export type $OpenApiTs = {
|
|
|
946
3438
|
/**
|
|
947
3439
|
* Bad Request
|
|
948
3440
|
*/
|
|
949
|
-
400:
|
|
3441
|
+
400: {
|
|
3442
|
+
error?: {
|
|
3443
|
+
code?: string | null;
|
|
3444
|
+
message?: string | null;
|
|
3445
|
+
details?: string | null;
|
|
3446
|
+
data?: {
|
|
3447
|
+
[key: string]: unknown;
|
|
3448
|
+
} | null;
|
|
3449
|
+
validationErrors?: Array<{
|
|
3450
|
+
message?: string | null;
|
|
3451
|
+
members?: Array<(string)> | null;
|
|
3452
|
+
}> | null;
|
|
3453
|
+
};
|
|
3454
|
+
};
|
|
950
3455
|
/**
|
|
951
3456
|
* Unauthorized
|
|
952
3457
|
*/
|
|
953
|
-
401:
|
|
3458
|
+
401: {
|
|
3459
|
+
error?: {
|
|
3460
|
+
code?: string | null;
|
|
3461
|
+
message?: string | null;
|
|
3462
|
+
details?: string | null;
|
|
3463
|
+
data?: {
|
|
3464
|
+
[key: string]: unknown;
|
|
3465
|
+
} | null;
|
|
3466
|
+
validationErrors?: Array<{
|
|
3467
|
+
message?: string | null;
|
|
3468
|
+
members?: Array<(string)> | null;
|
|
3469
|
+
}> | null;
|
|
3470
|
+
};
|
|
3471
|
+
};
|
|
954
3472
|
/**
|
|
955
3473
|
* Forbidden
|
|
956
3474
|
*/
|
|
957
|
-
403:
|
|
3475
|
+
403: {
|
|
3476
|
+
error?: {
|
|
3477
|
+
code?: string | null;
|
|
3478
|
+
message?: string | null;
|
|
3479
|
+
details?: string | null;
|
|
3480
|
+
data?: {
|
|
3481
|
+
[key: string]: unknown;
|
|
3482
|
+
} | null;
|
|
3483
|
+
validationErrors?: Array<{
|
|
3484
|
+
message?: string | null;
|
|
3485
|
+
members?: Array<(string)> | null;
|
|
3486
|
+
}> | null;
|
|
3487
|
+
};
|
|
3488
|
+
};
|
|
958
3489
|
/**
|
|
959
3490
|
* Not Found
|
|
960
3491
|
*/
|
|
961
|
-
404:
|
|
3492
|
+
404: {
|
|
3493
|
+
error?: {
|
|
3494
|
+
code?: string | null;
|
|
3495
|
+
message?: string | null;
|
|
3496
|
+
details?: string | null;
|
|
3497
|
+
data?: {
|
|
3498
|
+
[key: string]: unknown;
|
|
3499
|
+
} | null;
|
|
3500
|
+
validationErrors?: Array<{
|
|
3501
|
+
message?: string | null;
|
|
3502
|
+
members?: Array<(string)> | null;
|
|
3503
|
+
}> | null;
|
|
3504
|
+
};
|
|
3505
|
+
};
|
|
962
3506
|
/**
|
|
963
3507
|
* Server Error
|
|
964
3508
|
*/
|
|
965
|
-
500:
|
|
3509
|
+
500: {
|
|
3510
|
+
error?: {
|
|
3511
|
+
code?: string | null;
|
|
3512
|
+
message?: string | null;
|
|
3513
|
+
details?: string | null;
|
|
3514
|
+
data?: {
|
|
3515
|
+
[key: string]: unknown;
|
|
3516
|
+
} | null;
|
|
3517
|
+
validationErrors?: Array<{
|
|
3518
|
+
message?: string | null;
|
|
3519
|
+
members?: Array<(string)> | null;
|
|
3520
|
+
}> | null;
|
|
3521
|
+
};
|
|
3522
|
+
};
|
|
966
3523
|
/**
|
|
967
3524
|
* Server Error
|
|
968
3525
|
*/
|
|
969
|
-
501:
|
|
3526
|
+
501: {
|
|
3527
|
+
error?: {
|
|
3528
|
+
code?: string | null;
|
|
3529
|
+
message?: string | null;
|
|
3530
|
+
details?: string | null;
|
|
3531
|
+
data?: {
|
|
3532
|
+
[key: string]: unknown;
|
|
3533
|
+
} | null;
|
|
3534
|
+
validationErrors?: Array<{
|
|
3535
|
+
message?: string | null;
|
|
3536
|
+
members?: Array<(string)> | null;
|
|
3537
|
+
}> | null;
|
|
3538
|
+
};
|
|
3539
|
+
};
|
|
970
3540
|
};
|
|
971
3541
|
};
|
|
972
3542
|
get: {
|
|
@@ -975,31 +3545,124 @@ export type $OpenApiTs = {
|
|
|
975
3545
|
/**
|
|
976
3546
|
* Success
|
|
977
3547
|
*/
|
|
978
|
-
200:
|
|
3548
|
+
200: {
|
|
3549
|
+
items?: Array<{
|
|
3550
|
+
id?: string;
|
|
3551
|
+
creationTime?: string;
|
|
3552
|
+
creatorId?: string | null;
|
|
3553
|
+
lastModificationTime?: string | null;
|
|
3554
|
+
lastModifierId?: string | null;
|
|
3555
|
+
isDeleted?: boolean;
|
|
3556
|
+
deleterId?: string | null;
|
|
3557
|
+
deletionTime?: string | null;
|
|
3558
|
+
name?: string | null;
|
|
3559
|
+
isDefault?: boolean;
|
|
3560
|
+
isOptional?: boolean;
|
|
3561
|
+
}> | null;
|
|
3562
|
+
totalCount?: number;
|
|
3563
|
+
};
|
|
979
3564
|
/**
|
|
980
3565
|
* Bad Request
|
|
981
3566
|
*/
|
|
982
|
-
400:
|
|
3567
|
+
400: {
|
|
3568
|
+
error?: {
|
|
3569
|
+
code?: string | null;
|
|
3570
|
+
message?: string | null;
|
|
3571
|
+
details?: string | null;
|
|
3572
|
+
data?: {
|
|
3573
|
+
[key: string]: unknown;
|
|
3574
|
+
} | null;
|
|
3575
|
+
validationErrors?: Array<{
|
|
3576
|
+
message?: string | null;
|
|
3577
|
+
members?: Array<(string)> | null;
|
|
3578
|
+
}> | null;
|
|
3579
|
+
};
|
|
3580
|
+
};
|
|
983
3581
|
/**
|
|
984
3582
|
* Unauthorized
|
|
985
3583
|
*/
|
|
986
|
-
401:
|
|
3584
|
+
401: {
|
|
3585
|
+
error?: {
|
|
3586
|
+
code?: string | null;
|
|
3587
|
+
message?: string | null;
|
|
3588
|
+
details?: string | null;
|
|
3589
|
+
data?: {
|
|
3590
|
+
[key: string]: unknown;
|
|
3591
|
+
} | null;
|
|
3592
|
+
validationErrors?: Array<{
|
|
3593
|
+
message?: string | null;
|
|
3594
|
+
members?: Array<(string)> | null;
|
|
3595
|
+
}> | null;
|
|
3596
|
+
};
|
|
3597
|
+
};
|
|
987
3598
|
/**
|
|
988
3599
|
* Forbidden
|
|
989
3600
|
*/
|
|
990
|
-
403:
|
|
3601
|
+
403: {
|
|
3602
|
+
error?: {
|
|
3603
|
+
code?: string | null;
|
|
3604
|
+
message?: string | null;
|
|
3605
|
+
details?: string | null;
|
|
3606
|
+
data?: {
|
|
3607
|
+
[key: string]: unknown;
|
|
3608
|
+
} | null;
|
|
3609
|
+
validationErrors?: Array<{
|
|
3610
|
+
message?: string | null;
|
|
3611
|
+
members?: Array<(string)> | null;
|
|
3612
|
+
}> | null;
|
|
3613
|
+
};
|
|
3614
|
+
};
|
|
991
3615
|
/**
|
|
992
3616
|
* Not Found
|
|
993
3617
|
*/
|
|
994
|
-
404:
|
|
3618
|
+
404: {
|
|
3619
|
+
error?: {
|
|
3620
|
+
code?: string | null;
|
|
3621
|
+
message?: string | null;
|
|
3622
|
+
details?: string | null;
|
|
3623
|
+
data?: {
|
|
3624
|
+
[key: string]: unknown;
|
|
3625
|
+
} | null;
|
|
3626
|
+
validationErrors?: Array<{
|
|
3627
|
+
message?: string | null;
|
|
3628
|
+
members?: Array<(string)> | null;
|
|
3629
|
+
}> | null;
|
|
3630
|
+
};
|
|
3631
|
+
};
|
|
995
3632
|
/**
|
|
996
3633
|
* Server Error
|
|
997
3634
|
*/
|
|
998
|
-
500:
|
|
3635
|
+
500: {
|
|
3636
|
+
error?: {
|
|
3637
|
+
code?: string | null;
|
|
3638
|
+
message?: string | null;
|
|
3639
|
+
details?: string | null;
|
|
3640
|
+
data?: {
|
|
3641
|
+
[key: string]: unknown;
|
|
3642
|
+
} | null;
|
|
3643
|
+
validationErrors?: Array<{
|
|
3644
|
+
message?: string | null;
|
|
3645
|
+
members?: Array<(string)> | null;
|
|
3646
|
+
}> | null;
|
|
3647
|
+
};
|
|
3648
|
+
};
|
|
999
3649
|
/**
|
|
1000
3650
|
* Server Error
|
|
1001
3651
|
*/
|
|
1002
|
-
501:
|
|
3652
|
+
501: {
|
|
3653
|
+
error?: {
|
|
3654
|
+
code?: string | null;
|
|
3655
|
+
message?: string | null;
|
|
3656
|
+
details?: string | null;
|
|
3657
|
+
data?: {
|
|
3658
|
+
[key: string]: unknown;
|
|
3659
|
+
} | null;
|
|
3660
|
+
validationErrors?: Array<{
|
|
3661
|
+
message?: string | null;
|
|
3662
|
+
members?: Array<(string)> | null;
|
|
3663
|
+
}> | null;
|
|
3664
|
+
};
|
|
3665
|
+
};
|
|
1003
3666
|
};
|
|
1004
3667
|
};
|
|
1005
3668
|
put: {
|
|
@@ -1008,31 +3671,121 @@ export type $OpenApiTs = {
|
|
|
1008
3671
|
/**
|
|
1009
3672
|
* Success
|
|
1010
3673
|
*/
|
|
1011
|
-
200:
|
|
3674
|
+
200: {
|
|
3675
|
+
id?: string;
|
|
3676
|
+
creationTime?: string;
|
|
3677
|
+
creatorId?: string | null;
|
|
3678
|
+
lastModificationTime?: string | null;
|
|
3679
|
+
lastModifierId?: string | null;
|
|
3680
|
+
isDeleted?: boolean;
|
|
3681
|
+
deleterId?: string | null;
|
|
3682
|
+
deletionTime?: string | null;
|
|
3683
|
+
name?: string | null;
|
|
3684
|
+
isDefault?: boolean;
|
|
3685
|
+
isOptional?: boolean;
|
|
3686
|
+
};
|
|
1012
3687
|
/**
|
|
1013
3688
|
* Bad Request
|
|
1014
3689
|
*/
|
|
1015
|
-
400:
|
|
3690
|
+
400: {
|
|
3691
|
+
error?: {
|
|
3692
|
+
code?: string | null;
|
|
3693
|
+
message?: string | null;
|
|
3694
|
+
details?: string | null;
|
|
3695
|
+
data?: {
|
|
3696
|
+
[key: string]: unknown;
|
|
3697
|
+
} | null;
|
|
3698
|
+
validationErrors?: Array<{
|
|
3699
|
+
message?: string | null;
|
|
3700
|
+
members?: Array<(string)> | null;
|
|
3701
|
+
}> | null;
|
|
3702
|
+
};
|
|
3703
|
+
};
|
|
1016
3704
|
/**
|
|
1017
3705
|
* Unauthorized
|
|
1018
3706
|
*/
|
|
1019
|
-
401:
|
|
3707
|
+
401: {
|
|
3708
|
+
error?: {
|
|
3709
|
+
code?: string | null;
|
|
3710
|
+
message?: string | null;
|
|
3711
|
+
details?: string | null;
|
|
3712
|
+
data?: {
|
|
3713
|
+
[key: string]: unknown;
|
|
3714
|
+
} | null;
|
|
3715
|
+
validationErrors?: Array<{
|
|
3716
|
+
message?: string | null;
|
|
3717
|
+
members?: Array<(string)> | null;
|
|
3718
|
+
}> | null;
|
|
3719
|
+
};
|
|
3720
|
+
};
|
|
1020
3721
|
/**
|
|
1021
3722
|
* Forbidden
|
|
1022
3723
|
*/
|
|
1023
|
-
403:
|
|
3724
|
+
403: {
|
|
3725
|
+
error?: {
|
|
3726
|
+
code?: string | null;
|
|
3727
|
+
message?: string | null;
|
|
3728
|
+
details?: string | null;
|
|
3729
|
+
data?: {
|
|
3730
|
+
[key: string]: unknown;
|
|
3731
|
+
} | null;
|
|
3732
|
+
validationErrors?: Array<{
|
|
3733
|
+
message?: string | null;
|
|
3734
|
+
members?: Array<(string)> | null;
|
|
3735
|
+
}> | null;
|
|
3736
|
+
};
|
|
3737
|
+
};
|
|
1024
3738
|
/**
|
|
1025
3739
|
* Not Found
|
|
1026
3740
|
*/
|
|
1027
|
-
404:
|
|
3741
|
+
404: {
|
|
3742
|
+
error?: {
|
|
3743
|
+
code?: string | null;
|
|
3744
|
+
message?: string | null;
|
|
3745
|
+
details?: string | null;
|
|
3746
|
+
data?: {
|
|
3747
|
+
[key: string]: unknown;
|
|
3748
|
+
} | null;
|
|
3749
|
+
validationErrors?: Array<{
|
|
3750
|
+
message?: string | null;
|
|
3751
|
+
members?: Array<(string)> | null;
|
|
3752
|
+
}> | null;
|
|
3753
|
+
};
|
|
3754
|
+
};
|
|
1028
3755
|
/**
|
|
1029
3756
|
* Server Error
|
|
1030
3757
|
*/
|
|
1031
|
-
500:
|
|
3758
|
+
500: {
|
|
3759
|
+
error?: {
|
|
3760
|
+
code?: string | null;
|
|
3761
|
+
message?: string | null;
|
|
3762
|
+
details?: string | null;
|
|
3763
|
+
data?: {
|
|
3764
|
+
[key: string]: unknown;
|
|
3765
|
+
} | null;
|
|
3766
|
+
validationErrors?: Array<{
|
|
3767
|
+
message?: string | null;
|
|
3768
|
+
members?: Array<(string)> | null;
|
|
3769
|
+
}> | null;
|
|
3770
|
+
};
|
|
3771
|
+
};
|
|
1032
3772
|
/**
|
|
1033
3773
|
* Server Error
|
|
1034
3774
|
*/
|
|
1035
|
-
501:
|
|
3775
|
+
501: {
|
|
3776
|
+
error?: {
|
|
3777
|
+
code?: string | null;
|
|
3778
|
+
message?: string | null;
|
|
3779
|
+
details?: string | null;
|
|
3780
|
+
data?: {
|
|
3781
|
+
[key: string]: unknown;
|
|
3782
|
+
} | null;
|
|
3783
|
+
validationErrors?: Array<{
|
|
3784
|
+
message?: string | null;
|
|
3785
|
+
members?: Array<(string)> | null;
|
|
3786
|
+
}> | null;
|
|
3787
|
+
};
|
|
3788
|
+
};
|
|
1036
3789
|
};
|
|
1037
3790
|
};
|
|
1038
3791
|
};
|
|
@@ -1043,31 +3796,121 @@ export type $OpenApiTs = {
|
|
|
1043
3796
|
/**
|
|
1044
3797
|
* Success
|
|
1045
3798
|
*/
|
|
1046
|
-
200:
|
|
3799
|
+
200: {
|
|
3800
|
+
id?: string;
|
|
3801
|
+
creationTime?: string;
|
|
3802
|
+
creatorId?: string | null;
|
|
3803
|
+
lastModificationTime?: string | null;
|
|
3804
|
+
lastModifierId?: string | null;
|
|
3805
|
+
isDeleted?: boolean;
|
|
3806
|
+
deleterId?: string | null;
|
|
3807
|
+
deletionTime?: string | null;
|
|
3808
|
+
name?: string | null;
|
|
3809
|
+
isDefault?: boolean;
|
|
3810
|
+
isOptional?: boolean;
|
|
3811
|
+
};
|
|
1047
3812
|
/**
|
|
1048
3813
|
* Bad Request
|
|
1049
3814
|
*/
|
|
1050
|
-
400:
|
|
3815
|
+
400: {
|
|
3816
|
+
error?: {
|
|
3817
|
+
code?: string | null;
|
|
3818
|
+
message?: string | null;
|
|
3819
|
+
details?: string | null;
|
|
3820
|
+
data?: {
|
|
3821
|
+
[key: string]: unknown;
|
|
3822
|
+
} | null;
|
|
3823
|
+
validationErrors?: Array<{
|
|
3824
|
+
message?: string | null;
|
|
3825
|
+
members?: Array<(string)> | null;
|
|
3826
|
+
}> | null;
|
|
3827
|
+
};
|
|
3828
|
+
};
|
|
1051
3829
|
/**
|
|
1052
3830
|
* Unauthorized
|
|
1053
3831
|
*/
|
|
1054
|
-
401:
|
|
3832
|
+
401: {
|
|
3833
|
+
error?: {
|
|
3834
|
+
code?: string | null;
|
|
3835
|
+
message?: string | null;
|
|
3836
|
+
details?: string | null;
|
|
3837
|
+
data?: {
|
|
3838
|
+
[key: string]: unknown;
|
|
3839
|
+
} | null;
|
|
3840
|
+
validationErrors?: Array<{
|
|
3841
|
+
message?: string | null;
|
|
3842
|
+
members?: Array<(string)> | null;
|
|
3843
|
+
}> | null;
|
|
3844
|
+
};
|
|
3845
|
+
};
|
|
1055
3846
|
/**
|
|
1056
3847
|
* Forbidden
|
|
1057
3848
|
*/
|
|
1058
|
-
403:
|
|
3849
|
+
403: {
|
|
3850
|
+
error?: {
|
|
3851
|
+
code?: string | null;
|
|
3852
|
+
message?: string | null;
|
|
3853
|
+
details?: string | null;
|
|
3854
|
+
data?: {
|
|
3855
|
+
[key: string]: unknown;
|
|
3856
|
+
} | null;
|
|
3857
|
+
validationErrors?: Array<{
|
|
3858
|
+
message?: string | null;
|
|
3859
|
+
members?: Array<(string)> | null;
|
|
3860
|
+
}> | null;
|
|
3861
|
+
};
|
|
3862
|
+
};
|
|
1059
3863
|
/**
|
|
1060
3864
|
* Not Found
|
|
1061
3865
|
*/
|
|
1062
|
-
404:
|
|
3866
|
+
404: {
|
|
3867
|
+
error?: {
|
|
3868
|
+
code?: string | null;
|
|
3869
|
+
message?: string | null;
|
|
3870
|
+
details?: string | null;
|
|
3871
|
+
data?: {
|
|
3872
|
+
[key: string]: unknown;
|
|
3873
|
+
} | null;
|
|
3874
|
+
validationErrors?: Array<{
|
|
3875
|
+
message?: string | null;
|
|
3876
|
+
members?: Array<(string)> | null;
|
|
3877
|
+
}> | null;
|
|
3878
|
+
};
|
|
3879
|
+
};
|
|
1063
3880
|
/**
|
|
1064
3881
|
* Server Error
|
|
1065
3882
|
*/
|
|
1066
|
-
500:
|
|
3883
|
+
500: {
|
|
3884
|
+
error?: {
|
|
3885
|
+
code?: string | null;
|
|
3886
|
+
message?: string | null;
|
|
3887
|
+
details?: string | null;
|
|
3888
|
+
data?: {
|
|
3889
|
+
[key: string]: unknown;
|
|
3890
|
+
} | null;
|
|
3891
|
+
validationErrors?: Array<{
|
|
3892
|
+
message?: string | null;
|
|
3893
|
+
members?: Array<(string)> | null;
|
|
3894
|
+
}> | null;
|
|
3895
|
+
};
|
|
3896
|
+
};
|
|
1067
3897
|
/**
|
|
1068
3898
|
* Server Error
|
|
1069
3899
|
*/
|
|
1070
|
-
501:
|
|
3900
|
+
501: {
|
|
3901
|
+
error?: {
|
|
3902
|
+
code?: string | null;
|
|
3903
|
+
message?: string | null;
|
|
3904
|
+
details?: string | null;
|
|
3905
|
+
data?: {
|
|
3906
|
+
[key: string]: unknown;
|
|
3907
|
+
} | null;
|
|
3908
|
+
validationErrors?: Array<{
|
|
3909
|
+
message?: string | null;
|
|
3910
|
+
members?: Array<(string)> | null;
|
|
3911
|
+
}> | null;
|
|
3912
|
+
};
|
|
3913
|
+
};
|
|
1071
3914
|
};
|
|
1072
3915
|
};
|
|
1073
3916
|
};
|
|
@@ -1078,31 +3921,121 @@ export type $OpenApiTs = {
|
|
|
1078
3921
|
/**
|
|
1079
3922
|
* Success
|
|
1080
3923
|
*/
|
|
1081
|
-
200:
|
|
3924
|
+
200: {
|
|
3925
|
+
id?: string;
|
|
3926
|
+
creationTime?: string;
|
|
3927
|
+
creatorId?: string | null;
|
|
3928
|
+
lastModificationTime?: string | null;
|
|
3929
|
+
lastModifierId?: string | null;
|
|
3930
|
+
isDeleted?: boolean;
|
|
3931
|
+
deleterId?: string | null;
|
|
3932
|
+
deletionTime?: string | null;
|
|
3933
|
+
projectId?: string;
|
|
3934
|
+
projectSectionId?: string;
|
|
3935
|
+
value?: string | null;
|
|
3936
|
+
};
|
|
1082
3937
|
/**
|
|
1083
3938
|
* Bad Request
|
|
1084
3939
|
*/
|
|
1085
|
-
400:
|
|
3940
|
+
400: {
|
|
3941
|
+
error?: {
|
|
3942
|
+
code?: string | null;
|
|
3943
|
+
message?: string | null;
|
|
3944
|
+
details?: string | null;
|
|
3945
|
+
data?: {
|
|
3946
|
+
[key: string]: unknown;
|
|
3947
|
+
} | null;
|
|
3948
|
+
validationErrors?: Array<{
|
|
3949
|
+
message?: string | null;
|
|
3950
|
+
members?: Array<(string)> | null;
|
|
3951
|
+
}> | null;
|
|
3952
|
+
};
|
|
3953
|
+
};
|
|
1086
3954
|
/**
|
|
1087
3955
|
* Unauthorized
|
|
1088
3956
|
*/
|
|
1089
|
-
401:
|
|
3957
|
+
401: {
|
|
3958
|
+
error?: {
|
|
3959
|
+
code?: string | null;
|
|
3960
|
+
message?: string | null;
|
|
3961
|
+
details?: string | null;
|
|
3962
|
+
data?: {
|
|
3963
|
+
[key: string]: unknown;
|
|
3964
|
+
} | null;
|
|
3965
|
+
validationErrors?: Array<{
|
|
3966
|
+
message?: string | null;
|
|
3967
|
+
members?: Array<(string)> | null;
|
|
3968
|
+
}> | null;
|
|
3969
|
+
};
|
|
3970
|
+
};
|
|
1090
3971
|
/**
|
|
1091
3972
|
* Forbidden
|
|
1092
3973
|
*/
|
|
1093
|
-
403:
|
|
3974
|
+
403: {
|
|
3975
|
+
error?: {
|
|
3976
|
+
code?: string | null;
|
|
3977
|
+
message?: string | null;
|
|
3978
|
+
details?: string | null;
|
|
3979
|
+
data?: {
|
|
3980
|
+
[key: string]: unknown;
|
|
3981
|
+
} | null;
|
|
3982
|
+
validationErrors?: Array<{
|
|
3983
|
+
message?: string | null;
|
|
3984
|
+
members?: Array<(string)> | null;
|
|
3985
|
+
}> | null;
|
|
3986
|
+
};
|
|
3987
|
+
};
|
|
1094
3988
|
/**
|
|
1095
3989
|
* Not Found
|
|
1096
3990
|
*/
|
|
1097
|
-
404:
|
|
3991
|
+
404: {
|
|
3992
|
+
error?: {
|
|
3993
|
+
code?: string | null;
|
|
3994
|
+
message?: string | null;
|
|
3995
|
+
details?: string | null;
|
|
3996
|
+
data?: {
|
|
3997
|
+
[key: string]: unknown;
|
|
3998
|
+
} | null;
|
|
3999
|
+
validationErrors?: Array<{
|
|
4000
|
+
message?: string | null;
|
|
4001
|
+
members?: Array<(string)> | null;
|
|
4002
|
+
}> | null;
|
|
4003
|
+
};
|
|
4004
|
+
};
|
|
1098
4005
|
/**
|
|
1099
4006
|
* Server Error
|
|
1100
4007
|
*/
|
|
1101
|
-
500:
|
|
4008
|
+
500: {
|
|
4009
|
+
error?: {
|
|
4010
|
+
code?: string | null;
|
|
4011
|
+
message?: string | null;
|
|
4012
|
+
details?: string | null;
|
|
4013
|
+
data?: {
|
|
4014
|
+
[key: string]: unknown;
|
|
4015
|
+
} | null;
|
|
4016
|
+
validationErrors?: Array<{
|
|
4017
|
+
message?: string | null;
|
|
4018
|
+
members?: Array<(string)> | null;
|
|
4019
|
+
}> | null;
|
|
4020
|
+
};
|
|
4021
|
+
};
|
|
1102
4022
|
/**
|
|
1103
4023
|
* Server Error
|
|
1104
4024
|
*/
|
|
1105
|
-
501:
|
|
4025
|
+
501: {
|
|
4026
|
+
error?: {
|
|
4027
|
+
code?: string | null;
|
|
4028
|
+
message?: string | null;
|
|
4029
|
+
details?: string | null;
|
|
4030
|
+
data?: {
|
|
4031
|
+
[key: string]: unknown;
|
|
4032
|
+
} | null;
|
|
4033
|
+
validationErrors?: Array<{
|
|
4034
|
+
message?: string | null;
|
|
4035
|
+
members?: Array<(string)> | null;
|
|
4036
|
+
}> | null;
|
|
4037
|
+
};
|
|
4038
|
+
};
|
|
1106
4039
|
};
|
|
1107
4040
|
};
|
|
1108
4041
|
delete: {
|
|
@@ -1115,27 +4048,105 @@ export type $OpenApiTs = {
|
|
|
1115
4048
|
/**
|
|
1116
4049
|
* Bad Request
|
|
1117
4050
|
*/
|
|
1118
|
-
400:
|
|
4051
|
+
400: {
|
|
4052
|
+
error?: {
|
|
4053
|
+
code?: string | null;
|
|
4054
|
+
message?: string | null;
|
|
4055
|
+
details?: string | null;
|
|
4056
|
+
data?: {
|
|
4057
|
+
[key: string]: unknown;
|
|
4058
|
+
} | null;
|
|
4059
|
+
validationErrors?: Array<{
|
|
4060
|
+
message?: string | null;
|
|
4061
|
+
members?: Array<(string)> | null;
|
|
4062
|
+
}> | null;
|
|
4063
|
+
};
|
|
4064
|
+
};
|
|
1119
4065
|
/**
|
|
1120
4066
|
* Unauthorized
|
|
1121
4067
|
*/
|
|
1122
|
-
401:
|
|
4068
|
+
401: {
|
|
4069
|
+
error?: {
|
|
4070
|
+
code?: string | null;
|
|
4071
|
+
message?: string | null;
|
|
4072
|
+
details?: string | null;
|
|
4073
|
+
data?: {
|
|
4074
|
+
[key: string]: unknown;
|
|
4075
|
+
} | null;
|
|
4076
|
+
validationErrors?: Array<{
|
|
4077
|
+
message?: string | null;
|
|
4078
|
+
members?: Array<(string)> | null;
|
|
4079
|
+
}> | null;
|
|
4080
|
+
};
|
|
4081
|
+
};
|
|
1123
4082
|
/**
|
|
1124
4083
|
* Forbidden
|
|
1125
4084
|
*/
|
|
1126
|
-
403:
|
|
4085
|
+
403: {
|
|
4086
|
+
error?: {
|
|
4087
|
+
code?: string | null;
|
|
4088
|
+
message?: string | null;
|
|
4089
|
+
details?: string | null;
|
|
4090
|
+
data?: {
|
|
4091
|
+
[key: string]: unknown;
|
|
4092
|
+
} | null;
|
|
4093
|
+
validationErrors?: Array<{
|
|
4094
|
+
message?: string | null;
|
|
4095
|
+
members?: Array<(string)> | null;
|
|
4096
|
+
}> | null;
|
|
4097
|
+
};
|
|
4098
|
+
};
|
|
1127
4099
|
/**
|
|
1128
4100
|
* Not Found
|
|
1129
4101
|
*/
|
|
1130
|
-
404:
|
|
4102
|
+
404: {
|
|
4103
|
+
error?: {
|
|
4104
|
+
code?: string | null;
|
|
4105
|
+
message?: string | null;
|
|
4106
|
+
details?: string | null;
|
|
4107
|
+
data?: {
|
|
4108
|
+
[key: string]: unknown;
|
|
4109
|
+
} | null;
|
|
4110
|
+
validationErrors?: Array<{
|
|
4111
|
+
message?: string | null;
|
|
4112
|
+
members?: Array<(string)> | null;
|
|
4113
|
+
}> | null;
|
|
4114
|
+
};
|
|
4115
|
+
};
|
|
1131
4116
|
/**
|
|
1132
4117
|
* Server Error
|
|
1133
4118
|
*/
|
|
1134
|
-
500:
|
|
4119
|
+
500: {
|
|
4120
|
+
error?: {
|
|
4121
|
+
code?: string | null;
|
|
4122
|
+
message?: string | null;
|
|
4123
|
+
details?: string | null;
|
|
4124
|
+
data?: {
|
|
4125
|
+
[key: string]: unknown;
|
|
4126
|
+
} | null;
|
|
4127
|
+
validationErrors?: Array<{
|
|
4128
|
+
message?: string | null;
|
|
4129
|
+
members?: Array<(string)> | null;
|
|
4130
|
+
}> | null;
|
|
4131
|
+
};
|
|
4132
|
+
};
|
|
1135
4133
|
/**
|
|
1136
4134
|
* Server Error
|
|
1137
4135
|
*/
|
|
1138
|
-
501:
|
|
4136
|
+
501: {
|
|
4137
|
+
error?: {
|
|
4138
|
+
code?: string | null;
|
|
4139
|
+
message?: string | null;
|
|
4140
|
+
details?: string | null;
|
|
4141
|
+
data?: {
|
|
4142
|
+
[key: string]: unknown;
|
|
4143
|
+
} | null;
|
|
4144
|
+
validationErrors?: Array<{
|
|
4145
|
+
message?: string | null;
|
|
4146
|
+
members?: Array<(string)> | null;
|
|
4147
|
+
}> | null;
|
|
4148
|
+
};
|
|
4149
|
+
};
|
|
1139
4150
|
};
|
|
1140
4151
|
};
|
|
1141
4152
|
get: {
|
|
@@ -1144,31 +4155,124 @@ export type $OpenApiTs = {
|
|
|
1144
4155
|
/**
|
|
1145
4156
|
* Success
|
|
1146
4157
|
*/
|
|
1147
|
-
200:
|
|
4158
|
+
200: {
|
|
4159
|
+
items?: Array<{
|
|
4160
|
+
id?: string;
|
|
4161
|
+
creationTime?: string;
|
|
4162
|
+
creatorId?: string | null;
|
|
4163
|
+
lastModificationTime?: string | null;
|
|
4164
|
+
lastModifierId?: string | null;
|
|
4165
|
+
isDeleted?: boolean;
|
|
4166
|
+
deleterId?: string | null;
|
|
4167
|
+
deletionTime?: string | null;
|
|
4168
|
+
projectId?: string;
|
|
4169
|
+
projectSectionId?: string;
|
|
4170
|
+
value?: string | null;
|
|
4171
|
+
}> | null;
|
|
4172
|
+
totalCount?: number;
|
|
4173
|
+
};
|
|
1148
4174
|
/**
|
|
1149
4175
|
* Bad Request
|
|
1150
4176
|
*/
|
|
1151
|
-
400:
|
|
4177
|
+
400: {
|
|
4178
|
+
error?: {
|
|
4179
|
+
code?: string | null;
|
|
4180
|
+
message?: string | null;
|
|
4181
|
+
details?: string | null;
|
|
4182
|
+
data?: {
|
|
4183
|
+
[key: string]: unknown;
|
|
4184
|
+
} | null;
|
|
4185
|
+
validationErrors?: Array<{
|
|
4186
|
+
message?: string | null;
|
|
4187
|
+
members?: Array<(string)> | null;
|
|
4188
|
+
}> | null;
|
|
4189
|
+
};
|
|
4190
|
+
};
|
|
1152
4191
|
/**
|
|
1153
4192
|
* Unauthorized
|
|
1154
4193
|
*/
|
|
1155
|
-
401:
|
|
4194
|
+
401: {
|
|
4195
|
+
error?: {
|
|
4196
|
+
code?: string | null;
|
|
4197
|
+
message?: string | null;
|
|
4198
|
+
details?: string | null;
|
|
4199
|
+
data?: {
|
|
4200
|
+
[key: string]: unknown;
|
|
4201
|
+
} | null;
|
|
4202
|
+
validationErrors?: Array<{
|
|
4203
|
+
message?: string | null;
|
|
4204
|
+
members?: Array<(string)> | null;
|
|
4205
|
+
}> | null;
|
|
4206
|
+
};
|
|
4207
|
+
};
|
|
1156
4208
|
/**
|
|
1157
4209
|
* Forbidden
|
|
1158
4210
|
*/
|
|
1159
|
-
403:
|
|
4211
|
+
403: {
|
|
4212
|
+
error?: {
|
|
4213
|
+
code?: string | null;
|
|
4214
|
+
message?: string | null;
|
|
4215
|
+
details?: string | null;
|
|
4216
|
+
data?: {
|
|
4217
|
+
[key: string]: unknown;
|
|
4218
|
+
} | null;
|
|
4219
|
+
validationErrors?: Array<{
|
|
4220
|
+
message?: string | null;
|
|
4221
|
+
members?: Array<(string)> | null;
|
|
4222
|
+
}> | null;
|
|
4223
|
+
};
|
|
4224
|
+
};
|
|
1160
4225
|
/**
|
|
1161
4226
|
* Not Found
|
|
1162
4227
|
*/
|
|
1163
|
-
404:
|
|
4228
|
+
404: {
|
|
4229
|
+
error?: {
|
|
4230
|
+
code?: string | null;
|
|
4231
|
+
message?: string | null;
|
|
4232
|
+
details?: string | null;
|
|
4233
|
+
data?: {
|
|
4234
|
+
[key: string]: unknown;
|
|
4235
|
+
} | null;
|
|
4236
|
+
validationErrors?: Array<{
|
|
4237
|
+
message?: string | null;
|
|
4238
|
+
members?: Array<(string)> | null;
|
|
4239
|
+
}> | null;
|
|
4240
|
+
};
|
|
4241
|
+
};
|
|
1164
4242
|
/**
|
|
1165
4243
|
* Server Error
|
|
1166
4244
|
*/
|
|
1167
|
-
500:
|
|
4245
|
+
500: {
|
|
4246
|
+
error?: {
|
|
4247
|
+
code?: string | null;
|
|
4248
|
+
message?: string | null;
|
|
4249
|
+
details?: string | null;
|
|
4250
|
+
data?: {
|
|
4251
|
+
[key: string]: unknown;
|
|
4252
|
+
} | null;
|
|
4253
|
+
validationErrors?: Array<{
|
|
4254
|
+
message?: string | null;
|
|
4255
|
+
members?: Array<(string)> | null;
|
|
4256
|
+
}> | null;
|
|
4257
|
+
};
|
|
4258
|
+
};
|
|
1168
4259
|
/**
|
|
1169
4260
|
* Server Error
|
|
1170
4261
|
*/
|
|
1171
|
-
501:
|
|
4262
|
+
501: {
|
|
4263
|
+
error?: {
|
|
4264
|
+
code?: string | null;
|
|
4265
|
+
message?: string | null;
|
|
4266
|
+
details?: string | null;
|
|
4267
|
+
data?: {
|
|
4268
|
+
[key: string]: unknown;
|
|
4269
|
+
} | null;
|
|
4270
|
+
validationErrors?: Array<{
|
|
4271
|
+
message?: string | null;
|
|
4272
|
+
members?: Array<(string)> | null;
|
|
4273
|
+
}> | null;
|
|
4274
|
+
};
|
|
4275
|
+
};
|
|
1172
4276
|
};
|
|
1173
4277
|
};
|
|
1174
4278
|
};
|
|
@@ -1179,31 +4283,121 @@ export type $OpenApiTs = {
|
|
|
1179
4283
|
/**
|
|
1180
4284
|
* Success
|
|
1181
4285
|
*/
|
|
1182
|
-
200:
|
|
4286
|
+
200: {
|
|
4287
|
+
id?: string;
|
|
4288
|
+
creationTime?: string;
|
|
4289
|
+
creatorId?: string | null;
|
|
4290
|
+
lastModificationTime?: string | null;
|
|
4291
|
+
lastModifierId?: string | null;
|
|
4292
|
+
isDeleted?: boolean;
|
|
4293
|
+
deleterId?: string | null;
|
|
4294
|
+
deletionTime?: string | null;
|
|
4295
|
+
projectId?: string;
|
|
4296
|
+
projectSectionId?: string;
|
|
4297
|
+
value?: string | null;
|
|
4298
|
+
};
|
|
1183
4299
|
/**
|
|
1184
4300
|
* Bad Request
|
|
1185
4301
|
*/
|
|
1186
|
-
400:
|
|
4302
|
+
400: {
|
|
4303
|
+
error?: {
|
|
4304
|
+
code?: string | null;
|
|
4305
|
+
message?: string | null;
|
|
4306
|
+
details?: string | null;
|
|
4307
|
+
data?: {
|
|
4308
|
+
[key: string]: unknown;
|
|
4309
|
+
} | null;
|
|
4310
|
+
validationErrors?: Array<{
|
|
4311
|
+
message?: string | null;
|
|
4312
|
+
members?: Array<(string)> | null;
|
|
4313
|
+
}> | null;
|
|
4314
|
+
};
|
|
4315
|
+
};
|
|
1187
4316
|
/**
|
|
1188
4317
|
* Unauthorized
|
|
1189
4318
|
*/
|
|
1190
|
-
401:
|
|
4319
|
+
401: {
|
|
4320
|
+
error?: {
|
|
4321
|
+
code?: string | null;
|
|
4322
|
+
message?: string | null;
|
|
4323
|
+
details?: string | null;
|
|
4324
|
+
data?: {
|
|
4325
|
+
[key: string]: unknown;
|
|
4326
|
+
} | null;
|
|
4327
|
+
validationErrors?: Array<{
|
|
4328
|
+
message?: string | null;
|
|
4329
|
+
members?: Array<(string)> | null;
|
|
4330
|
+
}> | null;
|
|
4331
|
+
};
|
|
4332
|
+
};
|
|
1191
4333
|
/**
|
|
1192
4334
|
* Forbidden
|
|
1193
4335
|
*/
|
|
1194
|
-
403:
|
|
4336
|
+
403: {
|
|
4337
|
+
error?: {
|
|
4338
|
+
code?: string | null;
|
|
4339
|
+
message?: string | null;
|
|
4340
|
+
details?: string | null;
|
|
4341
|
+
data?: {
|
|
4342
|
+
[key: string]: unknown;
|
|
4343
|
+
} | null;
|
|
4344
|
+
validationErrors?: Array<{
|
|
4345
|
+
message?: string | null;
|
|
4346
|
+
members?: Array<(string)> | null;
|
|
4347
|
+
}> | null;
|
|
4348
|
+
};
|
|
4349
|
+
};
|
|
1195
4350
|
/**
|
|
1196
4351
|
* Not Found
|
|
1197
4352
|
*/
|
|
1198
|
-
404:
|
|
4353
|
+
404: {
|
|
4354
|
+
error?: {
|
|
4355
|
+
code?: string | null;
|
|
4356
|
+
message?: string | null;
|
|
4357
|
+
details?: string | null;
|
|
4358
|
+
data?: {
|
|
4359
|
+
[key: string]: unknown;
|
|
4360
|
+
} | null;
|
|
4361
|
+
validationErrors?: Array<{
|
|
4362
|
+
message?: string | null;
|
|
4363
|
+
members?: Array<(string)> | null;
|
|
4364
|
+
}> | null;
|
|
4365
|
+
};
|
|
4366
|
+
};
|
|
1199
4367
|
/**
|
|
1200
4368
|
* Server Error
|
|
1201
4369
|
*/
|
|
1202
|
-
500:
|
|
4370
|
+
500: {
|
|
4371
|
+
error?: {
|
|
4372
|
+
code?: string | null;
|
|
4373
|
+
message?: string | null;
|
|
4374
|
+
details?: string | null;
|
|
4375
|
+
data?: {
|
|
4376
|
+
[key: string]: unknown;
|
|
4377
|
+
} | null;
|
|
4378
|
+
validationErrors?: Array<{
|
|
4379
|
+
message?: string | null;
|
|
4380
|
+
members?: Array<(string)> | null;
|
|
4381
|
+
}> | null;
|
|
4382
|
+
};
|
|
4383
|
+
};
|
|
1203
4384
|
/**
|
|
1204
4385
|
* Server Error
|
|
1205
4386
|
*/
|
|
1206
|
-
501:
|
|
4387
|
+
501: {
|
|
4388
|
+
error?: {
|
|
4389
|
+
code?: string | null;
|
|
4390
|
+
message?: string | null;
|
|
4391
|
+
details?: string | null;
|
|
4392
|
+
data?: {
|
|
4393
|
+
[key: string]: unknown;
|
|
4394
|
+
} | null;
|
|
4395
|
+
validationErrors?: Array<{
|
|
4396
|
+
message?: string | null;
|
|
4397
|
+
members?: Array<(string)> | null;
|
|
4398
|
+
}> | null;
|
|
4399
|
+
};
|
|
4400
|
+
};
|
|
1207
4401
|
};
|
|
1208
4402
|
};
|
|
1209
4403
|
put: {
|
|
@@ -1212,31 +4406,121 @@ export type $OpenApiTs = {
|
|
|
1212
4406
|
/**
|
|
1213
4407
|
* Success
|
|
1214
4408
|
*/
|
|
1215
|
-
200:
|
|
4409
|
+
200: {
|
|
4410
|
+
id?: string;
|
|
4411
|
+
creationTime?: string;
|
|
4412
|
+
creatorId?: string | null;
|
|
4413
|
+
lastModificationTime?: string | null;
|
|
4414
|
+
lastModifierId?: string | null;
|
|
4415
|
+
isDeleted?: boolean;
|
|
4416
|
+
deleterId?: string | null;
|
|
4417
|
+
deletionTime?: string | null;
|
|
4418
|
+
projectId?: string;
|
|
4419
|
+
projectSectionId?: string;
|
|
4420
|
+
value?: string | null;
|
|
4421
|
+
};
|
|
1216
4422
|
/**
|
|
1217
4423
|
* Bad Request
|
|
1218
4424
|
*/
|
|
1219
|
-
400:
|
|
4425
|
+
400: {
|
|
4426
|
+
error?: {
|
|
4427
|
+
code?: string | null;
|
|
4428
|
+
message?: string | null;
|
|
4429
|
+
details?: string | null;
|
|
4430
|
+
data?: {
|
|
4431
|
+
[key: string]: unknown;
|
|
4432
|
+
} | null;
|
|
4433
|
+
validationErrors?: Array<{
|
|
4434
|
+
message?: string | null;
|
|
4435
|
+
members?: Array<(string)> | null;
|
|
4436
|
+
}> | null;
|
|
4437
|
+
};
|
|
4438
|
+
};
|
|
1220
4439
|
/**
|
|
1221
4440
|
* Unauthorized
|
|
1222
4441
|
*/
|
|
1223
|
-
401:
|
|
4442
|
+
401: {
|
|
4443
|
+
error?: {
|
|
4444
|
+
code?: string | null;
|
|
4445
|
+
message?: string | null;
|
|
4446
|
+
details?: string | null;
|
|
4447
|
+
data?: {
|
|
4448
|
+
[key: string]: unknown;
|
|
4449
|
+
} | null;
|
|
4450
|
+
validationErrors?: Array<{
|
|
4451
|
+
message?: string | null;
|
|
4452
|
+
members?: Array<(string)> | null;
|
|
4453
|
+
}> | null;
|
|
4454
|
+
};
|
|
4455
|
+
};
|
|
1224
4456
|
/**
|
|
1225
4457
|
* Forbidden
|
|
1226
4458
|
*/
|
|
1227
|
-
403:
|
|
4459
|
+
403: {
|
|
4460
|
+
error?: {
|
|
4461
|
+
code?: string | null;
|
|
4462
|
+
message?: string | null;
|
|
4463
|
+
details?: string | null;
|
|
4464
|
+
data?: {
|
|
4465
|
+
[key: string]: unknown;
|
|
4466
|
+
} | null;
|
|
4467
|
+
validationErrors?: Array<{
|
|
4468
|
+
message?: string | null;
|
|
4469
|
+
members?: Array<(string)> | null;
|
|
4470
|
+
}> | null;
|
|
4471
|
+
};
|
|
4472
|
+
};
|
|
1228
4473
|
/**
|
|
1229
4474
|
* Not Found
|
|
1230
4475
|
*/
|
|
1231
|
-
404:
|
|
4476
|
+
404: {
|
|
4477
|
+
error?: {
|
|
4478
|
+
code?: string | null;
|
|
4479
|
+
message?: string | null;
|
|
4480
|
+
details?: string | null;
|
|
4481
|
+
data?: {
|
|
4482
|
+
[key: string]: unknown;
|
|
4483
|
+
} | null;
|
|
4484
|
+
validationErrors?: Array<{
|
|
4485
|
+
message?: string | null;
|
|
4486
|
+
members?: Array<(string)> | null;
|
|
4487
|
+
}> | null;
|
|
4488
|
+
};
|
|
4489
|
+
};
|
|
1232
4490
|
/**
|
|
1233
4491
|
* Server Error
|
|
1234
4492
|
*/
|
|
1235
|
-
500:
|
|
4493
|
+
500: {
|
|
4494
|
+
error?: {
|
|
4495
|
+
code?: string | null;
|
|
4496
|
+
message?: string | null;
|
|
4497
|
+
details?: string | null;
|
|
4498
|
+
data?: {
|
|
4499
|
+
[key: string]: unknown;
|
|
4500
|
+
} | null;
|
|
4501
|
+
validationErrors?: Array<{
|
|
4502
|
+
message?: string | null;
|
|
4503
|
+
members?: Array<(string)> | null;
|
|
4504
|
+
}> | null;
|
|
4505
|
+
};
|
|
4506
|
+
};
|
|
1236
4507
|
/**
|
|
1237
4508
|
* Server Error
|
|
1238
4509
|
*/
|
|
1239
|
-
501:
|
|
4510
|
+
501: {
|
|
4511
|
+
error?: {
|
|
4512
|
+
code?: string | null;
|
|
4513
|
+
message?: string | null;
|
|
4514
|
+
details?: string | null;
|
|
4515
|
+
data?: {
|
|
4516
|
+
[key: string]: unknown;
|
|
4517
|
+
} | null;
|
|
4518
|
+
validationErrors?: Array<{
|
|
4519
|
+
message?: string | null;
|
|
4520
|
+
members?: Array<(string)> | null;
|
|
4521
|
+
}> | null;
|
|
4522
|
+
};
|
|
4523
|
+
};
|
|
1240
4524
|
};
|
|
1241
4525
|
};
|
|
1242
4526
|
};
|