@ayasofyazilim/saas 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AccountService/schemas.gen.ts +2853 -67
- package/AccountService/services.gen.ts +28 -28
- package/AccountService/types.gen.ts +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/generator.mjs +61 -0
- package/package.json +27 -30
|
@@ -6,7 +6,53 @@ export const $Volo_Abp_Account_AccountExternalProviderSettingsDto = {
|
|
|
6
6
|
settings: {
|
|
7
7
|
type: 'array',
|
|
8
8
|
items: {
|
|
9
|
-
|
|
9
|
+
type: 'object',
|
|
10
|
+
properties: {
|
|
11
|
+
name: {
|
|
12
|
+
type: 'string',
|
|
13
|
+
nullable: true
|
|
14
|
+
},
|
|
15
|
+
enabled: {
|
|
16
|
+
type: 'boolean'
|
|
17
|
+
},
|
|
18
|
+
properties: {
|
|
19
|
+
type: 'array',
|
|
20
|
+
items: {
|
|
21
|
+
type: 'object',
|
|
22
|
+
properties: {
|
|
23
|
+
name: {
|
|
24
|
+
type: 'string',
|
|
25
|
+
nullable: true
|
|
26
|
+
},
|
|
27
|
+
value: {
|
|
28
|
+
type: 'string',
|
|
29
|
+
nullable: true
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
additionalProperties: false
|
|
33
|
+
},
|
|
34
|
+
nullable: true
|
|
35
|
+
},
|
|
36
|
+
secretProperties: {
|
|
37
|
+
type: 'array',
|
|
38
|
+
items: {
|
|
39
|
+
type: 'object',
|
|
40
|
+
properties: {
|
|
41
|
+
name: {
|
|
42
|
+
type: 'string',
|
|
43
|
+
nullable: true
|
|
44
|
+
},
|
|
45
|
+
value: {
|
|
46
|
+
type: 'string',
|
|
47
|
+
nullable: true
|
|
48
|
+
}
|
|
49
|
+
},
|
|
50
|
+
additionalProperties: false
|
|
51
|
+
},
|
|
52
|
+
nullable: true
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
additionalProperties: false
|
|
10
56
|
},
|
|
11
57
|
nullable: true
|
|
12
58
|
}
|
|
@@ -68,7 +114,9 @@ export const $Volo_Abp_Account_AccountTwoFactorSettingsDto = {
|
|
|
68
114
|
type: 'object',
|
|
69
115
|
properties: {
|
|
70
116
|
twoFactorBehaviour: {
|
|
71
|
-
|
|
117
|
+
enum: [0, 1, 2],
|
|
118
|
+
type: 'integer',
|
|
119
|
+
format: 'int32'
|
|
72
120
|
},
|
|
73
121
|
isRememberBrowserEnabled: {
|
|
74
122
|
type: 'boolean'
|
|
@@ -172,7 +220,35 @@ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderDto = {
|
|
|
172
220
|
providers: {
|
|
173
221
|
type: 'array',
|
|
174
222
|
items: {
|
|
175
|
-
|
|
223
|
+
type: 'object',
|
|
224
|
+
properties: {
|
|
225
|
+
name: {
|
|
226
|
+
type: 'string',
|
|
227
|
+
nullable: true
|
|
228
|
+
},
|
|
229
|
+
enabled: {
|
|
230
|
+
type: 'boolean'
|
|
231
|
+
},
|
|
232
|
+
properties: {
|
|
233
|
+
type: 'array',
|
|
234
|
+
items: {
|
|
235
|
+
type: 'object',
|
|
236
|
+
properties: {
|
|
237
|
+
name: {
|
|
238
|
+
type: 'string',
|
|
239
|
+
nullable: true
|
|
240
|
+
},
|
|
241
|
+
value: {
|
|
242
|
+
type: 'string',
|
|
243
|
+
nullable: true
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
additionalProperties: false
|
|
247
|
+
},
|
|
248
|
+
nullable: true
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
additionalProperties: false
|
|
176
252
|
},
|
|
177
253
|
nullable: true
|
|
178
254
|
}
|
|
@@ -193,7 +269,18 @@ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto = {
|
|
|
193
269
|
properties: {
|
|
194
270
|
type: 'array',
|
|
195
271
|
items: {
|
|
196
|
-
|
|
272
|
+
type: 'object',
|
|
273
|
+
properties: {
|
|
274
|
+
name: {
|
|
275
|
+
type: 'string',
|
|
276
|
+
nullable: true
|
|
277
|
+
},
|
|
278
|
+
value: {
|
|
279
|
+
type: 'string',
|
|
280
|
+
nullable: true
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
additionalProperties: false
|
|
197
284
|
},
|
|
198
285
|
nullable: true
|
|
199
286
|
}
|
|
@@ -217,14 +304,36 @@ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretD
|
|
|
217
304
|
properties: {
|
|
218
305
|
type: 'array',
|
|
219
306
|
items: {
|
|
220
|
-
|
|
307
|
+
type: 'object',
|
|
308
|
+
properties: {
|
|
309
|
+
name: {
|
|
310
|
+
type: 'string',
|
|
311
|
+
nullable: true
|
|
312
|
+
},
|
|
313
|
+
value: {
|
|
314
|
+
type: 'string',
|
|
315
|
+
nullable: true
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
additionalProperties: false
|
|
221
319
|
},
|
|
222
320
|
nullable: true
|
|
223
321
|
},
|
|
224
322
|
secretProperties: {
|
|
225
323
|
type: 'array',
|
|
226
324
|
items: {
|
|
227
|
-
|
|
325
|
+
type: 'object',
|
|
326
|
+
properties: {
|
|
327
|
+
name: {
|
|
328
|
+
type: 'string',
|
|
329
|
+
nullable: true
|
|
330
|
+
},
|
|
331
|
+
value: {
|
|
332
|
+
type: 'string',
|
|
333
|
+
nullable: true
|
|
334
|
+
}
|
|
335
|
+
},
|
|
336
|
+
additionalProperties: false
|
|
228
337
|
},
|
|
229
338
|
nullable: true
|
|
230
339
|
}
|
|
@@ -245,14 +354,36 @@ export const $Volo_Abp_Account_ExternalProviders_ExternalProviderSettings = {
|
|
|
245
354
|
properties: {
|
|
246
355
|
type: 'array',
|
|
247
356
|
items: {
|
|
248
|
-
|
|
357
|
+
type: 'object',
|
|
358
|
+
properties: {
|
|
359
|
+
name: {
|
|
360
|
+
type: 'string',
|
|
361
|
+
nullable: true
|
|
362
|
+
},
|
|
363
|
+
value: {
|
|
364
|
+
type: 'string',
|
|
365
|
+
nullable: true
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
additionalProperties: false
|
|
249
369
|
},
|
|
250
370
|
nullable: true
|
|
251
371
|
},
|
|
252
372
|
secretProperties: {
|
|
253
373
|
type: 'array',
|
|
254
374
|
items: {
|
|
255
|
-
|
|
375
|
+
type: 'object',
|
|
376
|
+
properties: {
|
|
377
|
+
name: {
|
|
378
|
+
type: 'string',
|
|
379
|
+
nullable: true
|
|
380
|
+
},
|
|
381
|
+
value: {
|
|
382
|
+
type: 'string',
|
|
383
|
+
nullable: true
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
additionalProperties: false
|
|
256
387
|
},
|
|
257
388
|
nullable: true
|
|
258
389
|
}
|
|
@@ -412,7 +543,9 @@ export const $Volo_Abp_Account_ProfilePictureSourceDto = {
|
|
|
412
543
|
type: 'object',
|
|
413
544
|
properties: {
|
|
414
545
|
type: {
|
|
415
|
-
|
|
546
|
+
enum: [0, 1, 2],
|
|
547
|
+
type: 'integer',
|
|
548
|
+
format: 'int32'
|
|
416
549
|
},
|
|
417
550
|
source: {
|
|
418
551
|
type: 'string',
|
|
@@ -437,7 +570,9 @@ export const $Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLo
|
|
|
437
570
|
type: 'object',
|
|
438
571
|
properties: {
|
|
439
572
|
result: {
|
|
440
|
-
|
|
573
|
+
enum: [1, 2, 3, 4, 5, 6],
|
|
574
|
+
type: 'integer',
|
|
575
|
+
format: 'int32'
|
|
441
576
|
},
|
|
442
577
|
description: {
|
|
443
578
|
type: 'string',
|
|
@@ -680,14 +815,36 @@ export const $Volo_Abp_Account_UpdateExternalProviderDto = {
|
|
|
680
815
|
properties: {
|
|
681
816
|
type: 'array',
|
|
682
817
|
items: {
|
|
683
|
-
|
|
818
|
+
type: 'object',
|
|
819
|
+
properties: {
|
|
820
|
+
name: {
|
|
821
|
+
type: 'string',
|
|
822
|
+
nullable: true
|
|
823
|
+
},
|
|
824
|
+
value: {
|
|
825
|
+
type: 'string',
|
|
826
|
+
nullable: true
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
additionalProperties: false
|
|
684
830
|
},
|
|
685
831
|
nullable: true
|
|
686
832
|
},
|
|
687
833
|
secretProperties: {
|
|
688
834
|
type: 'array',
|
|
689
835
|
items: {
|
|
690
|
-
|
|
836
|
+
type: 'object',
|
|
837
|
+
properties: {
|
|
838
|
+
name: {
|
|
839
|
+
type: 'string',
|
|
840
|
+
nullable: true
|
|
841
|
+
},
|
|
842
|
+
value: {
|
|
843
|
+
type: 'string',
|
|
844
|
+
nullable: true
|
|
845
|
+
}
|
|
846
|
+
},
|
|
847
|
+
additionalProperties: false
|
|
691
848
|
},
|
|
692
849
|
nullable: true
|
|
693
850
|
}
|
|
@@ -889,7 +1046,30 @@ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_LinkUs
|
|
|
889
1046
|
items: {
|
|
890
1047
|
type: 'array',
|
|
891
1048
|
items: {
|
|
892
|
-
|
|
1049
|
+
type: 'object',
|
|
1050
|
+
properties: {
|
|
1051
|
+
targetUserId: {
|
|
1052
|
+
type: 'string',
|
|
1053
|
+
format: 'uuid'
|
|
1054
|
+
},
|
|
1055
|
+
targetUserName: {
|
|
1056
|
+
type: 'string',
|
|
1057
|
+
nullable: true
|
|
1058
|
+
},
|
|
1059
|
+
targetTenantId: {
|
|
1060
|
+
type: 'string',
|
|
1061
|
+
format: 'uuid',
|
|
1062
|
+
nullable: true
|
|
1063
|
+
},
|
|
1064
|
+
targetTenantName: {
|
|
1065
|
+
type: 'string',
|
|
1066
|
+
nullable: true
|
|
1067
|
+
},
|
|
1068
|
+
directlyLinked: {
|
|
1069
|
+
type: 'boolean'
|
|
1070
|
+
}
|
|
1071
|
+
},
|
|
1072
|
+
additionalProperties: false
|
|
893
1073
|
},
|
|
894
1074
|
nullable: true
|
|
895
1075
|
}
|
|
@@ -903,7 +1083,26 @@ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_UserDe
|
|
|
903
1083
|
items: {
|
|
904
1084
|
type: 'array',
|
|
905
1085
|
items: {
|
|
906
|
-
|
|
1086
|
+
type: 'object',
|
|
1087
|
+
properties: {
|
|
1088
|
+
id: {
|
|
1089
|
+
type: 'string',
|
|
1090
|
+
format: 'uuid'
|
|
1091
|
+
},
|
|
1092
|
+
userName: {
|
|
1093
|
+
type: 'string',
|
|
1094
|
+
nullable: true
|
|
1095
|
+
},
|
|
1096
|
+
startTime: {
|
|
1097
|
+
type: 'string',
|
|
1098
|
+
format: 'date-time'
|
|
1099
|
+
},
|
|
1100
|
+
endTime: {
|
|
1101
|
+
type: 'string',
|
|
1102
|
+
format: 'date-time'
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
additionalProperties: false
|
|
907
1106
|
},
|
|
908
1107
|
nullable: true
|
|
909
1108
|
}
|
|
@@ -917,7 +1116,18 @@ export const $Volo_Abp_Application_Dtos_ListResultDto_1__Volo_Abp_Account_UserLo
|
|
|
917
1116
|
items: {
|
|
918
1117
|
type: 'array',
|
|
919
1118
|
items: {
|
|
920
|
-
|
|
1119
|
+
type: 'object',
|
|
1120
|
+
properties: {
|
|
1121
|
+
id: {
|
|
1122
|
+
type: 'string',
|
|
1123
|
+
format: 'uuid'
|
|
1124
|
+
},
|
|
1125
|
+
userName: {
|
|
1126
|
+
type: 'string',
|
|
1127
|
+
nullable: true
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
additionalProperties: false
|
|
921
1131
|
},
|
|
922
1132
|
nullable: true
|
|
923
1133
|
}
|
|
@@ -931,7 +1141,71 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Abp_Identity_Iden
|
|
|
931
1141
|
items: {
|
|
932
1142
|
type: 'array',
|
|
933
1143
|
items: {
|
|
934
|
-
|
|
1144
|
+
type: 'object',
|
|
1145
|
+
properties: {
|
|
1146
|
+
id: {
|
|
1147
|
+
type: 'string',
|
|
1148
|
+
format: 'uuid'
|
|
1149
|
+
},
|
|
1150
|
+
tenantId: {
|
|
1151
|
+
type: 'string',
|
|
1152
|
+
format: 'uuid',
|
|
1153
|
+
nullable: true
|
|
1154
|
+
},
|
|
1155
|
+
applicationName: {
|
|
1156
|
+
type: 'string',
|
|
1157
|
+
nullable: true
|
|
1158
|
+
},
|
|
1159
|
+
identity: {
|
|
1160
|
+
type: 'string',
|
|
1161
|
+
nullable: true
|
|
1162
|
+
},
|
|
1163
|
+
action: {
|
|
1164
|
+
type: 'string',
|
|
1165
|
+
nullable: true
|
|
1166
|
+
},
|
|
1167
|
+
userId: {
|
|
1168
|
+
type: 'string',
|
|
1169
|
+
format: 'uuid',
|
|
1170
|
+
nullable: true
|
|
1171
|
+
},
|
|
1172
|
+
userName: {
|
|
1173
|
+
type: 'string',
|
|
1174
|
+
nullable: true
|
|
1175
|
+
},
|
|
1176
|
+
tenantName: {
|
|
1177
|
+
type: 'string',
|
|
1178
|
+
nullable: true
|
|
1179
|
+
},
|
|
1180
|
+
clientId: {
|
|
1181
|
+
type: 'string',
|
|
1182
|
+
nullable: true
|
|
1183
|
+
},
|
|
1184
|
+
correlationId: {
|
|
1185
|
+
type: 'string',
|
|
1186
|
+
nullable: true
|
|
1187
|
+
},
|
|
1188
|
+
clientIpAddress: {
|
|
1189
|
+
type: 'string',
|
|
1190
|
+
nullable: true
|
|
1191
|
+
},
|
|
1192
|
+
browserInfo: {
|
|
1193
|
+
type: 'string',
|
|
1194
|
+
nullable: true
|
|
1195
|
+
},
|
|
1196
|
+
creationTime: {
|
|
1197
|
+
type: 'string',
|
|
1198
|
+
format: 'date-time'
|
|
1199
|
+
},
|
|
1200
|
+
extraProperties: {
|
|
1201
|
+
type: 'object',
|
|
1202
|
+
additionalProperties: {
|
|
1203
|
+
nullable: true
|
|
1204
|
+
},
|
|
1205
|
+
nullable: true
|
|
1206
|
+
}
|
|
1207
|
+
},
|
|
1208
|
+
additionalProperties: false
|
|
935
1209
|
},
|
|
936
1210
|
nullable: true
|
|
937
1211
|
},
|
|
@@ -961,37 +1235,604 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfi
|
|
|
961
1235
|
type: 'object',
|
|
962
1236
|
properties: {
|
|
963
1237
|
localization: {
|
|
964
|
-
|
|
1238
|
+
type: 'object',
|
|
1239
|
+
properties: {
|
|
1240
|
+
values: {
|
|
1241
|
+
type: 'object',
|
|
1242
|
+
additionalProperties: {
|
|
1243
|
+
type: 'object',
|
|
1244
|
+
additionalProperties: {
|
|
1245
|
+
type: 'string'
|
|
1246
|
+
}
|
|
1247
|
+
},
|
|
1248
|
+
nullable: true
|
|
1249
|
+
},
|
|
1250
|
+
resources: {
|
|
1251
|
+
type: 'object',
|
|
1252
|
+
additionalProperties: {
|
|
1253
|
+
type: 'object',
|
|
1254
|
+
properties: {
|
|
1255
|
+
texts: {
|
|
1256
|
+
type: 'object',
|
|
1257
|
+
additionalProperties: {
|
|
1258
|
+
type: 'string'
|
|
1259
|
+
},
|
|
1260
|
+
nullable: true
|
|
1261
|
+
},
|
|
1262
|
+
baseResources: {
|
|
1263
|
+
type: 'array',
|
|
1264
|
+
items: {
|
|
1265
|
+
type: 'string'
|
|
1266
|
+
},
|
|
1267
|
+
nullable: true
|
|
1268
|
+
}
|
|
1269
|
+
},
|
|
1270
|
+
additionalProperties: false
|
|
1271
|
+
},
|
|
1272
|
+
nullable: true
|
|
1273
|
+
},
|
|
1274
|
+
languages: {
|
|
1275
|
+
type: 'array',
|
|
1276
|
+
items: {
|
|
1277
|
+
type: 'object',
|
|
1278
|
+
properties: {
|
|
1279
|
+
cultureName: {
|
|
1280
|
+
type: 'string',
|
|
1281
|
+
nullable: true
|
|
1282
|
+
},
|
|
1283
|
+
uiCultureName: {
|
|
1284
|
+
type: 'string',
|
|
1285
|
+
nullable: true
|
|
1286
|
+
},
|
|
1287
|
+
displayName: {
|
|
1288
|
+
type: 'string',
|
|
1289
|
+
nullable: true
|
|
1290
|
+
},
|
|
1291
|
+
twoLetterISOLanguageName: {
|
|
1292
|
+
type: 'string',
|
|
1293
|
+
nullable: true,
|
|
1294
|
+
readOnly: true
|
|
1295
|
+
},
|
|
1296
|
+
flagIcon: {
|
|
1297
|
+
type: 'string',
|
|
1298
|
+
nullable: true
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
additionalProperties: false
|
|
1302
|
+
},
|
|
1303
|
+
nullable: true
|
|
1304
|
+
},
|
|
1305
|
+
currentCulture: {
|
|
1306
|
+
type: 'object',
|
|
1307
|
+
properties: {
|
|
1308
|
+
displayName: {
|
|
1309
|
+
type: 'string',
|
|
1310
|
+
nullable: true
|
|
1311
|
+
},
|
|
1312
|
+
englishName: {
|
|
1313
|
+
type: 'string',
|
|
1314
|
+
nullable: true
|
|
1315
|
+
},
|
|
1316
|
+
threeLetterIsoLanguageName: {
|
|
1317
|
+
type: 'string',
|
|
1318
|
+
nullable: true
|
|
1319
|
+
},
|
|
1320
|
+
twoLetterIsoLanguageName: {
|
|
1321
|
+
type: 'string',
|
|
1322
|
+
nullable: true
|
|
1323
|
+
},
|
|
1324
|
+
isRightToLeft: {
|
|
1325
|
+
type: 'boolean'
|
|
1326
|
+
},
|
|
1327
|
+
cultureName: {
|
|
1328
|
+
type: 'string',
|
|
1329
|
+
nullable: true
|
|
1330
|
+
},
|
|
1331
|
+
name: {
|
|
1332
|
+
type: 'string',
|
|
1333
|
+
nullable: true
|
|
1334
|
+
},
|
|
1335
|
+
nativeName: {
|
|
1336
|
+
type: 'string',
|
|
1337
|
+
nullable: true
|
|
1338
|
+
},
|
|
1339
|
+
dateTimeFormat: {
|
|
1340
|
+
type: 'object',
|
|
1341
|
+
properties: {
|
|
1342
|
+
calendarAlgorithmType: {
|
|
1343
|
+
type: 'string',
|
|
1344
|
+
nullable: true
|
|
1345
|
+
},
|
|
1346
|
+
dateTimeFormatLong: {
|
|
1347
|
+
type: 'string',
|
|
1348
|
+
nullable: true
|
|
1349
|
+
},
|
|
1350
|
+
shortDatePattern: {
|
|
1351
|
+
type: 'string',
|
|
1352
|
+
nullable: true
|
|
1353
|
+
},
|
|
1354
|
+
fullDateTimePattern: {
|
|
1355
|
+
type: 'string',
|
|
1356
|
+
nullable: true
|
|
1357
|
+
},
|
|
1358
|
+
dateSeparator: {
|
|
1359
|
+
type: 'string',
|
|
1360
|
+
nullable: true
|
|
1361
|
+
},
|
|
1362
|
+
shortTimePattern: {
|
|
1363
|
+
type: 'string',
|
|
1364
|
+
nullable: true
|
|
1365
|
+
},
|
|
1366
|
+
longTimePattern: {
|
|
1367
|
+
type: 'string',
|
|
1368
|
+
nullable: true
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
additionalProperties: false
|
|
1372
|
+
}
|
|
1373
|
+
},
|
|
1374
|
+
additionalProperties: false
|
|
1375
|
+
},
|
|
1376
|
+
defaultResourceName: {
|
|
1377
|
+
type: 'string',
|
|
1378
|
+
nullable: true
|
|
1379
|
+
},
|
|
1380
|
+
languagesMap: {
|
|
1381
|
+
type: 'object',
|
|
1382
|
+
additionalProperties: {
|
|
1383
|
+
type: 'array',
|
|
1384
|
+
items: {
|
|
1385
|
+
type: 'object',
|
|
1386
|
+
properties: {
|
|
1387
|
+
name: {
|
|
1388
|
+
type: 'string',
|
|
1389
|
+
nullable: true
|
|
1390
|
+
},
|
|
1391
|
+
value: {
|
|
1392
|
+
type: 'string',
|
|
1393
|
+
nullable: true
|
|
1394
|
+
}
|
|
1395
|
+
},
|
|
1396
|
+
additionalProperties: false
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
nullable: true
|
|
1400
|
+
},
|
|
1401
|
+
languageFilesMap: {
|
|
1402
|
+
type: 'object',
|
|
1403
|
+
additionalProperties: {
|
|
1404
|
+
type: 'array',
|
|
1405
|
+
items: {
|
|
1406
|
+
type: 'object',
|
|
1407
|
+
properties: {
|
|
1408
|
+
name: {
|
|
1409
|
+
type: 'string',
|
|
1410
|
+
nullable: true
|
|
1411
|
+
},
|
|
1412
|
+
value: {
|
|
1413
|
+
type: 'string',
|
|
1414
|
+
nullable: true
|
|
1415
|
+
}
|
|
1416
|
+
},
|
|
1417
|
+
additionalProperties: false
|
|
1418
|
+
}
|
|
1419
|
+
},
|
|
1420
|
+
nullable: true
|
|
1421
|
+
}
|
|
1422
|
+
},
|
|
1423
|
+
additionalProperties: false
|
|
965
1424
|
},
|
|
966
1425
|
auth: {
|
|
967
|
-
|
|
1426
|
+
type: 'object',
|
|
1427
|
+
properties: {
|
|
1428
|
+
grantedPolicies: {
|
|
1429
|
+
type: 'object',
|
|
1430
|
+
additionalProperties: {
|
|
1431
|
+
type: 'boolean'
|
|
1432
|
+
},
|
|
1433
|
+
nullable: true
|
|
1434
|
+
}
|
|
1435
|
+
},
|
|
1436
|
+
additionalProperties: false
|
|
968
1437
|
},
|
|
969
1438
|
setting: {
|
|
970
|
-
|
|
1439
|
+
type: 'object',
|
|
1440
|
+
properties: {
|
|
1441
|
+
values: {
|
|
1442
|
+
type: 'object',
|
|
1443
|
+
additionalProperties: {
|
|
1444
|
+
type: 'string',
|
|
1445
|
+
nullable: true
|
|
1446
|
+
},
|
|
1447
|
+
nullable: true
|
|
1448
|
+
}
|
|
1449
|
+
},
|
|
1450
|
+
additionalProperties: false
|
|
971
1451
|
},
|
|
972
1452
|
currentUser: {
|
|
973
|
-
|
|
1453
|
+
type: 'object',
|
|
1454
|
+
properties: {
|
|
1455
|
+
isAuthenticated: {
|
|
1456
|
+
type: 'boolean'
|
|
1457
|
+
},
|
|
1458
|
+
id: {
|
|
1459
|
+
type: 'string',
|
|
1460
|
+
format: 'uuid',
|
|
1461
|
+
nullable: true
|
|
1462
|
+
},
|
|
1463
|
+
tenantId: {
|
|
1464
|
+
type: 'string',
|
|
1465
|
+
format: 'uuid',
|
|
1466
|
+
nullable: true
|
|
1467
|
+
},
|
|
1468
|
+
impersonatorUserId: {
|
|
1469
|
+
type: 'string',
|
|
1470
|
+
format: 'uuid',
|
|
1471
|
+
nullable: true
|
|
1472
|
+
},
|
|
1473
|
+
impersonatorTenantId: {
|
|
1474
|
+
type: 'string',
|
|
1475
|
+
format: 'uuid',
|
|
1476
|
+
nullable: true
|
|
1477
|
+
},
|
|
1478
|
+
impersonatorUserName: {
|
|
1479
|
+
type: 'string',
|
|
1480
|
+
nullable: true
|
|
1481
|
+
},
|
|
1482
|
+
impersonatorTenantName: {
|
|
1483
|
+
type: 'string',
|
|
1484
|
+
nullable: true
|
|
1485
|
+
},
|
|
1486
|
+
userName: {
|
|
1487
|
+
type: 'string',
|
|
1488
|
+
nullable: true
|
|
1489
|
+
},
|
|
1490
|
+
name: {
|
|
1491
|
+
type: 'string',
|
|
1492
|
+
nullable: true
|
|
1493
|
+
},
|
|
1494
|
+
surName: {
|
|
1495
|
+
type: 'string',
|
|
1496
|
+
nullable: true
|
|
1497
|
+
},
|
|
1498
|
+
email: {
|
|
1499
|
+
type: 'string',
|
|
1500
|
+
nullable: true
|
|
1501
|
+
},
|
|
1502
|
+
emailVerified: {
|
|
1503
|
+
type: 'boolean'
|
|
1504
|
+
},
|
|
1505
|
+
phoneNumber: {
|
|
1506
|
+
type: 'string',
|
|
1507
|
+
nullable: true
|
|
1508
|
+
},
|
|
1509
|
+
phoneNumberVerified: {
|
|
1510
|
+
type: 'boolean'
|
|
1511
|
+
},
|
|
1512
|
+
roles: {
|
|
1513
|
+
type: 'array',
|
|
1514
|
+
items: {
|
|
1515
|
+
type: 'string'
|
|
1516
|
+
},
|
|
1517
|
+
nullable: true
|
|
1518
|
+
}
|
|
1519
|
+
},
|
|
1520
|
+
additionalProperties: false
|
|
974
1521
|
},
|
|
975
1522
|
features: {
|
|
976
|
-
|
|
1523
|
+
type: 'object',
|
|
1524
|
+
properties: {
|
|
1525
|
+
values: {
|
|
1526
|
+
type: 'object',
|
|
1527
|
+
additionalProperties: {
|
|
1528
|
+
type: 'string',
|
|
1529
|
+
nullable: true
|
|
1530
|
+
},
|
|
1531
|
+
nullable: true
|
|
1532
|
+
}
|
|
1533
|
+
},
|
|
1534
|
+
additionalProperties: false
|
|
977
1535
|
},
|
|
978
1536
|
globalFeatures: {
|
|
979
|
-
|
|
1537
|
+
type: 'object',
|
|
1538
|
+
properties: {
|
|
1539
|
+
enabledFeatures: {
|
|
1540
|
+
uniqueItems: true,
|
|
1541
|
+
type: 'array',
|
|
1542
|
+
items: {
|
|
1543
|
+
type: 'string'
|
|
1544
|
+
},
|
|
1545
|
+
nullable: true
|
|
1546
|
+
}
|
|
1547
|
+
},
|
|
1548
|
+
additionalProperties: false
|
|
980
1549
|
},
|
|
981
1550
|
multiTenancy: {
|
|
982
|
-
|
|
1551
|
+
type: 'object',
|
|
1552
|
+
properties: {
|
|
1553
|
+
isEnabled: {
|
|
1554
|
+
type: 'boolean'
|
|
1555
|
+
}
|
|
1556
|
+
},
|
|
1557
|
+
additionalProperties: false
|
|
983
1558
|
},
|
|
984
1559
|
currentTenant: {
|
|
985
|
-
|
|
1560
|
+
type: 'object',
|
|
1561
|
+
properties: {
|
|
1562
|
+
id: {
|
|
1563
|
+
type: 'string',
|
|
1564
|
+
format: 'uuid',
|
|
1565
|
+
nullable: true
|
|
1566
|
+
},
|
|
1567
|
+
name: {
|
|
1568
|
+
type: 'string',
|
|
1569
|
+
nullable: true
|
|
1570
|
+
},
|
|
1571
|
+
isAvailable: {
|
|
1572
|
+
type: 'boolean'
|
|
1573
|
+
}
|
|
1574
|
+
},
|
|
1575
|
+
additionalProperties: false
|
|
986
1576
|
},
|
|
987
1577
|
timing: {
|
|
988
|
-
|
|
1578
|
+
type: 'object',
|
|
1579
|
+
properties: {
|
|
1580
|
+
timeZone: {
|
|
1581
|
+
type: 'object',
|
|
1582
|
+
properties: {
|
|
1583
|
+
iana: {
|
|
1584
|
+
type: 'object',
|
|
1585
|
+
properties: {
|
|
1586
|
+
timeZoneName: {
|
|
1587
|
+
type: 'string',
|
|
1588
|
+
nullable: true
|
|
1589
|
+
}
|
|
1590
|
+
},
|
|
1591
|
+
additionalProperties: false
|
|
1592
|
+
},
|
|
1593
|
+
windows: {
|
|
1594
|
+
type: 'object',
|
|
1595
|
+
properties: {
|
|
1596
|
+
timeZoneId: {
|
|
1597
|
+
type: 'string',
|
|
1598
|
+
nullable: true
|
|
1599
|
+
}
|
|
1600
|
+
},
|
|
1601
|
+
additionalProperties: false
|
|
1602
|
+
}
|
|
1603
|
+
},
|
|
1604
|
+
additionalProperties: false
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
additionalProperties: false
|
|
989
1608
|
},
|
|
990
1609
|
clock: {
|
|
991
|
-
|
|
1610
|
+
type: 'object',
|
|
1611
|
+
properties: {
|
|
1612
|
+
kind: {
|
|
1613
|
+
type: 'string',
|
|
1614
|
+
nullable: true
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
additionalProperties: false
|
|
992
1618
|
},
|
|
993
1619
|
objectExtensions: {
|
|
994
|
-
|
|
1620
|
+
type: 'object',
|
|
1621
|
+
properties: {
|
|
1622
|
+
modules: {
|
|
1623
|
+
type: 'object',
|
|
1624
|
+
additionalProperties: {
|
|
1625
|
+
type: 'object',
|
|
1626
|
+
properties: {
|
|
1627
|
+
entities: {
|
|
1628
|
+
type: 'object',
|
|
1629
|
+
additionalProperties: {
|
|
1630
|
+
type: 'object',
|
|
1631
|
+
properties: {
|
|
1632
|
+
properties: {
|
|
1633
|
+
type: 'object',
|
|
1634
|
+
additionalProperties: {
|
|
1635
|
+
type: 'object',
|
|
1636
|
+
properties: {
|
|
1637
|
+
type: {
|
|
1638
|
+
type: 'string',
|
|
1639
|
+
nullable: true
|
|
1640
|
+
},
|
|
1641
|
+
typeSimple: {
|
|
1642
|
+
type: 'string',
|
|
1643
|
+
nullable: true
|
|
1644
|
+
},
|
|
1645
|
+
displayName: {
|
|
1646
|
+
type: 'object',
|
|
1647
|
+
properties: {
|
|
1648
|
+
name: {
|
|
1649
|
+
type: 'string',
|
|
1650
|
+
nullable: true
|
|
1651
|
+
},
|
|
1652
|
+
resource: {
|
|
1653
|
+
type: 'string',
|
|
1654
|
+
nullable: true
|
|
1655
|
+
}
|
|
1656
|
+
},
|
|
1657
|
+
additionalProperties: false
|
|
1658
|
+
},
|
|
1659
|
+
api: {
|
|
1660
|
+
type: 'object',
|
|
1661
|
+
properties: {
|
|
1662
|
+
onGet: {
|
|
1663
|
+
type: 'object',
|
|
1664
|
+
properties: {
|
|
1665
|
+
isAvailable: {
|
|
1666
|
+
type: 'boolean'
|
|
1667
|
+
}
|
|
1668
|
+
},
|
|
1669
|
+
additionalProperties: false
|
|
1670
|
+
},
|
|
1671
|
+
onCreate: {
|
|
1672
|
+
type: 'object',
|
|
1673
|
+
properties: {
|
|
1674
|
+
isAvailable: {
|
|
1675
|
+
type: 'boolean'
|
|
1676
|
+
}
|
|
1677
|
+
},
|
|
1678
|
+
additionalProperties: false
|
|
1679
|
+
},
|
|
1680
|
+
onUpdate: {
|
|
1681
|
+
type: 'object',
|
|
1682
|
+
properties: {
|
|
1683
|
+
isAvailable: {
|
|
1684
|
+
type: 'boolean'
|
|
1685
|
+
}
|
|
1686
|
+
},
|
|
1687
|
+
additionalProperties: false
|
|
1688
|
+
}
|
|
1689
|
+
},
|
|
1690
|
+
additionalProperties: false
|
|
1691
|
+
},
|
|
1692
|
+
ui: {
|
|
1693
|
+
type: 'object',
|
|
1694
|
+
properties: {
|
|
1695
|
+
onTable: {
|
|
1696
|
+
type: 'object',
|
|
1697
|
+
properties: {
|
|
1698
|
+
isVisible: {
|
|
1699
|
+
type: 'boolean'
|
|
1700
|
+
}
|
|
1701
|
+
},
|
|
1702
|
+
additionalProperties: false
|
|
1703
|
+
},
|
|
1704
|
+
onCreateForm: {
|
|
1705
|
+
type: 'object',
|
|
1706
|
+
properties: {
|
|
1707
|
+
isVisible: {
|
|
1708
|
+
type: 'boolean'
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
additionalProperties: false
|
|
1712
|
+
},
|
|
1713
|
+
onEditForm: {
|
|
1714
|
+
type: 'object',
|
|
1715
|
+
properties: {
|
|
1716
|
+
isVisible: {
|
|
1717
|
+
type: 'boolean'
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
additionalProperties: false
|
|
1721
|
+
},
|
|
1722
|
+
lookup: {
|
|
1723
|
+
type: 'object',
|
|
1724
|
+
properties: {
|
|
1725
|
+
url: {
|
|
1726
|
+
type: 'string',
|
|
1727
|
+
nullable: true
|
|
1728
|
+
},
|
|
1729
|
+
resultListPropertyName: {
|
|
1730
|
+
type: 'string',
|
|
1731
|
+
nullable: true
|
|
1732
|
+
},
|
|
1733
|
+
displayPropertyName: {
|
|
1734
|
+
type: 'string',
|
|
1735
|
+
nullable: true
|
|
1736
|
+
},
|
|
1737
|
+
valuePropertyName: {
|
|
1738
|
+
type: 'string',
|
|
1739
|
+
nullable: true
|
|
1740
|
+
},
|
|
1741
|
+
filterParamName: {
|
|
1742
|
+
type: 'string',
|
|
1743
|
+
nullable: true
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
additionalProperties: false
|
|
1747
|
+
}
|
|
1748
|
+
},
|
|
1749
|
+
additionalProperties: false
|
|
1750
|
+
},
|
|
1751
|
+
attributes: {
|
|
1752
|
+
type: 'array',
|
|
1753
|
+
items: {
|
|
1754
|
+
type: 'object',
|
|
1755
|
+
properties: {
|
|
1756
|
+
typeSimple: {
|
|
1757
|
+
type: 'string',
|
|
1758
|
+
nullable: true
|
|
1759
|
+
},
|
|
1760
|
+
config: {
|
|
1761
|
+
type: 'object',
|
|
1762
|
+
additionalProperties: {},
|
|
1763
|
+
nullable: true
|
|
1764
|
+
}
|
|
1765
|
+
},
|
|
1766
|
+
additionalProperties: false
|
|
1767
|
+
},
|
|
1768
|
+
nullable: true
|
|
1769
|
+
},
|
|
1770
|
+
configuration: {
|
|
1771
|
+
type: 'object',
|
|
1772
|
+
additionalProperties: {},
|
|
1773
|
+
nullable: true
|
|
1774
|
+
},
|
|
1775
|
+
defaultValue: {
|
|
1776
|
+
nullable: true
|
|
1777
|
+
}
|
|
1778
|
+
},
|
|
1779
|
+
additionalProperties: false
|
|
1780
|
+
},
|
|
1781
|
+
nullable: true
|
|
1782
|
+
},
|
|
1783
|
+
configuration: {
|
|
1784
|
+
type: 'object',
|
|
1785
|
+
additionalProperties: {},
|
|
1786
|
+
nullable: true
|
|
1787
|
+
}
|
|
1788
|
+
},
|
|
1789
|
+
additionalProperties: false
|
|
1790
|
+
},
|
|
1791
|
+
nullable: true
|
|
1792
|
+
},
|
|
1793
|
+
configuration: {
|
|
1794
|
+
type: 'object',
|
|
1795
|
+
additionalProperties: {},
|
|
1796
|
+
nullable: true
|
|
1797
|
+
}
|
|
1798
|
+
},
|
|
1799
|
+
additionalProperties: false
|
|
1800
|
+
},
|
|
1801
|
+
nullable: true
|
|
1802
|
+
},
|
|
1803
|
+
enums: {
|
|
1804
|
+
type: 'object',
|
|
1805
|
+
additionalProperties: {
|
|
1806
|
+
type: 'object',
|
|
1807
|
+
properties: {
|
|
1808
|
+
fields: {
|
|
1809
|
+
type: 'array',
|
|
1810
|
+
items: {
|
|
1811
|
+
type: 'object',
|
|
1812
|
+
properties: {
|
|
1813
|
+
name: {
|
|
1814
|
+
type: 'string',
|
|
1815
|
+
nullable: true
|
|
1816
|
+
},
|
|
1817
|
+
value: {
|
|
1818
|
+
nullable: true
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
additionalProperties: false
|
|
1822
|
+
},
|
|
1823
|
+
nullable: true
|
|
1824
|
+
},
|
|
1825
|
+
localizationResource: {
|
|
1826
|
+
type: 'string',
|
|
1827
|
+
nullable: true
|
|
1828
|
+
}
|
|
1829
|
+
},
|
|
1830
|
+
additionalProperties: false
|
|
1831
|
+
},
|
|
1832
|
+
nullable: true
|
|
1833
|
+
}
|
|
1834
|
+
},
|
|
1835
|
+
additionalProperties: false
|
|
995
1836
|
},
|
|
996
1837
|
extraProperties: {
|
|
997
1838
|
type: 'object',
|
|
@@ -1048,19 +1889,128 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
1048
1889
|
resources: {
|
|
1049
1890
|
type: 'object',
|
|
1050
1891
|
additionalProperties: {
|
|
1051
|
-
|
|
1892
|
+
type: 'object',
|
|
1893
|
+
properties: {
|
|
1894
|
+
texts: {
|
|
1895
|
+
type: 'object',
|
|
1896
|
+
additionalProperties: {
|
|
1897
|
+
type: 'string'
|
|
1898
|
+
},
|
|
1899
|
+
nullable: true
|
|
1900
|
+
},
|
|
1901
|
+
baseResources: {
|
|
1902
|
+
type: 'array',
|
|
1903
|
+
items: {
|
|
1904
|
+
type: 'string'
|
|
1905
|
+
},
|
|
1906
|
+
nullable: true
|
|
1907
|
+
}
|
|
1908
|
+
},
|
|
1909
|
+
additionalProperties: false
|
|
1052
1910
|
},
|
|
1053
1911
|
nullable: true
|
|
1054
1912
|
},
|
|
1055
1913
|
languages: {
|
|
1056
1914
|
type: 'array',
|
|
1057
1915
|
items: {
|
|
1058
|
-
|
|
1916
|
+
type: 'object',
|
|
1917
|
+
properties: {
|
|
1918
|
+
cultureName: {
|
|
1919
|
+
type: 'string',
|
|
1920
|
+
nullable: true
|
|
1921
|
+
},
|
|
1922
|
+
uiCultureName: {
|
|
1923
|
+
type: 'string',
|
|
1924
|
+
nullable: true
|
|
1925
|
+
},
|
|
1926
|
+
displayName: {
|
|
1927
|
+
type: 'string',
|
|
1928
|
+
nullable: true
|
|
1929
|
+
},
|
|
1930
|
+
twoLetterISOLanguageName: {
|
|
1931
|
+
type: 'string',
|
|
1932
|
+
nullable: true,
|
|
1933
|
+
readOnly: true
|
|
1934
|
+
},
|
|
1935
|
+
flagIcon: {
|
|
1936
|
+
type: 'string',
|
|
1937
|
+
nullable: true
|
|
1938
|
+
}
|
|
1939
|
+
},
|
|
1940
|
+
additionalProperties: false
|
|
1059
1941
|
},
|
|
1060
1942
|
nullable: true
|
|
1061
1943
|
},
|
|
1062
1944
|
currentCulture: {
|
|
1063
|
-
|
|
1945
|
+
type: 'object',
|
|
1946
|
+
properties: {
|
|
1947
|
+
displayName: {
|
|
1948
|
+
type: 'string',
|
|
1949
|
+
nullable: true
|
|
1950
|
+
},
|
|
1951
|
+
englishName: {
|
|
1952
|
+
type: 'string',
|
|
1953
|
+
nullable: true
|
|
1954
|
+
},
|
|
1955
|
+
threeLetterIsoLanguageName: {
|
|
1956
|
+
type: 'string',
|
|
1957
|
+
nullable: true
|
|
1958
|
+
},
|
|
1959
|
+
twoLetterIsoLanguageName: {
|
|
1960
|
+
type: 'string',
|
|
1961
|
+
nullable: true
|
|
1962
|
+
},
|
|
1963
|
+
isRightToLeft: {
|
|
1964
|
+
type: 'boolean'
|
|
1965
|
+
},
|
|
1966
|
+
cultureName: {
|
|
1967
|
+
type: 'string',
|
|
1968
|
+
nullable: true
|
|
1969
|
+
},
|
|
1970
|
+
name: {
|
|
1971
|
+
type: 'string',
|
|
1972
|
+
nullable: true
|
|
1973
|
+
},
|
|
1974
|
+
nativeName: {
|
|
1975
|
+
type: 'string',
|
|
1976
|
+
nullable: true
|
|
1977
|
+
},
|
|
1978
|
+
dateTimeFormat: {
|
|
1979
|
+
type: 'object',
|
|
1980
|
+
properties: {
|
|
1981
|
+
calendarAlgorithmType: {
|
|
1982
|
+
type: 'string',
|
|
1983
|
+
nullable: true
|
|
1984
|
+
},
|
|
1985
|
+
dateTimeFormatLong: {
|
|
1986
|
+
type: 'string',
|
|
1987
|
+
nullable: true
|
|
1988
|
+
},
|
|
1989
|
+
shortDatePattern: {
|
|
1990
|
+
type: 'string',
|
|
1991
|
+
nullable: true
|
|
1992
|
+
},
|
|
1993
|
+
fullDateTimePattern: {
|
|
1994
|
+
type: 'string',
|
|
1995
|
+
nullable: true
|
|
1996
|
+
},
|
|
1997
|
+
dateSeparator: {
|
|
1998
|
+
type: 'string',
|
|
1999
|
+
nullable: true
|
|
2000
|
+
},
|
|
2001
|
+
shortTimePattern: {
|
|
2002
|
+
type: 'string',
|
|
2003
|
+
nullable: true
|
|
2004
|
+
},
|
|
2005
|
+
longTimePattern: {
|
|
2006
|
+
type: 'string',
|
|
2007
|
+
nullable: true
|
|
2008
|
+
}
|
|
2009
|
+
},
|
|
2010
|
+
additionalProperties: false
|
|
2011
|
+
}
|
|
2012
|
+
},
|
|
2013
|
+
additionalProperties: false
|
|
1064
2014
|
},
|
|
1065
2015
|
defaultResourceName: {
|
|
1066
2016
|
type: 'string',
|
|
@@ -1071,7 +2021,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
1071
2021
|
additionalProperties: {
|
|
1072
2022
|
type: 'array',
|
|
1073
2023
|
items: {
|
|
1074
|
-
|
|
2024
|
+
type: 'object',
|
|
2025
|
+
properties: {
|
|
2026
|
+
name: {
|
|
2027
|
+
type: 'string',
|
|
2028
|
+
nullable: true
|
|
2029
|
+
},
|
|
2030
|
+
value: {
|
|
2031
|
+
type: 'string',
|
|
2032
|
+
nullable: true
|
|
2033
|
+
}
|
|
2034
|
+
},
|
|
2035
|
+
additionalProperties: false
|
|
1075
2036
|
}
|
|
1076
2037
|
},
|
|
1077
2038
|
nullable: true
|
|
@@ -1081,7 +2042,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
1081
2042
|
additionalProperties: {
|
|
1082
2043
|
type: 'array',
|
|
1083
2044
|
items: {
|
|
1084
|
-
|
|
2045
|
+
type: 'object',
|
|
2046
|
+
properties: {
|
|
2047
|
+
name: {
|
|
2048
|
+
type: 'string',
|
|
2049
|
+
nullable: true
|
|
2050
|
+
},
|
|
2051
|
+
value: {
|
|
2052
|
+
type: 'string',
|
|
2053
|
+
nullable: true
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
additionalProperties: false
|
|
1085
2057
|
}
|
|
1086
2058
|
},
|
|
1087
2059
|
nullable: true
|
|
@@ -1096,7 +2068,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
1096
2068
|
resources: {
|
|
1097
2069
|
type: 'object',
|
|
1098
2070
|
additionalProperties: {
|
|
1099
|
-
|
|
2071
|
+
type: 'object',
|
|
2072
|
+
properties: {
|
|
2073
|
+
texts: {
|
|
2074
|
+
type: 'object',
|
|
2075
|
+
additionalProperties: {
|
|
2076
|
+
type: 'string'
|
|
2077
|
+
},
|
|
2078
|
+
nullable: true
|
|
2079
|
+
},
|
|
2080
|
+
baseResources: {
|
|
2081
|
+
type: 'array',
|
|
2082
|
+
items: {
|
|
2083
|
+
type: 'string'
|
|
2084
|
+
},
|
|
2085
|
+
nullable: true
|
|
2086
|
+
}
|
|
2087
|
+
},
|
|
2088
|
+
additionalProperties: false
|
|
1100
2089
|
},
|
|
1101
2090
|
nullable: true
|
|
1102
2091
|
}
|
|
@@ -1186,7 +2175,38 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDt
|
|
|
1186
2175
|
nullable: true
|
|
1187
2176
|
},
|
|
1188
2177
|
dateTimeFormat: {
|
|
1189
|
-
|
|
2178
|
+
type: 'object',
|
|
2179
|
+
properties: {
|
|
2180
|
+
calendarAlgorithmType: {
|
|
2181
|
+
type: 'string',
|
|
2182
|
+
nullable: true
|
|
2183
|
+
},
|
|
2184
|
+
dateTimeFormatLong: {
|
|
2185
|
+
type: 'string',
|
|
2186
|
+
nullable: true
|
|
2187
|
+
},
|
|
2188
|
+
shortDatePattern: {
|
|
2189
|
+
type: 'string',
|
|
2190
|
+
nullable: true
|
|
2191
|
+
},
|
|
2192
|
+
fullDateTimePattern: {
|
|
2193
|
+
type: 'string',
|
|
2194
|
+
nullable: true
|
|
2195
|
+
},
|
|
2196
|
+
dateSeparator: {
|
|
2197
|
+
type: 'string',
|
|
2198
|
+
nullable: true
|
|
2199
|
+
},
|
|
2200
|
+
shortTimePattern: {
|
|
2201
|
+
type: 'string',
|
|
2202
|
+
nullable: true
|
|
2203
|
+
},
|
|
2204
|
+
longTimePattern: {
|
|
2205
|
+
type: 'string',
|
|
2206
|
+
nullable: true
|
|
2207
|
+
}
|
|
2208
|
+
},
|
|
2209
|
+
additionalProperties: false
|
|
1190
2210
|
}
|
|
1191
2211
|
},
|
|
1192
2212
|
additionalProperties: false
|
|
@@ -1315,7 +2335,151 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1315
2335
|
properties: {
|
|
1316
2336
|
type: 'object',
|
|
1317
2337
|
additionalProperties: {
|
|
1318
|
-
|
|
2338
|
+
type: 'object',
|
|
2339
|
+
properties: {
|
|
2340
|
+
type: {
|
|
2341
|
+
type: 'string',
|
|
2342
|
+
nullable: true
|
|
2343
|
+
},
|
|
2344
|
+
typeSimple: {
|
|
2345
|
+
type: 'string',
|
|
2346
|
+
nullable: true
|
|
2347
|
+
},
|
|
2348
|
+
displayName: {
|
|
2349
|
+
type: 'object',
|
|
2350
|
+
properties: {
|
|
2351
|
+
name: {
|
|
2352
|
+
type: 'string',
|
|
2353
|
+
nullable: true
|
|
2354
|
+
},
|
|
2355
|
+
resource: {
|
|
2356
|
+
type: 'string',
|
|
2357
|
+
nullable: true
|
|
2358
|
+
}
|
|
2359
|
+
},
|
|
2360
|
+
additionalProperties: false
|
|
2361
|
+
},
|
|
2362
|
+
api: {
|
|
2363
|
+
type: 'object',
|
|
2364
|
+
properties: {
|
|
2365
|
+
onGet: {
|
|
2366
|
+
type: 'object',
|
|
2367
|
+
properties: {
|
|
2368
|
+
isAvailable: {
|
|
2369
|
+
type: 'boolean'
|
|
2370
|
+
}
|
|
2371
|
+
},
|
|
2372
|
+
additionalProperties: false
|
|
2373
|
+
},
|
|
2374
|
+
onCreate: {
|
|
2375
|
+
type: 'object',
|
|
2376
|
+
properties: {
|
|
2377
|
+
isAvailable: {
|
|
2378
|
+
type: 'boolean'
|
|
2379
|
+
}
|
|
2380
|
+
},
|
|
2381
|
+
additionalProperties: false
|
|
2382
|
+
},
|
|
2383
|
+
onUpdate: {
|
|
2384
|
+
type: 'object',
|
|
2385
|
+
properties: {
|
|
2386
|
+
isAvailable: {
|
|
2387
|
+
type: 'boolean'
|
|
2388
|
+
}
|
|
2389
|
+
},
|
|
2390
|
+
additionalProperties: false
|
|
2391
|
+
}
|
|
2392
|
+
},
|
|
2393
|
+
additionalProperties: false
|
|
2394
|
+
},
|
|
2395
|
+
ui: {
|
|
2396
|
+
type: 'object',
|
|
2397
|
+
properties: {
|
|
2398
|
+
onTable: {
|
|
2399
|
+
type: 'object',
|
|
2400
|
+
properties: {
|
|
2401
|
+
isVisible: {
|
|
2402
|
+
type: 'boolean'
|
|
2403
|
+
}
|
|
2404
|
+
},
|
|
2405
|
+
additionalProperties: false
|
|
2406
|
+
},
|
|
2407
|
+
onCreateForm: {
|
|
2408
|
+
type: 'object',
|
|
2409
|
+
properties: {
|
|
2410
|
+
isVisible: {
|
|
2411
|
+
type: 'boolean'
|
|
2412
|
+
}
|
|
2413
|
+
},
|
|
2414
|
+
additionalProperties: false
|
|
2415
|
+
},
|
|
2416
|
+
onEditForm: {
|
|
2417
|
+
type: 'object',
|
|
2418
|
+
properties: {
|
|
2419
|
+
isVisible: {
|
|
2420
|
+
type: 'boolean'
|
|
2421
|
+
}
|
|
2422
|
+
},
|
|
2423
|
+
additionalProperties: false
|
|
2424
|
+
},
|
|
2425
|
+
lookup: {
|
|
2426
|
+
type: 'object',
|
|
2427
|
+
properties: {
|
|
2428
|
+
url: {
|
|
2429
|
+
type: 'string',
|
|
2430
|
+
nullable: true
|
|
2431
|
+
},
|
|
2432
|
+
resultListPropertyName: {
|
|
2433
|
+
type: 'string',
|
|
2434
|
+
nullable: true
|
|
2435
|
+
},
|
|
2436
|
+
displayPropertyName: {
|
|
2437
|
+
type: 'string',
|
|
2438
|
+
nullable: true
|
|
2439
|
+
},
|
|
2440
|
+
valuePropertyName: {
|
|
2441
|
+
type: 'string',
|
|
2442
|
+
nullable: true
|
|
2443
|
+
},
|
|
2444
|
+
filterParamName: {
|
|
2445
|
+
type: 'string',
|
|
2446
|
+
nullable: true
|
|
2447
|
+
}
|
|
2448
|
+
},
|
|
2449
|
+
additionalProperties: false
|
|
2450
|
+
}
|
|
2451
|
+
},
|
|
2452
|
+
additionalProperties: false
|
|
2453
|
+
},
|
|
2454
|
+
attributes: {
|
|
2455
|
+
type: 'array',
|
|
2456
|
+
items: {
|
|
2457
|
+
type: 'object',
|
|
2458
|
+
properties: {
|
|
2459
|
+
typeSimple: {
|
|
2460
|
+
type: 'string',
|
|
2461
|
+
nullable: true
|
|
2462
|
+
},
|
|
2463
|
+
config: {
|
|
2464
|
+
type: 'object',
|
|
2465
|
+
additionalProperties: {},
|
|
2466
|
+
nullable: true
|
|
2467
|
+
}
|
|
2468
|
+
},
|
|
2469
|
+
additionalProperties: false
|
|
2470
|
+
},
|
|
2471
|
+
nullable: true
|
|
2472
|
+
},
|
|
2473
|
+
configuration: {
|
|
2474
|
+
type: 'object',
|
|
2475
|
+
additionalProperties: {},
|
|
2476
|
+
nullable: true
|
|
2477
|
+
},
|
|
2478
|
+
defaultValue: {
|
|
2479
|
+
nullable: true
|
|
2480
|
+
}
|
|
2481
|
+
},
|
|
2482
|
+
additionalProperties: false
|
|
1319
2483
|
},
|
|
1320
2484
|
nullable: true
|
|
1321
2485
|
},
|
|
@@ -1334,7 +2498,17 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1334
2498
|
fields: {
|
|
1335
2499
|
type: 'array',
|
|
1336
2500
|
items: {
|
|
1337
|
-
|
|
2501
|
+
type: 'object',
|
|
2502
|
+
properties: {
|
|
2503
|
+
name: {
|
|
2504
|
+
type: 'string',
|
|
2505
|
+
nullable: true
|
|
2506
|
+
},
|
|
2507
|
+
value: {
|
|
2508
|
+
nullable: true
|
|
2509
|
+
}
|
|
2510
|
+
},
|
|
2511
|
+
additionalProperties: false
|
|
1338
2512
|
},
|
|
1339
2513
|
nullable: true
|
|
1340
2514
|
},
|
|
@@ -1374,13 +2548,31 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1374
2548
|
type: 'object',
|
|
1375
2549
|
properties: {
|
|
1376
2550
|
onGet: {
|
|
1377
|
-
|
|
2551
|
+
type: 'object',
|
|
2552
|
+
properties: {
|
|
2553
|
+
isAvailable: {
|
|
2554
|
+
type: 'boolean'
|
|
2555
|
+
}
|
|
2556
|
+
},
|
|
2557
|
+
additionalProperties: false
|
|
1378
2558
|
},
|
|
1379
2559
|
onCreate: {
|
|
1380
|
-
|
|
2560
|
+
type: 'object',
|
|
2561
|
+
properties: {
|
|
2562
|
+
isAvailable: {
|
|
2563
|
+
type: 'boolean'
|
|
2564
|
+
}
|
|
2565
|
+
},
|
|
2566
|
+
additionalProperties: false
|
|
1381
2567
|
},
|
|
1382
2568
|
onUpdate: {
|
|
1383
|
-
|
|
2569
|
+
type: 'object',
|
|
2570
|
+
properties: {
|
|
2571
|
+
isAvailable: {
|
|
2572
|
+
type: 'boolean'
|
|
2573
|
+
}
|
|
2574
|
+
},
|
|
2575
|
+
additionalProperties: false
|
|
1384
2576
|
}
|
|
1385
2577
|
},
|
|
1386
2578
|
additionalProperties: false
|
|
@@ -1434,18 +2626,127 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1434
2626
|
nullable: true
|
|
1435
2627
|
},
|
|
1436
2628
|
displayName: {
|
|
1437
|
-
|
|
2629
|
+
type: 'object',
|
|
2630
|
+
properties: {
|
|
2631
|
+
name: {
|
|
2632
|
+
type: 'string',
|
|
2633
|
+
nullable: true
|
|
2634
|
+
},
|
|
2635
|
+
resource: {
|
|
2636
|
+
type: 'string',
|
|
2637
|
+
nullable: true
|
|
2638
|
+
}
|
|
2639
|
+
},
|
|
2640
|
+
additionalProperties: false
|
|
1438
2641
|
},
|
|
1439
2642
|
api: {
|
|
1440
|
-
|
|
2643
|
+
type: 'object',
|
|
2644
|
+
properties: {
|
|
2645
|
+
onGet: {
|
|
2646
|
+
type: 'object',
|
|
2647
|
+
properties: {
|
|
2648
|
+
isAvailable: {
|
|
2649
|
+
type: 'boolean'
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
additionalProperties: false
|
|
2653
|
+
},
|
|
2654
|
+
onCreate: {
|
|
2655
|
+
type: 'object',
|
|
2656
|
+
properties: {
|
|
2657
|
+
isAvailable: {
|
|
2658
|
+
type: 'boolean'
|
|
2659
|
+
}
|
|
2660
|
+
},
|
|
2661
|
+
additionalProperties: false
|
|
2662
|
+
},
|
|
2663
|
+
onUpdate: {
|
|
2664
|
+
type: 'object',
|
|
2665
|
+
properties: {
|
|
2666
|
+
isAvailable: {
|
|
2667
|
+
type: 'boolean'
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
additionalProperties: false
|
|
2671
|
+
}
|
|
2672
|
+
},
|
|
2673
|
+
additionalProperties: false
|
|
1441
2674
|
},
|
|
1442
2675
|
ui: {
|
|
1443
|
-
|
|
2676
|
+
type: 'object',
|
|
2677
|
+
properties: {
|
|
2678
|
+
onTable: {
|
|
2679
|
+
type: 'object',
|
|
2680
|
+
properties: {
|
|
2681
|
+
isVisible: {
|
|
2682
|
+
type: 'boolean'
|
|
2683
|
+
}
|
|
2684
|
+
},
|
|
2685
|
+
additionalProperties: false
|
|
2686
|
+
},
|
|
2687
|
+
onCreateForm: {
|
|
2688
|
+
type: 'object',
|
|
2689
|
+
properties: {
|
|
2690
|
+
isVisible: {
|
|
2691
|
+
type: 'boolean'
|
|
2692
|
+
}
|
|
2693
|
+
},
|
|
2694
|
+
additionalProperties: false
|
|
2695
|
+
},
|
|
2696
|
+
onEditForm: {
|
|
2697
|
+
type: 'object',
|
|
2698
|
+
properties: {
|
|
2699
|
+
isVisible: {
|
|
2700
|
+
type: 'boolean'
|
|
2701
|
+
}
|
|
2702
|
+
},
|
|
2703
|
+
additionalProperties: false
|
|
2704
|
+
},
|
|
2705
|
+
lookup: {
|
|
2706
|
+
type: 'object',
|
|
2707
|
+
properties: {
|
|
2708
|
+
url: {
|
|
2709
|
+
type: 'string',
|
|
2710
|
+
nullable: true
|
|
2711
|
+
},
|
|
2712
|
+
resultListPropertyName: {
|
|
2713
|
+
type: 'string',
|
|
2714
|
+
nullable: true
|
|
2715
|
+
},
|
|
2716
|
+
displayPropertyName: {
|
|
2717
|
+
type: 'string',
|
|
2718
|
+
nullable: true
|
|
2719
|
+
},
|
|
2720
|
+
valuePropertyName: {
|
|
2721
|
+
type: 'string',
|
|
2722
|
+
nullable: true
|
|
2723
|
+
},
|
|
2724
|
+
filterParamName: {
|
|
2725
|
+
type: 'string',
|
|
2726
|
+
nullable: true
|
|
2727
|
+
}
|
|
2728
|
+
},
|
|
2729
|
+
additionalProperties: false
|
|
2730
|
+
}
|
|
2731
|
+
},
|
|
2732
|
+
additionalProperties: false
|
|
1444
2733
|
},
|
|
1445
2734
|
attributes: {
|
|
1446
2735
|
type: 'array',
|
|
1447
2736
|
items: {
|
|
1448
|
-
|
|
2737
|
+
type: 'object',
|
|
2738
|
+
properties: {
|
|
2739
|
+
typeSimple: {
|
|
2740
|
+
type: 'string',
|
|
2741
|
+
nullable: true
|
|
2742
|
+
},
|
|
2743
|
+
config: {
|
|
2744
|
+
type: 'object',
|
|
2745
|
+
additionalProperties: {},
|
|
2746
|
+
nullable: true
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2749
|
+
additionalProperties: false
|
|
1449
2750
|
},
|
|
1450
2751
|
nullable: true
|
|
1451
2752
|
},
|
|
@@ -1465,16 +2766,57 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1465
2766
|
type: 'object',
|
|
1466
2767
|
properties: {
|
|
1467
2768
|
onTable: {
|
|
1468
|
-
|
|
2769
|
+
type: 'object',
|
|
2770
|
+
properties: {
|
|
2771
|
+
isVisible: {
|
|
2772
|
+
type: 'boolean'
|
|
2773
|
+
}
|
|
2774
|
+
},
|
|
2775
|
+
additionalProperties: false
|
|
1469
2776
|
},
|
|
1470
2777
|
onCreateForm: {
|
|
1471
|
-
|
|
2778
|
+
type: 'object',
|
|
2779
|
+
properties: {
|
|
2780
|
+
isVisible: {
|
|
2781
|
+
type: 'boolean'
|
|
2782
|
+
}
|
|
2783
|
+
},
|
|
2784
|
+
additionalProperties: false
|
|
1472
2785
|
},
|
|
1473
2786
|
onEditForm: {
|
|
1474
|
-
|
|
2787
|
+
type: 'object',
|
|
2788
|
+
properties: {
|
|
2789
|
+
isVisible: {
|
|
2790
|
+
type: 'boolean'
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
additionalProperties: false
|
|
1475
2794
|
},
|
|
1476
2795
|
lookup: {
|
|
1477
|
-
|
|
2796
|
+
type: 'object',
|
|
2797
|
+
properties: {
|
|
2798
|
+
url: {
|
|
2799
|
+
type: 'string',
|
|
2800
|
+
nullable: true
|
|
2801
|
+
},
|
|
2802
|
+
resultListPropertyName: {
|
|
2803
|
+
type: 'string',
|
|
2804
|
+
nullable: true
|
|
2805
|
+
},
|
|
2806
|
+
displayPropertyName: {
|
|
2807
|
+
type: 'string',
|
|
2808
|
+
nullable: true
|
|
2809
|
+
},
|
|
2810
|
+
valuePropertyName: {
|
|
2811
|
+
type: 'string',
|
|
2812
|
+
nullable: true
|
|
2813
|
+
},
|
|
2814
|
+
filterParamName: {
|
|
2815
|
+
type: 'string',
|
|
2816
|
+
nullable: true
|
|
2817
|
+
}
|
|
2818
|
+
},
|
|
2819
|
+
additionalProperties: false
|
|
1478
2820
|
}
|
|
1479
2821
|
},
|
|
1480
2822
|
additionalProperties: false
|
|
@@ -1548,7 +2890,166 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1548
2890
|
entities: {
|
|
1549
2891
|
type: 'object',
|
|
1550
2892
|
additionalProperties: {
|
|
1551
|
-
|
|
2893
|
+
type: 'object',
|
|
2894
|
+
properties: {
|
|
2895
|
+
properties: {
|
|
2896
|
+
type: 'object',
|
|
2897
|
+
additionalProperties: {
|
|
2898
|
+
type: 'object',
|
|
2899
|
+
properties: {
|
|
2900
|
+
type: {
|
|
2901
|
+
type: 'string',
|
|
2902
|
+
nullable: true
|
|
2903
|
+
},
|
|
2904
|
+
typeSimple: {
|
|
2905
|
+
type: 'string',
|
|
2906
|
+
nullable: true
|
|
2907
|
+
},
|
|
2908
|
+
displayName: {
|
|
2909
|
+
type: 'object',
|
|
2910
|
+
properties: {
|
|
2911
|
+
name: {
|
|
2912
|
+
type: 'string',
|
|
2913
|
+
nullable: true
|
|
2914
|
+
},
|
|
2915
|
+
resource: {
|
|
2916
|
+
type: 'string',
|
|
2917
|
+
nullable: true
|
|
2918
|
+
}
|
|
2919
|
+
},
|
|
2920
|
+
additionalProperties: false
|
|
2921
|
+
},
|
|
2922
|
+
api: {
|
|
2923
|
+
type: 'object',
|
|
2924
|
+
properties: {
|
|
2925
|
+
onGet: {
|
|
2926
|
+
type: 'object',
|
|
2927
|
+
properties: {
|
|
2928
|
+
isAvailable: {
|
|
2929
|
+
type: 'boolean'
|
|
2930
|
+
}
|
|
2931
|
+
},
|
|
2932
|
+
additionalProperties: false
|
|
2933
|
+
},
|
|
2934
|
+
onCreate: {
|
|
2935
|
+
type: 'object',
|
|
2936
|
+
properties: {
|
|
2937
|
+
isAvailable: {
|
|
2938
|
+
type: 'boolean'
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
additionalProperties: false
|
|
2942
|
+
},
|
|
2943
|
+
onUpdate: {
|
|
2944
|
+
type: 'object',
|
|
2945
|
+
properties: {
|
|
2946
|
+
isAvailable: {
|
|
2947
|
+
type: 'boolean'
|
|
2948
|
+
}
|
|
2949
|
+
},
|
|
2950
|
+
additionalProperties: false
|
|
2951
|
+
}
|
|
2952
|
+
},
|
|
2953
|
+
additionalProperties: false
|
|
2954
|
+
},
|
|
2955
|
+
ui: {
|
|
2956
|
+
type: 'object',
|
|
2957
|
+
properties: {
|
|
2958
|
+
onTable: {
|
|
2959
|
+
type: 'object',
|
|
2960
|
+
properties: {
|
|
2961
|
+
isVisible: {
|
|
2962
|
+
type: 'boolean'
|
|
2963
|
+
}
|
|
2964
|
+
},
|
|
2965
|
+
additionalProperties: false
|
|
2966
|
+
},
|
|
2967
|
+
onCreateForm: {
|
|
2968
|
+
type: 'object',
|
|
2969
|
+
properties: {
|
|
2970
|
+
isVisible: {
|
|
2971
|
+
type: 'boolean'
|
|
2972
|
+
}
|
|
2973
|
+
},
|
|
2974
|
+
additionalProperties: false
|
|
2975
|
+
},
|
|
2976
|
+
onEditForm: {
|
|
2977
|
+
type: 'object',
|
|
2978
|
+
properties: {
|
|
2979
|
+
isVisible: {
|
|
2980
|
+
type: 'boolean'
|
|
2981
|
+
}
|
|
2982
|
+
},
|
|
2983
|
+
additionalProperties: false
|
|
2984
|
+
},
|
|
2985
|
+
lookup: {
|
|
2986
|
+
type: 'object',
|
|
2987
|
+
properties: {
|
|
2988
|
+
url: {
|
|
2989
|
+
type: 'string',
|
|
2990
|
+
nullable: true
|
|
2991
|
+
},
|
|
2992
|
+
resultListPropertyName: {
|
|
2993
|
+
type: 'string',
|
|
2994
|
+
nullable: true
|
|
2995
|
+
},
|
|
2996
|
+
displayPropertyName: {
|
|
2997
|
+
type: 'string',
|
|
2998
|
+
nullable: true
|
|
2999
|
+
},
|
|
3000
|
+
valuePropertyName: {
|
|
3001
|
+
type: 'string',
|
|
3002
|
+
nullable: true
|
|
3003
|
+
},
|
|
3004
|
+
filterParamName: {
|
|
3005
|
+
type: 'string',
|
|
3006
|
+
nullable: true
|
|
3007
|
+
}
|
|
3008
|
+
},
|
|
3009
|
+
additionalProperties: false
|
|
3010
|
+
}
|
|
3011
|
+
},
|
|
3012
|
+
additionalProperties: false
|
|
3013
|
+
},
|
|
3014
|
+
attributes: {
|
|
3015
|
+
type: 'array',
|
|
3016
|
+
items: {
|
|
3017
|
+
type: 'object',
|
|
3018
|
+
properties: {
|
|
3019
|
+
typeSimple: {
|
|
3020
|
+
type: 'string',
|
|
3021
|
+
nullable: true
|
|
3022
|
+
},
|
|
3023
|
+
config: {
|
|
3024
|
+
type: 'object',
|
|
3025
|
+
additionalProperties: {},
|
|
3026
|
+
nullable: true
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
3029
|
+
additionalProperties: false
|
|
3030
|
+
},
|
|
3031
|
+
nullable: true
|
|
3032
|
+
},
|
|
3033
|
+
configuration: {
|
|
3034
|
+
type: 'object',
|
|
3035
|
+
additionalProperties: {},
|
|
3036
|
+
nullable: true
|
|
3037
|
+
},
|
|
3038
|
+
defaultValue: {
|
|
3039
|
+
nullable: true
|
|
3040
|
+
}
|
|
3041
|
+
},
|
|
3042
|
+
additionalProperties: false
|
|
3043
|
+
},
|
|
3044
|
+
nullable: true
|
|
3045
|
+
},
|
|
3046
|
+
configuration: {
|
|
3047
|
+
type: 'object',
|
|
3048
|
+
additionalProperties: {},
|
|
3049
|
+
nullable: true
|
|
3050
|
+
}
|
|
3051
|
+
},
|
|
3052
|
+
additionalProperties: false
|
|
1552
3053
|
},
|
|
1553
3054
|
nullable: true
|
|
1554
3055
|
},
|
|
@@ -1567,14 +3068,212 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
1567
3068
|
modules: {
|
|
1568
3069
|
type: 'object',
|
|
1569
3070
|
additionalProperties: {
|
|
1570
|
-
|
|
3071
|
+
type: 'object',
|
|
3072
|
+
properties: {
|
|
3073
|
+
entities: {
|
|
3074
|
+
type: 'object',
|
|
3075
|
+
additionalProperties: {
|
|
3076
|
+
type: 'object',
|
|
3077
|
+
properties: {
|
|
3078
|
+
properties: {
|
|
3079
|
+
type: 'object',
|
|
3080
|
+
additionalProperties: {
|
|
3081
|
+
type: 'object',
|
|
3082
|
+
properties: {
|
|
3083
|
+
type: {
|
|
3084
|
+
type: 'string',
|
|
3085
|
+
nullable: true
|
|
3086
|
+
},
|
|
3087
|
+
typeSimple: {
|
|
3088
|
+
type: 'string',
|
|
3089
|
+
nullable: true
|
|
3090
|
+
},
|
|
3091
|
+
displayName: {
|
|
3092
|
+
type: 'object',
|
|
3093
|
+
properties: {
|
|
3094
|
+
name: {
|
|
3095
|
+
type: 'string',
|
|
3096
|
+
nullable: true
|
|
3097
|
+
},
|
|
3098
|
+
resource: {
|
|
3099
|
+
type: 'string',
|
|
3100
|
+
nullable: true
|
|
3101
|
+
}
|
|
3102
|
+
},
|
|
3103
|
+
additionalProperties: false
|
|
3104
|
+
},
|
|
3105
|
+
api: {
|
|
3106
|
+
type: 'object',
|
|
3107
|
+
properties: {
|
|
3108
|
+
onGet: {
|
|
3109
|
+
type: 'object',
|
|
3110
|
+
properties: {
|
|
3111
|
+
isAvailable: {
|
|
3112
|
+
type: 'boolean'
|
|
3113
|
+
}
|
|
3114
|
+
},
|
|
3115
|
+
additionalProperties: false
|
|
3116
|
+
},
|
|
3117
|
+
onCreate: {
|
|
3118
|
+
type: 'object',
|
|
3119
|
+
properties: {
|
|
3120
|
+
isAvailable: {
|
|
3121
|
+
type: 'boolean'
|
|
3122
|
+
}
|
|
3123
|
+
},
|
|
3124
|
+
additionalProperties: false
|
|
3125
|
+
},
|
|
3126
|
+
onUpdate: {
|
|
3127
|
+
type: 'object',
|
|
3128
|
+
properties: {
|
|
3129
|
+
isAvailable: {
|
|
3130
|
+
type: 'boolean'
|
|
3131
|
+
}
|
|
3132
|
+
},
|
|
3133
|
+
additionalProperties: false
|
|
3134
|
+
}
|
|
3135
|
+
},
|
|
3136
|
+
additionalProperties: false
|
|
3137
|
+
},
|
|
3138
|
+
ui: {
|
|
3139
|
+
type: 'object',
|
|
3140
|
+
properties: {
|
|
3141
|
+
onTable: {
|
|
3142
|
+
type: 'object',
|
|
3143
|
+
properties: {
|
|
3144
|
+
isVisible: {
|
|
3145
|
+
type: 'boolean'
|
|
3146
|
+
}
|
|
3147
|
+
},
|
|
3148
|
+
additionalProperties: false
|
|
3149
|
+
},
|
|
3150
|
+
onCreateForm: {
|
|
3151
|
+
type: 'object',
|
|
3152
|
+
properties: {
|
|
3153
|
+
isVisible: {
|
|
3154
|
+
type: 'boolean'
|
|
3155
|
+
}
|
|
3156
|
+
},
|
|
3157
|
+
additionalProperties: false
|
|
3158
|
+
},
|
|
3159
|
+
onEditForm: {
|
|
3160
|
+
type: 'object',
|
|
3161
|
+
properties: {
|
|
3162
|
+
isVisible: {
|
|
3163
|
+
type: 'boolean'
|
|
3164
|
+
}
|
|
3165
|
+
},
|
|
3166
|
+
additionalProperties: false
|
|
3167
|
+
},
|
|
3168
|
+
lookup: {
|
|
3169
|
+
type: 'object',
|
|
3170
|
+
properties: {
|
|
3171
|
+
url: {
|
|
3172
|
+
type: 'string',
|
|
3173
|
+
nullable: true
|
|
3174
|
+
},
|
|
3175
|
+
resultListPropertyName: {
|
|
3176
|
+
type: 'string',
|
|
3177
|
+
nullable: true
|
|
3178
|
+
},
|
|
3179
|
+
displayPropertyName: {
|
|
3180
|
+
type: 'string',
|
|
3181
|
+
nullable: true
|
|
3182
|
+
},
|
|
3183
|
+
valuePropertyName: {
|
|
3184
|
+
type: 'string',
|
|
3185
|
+
nullable: true
|
|
3186
|
+
},
|
|
3187
|
+
filterParamName: {
|
|
3188
|
+
type: 'string',
|
|
3189
|
+
nullable: true
|
|
3190
|
+
}
|
|
3191
|
+
},
|
|
3192
|
+
additionalProperties: false
|
|
3193
|
+
}
|
|
3194
|
+
},
|
|
3195
|
+
additionalProperties: false
|
|
3196
|
+
},
|
|
3197
|
+
attributes: {
|
|
3198
|
+
type: 'array',
|
|
3199
|
+
items: {
|
|
3200
|
+
type: 'object',
|
|
3201
|
+
properties: {
|
|
3202
|
+
typeSimple: {
|
|
3203
|
+
type: 'string',
|
|
3204
|
+
nullable: true
|
|
3205
|
+
},
|
|
3206
|
+
config: {
|
|
3207
|
+
type: 'object',
|
|
3208
|
+
additionalProperties: {},
|
|
3209
|
+
nullable: true
|
|
3210
|
+
}
|
|
3211
|
+
},
|
|
3212
|
+
additionalProperties: false
|
|
3213
|
+
},
|
|
3214
|
+
nullable: true
|
|
3215
|
+
},
|
|
3216
|
+
configuration: {
|
|
3217
|
+
type: 'object',
|
|
3218
|
+
additionalProperties: {},
|
|
3219
|
+
nullable: true
|
|
3220
|
+
},
|
|
3221
|
+
defaultValue: {
|
|
3222
|
+
nullable: true
|
|
3223
|
+
}
|
|
3224
|
+
},
|
|
3225
|
+
additionalProperties: false
|
|
3226
|
+
},
|
|
3227
|
+
nullable: true
|
|
3228
|
+
},
|
|
3229
|
+
configuration: {
|
|
3230
|
+
type: 'object',
|
|
3231
|
+
additionalProperties: {},
|
|
3232
|
+
nullable: true
|
|
3233
|
+
}
|
|
3234
|
+
},
|
|
3235
|
+
additionalProperties: false
|
|
3236
|
+
},
|
|
3237
|
+
nullable: true
|
|
3238
|
+
},
|
|
3239
|
+
configuration: {
|
|
3240
|
+
type: 'object',
|
|
3241
|
+
additionalProperties: {},
|
|
3242
|
+
nullable: true
|
|
3243
|
+
}
|
|
3244
|
+
},
|
|
3245
|
+
additionalProperties: false
|
|
1571
3246
|
},
|
|
1572
3247
|
nullable: true
|
|
1573
3248
|
},
|
|
1574
3249
|
enums: {
|
|
1575
3250
|
type: 'object',
|
|
1576
3251
|
additionalProperties: {
|
|
1577
|
-
|
|
3252
|
+
type: 'object',
|
|
3253
|
+
properties: {
|
|
3254
|
+
fields: {
|
|
3255
|
+
type: 'array',
|
|
3256
|
+
items: {
|
|
3257
|
+
type: 'object',
|
|
3258
|
+
properties: {
|
|
3259
|
+
name: {
|
|
3260
|
+
type: 'string',
|
|
3261
|
+
nullable: true
|
|
3262
|
+
},
|
|
3263
|
+
value: {
|
|
3264
|
+
nullable: true
|
|
3265
|
+
}
|
|
3266
|
+
},
|
|
3267
|
+
additionalProperties: false
|
|
3268
|
+
},
|
|
3269
|
+
nullable: true
|
|
3270
|
+
},
|
|
3271
|
+
localizationResource: {
|
|
3272
|
+
type: 'string',
|
|
3273
|
+
nullable: true
|
|
3274
|
+
}
|
|
3275
|
+
},
|
|
3276
|
+
additionalProperties: false
|
|
1578
3277
|
},
|
|
1579
3278
|
nullable: true
|
|
1580
3279
|
}
|
|
@@ -1586,10 +3285,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
|
1586
3285
|
type: 'object',
|
|
1587
3286
|
properties: {
|
|
1588
3287
|
iana: {
|
|
1589
|
-
|
|
3288
|
+
type: 'object',
|
|
3289
|
+
properties: {
|
|
3290
|
+
timeZoneName: {
|
|
3291
|
+
type: 'string',
|
|
3292
|
+
nullable: true
|
|
3293
|
+
}
|
|
3294
|
+
},
|
|
3295
|
+
additionalProperties: false
|
|
1590
3296
|
},
|
|
1591
3297
|
windows: {
|
|
1592
|
-
|
|
3298
|
+
type: 'object',
|
|
3299
|
+
properties: {
|
|
3300
|
+
timeZoneId: {
|
|
3301
|
+
type: 'string',
|
|
3302
|
+
nullable: true
|
|
3303
|
+
}
|
|
3304
|
+
},
|
|
3305
|
+
additionalProperties: false
|
|
1593
3306
|
}
|
|
1594
3307
|
},
|
|
1595
3308
|
additionalProperties: false
|
|
@@ -1599,7 +3312,30 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
|
1599
3312
|
type: 'object',
|
|
1600
3313
|
properties: {
|
|
1601
3314
|
timeZone: {
|
|
1602
|
-
|
|
3315
|
+
type: 'object',
|
|
3316
|
+
properties: {
|
|
3317
|
+
iana: {
|
|
3318
|
+
type: 'object',
|
|
3319
|
+
properties: {
|
|
3320
|
+
timeZoneName: {
|
|
3321
|
+
type: 'string',
|
|
3322
|
+
nullable: true
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
additionalProperties: false
|
|
3326
|
+
},
|
|
3327
|
+
windows: {
|
|
3328
|
+
type: 'object',
|
|
3329
|
+
properties: {
|
|
3330
|
+
timeZoneId: {
|
|
3331
|
+
type: 'string',
|
|
3332
|
+
nullable: true
|
|
3333
|
+
}
|
|
3334
|
+
},
|
|
3335
|
+
additionalProperties: false
|
|
3336
|
+
}
|
|
3337
|
+
},
|
|
3338
|
+
additionalProperties: false
|
|
1603
3339
|
}
|
|
1604
3340
|
},
|
|
1605
3341
|
additionalProperties: false
|
|
@@ -1696,19 +3432,99 @@ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
1696
3432
|
parametersOnMethod: {
|
|
1697
3433
|
type: 'array',
|
|
1698
3434
|
items: {
|
|
1699
|
-
|
|
3435
|
+
type: 'object',
|
|
3436
|
+
properties: {
|
|
3437
|
+
name: {
|
|
3438
|
+
type: 'string',
|
|
3439
|
+
nullable: true
|
|
3440
|
+
},
|
|
3441
|
+
typeAsString: {
|
|
3442
|
+
type: 'string',
|
|
3443
|
+
nullable: true
|
|
3444
|
+
},
|
|
3445
|
+
type: {
|
|
3446
|
+
type: 'string',
|
|
3447
|
+
nullable: true
|
|
3448
|
+
},
|
|
3449
|
+
typeSimple: {
|
|
3450
|
+
type: 'string',
|
|
3451
|
+
nullable: true
|
|
3452
|
+
},
|
|
3453
|
+
isOptional: {
|
|
3454
|
+
type: 'boolean'
|
|
3455
|
+
},
|
|
3456
|
+
defaultValue: {
|
|
3457
|
+
nullable: true
|
|
3458
|
+
}
|
|
3459
|
+
},
|
|
3460
|
+
additionalProperties: false
|
|
1700
3461
|
},
|
|
1701
3462
|
nullable: true
|
|
1702
3463
|
},
|
|
1703
3464
|
parameters: {
|
|
1704
3465
|
type: 'array',
|
|
1705
3466
|
items: {
|
|
1706
|
-
|
|
3467
|
+
type: 'object',
|
|
3468
|
+
properties: {
|
|
3469
|
+
nameOnMethod: {
|
|
3470
|
+
type: 'string',
|
|
3471
|
+
nullable: true
|
|
3472
|
+
},
|
|
3473
|
+
name: {
|
|
3474
|
+
type: 'string',
|
|
3475
|
+
nullable: true
|
|
3476
|
+
},
|
|
3477
|
+
jsonName: {
|
|
3478
|
+
type: 'string',
|
|
3479
|
+
nullable: true
|
|
3480
|
+
},
|
|
3481
|
+
type: {
|
|
3482
|
+
type: 'string',
|
|
3483
|
+
nullable: true
|
|
3484
|
+
},
|
|
3485
|
+
typeSimple: {
|
|
3486
|
+
type: 'string',
|
|
3487
|
+
nullable: true
|
|
3488
|
+
},
|
|
3489
|
+
isOptional: {
|
|
3490
|
+
type: 'boolean'
|
|
3491
|
+
},
|
|
3492
|
+
defaultValue: {
|
|
3493
|
+
nullable: true
|
|
3494
|
+
},
|
|
3495
|
+
constraintTypes: {
|
|
3496
|
+
type: 'array',
|
|
3497
|
+
items: {
|
|
3498
|
+
type: 'string'
|
|
3499
|
+
},
|
|
3500
|
+
nullable: true
|
|
3501
|
+
},
|
|
3502
|
+
bindingSourceId: {
|
|
3503
|
+
type: 'string',
|
|
3504
|
+
nullable: true
|
|
3505
|
+
},
|
|
3506
|
+
descriptorName: {
|
|
3507
|
+
type: 'string',
|
|
3508
|
+
nullable: true
|
|
3509
|
+
}
|
|
3510
|
+
},
|
|
3511
|
+
additionalProperties: false
|
|
1707
3512
|
},
|
|
1708
3513
|
nullable: true
|
|
1709
3514
|
},
|
|
1710
3515
|
returnValue: {
|
|
1711
|
-
|
|
3516
|
+
type: 'object',
|
|
3517
|
+
properties: {
|
|
3518
|
+
type: {
|
|
3519
|
+
type: 'string',
|
|
3520
|
+
nullable: true
|
|
3521
|
+
},
|
|
3522
|
+
typeSimple: {
|
|
3523
|
+
type: 'string',
|
|
3524
|
+
nullable: true
|
|
3525
|
+
}
|
|
3526
|
+
},
|
|
3527
|
+
additionalProperties: false
|
|
1712
3528
|
},
|
|
1713
3529
|
allowAnonymous: {
|
|
1714
3530
|
type: 'boolean',
|
|
@@ -1728,14 +3544,353 @@ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
|
1728
3544
|
modules: {
|
|
1729
3545
|
type: 'object',
|
|
1730
3546
|
additionalProperties: {
|
|
1731
|
-
|
|
3547
|
+
type: 'object',
|
|
3548
|
+
properties: {
|
|
3549
|
+
rootPath: {
|
|
3550
|
+
type: 'string',
|
|
3551
|
+
nullable: true
|
|
3552
|
+
},
|
|
3553
|
+
remoteServiceName: {
|
|
3554
|
+
type: 'string',
|
|
3555
|
+
nullable: true
|
|
3556
|
+
},
|
|
3557
|
+
controllers: {
|
|
3558
|
+
type: 'object',
|
|
3559
|
+
additionalProperties: {
|
|
3560
|
+
type: 'object',
|
|
3561
|
+
properties: {
|
|
3562
|
+
controllerName: {
|
|
3563
|
+
type: 'string',
|
|
3564
|
+
nullable: true
|
|
3565
|
+
},
|
|
3566
|
+
controllerGroupName: {
|
|
3567
|
+
type: 'string',
|
|
3568
|
+
nullable: true
|
|
3569
|
+
},
|
|
3570
|
+
isRemoteService: {
|
|
3571
|
+
type: 'boolean'
|
|
3572
|
+
},
|
|
3573
|
+
isIntegrationService: {
|
|
3574
|
+
type: 'boolean'
|
|
3575
|
+
},
|
|
3576
|
+
apiVersion: {
|
|
3577
|
+
type: 'string',
|
|
3578
|
+
nullable: true
|
|
3579
|
+
},
|
|
3580
|
+
type: {
|
|
3581
|
+
type: 'string',
|
|
3582
|
+
nullable: true
|
|
3583
|
+
},
|
|
3584
|
+
interfaces: {
|
|
3585
|
+
type: 'array',
|
|
3586
|
+
items: {
|
|
3587
|
+
type: 'object',
|
|
3588
|
+
properties: {
|
|
3589
|
+
type: {
|
|
3590
|
+
type: 'string',
|
|
3591
|
+
nullable: true
|
|
3592
|
+
},
|
|
3593
|
+
name: {
|
|
3594
|
+
type: 'string',
|
|
3595
|
+
nullable: true
|
|
3596
|
+
},
|
|
3597
|
+
methods: {
|
|
3598
|
+
type: 'array',
|
|
3599
|
+
items: {
|
|
3600
|
+
type: 'object',
|
|
3601
|
+
properties: {
|
|
3602
|
+
name: {
|
|
3603
|
+
type: 'string',
|
|
3604
|
+
nullable: true
|
|
3605
|
+
},
|
|
3606
|
+
parametersOnMethod: {
|
|
3607
|
+
type: 'array',
|
|
3608
|
+
items: {
|
|
3609
|
+
type: 'object',
|
|
3610
|
+
properties: {
|
|
3611
|
+
name: {
|
|
3612
|
+
type: 'string',
|
|
3613
|
+
nullable: true
|
|
3614
|
+
},
|
|
3615
|
+
typeAsString: {
|
|
3616
|
+
type: 'string',
|
|
3617
|
+
nullable: true
|
|
3618
|
+
},
|
|
3619
|
+
type: {
|
|
3620
|
+
type: 'string',
|
|
3621
|
+
nullable: true
|
|
3622
|
+
},
|
|
3623
|
+
typeSimple: {
|
|
3624
|
+
type: 'string',
|
|
3625
|
+
nullable: true
|
|
3626
|
+
},
|
|
3627
|
+
isOptional: {
|
|
3628
|
+
type: 'boolean'
|
|
3629
|
+
},
|
|
3630
|
+
defaultValue: {
|
|
3631
|
+
nullable: true
|
|
3632
|
+
}
|
|
3633
|
+
},
|
|
3634
|
+
additionalProperties: false
|
|
3635
|
+
},
|
|
3636
|
+
nullable: true
|
|
3637
|
+
},
|
|
3638
|
+
returnValue: {
|
|
3639
|
+
type: 'object',
|
|
3640
|
+
properties: {
|
|
3641
|
+
type: {
|
|
3642
|
+
type: 'string',
|
|
3643
|
+
nullable: true
|
|
3644
|
+
},
|
|
3645
|
+
typeSimple: {
|
|
3646
|
+
type: 'string',
|
|
3647
|
+
nullable: true
|
|
3648
|
+
}
|
|
3649
|
+
},
|
|
3650
|
+
additionalProperties: false
|
|
3651
|
+
}
|
|
3652
|
+
},
|
|
3653
|
+
additionalProperties: false
|
|
3654
|
+
},
|
|
3655
|
+
nullable: true
|
|
3656
|
+
}
|
|
3657
|
+
},
|
|
3658
|
+
additionalProperties: false
|
|
3659
|
+
},
|
|
3660
|
+
nullable: true
|
|
3661
|
+
},
|
|
3662
|
+
actions: {
|
|
3663
|
+
type: 'object',
|
|
3664
|
+
additionalProperties: {
|
|
3665
|
+
type: 'object',
|
|
3666
|
+
properties: {
|
|
3667
|
+
uniqueName: {
|
|
3668
|
+
type: 'string',
|
|
3669
|
+
nullable: true
|
|
3670
|
+
},
|
|
3671
|
+
name: {
|
|
3672
|
+
type: 'string',
|
|
3673
|
+
nullable: true
|
|
3674
|
+
},
|
|
3675
|
+
httpMethod: {
|
|
3676
|
+
type: 'string',
|
|
3677
|
+
nullable: true
|
|
3678
|
+
},
|
|
3679
|
+
url: {
|
|
3680
|
+
type: 'string',
|
|
3681
|
+
nullable: true
|
|
3682
|
+
},
|
|
3683
|
+
supportedVersions: {
|
|
3684
|
+
type: 'array',
|
|
3685
|
+
items: {
|
|
3686
|
+
type: 'string'
|
|
3687
|
+
},
|
|
3688
|
+
nullable: true
|
|
3689
|
+
},
|
|
3690
|
+
parametersOnMethod: {
|
|
3691
|
+
type: 'array',
|
|
3692
|
+
items: {
|
|
3693
|
+
type: 'object',
|
|
3694
|
+
properties: {
|
|
3695
|
+
name: {
|
|
3696
|
+
type: 'string',
|
|
3697
|
+
nullable: true
|
|
3698
|
+
},
|
|
3699
|
+
typeAsString: {
|
|
3700
|
+
type: 'string',
|
|
3701
|
+
nullable: true
|
|
3702
|
+
},
|
|
3703
|
+
type: {
|
|
3704
|
+
type: 'string',
|
|
3705
|
+
nullable: true
|
|
3706
|
+
},
|
|
3707
|
+
typeSimple: {
|
|
3708
|
+
type: 'string',
|
|
3709
|
+
nullable: true
|
|
3710
|
+
},
|
|
3711
|
+
isOptional: {
|
|
3712
|
+
type: 'boolean'
|
|
3713
|
+
},
|
|
3714
|
+
defaultValue: {
|
|
3715
|
+
nullable: true
|
|
3716
|
+
}
|
|
3717
|
+
},
|
|
3718
|
+
additionalProperties: false
|
|
3719
|
+
},
|
|
3720
|
+
nullable: true
|
|
3721
|
+
},
|
|
3722
|
+
parameters: {
|
|
3723
|
+
type: 'array',
|
|
3724
|
+
items: {
|
|
3725
|
+
type: 'object',
|
|
3726
|
+
properties: {
|
|
3727
|
+
nameOnMethod: {
|
|
3728
|
+
type: 'string',
|
|
3729
|
+
nullable: true
|
|
3730
|
+
},
|
|
3731
|
+
name: {
|
|
3732
|
+
type: 'string',
|
|
3733
|
+
nullable: true
|
|
3734
|
+
},
|
|
3735
|
+
jsonName: {
|
|
3736
|
+
type: 'string',
|
|
3737
|
+
nullable: true
|
|
3738
|
+
},
|
|
3739
|
+
type: {
|
|
3740
|
+
type: 'string',
|
|
3741
|
+
nullable: true
|
|
3742
|
+
},
|
|
3743
|
+
typeSimple: {
|
|
3744
|
+
type: 'string',
|
|
3745
|
+
nullable: true
|
|
3746
|
+
},
|
|
3747
|
+
isOptional: {
|
|
3748
|
+
type: 'boolean'
|
|
3749
|
+
},
|
|
3750
|
+
defaultValue: {
|
|
3751
|
+
nullable: true
|
|
3752
|
+
},
|
|
3753
|
+
constraintTypes: {
|
|
3754
|
+
type: 'array',
|
|
3755
|
+
items: {
|
|
3756
|
+
type: 'string'
|
|
3757
|
+
},
|
|
3758
|
+
nullable: true
|
|
3759
|
+
},
|
|
3760
|
+
bindingSourceId: {
|
|
3761
|
+
type: 'string',
|
|
3762
|
+
nullable: true
|
|
3763
|
+
},
|
|
3764
|
+
descriptorName: {
|
|
3765
|
+
type: 'string',
|
|
3766
|
+
nullable: true
|
|
3767
|
+
}
|
|
3768
|
+
},
|
|
3769
|
+
additionalProperties: false
|
|
3770
|
+
},
|
|
3771
|
+
nullable: true
|
|
3772
|
+
},
|
|
3773
|
+
returnValue: {
|
|
3774
|
+
type: 'object',
|
|
3775
|
+
properties: {
|
|
3776
|
+
type: {
|
|
3777
|
+
type: 'string',
|
|
3778
|
+
nullable: true
|
|
3779
|
+
},
|
|
3780
|
+
typeSimple: {
|
|
3781
|
+
type: 'string',
|
|
3782
|
+
nullable: true
|
|
3783
|
+
}
|
|
3784
|
+
},
|
|
3785
|
+
additionalProperties: false
|
|
3786
|
+
},
|
|
3787
|
+
allowAnonymous: {
|
|
3788
|
+
type: 'boolean',
|
|
3789
|
+
nullable: true
|
|
3790
|
+
},
|
|
3791
|
+
implementFrom: {
|
|
3792
|
+
type: 'string',
|
|
3793
|
+
nullable: true
|
|
3794
|
+
}
|
|
3795
|
+
},
|
|
3796
|
+
additionalProperties: false
|
|
3797
|
+
},
|
|
3798
|
+
nullable: true
|
|
3799
|
+
}
|
|
3800
|
+
},
|
|
3801
|
+
additionalProperties: false
|
|
3802
|
+
},
|
|
3803
|
+
nullable: true
|
|
3804
|
+
}
|
|
3805
|
+
},
|
|
3806
|
+
additionalProperties: false
|
|
1732
3807
|
},
|
|
1733
3808
|
nullable: true
|
|
1734
3809
|
},
|
|
1735
3810
|
types: {
|
|
1736
3811
|
type: 'object',
|
|
1737
3812
|
additionalProperties: {
|
|
1738
|
-
|
|
3813
|
+
type: 'object',
|
|
3814
|
+
properties: {
|
|
3815
|
+
baseType: {
|
|
3816
|
+
type: 'string',
|
|
3817
|
+
nullable: true
|
|
3818
|
+
},
|
|
3819
|
+
isEnum: {
|
|
3820
|
+
type: 'boolean'
|
|
3821
|
+
},
|
|
3822
|
+
enumNames: {
|
|
3823
|
+
type: 'array',
|
|
3824
|
+
items: {
|
|
3825
|
+
type: 'string'
|
|
3826
|
+
},
|
|
3827
|
+
nullable: true
|
|
3828
|
+
},
|
|
3829
|
+
enumValues: {
|
|
3830
|
+
type: 'array',
|
|
3831
|
+
items: {},
|
|
3832
|
+
nullable: true
|
|
3833
|
+
},
|
|
3834
|
+
genericArguments: {
|
|
3835
|
+
type: 'array',
|
|
3836
|
+
items: {
|
|
3837
|
+
type: 'string'
|
|
3838
|
+
},
|
|
3839
|
+
nullable: true
|
|
3840
|
+
},
|
|
3841
|
+
properties: {
|
|
3842
|
+
type: 'array',
|
|
3843
|
+
items: {
|
|
3844
|
+
type: 'object',
|
|
3845
|
+
properties: {
|
|
3846
|
+
name: {
|
|
3847
|
+
type: 'string',
|
|
3848
|
+
nullable: true
|
|
3849
|
+
},
|
|
3850
|
+
jsonName: {
|
|
3851
|
+
type: 'string',
|
|
3852
|
+
nullable: true
|
|
3853
|
+
},
|
|
3854
|
+
type: {
|
|
3855
|
+
type: 'string',
|
|
3856
|
+
nullable: true
|
|
3857
|
+
},
|
|
3858
|
+
typeSimple: {
|
|
3859
|
+
type: 'string',
|
|
3860
|
+
nullable: true
|
|
3861
|
+
},
|
|
3862
|
+
isRequired: {
|
|
3863
|
+
type: 'boolean'
|
|
3864
|
+
},
|
|
3865
|
+
minLength: {
|
|
3866
|
+
type: 'integer',
|
|
3867
|
+
format: 'int32',
|
|
3868
|
+
nullable: true
|
|
3869
|
+
},
|
|
3870
|
+
maxLength: {
|
|
3871
|
+
type: 'integer',
|
|
3872
|
+
format: 'int32',
|
|
3873
|
+
nullable: true
|
|
3874
|
+
},
|
|
3875
|
+
minimum: {
|
|
3876
|
+
type: 'string',
|
|
3877
|
+
nullable: true
|
|
3878
|
+
},
|
|
3879
|
+
maximum: {
|
|
3880
|
+
type: 'string',
|
|
3881
|
+
nullable: true
|
|
3882
|
+
},
|
|
3883
|
+
regex: {
|
|
3884
|
+
type: 'string',
|
|
3885
|
+
nullable: true
|
|
3886
|
+
}
|
|
3887
|
+
},
|
|
3888
|
+
additionalProperties: false
|
|
3889
|
+
},
|
|
3890
|
+
nullable: true
|
|
3891
|
+
}
|
|
3892
|
+
},
|
|
3893
|
+
additionalProperties: false
|
|
1739
3894
|
},
|
|
1740
3895
|
nullable: true
|
|
1741
3896
|
}
|
|
@@ -1771,14 +3926,216 @@ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
1771
3926
|
interfaces: {
|
|
1772
3927
|
type: 'array',
|
|
1773
3928
|
items: {
|
|
1774
|
-
|
|
3929
|
+
type: 'object',
|
|
3930
|
+
properties: {
|
|
3931
|
+
type: {
|
|
3932
|
+
type: 'string',
|
|
3933
|
+
nullable: true
|
|
3934
|
+
},
|
|
3935
|
+
name: {
|
|
3936
|
+
type: 'string',
|
|
3937
|
+
nullable: true
|
|
3938
|
+
},
|
|
3939
|
+
methods: {
|
|
3940
|
+
type: 'array',
|
|
3941
|
+
items: {
|
|
3942
|
+
type: 'object',
|
|
3943
|
+
properties: {
|
|
3944
|
+
name: {
|
|
3945
|
+
type: 'string',
|
|
3946
|
+
nullable: true
|
|
3947
|
+
},
|
|
3948
|
+
parametersOnMethod: {
|
|
3949
|
+
type: 'array',
|
|
3950
|
+
items: {
|
|
3951
|
+
type: 'object',
|
|
3952
|
+
properties: {
|
|
3953
|
+
name: {
|
|
3954
|
+
type: 'string',
|
|
3955
|
+
nullable: true
|
|
3956
|
+
},
|
|
3957
|
+
typeAsString: {
|
|
3958
|
+
type: 'string',
|
|
3959
|
+
nullable: true
|
|
3960
|
+
},
|
|
3961
|
+
type: {
|
|
3962
|
+
type: 'string',
|
|
3963
|
+
nullable: true
|
|
3964
|
+
},
|
|
3965
|
+
typeSimple: {
|
|
3966
|
+
type: 'string',
|
|
3967
|
+
nullable: true
|
|
3968
|
+
},
|
|
3969
|
+
isOptional: {
|
|
3970
|
+
type: 'boolean'
|
|
3971
|
+
},
|
|
3972
|
+
defaultValue: {
|
|
3973
|
+
nullable: true
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
additionalProperties: false
|
|
3977
|
+
},
|
|
3978
|
+
nullable: true
|
|
3979
|
+
},
|
|
3980
|
+
returnValue: {
|
|
3981
|
+
type: 'object',
|
|
3982
|
+
properties: {
|
|
3983
|
+
type: {
|
|
3984
|
+
type: 'string',
|
|
3985
|
+
nullable: true
|
|
3986
|
+
},
|
|
3987
|
+
typeSimple: {
|
|
3988
|
+
type: 'string',
|
|
3989
|
+
nullable: true
|
|
3990
|
+
}
|
|
3991
|
+
},
|
|
3992
|
+
additionalProperties: false
|
|
3993
|
+
}
|
|
3994
|
+
},
|
|
3995
|
+
additionalProperties: false
|
|
3996
|
+
},
|
|
3997
|
+
nullable: true
|
|
3998
|
+
}
|
|
3999
|
+
},
|
|
4000
|
+
additionalProperties: false
|
|
1775
4001
|
},
|
|
1776
4002
|
nullable: true
|
|
1777
4003
|
},
|
|
1778
4004
|
actions: {
|
|
1779
4005
|
type: 'object',
|
|
1780
4006
|
additionalProperties: {
|
|
1781
|
-
|
|
4007
|
+
type: 'object',
|
|
4008
|
+
properties: {
|
|
4009
|
+
uniqueName: {
|
|
4010
|
+
type: 'string',
|
|
4011
|
+
nullable: true
|
|
4012
|
+
},
|
|
4013
|
+
name: {
|
|
4014
|
+
type: 'string',
|
|
4015
|
+
nullable: true
|
|
4016
|
+
},
|
|
4017
|
+
httpMethod: {
|
|
4018
|
+
type: 'string',
|
|
4019
|
+
nullable: true
|
|
4020
|
+
},
|
|
4021
|
+
url: {
|
|
4022
|
+
type: 'string',
|
|
4023
|
+
nullable: true
|
|
4024
|
+
},
|
|
4025
|
+
supportedVersions: {
|
|
4026
|
+
type: 'array',
|
|
4027
|
+
items: {
|
|
4028
|
+
type: 'string'
|
|
4029
|
+
},
|
|
4030
|
+
nullable: true
|
|
4031
|
+
},
|
|
4032
|
+
parametersOnMethod: {
|
|
4033
|
+
type: 'array',
|
|
4034
|
+
items: {
|
|
4035
|
+
type: 'object',
|
|
4036
|
+
properties: {
|
|
4037
|
+
name: {
|
|
4038
|
+
type: 'string',
|
|
4039
|
+
nullable: true
|
|
4040
|
+
},
|
|
4041
|
+
typeAsString: {
|
|
4042
|
+
type: 'string',
|
|
4043
|
+
nullable: true
|
|
4044
|
+
},
|
|
4045
|
+
type: {
|
|
4046
|
+
type: 'string',
|
|
4047
|
+
nullable: true
|
|
4048
|
+
},
|
|
4049
|
+
typeSimple: {
|
|
4050
|
+
type: 'string',
|
|
4051
|
+
nullable: true
|
|
4052
|
+
},
|
|
4053
|
+
isOptional: {
|
|
4054
|
+
type: 'boolean'
|
|
4055
|
+
},
|
|
4056
|
+
defaultValue: {
|
|
4057
|
+
nullable: true
|
|
4058
|
+
}
|
|
4059
|
+
},
|
|
4060
|
+
additionalProperties: false
|
|
4061
|
+
},
|
|
4062
|
+
nullable: true
|
|
4063
|
+
},
|
|
4064
|
+
parameters: {
|
|
4065
|
+
type: 'array',
|
|
4066
|
+
items: {
|
|
4067
|
+
type: 'object',
|
|
4068
|
+
properties: {
|
|
4069
|
+
nameOnMethod: {
|
|
4070
|
+
type: 'string',
|
|
4071
|
+
nullable: true
|
|
4072
|
+
},
|
|
4073
|
+
name: {
|
|
4074
|
+
type: 'string',
|
|
4075
|
+
nullable: true
|
|
4076
|
+
},
|
|
4077
|
+
jsonName: {
|
|
4078
|
+
type: 'string',
|
|
4079
|
+
nullable: true
|
|
4080
|
+
},
|
|
4081
|
+
type: {
|
|
4082
|
+
type: 'string',
|
|
4083
|
+
nullable: true
|
|
4084
|
+
},
|
|
4085
|
+
typeSimple: {
|
|
4086
|
+
type: 'string',
|
|
4087
|
+
nullable: true
|
|
4088
|
+
},
|
|
4089
|
+
isOptional: {
|
|
4090
|
+
type: 'boolean'
|
|
4091
|
+
},
|
|
4092
|
+
defaultValue: {
|
|
4093
|
+
nullable: true
|
|
4094
|
+
},
|
|
4095
|
+
constraintTypes: {
|
|
4096
|
+
type: 'array',
|
|
4097
|
+
items: {
|
|
4098
|
+
type: 'string'
|
|
4099
|
+
},
|
|
4100
|
+
nullable: true
|
|
4101
|
+
},
|
|
4102
|
+
bindingSourceId: {
|
|
4103
|
+
type: 'string',
|
|
4104
|
+
nullable: true
|
|
4105
|
+
},
|
|
4106
|
+
descriptorName: {
|
|
4107
|
+
type: 'string',
|
|
4108
|
+
nullable: true
|
|
4109
|
+
}
|
|
4110
|
+
},
|
|
4111
|
+
additionalProperties: false
|
|
4112
|
+
},
|
|
4113
|
+
nullable: true
|
|
4114
|
+
},
|
|
4115
|
+
returnValue: {
|
|
4116
|
+
type: 'object',
|
|
4117
|
+
properties: {
|
|
4118
|
+
type: {
|
|
4119
|
+
type: 'string',
|
|
4120
|
+
nullable: true
|
|
4121
|
+
},
|
|
4122
|
+
typeSimple: {
|
|
4123
|
+
type: 'string',
|
|
4124
|
+
nullable: true
|
|
4125
|
+
}
|
|
4126
|
+
},
|
|
4127
|
+
additionalProperties: false
|
|
4128
|
+
},
|
|
4129
|
+
allowAnonymous: {
|
|
4130
|
+
type: 'boolean',
|
|
4131
|
+
nullable: true
|
|
4132
|
+
},
|
|
4133
|
+
implementFrom: {
|
|
4134
|
+
type: 'string',
|
|
4135
|
+
nullable: true
|
|
4136
|
+
}
|
|
4137
|
+
},
|
|
4138
|
+
additionalProperties: false
|
|
1782
4139
|
},
|
|
1783
4140
|
nullable: true
|
|
1784
4141
|
}
|
|
@@ -1800,7 +4157,60 @@ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
|
1800
4157
|
methods: {
|
|
1801
4158
|
type: 'array',
|
|
1802
4159
|
items: {
|
|
1803
|
-
|
|
4160
|
+
type: 'object',
|
|
4161
|
+
properties: {
|
|
4162
|
+
name: {
|
|
4163
|
+
type: 'string',
|
|
4164
|
+
nullable: true
|
|
4165
|
+
},
|
|
4166
|
+
parametersOnMethod: {
|
|
4167
|
+
type: 'array',
|
|
4168
|
+
items: {
|
|
4169
|
+
type: 'object',
|
|
4170
|
+
properties: {
|
|
4171
|
+
name: {
|
|
4172
|
+
type: 'string',
|
|
4173
|
+
nullable: true
|
|
4174
|
+
},
|
|
4175
|
+
typeAsString: {
|
|
4176
|
+
type: 'string',
|
|
4177
|
+
nullable: true
|
|
4178
|
+
},
|
|
4179
|
+
type: {
|
|
4180
|
+
type: 'string',
|
|
4181
|
+
nullable: true
|
|
4182
|
+
},
|
|
4183
|
+
typeSimple: {
|
|
4184
|
+
type: 'string',
|
|
4185
|
+
nullable: true
|
|
4186
|
+
},
|
|
4187
|
+
isOptional: {
|
|
4188
|
+
type: 'boolean'
|
|
4189
|
+
},
|
|
4190
|
+
defaultValue: {
|
|
4191
|
+
nullable: true
|
|
4192
|
+
}
|
|
4193
|
+
},
|
|
4194
|
+
additionalProperties: false
|
|
4195
|
+
},
|
|
4196
|
+
nullable: true
|
|
4197
|
+
},
|
|
4198
|
+
returnValue: {
|
|
4199
|
+
type: 'object',
|
|
4200
|
+
properties: {
|
|
4201
|
+
type: {
|
|
4202
|
+
type: 'string',
|
|
4203
|
+
nullable: true
|
|
4204
|
+
},
|
|
4205
|
+
typeSimple: {
|
|
4206
|
+
type: 'string',
|
|
4207
|
+
nullable: true
|
|
4208
|
+
}
|
|
4209
|
+
},
|
|
4210
|
+
additionalProperties: false
|
|
4211
|
+
}
|
|
4212
|
+
},
|
|
4213
|
+
additionalProperties: false
|
|
1804
4214
|
},
|
|
1805
4215
|
nullable: true
|
|
1806
4216
|
}
|
|
@@ -1818,12 +4228,48 @@ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
|
1818
4228
|
parametersOnMethod: {
|
|
1819
4229
|
type: 'array',
|
|
1820
4230
|
items: {
|
|
1821
|
-
|
|
4231
|
+
type: 'object',
|
|
4232
|
+
properties: {
|
|
4233
|
+
name: {
|
|
4234
|
+
type: 'string',
|
|
4235
|
+
nullable: true
|
|
4236
|
+
},
|
|
4237
|
+
typeAsString: {
|
|
4238
|
+
type: 'string',
|
|
4239
|
+
nullable: true
|
|
4240
|
+
},
|
|
4241
|
+
type: {
|
|
4242
|
+
type: 'string',
|
|
4243
|
+
nullable: true
|
|
4244
|
+
},
|
|
4245
|
+
typeSimple: {
|
|
4246
|
+
type: 'string',
|
|
4247
|
+
nullable: true
|
|
4248
|
+
},
|
|
4249
|
+
isOptional: {
|
|
4250
|
+
type: 'boolean'
|
|
4251
|
+
},
|
|
4252
|
+
defaultValue: {
|
|
4253
|
+
nullable: true
|
|
4254
|
+
}
|
|
4255
|
+
},
|
|
4256
|
+
additionalProperties: false
|
|
1822
4257
|
},
|
|
1823
4258
|
nullable: true
|
|
1824
4259
|
},
|
|
1825
4260
|
returnValue: {
|
|
1826
|
-
|
|
4261
|
+
type: 'object',
|
|
4262
|
+
properties: {
|
|
4263
|
+
type: {
|
|
4264
|
+
type: 'string',
|
|
4265
|
+
nullable: true
|
|
4266
|
+
},
|
|
4267
|
+
typeSimple: {
|
|
4268
|
+
type: 'string',
|
|
4269
|
+
nullable: true
|
|
4270
|
+
}
|
|
4271
|
+
},
|
|
4272
|
+
additionalProperties: false
|
|
1827
4273
|
}
|
|
1828
4274
|
},
|
|
1829
4275
|
additionalProperties: false
|
|
@@ -1872,7 +4318,248 @@ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
1872
4318
|
controllers: {
|
|
1873
4319
|
type: 'object',
|
|
1874
4320
|
additionalProperties: {
|
|
1875
|
-
|
|
4321
|
+
type: 'object',
|
|
4322
|
+
properties: {
|
|
4323
|
+
controllerName: {
|
|
4324
|
+
type: 'string',
|
|
4325
|
+
nullable: true
|
|
4326
|
+
},
|
|
4327
|
+
controllerGroupName: {
|
|
4328
|
+
type: 'string',
|
|
4329
|
+
nullable: true
|
|
4330
|
+
},
|
|
4331
|
+
isRemoteService: {
|
|
4332
|
+
type: 'boolean'
|
|
4333
|
+
},
|
|
4334
|
+
isIntegrationService: {
|
|
4335
|
+
type: 'boolean'
|
|
4336
|
+
},
|
|
4337
|
+
apiVersion: {
|
|
4338
|
+
type: 'string',
|
|
4339
|
+
nullable: true
|
|
4340
|
+
},
|
|
4341
|
+
type: {
|
|
4342
|
+
type: 'string',
|
|
4343
|
+
nullable: true
|
|
4344
|
+
},
|
|
4345
|
+
interfaces: {
|
|
4346
|
+
type: 'array',
|
|
4347
|
+
items: {
|
|
4348
|
+
type: 'object',
|
|
4349
|
+
properties: {
|
|
4350
|
+
type: {
|
|
4351
|
+
type: 'string',
|
|
4352
|
+
nullable: true
|
|
4353
|
+
},
|
|
4354
|
+
name: {
|
|
4355
|
+
type: 'string',
|
|
4356
|
+
nullable: true
|
|
4357
|
+
},
|
|
4358
|
+
methods: {
|
|
4359
|
+
type: 'array',
|
|
4360
|
+
items: {
|
|
4361
|
+
type: 'object',
|
|
4362
|
+
properties: {
|
|
4363
|
+
name: {
|
|
4364
|
+
type: 'string',
|
|
4365
|
+
nullable: true
|
|
4366
|
+
},
|
|
4367
|
+
parametersOnMethod: {
|
|
4368
|
+
type: 'array',
|
|
4369
|
+
items: {
|
|
4370
|
+
type: 'object',
|
|
4371
|
+
properties: {
|
|
4372
|
+
name: {
|
|
4373
|
+
type: 'string',
|
|
4374
|
+
nullable: true
|
|
4375
|
+
},
|
|
4376
|
+
typeAsString: {
|
|
4377
|
+
type: 'string',
|
|
4378
|
+
nullable: true
|
|
4379
|
+
},
|
|
4380
|
+
type: {
|
|
4381
|
+
type: 'string',
|
|
4382
|
+
nullable: true
|
|
4383
|
+
},
|
|
4384
|
+
typeSimple: {
|
|
4385
|
+
type: 'string',
|
|
4386
|
+
nullable: true
|
|
4387
|
+
},
|
|
4388
|
+
isOptional: {
|
|
4389
|
+
type: 'boolean'
|
|
4390
|
+
},
|
|
4391
|
+
defaultValue: {
|
|
4392
|
+
nullable: true
|
|
4393
|
+
}
|
|
4394
|
+
},
|
|
4395
|
+
additionalProperties: false
|
|
4396
|
+
},
|
|
4397
|
+
nullable: true
|
|
4398
|
+
},
|
|
4399
|
+
returnValue: {
|
|
4400
|
+
type: 'object',
|
|
4401
|
+
properties: {
|
|
4402
|
+
type: {
|
|
4403
|
+
type: 'string',
|
|
4404
|
+
nullable: true
|
|
4405
|
+
},
|
|
4406
|
+
typeSimple: {
|
|
4407
|
+
type: 'string',
|
|
4408
|
+
nullable: true
|
|
4409
|
+
}
|
|
4410
|
+
},
|
|
4411
|
+
additionalProperties: false
|
|
4412
|
+
}
|
|
4413
|
+
},
|
|
4414
|
+
additionalProperties: false
|
|
4415
|
+
},
|
|
4416
|
+
nullable: true
|
|
4417
|
+
}
|
|
4418
|
+
},
|
|
4419
|
+
additionalProperties: false
|
|
4420
|
+
},
|
|
4421
|
+
nullable: true
|
|
4422
|
+
},
|
|
4423
|
+
actions: {
|
|
4424
|
+
type: 'object',
|
|
4425
|
+
additionalProperties: {
|
|
4426
|
+
type: 'object',
|
|
4427
|
+
properties: {
|
|
4428
|
+
uniqueName: {
|
|
4429
|
+
type: 'string',
|
|
4430
|
+
nullable: true
|
|
4431
|
+
},
|
|
4432
|
+
name: {
|
|
4433
|
+
type: 'string',
|
|
4434
|
+
nullable: true
|
|
4435
|
+
},
|
|
4436
|
+
httpMethod: {
|
|
4437
|
+
type: 'string',
|
|
4438
|
+
nullable: true
|
|
4439
|
+
},
|
|
4440
|
+
url: {
|
|
4441
|
+
type: 'string',
|
|
4442
|
+
nullable: true
|
|
4443
|
+
},
|
|
4444
|
+
supportedVersions: {
|
|
4445
|
+
type: 'array',
|
|
4446
|
+
items: {
|
|
4447
|
+
type: 'string'
|
|
4448
|
+
},
|
|
4449
|
+
nullable: true
|
|
4450
|
+
},
|
|
4451
|
+
parametersOnMethod: {
|
|
4452
|
+
type: 'array',
|
|
4453
|
+
items: {
|
|
4454
|
+
type: 'object',
|
|
4455
|
+
properties: {
|
|
4456
|
+
name: {
|
|
4457
|
+
type: 'string',
|
|
4458
|
+
nullable: true
|
|
4459
|
+
},
|
|
4460
|
+
typeAsString: {
|
|
4461
|
+
type: 'string',
|
|
4462
|
+
nullable: true
|
|
4463
|
+
},
|
|
4464
|
+
type: {
|
|
4465
|
+
type: 'string',
|
|
4466
|
+
nullable: true
|
|
4467
|
+
},
|
|
4468
|
+
typeSimple: {
|
|
4469
|
+
type: 'string',
|
|
4470
|
+
nullable: true
|
|
4471
|
+
},
|
|
4472
|
+
isOptional: {
|
|
4473
|
+
type: 'boolean'
|
|
4474
|
+
},
|
|
4475
|
+
defaultValue: {
|
|
4476
|
+
nullable: true
|
|
4477
|
+
}
|
|
4478
|
+
},
|
|
4479
|
+
additionalProperties: false
|
|
4480
|
+
},
|
|
4481
|
+
nullable: true
|
|
4482
|
+
},
|
|
4483
|
+
parameters: {
|
|
4484
|
+
type: 'array',
|
|
4485
|
+
items: {
|
|
4486
|
+
type: 'object',
|
|
4487
|
+
properties: {
|
|
4488
|
+
nameOnMethod: {
|
|
4489
|
+
type: 'string',
|
|
4490
|
+
nullable: true
|
|
4491
|
+
},
|
|
4492
|
+
name: {
|
|
4493
|
+
type: 'string',
|
|
4494
|
+
nullable: true
|
|
4495
|
+
},
|
|
4496
|
+
jsonName: {
|
|
4497
|
+
type: 'string',
|
|
4498
|
+
nullable: true
|
|
4499
|
+
},
|
|
4500
|
+
type: {
|
|
4501
|
+
type: 'string',
|
|
4502
|
+
nullable: true
|
|
4503
|
+
},
|
|
4504
|
+
typeSimple: {
|
|
4505
|
+
type: 'string',
|
|
4506
|
+
nullable: true
|
|
4507
|
+
},
|
|
4508
|
+
isOptional: {
|
|
4509
|
+
type: 'boolean'
|
|
4510
|
+
},
|
|
4511
|
+
defaultValue: {
|
|
4512
|
+
nullable: true
|
|
4513
|
+
},
|
|
4514
|
+
constraintTypes: {
|
|
4515
|
+
type: 'array',
|
|
4516
|
+
items: {
|
|
4517
|
+
type: 'string'
|
|
4518
|
+
},
|
|
4519
|
+
nullable: true
|
|
4520
|
+
},
|
|
4521
|
+
bindingSourceId: {
|
|
4522
|
+
type: 'string',
|
|
4523
|
+
nullable: true
|
|
4524
|
+
},
|
|
4525
|
+
descriptorName: {
|
|
4526
|
+
type: 'string',
|
|
4527
|
+
nullable: true
|
|
4528
|
+
}
|
|
4529
|
+
},
|
|
4530
|
+
additionalProperties: false
|
|
4531
|
+
},
|
|
4532
|
+
nullable: true
|
|
4533
|
+
},
|
|
4534
|
+
returnValue: {
|
|
4535
|
+
type: 'object',
|
|
4536
|
+
properties: {
|
|
4537
|
+
type: {
|
|
4538
|
+
type: 'string',
|
|
4539
|
+
nullable: true
|
|
4540
|
+
},
|
|
4541
|
+
typeSimple: {
|
|
4542
|
+
type: 'string',
|
|
4543
|
+
nullable: true
|
|
4544
|
+
}
|
|
4545
|
+
},
|
|
4546
|
+
additionalProperties: false
|
|
4547
|
+
},
|
|
4548
|
+
allowAnonymous: {
|
|
4549
|
+
type: 'boolean',
|
|
4550
|
+
nullable: true
|
|
4551
|
+
},
|
|
4552
|
+
implementFrom: {
|
|
4553
|
+
type: 'string',
|
|
4554
|
+
nullable: true
|
|
4555
|
+
}
|
|
4556
|
+
},
|
|
4557
|
+
additionalProperties: false
|
|
4558
|
+
},
|
|
4559
|
+
nullable: true
|
|
4560
|
+
}
|
|
4561
|
+
},
|
|
4562
|
+
additionalProperties: false
|
|
1876
4563
|
},
|
|
1877
4564
|
nullable: true
|
|
1878
4565
|
}
|
|
@@ -2023,7 +4710,51 @@ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
2023
4710
|
properties: {
|
|
2024
4711
|
type: 'array',
|
|
2025
4712
|
items: {
|
|
2026
|
-
|
|
4713
|
+
type: 'object',
|
|
4714
|
+
properties: {
|
|
4715
|
+
name: {
|
|
4716
|
+
type: 'string',
|
|
4717
|
+
nullable: true
|
|
4718
|
+
},
|
|
4719
|
+
jsonName: {
|
|
4720
|
+
type: 'string',
|
|
4721
|
+
nullable: true
|
|
4722
|
+
},
|
|
4723
|
+
type: {
|
|
4724
|
+
type: 'string',
|
|
4725
|
+
nullable: true
|
|
4726
|
+
},
|
|
4727
|
+
typeSimple: {
|
|
4728
|
+
type: 'string',
|
|
4729
|
+
nullable: true
|
|
4730
|
+
},
|
|
4731
|
+
isRequired: {
|
|
4732
|
+
type: 'boolean'
|
|
4733
|
+
},
|
|
4734
|
+
minLength: {
|
|
4735
|
+
type: 'integer',
|
|
4736
|
+
format: 'int32',
|
|
4737
|
+
nullable: true
|
|
4738
|
+
},
|
|
4739
|
+
maxLength: {
|
|
4740
|
+
type: 'integer',
|
|
4741
|
+
format: 'int32',
|
|
4742
|
+
nullable: true
|
|
4743
|
+
},
|
|
4744
|
+
minimum: {
|
|
4745
|
+
type: 'string',
|
|
4746
|
+
nullable: true
|
|
4747
|
+
},
|
|
4748
|
+
maximum: {
|
|
4749
|
+
type: 'string',
|
|
4750
|
+
nullable: true
|
|
4751
|
+
},
|
|
4752
|
+
regex: {
|
|
4753
|
+
type: 'string',
|
|
4754
|
+
nullable: true
|
|
4755
|
+
}
|
|
4756
|
+
},
|
|
4757
|
+
additionalProperties: false
|
|
2027
4758
|
},
|
|
2028
4759
|
nullable: true
|
|
2029
4760
|
}
|
|
@@ -2054,7 +4785,21 @@ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
2054
4785
|
validationErrors: {
|
|
2055
4786
|
type: 'array',
|
|
2056
4787
|
items: {
|
|
2057
|
-
|
|
4788
|
+
type: 'object',
|
|
4789
|
+
properties: {
|
|
4790
|
+
message: {
|
|
4791
|
+
type: 'string',
|
|
4792
|
+
nullable: true
|
|
4793
|
+
},
|
|
4794
|
+
members: {
|
|
4795
|
+
type: 'array',
|
|
4796
|
+
items: {
|
|
4797
|
+
type: 'string'
|
|
4798
|
+
},
|
|
4799
|
+
nullable: true
|
|
4800
|
+
}
|
|
4801
|
+
},
|
|
4802
|
+
additionalProperties: false
|
|
2058
4803
|
},
|
|
2059
4804
|
nullable: true
|
|
2060
4805
|
}
|
|
@@ -2066,7 +4811,48 @@ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
|
2066
4811
|
type: 'object',
|
|
2067
4812
|
properties: {
|
|
2068
4813
|
error: {
|
|
2069
|
-
|
|
4814
|
+
type: 'object',
|
|
4815
|
+
properties: {
|
|
4816
|
+
code: {
|
|
4817
|
+
type: 'string',
|
|
4818
|
+
nullable: true
|
|
4819
|
+
},
|
|
4820
|
+
message: {
|
|
4821
|
+
type: 'string',
|
|
4822
|
+
nullable: true
|
|
4823
|
+
},
|
|
4824
|
+
details: {
|
|
4825
|
+
type: 'string',
|
|
4826
|
+
nullable: true
|
|
4827
|
+
},
|
|
4828
|
+
data: {
|
|
4829
|
+
type: 'object',
|
|
4830
|
+
additionalProperties: {},
|
|
4831
|
+
nullable: true
|
|
4832
|
+
},
|
|
4833
|
+
validationErrors: {
|
|
4834
|
+
type: 'array',
|
|
4835
|
+
items: {
|
|
4836
|
+
type: 'object',
|
|
4837
|
+
properties: {
|
|
4838
|
+
message: {
|
|
4839
|
+
type: 'string',
|
|
4840
|
+
nullable: true
|
|
4841
|
+
},
|
|
4842
|
+
members: {
|
|
4843
|
+
type: 'array',
|
|
4844
|
+
items: {
|
|
4845
|
+
type: 'string'
|
|
4846
|
+
},
|
|
4847
|
+
nullable: true
|
|
4848
|
+
}
|
|
4849
|
+
},
|
|
4850
|
+
additionalProperties: false
|
|
4851
|
+
},
|
|
4852
|
+
nullable: true
|
|
4853
|
+
}
|
|
4854
|
+
},
|
|
4855
|
+
additionalProperties: false
|
|
2070
4856
|
}
|
|
2071
4857
|
},
|
|
2072
4858
|
additionalProperties: false
|