@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
|
@@ -6,7 +6,28 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_Gat
|
|
|
6
6
|
items: {
|
|
7
7
|
type: 'array',
|
|
8
8
|
items: {
|
|
9
|
-
|
|
9
|
+
type: 'object',
|
|
10
|
+
properties: {
|
|
11
|
+
extraProperties: {
|
|
12
|
+
type: 'object',
|
|
13
|
+
additionalProperties: {},
|
|
14
|
+
nullable: true,
|
|
15
|
+
readOnly: true
|
|
16
|
+
},
|
|
17
|
+
planId: {
|
|
18
|
+
type: 'string',
|
|
19
|
+
format: 'uuid'
|
|
20
|
+
},
|
|
21
|
+
gateway: {
|
|
22
|
+
type: 'string',
|
|
23
|
+
nullable: true
|
|
24
|
+
},
|
|
25
|
+
externalId: {
|
|
26
|
+
type: 'string',
|
|
27
|
+
nullable: true
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
additionalProperties: false
|
|
10
31
|
},
|
|
11
32
|
nullable: true
|
|
12
33
|
},
|
|
@@ -24,7 +45,28 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Plans_Pla
|
|
|
24
45
|
items: {
|
|
25
46
|
type: 'array',
|
|
26
47
|
items: {
|
|
27
|
-
|
|
48
|
+
type: 'object',
|
|
49
|
+
properties: {
|
|
50
|
+
extraProperties: {
|
|
51
|
+
type: 'object',
|
|
52
|
+
additionalProperties: {},
|
|
53
|
+
nullable: true,
|
|
54
|
+
readOnly: true
|
|
55
|
+
},
|
|
56
|
+
id: {
|
|
57
|
+
type: 'string',
|
|
58
|
+
format: 'uuid'
|
|
59
|
+
},
|
|
60
|
+
name: {
|
|
61
|
+
type: 'string',
|
|
62
|
+
nullable: true
|
|
63
|
+
},
|
|
64
|
+
concurrencyStamp: {
|
|
65
|
+
type: 'string',
|
|
66
|
+
nullable: true
|
|
67
|
+
}
|
|
68
|
+
},
|
|
69
|
+
additionalProperties: false
|
|
28
70
|
},
|
|
29
71
|
nullable: true
|
|
30
72
|
},
|
|
@@ -42,7 +84,102 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Payment_Requests_
|
|
|
42
84
|
items: {
|
|
43
85
|
type: 'array',
|
|
44
86
|
items: {
|
|
45
|
-
|
|
87
|
+
type: 'object',
|
|
88
|
+
properties: {
|
|
89
|
+
extraProperties: {
|
|
90
|
+
type: 'object',
|
|
91
|
+
additionalProperties: {},
|
|
92
|
+
nullable: true,
|
|
93
|
+
readOnly: true
|
|
94
|
+
},
|
|
95
|
+
id: {
|
|
96
|
+
type: 'string',
|
|
97
|
+
format: 'uuid'
|
|
98
|
+
},
|
|
99
|
+
products: {
|
|
100
|
+
type: 'array',
|
|
101
|
+
items: {
|
|
102
|
+
type: 'object',
|
|
103
|
+
properties: {
|
|
104
|
+
paymentRequestId: {
|
|
105
|
+
type: 'string',
|
|
106
|
+
format: 'uuid'
|
|
107
|
+
},
|
|
108
|
+
code: {
|
|
109
|
+
type: 'string',
|
|
110
|
+
nullable: true
|
|
111
|
+
},
|
|
112
|
+
name: {
|
|
113
|
+
type: 'string',
|
|
114
|
+
nullable: true
|
|
115
|
+
},
|
|
116
|
+
unitPrice: {
|
|
117
|
+
type: 'number',
|
|
118
|
+
format: 'float'
|
|
119
|
+
},
|
|
120
|
+
count: {
|
|
121
|
+
type: 'integer',
|
|
122
|
+
format: 'int32'
|
|
123
|
+
},
|
|
124
|
+
totalPrice: {
|
|
125
|
+
type: 'number',
|
|
126
|
+
format: 'float'
|
|
127
|
+
},
|
|
128
|
+
paymentType: {
|
|
129
|
+
enum: [0, 1],
|
|
130
|
+
type: 'integer',
|
|
131
|
+
format: 'int32'
|
|
132
|
+
},
|
|
133
|
+
planId: {
|
|
134
|
+
type: 'string',
|
|
135
|
+
format: 'uuid'
|
|
136
|
+
},
|
|
137
|
+
extraProperties: {
|
|
138
|
+
type: 'object',
|
|
139
|
+
additionalProperties: {},
|
|
140
|
+
nullable: true
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
additionalProperties: false
|
|
144
|
+
},
|
|
145
|
+
nullable: true
|
|
146
|
+
},
|
|
147
|
+
currency: {
|
|
148
|
+
type: 'string',
|
|
149
|
+
nullable: true
|
|
150
|
+
},
|
|
151
|
+
state: {
|
|
152
|
+
enum: [0, 1, 2, 3],
|
|
153
|
+
type: 'integer',
|
|
154
|
+
format: 'int32'
|
|
155
|
+
},
|
|
156
|
+
failReason: {
|
|
157
|
+
type: 'string',
|
|
158
|
+
nullable: true
|
|
159
|
+
},
|
|
160
|
+
emailSendDate: {
|
|
161
|
+
type: 'string',
|
|
162
|
+
format: 'date-time',
|
|
163
|
+
nullable: true
|
|
164
|
+
},
|
|
165
|
+
gateway: {
|
|
166
|
+
type: 'string',
|
|
167
|
+
nullable: true
|
|
168
|
+
},
|
|
169
|
+
externalSubscriptionId: {
|
|
170
|
+
type: 'string',
|
|
171
|
+
nullable: true
|
|
172
|
+
},
|
|
173
|
+
totalPrice: {
|
|
174
|
+
type: 'number',
|
|
175
|
+
format: 'float'
|
|
176
|
+
},
|
|
177
|
+
creationTime: {
|
|
178
|
+
type: 'string',
|
|
179
|
+
format: 'date-time'
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
additionalProperties: false
|
|
46
183
|
},
|
|
47
184
|
nullable: true
|
|
48
185
|
},
|
|
@@ -60,7 +197,41 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Saas_Host_Dtos_Ed
|
|
|
60
197
|
items: {
|
|
61
198
|
type: 'array',
|
|
62
199
|
items: {
|
|
63
|
-
|
|
200
|
+
type: 'object',
|
|
201
|
+
properties: {
|
|
202
|
+
extraProperties: {
|
|
203
|
+
type: 'object',
|
|
204
|
+
additionalProperties: {},
|
|
205
|
+
nullable: true,
|
|
206
|
+
readOnly: true
|
|
207
|
+
},
|
|
208
|
+
id: {
|
|
209
|
+
type: 'string',
|
|
210
|
+
format: 'uuid'
|
|
211
|
+
},
|
|
212
|
+
displayName: {
|
|
213
|
+
type: 'string',
|
|
214
|
+
nullable: true
|
|
215
|
+
},
|
|
216
|
+
planId: {
|
|
217
|
+
type: 'string',
|
|
218
|
+
format: 'uuid',
|
|
219
|
+
nullable: true
|
|
220
|
+
},
|
|
221
|
+
planName: {
|
|
222
|
+
type: 'string',
|
|
223
|
+
nullable: true
|
|
224
|
+
},
|
|
225
|
+
concurrencyStamp: {
|
|
226
|
+
type: 'string',
|
|
227
|
+
nullable: true
|
|
228
|
+
},
|
|
229
|
+
tenantCount: {
|
|
230
|
+
type: 'integer',
|
|
231
|
+
format: 'int64'
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
additionalProperties: false
|
|
64
235
|
},
|
|
65
236
|
nullable: true
|
|
66
237
|
},
|
|
@@ -78,7 +249,55 @@ export const $Volo_Abp_Application_Dtos_PagedResultDto_1__Volo_Saas_Host_Dtos_Sa
|
|
|
78
249
|
items: {
|
|
79
250
|
type: 'array',
|
|
80
251
|
items: {
|
|
81
|
-
|
|
252
|
+
type: 'object',
|
|
253
|
+
properties: {
|
|
254
|
+
extraProperties: {
|
|
255
|
+
type: 'object',
|
|
256
|
+
additionalProperties: {},
|
|
257
|
+
nullable: true,
|
|
258
|
+
readOnly: true
|
|
259
|
+
},
|
|
260
|
+
id: {
|
|
261
|
+
type: 'string',
|
|
262
|
+
format: 'uuid'
|
|
263
|
+
},
|
|
264
|
+
name: {
|
|
265
|
+
type: 'string',
|
|
266
|
+
nullable: true
|
|
267
|
+
},
|
|
268
|
+
editionId: {
|
|
269
|
+
type: 'string',
|
|
270
|
+
format: 'uuid',
|
|
271
|
+
nullable: true
|
|
272
|
+
},
|
|
273
|
+
editionEndDateUtc: {
|
|
274
|
+
type: 'string',
|
|
275
|
+
format: 'date-time',
|
|
276
|
+
nullable: true
|
|
277
|
+
},
|
|
278
|
+
editionName: {
|
|
279
|
+
type: 'string',
|
|
280
|
+
nullable: true
|
|
281
|
+
},
|
|
282
|
+
hasDefaultConnectionString: {
|
|
283
|
+
type: 'boolean'
|
|
284
|
+
},
|
|
285
|
+
activationState: {
|
|
286
|
+
enum: [0, 1, 2],
|
|
287
|
+
type: 'integer',
|
|
288
|
+
format: 'int32'
|
|
289
|
+
},
|
|
290
|
+
activationEndDate: {
|
|
291
|
+
type: 'string',
|
|
292
|
+
format: 'date-time',
|
|
293
|
+
nullable: true
|
|
294
|
+
},
|
|
295
|
+
concurrencyStamp: {
|
|
296
|
+
type: 'string',
|
|
297
|
+
nullable: true
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
additionalProperties: false
|
|
82
301
|
},
|
|
83
302
|
nullable: true
|
|
84
303
|
},
|
|
@@ -108,37 +327,604 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfi
|
|
|
108
327
|
type: 'object',
|
|
109
328
|
properties: {
|
|
110
329
|
localization: {
|
|
111
|
-
|
|
330
|
+
type: 'object',
|
|
331
|
+
properties: {
|
|
332
|
+
values: {
|
|
333
|
+
type: 'object',
|
|
334
|
+
additionalProperties: {
|
|
335
|
+
type: 'object',
|
|
336
|
+
additionalProperties: {
|
|
337
|
+
type: 'string'
|
|
338
|
+
}
|
|
339
|
+
},
|
|
340
|
+
nullable: true
|
|
341
|
+
},
|
|
342
|
+
resources: {
|
|
343
|
+
type: 'object',
|
|
344
|
+
additionalProperties: {
|
|
345
|
+
type: 'object',
|
|
346
|
+
properties: {
|
|
347
|
+
texts: {
|
|
348
|
+
type: 'object',
|
|
349
|
+
additionalProperties: {
|
|
350
|
+
type: 'string'
|
|
351
|
+
},
|
|
352
|
+
nullable: true
|
|
353
|
+
},
|
|
354
|
+
baseResources: {
|
|
355
|
+
type: 'array',
|
|
356
|
+
items: {
|
|
357
|
+
type: 'string'
|
|
358
|
+
},
|
|
359
|
+
nullable: true
|
|
360
|
+
}
|
|
361
|
+
},
|
|
362
|
+
additionalProperties: false
|
|
363
|
+
},
|
|
364
|
+
nullable: true
|
|
365
|
+
},
|
|
366
|
+
languages: {
|
|
367
|
+
type: 'array',
|
|
368
|
+
items: {
|
|
369
|
+
type: 'object',
|
|
370
|
+
properties: {
|
|
371
|
+
cultureName: {
|
|
372
|
+
type: 'string',
|
|
373
|
+
nullable: true
|
|
374
|
+
},
|
|
375
|
+
uiCultureName: {
|
|
376
|
+
type: 'string',
|
|
377
|
+
nullable: true
|
|
378
|
+
},
|
|
379
|
+
displayName: {
|
|
380
|
+
type: 'string',
|
|
381
|
+
nullable: true
|
|
382
|
+
},
|
|
383
|
+
twoLetterISOLanguageName: {
|
|
384
|
+
type: 'string',
|
|
385
|
+
nullable: true,
|
|
386
|
+
readOnly: true
|
|
387
|
+
},
|
|
388
|
+
flagIcon: {
|
|
389
|
+
type: 'string',
|
|
390
|
+
nullable: true
|
|
391
|
+
}
|
|
392
|
+
},
|
|
393
|
+
additionalProperties: false
|
|
394
|
+
},
|
|
395
|
+
nullable: true
|
|
396
|
+
},
|
|
397
|
+
currentCulture: {
|
|
398
|
+
type: 'object',
|
|
399
|
+
properties: {
|
|
400
|
+
displayName: {
|
|
401
|
+
type: 'string',
|
|
402
|
+
nullable: true
|
|
403
|
+
},
|
|
404
|
+
englishName: {
|
|
405
|
+
type: 'string',
|
|
406
|
+
nullable: true
|
|
407
|
+
},
|
|
408
|
+
threeLetterIsoLanguageName: {
|
|
409
|
+
type: 'string',
|
|
410
|
+
nullable: true
|
|
411
|
+
},
|
|
412
|
+
twoLetterIsoLanguageName: {
|
|
413
|
+
type: 'string',
|
|
414
|
+
nullable: true
|
|
415
|
+
},
|
|
416
|
+
isRightToLeft: {
|
|
417
|
+
type: 'boolean'
|
|
418
|
+
},
|
|
419
|
+
cultureName: {
|
|
420
|
+
type: 'string',
|
|
421
|
+
nullable: true
|
|
422
|
+
},
|
|
423
|
+
name: {
|
|
424
|
+
type: 'string',
|
|
425
|
+
nullable: true
|
|
426
|
+
},
|
|
427
|
+
nativeName: {
|
|
428
|
+
type: 'string',
|
|
429
|
+
nullable: true
|
|
430
|
+
},
|
|
431
|
+
dateTimeFormat: {
|
|
432
|
+
type: 'object',
|
|
433
|
+
properties: {
|
|
434
|
+
calendarAlgorithmType: {
|
|
435
|
+
type: 'string',
|
|
436
|
+
nullable: true
|
|
437
|
+
},
|
|
438
|
+
dateTimeFormatLong: {
|
|
439
|
+
type: 'string',
|
|
440
|
+
nullable: true
|
|
441
|
+
},
|
|
442
|
+
shortDatePattern: {
|
|
443
|
+
type: 'string',
|
|
444
|
+
nullable: true
|
|
445
|
+
},
|
|
446
|
+
fullDateTimePattern: {
|
|
447
|
+
type: 'string',
|
|
448
|
+
nullable: true
|
|
449
|
+
},
|
|
450
|
+
dateSeparator: {
|
|
451
|
+
type: 'string',
|
|
452
|
+
nullable: true
|
|
453
|
+
},
|
|
454
|
+
shortTimePattern: {
|
|
455
|
+
type: 'string',
|
|
456
|
+
nullable: true
|
|
457
|
+
},
|
|
458
|
+
longTimePattern: {
|
|
459
|
+
type: 'string',
|
|
460
|
+
nullable: true
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
additionalProperties: false
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
additionalProperties: false
|
|
467
|
+
},
|
|
468
|
+
defaultResourceName: {
|
|
469
|
+
type: 'string',
|
|
470
|
+
nullable: true
|
|
471
|
+
},
|
|
472
|
+
languagesMap: {
|
|
473
|
+
type: 'object',
|
|
474
|
+
additionalProperties: {
|
|
475
|
+
type: 'array',
|
|
476
|
+
items: {
|
|
477
|
+
type: 'object',
|
|
478
|
+
properties: {
|
|
479
|
+
name: {
|
|
480
|
+
type: 'string',
|
|
481
|
+
nullable: true
|
|
482
|
+
},
|
|
483
|
+
value: {
|
|
484
|
+
type: 'string',
|
|
485
|
+
nullable: true
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
additionalProperties: false
|
|
489
|
+
}
|
|
490
|
+
},
|
|
491
|
+
nullable: true
|
|
492
|
+
},
|
|
493
|
+
languageFilesMap: {
|
|
494
|
+
type: 'object',
|
|
495
|
+
additionalProperties: {
|
|
496
|
+
type: 'array',
|
|
497
|
+
items: {
|
|
498
|
+
type: 'object',
|
|
499
|
+
properties: {
|
|
500
|
+
name: {
|
|
501
|
+
type: 'string',
|
|
502
|
+
nullable: true
|
|
503
|
+
},
|
|
504
|
+
value: {
|
|
505
|
+
type: 'string',
|
|
506
|
+
nullable: true
|
|
507
|
+
}
|
|
508
|
+
},
|
|
509
|
+
additionalProperties: false
|
|
510
|
+
}
|
|
511
|
+
},
|
|
512
|
+
nullable: true
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
additionalProperties: false
|
|
112
516
|
},
|
|
113
517
|
auth: {
|
|
114
|
-
|
|
518
|
+
type: 'object',
|
|
519
|
+
properties: {
|
|
520
|
+
grantedPolicies: {
|
|
521
|
+
type: 'object',
|
|
522
|
+
additionalProperties: {
|
|
523
|
+
type: 'boolean'
|
|
524
|
+
},
|
|
525
|
+
nullable: true
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
additionalProperties: false
|
|
115
529
|
},
|
|
116
530
|
setting: {
|
|
117
|
-
|
|
531
|
+
type: 'object',
|
|
532
|
+
properties: {
|
|
533
|
+
values: {
|
|
534
|
+
type: 'object',
|
|
535
|
+
additionalProperties: {
|
|
536
|
+
type: 'string',
|
|
537
|
+
nullable: true
|
|
538
|
+
},
|
|
539
|
+
nullable: true
|
|
540
|
+
}
|
|
541
|
+
},
|
|
542
|
+
additionalProperties: false
|
|
118
543
|
},
|
|
119
544
|
currentUser: {
|
|
120
|
-
|
|
545
|
+
type: 'object',
|
|
546
|
+
properties: {
|
|
547
|
+
isAuthenticated: {
|
|
548
|
+
type: 'boolean'
|
|
549
|
+
},
|
|
550
|
+
id: {
|
|
551
|
+
type: 'string',
|
|
552
|
+
format: 'uuid',
|
|
553
|
+
nullable: true
|
|
554
|
+
},
|
|
555
|
+
tenantId: {
|
|
556
|
+
type: 'string',
|
|
557
|
+
format: 'uuid',
|
|
558
|
+
nullable: true
|
|
559
|
+
},
|
|
560
|
+
impersonatorUserId: {
|
|
561
|
+
type: 'string',
|
|
562
|
+
format: 'uuid',
|
|
563
|
+
nullable: true
|
|
564
|
+
},
|
|
565
|
+
impersonatorTenantId: {
|
|
566
|
+
type: 'string',
|
|
567
|
+
format: 'uuid',
|
|
568
|
+
nullable: true
|
|
569
|
+
},
|
|
570
|
+
impersonatorUserName: {
|
|
571
|
+
type: 'string',
|
|
572
|
+
nullable: true
|
|
573
|
+
},
|
|
574
|
+
impersonatorTenantName: {
|
|
575
|
+
type: 'string',
|
|
576
|
+
nullable: true
|
|
577
|
+
},
|
|
578
|
+
userName: {
|
|
579
|
+
type: 'string',
|
|
580
|
+
nullable: true
|
|
581
|
+
},
|
|
582
|
+
name: {
|
|
583
|
+
type: 'string',
|
|
584
|
+
nullable: true
|
|
585
|
+
},
|
|
586
|
+
surName: {
|
|
587
|
+
type: 'string',
|
|
588
|
+
nullable: true
|
|
589
|
+
},
|
|
590
|
+
email: {
|
|
591
|
+
type: 'string',
|
|
592
|
+
nullable: true
|
|
593
|
+
},
|
|
594
|
+
emailVerified: {
|
|
595
|
+
type: 'boolean'
|
|
596
|
+
},
|
|
597
|
+
phoneNumber: {
|
|
598
|
+
type: 'string',
|
|
599
|
+
nullable: true
|
|
600
|
+
},
|
|
601
|
+
phoneNumberVerified: {
|
|
602
|
+
type: 'boolean'
|
|
603
|
+
},
|
|
604
|
+
roles: {
|
|
605
|
+
type: 'array',
|
|
606
|
+
items: {
|
|
607
|
+
type: 'string'
|
|
608
|
+
},
|
|
609
|
+
nullable: true
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
additionalProperties: false
|
|
121
613
|
},
|
|
122
614
|
features: {
|
|
123
|
-
|
|
615
|
+
type: 'object',
|
|
616
|
+
properties: {
|
|
617
|
+
values: {
|
|
618
|
+
type: 'object',
|
|
619
|
+
additionalProperties: {
|
|
620
|
+
type: 'string',
|
|
621
|
+
nullable: true
|
|
622
|
+
},
|
|
623
|
+
nullable: true
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
additionalProperties: false
|
|
124
627
|
},
|
|
125
628
|
globalFeatures: {
|
|
126
|
-
|
|
629
|
+
type: 'object',
|
|
630
|
+
properties: {
|
|
631
|
+
enabledFeatures: {
|
|
632
|
+
uniqueItems: true,
|
|
633
|
+
type: 'array',
|
|
634
|
+
items: {
|
|
635
|
+
type: 'string'
|
|
636
|
+
},
|
|
637
|
+
nullable: true
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
additionalProperties: false
|
|
127
641
|
},
|
|
128
642
|
multiTenancy: {
|
|
129
|
-
|
|
643
|
+
type: 'object',
|
|
644
|
+
properties: {
|
|
645
|
+
isEnabled: {
|
|
646
|
+
type: 'boolean'
|
|
647
|
+
}
|
|
648
|
+
},
|
|
649
|
+
additionalProperties: false
|
|
130
650
|
},
|
|
131
651
|
currentTenant: {
|
|
132
|
-
|
|
652
|
+
type: 'object',
|
|
653
|
+
properties: {
|
|
654
|
+
id: {
|
|
655
|
+
type: 'string',
|
|
656
|
+
format: 'uuid',
|
|
657
|
+
nullable: true
|
|
658
|
+
},
|
|
659
|
+
name: {
|
|
660
|
+
type: 'string',
|
|
661
|
+
nullable: true
|
|
662
|
+
},
|
|
663
|
+
isAvailable: {
|
|
664
|
+
type: 'boolean'
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
additionalProperties: false
|
|
133
668
|
},
|
|
134
669
|
timing: {
|
|
135
|
-
|
|
670
|
+
type: 'object',
|
|
671
|
+
properties: {
|
|
672
|
+
timeZone: {
|
|
673
|
+
type: 'object',
|
|
674
|
+
properties: {
|
|
675
|
+
iana: {
|
|
676
|
+
type: 'object',
|
|
677
|
+
properties: {
|
|
678
|
+
timeZoneName: {
|
|
679
|
+
type: 'string',
|
|
680
|
+
nullable: true
|
|
681
|
+
}
|
|
682
|
+
},
|
|
683
|
+
additionalProperties: false
|
|
684
|
+
},
|
|
685
|
+
windows: {
|
|
686
|
+
type: 'object',
|
|
687
|
+
properties: {
|
|
688
|
+
timeZoneId: {
|
|
689
|
+
type: 'string',
|
|
690
|
+
nullable: true
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
additionalProperties: false
|
|
694
|
+
}
|
|
695
|
+
},
|
|
696
|
+
additionalProperties: false
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
additionalProperties: false
|
|
136
700
|
},
|
|
137
701
|
clock: {
|
|
138
|
-
|
|
702
|
+
type: 'object',
|
|
703
|
+
properties: {
|
|
704
|
+
kind: {
|
|
705
|
+
type: 'string',
|
|
706
|
+
nullable: true
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
additionalProperties: false
|
|
139
710
|
},
|
|
140
711
|
objectExtensions: {
|
|
141
|
-
|
|
712
|
+
type: 'object',
|
|
713
|
+
properties: {
|
|
714
|
+
modules: {
|
|
715
|
+
type: 'object',
|
|
716
|
+
additionalProperties: {
|
|
717
|
+
type: 'object',
|
|
718
|
+
properties: {
|
|
719
|
+
entities: {
|
|
720
|
+
type: 'object',
|
|
721
|
+
additionalProperties: {
|
|
722
|
+
type: 'object',
|
|
723
|
+
properties: {
|
|
724
|
+
properties: {
|
|
725
|
+
type: 'object',
|
|
726
|
+
additionalProperties: {
|
|
727
|
+
type: 'object',
|
|
728
|
+
properties: {
|
|
729
|
+
type: {
|
|
730
|
+
type: 'string',
|
|
731
|
+
nullable: true
|
|
732
|
+
},
|
|
733
|
+
typeSimple: {
|
|
734
|
+
type: 'string',
|
|
735
|
+
nullable: true
|
|
736
|
+
},
|
|
737
|
+
displayName: {
|
|
738
|
+
type: 'object',
|
|
739
|
+
properties: {
|
|
740
|
+
name: {
|
|
741
|
+
type: 'string',
|
|
742
|
+
nullable: true
|
|
743
|
+
},
|
|
744
|
+
resource: {
|
|
745
|
+
type: 'string',
|
|
746
|
+
nullable: true
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
additionalProperties: false
|
|
750
|
+
},
|
|
751
|
+
api: {
|
|
752
|
+
type: 'object',
|
|
753
|
+
properties: {
|
|
754
|
+
onGet: {
|
|
755
|
+
type: 'object',
|
|
756
|
+
properties: {
|
|
757
|
+
isAvailable: {
|
|
758
|
+
type: 'boolean'
|
|
759
|
+
}
|
|
760
|
+
},
|
|
761
|
+
additionalProperties: false
|
|
762
|
+
},
|
|
763
|
+
onCreate: {
|
|
764
|
+
type: 'object',
|
|
765
|
+
properties: {
|
|
766
|
+
isAvailable: {
|
|
767
|
+
type: 'boolean'
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
additionalProperties: false
|
|
771
|
+
},
|
|
772
|
+
onUpdate: {
|
|
773
|
+
type: 'object',
|
|
774
|
+
properties: {
|
|
775
|
+
isAvailable: {
|
|
776
|
+
type: 'boolean'
|
|
777
|
+
}
|
|
778
|
+
},
|
|
779
|
+
additionalProperties: false
|
|
780
|
+
}
|
|
781
|
+
},
|
|
782
|
+
additionalProperties: false
|
|
783
|
+
},
|
|
784
|
+
ui: {
|
|
785
|
+
type: 'object',
|
|
786
|
+
properties: {
|
|
787
|
+
onTable: {
|
|
788
|
+
type: 'object',
|
|
789
|
+
properties: {
|
|
790
|
+
isVisible: {
|
|
791
|
+
type: 'boolean'
|
|
792
|
+
}
|
|
793
|
+
},
|
|
794
|
+
additionalProperties: false
|
|
795
|
+
},
|
|
796
|
+
onCreateForm: {
|
|
797
|
+
type: 'object',
|
|
798
|
+
properties: {
|
|
799
|
+
isVisible: {
|
|
800
|
+
type: 'boolean'
|
|
801
|
+
}
|
|
802
|
+
},
|
|
803
|
+
additionalProperties: false
|
|
804
|
+
},
|
|
805
|
+
onEditForm: {
|
|
806
|
+
type: 'object',
|
|
807
|
+
properties: {
|
|
808
|
+
isVisible: {
|
|
809
|
+
type: 'boolean'
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
additionalProperties: false
|
|
813
|
+
},
|
|
814
|
+
lookup: {
|
|
815
|
+
type: 'object',
|
|
816
|
+
properties: {
|
|
817
|
+
url: {
|
|
818
|
+
type: 'string',
|
|
819
|
+
nullable: true
|
|
820
|
+
},
|
|
821
|
+
resultListPropertyName: {
|
|
822
|
+
type: 'string',
|
|
823
|
+
nullable: true
|
|
824
|
+
},
|
|
825
|
+
displayPropertyName: {
|
|
826
|
+
type: 'string',
|
|
827
|
+
nullable: true
|
|
828
|
+
},
|
|
829
|
+
valuePropertyName: {
|
|
830
|
+
type: 'string',
|
|
831
|
+
nullable: true
|
|
832
|
+
},
|
|
833
|
+
filterParamName: {
|
|
834
|
+
type: 'string',
|
|
835
|
+
nullable: true
|
|
836
|
+
}
|
|
837
|
+
},
|
|
838
|
+
additionalProperties: false
|
|
839
|
+
}
|
|
840
|
+
},
|
|
841
|
+
additionalProperties: false
|
|
842
|
+
},
|
|
843
|
+
attributes: {
|
|
844
|
+
type: 'array',
|
|
845
|
+
items: {
|
|
846
|
+
type: 'object',
|
|
847
|
+
properties: {
|
|
848
|
+
typeSimple: {
|
|
849
|
+
type: 'string',
|
|
850
|
+
nullable: true
|
|
851
|
+
},
|
|
852
|
+
config: {
|
|
853
|
+
type: 'object',
|
|
854
|
+
additionalProperties: {},
|
|
855
|
+
nullable: true
|
|
856
|
+
}
|
|
857
|
+
},
|
|
858
|
+
additionalProperties: false
|
|
859
|
+
},
|
|
860
|
+
nullable: true
|
|
861
|
+
},
|
|
862
|
+
configuration: {
|
|
863
|
+
type: 'object',
|
|
864
|
+
additionalProperties: {},
|
|
865
|
+
nullable: true
|
|
866
|
+
},
|
|
867
|
+
defaultValue: {
|
|
868
|
+
nullable: true
|
|
869
|
+
}
|
|
870
|
+
},
|
|
871
|
+
additionalProperties: false
|
|
872
|
+
},
|
|
873
|
+
nullable: true
|
|
874
|
+
},
|
|
875
|
+
configuration: {
|
|
876
|
+
type: 'object',
|
|
877
|
+
additionalProperties: {},
|
|
878
|
+
nullable: true
|
|
879
|
+
}
|
|
880
|
+
},
|
|
881
|
+
additionalProperties: false
|
|
882
|
+
},
|
|
883
|
+
nullable: true
|
|
884
|
+
},
|
|
885
|
+
configuration: {
|
|
886
|
+
type: 'object',
|
|
887
|
+
additionalProperties: {},
|
|
888
|
+
nullable: true
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
additionalProperties: false
|
|
892
|
+
},
|
|
893
|
+
nullable: true
|
|
894
|
+
},
|
|
895
|
+
enums: {
|
|
896
|
+
type: 'object',
|
|
897
|
+
additionalProperties: {
|
|
898
|
+
type: 'object',
|
|
899
|
+
properties: {
|
|
900
|
+
fields: {
|
|
901
|
+
type: 'array',
|
|
902
|
+
items: {
|
|
903
|
+
type: 'object',
|
|
904
|
+
properties: {
|
|
905
|
+
name: {
|
|
906
|
+
type: 'string',
|
|
907
|
+
nullable: true
|
|
908
|
+
},
|
|
909
|
+
value: {
|
|
910
|
+
nullable: true
|
|
911
|
+
}
|
|
912
|
+
},
|
|
913
|
+
additionalProperties: false
|
|
914
|
+
},
|
|
915
|
+
nullable: true
|
|
916
|
+
},
|
|
917
|
+
localizationResource: {
|
|
918
|
+
type: 'string',
|
|
919
|
+
nullable: true
|
|
920
|
+
}
|
|
921
|
+
},
|
|
922
|
+
additionalProperties: false
|
|
923
|
+
},
|
|
924
|
+
nullable: true
|
|
925
|
+
}
|
|
926
|
+
},
|
|
927
|
+
additionalProperties: false
|
|
142
928
|
},
|
|
143
929
|
extraProperties: {
|
|
144
930
|
type: 'object',
|
|
@@ -195,19 +981,128 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
195
981
|
resources: {
|
|
196
982
|
type: 'object',
|
|
197
983
|
additionalProperties: {
|
|
198
|
-
|
|
984
|
+
type: 'object',
|
|
985
|
+
properties: {
|
|
986
|
+
texts: {
|
|
987
|
+
type: 'object',
|
|
988
|
+
additionalProperties: {
|
|
989
|
+
type: 'string'
|
|
990
|
+
},
|
|
991
|
+
nullable: true
|
|
992
|
+
},
|
|
993
|
+
baseResources: {
|
|
994
|
+
type: 'array',
|
|
995
|
+
items: {
|
|
996
|
+
type: 'string'
|
|
997
|
+
},
|
|
998
|
+
nullable: true
|
|
999
|
+
}
|
|
1000
|
+
},
|
|
1001
|
+
additionalProperties: false
|
|
199
1002
|
},
|
|
200
1003
|
nullable: true
|
|
201
1004
|
},
|
|
202
1005
|
languages: {
|
|
203
1006
|
type: 'array',
|
|
204
1007
|
items: {
|
|
205
|
-
|
|
1008
|
+
type: 'object',
|
|
1009
|
+
properties: {
|
|
1010
|
+
cultureName: {
|
|
1011
|
+
type: 'string',
|
|
1012
|
+
nullable: true
|
|
1013
|
+
},
|
|
1014
|
+
uiCultureName: {
|
|
1015
|
+
type: 'string',
|
|
1016
|
+
nullable: true
|
|
1017
|
+
},
|
|
1018
|
+
displayName: {
|
|
1019
|
+
type: 'string',
|
|
1020
|
+
nullable: true
|
|
1021
|
+
},
|
|
1022
|
+
twoLetterISOLanguageName: {
|
|
1023
|
+
type: 'string',
|
|
1024
|
+
nullable: true,
|
|
1025
|
+
readOnly: true
|
|
1026
|
+
},
|
|
1027
|
+
flagIcon: {
|
|
1028
|
+
type: 'string',
|
|
1029
|
+
nullable: true
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
additionalProperties: false
|
|
206
1033
|
},
|
|
207
1034
|
nullable: true
|
|
208
1035
|
},
|
|
209
1036
|
currentCulture: {
|
|
210
|
-
|
|
1037
|
+
type: 'object',
|
|
1038
|
+
properties: {
|
|
1039
|
+
displayName: {
|
|
1040
|
+
type: 'string',
|
|
1041
|
+
nullable: true
|
|
1042
|
+
},
|
|
1043
|
+
englishName: {
|
|
1044
|
+
type: 'string',
|
|
1045
|
+
nullable: true
|
|
1046
|
+
},
|
|
1047
|
+
threeLetterIsoLanguageName: {
|
|
1048
|
+
type: 'string',
|
|
1049
|
+
nullable: true
|
|
1050
|
+
},
|
|
1051
|
+
twoLetterIsoLanguageName: {
|
|
1052
|
+
type: 'string',
|
|
1053
|
+
nullable: true
|
|
1054
|
+
},
|
|
1055
|
+
isRightToLeft: {
|
|
1056
|
+
type: 'boolean'
|
|
1057
|
+
},
|
|
1058
|
+
cultureName: {
|
|
1059
|
+
type: 'string',
|
|
1060
|
+
nullable: true
|
|
1061
|
+
},
|
|
1062
|
+
name: {
|
|
1063
|
+
type: 'string',
|
|
1064
|
+
nullable: true
|
|
1065
|
+
},
|
|
1066
|
+
nativeName: {
|
|
1067
|
+
type: 'string',
|
|
1068
|
+
nullable: true
|
|
1069
|
+
},
|
|
1070
|
+
dateTimeFormat: {
|
|
1071
|
+
type: 'object',
|
|
1072
|
+
properties: {
|
|
1073
|
+
calendarAlgorithmType: {
|
|
1074
|
+
type: 'string',
|
|
1075
|
+
nullable: true
|
|
1076
|
+
},
|
|
1077
|
+
dateTimeFormatLong: {
|
|
1078
|
+
type: 'string',
|
|
1079
|
+
nullable: true
|
|
1080
|
+
},
|
|
1081
|
+
shortDatePattern: {
|
|
1082
|
+
type: 'string',
|
|
1083
|
+
nullable: true
|
|
1084
|
+
},
|
|
1085
|
+
fullDateTimePattern: {
|
|
1086
|
+
type: 'string',
|
|
1087
|
+
nullable: true
|
|
1088
|
+
},
|
|
1089
|
+
dateSeparator: {
|
|
1090
|
+
type: 'string',
|
|
1091
|
+
nullable: true
|
|
1092
|
+
},
|
|
1093
|
+
shortTimePattern: {
|
|
1094
|
+
type: 'string',
|
|
1095
|
+
nullable: true
|
|
1096
|
+
},
|
|
1097
|
+
longTimePattern: {
|
|
1098
|
+
type: 'string',
|
|
1099
|
+
nullable: true
|
|
1100
|
+
}
|
|
1101
|
+
},
|
|
1102
|
+
additionalProperties: false
|
|
1103
|
+
}
|
|
1104
|
+
},
|
|
1105
|
+
additionalProperties: false
|
|
211
1106
|
},
|
|
212
1107
|
defaultResourceName: {
|
|
213
1108
|
type: 'string',
|
|
@@ -218,7 +1113,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
218
1113
|
additionalProperties: {
|
|
219
1114
|
type: 'array',
|
|
220
1115
|
items: {
|
|
221
|
-
|
|
1116
|
+
type: 'object',
|
|
1117
|
+
properties: {
|
|
1118
|
+
name: {
|
|
1119
|
+
type: 'string',
|
|
1120
|
+
nullable: true
|
|
1121
|
+
},
|
|
1122
|
+
value: {
|
|
1123
|
+
type: 'string',
|
|
1124
|
+
nullable: true
|
|
1125
|
+
}
|
|
1126
|
+
},
|
|
1127
|
+
additionalProperties: false
|
|
222
1128
|
}
|
|
223
1129
|
},
|
|
224
1130
|
nullable: true
|
|
@@ -228,7 +1134,18 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
228
1134
|
additionalProperties: {
|
|
229
1135
|
type: 'array',
|
|
230
1136
|
items: {
|
|
231
|
-
|
|
1137
|
+
type: 'object',
|
|
1138
|
+
properties: {
|
|
1139
|
+
name: {
|
|
1140
|
+
type: 'string',
|
|
1141
|
+
nullable: true
|
|
1142
|
+
},
|
|
1143
|
+
value: {
|
|
1144
|
+
type: 'string',
|
|
1145
|
+
nullable: true
|
|
1146
|
+
}
|
|
1147
|
+
},
|
|
1148
|
+
additionalProperties: false
|
|
232
1149
|
}
|
|
233
1150
|
},
|
|
234
1151
|
nullable: true
|
|
@@ -243,7 +1160,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocal
|
|
|
243
1160
|
resources: {
|
|
244
1161
|
type: 'object',
|
|
245
1162
|
additionalProperties: {
|
|
246
|
-
|
|
1163
|
+
type: 'object',
|
|
1164
|
+
properties: {
|
|
1165
|
+
texts: {
|
|
1166
|
+
type: 'object',
|
|
1167
|
+
additionalProperties: {
|
|
1168
|
+
type: 'string'
|
|
1169
|
+
},
|
|
1170
|
+
nullable: true
|
|
1171
|
+
},
|
|
1172
|
+
baseResources: {
|
|
1173
|
+
type: 'array',
|
|
1174
|
+
items: {
|
|
1175
|
+
type: 'string'
|
|
1176
|
+
},
|
|
1177
|
+
nullable: true
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
additionalProperties: false
|
|
247
1181
|
},
|
|
248
1182
|
nullable: true
|
|
249
1183
|
}
|
|
@@ -333,7 +1267,38 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDt
|
|
|
333
1267
|
nullable: true
|
|
334
1268
|
},
|
|
335
1269
|
dateTimeFormat: {
|
|
336
|
-
|
|
1270
|
+
type: 'object',
|
|
1271
|
+
properties: {
|
|
1272
|
+
calendarAlgorithmType: {
|
|
1273
|
+
type: 'string',
|
|
1274
|
+
nullable: true
|
|
1275
|
+
},
|
|
1276
|
+
dateTimeFormatLong: {
|
|
1277
|
+
type: 'string',
|
|
1278
|
+
nullable: true
|
|
1279
|
+
},
|
|
1280
|
+
shortDatePattern: {
|
|
1281
|
+
type: 'string',
|
|
1282
|
+
nullable: true
|
|
1283
|
+
},
|
|
1284
|
+
fullDateTimePattern: {
|
|
1285
|
+
type: 'string',
|
|
1286
|
+
nullable: true
|
|
1287
|
+
},
|
|
1288
|
+
dateSeparator: {
|
|
1289
|
+
type: 'string',
|
|
1290
|
+
nullable: true
|
|
1291
|
+
},
|
|
1292
|
+
shortTimePattern: {
|
|
1293
|
+
type: 'string',
|
|
1294
|
+
nullable: true
|
|
1295
|
+
},
|
|
1296
|
+
longTimePattern: {
|
|
1297
|
+
type: 'string',
|
|
1298
|
+
nullable: true
|
|
1299
|
+
}
|
|
1300
|
+
},
|
|
1301
|
+
additionalProperties: false
|
|
337
1302
|
}
|
|
338
1303
|
},
|
|
339
1304
|
additionalProperties: false
|
|
@@ -462,7 +1427,151 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
462
1427
|
properties: {
|
|
463
1428
|
type: 'object',
|
|
464
1429
|
additionalProperties: {
|
|
465
|
-
|
|
1430
|
+
type: 'object',
|
|
1431
|
+
properties: {
|
|
1432
|
+
type: {
|
|
1433
|
+
type: 'string',
|
|
1434
|
+
nullable: true
|
|
1435
|
+
},
|
|
1436
|
+
typeSimple: {
|
|
1437
|
+
type: 'string',
|
|
1438
|
+
nullable: true
|
|
1439
|
+
},
|
|
1440
|
+
displayName: {
|
|
1441
|
+
type: 'object',
|
|
1442
|
+
properties: {
|
|
1443
|
+
name: {
|
|
1444
|
+
type: 'string',
|
|
1445
|
+
nullable: true
|
|
1446
|
+
},
|
|
1447
|
+
resource: {
|
|
1448
|
+
type: 'string',
|
|
1449
|
+
nullable: true
|
|
1450
|
+
}
|
|
1451
|
+
},
|
|
1452
|
+
additionalProperties: false
|
|
1453
|
+
},
|
|
1454
|
+
api: {
|
|
1455
|
+
type: 'object',
|
|
1456
|
+
properties: {
|
|
1457
|
+
onGet: {
|
|
1458
|
+
type: 'object',
|
|
1459
|
+
properties: {
|
|
1460
|
+
isAvailable: {
|
|
1461
|
+
type: 'boolean'
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
additionalProperties: false
|
|
1465
|
+
},
|
|
1466
|
+
onCreate: {
|
|
1467
|
+
type: 'object',
|
|
1468
|
+
properties: {
|
|
1469
|
+
isAvailable: {
|
|
1470
|
+
type: 'boolean'
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
additionalProperties: false
|
|
1474
|
+
},
|
|
1475
|
+
onUpdate: {
|
|
1476
|
+
type: 'object',
|
|
1477
|
+
properties: {
|
|
1478
|
+
isAvailable: {
|
|
1479
|
+
type: 'boolean'
|
|
1480
|
+
}
|
|
1481
|
+
},
|
|
1482
|
+
additionalProperties: false
|
|
1483
|
+
}
|
|
1484
|
+
},
|
|
1485
|
+
additionalProperties: false
|
|
1486
|
+
},
|
|
1487
|
+
ui: {
|
|
1488
|
+
type: 'object',
|
|
1489
|
+
properties: {
|
|
1490
|
+
onTable: {
|
|
1491
|
+
type: 'object',
|
|
1492
|
+
properties: {
|
|
1493
|
+
isVisible: {
|
|
1494
|
+
type: 'boolean'
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1497
|
+
additionalProperties: false
|
|
1498
|
+
},
|
|
1499
|
+
onCreateForm: {
|
|
1500
|
+
type: 'object',
|
|
1501
|
+
properties: {
|
|
1502
|
+
isVisible: {
|
|
1503
|
+
type: 'boolean'
|
|
1504
|
+
}
|
|
1505
|
+
},
|
|
1506
|
+
additionalProperties: false
|
|
1507
|
+
},
|
|
1508
|
+
onEditForm: {
|
|
1509
|
+
type: 'object',
|
|
1510
|
+
properties: {
|
|
1511
|
+
isVisible: {
|
|
1512
|
+
type: 'boolean'
|
|
1513
|
+
}
|
|
1514
|
+
},
|
|
1515
|
+
additionalProperties: false
|
|
1516
|
+
},
|
|
1517
|
+
lookup: {
|
|
1518
|
+
type: 'object',
|
|
1519
|
+
properties: {
|
|
1520
|
+
url: {
|
|
1521
|
+
type: 'string',
|
|
1522
|
+
nullable: true
|
|
1523
|
+
},
|
|
1524
|
+
resultListPropertyName: {
|
|
1525
|
+
type: 'string',
|
|
1526
|
+
nullable: true
|
|
1527
|
+
},
|
|
1528
|
+
displayPropertyName: {
|
|
1529
|
+
type: 'string',
|
|
1530
|
+
nullable: true
|
|
1531
|
+
},
|
|
1532
|
+
valuePropertyName: {
|
|
1533
|
+
type: 'string',
|
|
1534
|
+
nullable: true
|
|
1535
|
+
},
|
|
1536
|
+
filterParamName: {
|
|
1537
|
+
type: 'string',
|
|
1538
|
+
nullable: true
|
|
1539
|
+
}
|
|
1540
|
+
},
|
|
1541
|
+
additionalProperties: false
|
|
1542
|
+
}
|
|
1543
|
+
},
|
|
1544
|
+
additionalProperties: false
|
|
1545
|
+
},
|
|
1546
|
+
attributes: {
|
|
1547
|
+
type: 'array',
|
|
1548
|
+
items: {
|
|
1549
|
+
type: 'object',
|
|
1550
|
+
properties: {
|
|
1551
|
+
typeSimple: {
|
|
1552
|
+
type: 'string',
|
|
1553
|
+
nullable: true
|
|
1554
|
+
},
|
|
1555
|
+
config: {
|
|
1556
|
+
type: 'object',
|
|
1557
|
+
additionalProperties: {},
|
|
1558
|
+
nullable: true
|
|
1559
|
+
}
|
|
1560
|
+
},
|
|
1561
|
+
additionalProperties: false
|
|
1562
|
+
},
|
|
1563
|
+
nullable: true
|
|
1564
|
+
},
|
|
1565
|
+
configuration: {
|
|
1566
|
+
type: 'object',
|
|
1567
|
+
additionalProperties: {},
|
|
1568
|
+
nullable: true
|
|
1569
|
+
},
|
|
1570
|
+
defaultValue: {
|
|
1571
|
+
nullable: true
|
|
1572
|
+
}
|
|
1573
|
+
},
|
|
1574
|
+
additionalProperties: false
|
|
466
1575
|
},
|
|
467
1576
|
nullable: true
|
|
468
1577
|
},
|
|
@@ -481,7 +1590,17 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
481
1590
|
fields: {
|
|
482
1591
|
type: 'array',
|
|
483
1592
|
items: {
|
|
484
|
-
|
|
1593
|
+
type: 'object',
|
|
1594
|
+
properties: {
|
|
1595
|
+
name: {
|
|
1596
|
+
type: 'string',
|
|
1597
|
+
nullable: true
|
|
1598
|
+
},
|
|
1599
|
+
value: {
|
|
1600
|
+
nullable: true
|
|
1601
|
+
}
|
|
1602
|
+
},
|
|
1603
|
+
additionalProperties: false
|
|
485
1604
|
},
|
|
486
1605
|
nullable: true
|
|
487
1606
|
},
|
|
@@ -521,13 +1640,31 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
521
1640
|
type: 'object',
|
|
522
1641
|
properties: {
|
|
523
1642
|
onGet: {
|
|
524
|
-
|
|
1643
|
+
type: 'object',
|
|
1644
|
+
properties: {
|
|
1645
|
+
isAvailable: {
|
|
1646
|
+
type: 'boolean'
|
|
1647
|
+
}
|
|
1648
|
+
},
|
|
1649
|
+
additionalProperties: false
|
|
525
1650
|
},
|
|
526
1651
|
onCreate: {
|
|
527
|
-
|
|
1652
|
+
type: 'object',
|
|
1653
|
+
properties: {
|
|
1654
|
+
isAvailable: {
|
|
1655
|
+
type: 'boolean'
|
|
1656
|
+
}
|
|
1657
|
+
},
|
|
1658
|
+
additionalProperties: false
|
|
528
1659
|
},
|
|
529
1660
|
onUpdate: {
|
|
530
|
-
|
|
1661
|
+
type: 'object',
|
|
1662
|
+
properties: {
|
|
1663
|
+
isAvailable: {
|
|
1664
|
+
type: 'boolean'
|
|
1665
|
+
}
|
|
1666
|
+
},
|
|
1667
|
+
additionalProperties: false
|
|
531
1668
|
}
|
|
532
1669
|
},
|
|
533
1670
|
additionalProperties: false
|
|
@@ -581,18 +1718,127 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
581
1718
|
nullable: true
|
|
582
1719
|
},
|
|
583
1720
|
displayName: {
|
|
584
|
-
|
|
1721
|
+
type: 'object',
|
|
1722
|
+
properties: {
|
|
1723
|
+
name: {
|
|
1724
|
+
type: 'string',
|
|
1725
|
+
nullable: true
|
|
1726
|
+
},
|
|
1727
|
+
resource: {
|
|
1728
|
+
type: 'string',
|
|
1729
|
+
nullable: true
|
|
1730
|
+
}
|
|
1731
|
+
},
|
|
1732
|
+
additionalProperties: false
|
|
585
1733
|
},
|
|
586
1734
|
api: {
|
|
587
|
-
|
|
1735
|
+
type: 'object',
|
|
1736
|
+
properties: {
|
|
1737
|
+
onGet: {
|
|
1738
|
+
type: 'object',
|
|
1739
|
+
properties: {
|
|
1740
|
+
isAvailable: {
|
|
1741
|
+
type: 'boolean'
|
|
1742
|
+
}
|
|
1743
|
+
},
|
|
1744
|
+
additionalProperties: false
|
|
1745
|
+
},
|
|
1746
|
+
onCreate: {
|
|
1747
|
+
type: 'object',
|
|
1748
|
+
properties: {
|
|
1749
|
+
isAvailable: {
|
|
1750
|
+
type: 'boolean'
|
|
1751
|
+
}
|
|
1752
|
+
},
|
|
1753
|
+
additionalProperties: false
|
|
1754
|
+
},
|
|
1755
|
+
onUpdate: {
|
|
1756
|
+
type: 'object',
|
|
1757
|
+
properties: {
|
|
1758
|
+
isAvailable: {
|
|
1759
|
+
type: 'boolean'
|
|
1760
|
+
}
|
|
1761
|
+
},
|
|
1762
|
+
additionalProperties: false
|
|
1763
|
+
}
|
|
1764
|
+
},
|
|
1765
|
+
additionalProperties: false
|
|
588
1766
|
},
|
|
589
1767
|
ui: {
|
|
590
|
-
|
|
1768
|
+
type: 'object',
|
|
1769
|
+
properties: {
|
|
1770
|
+
onTable: {
|
|
1771
|
+
type: 'object',
|
|
1772
|
+
properties: {
|
|
1773
|
+
isVisible: {
|
|
1774
|
+
type: 'boolean'
|
|
1775
|
+
}
|
|
1776
|
+
},
|
|
1777
|
+
additionalProperties: false
|
|
1778
|
+
},
|
|
1779
|
+
onCreateForm: {
|
|
1780
|
+
type: 'object',
|
|
1781
|
+
properties: {
|
|
1782
|
+
isVisible: {
|
|
1783
|
+
type: 'boolean'
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
additionalProperties: false
|
|
1787
|
+
},
|
|
1788
|
+
onEditForm: {
|
|
1789
|
+
type: 'object',
|
|
1790
|
+
properties: {
|
|
1791
|
+
isVisible: {
|
|
1792
|
+
type: 'boolean'
|
|
1793
|
+
}
|
|
1794
|
+
},
|
|
1795
|
+
additionalProperties: false
|
|
1796
|
+
},
|
|
1797
|
+
lookup: {
|
|
1798
|
+
type: 'object',
|
|
1799
|
+
properties: {
|
|
1800
|
+
url: {
|
|
1801
|
+
type: 'string',
|
|
1802
|
+
nullable: true
|
|
1803
|
+
},
|
|
1804
|
+
resultListPropertyName: {
|
|
1805
|
+
type: 'string',
|
|
1806
|
+
nullable: true
|
|
1807
|
+
},
|
|
1808
|
+
displayPropertyName: {
|
|
1809
|
+
type: 'string',
|
|
1810
|
+
nullable: true
|
|
1811
|
+
},
|
|
1812
|
+
valuePropertyName: {
|
|
1813
|
+
type: 'string',
|
|
1814
|
+
nullable: true
|
|
1815
|
+
},
|
|
1816
|
+
filterParamName: {
|
|
1817
|
+
type: 'string',
|
|
1818
|
+
nullable: true
|
|
1819
|
+
}
|
|
1820
|
+
},
|
|
1821
|
+
additionalProperties: false
|
|
1822
|
+
}
|
|
1823
|
+
},
|
|
1824
|
+
additionalProperties: false
|
|
591
1825
|
},
|
|
592
1826
|
attributes: {
|
|
593
1827
|
type: 'array',
|
|
594
1828
|
items: {
|
|
595
|
-
|
|
1829
|
+
type: 'object',
|
|
1830
|
+
properties: {
|
|
1831
|
+
typeSimple: {
|
|
1832
|
+
type: 'string',
|
|
1833
|
+
nullable: true
|
|
1834
|
+
},
|
|
1835
|
+
config: {
|
|
1836
|
+
type: 'object',
|
|
1837
|
+
additionalProperties: {},
|
|
1838
|
+
nullable: true
|
|
1839
|
+
}
|
|
1840
|
+
},
|
|
1841
|
+
additionalProperties: false
|
|
596
1842
|
},
|
|
597
1843
|
nullable: true
|
|
598
1844
|
},
|
|
@@ -612,16 +1858,57 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
612
1858
|
type: 'object',
|
|
613
1859
|
properties: {
|
|
614
1860
|
onTable: {
|
|
615
|
-
|
|
1861
|
+
type: 'object',
|
|
1862
|
+
properties: {
|
|
1863
|
+
isVisible: {
|
|
1864
|
+
type: 'boolean'
|
|
1865
|
+
}
|
|
1866
|
+
},
|
|
1867
|
+
additionalProperties: false
|
|
616
1868
|
},
|
|
617
1869
|
onCreateForm: {
|
|
618
|
-
|
|
1870
|
+
type: 'object',
|
|
1871
|
+
properties: {
|
|
1872
|
+
isVisible: {
|
|
1873
|
+
type: 'boolean'
|
|
1874
|
+
}
|
|
1875
|
+
},
|
|
1876
|
+
additionalProperties: false
|
|
619
1877
|
},
|
|
620
1878
|
onEditForm: {
|
|
621
|
-
|
|
1879
|
+
type: 'object',
|
|
1880
|
+
properties: {
|
|
1881
|
+
isVisible: {
|
|
1882
|
+
type: 'boolean'
|
|
1883
|
+
}
|
|
1884
|
+
},
|
|
1885
|
+
additionalProperties: false
|
|
622
1886
|
},
|
|
623
1887
|
lookup: {
|
|
624
|
-
|
|
1888
|
+
type: 'object',
|
|
1889
|
+
properties: {
|
|
1890
|
+
url: {
|
|
1891
|
+
type: 'string',
|
|
1892
|
+
nullable: true
|
|
1893
|
+
},
|
|
1894
|
+
resultListPropertyName: {
|
|
1895
|
+
type: 'string',
|
|
1896
|
+
nullable: true
|
|
1897
|
+
},
|
|
1898
|
+
displayPropertyName: {
|
|
1899
|
+
type: 'string',
|
|
1900
|
+
nullable: true
|
|
1901
|
+
},
|
|
1902
|
+
valuePropertyName: {
|
|
1903
|
+
type: 'string',
|
|
1904
|
+
nullable: true
|
|
1905
|
+
},
|
|
1906
|
+
filterParamName: {
|
|
1907
|
+
type: 'string',
|
|
1908
|
+
nullable: true
|
|
1909
|
+
}
|
|
1910
|
+
},
|
|
1911
|
+
additionalProperties: false
|
|
625
1912
|
}
|
|
626
1913
|
},
|
|
627
1914
|
additionalProperties: false
|
|
@@ -695,7 +1982,166 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
695
1982
|
entities: {
|
|
696
1983
|
type: 'object',
|
|
697
1984
|
additionalProperties: {
|
|
698
|
-
|
|
1985
|
+
type: 'object',
|
|
1986
|
+
properties: {
|
|
1987
|
+
properties: {
|
|
1988
|
+
type: 'object',
|
|
1989
|
+
additionalProperties: {
|
|
1990
|
+
type: 'object',
|
|
1991
|
+
properties: {
|
|
1992
|
+
type: {
|
|
1993
|
+
type: 'string',
|
|
1994
|
+
nullable: true
|
|
1995
|
+
},
|
|
1996
|
+
typeSimple: {
|
|
1997
|
+
type: 'string',
|
|
1998
|
+
nullable: true
|
|
1999
|
+
},
|
|
2000
|
+
displayName: {
|
|
2001
|
+
type: 'object',
|
|
2002
|
+
properties: {
|
|
2003
|
+
name: {
|
|
2004
|
+
type: 'string',
|
|
2005
|
+
nullable: true
|
|
2006
|
+
},
|
|
2007
|
+
resource: {
|
|
2008
|
+
type: 'string',
|
|
2009
|
+
nullable: true
|
|
2010
|
+
}
|
|
2011
|
+
},
|
|
2012
|
+
additionalProperties: false
|
|
2013
|
+
},
|
|
2014
|
+
api: {
|
|
2015
|
+
type: 'object',
|
|
2016
|
+
properties: {
|
|
2017
|
+
onGet: {
|
|
2018
|
+
type: 'object',
|
|
2019
|
+
properties: {
|
|
2020
|
+
isAvailable: {
|
|
2021
|
+
type: 'boolean'
|
|
2022
|
+
}
|
|
2023
|
+
},
|
|
2024
|
+
additionalProperties: false
|
|
2025
|
+
},
|
|
2026
|
+
onCreate: {
|
|
2027
|
+
type: 'object',
|
|
2028
|
+
properties: {
|
|
2029
|
+
isAvailable: {
|
|
2030
|
+
type: 'boolean'
|
|
2031
|
+
}
|
|
2032
|
+
},
|
|
2033
|
+
additionalProperties: false
|
|
2034
|
+
},
|
|
2035
|
+
onUpdate: {
|
|
2036
|
+
type: 'object',
|
|
2037
|
+
properties: {
|
|
2038
|
+
isAvailable: {
|
|
2039
|
+
type: 'boolean'
|
|
2040
|
+
}
|
|
2041
|
+
},
|
|
2042
|
+
additionalProperties: false
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
additionalProperties: false
|
|
2046
|
+
},
|
|
2047
|
+
ui: {
|
|
2048
|
+
type: 'object',
|
|
2049
|
+
properties: {
|
|
2050
|
+
onTable: {
|
|
2051
|
+
type: 'object',
|
|
2052
|
+
properties: {
|
|
2053
|
+
isVisible: {
|
|
2054
|
+
type: 'boolean'
|
|
2055
|
+
}
|
|
2056
|
+
},
|
|
2057
|
+
additionalProperties: false
|
|
2058
|
+
},
|
|
2059
|
+
onCreateForm: {
|
|
2060
|
+
type: 'object',
|
|
2061
|
+
properties: {
|
|
2062
|
+
isVisible: {
|
|
2063
|
+
type: 'boolean'
|
|
2064
|
+
}
|
|
2065
|
+
},
|
|
2066
|
+
additionalProperties: false
|
|
2067
|
+
},
|
|
2068
|
+
onEditForm: {
|
|
2069
|
+
type: 'object',
|
|
2070
|
+
properties: {
|
|
2071
|
+
isVisible: {
|
|
2072
|
+
type: 'boolean'
|
|
2073
|
+
}
|
|
2074
|
+
},
|
|
2075
|
+
additionalProperties: false
|
|
2076
|
+
},
|
|
2077
|
+
lookup: {
|
|
2078
|
+
type: 'object',
|
|
2079
|
+
properties: {
|
|
2080
|
+
url: {
|
|
2081
|
+
type: 'string',
|
|
2082
|
+
nullable: true
|
|
2083
|
+
},
|
|
2084
|
+
resultListPropertyName: {
|
|
2085
|
+
type: 'string',
|
|
2086
|
+
nullable: true
|
|
2087
|
+
},
|
|
2088
|
+
displayPropertyName: {
|
|
2089
|
+
type: 'string',
|
|
2090
|
+
nullable: true
|
|
2091
|
+
},
|
|
2092
|
+
valuePropertyName: {
|
|
2093
|
+
type: 'string',
|
|
2094
|
+
nullable: true
|
|
2095
|
+
},
|
|
2096
|
+
filterParamName: {
|
|
2097
|
+
type: 'string',
|
|
2098
|
+
nullable: true
|
|
2099
|
+
}
|
|
2100
|
+
},
|
|
2101
|
+
additionalProperties: false
|
|
2102
|
+
}
|
|
2103
|
+
},
|
|
2104
|
+
additionalProperties: false
|
|
2105
|
+
},
|
|
2106
|
+
attributes: {
|
|
2107
|
+
type: 'array',
|
|
2108
|
+
items: {
|
|
2109
|
+
type: 'object',
|
|
2110
|
+
properties: {
|
|
2111
|
+
typeSimple: {
|
|
2112
|
+
type: 'string',
|
|
2113
|
+
nullable: true
|
|
2114
|
+
},
|
|
2115
|
+
config: {
|
|
2116
|
+
type: 'object',
|
|
2117
|
+
additionalProperties: {},
|
|
2118
|
+
nullable: true
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
additionalProperties: false
|
|
2122
|
+
},
|
|
2123
|
+
nullable: true
|
|
2124
|
+
},
|
|
2125
|
+
configuration: {
|
|
2126
|
+
type: 'object',
|
|
2127
|
+
additionalProperties: {},
|
|
2128
|
+
nullable: true
|
|
2129
|
+
},
|
|
2130
|
+
defaultValue: {
|
|
2131
|
+
nullable: true
|
|
2132
|
+
}
|
|
2133
|
+
},
|
|
2134
|
+
additionalProperties: false
|
|
2135
|
+
},
|
|
2136
|
+
nullable: true
|
|
2137
|
+
},
|
|
2138
|
+
configuration: {
|
|
2139
|
+
type: 'object',
|
|
2140
|
+
additionalProperties: {},
|
|
2141
|
+
nullable: true
|
|
2142
|
+
}
|
|
2143
|
+
},
|
|
2144
|
+
additionalProperties: false
|
|
699
2145
|
},
|
|
700
2146
|
nullable: true
|
|
701
2147
|
},
|
|
@@ -714,14 +2160,212 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_
|
|
|
714
2160
|
modules: {
|
|
715
2161
|
type: 'object',
|
|
716
2162
|
additionalProperties: {
|
|
717
|
-
|
|
2163
|
+
type: 'object',
|
|
2164
|
+
properties: {
|
|
2165
|
+
entities: {
|
|
2166
|
+
type: 'object',
|
|
2167
|
+
additionalProperties: {
|
|
2168
|
+
type: 'object',
|
|
2169
|
+
properties: {
|
|
2170
|
+
properties: {
|
|
2171
|
+
type: 'object',
|
|
2172
|
+
additionalProperties: {
|
|
2173
|
+
type: 'object',
|
|
2174
|
+
properties: {
|
|
2175
|
+
type: {
|
|
2176
|
+
type: 'string',
|
|
2177
|
+
nullable: true
|
|
2178
|
+
},
|
|
2179
|
+
typeSimple: {
|
|
2180
|
+
type: 'string',
|
|
2181
|
+
nullable: true
|
|
2182
|
+
},
|
|
2183
|
+
displayName: {
|
|
2184
|
+
type: 'object',
|
|
2185
|
+
properties: {
|
|
2186
|
+
name: {
|
|
2187
|
+
type: 'string',
|
|
2188
|
+
nullable: true
|
|
2189
|
+
},
|
|
2190
|
+
resource: {
|
|
2191
|
+
type: 'string',
|
|
2192
|
+
nullable: true
|
|
2193
|
+
}
|
|
2194
|
+
},
|
|
2195
|
+
additionalProperties: false
|
|
2196
|
+
},
|
|
2197
|
+
api: {
|
|
2198
|
+
type: 'object',
|
|
2199
|
+
properties: {
|
|
2200
|
+
onGet: {
|
|
2201
|
+
type: 'object',
|
|
2202
|
+
properties: {
|
|
2203
|
+
isAvailable: {
|
|
2204
|
+
type: 'boolean'
|
|
2205
|
+
}
|
|
2206
|
+
},
|
|
2207
|
+
additionalProperties: false
|
|
2208
|
+
},
|
|
2209
|
+
onCreate: {
|
|
2210
|
+
type: 'object',
|
|
2211
|
+
properties: {
|
|
2212
|
+
isAvailable: {
|
|
2213
|
+
type: 'boolean'
|
|
2214
|
+
}
|
|
2215
|
+
},
|
|
2216
|
+
additionalProperties: false
|
|
2217
|
+
},
|
|
2218
|
+
onUpdate: {
|
|
2219
|
+
type: 'object',
|
|
2220
|
+
properties: {
|
|
2221
|
+
isAvailable: {
|
|
2222
|
+
type: 'boolean'
|
|
2223
|
+
}
|
|
2224
|
+
},
|
|
2225
|
+
additionalProperties: false
|
|
2226
|
+
}
|
|
2227
|
+
},
|
|
2228
|
+
additionalProperties: false
|
|
2229
|
+
},
|
|
2230
|
+
ui: {
|
|
2231
|
+
type: 'object',
|
|
2232
|
+
properties: {
|
|
2233
|
+
onTable: {
|
|
2234
|
+
type: 'object',
|
|
2235
|
+
properties: {
|
|
2236
|
+
isVisible: {
|
|
2237
|
+
type: 'boolean'
|
|
2238
|
+
}
|
|
2239
|
+
},
|
|
2240
|
+
additionalProperties: false
|
|
2241
|
+
},
|
|
2242
|
+
onCreateForm: {
|
|
2243
|
+
type: 'object',
|
|
2244
|
+
properties: {
|
|
2245
|
+
isVisible: {
|
|
2246
|
+
type: 'boolean'
|
|
2247
|
+
}
|
|
2248
|
+
},
|
|
2249
|
+
additionalProperties: false
|
|
2250
|
+
},
|
|
2251
|
+
onEditForm: {
|
|
2252
|
+
type: 'object',
|
|
2253
|
+
properties: {
|
|
2254
|
+
isVisible: {
|
|
2255
|
+
type: 'boolean'
|
|
2256
|
+
}
|
|
2257
|
+
},
|
|
2258
|
+
additionalProperties: false
|
|
2259
|
+
},
|
|
2260
|
+
lookup: {
|
|
2261
|
+
type: 'object',
|
|
2262
|
+
properties: {
|
|
2263
|
+
url: {
|
|
2264
|
+
type: 'string',
|
|
2265
|
+
nullable: true
|
|
2266
|
+
},
|
|
2267
|
+
resultListPropertyName: {
|
|
2268
|
+
type: 'string',
|
|
2269
|
+
nullable: true
|
|
2270
|
+
},
|
|
2271
|
+
displayPropertyName: {
|
|
2272
|
+
type: 'string',
|
|
2273
|
+
nullable: true
|
|
2274
|
+
},
|
|
2275
|
+
valuePropertyName: {
|
|
2276
|
+
type: 'string',
|
|
2277
|
+
nullable: true
|
|
2278
|
+
},
|
|
2279
|
+
filterParamName: {
|
|
2280
|
+
type: 'string',
|
|
2281
|
+
nullable: true
|
|
2282
|
+
}
|
|
2283
|
+
},
|
|
2284
|
+
additionalProperties: false
|
|
2285
|
+
}
|
|
2286
|
+
},
|
|
2287
|
+
additionalProperties: false
|
|
2288
|
+
},
|
|
2289
|
+
attributes: {
|
|
2290
|
+
type: 'array',
|
|
2291
|
+
items: {
|
|
2292
|
+
type: 'object',
|
|
2293
|
+
properties: {
|
|
2294
|
+
typeSimple: {
|
|
2295
|
+
type: 'string',
|
|
2296
|
+
nullable: true
|
|
2297
|
+
},
|
|
2298
|
+
config: {
|
|
2299
|
+
type: 'object',
|
|
2300
|
+
additionalProperties: {},
|
|
2301
|
+
nullable: true
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2304
|
+
additionalProperties: false
|
|
2305
|
+
},
|
|
2306
|
+
nullable: true
|
|
2307
|
+
},
|
|
2308
|
+
configuration: {
|
|
2309
|
+
type: 'object',
|
|
2310
|
+
additionalProperties: {},
|
|
2311
|
+
nullable: true
|
|
2312
|
+
},
|
|
2313
|
+
defaultValue: {
|
|
2314
|
+
nullable: true
|
|
2315
|
+
}
|
|
2316
|
+
},
|
|
2317
|
+
additionalProperties: false
|
|
2318
|
+
},
|
|
2319
|
+
nullable: true
|
|
2320
|
+
},
|
|
2321
|
+
configuration: {
|
|
2322
|
+
type: 'object',
|
|
2323
|
+
additionalProperties: {},
|
|
2324
|
+
nullable: true
|
|
2325
|
+
}
|
|
2326
|
+
},
|
|
2327
|
+
additionalProperties: false
|
|
2328
|
+
},
|
|
2329
|
+
nullable: true
|
|
2330
|
+
},
|
|
2331
|
+
configuration: {
|
|
2332
|
+
type: 'object',
|
|
2333
|
+
additionalProperties: {},
|
|
2334
|
+
nullable: true
|
|
2335
|
+
}
|
|
2336
|
+
},
|
|
2337
|
+
additionalProperties: false
|
|
718
2338
|
},
|
|
719
2339
|
nullable: true
|
|
720
2340
|
},
|
|
721
2341
|
enums: {
|
|
722
2342
|
type: 'object',
|
|
723
2343
|
additionalProperties: {
|
|
724
|
-
|
|
2344
|
+
type: 'object',
|
|
2345
|
+
properties: {
|
|
2346
|
+
fields: {
|
|
2347
|
+
type: 'array',
|
|
2348
|
+
items: {
|
|
2349
|
+
type: 'object',
|
|
2350
|
+
properties: {
|
|
2351
|
+
name: {
|
|
2352
|
+
type: 'string',
|
|
2353
|
+
nullable: true
|
|
2354
|
+
},
|
|
2355
|
+
value: {
|
|
2356
|
+
nullable: true
|
|
2357
|
+
}
|
|
2358
|
+
},
|
|
2359
|
+
additionalProperties: false
|
|
2360
|
+
},
|
|
2361
|
+
nullable: true
|
|
2362
|
+
},
|
|
2363
|
+
localizationResource: {
|
|
2364
|
+
type: 'string',
|
|
2365
|
+
nullable: true
|
|
2366
|
+
}
|
|
2367
|
+
},
|
|
2368
|
+
additionalProperties: false
|
|
725
2369
|
},
|
|
726
2370
|
nullable: true
|
|
727
2371
|
}
|
|
@@ -733,10 +2377,24 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
|
733
2377
|
type: 'object',
|
|
734
2378
|
properties: {
|
|
735
2379
|
iana: {
|
|
736
|
-
|
|
2380
|
+
type: 'object',
|
|
2381
|
+
properties: {
|
|
2382
|
+
timeZoneName: {
|
|
2383
|
+
type: 'string',
|
|
2384
|
+
nullable: true
|
|
2385
|
+
}
|
|
2386
|
+
},
|
|
2387
|
+
additionalProperties: false
|
|
737
2388
|
},
|
|
738
2389
|
windows: {
|
|
739
|
-
|
|
2390
|
+
type: 'object',
|
|
2391
|
+
properties: {
|
|
2392
|
+
timeZoneId: {
|
|
2393
|
+
type: 'string',
|
|
2394
|
+
nullable: true
|
|
2395
|
+
}
|
|
2396
|
+
},
|
|
2397
|
+
additionalProperties: false
|
|
740
2398
|
}
|
|
741
2399
|
},
|
|
742
2400
|
additionalProperties: false
|
|
@@ -746,7 +2404,30 @@ export const $Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
|
746
2404
|
type: 'object',
|
|
747
2405
|
properties: {
|
|
748
2406
|
timeZone: {
|
|
749
|
-
|
|
2407
|
+
type: 'object',
|
|
2408
|
+
properties: {
|
|
2409
|
+
iana: {
|
|
2410
|
+
type: 'object',
|
|
2411
|
+
properties: {
|
|
2412
|
+
timeZoneName: {
|
|
2413
|
+
type: 'string',
|
|
2414
|
+
nullable: true
|
|
2415
|
+
}
|
|
2416
|
+
},
|
|
2417
|
+
additionalProperties: false
|
|
2418
|
+
},
|
|
2419
|
+
windows: {
|
|
2420
|
+
type: 'object',
|
|
2421
|
+
properties: {
|
|
2422
|
+
timeZoneId: {
|
|
2423
|
+
type: 'string',
|
|
2424
|
+
nullable: true
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
additionalProperties: false
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
additionalProperties: false
|
|
750
2431
|
}
|
|
751
2432
|
},
|
|
752
2433
|
additionalProperties: false
|
|
@@ -808,14 +2489,58 @@ export const $Volo_Abp_FeatureManagement_FeatureDto = {
|
|
|
808
2489
|
nullable: true
|
|
809
2490
|
},
|
|
810
2491
|
provider: {
|
|
811
|
-
|
|
2492
|
+
type: 'object',
|
|
2493
|
+
properties: {
|
|
2494
|
+
name: {
|
|
2495
|
+
type: 'string',
|
|
2496
|
+
nullable: true
|
|
2497
|
+
},
|
|
2498
|
+
key: {
|
|
2499
|
+
type: 'string',
|
|
2500
|
+
nullable: true
|
|
2501
|
+
}
|
|
2502
|
+
},
|
|
2503
|
+
additionalProperties: false
|
|
812
2504
|
},
|
|
813
2505
|
description: {
|
|
814
2506
|
type: 'string',
|
|
815
2507
|
nullable: true
|
|
816
2508
|
},
|
|
817
2509
|
valueType: {
|
|
818
|
-
|
|
2510
|
+
type: 'object',
|
|
2511
|
+
properties: {
|
|
2512
|
+
name: {
|
|
2513
|
+
type: 'string',
|
|
2514
|
+
nullable: true,
|
|
2515
|
+
readOnly: true
|
|
2516
|
+
},
|
|
2517
|
+
properties: {
|
|
2518
|
+
type: 'object',
|
|
2519
|
+
additionalProperties: {
|
|
2520
|
+
nullable: true
|
|
2521
|
+
},
|
|
2522
|
+
nullable: true,
|
|
2523
|
+
readOnly: true
|
|
2524
|
+
},
|
|
2525
|
+
validator: {
|
|
2526
|
+
type: 'object',
|
|
2527
|
+
properties: {
|
|
2528
|
+
name: {
|
|
2529
|
+
type: 'string',
|
|
2530
|
+
nullable: true,
|
|
2531
|
+
readOnly: true
|
|
2532
|
+
},
|
|
2533
|
+
properties: {
|
|
2534
|
+
type: 'object',
|
|
2535
|
+
additionalProperties: {},
|
|
2536
|
+
nullable: true,
|
|
2537
|
+
readOnly: true
|
|
2538
|
+
}
|
|
2539
|
+
},
|
|
2540
|
+
additionalProperties: false
|
|
2541
|
+
}
|
|
2542
|
+
},
|
|
2543
|
+
additionalProperties: false
|
|
819
2544
|
},
|
|
820
2545
|
depth: {
|
|
821
2546
|
type: 'integer',
|
|
@@ -843,7 +2568,84 @@ export const $Volo_Abp_FeatureManagement_FeatureGroupDto = {
|
|
|
843
2568
|
features: {
|
|
844
2569
|
type: 'array',
|
|
845
2570
|
items: {
|
|
846
|
-
|
|
2571
|
+
type: 'object',
|
|
2572
|
+
properties: {
|
|
2573
|
+
name: {
|
|
2574
|
+
type: 'string',
|
|
2575
|
+
nullable: true
|
|
2576
|
+
},
|
|
2577
|
+
displayName: {
|
|
2578
|
+
type: 'string',
|
|
2579
|
+
nullable: true
|
|
2580
|
+
},
|
|
2581
|
+
value: {
|
|
2582
|
+
type: 'string',
|
|
2583
|
+
nullable: true
|
|
2584
|
+
},
|
|
2585
|
+
provider: {
|
|
2586
|
+
type: 'object',
|
|
2587
|
+
properties: {
|
|
2588
|
+
name: {
|
|
2589
|
+
type: 'string',
|
|
2590
|
+
nullable: true
|
|
2591
|
+
},
|
|
2592
|
+
key: {
|
|
2593
|
+
type: 'string',
|
|
2594
|
+
nullable: true
|
|
2595
|
+
}
|
|
2596
|
+
},
|
|
2597
|
+
additionalProperties: false
|
|
2598
|
+
},
|
|
2599
|
+
description: {
|
|
2600
|
+
type: 'string',
|
|
2601
|
+
nullable: true
|
|
2602
|
+
},
|
|
2603
|
+
valueType: {
|
|
2604
|
+
type: 'object',
|
|
2605
|
+
properties: {
|
|
2606
|
+
name: {
|
|
2607
|
+
type: 'string',
|
|
2608
|
+
nullable: true,
|
|
2609
|
+
readOnly: true
|
|
2610
|
+
},
|
|
2611
|
+
properties: {
|
|
2612
|
+
type: 'object',
|
|
2613
|
+
additionalProperties: {
|
|
2614
|
+
nullable: true
|
|
2615
|
+
},
|
|
2616
|
+
nullable: true,
|
|
2617
|
+
readOnly: true
|
|
2618
|
+
},
|
|
2619
|
+
validator: {
|
|
2620
|
+
type: 'object',
|
|
2621
|
+
properties: {
|
|
2622
|
+
name: {
|
|
2623
|
+
type: 'string',
|
|
2624
|
+
nullable: true,
|
|
2625
|
+
readOnly: true
|
|
2626
|
+
},
|
|
2627
|
+
properties: {
|
|
2628
|
+
type: 'object',
|
|
2629
|
+
additionalProperties: {},
|
|
2630
|
+
nullable: true,
|
|
2631
|
+
readOnly: true
|
|
2632
|
+
}
|
|
2633
|
+
},
|
|
2634
|
+
additionalProperties: false
|
|
2635
|
+
}
|
|
2636
|
+
},
|
|
2637
|
+
additionalProperties: false
|
|
2638
|
+
},
|
|
2639
|
+
depth: {
|
|
2640
|
+
type: 'integer',
|
|
2641
|
+
format: 'int32'
|
|
2642
|
+
},
|
|
2643
|
+
parentName: {
|
|
2644
|
+
type: 'string',
|
|
2645
|
+
nullable: true
|
|
2646
|
+
}
|
|
2647
|
+
},
|
|
2648
|
+
additionalProperties: false
|
|
847
2649
|
},
|
|
848
2650
|
nullable: true
|
|
849
2651
|
}
|
|
@@ -872,7 +2674,102 @@ export const $Volo_Abp_FeatureManagement_GetFeatureListResultDto = {
|
|
|
872
2674
|
groups: {
|
|
873
2675
|
type: 'array',
|
|
874
2676
|
items: {
|
|
875
|
-
|
|
2677
|
+
type: 'object',
|
|
2678
|
+
properties: {
|
|
2679
|
+
name: {
|
|
2680
|
+
type: 'string',
|
|
2681
|
+
nullable: true
|
|
2682
|
+
},
|
|
2683
|
+
displayName: {
|
|
2684
|
+
type: 'string',
|
|
2685
|
+
nullable: true
|
|
2686
|
+
},
|
|
2687
|
+
features: {
|
|
2688
|
+
type: 'array',
|
|
2689
|
+
items: {
|
|
2690
|
+
type: 'object',
|
|
2691
|
+
properties: {
|
|
2692
|
+
name: {
|
|
2693
|
+
type: 'string',
|
|
2694
|
+
nullable: true
|
|
2695
|
+
},
|
|
2696
|
+
displayName: {
|
|
2697
|
+
type: 'string',
|
|
2698
|
+
nullable: true
|
|
2699
|
+
},
|
|
2700
|
+
value: {
|
|
2701
|
+
type: 'string',
|
|
2702
|
+
nullable: true
|
|
2703
|
+
},
|
|
2704
|
+
provider: {
|
|
2705
|
+
type: 'object',
|
|
2706
|
+
properties: {
|
|
2707
|
+
name: {
|
|
2708
|
+
type: 'string',
|
|
2709
|
+
nullable: true
|
|
2710
|
+
},
|
|
2711
|
+
key: {
|
|
2712
|
+
type: 'string',
|
|
2713
|
+
nullable: true
|
|
2714
|
+
}
|
|
2715
|
+
},
|
|
2716
|
+
additionalProperties: false
|
|
2717
|
+
},
|
|
2718
|
+
description: {
|
|
2719
|
+
type: 'string',
|
|
2720
|
+
nullable: true
|
|
2721
|
+
},
|
|
2722
|
+
valueType: {
|
|
2723
|
+
type: 'object',
|
|
2724
|
+
properties: {
|
|
2725
|
+
name: {
|
|
2726
|
+
type: 'string',
|
|
2727
|
+
nullable: true,
|
|
2728
|
+
readOnly: true
|
|
2729
|
+
},
|
|
2730
|
+
properties: {
|
|
2731
|
+
type: 'object',
|
|
2732
|
+
additionalProperties: {
|
|
2733
|
+
nullable: true
|
|
2734
|
+
},
|
|
2735
|
+
nullable: true,
|
|
2736
|
+
readOnly: true
|
|
2737
|
+
},
|
|
2738
|
+
validator: {
|
|
2739
|
+
type: 'object',
|
|
2740
|
+
properties: {
|
|
2741
|
+
name: {
|
|
2742
|
+
type: 'string',
|
|
2743
|
+
nullable: true,
|
|
2744
|
+
readOnly: true
|
|
2745
|
+
},
|
|
2746
|
+
properties: {
|
|
2747
|
+
type: 'object',
|
|
2748
|
+
additionalProperties: {},
|
|
2749
|
+
nullable: true,
|
|
2750
|
+
readOnly: true
|
|
2751
|
+
}
|
|
2752
|
+
},
|
|
2753
|
+
additionalProperties: false
|
|
2754
|
+
}
|
|
2755
|
+
},
|
|
2756
|
+
additionalProperties: false
|
|
2757
|
+
},
|
|
2758
|
+
depth: {
|
|
2759
|
+
type: 'integer',
|
|
2760
|
+
format: 'int32'
|
|
2761
|
+
},
|
|
2762
|
+
parentName: {
|
|
2763
|
+
type: 'string',
|
|
2764
|
+
nullable: true
|
|
2765
|
+
}
|
|
2766
|
+
},
|
|
2767
|
+
additionalProperties: false
|
|
2768
|
+
},
|
|
2769
|
+
nullable: true
|
|
2770
|
+
}
|
|
2771
|
+
},
|
|
2772
|
+
additionalProperties: false
|
|
876
2773
|
},
|
|
877
2774
|
nullable: true
|
|
878
2775
|
}
|
|
@@ -901,7 +2798,18 @@ export const $Volo_Abp_FeatureManagement_UpdateFeaturesDto = {
|
|
|
901
2798
|
features: {
|
|
902
2799
|
type: 'array',
|
|
903
2800
|
items: {
|
|
904
|
-
|
|
2801
|
+
type: 'object',
|
|
2802
|
+
properties: {
|
|
2803
|
+
name: {
|
|
2804
|
+
type: 'string',
|
|
2805
|
+
nullable: true
|
|
2806
|
+
},
|
|
2807
|
+
value: {
|
|
2808
|
+
type: 'string',
|
|
2809
|
+
nullable: true
|
|
2810
|
+
}
|
|
2811
|
+
},
|
|
2812
|
+
additionalProperties: false
|
|
905
2813
|
},
|
|
906
2814
|
nullable: true
|
|
907
2815
|
}
|
|
@@ -938,19 +2846,99 @@ export const $Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
938
2846
|
parametersOnMethod: {
|
|
939
2847
|
type: 'array',
|
|
940
2848
|
items: {
|
|
941
|
-
|
|
2849
|
+
type: 'object',
|
|
2850
|
+
properties: {
|
|
2851
|
+
name: {
|
|
2852
|
+
type: 'string',
|
|
2853
|
+
nullable: true
|
|
2854
|
+
},
|
|
2855
|
+
typeAsString: {
|
|
2856
|
+
type: 'string',
|
|
2857
|
+
nullable: true
|
|
2858
|
+
},
|
|
2859
|
+
type: {
|
|
2860
|
+
type: 'string',
|
|
2861
|
+
nullable: true
|
|
2862
|
+
},
|
|
2863
|
+
typeSimple: {
|
|
2864
|
+
type: 'string',
|
|
2865
|
+
nullable: true
|
|
2866
|
+
},
|
|
2867
|
+
isOptional: {
|
|
2868
|
+
type: 'boolean'
|
|
2869
|
+
},
|
|
2870
|
+
defaultValue: {
|
|
2871
|
+
nullable: true
|
|
2872
|
+
}
|
|
2873
|
+
},
|
|
2874
|
+
additionalProperties: false
|
|
942
2875
|
},
|
|
943
2876
|
nullable: true
|
|
944
2877
|
},
|
|
945
2878
|
parameters: {
|
|
946
2879
|
type: 'array',
|
|
947
2880
|
items: {
|
|
948
|
-
|
|
2881
|
+
type: 'object',
|
|
2882
|
+
properties: {
|
|
2883
|
+
nameOnMethod: {
|
|
2884
|
+
type: 'string',
|
|
2885
|
+
nullable: true
|
|
2886
|
+
},
|
|
2887
|
+
name: {
|
|
2888
|
+
type: 'string',
|
|
2889
|
+
nullable: true
|
|
2890
|
+
},
|
|
2891
|
+
jsonName: {
|
|
2892
|
+
type: 'string',
|
|
2893
|
+
nullable: true
|
|
2894
|
+
},
|
|
2895
|
+
type: {
|
|
2896
|
+
type: 'string',
|
|
2897
|
+
nullable: true
|
|
2898
|
+
},
|
|
2899
|
+
typeSimple: {
|
|
2900
|
+
type: 'string',
|
|
2901
|
+
nullable: true
|
|
2902
|
+
},
|
|
2903
|
+
isOptional: {
|
|
2904
|
+
type: 'boolean'
|
|
2905
|
+
},
|
|
2906
|
+
defaultValue: {
|
|
2907
|
+
nullable: true
|
|
2908
|
+
},
|
|
2909
|
+
constraintTypes: {
|
|
2910
|
+
type: 'array',
|
|
2911
|
+
items: {
|
|
2912
|
+
type: 'string'
|
|
2913
|
+
},
|
|
2914
|
+
nullable: true
|
|
2915
|
+
},
|
|
2916
|
+
bindingSourceId: {
|
|
2917
|
+
type: 'string',
|
|
2918
|
+
nullable: true
|
|
2919
|
+
},
|
|
2920
|
+
descriptorName: {
|
|
2921
|
+
type: 'string',
|
|
2922
|
+
nullable: true
|
|
2923
|
+
}
|
|
2924
|
+
},
|
|
2925
|
+
additionalProperties: false
|
|
949
2926
|
},
|
|
950
2927
|
nullable: true
|
|
951
2928
|
},
|
|
952
2929
|
returnValue: {
|
|
953
|
-
|
|
2930
|
+
type: 'object',
|
|
2931
|
+
properties: {
|
|
2932
|
+
type: {
|
|
2933
|
+
type: 'string',
|
|
2934
|
+
nullable: true
|
|
2935
|
+
},
|
|
2936
|
+
typeSimple: {
|
|
2937
|
+
type: 'string',
|
|
2938
|
+
nullable: true
|
|
2939
|
+
}
|
|
2940
|
+
},
|
|
2941
|
+
additionalProperties: false
|
|
954
2942
|
},
|
|
955
2943
|
allowAnonymous: {
|
|
956
2944
|
type: 'boolean',
|
|
@@ -970,14 +2958,353 @@ export const $Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
|
970
2958
|
modules: {
|
|
971
2959
|
type: 'object',
|
|
972
2960
|
additionalProperties: {
|
|
973
|
-
|
|
2961
|
+
type: 'object',
|
|
2962
|
+
properties: {
|
|
2963
|
+
rootPath: {
|
|
2964
|
+
type: 'string',
|
|
2965
|
+
nullable: true
|
|
2966
|
+
},
|
|
2967
|
+
remoteServiceName: {
|
|
2968
|
+
type: 'string',
|
|
2969
|
+
nullable: true
|
|
2970
|
+
},
|
|
2971
|
+
controllers: {
|
|
2972
|
+
type: 'object',
|
|
2973
|
+
additionalProperties: {
|
|
2974
|
+
type: 'object',
|
|
2975
|
+
properties: {
|
|
2976
|
+
controllerName: {
|
|
2977
|
+
type: 'string',
|
|
2978
|
+
nullable: true
|
|
2979
|
+
},
|
|
2980
|
+
controllerGroupName: {
|
|
2981
|
+
type: 'string',
|
|
2982
|
+
nullable: true
|
|
2983
|
+
},
|
|
2984
|
+
isRemoteService: {
|
|
2985
|
+
type: 'boolean'
|
|
2986
|
+
},
|
|
2987
|
+
isIntegrationService: {
|
|
2988
|
+
type: 'boolean'
|
|
2989
|
+
},
|
|
2990
|
+
apiVersion: {
|
|
2991
|
+
type: 'string',
|
|
2992
|
+
nullable: true
|
|
2993
|
+
},
|
|
2994
|
+
type: {
|
|
2995
|
+
type: 'string',
|
|
2996
|
+
nullable: true
|
|
2997
|
+
},
|
|
2998
|
+
interfaces: {
|
|
2999
|
+
type: 'array',
|
|
3000
|
+
items: {
|
|
3001
|
+
type: 'object',
|
|
3002
|
+
properties: {
|
|
3003
|
+
type: {
|
|
3004
|
+
type: 'string',
|
|
3005
|
+
nullable: true
|
|
3006
|
+
},
|
|
3007
|
+
name: {
|
|
3008
|
+
type: 'string',
|
|
3009
|
+
nullable: true
|
|
3010
|
+
},
|
|
3011
|
+
methods: {
|
|
3012
|
+
type: 'array',
|
|
3013
|
+
items: {
|
|
3014
|
+
type: 'object',
|
|
3015
|
+
properties: {
|
|
3016
|
+
name: {
|
|
3017
|
+
type: 'string',
|
|
3018
|
+
nullable: true
|
|
3019
|
+
},
|
|
3020
|
+
parametersOnMethod: {
|
|
3021
|
+
type: 'array',
|
|
3022
|
+
items: {
|
|
3023
|
+
type: 'object',
|
|
3024
|
+
properties: {
|
|
3025
|
+
name: {
|
|
3026
|
+
type: 'string',
|
|
3027
|
+
nullable: true
|
|
3028
|
+
},
|
|
3029
|
+
typeAsString: {
|
|
3030
|
+
type: 'string',
|
|
3031
|
+
nullable: true
|
|
3032
|
+
},
|
|
3033
|
+
type: {
|
|
3034
|
+
type: 'string',
|
|
3035
|
+
nullable: true
|
|
3036
|
+
},
|
|
3037
|
+
typeSimple: {
|
|
3038
|
+
type: 'string',
|
|
3039
|
+
nullable: true
|
|
3040
|
+
},
|
|
3041
|
+
isOptional: {
|
|
3042
|
+
type: 'boolean'
|
|
3043
|
+
},
|
|
3044
|
+
defaultValue: {
|
|
3045
|
+
nullable: true
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
additionalProperties: false
|
|
3049
|
+
},
|
|
3050
|
+
nullable: true
|
|
3051
|
+
},
|
|
3052
|
+
returnValue: {
|
|
3053
|
+
type: 'object',
|
|
3054
|
+
properties: {
|
|
3055
|
+
type: {
|
|
3056
|
+
type: 'string',
|
|
3057
|
+
nullable: true
|
|
3058
|
+
},
|
|
3059
|
+
typeSimple: {
|
|
3060
|
+
type: 'string',
|
|
3061
|
+
nullable: true
|
|
3062
|
+
}
|
|
3063
|
+
},
|
|
3064
|
+
additionalProperties: false
|
|
3065
|
+
}
|
|
3066
|
+
},
|
|
3067
|
+
additionalProperties: false
|
|
3068
|
+
},
|
|
3069
|
+
nullable: true
|
|
3070
|
+
}
|
|
3071
|
+
},
|
|
3072
|
+
additionalProperties: false
|
|
3073
|
+
},
|
|
3074
|
+
nullable: true
|
|
3075
|
+
},
|
|
3076
|
+
actions: {
|
|
3077
|
+
type: 'object',
|
|
3078
|
+
additionalProperties: {
|
|
3079
|
+
type: 'object',
|
|
3080
|
+
properties: {
|
|
3081
|
+
uniqueName: {
|
|
3082
|
+
type: 'string',
|
|
3083
|
+
nullable: true
|
|
3084
|
+
},
|
|
3085
|
+
name: {
|
|
3086
|
+
type: 'string',
|
|
3087
|
+
nullable: true
|
|
3088
|
+
},
|
|
3089
|
+
httpMethod: {
|
|
3090
|
+
type: 'string',
|
|
3091
|
+
nullable: true
|
|
3092
|
+
},
|
|
3093
|
+
url: {
|
|
3094
|
+
type: 'string',
|
|
3095
|
+
nullable: true
|
|
3096
|
+
},
|
|
3097
|
+
supportedVersions: {
|
|
3098
|
+
type: 'array',
|
|
3099
|
+
items: {
|
|
3100
|
+
type: 'string'
|
|
3101
|
+
},
|
|
3102
|
+
nullable: true
|
|
3103
|
+
},
|
|
3104
|
+
parametersOnMethod: {
|
|
3105
|
+
type: 'array',
|
|
3106
|
+
items: {
|
|
3107
|
+
type: 'object',
|
|
3108
|
+
properties: {
|
|
3109
|
+
name: {
|
|
3110
|
+
type: 'string',
|
|
3111
|
+
nullable: true
|
|
3112
|
+
},
|
|
3113
|
+
typeAsString: {
|
|
3114
|
+
type: 'string',
|
|
3115
|
+
nullable: true
|
|
3116
|
+
},
|
|
3117
|
+
type: {
|
|
3118
|
+
type: 'string',
|
|
3119
|
+
nullable: true
|
|
3120
|
+
},
|
|
3121
|
+
typeSimple: {
|
|
3122
|
+
type: 'string',
|
|
3123
|
+
nullable: true
|
|
3124
|
+
},
|
|
3125
|
+
isOptional: {
|
|
3126
|
+
type: 'boolean'
|
|
3127
|
+
},
|
|
3128
|
+
defaultValue: {
|
|
3129
|
+
nullable: true
|
|
3130
|
+
}
|
|
3131
|
+
},
|
|
3132
|
+
additionalProperties: false
|
|
3133
|
+
},
|
|
3134
|
+
nullable: true
|
|
3135
|
+
},
|
|
3136
|
+
parameters: {
|
|
3137
|
+
type: 'array',
|
|
3138
|
+
items: {
|
|
3139
|
+
type: 'object',
|
|
3140
|
+
properties: {
|
|
3141
|
+
nameOnMethod: {
|
|
3142
|
+
type: 'string',
|
|
3143
|
+
nullable: true
|
|
3144
|
+
},
|
|
3145
|
+
name: {
|
|
3146
|
+
type: 'string',
|
|
3147
|
+
nullable: true
|
|
3148
|
+
},
|
|
3149
|
+
jsonName: {
|
|
3150
|
+
type: 'string',
|
|
3151
|
+
nullable: true
|
|
3152
|
+
},
|
|
3153
|
+
type: {
|
|
3154
|
+
type: 'string',
|
|
3155
|
+
nullable: true
|
|
3156
|
+
},
|
|
3157
|
+
typeSimple: {
|
|
3158
|
+
type: 'string',
|
|
3159
|
+
nullable: true
|
|
3160
|
+
},
|
|
3161
|
+
isOptional: {
|
|
3162
|
+
type: 'boolean'
|
|
3163
|
+
},
|
|
3164
|
+
defaultValue: {
|
|
3165
|
+
nullable: true
|
|
3166
|
+
},
|
|
3167
|
+
constraintTypes: {
|
|
3168
|
+
type: 'array',
|
|
3169
|
+
items: {
|
|
3170
|
+
type: 'string'
|
|
3171
|
+
},
|
|
3172
|
+
nullable: true
|
|
3173
|
+
},
|
|
3174
|
+
bindingSourceId: {
|
|
3175
|
+
type: 'string',
|
|
3176
|
+
nullable: true
|
|
3177
|
+
},
|
|
3178
|
+
descriptorName: {
|
|
3179
|
+
type: 'string',
|
|
3180
|
+
nullable: true
|
|
3181
|
+
}
|
|
3182
|
+
},
|
|
3183
|
+
additionalProperties: false
|
|
3184
|
+
},
|
|
3185
|
+
nullable: true
|
|
3186
|
+
},
|
|
3187
|
+
returnValue: {
|
|
3188
|
+
type: 'object',
|
|
3189
|
+
properties: {
|
|
3190
|
+
type: {
|
|
3191
|
+
type: 'string',
|
|
3192
|
+
nullable: true
|
|
3193
|
+
},
|
|
3194
|
+
typeSimple: {
|
|
3195
|
+
type: 'string',
|
|
3196
|
+
nullable: true
|
|
3197
|
+
}
|
|
3198
|
+
},
|
|
3199
|
+
additionalProperties: false
|
|
3200
|
+
},
|
|
3201
|
+
allowAnonymous: {
|
|
3202
|
+
type: 'boolean',
|
|
3203
|
+
nullable: true
|
|
3204
|
+
},
|
|
3205
|
+
implementFrom: {
|
|
3206
|
+
type: 'string',
|
|
3207
|
+
nullable: true
|
|
3208
|
+
}
|
|
3209
|
+
},
|
|
3210
|
+
additionalProperties: false
|
|
3211
|
+
},
|
|
3212
|
+
nullable: true
|
|
3213
|
+
}
|
|
3214
|
+
},
|
|
3215
|
+
additionalProperties: false
|
|
3216
|
+
},
|
|
3217
|
+
nullable: true
|
|
3218
|
+
}
|
|
3219
|
+
},
|
|
3220
|
+
additionalProperties: false
|
|
974
3221
|
},
|
|
975
3222
|
nullable: true
|
|
976
3223
|
},
|
|
977
3224
|
types: {
|
|
978
3225
|
type: 'object',
|
|
979
3226
|
additionalProperties: {
|
|
980
|
-
|
|
3227
|
+
type: 'object',
|
|
3228
|
+
properties: {
|
|
3229
|
+
baseType: {
|
|
3230
|
+
type: 'string',
|
|
3231
|
+
nullable: true
|
|
3232
|
+
},
|
|
3233
|
+
isEnum: {
|
|
3234
|
+
type: 'boolean'
|
|
3235
|
+
},
|
|
3236
|
+
enumNames: {
|
|
3237
|
+
type: 'array',
|
|
3238
|
+
items: {
|
|
3239
|
+
type: 'string'
|
|
3240
|
+
},
|
|
3241
|
+
nullable: true
|
|
3242
|
+
},
|
|
3243
|
+
enumValues: {
|
|
3244
|
+
type: 'array',
|
|
3245
|
+
items: {},
|
|
3246
|
+
nullable: true
|
|
3247
|
+
},
|
|
3248
|
+
genericArguments: {
|
|
3249
|
+
type: 'array',
|
|
3250
|
+
items: {
|
|
3251
|
+
type: 'string'
|
|
3252
|
+
},
|
|
3253
|
+
nullable: true
|
|
3254
|
+
},
|
|
3255
|
+
properties: {
|
|
3256
|
+
type: 'array',
|
|
3257
|
+
items: {
|
|
3258
|
+
type: 'object',
|
|
3259
|
+
properties: {
|
|
3260
|
+
name: {
|
|
3261
|
+
type: 'string',
|
|
3262
|
+
nullable: true
|
|
3263
|
+
},
|
|
3264
|
+
jsonName: {
|
|
3265
|
+
type: 'string',
|
|
3266
|
+
nullable: true
|
|
3267
|
+
},
|
|
3268
|
+
type: {
|
|
3269
|
+
type: 'string',
|
|
3270
|
+
nullable: true
|
|
3271
|
+
},
|
|
3272
|
+
typeSimple: {
|
|
3273
|
+
type: 'string',
|
|
3274
|
+
nullable: true
|
|
3275
|
+
},
|
|
3276
|
+
isRequired: {
|
|
3277
|
+
type: 'boolean'
|
|
3278
|
+
},
|
|
3279
|
+
minLength: {
|
|
3280
|
+
type: 'integer',
|
|
3281
|
+
format: 'int32',
|
|
3282
|
+
nullable: true
|
|
3283
|
+
},
|
|
3284
|
+
maxLength: {
|
|
3285
|
+
type: 'integer',
|
|
3286
|
+
format: 'int32',
|
|
3287
|
+
nullable: true
|
|
3288
|
+
},
|
|
3289
|
+
minimum: {
|
|
3290
|
+
type: 'string',
|
|
3291
|
+
nullable: true
|
|
3292
|
+
},
|
|
3293
|
+
maximum: {
|
|
3294
|
+
type: 'string',
|
|
3295
|
+
nullable: true
|
|
3296
|
+
},
|
|
3297
|
+
regex: {
|
|
3298
|
+
type: 'string',
|
|
3299
|
+
nullable: true
|
|
3300
|
+
}
|
|
3301
|
+
},
|
|
3302
|
+
additionalProperties: false
|
|
3303
|
+
},
|
|
3304
|
+
nullable: true
|
|
3305
|
+
}
|
|
3306
|
+
},
|
|
3307
|
+
additionalProperties: false
|
|
981
3308
|
},
|
|
982
3309
|
nullable: true
|
|
983
3310
|
}
|
|
@@ -1013,14 +3340,216 @@ export const $Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
1013
3340
|
interfaces: {
|
|
1014
3341
|
type: 'array',
|
|
1015
3342
|
items: {
|
|
1016
|
-
|
|
3343
|
+
type: 'object',
|
|
3344
|
+
properties: {
|
|
3345
|
+
type: {
|
|
3346
|
+
type: 'string',
|
|
3347
|
+
nullable: true
|
|
3348
|
+
},
|
|
3349
|
+
name: {
|
|
3350
|
+
type: 'string',
|
|
3351
|
+
nullable: true
|
|
3352
|
+
},
|
|
3353
|
+
methods: {
|
|
3354
|
+
type: 'array',
|
|
3355
|
+
items: {
|
|
3356
|
+
type: 'object',
|
|
3357
|
+
properties: {
|
|
3358
|
+
name: {
|
|
3359
|
+
type: 'string',
|
|
3360
|
+
nullable: true
|
|
3361
|
+
},
|
|
3362
|
+
parametersOnMethod: {
|
|
3363
|
+
type: 'array',
|
|
3364
|
+
items: {
|
|
3365
|
+
type: 'object',
|
|
3366
|
+
properties: {
|
|
3367
|
+
name: {
|
|
3368
|
+
type: 'string',
|
|
3369
|
+
nullable: true
|
|
3370
|
+
},
|
|
3371
|
+
typeAsString: {
|
|
3372
|
+
type: 'string',
|
|
3373
|
+
nullable: true
|
|
3374
|
+
},
|
|
3375
|
+
type: {
|
|
3376
|
+
type: 'string',
|
|
3377
|
+
nullable: true
|
|
3378
|
+
},
|
|
3379
|
+
typeSimple: {
|
|
3380
|
+
type: 'string',
|
|
3381
|
+
nullable: true
|
|
3382
|
+
},
|
|
3383
|
+
isOptional: {
|
|
3384
|
+
type: 'boolean'
|
|
3385
|
+
},
|
|
3386
|
+
defaultValue: {
|
|
3387
|
+
nullable: true
|
|
3388
|
+
}
|
|
3389
|
+
},
|
|
3390
|
+
additionalProperties: false
|
|
3391
|
+
},
|
|
3392
|
+
nullable: true
|
|
3393
|
+
},
|
|
3394
|
+
returnValue: {
|
|
3395
|
+
type: 'object',
|
|
3396
|
+
properties: {
|
|
3397
|
+
type: {
|
|
3398
|
+
type: 'string',
|
|
3399
|
+
nullable: true
|
|
3400
|
+
},
|
|
3401
|
+
typeSimple: {
|
|
3402
|
+
type: 'string',
|
|
3403
|
+
nullable: true
|
|
3404
|
+
}
|
|
3405
|
+
},
|
|
3406
|
+
additionalProperties: false
|
|
3407
|
+
}
|
|
3408
|
+
},
|
|
3409
|
+
additionalProperties: false
|
|
3410
|
+
},
|
|
3411
|
+
nullable: true
|
|
3412
|
+
}
|
|
3413
|
+
},
|
|
3414
|
+
additionalProperties: false
|
|
1017
3415
|
},
|
|
1018
3416
|
nullable: true
|
|
1019
3417
|
},
|
|
1020
3418
|
actions: {
|
|
1021
3419
|
type: 'object',
|
|
1022
3420
|
additionalProperties: {
|
|
1023
|
-
|
|
3421
|
+
type: 'object',
|
|
3422
|
+
properties: {
|
|
3423
|
+
uniqueName: {
|
|
3424
|
+
type: 'string',
|
|
3425
|
+
nullable: true
|
|
3426
|
+
},
|
|
3427
|
+
name: {
|
|
3428
|
+
type: 'string',
|
|
3429
|
+
nullable: true
|
|
3430
|
+
},
|
|
3431
|
+
httpMethod: {
|
|
3432
|
+
type: 'string',
|
|
3433
|
+
nullable: true
|
|
3434
|
+
},
|
|
3435
|
+
url: {
|
|
3436
|
+
type: 'string',
|
|
3437
|
+
nullable: true
|
|
3438
|
+
},
|
|
3439
|
+
supportedVersions: {
|
|
3440
|
+
type: 'array',
|
|
3441
|
+
items: {
|
|
3442
|
+
type: 'string'
|
|
3443
|
+
},
|
|
3444
|
+
nullable: true
|
|
3445
|
+
},
|
|
3446
|
+
parametersOnMethod: {
|
|
3447
|
+
type: 'array',
|
|
3448
|
+
items: {
|
|
3449
|
+
type: 'object',
|
|
3450
|
+
properties: {
|
|
3451
|
+
name: {
|
|
3452
|
+
type: 'string',
|
|
3453
|
+
nullable: true
|
|
3454
|
+
},
|
|
3455
|
+
typeAsString: {
|
|
3456
|
+
type: 'string',
|
|
3457
|
+
nullable: true
|
|
3458
|
+
},
|
|
3459
|
+
type: {
|
|
3460
|
+
type: 'string',
|
|
3461
|
+
nullable: true
|
|
3462
|
+
},
|
|
3463
|
+
typeSimple: {
|
|
3464
|
+
type: 'string',
|
|
3465
|
+
nullable: true
|
|
3466
|
+
},
|
|
3467
|
+
isOptional: {
|
|
3468
|
+
type: 'boolean'
|
|
3469
|
+
},
|
|
3470
|
+
defaultValue: {
|
|
3471
|
+
nullable: true
|
|
3472
|
+
}
|
|
3473
|
+
},
|
|
3474
|
+
additionalProperties: false
|
|
3475
|
+
},
|
|
3476
|
+
nullable: true
|
|
3477
|
+
},
|
|
3478
|
+
parameters: {
|
|
3479
|
+
type: 'array',
|
|
3480
|
+
items: {
|
|
3481
|
+
type: 'object',
|
|
3482
|
+
properties: {
|
|
3483
|
+
nameOnMethod: {
|
|
3484
|
+
type: 'string',
|
|
3485
|
+
nullable: true
|
|
3486
|
+
},
|
|
3487
|
+
name: {
|
|
3488
|
+
type: 'string',
|
|
3489
|
+
nullable: true
|
|
3490
|
+
},
|
|
3491
|
+
jsonName: {
|
|
3492
|
+
type: 'string',
|
|
3493
|
+
nullable: true
|
|
3494
|
+
},
|
|
3495
|
+
type: {
|
|
3496
|
+
type: 'string',
|
|
3497
|
+
nullable: true
|
|
3498
|
+
},
|
|
3499
|
+
typeSimple: {
|
|
3500
|
+
type: 'string',
|
|
3501
|
+
nullable: true
|
|
3502
|
+
},
|
|
3503
|
+
isOptional: {
|
|
3504
|
+
type: 'boolean'
|
|
3505
|
+
},
|
|
3506
|
+
defaultValue: {
|
|
3507
|
+
nullable: true
|
|
3508
|
+
},
|
|
3509
|
+
constraintTypes: {
|
|
3510
|
+
type: 'array',
|
|
3511
|
+
items: {
|
|
3512
|
+
type: 'string'
|
|
3513
|
+
},
|
|
3514
|
+
nullable: true
|
|
3515
|
+
},
|
|
3516
|
+
bindingSourceId: {
|
|
3517
|
+
type: 'string',
|
|
3518
|
+
nullable: true
|
|
3519
|
+
},
|
|
3520
|
+
descriptorName: {
|
|
3521
|
+
type: 'string',
|
|
3522
|
+
nullable: true
|
|
3523
|
+
}
|
|
3524
|
+
},
|
|
3525
|
+
additionalProperties: false
|
|
3526
|
+
},
|
|
3527
|
+
nullable: true
|
|
3528
|
+
},
|
|
3529
|
+
returnValue: {
|
|
3530
|
+
type: 'object',
|
|
3531
|
+
properties: {
|
|
3532
|
+
type: {
|
|
3533
|
+
type: 'string',
|
|
3534
|
+
nullable: true
|
|
3535
|
+
},
|
|
3536
|
+
typeSimple: {
|
|
3537
|
+
type: 'string',
|
|
3538
|
+
nullable: true
|
|
3539
|
+
}
|
|
3540
|
+
},
|
|
3541
|
+
additionalProperties: false
|
|
3542
|
+
},
|
|
3543
|
+
allowAnonymous: {
|
|
3544
|
+
type: 'boolean',
|
|
3545
|
+
nullable: true
|
|
3546
|
+
},
|
|
3547
|
+
implementFrom: {
|
|
3548
|
+
type: 'string',
|
|
3549
|
+
nullable: true
|
|
3550
|
+
}
|
|
3551
|
+
},
|
|
3552
|
+
additionalProperties: false
|
|
1024
3553
|
},
|
|
1025
3554
|
nullable: true
|
|
1026
3555
|
}
|
|
@@ -1042,7 +3571,60 @@ export const $Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
|
1042
3571
|
methods: {
|
|
1043
3572
|
type: 'array',
|
|
1044
3573
|
items: {
|
|
1045
|
-
|
|
3574
|
+
type: 'object',
|
|
3575
|
+
properties: {
|
|
3576
|
+
name: {
|
|
3577
|
+
type: 'string',
|
|
3578
|
+
nullable: true
|
|
3579
|
+
},
|
|
3580
|
+
parametersOnMethod: {
|
|
3581
|
+
type: 'array',
|
|
3582
|
+
items: {
|
|
3583
|
+
type: 'object',
|
|
3584
|
+
properties: {
|
|
3585
|
+
name: {
|
|
3586
|
+
type: 'string',
|
|
3587
|
+
nullable: true
|
|
3588
|
+
},
|
|
3589
|
+
typeAsString: {
|
|
3590
|
+
type: 'string',
|
|
3591
|
+
nullable: true
|
|
3592
|
+
},
|
|
3593
|
+
type: {
|
|
3594
|
+
type: 'string',
|
|
3595
|
+
nullable: true
|
|
3596
|
+
},
|
|
3597
|
+
typeSimple: {
|
|
3598
|
+
type: 'string',
|
|
3599
|
+
nullable: true
|
|
3600
|
+
},
|
|
3601
|
+
isOptional: {
|
|
3602
|
+
type: 'boolean'
|
|
3603
|
+
},
|
|
3604
|
+
defaultValue: {
|
|
3605
|
+
nullable: true
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3608
|
+
additionalProperties: false
|
|
3609
|
+
},
|
|
3610
|
+
nullable: true
|
|
3611
|
+
},
|
|
3612
|
+
returnValue: {
|
|
3613
|
+
type: 'object',
|
|
3614
|
+
properties: {
|
|
3615
|
+
type: {
|
|
3616
|
+
type: 'string',
|
|
3617
|
+
nullable: true
|
|
3618
|
+
},
|
|
3619
|
+
typeSimple: {
|
|
3620
|
+
type: 'string',
|
|
3621
|
+
nullable: true
|
|
3622
|
+
}
|
|
3623
|
+
},
|
|
3624
|
+
additionalProperties: false
|
|
3625
|
+
}
|
|
3626
|
+
},
|
|
3627
|
+
additionalProperties: false
|
|
1046
3628
|
},
|
|
1047
3629
|
nullable: true
|
|
1048
3630
|
}
|
|
@@ -1060,12 +3642,48 @@ export const $Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
|
1060
3642
|
parametersOnMethod: {
|
|
1061
3643
|
type: 'array',
|
|
1062
3644
|
items: {
|
|
1063
|
-
|
|
3645
|
+
type: 'object',
|
|
3646
|
+
properties: {
|
|
3647
|
+
name: {
|
|
3648
|
+
type: 'string',
|
|
3649
|
+
nullable: true
|
|
3650
|
+
},
|
|
3651
|
+
typeAsString: {
|
|
3652
|
+
type: 'string',
|
|
3653
|
+
nullable: true
|
|
3654
|
+
},
|
|
3655
|
+
type: {
|
|
3656
|
+
type: 'string',
|
|
3657
|
+
nullable: true
|
|
3658
|
+
},
|
|
3659
|
+
typeSimple: {
|
|
3660
|
+
type: 'string',
|
|
3661
|
+
nullable: true
|
|
3662
|
+
},
|
|
3663
|
+
isOptional: {
|
|
3664
|
+
type: 'boolean'
|
|
3665
|
+
},
|
|
3666
|
+
defaultValue: {
|
|
3667
|
+
nullable: true
|
|
3668
|
+
}
|
|
3669
|
+
},
|
|
3670
|
+
additionalProperties: false
|
|
1064
3671
|
},
|
|
1065
3672
|
nullable: true
|
|
1066
3673
|
},
|
|
1067
3674
|
returnValue: {
|
|
1068
|
-
|
|
3675
|
+
type: 'object',
|
|
3676
|
+
properties: {
|
|
3677
|
+
type: {
|
|
3678
|
+
type: 'string',
|
|
3679
|
+
nullable: true
|
|
3680
|
+
},
|
|
3681
|
+
typeSimple: {
|
|
3682
|
+
type: 'string',
|
|
3683
|
+
nullable: true
|
|
3684
|
+
}
|
|
3685
|
+
},
|
|
3686
|
+
additionalProperties: false
|
|
1069
3687
|
}
|
|
1070
3688
|
},
|
|
1071
3689
|
additionalProperties: false
|
|
@@ -1114,7 +3732,248 @@ export const $Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
1114
3732
|
controllers: {
|
|
1115
3733
|
type: 'object',
|
|
1116
3734
|
additionalProperties: {
|
|
1117
|
-
|
|
3735
|
+
type: 'object',
|
|
3736
|
+
properties: {
|
|
3737
|
+
controllerName: {
|
|
3738
|
+
type: 'string',
|
|
3739
|
+
nullable: true
|
|
3740
|
+
},
|
|
3741
|
+
controllerGroupName: {
|
|
3742
|
+
type: 'string',
|
|
3743
|
+
nullable: true
|
|
3744
|
+
},
|
|
3745
|
+
isRemoteService: {
|
|
3746
|
+
type: 'boolean'
|
|
3747
|
+
},
|
|
3748
|
+
isIntegrationService: {
|
|
3749
|
+
type: 'boolean'
|
|
3750
|
+
},
|
|
3751
|
+
apiVersion: {
|
|
3752
|
+
type: 'string',
|
|
3753
|
+
nullable: true
|
|
3754
|
+
},
|
|
3755
|
+
type: {
|
|
3756
|
+
type: 'string',
|
|
3757
|
+
nullable: true
|
|
3758
|
+
},
|
|
3759
|
+
interfaces: {
|
|
3760
|
+
type: 'array',
|
|
3761
|
+
items: {
|
|
3762
|
+
type: 'object',
|
|
3763
|
+
properties: {
|
|
3764
|
+
type: {
|
|
3765
|
+
type: 'string',
|
|
3766
|
+
nullable: true
|
|
3767
|
+
},
|
|
3768
|
+
name: {
|
|
3769
|
+
type: 'string',
|
|
3770
|
+
nullable: true
|
|
3771
|
+
},
|
|
3772
|
+
methods: {
|
|
3773
|
+
type: 'array',
|
|
3774
|
+
items: {
|
|
3775
|
+
type: 'object',
|
|
3776
|
+
properties: {
|
|
3777
|
+
name: {
|
|
3778
|
+
type: 'string',
|
|
3779
|
+
nullable: true
|
|
3780
|
+
},
|
|
3781
|
+
parametersOnMethod: {
|
|
3782
|
+
type: 'array',
|
|
3783
|
+
items: {
|
|
3784
|
+
type: 'object',
|
|
3785
|
+
properties: {
|
|
3786
|
+
name: {
|
|
3787
|
+
type: 'string',
|
|
3788
|
+
nullable: true
|
|
3789
|
+
},
|
|
3790
|
+
typeAsString: {
|
|
3791
|
+
type: 'string',
|
|
3792
|
+
nullable: true
|
|
3793
|
+
},
|
|
3794
|
+
type: {
|
|
3795
|
+
type: 'string',
|
|
3796
|
+
nullable: true
|
|
3797
|
+
},
|
|
3798
|
+
typeSimple: {
|
|
3799
|
+
type: 'string',
|
|
3800
|
+
nullable: true
|
|
3801
|
+
},
|
|
3802
|
+
isOptional: {
|
|
3803
|
+
type: 'boolean'
|
|
3804
|
+
},
|
|
3805
|
+
defaultValue: {
|
|
3806
|
+
nullable: true
|
|
3807
|
+
}
|
|
3808
|
+
},
|
|
3809
|
+
additionalProperties: false
|
|
3810
|
+
},
|
|
3811
|
+
nullable: true
|
|
3812
|
+
},
|
|
3813
|
+
returnValue: {
|
|
3814
|
+
type: 'object',
|
|
3815
|
+
properties: {
|
|
3816
|
+
type: {
|
|
3817
|
+
type: 'string',
|
|
3818
|
+
nullable: true
|
|
3819
|
+
},
|
|
3820
|
+
typeSimple: {
|
|
3821
|
+
type: 'string',
|
|
3822
|
+
nullable: true
|
|
3823
|
+
}
|
|
3824
|
+
},
|
|
3825
|
+
additionalProperties: false
|
|
3826
|
+
}
|
|
3827
|
+
},
|
|
3828
|
+
additionalProperties: false
|
|
3829
|
+
},
|
|
3830
|
+
nullable: true
|
|
3831
|
+
}
|
|
3832
|
+
},
|
|
3833
|
+
additionalProperties: false
|
|
3834
|
+
},
|
|
3835
|
+
nullable: true
|
|
3836
|
+
},
|
|
3837
|
+
actions: {
|
|
3838
|
+
type: 'object',
|
|
3839
|
+
additionalProperties: {
|
|
3840
|
+
type: 'object',
|
|
3841
|
+
properties: {
|
|
3842
|
+
uniqueName: {
|
|
3843
|
+
type: 'string',
|
|
3844
|
+
nullable: true
|
|
3845
|
+
},
|
|
3846
|
+
name: {
|
|
3847
|
+
type: 'string',
|
|
3848
|
+
nullable: true
|
|
3849
|
+
},
|
|
3850
|
+
httpMethod: {
|
|
3851
|
+
type: 'string',
|
|
3852
|
+
nullable: true
|
|
3853
|
+
},
|
|
3854
|
+
url: {
|
|
3855
|
+
type: 'string',
|
|
3856
|
+
nullable: true
|
|
3857
|
+
},
|
|
3858
|
+
supportedVersions: {
|
|
3859
|
+
type: 'array',
|
|
3860
|
+
items: {
|
|
3861
|
+
type: 'string'
|
|
3862
|
+
},
|
|
3863
|
+
nullable: true
|
|
3864
|
+
},
|
|
3865
|
+
parametersOnMethod: {
|
|
3866
|
+
type: 'array',
|
|
3867
|
+
items: {
|
|
3868
|
+
type: 'object',
|
|
3869
|
+
properties: {
|
|
3870
|
+
name: {
|
|
3871
|
+
type: 'string',
|
|
3872
|
+
nullable: true
|
|
3873
|
+
},
|
|
3874
|
+
typeAsString: {
|
|
3875
|
+
type: 'string',
|
|
3876
|
+
nullable: true
|
|
3877
|
+
},
|
|
3878
|
+
type: {
|
|
3879
|
+
type: 'string',
|
|
3880
|
+
nullable: true
|
|
3881
|
+
},
|
|
3882
|
+
typeSimple: {
|
|
3883
|
+
type: 'string',
|
|
3884
|
+
nullable: true
|
|
3885
|
+
},
|
|
3886
|
+
isOptional: {
|
|
3887
|
+
type: 'boolean'
|
|
3888
|
+
},
|
|
3889
|
+
defaultValue: {
|
|
3890
|
+
nullable: true
|
|
3891
|
+
}
|
|
3892
|
+
},
|
|
3893
|
+
additionalProperties: false
|
|
3894
|
+
},
|
|
3895
|
+
nullable: true
|
|
3896
|
+
},
|
|
3897
|
+
parameters: {
|
|
3898
|
+
type: 'array',
|
|
3899
|
+
items: {
|
|
3900
|
+
type: 'object',
|
|
3901
|
+
properties: {
|
|
3902
|
+
nameOnMethod: {
|
|
3903
|
+
type: 'string',
|
|
3904
|
+
nullable: true
|
|
3905
|
+
},
|
|
3906
|
+
name: {
|
|
3907
|
+
type: 'string',
|
|
3908
|
+
nullable: true
|
|
3909
|
+
},
|
|
3910
|
+
jsonName: {
|
|
3911
|
+
type: 'string',
|
|
3912
|
+
nullable: true
|
|
3913
|
+
},
|
|
3914
|
+
type: {
|
|
3915
|
+
type: 'string',
|
|
3916
|
+
nullable: true
|
|
3917
|
+
},
|
|
3918
|
+
typeSimple: {
|
|
3919
|
+
type: 'string',
|
|
3920
|
+
nullable: true
|
|
3921
|
+
},
|
|
3922
|
+
isOptional: {
|
|
3923
|
+
type: 'boolean'
|
|
3924
|
+
},
|
|
3925
|
+
defaultValue: {
|
|
3926
|
+
nullable: true
|
|
3927
|
+
},
|
|
3928
|
+
constraintTypes: {
|
|
3929
|
+
type: 'array',
|
|
3930
|
+
items: {
|
|
3931
|
+
type: 'string'
|
|
3932
|
+
},
|
|
3933
|
+
nullable: true
|
|
3934
|
+
},
|
|
3935
|
+
bindingSourceId: {
|
|
3936
|
+
type: 'string',
|
|
3937
|
+
nullable: true
|
|
3938
|
+
},
|
|
3939
|
+
descriptorName: {
|
|
3940
|
+
type: 'string',
|
|
3941
|
+
nullable: true
|
|
3942
|
+
}
|
|
3943
|
+
},
|
|
3944
|
+
additionalProperties: false
|
|
3945
|
+
},
|
|
3946
|
+
nullable: true
|
|
3947
|
+
},
|
|
3948
|
+
returnValue: {
|
|
3949
|
+
type: 'object',
|
|
3950
|
+
properties: {
|
|
3951
|
+
type: {
|
|
3952
|
+
type: 'string',
|
|
3953
|
+
nullable: true
|
|
3954
|
+
},
|
|
3955
|
+
typeSimple: {
|
|
3956
|
+
type: 'string',
|
|
3957
|
+
nullable: true
|
|
3958
|
+
}
|
|
3959
|
+
},
|
|
3960
|
+
additionalProperties: false
|
|
3961
|
+
},
|
|
3962
|
+
allowAnonymous: {
|
|
3963
|
+
type: 'boolean',
|
|
3964
|
+
nullable: true
|
|
3965
|
+
},
|
|
3966
|
+
implementFrom: {
|
|
3967
|
+
type: 'string',
|
|
3968
|
+
nullable: true
|
|
3969
|
+
}
|
|
3970
|
+
},
|
|
3971
|
+
additionalProperties: false
|
|
3972
|
+
},
|
|
3973
|
+
nullable: true
|
|
3974
|
+
}
|
|
3975
|
+
},
|
|
3976
|
+
additionalProperties: false
|
|
1118
3977
|
},
|
|
1119
3978
|
nullable: true
|
|
1120
3979
|
}
|
|
@@ -1265,7 +4124,51 @@ export const $Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
1265
4124
|
properties: {
|
|
1266
4125
|
type: 'array',
|
|
1267
4126
|
items: {
|
|
1268
|
-
|
|
4127
|
+
type: 'object',
|
|
4128
|
+
properties: {
|
|
4129
|
+
name: {
|
|
4130
|
+
type: 'string',
|
|
4131
|
+
nullable: true
|
|
4132
|
+
},
|
|
4133
|
+
jsonName: {
|
|
4134
|
+
type: 'string',
|
|
4135
|
+
nullable: true
|
|
4136
|
+
},
|
|
4137
|
+
type: {
|
|
4138
|
+
type: 'string',
|
|
4139
|
+
nullable: true
|
|
4140
|
+
},
|
|
4141
|
+
typeSimple: {
|
|
4142
|
+
type: 'string',
|
|
4143
|
+
nullable: true
|
|
4144
|
+
},
|
|
4145
|
+
isRequired: {
|
|
4146
|
+
type: 'boolean'
|
|
4147
|
+
},
|
|
4148
|
+
minLength: {
|
|
4149
|
+
type: 'integer',
|
|
4150
|
+
format: 'int32',
|
|
4151
|
+
nullable: true
|
|
4152
|
+
},
|
|
4153
|
+
maxLength: {
|
|
4154
|
+
type: 'integer',
|
|
4155
|
+
format: 'int32',
|
|
4156
|
+
nullable: true
|
|
4157
|
+
},
|
|
4158
|
+
minimum: {
|
|
4159
|
+
type: 'string',
|
|
4160
|
+
nullable: true
|
|
4161
|
+
},
|
|
4162
|
+
maximum: {
|
|
4163
|
+
type: 'string',
|
|
4164
|
+
nullable: true
|
|
4165
|
+
},
|
|
4166
|
+
regex: {
|
|
4167
|
+
type: 'string',
|
|
4168
|
+
nullable: true
|
|
4169
|
+
}
|
|
4170
|
+
},
|
|
4171
|
+
additionalProperties: false
|
|
1269
4172
|
},
|
|
1270
4173
|
nullable: true
|
|
1271
4174
|
}
|
|
@@ -1296,7 +4199,21 @@ export const $Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
1296
4199
|
validationErrors: {
|
|
1297
4200
|
type: 'array',
|
|
1298
4201
|
items: {
|
|
1299
|
-
|
|
4202
|
+
type: 'object',
|
|
4203
|
+
properties: {
|
|
4204
|
+
message: {
|
|
4205
|
+
type: 'string',
|
|
4206
|
+
nullable: true
|
|
4207
|
+
},
|
|
4208
|
+
members: {
|
|
4209
|
+
type: 'array',
|
|
4210
|
+
items: {
|
|
4211
|
+
type: 'string'
|
|
4212
|
+
},
|
|
4213
|
+
nullable: true
|
|
4214
|
+
}
|
|
4215
|
+
},
|
|
4216
|
+
additionalProperties: false
|
|
1300
4217
|
},
|
|
1301
4218
|
nullable: true
|
|
1302
4219
|
}
|
|
@@ -1308,7 +4225,48 @@ export const $Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
|
1308
4225
|
type: 'object',
|
|
1309
4226
|
properties: {
|
|
1310
4227
|
error: {
|
|
1311
|
-
|
|
4228
|
+
type: 'object',
|
|
4229
|
+
properties: {
|
|
4230
|
+
code: {
|
|
4231
|
+
type: 'string',
|
|
4232
|
+
nullable: true
|
|
4233
|
+
},
|
|
4234
|
+
message: {
|
|
4235
|
+
type: 'string',
|
|
4236
|
+
nullable: true
|
|
4237
|
+
},
|
|
4238
|
+
details: {
|
|
4239
|
+
type: 'string',
|
|
4240
|
+
nullable: true
|
|
4241
|
+
},
|
|
4242
|
+
data: {
|
|
4243
|
+
type: 'object',
|
|
4244
|
+
additionalProperties: {},
|
|
4245
|
+
nullable: true
|
|
4246
|
+
},
|
|
4247
|
+
validationErrors: {
|
|
4248
|
+
type: 'array',
|
|
4249
|
+
items: {
|
|
4250
|
+
type: 'object',
|
|
4251
|
+
properties: {
|
|
4252
|
+
message: {
|
|
4253
|
+
type: 'string',
|
|
4254
|
+
nullable: true
|
|
4255
|
+
},
|
|
4256
|
+
members: {
|
|
4257
|
+
type: 'array',
|
|
4258
|
+
items: {
|
|
4259
|
+
type: 'string'
|
|
4260
|
+
},
|
|
4261
|
+
nullable: true
|
|
4262
|
+
}
|
|
4263
|
+
},
|
|
4264
|
+
additionalProperties: false
|
|
4265
|
+
},
|
|
4266
|
+
nullable: true
|
|
4267
|
+
}
|
|
4268
|
+
},
|
|
4269
|
+
additionalProperties: false
|
|
1312
4270
|
}
|
|
1313
4271
|
},
|
|
1314
4272
|
additionalProperties: false
|
|
@@ -1392,7 +4350,21 @@ export const $Volo_Abp_Validation_StringValues_IStringValueType = {
|
|
|
1392
4350
|
readOnly: true
|
|
1393
4351
|
},
|
|
1394
4352
|
validator: {
|
|
1395
|
-
|
|
4353
|
+
type: 'object',
|
|
4354
|
+
properties: {
|
|
4355
|
+
name: {
|
|
4356
|
+
type: 'string',
|
|
4357
|
+
nullable: true,
|
|
4358
|
+
readOnly: true
|
|
4359
|
+
},
|
|
4360
|
+
properties: {
|
|
4361
|
+
type: 'object',
|
|
4362
|
+
additionalProperties: {},
|
|
4363
|
+
nullable: true,
|
|
4364
|
+
readOnly: true
|
|
4365
|
+
}
|
|
4366
|
+
},
|
|
4367
|
+
additionalProperties: false
|
|
1396
4368
|
}
|
|
1397
4369
|
},
|
|
1398
4370
|
additionalProperties: false
|
|
@@ -1582,7 +4554,52 @@ export const $Volo_Payment_Requests_PaymentRequestCreateDto = {
|
|
|
1582
4554
|
products: {
|
|
1583
4555
|
type: 'array',
|
|
1584
4556
|
items: {
|
|
1585
|
-
'
|
|
4557
|
+
required: ['code', 'name'],
|
|
4558
|
+
type: 'object',
|
|
4559
|
+
properties: {
|
|
4560
|
+
code: {
|
|
4561
|
+
minLength: 1,
|
|
4562
|
+
type: 'string'
|
|
4563
|
+
},
|
|
4564
|
+
name: {
|
|
4565
|
+
minLength: 1,
|
|
4566
|
+
type: 'string'
|
|
4567
|
+
},
|
|
4568
|
+
unitPrice: {
|
|
4569
|
+
type: 'number',
|
|
4570
|
+
format: 'float'
|
|
4571
|
+
},
|
|
4572
|
+
count: {
|
|
4573
|
+
maximum: 2147483647,
|
|
4574
|
+
minimum: 1,
|
|
4575
|
+
type: 'integer',
|
|
4576
|
+
format: 'int32'
|
|
4577
|
+
},
|
|
4578
|
+
totalPrice: {
|
|
4579
|
+
type: 'number',
|
|
4580
|
+
format: 'float',
|
|
4581
|
+
nullable: true
|
|
4582
|
+
},
|
|
4583
|
+
paymentType: {
|
|
4584
|
+
enum: [0, 1],
|
|
4585
|
+
type: 'integer',
|
|
4586
|
+
format: 'int32'
|
|
4587
|
+
},
|
|
4588
|
+
planId: {
|
|
4589
|
+
type: 'string',
|
|
4590
|
+
format: 'uuid',
|
|
4591
|
+
nullable: true
|
|
4592
|
+
},
|
|
4593
|
+
extraProperties: {
|
|
4594
|
+
type: 'object',
|
|
4595
|
+
additionalProperties: {
|
|
4596
|
+
type: 'object',
|
|
4597
|
+
additionalProperties: false
|
|
4598
|
+
},
|
|
4599
|
+
nullable: true
|
|
4600
|
+
}
|
|
4601
|
+
},
|
|
4602
|
+
additionalProperties: false
|
|
1586
4603
|
},
|
|
1587
4604
|
nullable: true
|
|
1588
4605
|
}
|
|
@@ -1618,7 +4635,9 @@ export const $Volo_Payment_Requests_PaymentRequestProductCreateDto = {
|
|
|
1618
4635
|
nullable: true
|
|
1619
4636
|
},
|
|
1620
4637
|
paymentType: {
|
|
1621
|
-
|
|
4638
|
+
enum: [0, 1],
|
|
4639
|
+
type: 'integer',
|
|
4640
|
+
format: 'int32'
|
|
1622
4641
|
},
|
|
1623
4642
|
planId: {
|
|
1624
4643
|
type: 'string',
|
|
@@ -1628,7 +4647,8 @@ export const $Volo_Payment_Requests_PaymentRequestProductCreateDto = {
|
|
|
1628
4647
|
extraProperties: {
|
|
1629
4648
|
type: 'object',
|
|
1630
4649
|
additionalProperties: {
|
|
1631
|
-
|
|
4650
|
+
type: 'object',
|
|
4651
|
+
additionalProperties: false
|
|
1632
4652
|
},
|
|
1633
4653
|
nullable: true
|
|
1634
4654
|
}
|
|
@@ -1664,7 +4684,9 @@ export const $Volo_Payment_Requests_PaymentRequestProductDto = {
|
|
|
1664
4684
|
format: 'float'
|
|
1665
4685
|
},
|
|
1666
4686
|
paymentType: {
|
|
1667
|
-
|
|
4687
|
+
enum: [0, 1],
|
|
4688
|
+
type: 'integer',
|
|
4689
|
+
format: 'int32'
|
|
1668
4690
|
},
|
|
1669
4691
|
planId: {
|
|
1670
4692
|
type: 'string',
|
|
@@ -1744,7 +4766,48 @@ export const $Volo_Payment_Requests_PaymentRequestWithDetailsDto = {
|
|
|
1744
4766
|
products: {
|
|
1745
4767
|
type: 'array',
|
|
1746
4768
|
items: {
|
|
1747
|
-
|
|
4769
|
+
type: 'object',
|
|
4770
|
+
properties: {
|
|
4771
|
+
paymentRequestId: {
|
|
4772
|
+
type: 'string',
|
|
4773
|
+
format: 'uuid'
|
|
4774
|
+
},
|
|
4775
|
+
code: {
|
|
4776
|
+
type: 'string',
|
|
4777
|
+
nullable: true
|
|
4778
|
+
},
|
|
4779
|
+
name: {
|
|
4780
|
+
type: 'string',
|
|
4781
|
+
nullable: true
|
|
4782
|
+
},
|
|
4783
|
+
unitPrice: {
|
|
4784
|
+
type: 'number',
|
|
4785
|
+
format: 'float'
|
|
4786
|
+
},
|
|
4787
|
+
count: {
|
|
4788
|
+
type: 'integer',
|
|
4789
|
+
format: 'int32'
|
|
4790
|
+
},
|
|
4791
|
+
totalPrice: {
|
|
4792
|
+
type: 'number',
|
|
4793
|
+
format: 'float'
|
|
4794
|
+
},
|
|
4795
|
+
paymentType: {
|
|
4796
|
+
enum: [0, 1],
|
|
4797
|
+
type: 'integer',
|
|
4798
|
+
format: 'int32'
|
|
4799
|
+
},
|
|
4800
|
+
planId: {
|
|
4801
|
+
type: 'string',
|
|
4802
|
+
format: 'uuid'
|
|
4803
|
+
},
|
|
4804
|
+
extraProperties: {
|
|
4805
|
+
type: 'object',
|
|
4806
|
+
additionalProperties: {},
|
|
4807
|
+
nullable: true
|
|
4808
|
+
}
|
|
4809
|
+
},
|
|
4810
|
+
additionalProperties: false
|
|
1748
4811
|
},
|
|
1749
4812
|
nullable: true
|
|
1750
4813
|
},
|
|
@@ -1753,7 +4816,9 @@ export const $Volo_Payment_Requests_PaymentRequestWithDetailsDto = {
|
|
|
1753
4816
|
nullable: true
|
|
1754
4817
|
},
|
|
1755
4818
|
state: {
|
|
1756
|
-
|
|
4819
|
+
enum: [0, 1, 2, 3],
|
|
4820
|
+
type: 'integer',
|
|
4821
|
+
format: 'int32'
|
|
1757
4822
|
},
|
|
1758
4823
|
failReason: {
|
|
1759
4824
|
type: 'string',
|
|
@@ -1917,7 +4982,26 @@ export const $Volo_Saas_Host_Dtos_SaasTenantConnectionStringsDto = {
|
|
|
1917
4982
|
databases: {
|
|
1918
4983
|
type: 'array',
|
|
1919
4984
|
items: {
|
|
1920
|
-
|
|
4985
|
+
type: 'object',
|
|
4986
|
+
properties: {
|
|
4987
|
+
extraProperties: {
|
|
4988
|
+
type: 'object',
|
|
4989
|
+
additionalProperties: {},
|
|
4990
|
+
nullable: true,
|
|
4991
|
+
readOnly: true
|
|
4992
|
+
},
|
|
4993
|
+
databaseName: {
|
|
4994
|
+
type: 'string',
|
|
4995
|
+
nullable: true
|
|
4996
|
+
},
|
|
4997
|
+
connectionString: {
|
|
4998
|
+
maxLength: 1024,
|
|
4999
|
+
minLength: 0,
|
|
5000
|
+
type: 'string',
|
|
5001
|
+
nullable: true
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
additionalProperties: false
|
|
1921
5005
|
},
|
|
1922
5006
|
nullable: true
|
|
1923
5007
|
}
|
|
@@ -1946,7 +5030,9 @@ export const $Volo_Saas_Host_Dtos_SaasTenantCreateDto = {
|
|
|
1946
5030
|
nullable: true
|
|
1947
5031
|
},
|
|
1948
5032
|
activationState: {
|
|
1949
|
-
|
|
5033
|
+
enum: [0, 1, 2],
|
|
5034
|
+
type: 'integer',
|
|
5035
|
+
format: 'int32'
|
|
1950
5036
|
},
|
|
1951
5037
|
activationEndDate: {
|
|
1952
5038
|
type: 'string',
|
|
@@ -1970,7 +5056,48 @@ export const $Volo_Saas_Host_Dtos_SaasTenantCreateDto = {
|
|
|
1970
5056
|
type: 'string'
|
|
1971
5057
|
},
|
|
1972
5058
|
connectionStrings: {
|
|
1973
|
-
|
|
5059
|
+
type: 'object',
|
|
5060
|
+
properties: {
|
|
5061
|
+
extraProperties: {
|
|
5062
|
+
type: 'object',
|
|
5063
|
+
additionalProperties: {},
|
|
5064
|
+
nullable: true,
|
|
5065
|
+
readOnly: true
|
|
5066
|
+
},
|
|
5067
|
+
default: {
|
|
5068
|
+
maxLength: 1024,
|
|
5069
|
+
minLength: 0,
|
|
5070
|
+
type: 'string',
|
|
5071
|
+
nullable: true
|
|
5072
|
+
},
|
|
5073
|
+
databases: {
|
|
5074
|
+
type: 'array',
|
|
5075
|
+
items: {
|
|
5076
|
+
type: 'object',
|
|
5077
|
+
properties: {
|
|
5078
|
+
extraProperties: {
|
|
5079
|
+
type: 'object',
|
|
5080
|
+
additionalProperties: {},
|
|
5081
|
+
nullable: true,
|
|
5082
|
+
readOnly: true
|
|
5083
|
+
},
|
|
5084
|
+
databaseName: {
|
|
5085
|
+
type: 'string',
|
|
5086
|
+
nullable: true
|
|
5087
|
+
},
|
|
5088
|
+
connectionString: {
|
|
5089
|
+
maxLength: 1024,
|
|
5090
|
+
minLength: 0,
|
|
5091
|
+
type: 'string',
|
|
5092
|
+
nullable: true
|
|
5093
|
+
}
|
|
5094
|
+
},
|
|
5095
|
+
additionalProperties: false
|
|
5096
|
+
},
|
|
5097
|
+
nullable: true
|
|
5098
|
+
}
|
|
5099
|
+
},
|
|
5100
|
+
additionalProperties: false
|
|
1974
5101
|
}
|
|
1975
5102
|
},
|
|
1976
5103
|
additionalProperties: false
|
|
@@ -2054,7 +5181,9 @@ export const $Volo_Saas_Host_Dtos_SaasTenantDto = {
|
|
|
2054
5181
|
type: 'boolean'
|
|
2055
5182
|
},
|
|
2056
5183
|
activationState: {
|
|
2057
|
-
|
|
5184
|
+
enum: [0, 1, 2],
|
|
5185
|
+
type: 'integer',
|
|
5186
|
+
format: 'int32'
|
|
2058
5187
|
},
|
|
2059
5188
|
activationEndDate: {
|
|
2060
5189
|
type: 'string',
|
|
@@ -2105,7 +5234,9 @@ export const $Volo_Saas_Host_Dtos_SaasTenantUpdateDto = {
|
|
|
2105
5234
|
nullable: true
|
|
2106
5235
|
},
|
|
2107
5236
|
activationState: {
|
|
2108
|
-
|
|
5237
|
+
enum: [0, 1, 2],
|
|
5238
|
+
type: 'integer',
|
|
5239
|
+
format: 'int32'
|
|
2109
5240
|
},
|
|
2110
5241
|
activationEndDate: {
|
|
2111
5242
|
type: 'string',
|