@ayasofyazilim/saas 0.0.129 → 0.0.131
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/SettingService/schemas.gen.ts +110 -23
- package/SettingService/sdk.gen.ts +176 -1
- package/SettingService/types.gen.ts +164 -1312
- package/TagService/schemas.gen.ts +9 -6
- package/TagService/types.gen.ts +137 -1844
- package/package.json +1 -1
|
@@ -1,39 +1,51 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
2
|
|
|
3
3
|
export type PagedResultDto_ProductGroupDto = {
|
|
4
|
-
items?: Array<
|
|
5
|
-
id?: string;
|
|
6
|
-
articleCode: string;
|
|
7
|
-
name: string;
|
|
8
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
9
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
10
|
-
vatId?: (string) | null;
|
|
11
|
-
vatPercent?: (number) | null;
|
|
12
|
-
active: boolean;
|
|
13
|
-
food: boolean;
|
|
14
|
-
}> | null;
|
|
4
|
+
items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
|
|
15
5
|
totalCount?: number;
|
|
16
6
|
};
|
|
17
7
|
|
|
18
8
|
export type PagedResultDto_VatDto = {
|
|
19
|
-
items?: Array<
|
|
20
|
-
id?: string;
|
|
21
|
-
percent?: number;
|
|
22
|
-
minimumTotalAmount?: number;
|
|
23
|
-
active?: boolean;
|
|
24
|
-
}> | null;
|
|
9
|
+
items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
|
|
25
10
|
totalCount?: number;
|
|
26
11
|
};
|
|
27
12
|
|
|
13
|
+
export type UniRefund_SettingService_ProductGroupMerchants_CreateManyProductGroupMerchantDto = {
|
|
14
|
+
merchantId: string;
|
|
15
|
+
createProductGroupMerchantBaseDto: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantBaseDto>;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantBaseDto = {
|
|
19
|
+
productGroupId: string;
|
|
20
|
+
isDefault?: boolean;
|
|
21
|
+
};
|
|
22
|
+
|
|
28
23
|
export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
|
|
24
|
+
productGroupId: string;
|
|
25
|
+
isDefault?: boolean;
|
|
29
26
|
merchantId?: string;
|
|
30
|
-
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export type UniRefund_SettingService_ProductGroupMerchants_DeleteManyProductGroupMerchantDto = {
|
|
30
|
+
merchantId: string;
|
|
31
|
+
productGroupIds: Array<(string)>;
|
|
31
32
|
};
|
|
32
33
|
|
|
33
34
|
export type UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantDto = {
|
|
34
35
|
id?: string;
|
|
35
36
|
productGroupId?: string;
|
|
36
37
|
merchantId?: string;
|
|
38
|
+
isDefault?: boolean;
|
|
39
|
+
};
|
|
40
|
+
|
|
41
|
+
export type UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantRelationDto = {
|
|
42
|
+
productGroupName: string;
|
|
43
|
+
isDefault: boolean;
|
|
44
|
+
isActive: boolean;
|
|
45
|
+
isAssign: boolean;
|
|
46
|
+
productGroupId: string;
|
|
47
|
+
vatRate: number;
|
|
48
|
+
vatId: string;
|
|
37
49
|
};
|
|
38
50
|
|
|
39
51
|
export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
|
|
@@ -44,29 +56,22 @@ export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto
|
|
|
44
56
|
export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
45
57
|
|
|
46
58
|
export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
|
|
47
|
-
readonly extraProperties?: {
|
|
48
|
-
[key: string]: unknown;
|
|
49
|
-
} | null;
|
|
50
59
|
articleCode: string;
|
|
51
60
|
name: string;
|
|
52
|
-
unitCode:
|
|
53
|
-
companyType:
|
|
61
|
+
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
62
|
+
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
54
63
|
active?: boolean;
|
|
55
64
|
food?: boolean;
|
|
56
|
-
vatId
|
|
65
|
+
vatId: string;
|
|
57
66
|
};
|
|
58
67
|
|
|
59
|
-
export type unitCode = 'QNT' | 'BAG' | 'BOX';
|
|
60
|
-
|
|
61
|
-
export type companyType = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
62
|
-
|
|
63
68
|
export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
64
69
|
id?: string;
|
|
65
70
|
articleCode: string;
|
|
66
71
|
name: string;
|
|
67
|
-
unitCode:
|
|
68
|
-
companyType:
|
|
69
|
-
vatId?:
|
|
72
|
+
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
73
|
+
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
74
|
+
vatId?: string;
|
|
70
75
|
vatPercent?: (number) | null;
|
|
71
76
|
active: boolean;
|
|
72
77
|
food: boolean;
|
|
@@ -75,16 +80,13 @@ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
|
|
|
75
80
|
export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
|
|
76
81
|
|
|
77
82
|
export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
|
|
78
|
-
readonly extraProperties?: {
|
|
79
|
-
[key: string]: unknown;
|
|
80
|
-
} | null;
|
|
81
83
|
articleCode: string;
|
|
82
84
|
name: string;
|
|
83
|
-
unitCode:
|
|
84
|
-
companyType:
|
|
85
|
+
unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
|
|
86
|
+
companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
|
|
85
87
|
active?: boolean;
|
|
86
88
|
food?: boolean;
|
|
87
|
-
vatId
|
|
89
|
+
vatId: string;
|
|
88
90
|
};
|
|
89
91
|
|
|
90
92
|
export type UniRefund_SettingService_Vats_CreateVatDto = {
|
|
@@ -119,190 +121,17 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthCon
|
|
|
119
121
|
};
|
|
120
122
|
|
|
121
123
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
122
|
-
localization?:
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
baseResources?: Array<(string)> | null;
|
|
134
|
-
};
|
|
135
|
-
} | null;
|
|
136
|
-
languages?: Array<{
|
|
137
|
-
cultureName?: (string) | null;
|
|
138
|
-
uiCultureName?: (string) | null;
|
|
139
|
-
displayName?: (string) | null;
|
|
140
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
141
|
-
}> | null;
|
|
142
|
-
currentCulture?: {
|
|
143
|
-
displayName?: (string) | null;
|
|
144
|
-
englishName?: (string) | null;
|
|
145
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
146
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
147
|
-
isRightToLeft?: boolean;
|
|
148
|
-
cultureName?: (string) | null;
|
|
149
|
-
name?: (string) | null;
|
|
150
|
-
nativeName?: (string) | null;
|
|
151
|
-
dateTimeFormat?: {
|
|
152
|
-
calendarAlgorithmType?: (string) | null;
|
|
153
|
-
dateTimeFormatLong?: (string) | null;
|
|
154
|
-
shortDatePattern?: (string) | null;
|
|
155
|
-
fullDateTimePattern?: (string) | null;
|
|
156
|
-
dateSeparator?: (string) | null;
|
|
157
|
-
shortTimePattern?: (string) | null;
|
|
158
|
-
longTimePattern?: (string) | null;
|
|
159
|
-
};
|
|
160
|
-
};
|
|
161
|
-
defaultResourceName?: (string) | null;
|
|
162
|
-
languagesMap?: {
|
|
163
|
-
[key: string]: Array<{
|
|
164
|
-
name?: (string) | null;
|
|
165
|
-
value?: (string) | null;
|
|
166
|
-
}>;
|
|
167
|
-
} | null;
|
|
168
|
-
languageFilesMap?: {
|
|
169
|
-
[key: string]: Array<{
|
|
170
|
-
name?: (string) | null;
|
|
171
|
-
value?: (string) | null;
|
|
172
|
-
}>;
|
|
173
|
-
} | null;
|
|
174
|
-
};
|
|
175
|
-
auth?: {
|
|
176
|
-
grantedPolicies?: {
|
|
177
|
-
[key: string]: (boolean);
|
|
178
|
-
} | null;
|
|
179
|
-
};
|
|
180
|
-
setting?: {
|
|
181
|
-
values?: {
|
|
182
|
-
[key: string]: ((string) | null);
|
|
183
|
-
} | null;
|
|
184
|
-
};
|
|
185
|
-
currentUser?: {
|
|
186
|
-
isAuthenticated?: boolean;
|
|
187
|
-
id?: (string) | null;
|
|
188
|
-
tenantId?: (string) | null;
|
|
189
|
-
impersonatorUserId?: (string) | null;
|
|
190
|
-
impersonatorTenantId?: (string) | null;
|
|
191
|
-
impersonatorUserName?: (string) | null;
|
|
192
|
-
impersonatorTenantName?: (string) | null;
|
|
193
|
-
userName?: (string) | null;
|
|
194
|
-
name?: (string) | null;
|
|
195
|
-
surName?: (string) | null;
|
|
196
|
-
email?: (string) | null;
|
|
197
|
-
emailVerified?: boolean;
|
|
198
|
-
phoneNumber?: (string) | null;
|
|
199
|
-
phoneNumberVerified?: boolean;
|
|
200
|
-
roles?: Array<(string)> | null;
|
|
201
|
-
sessionId?: (string) | null;
|
|
202
|
-
};
|
|
203
|
-
features?: {
|
|
204
|
-
values?: {
|
|
205
|
-
[key: string]: ((string) | null);
|
|
206
|
-
} | null;
|
|
207
|
-
};
|
|
208
|
-
globalFeatures?: {
|
|
209
|
-
enabledFeatures?: Array<(string)> | null;
|
|
210
|
-
};
|
|
211
|
-
multiTenancy?: {
|
|
212
|
-
isEnabled?: boolean;
|
|
213
|
-
};
|
|
214
|
-
currentTenant?: {
|
|
215
|
-
id?: (string) | null;
|
|
216
|
-
name?: (string) | null;
|
|
217
|
-
isAvailable?: boolean;
|
|
218
|
-
};
|
|
219
|
-
timing?: {
|
|
220
|
-
timeZone?: {
|
|
221
|
-
iana?: {
|
|
222
|
-
timeZoneName?: (string) | null;
|
|
223
|
-
};
|
|
224
|
-
windows?: {
|
|
225
|
-
timeZoneId?: (string) | null;
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
};
|
|
229
|
-
clock?: {
|
|
230
|
-
kind?: (string) | null;
|
|
231
|
-
};
|
|
232
|
-
objectExtensions?: {
|
|
233
|
-
modules?: {
|
|
234
|
-
[key: string]: {
|
|
235
|
-
entities?: {
|
|
236
|
-
[key: string]: {
|
|
237
|
-
properties?: {
|
|
238
|
-
[key: string]: {
|
|
239
|
-
type?: (string) | null;
|
|
240
|
-
typeSimple?: (string) | null;
|
|
241
|
-
displayName?: {
|
|
242
|
-
name?: (string) | null;
|
|
243
|
-
resource?: (string) | null;
|
|
244
|
-
};
|
|
245
|
-
api?: {
|
|
246
|
-
onGet?: {
|
|
247
|
-
isAvailable?: boolean;
|
|
248
|
-
};
|
|
249
|
-
onCreate?: {
|
|
250
|
-
isAvailable?: boolean;
|
|
251
|
-
};
|
|
252
|
-
onUpdate?: {
|
|
253
|
-
isAvailable?: boolean;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
ui?: {
|
|
257
|
-
onTable?: {
|
|
258
|
-
isVisible?: boolean;
|
|
259
|
-
};
|
|
260
|
-
onCreateForm?: {
|
|
261
|
-
isVisible?: boolean;
|
|
262
|
-
};
|
|
263
|
-
onEditForm?: {
|
|
264
|
-
isVisible?: boolean;
|
|
265
|
-
};
|
|
266
|
-
lookup?: {
|
|
267
|
-
url?: (string) | null;
|
|
268
|
-
resultListPropertyName?: (string) | null;
|
|
269
|
-
displayPropertyName?: (string) | null;
|
|
270
|
-
valuePropertyName?: (string) | null;
|
|
271
|
-
filterParamName?: (string) | null;
|
|
272
|
-
};
|
|
273
|
-
};
|
|
274
|
-
attributes?: Array<{
|
|
275
|
-
typeSimple?: (string) | null;
|
|
276
|
-
config?: {
|
|
277
|
-
[key: string]: unknown;
|
|
278
|
-
} | null;
|
|
279
|
-
}> | null;
|
|
280
|
-
configuration?: {
|
|
281
|
-
[key: string]: unknown;
|
|
282
|
-
} | null;
|
|
283
|
-
defaultValue?: unknown;
|
|
284
|
-
};
|
|
285
|
-
} | null;
|
|
286
|
-
configuration?: {
|
|
287
|
-
[key: string]: unknown;
|
|
288
|
-
} | null;
|
|
289
|
-
};
|
|
290
|
-
} | null;
|
|
291
|
-
configuration?: {
|
|
292
|
-
[key: string]: unknown;
|
|
293
|
-
} | null;
|
|
294
|
-
};
|
|
295
|
-
} | null;
|
|
296
|
-
enums?: {
|
|
297
|
-
[key: string]: {
|
|
298
|
-
fields?: Array<{
|
|
299
|
-
name?: (string) | null;
|
|
300
|
-
value?: unknown;
|
|
301
|
-
}> | null;
|
|
302
|
-
localizationResource?: (string) | null;
|
|
303
|
-
};
|
|
304
|
-
} | null;
|
|
305
|
-
};
|
|
124
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
125
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
126
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
127
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
128
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
129
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
130
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
131
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
132
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
133
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
134
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
306
135
|
extraProperties?: {
|
|
307
136
|
[key: string]: unknown;
|
|
308
137
|
} | null;
|
|
@@ -325,81 +154,24 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocaliz
|
|
|
325
154
|
};
|
|
326
155
|
} | null;
|
|
327
156
|
resources?: {
|
|
328
|
-
[key: string]:
|
|
329
|
-
texts?: {
|
|
330
|
-
[key: string]: (string);
|
|
331
|
-
} | null;
|
|
332
|
-
baseResources?: Array<(string)> | null;
|
|
333
|
-
};
|
|
157
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
334
158
|
} | null;
|
|
335
|
-
languages?: Array<
|
|
336
|
-
|
|
337
|
-
uiCultureName?: (string) | null;
|
|
338
|
-
displayName?: (string) | null;
|
|
339
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
340
|
-
}> | null;
|
|
341
|
-
currentCulture?: {
|
|
342
|
-
displayName?: (string) | null;
|
|
343
|
-
englishName?: (string) | null;
|
|
344
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
345
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
346
|
-
isRightToLeft?: boolean;
|
|
347
|
-
cultureName?: (string) | null;
|
|
348
|
-
name?: (string) | null;
|
|
349
|
-
nativeName?: (string) | null;
|
|
350
|
-
dateTimeFormat?: {
|
|
351
|
-
calendarAlgorithmType?: (string) | null;
|
|
352
|
-
dateTimeFormatLong?: (string) | null;
|
|
353
|
-
shortDatePattern?: (string) | null;
|
|
354
|
-
fullDateTimePattern?: (string) | null;
|
|
355
|
-
dateSeparator?: (string) | null;
|
|
356
|
-
shortTimePattern?: (string) | null;
|
|
357
|
-
longTimePattern?: (string) | null;
|
|
358
|
-
};
|
|
359
|
-
};
|
|
159
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
160
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
360
161
|
defaultResourceName?: (string) | null;
|
|
361
162
|
languagesMap?: {
|
|
362
|
-
[key: string]: Array<
|
|
363
|
-
name?: (string) | null;
|
|
364
|
-
value?: (string) | null;
|
|
365
|
-
}>;
|
|
163
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
366
164
|
} | null;
|
|
367
165
|
languageFilesMap?: {
|
|
368
|
-
[key: string]: Array<
|
|
369
|
-
name?: (string) | null;
|
|
370
|
-
value?: (string) | null;
|
|
371
|
-
}>;
|
|
166
|
+
[key: string]: Array<Volo_Abp_NameValue>;
|
|
372
167
|
} | null;
|
|
373
168
|
};
|
|
374
169
|
|
|
375
170
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
376
171
|
resources?: {
|
|
377
|
-
[key: string]:
|
|
378
|
-
texts?: {
|
|
379
|
-
[key: string]: (string);
|
|
380
|
-
} | null;
|
|
381
|
-
baseResources?: Array<(string)> | null;
|
|
382
|
-
};
|
|
172
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
|
|
383
173
|
} | null;
|
|
384
|
-
currentCulture?:
|
|
385
|
-
displayName?: (string) | null;
|
|
386
|
-
englishName?: (string) | null;
|
|
387
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
388
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
389
|
-
isRightToLeft?: boolean;
|
|
390
|
-
cultureName?: (string) | null;
|
|
391
|
-
name?: (string) | null;
|
|
392
|
-
nativeName?: (string) | null;
|
|
393
|
-
dateTimeFormat?: {
|
|
394
|
-
calendarAlgorithmType?: (string) | null;
|
|
395
|
-
dateTimeFormatLong?: (string) | null;
|
|
396
|
-
shortDatePattern?: (string) | null;
|
|
397
|
-
fullDateTimePattern?: (string) | null;
|
|
398
|
-
dateSeparator?: (string) | null;
|
|
399
|
-
shortTimePattern?: (string) | null;
|
|
400
|
-
longTimePattern?: (string) | null;
|
|
401
|
-
};
|
|
402
|
-
};
|
|
174
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
403
175
|
};
|
|
404
176
|
|
|
405
177
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
@@ -428,15 +200,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto
|
|
|
428
200
|
cultureName?: (string) | null;
|
|
429
201
|
name?: (string) | null;
|
|
430
202
|
nativeName?: (string) | null;
|
|
431
|
-
dateTimeFormat?:
|
|
432
|
-
calendarAlgorithmType?: (string) | null;
|
|
433
|
-
dateTimeFormatLong?: (string) | null;
|
|
434
|
-
shortDatePattern?: (string) | null;
|
|
435
|
-
fullDateTimePattern?: (string) | null;
|
|
436
|
-
dateSeparator?: (string) | null;
|
|
437
|
-
shortTimePattern?: (string) | null;
|
|
438
|
-
longTimePattern?: (string) | null;
|
|
439
|
-
};
|
|
203
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
440
204
|
};
|
|
441
205
|
|
|
442
206
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
@@ -474,53 +238,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
|
|
|
474
238
|
|
|
475
239
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
476
240
|
properties?: {
|
|
477
|
-
[key: string]:
|
|
478
|
-
type?: (string) | null;
|
|
479
|
-
typeSimple?: (string) | null;
|
|
480
|
-
displayName?: {
|
|
481
|
-
name?: (string) | null;
|
|
482
|
-
resource?: (string) | null;
|
|
483
|
-
};
|
|
484
|
-
api?: {
|
|
485
|
-
onGet?: {
|
|
486
|
-
isAvailable?: boolean;
|
|
487
|
-
};
|
|
488
|
-
onCreate?: {
|
|
489
|
-
isAvailable?: boolean;
|
|
490
|
-
};
|
|
491
|
-
onUpdate?: {
|
|
492
|
-
isAvailable?: boolean;
|
|
493
|
-
};
|
|
494
|
-
};
|
|
495
|
-
ui?: {
|
|
496
|
-
onTable?: {
|
|
497
|
-
isVisible?: boolean;
|
|
498
|
-
};
|
|
499
|
-
onCreateForm?: {
|
|
500
|
-
isVisible?: boolean;
|
|
501
|
-
};
|
|
502
|
-
onEditForm?: {
|
|
503
|
-
isVisible?: boolean;
|
|
504
|
-
};
|
|
505
|
-
lookup?: {
|
|
506
|
-
url?: (string) | null;
|
|
507
|
-
resultListPropertyName?: (string) | null;
|
|
508
|
-
displayPropertyName?: (string) | null;
|
|
509
|
-
valuePropertyName?: (string) | null;
|
|
510
|
-
filterParamName?: (string) | null;
|
|
511
|
-
};
|
|
512
|
-
};
|
|
513
|
-
attributes?: Array<{
|
|
514
|
-
typeSimple?: (string) | null;
|
|
515
|
-
config?: {
|
|
516
|
-
[key: string]: unknown;
|
|
517
|
-
} | null;
|
|
518
|
-
}> | null;
|
|
519
|
-
configuration?: {
|
|
520
|
-
[key: string]: unknown;
|
|
521
|
-
} | null;
|
|
522
|
-
defaultValue?: unknown;
|
|
523
|
-
};
|
|
241
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
|
|
524
242
|
} | null;
|
|
525
243
|
configuration?: {
|
|
526
244
|
[key: string]: unknown;
|
|
@@ -528,10 +246,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_En
|
|
|
528
246
|
};
|
|
529
247
|
|
|
530
248
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
531
|
-
fields?: Array<
|
|
532
|
-
name?: (string) | null;
|
|
533
|
-
value?: unknown;
|
|
534
|
-
}> | null;
|
|
249
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
535
250
|
localizationResource?: (string) | null;
|
|
536
251
|
};
|
|
537
252
|
|
|
@@ -545,15 +260,9 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
545
260
|
};
|
|
546
261
|
|
|
547
262
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
548
|
-
onGet?:
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
onCreate?: {
|
|
552
|
-
isAvailable?: boolean;
|
|
553
|
-
};
|
|
554
|
-
onUpdate?: {
|
|
555
|
-
isAvailable?: boolean;
|
|
556
|
-
};
|
|
263
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
264
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
265
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
557
266
|
};
|
|
558
267
|
|
|
559
268
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
@@ -574,45 +283,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
574
283
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
575
284
|
type?: (string) | null;
|
|
576
285
|
typeSimple?: (string) | null;
|
|
577
|
-
displayName?:
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
api?: {
|
|
582
|
-
onGet?: {
|
|
583
|
-
isAvailable?: boolean;
|
|
584
|
-
};
|
|
585
|
-
onCreate?: {
|
|
586
|
-
isAvailable?: boolean;
|
|
587
|
-
};
|
|
588
|
-
onUpdate?: {
|
|
589
|
-
isAvailable?: boolean;
|
|
590
|
-
};
|
|
591
|
-
};
|
|
592
|
-
ui?: {
|
|
593
|
-
onTable?: {
|
|
594
|
-
isVisible?: boolean;
|
|
595
|
-
};
|
|
596
|
-
onCreateForm?: {
|
|
597
|
-
isVisible?: boolean;
|
|
598
|
-
};
|
|
599
|
-
onEditForm?: {
|
|
600
|
-
isVisible?: boolean;
|
|
601
|
-
};
|
|
602
|
-
lookup?: {
|
|
603
|
-
url?: (string) | null;
|
|
604
|
-
resultListPropertyName?: (string) | null;
|
|
605
|
-
displayPropertyName?: (string) | null;
|
|
606
|
-
valuePropertyName?: (string) | null;
|
|
607
|
-
filterParamName?: (string) | null;
|
|
608
|
-
};
|
|
609
|
-
};
|
|
610
|
-
attributes?: Array<{
|
|
611
|
-
typeSimple?: (string) | null;
|
|
612
|
-
config?: {
|
|
613
|
-
[key: string]: unknown;
|
|
614
|
-
} | null;
|
|
615
|
-
}> | null;
|
|
286
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
287
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
288
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
289
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
616
290
|
configuration?: {
|
|
617
291
|
[key: string]: unknown;
|
|
618
292
|
} | null;
|
|
@@ -620,22 +294,10 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Ex
|
|
|
620
294
|
};
|
|
621
295
|
|
|
622
296
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
623
|
-
onTable?:
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
isVisible?: boolean;
|
|
628
|
-
};
|
|
629
|
-
onEditForm?: {
|
|
630
|
-
isVisible?: boolean;
|
|
631
|
-
};
|
|
632
|
-
lookup?: {
|
|
633
|
-
url?: (string) | null;
|
|
634
|
-
resultListPropertyName?: (string) | null;
|
|
635
|
-
displayPropertyName?: (string) | null;
|
|
636
|
-
valuePropertyName?: (string) | null;
|
|
637
|
-
filterParamName?: (string) | null;
|
|
638
|
-
};
|
|
297
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
298
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
299
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
300
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
639
301
|
};
|
|
640
302
|
|
|
641
303
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
@@ -661,60 +323,7 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Lo
|
|
|
661
323
|
|
|
662
324
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
|
|
663
325
|
entities?: {
|
|
664
|
-
[key: string]:
|
|
665
|
-
properties?: {
|
|
666
|
-
[key: string]: {
|
|
667
|
-
type?: (string) | null;
|
|
668
|
-
typeSimple?: (string) | null;
|
|
669
|
-
displayName?: {
|
|
670
|
-
name?: (string) | null;
|
|
671
|
-
resource?: (string) | null;
|
|
672
|
-
};
|
|
673
|
-
api?: {
|
|
674
|
-
onGet?: {
|
|
675
|
-
isAvailable?: boolean;
|
|
676
|
-
};
|
|
677
|
-
onCreate?: {
|
|
678
|
-
isAvailable?: boolean;
|
|
679
|
-
};
|
|
680
|
-
onUpdate?: {
|
|
681
|
-
isAvailable?: boolean;
|
|
682
|
-
};
|
|
683
|
-
};
|
|
684
|
-
ui?: {
|
|
685
|
-
onTable?: {
|
|
686
|
-
isVisible?: boolean;
|
|
687
|
-
};
|
|
688
|
-
onCreateForm?: {
|
|
689
|
-
isVisible?: boolean;
|
|
690
|
-
};
|
|
691
|
-
onEditForm?: {
|
|
692
|
-
isVisible?: boolean;
|
|
693
|
-
};
|
|
694
|
-
lookup?: {
|
|
695
|
-
url?: (string) | null;
|
|
696
|
-
resultListPropertyName?: (string) | null;
|
|
697
|
-
displayPropertyName?: (string) | null;
|
|
698
|
-
valuePropertyName?: (string) | null;
|
|
699
|
-
filterParamName?: (string) | null;
|
|
700
|
-
};
|
|
701
|
-
};
|
|
702
|
-
attributes?: Array<{
|
|
703
|
-
typeSimple?: (string) | null;
|
|
704
|
-
config?: {
|
|
705
|
-
[key: string]: unknown;
|
|
706
|
-
} | null;
|
|
707
|
-
}> | null;
|
|
708
|
-
configuration?: {
|
|
709
|
-
[key: string]: unknown;
|
|
710
|
-
} | null;
|
|
711
|
-
defaultValue?: unknown;
|
|
712
|
-
};
|
|
713
|
-
} | null;
|
|
714
|
-
configuration?: {
|
|
715
|
-
[key: string]: unknown;
|
|
716
|
-
} | null;
|
|
717
|
-
};
|
|
326
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
|
|
718
327
|
} | null;
|
|
719
328
|
configuration?: {
|
|
720
329
|
[key: string]: unknown;
|
|
@@ -723,97 +332,20 @@ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_Mo
|
|
|
723
332
|
|
|
724
333
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
|
|
725
334
|
modules?: {
|
|
726
|
-
[key: string]:
|
|
727
|
-
entities?: {
|
|
728
|
-
[key: string]: {
|
|
729
|
-
properties?: {
|
|
730
|
-
[key: string]: {
|
|
731
|
-
type?: (string) | null;
|
|
732
|
-
typeSimple?: (string) | null;
|
|
733
|
-
displayName?: {
|
|
734
|
-
name?: (string) | null;
|
|
735
|
-
resource?: (string) | null;
|
|
736
|
-
};
|
|
737
|
-
api?: {
|
|
738
|
-
onGet?: {
|
|
739
|
-
isAvailable?: boolean;
|
|
740
|
-
};
|
|
741
|
-
onCreate?: {
|
|
742
|
-
isAvailable?: boolean;
|
|
743
|
-
};
|
|
744
|
-
onUpdate?: {
|
|
745
|
-
isAvailable?: boolean;
|
|
746
|
-
};
|
|
747
|
-
};
|
|
748
|
-
ui?: {
|
|
749
|
-
onTable?: {
|
|
750
|
-
isVisible?: boolean;
|
|
751
|
-
};
|
|
752
|
-
onCreateForm?: {
|
|
753
|
-
isVisible?: boolean;
|
|
754
|
-
};
|
|
755
|
-
onEditForm?: {
|
|
756
|
-
isVisible?: boolean;
|
|
757
|
-
};
|
|
758
|
-
lookup?: {
|
|
759
|
-
url?: (string) | null;
|
|
760
|
-
resultListPropertyName?: (string) | null;
|
|
761
|
-
displayPropertyName?: (string) | null;
|
|
762
|
-
valuePropertyName?: (string) | null;
|
|
763
|
-
filterParamName?: (string) | null;
|
|
764
|
-
};
|
|
765
|
-
};
|
|
766
|
-
attributes?: Array<{
|
|
767
|
-
typeSimple?: (string) | null;
|
|
768
|
-
config?: {
|
|
769
|
-
[key: string]: unknown;
|
|
770
|
-
} | null;
|
|
771
|
-
}> | null;
|
|
772
|
-
configuration?: {
|
|
773
|
-
[key: string]: unknown;
|
|
774
|
-
} | null;
|
|
775
|
-
defaultValue?: unknown;
|
|
776
|
-
};
|
|
777
|
-
} | null;
|
|
778
|
-
configuration?: {
|
|
779
|
-
[key: string]: unknown;
|
|
780
|
-
} | null;
|
|
781
|
-
};
|
|
782
|
-
} | null;
|
|
783
|
-
configuration?: {
|
|
784
|
-
[key: string]: unknown;
|
|
785
|
-
} | null;
|
|
786
|
-
};
|
|
335
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
|
|
787
336
|
} | null;
|
|
788
337
|
enums?: {
|
|
789
|
-
[key: string]:
|
|
790
|
-
fields?: Array<{
|
|
791
|
-
name?: (string) | null;
|
|
792
|
-
value?: unknown;
|
|
793
|
-
}> | null;
|
|
794
|
-
localizationResource?: (string) | null;
|
|
795
|
-
};
|
|
338
|
+
[key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
|
|
796
339
|
} | null;
|
|
797
340
|
};
|
|
798
341
|
|
|
799
342
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
|
|
800
|
-
iana?:
|
|
801
|
-
|
|
802
|
-
};
|
|
803
|
-
windows?: {
|
|
804
|
-
timeZoneId?: (string) | null;
|
|
805
|
-
};
|
|
343
|
+
iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
|
|
344
|
+
windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
|
|
806
345
|
};
|
|
807
346
|
|
|
808
347
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
|
|
809
|
-
timeZone?:
|
|
810
|
-
iana?: {
|
|
811
|
-
timeZoneName?: (string) | null;
|
|
812
|
-
};
|
|
813
|
-
windows?: {
|
|
814
|
-
timeZoneId?: (string) | null;
|
|
815
|
-
};
|
|
816
|
-
};
|
|
348
|
+
timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
|
|
817
349
|
};
|
|
818
350
|
|
|
819
351
|
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
|
|
@@ -836,125 +368,19 @@ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
|
|
|
836
368
|
httpMethod?: (string) | null;
|
|
837
369
|
url?: (string) | null;
|
|
838
370
|
supportedVersions?: Array<(string)> | null;
|
|
839
|
-
parametersOnMethod?: Array<
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
type?: (string) | null;
|
|
843
|
-
typeSimple?: (string) | null;
|
|
844
|
-
isOptional?: boolean;
|
|
845
|
-
defaultValue?: unknown;
|
|
846
|
-
}> | null;
|
|
847
|
-
parameters?: Array<{
|
|
848
|
-
nameOnMethod?: (string) | null;
|
|
849
|
-
name?: (string) | null;
|
|
850
|
-
jsonName?: (string) | null;
|
|
851
|
-
type?: (string) | null;
|
|
852
|
-
typeSimple?: (string) | null;
|
|
853
|
-
isOptional?: boolean;
|
|
854
|
-
defaultValue?: unknown;
|
|
855
|
-
constraintTypes?: Array<(string)> | null;
|
|
856
|
-
bindingSourceId?: (string) | null;
|
|
857
|
-
descriptorName?: (string) | null;
|
|
858
|
-
}> | null;
|
|
859
|
-
returnValue?: {
|
|
860
|
-
type?: (string) | null;
|
|
861
|
-
typeSimple?: (string) | null;
|
|
862
|
-
};
|
|
371
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
372
|
+
parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
|
|
373
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
863
374
|
allowAnonymous?: (boolean) | null;
|
|
864
375
|
implementFrom?: (string) | null;
|
|
865
376
|
};
|
|
866
377
|
|
|
867
378
|
export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
|
|
868
379
|
modules?: {
|
|
869
|
-
[key: string]:
|
|
870
|
-
rootPath?: (string) | null;
|
|
871
|
-
remoteServiceName?: (string) | null;
|
|
872
|
-
controllers?: {
|
|
873
|
-
[key: string]: {
|
|
874
|
-
controllerName?: (string) | null;
|
|
875
|
-
controllerGroupName?: (string) | null;
|
|
876
|
-
isRemoteService?: boolean;
|
|
877
|
-
isIntegrationService?: boolean;
|
|
878
|
-
apiVersion?: (string) | null;
|
|
879
|
-
type?: (string) | null;
|
|
880
|
-
interfaces?: Array<{
|
|
881
|
-
type?: (string) | null;
|
|
882
|
-
name?: (string) | null;
|
|
883
|
-
methods?: Array<{
|
|
884
|
-
name?: (string) | null;
|
|
885
|
-
parametersOnMethod?: Array<{
|
|
886
|
-
name?: (string) | null;
|
|
887
|
-
typeAsString?: (string) | null;
|
|
888
|
-
type?: (string) | null;
|
|
889
|
-
typeSimple?: (string) | null;
|
|
890
|
-
isOptional?: boolean;
|
|
891
|
-
defaultValue?: unknown;
|
|
892
|
-
}> | null;
|
|
893
|
-
returnValue?: {
|
|
894
|
-
type?: (string) | null;
|
|
895
|
-
typeSimple?: (string) | null;
|
|
896
|
-
};
|
|
897
|
-
}> | null;
|
|
898
|
-
}> | null;
|
|
899
|
-
actions?: {
|
|
900
|
-
[key: string]: {
|
|
901
|
-
uniqueName?: (string) | null;
|
|
902
|
-
name?: (string) | null;
|
|
903
|
-
httpMethod?: (string) | null;
|
|
904
|
-
url?: (string) | null;
|
|
905
|
-
supportedVersions?: Array<(string)> | null;
|
|
906
|
-
parametersOnMethod?: Array<{
|
|
907
|
-
name?: (string) | null;
|
|
908
|
-
typeAsString?: (string) | null;
|
|
909
|
-
type?: (string) | null;
|
|
910
|
-
typeSimple?: (string) | null;
|
|
911
|
-
isOptional?: boolean;
|
|
912
|
-
defaultValue?: unknown;
|
|
913
|
-
}> | null;
|
|
914
|
-
parameters?: Array<{
|
|
915
|
-
nameOnMethod?: (string) | null;
|
|
916
|
-
name?: (string) | null;
|
|
917
|
-
jsonName?: (string) | null;
|
|
918
|
-
type?: (string) | null;
|
|
919
|
-
typeSimple?: (string) | null;
|
|
920
|
-
isOptional?: boolean;
|
|
921
|
-
defaultValue?: unknown;
|
|
922
|
-
constraintTypes?: Array<(string)> | null;
|
|
923
|
-
bindingSourceId?: (string) | null;
|
|
924
|
-
descriptorName?: (string) | null;
|
|
925
|
-
}> | null;
|
|
926
|
-
returnValue?: {
|
|
927
|
-
type?: (string) | null;
|
|
928
|
-
typeSimple?: (string) | null;
|
|
929
|
-
};
|
|
930
|
-
allowAnonymous?: (boolean) | null;
|
|
931
|
-
implementFrom?: (string) | null;
|
|
932
|
-
};
|
|
933
|
-
} | null;
|
|
934
|
-
};
|
|
935
|
-
} | null;
|
|
936
|
-
};
|
|
380
|
+
[key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
|
|
937
381
|
} | null;
|
|
938
382
|
types?: {
|
|
939
|
-
[key: string]:
|
|
940
|
-
baseType?: (string) | null;
|
|
941
|
-
isEnum?: boolean;
|
|
942
|
-
enumNames?: Array<(string)> | null;
|
|
943
|
-
enumValues?: Array<unknown> | null;
|
|
944
|
-
genericArguments?: Array<(string)> | null;
|
|
945
|
-
properties?: Array<{
|
|
946
|
-
name?: (string) | null;
|
|
947
|
-
jsonName?: (string) | null;
|
|
948
|
-
type?: (string) | null;
|
|
949
|
-
typeSimple?: (string) | null;
|
|
950
|
-
isRequired?: boolean;
|
|
951
|
-
minLength?: (number) | null;
|
|
952
|
-
maxLength?: (number) | null;
|
|
953
|
-
minimum?: (string) | null;
|
|
954
|
-
maximum?: (string) | null;
|
|
955
|
-
regex?: (string) | null;
|
|
956
|
-
}> | null;
|
|
957
|
-
};
|
|
383
|
+
[key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
|
|
958
384
|
} | null;
|
|
959
385
|
};
|
|
960
386
|
|
|
@@ -965,96 +391,22 @@ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
|
|
|
965
391
|
isIntegrationService?: boolean;
|
|
966
392
|
apiVersion?: (string) | null;
|
|
967
393
|
type?: (string) | null;
|
|
968
|
-
interfaces?: Array<
|
|
969
|
-
type?: (string) | null;
|
|
970
|
-
name?: (string) | null;
|
|
971
|
-
methods?: Array<{
|
|
972
|
-
name?: (string) | null;
|
|
973
|
-
parametersOnMethod?: Array<{
|
|
974
|
-
name?: (string) | null;
|
|
975
|
-
typeAsString?: (string) | null;
|
|
976
|
-
type?: (string) | null;
|
|
977
|
-
typeSimple?: (string) | null;
|
|
978
|
-
isOptional?: boolean;
|
|
979
|
-
defaultValue?: unknown;
|
|
980
|
-
}> | null;
|
|
981
|
-
returnValue?: {
|
|
982
|
-
type?: (string) | null;
|
|
983
|
-
typeSimple?: (string) | null;
|
|
984
|
-
};
|
|
985
|
-
}> | null;
|
|
986
|
-
}> | null;
|
|
394
|
+
interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
|
|
987
395
|
actions?: {
|
|
988
|
-
[key: string]:
|
|
989
|
-
uniqueName?: (string) | null;
|
|
990
|
-
name?: (string) | null;
|
|
991
|
-
httpMethod?: (string) | null;
|
|
992
|
-
url?: (string) | null;
|
|
993
|
-
supportedVersions?: Array<(string)> | null;
|
|
994
|
-
parametersOnMethod?: Array<{
|
|
995
|
-
name?: (string) | null;
|
|
996
|
-
typeAsString?: (string) | null;
|
|
997
|
-
type?: (string) | null;
|
|
998
|
-
typeSimple?: (string) | null;
|
|
999
|
-
isOptional?: boolean;
|
|
1000
|
-
defaultValue?: unknown;
|
|
1001
|
-
}> | null;
|
|
1002
|
-
parameters?: Array<{
|
|
1003
|
-
nameOnMethod?: (string) | null;
|
|
1004
|
-
name?: (string) | null;
|
|
1005
|
-
jsonName?: (string) | null;
|
|
1006
|
-
type?: (string) | null;
|
|
1007
|
-
typeSimple?: (string) | null;
|
|
1008
|
-
isOptional?: boolean;
|
|
1009
|
-
defaultValue?: unknown;
|
|
1010
|
-
constraintTypes?: Array<(string)> | null;
|
|
1011
|
-
bindingSourceId?: (string) | null;
|
|
1012
|
-
descriptorName?: (string) | null;
|
|
1013
|
-
}> | null;
|
|
1014
|
-
returnValue?: {
|
|
1015
|
-
type?: (string) | null;
|
|
1016
|
-
typeSimple?: (string) | null;
|
|
1017
|
-
};
|
|
1018
|
-
allowAnonymous?: (boolean) | null;
|
|
1019
|
-
implementFrom?: (string) | null;
|
|
1020
|
-
};
|
|
396
|
+
[key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
|
|
1021
397
|
} | null;
|
|
1022
398
|
};
|
|
1023
399
|
|
|
1024
400
|
export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
|
|
1025
401
|
type?: (string) | null;
|
|
1026
402
|
name?: (string) | null;
|
|
1027
|
-
methods?: Array<
|
|
1028
|
-
name?: (string) | null;
|
|
1029
|
-
parametersOnMethod?: Array<{
|
|
1030
|
-
name?: (string) | null;
|
|
1031
|
-
typeAsString?: (string) | null;
|
|
1032
|
-
type?: (string) | null;
|
|
1033
|
-
typeSimple?: (string) | null;
|
|
1034
|
-
isOptional?: boolean;
|
|
1035
|
-
defaultValue?: unknown;
|
|
1036
|
-
}> | null;
|
|
1037
|
-
returnValue?: {
|
|
1038
|
-
type?: (string) | null;
|
|
1039
|
-
typeSimple?: (string) | null;
|
|
1040
|
-
};
|
|
1041
|
-
}> | null;
|
|
403
|
+
methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
|
|
1042
404
|
};
|
|
1043
405
|
|
|
1044
406
|
export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
|
|
1045
407
|
name?: (string) | null;
|
|
1046
|
-
parametersOnMethod?: Array<
|
|
1047
|
-
|
|
1048
|
-
typeAsString?: (string) | null;
|
|
1049
|
-
type?: (string) | null;
|
|
1050
|
-
typeSimple?: (string) | null;
|
|
1051
|
-
isOptional?: boolean;
|
|
1052
|
-
defaultValue?: unknown;
|
|
1053
|
-
}> | null;
|
|
1054
|
-
returnValue?: {
|
|
1055
|
-
type?: (string) | null;
|
|
1056
|
-
typeSimple?: (string) | null;
|
|
1057
|
-
};
|
|
408
|
+
parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
|
|
409
|
+
returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
|
|
1058
410
|
};
|
|
1059
411
|
|
|
1060
412
|
export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
|
|
@@ -1070,68 +422,7 @@ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
|
|
|
1070
422
|
rootPath?: (string) | null;
|
|
1071
423
|
remoteServiceName?: (string) | null;
|
|
1072
424
|
controllers?: {
|
|
1073
|
-
[key: string]:
|
|
1074
|
-
controllerName?: (string) | null;
|
|
1075
|
-
controllerGroupName?: (string) | null;
|
|
1076
|
-
isRemoteService?: boolean;
|
|
1077
|
-
isIntegrationService?: boolean;
|
|
1078
|
-
apiVersion?: (string) | null;
|
|
1079
|
-
type?: (string) | null;
|
|
1080
|
-
interfaces?: Array<{
|
|
1081
|
-
type?: (string) | null;
|
|
1082
|
-
name?: (string) | null;
|
|
1083
|
-
methods?: Array<{
|
|
1084
|
-
name?: (string) | null;
|
|
1085
|
-
parametersOnMethod?: Array<{
|
|
1086
|
-
name?: (string) | null;
|
|
1087
|
-
typeAsString?: (string) | null;
|
|
1088
|
-
type?: (string) | null;
|
|
1089
|
-
typeSimple?: (string) | null;
|
|
1090
|
-
isOptional?: boolean;
|
|
1091
|
-
defaultValue?: unknown;
|
|
1092
|
-
}> | null;
|
|
1093
|
-
returnValue?: {
|
|
1094
|
-
type?: (string) | null;
|
|
1095
|
-
typeSimple?: (string) | null;
|
|
1096
|
-
};
|
|
1097
|
-
}> | null;
|
|
1098
|
-
}> | null;
|
|
1099
|
-
actions?: {
|
|
1100
|
-
[key: string]: {
|
|
1101
|
-
uniqueName?: (string) | null;
|
|
1102
|
-
name?: (string) | null;
|
|
1103
|
-
httpMethod?: (string) | null;
|
|
1104
|
-
url?: (string) | null;
|
|
1105
|
-
supportedVersions?: Array<(string)> | null;
|
|
1106
|
-
parametersOnMethod?: Array<{
|
|
1107
|
-
name?: (string) | null;
|
|
1108
|
-
typeAsString?: (string) | null;
|
|
1109
|
-
type?: (string) | null;
|
|
1110
|
-
typeSimple?: (string) | null;
|
|
1111
|
-
isOptional?: boolean;
|
|
1112
|
-
defaultValue?: unknown;
|
|
1113
|
-
}> | null;
|
|
1114
|
-
parameters?: Array<{
|
|
1115
|
-
nameOnMethod?: (string) | null;
|
|
1116
|
-
name?: (string) | null;
|
|
1117
|
-
jsonName?: (string) | null;
|
|
1118
|
-
type?: (string) | null;
|
|
1119
|
-
typeSimple?: (string) | null;
|
|
1120
|
-
isOptional?: boolean;
|
|
1121
|
-
defaultValue?: unknown;
|
|
1122
|
-
constraintTypes?: Array<(string)> | null;
|
|
1123
|
-
bindingSourceId?: (string) | null;
|
|
1124
|
-
descriptorName?: (string) | null;
|
|
1125
|
-
}> | null;
|
|
1126
|
-
returnValue?: {
|
|
1127
|
-
type?: (string) | null;
|
|
1128
|
-
typeSimple?: (string) | null;
|
|
1129
|
-
};
|
|
1130
|
-
allowAnonymous?: (boolean) | null;
|
|
1131
|
-
implementFrom?: (string) | null;
|
|
1132
|
-
};
|
|
1133
|
-
} | null;
|
|
1134
|
-
};
|
|
425
|
+
[key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
|
|
1135
426
|
} | null;
|
|
1136
427
|
};
|
|
1137
428
|
|
|
@@ -1172,18 +463,7 @@ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
|
|
|
1172
463
|
enumNames?: Array<(string)> | null;
|
|
1173
464
|
enumValues?: Array<unknown> | null;
|
|
1174
465
|
genericArguments?: Array<(string)> | null;
|
|
1175
|
-
properties?: Array<
|
|
1176
|
-
name?: (string) | null;
|
|
1177
|
-
jsonName?: (string) | null;
|
|
1178
|
-
type?: (string) | null;
|
|
1179
|
-
typeSimple?: (string) | null;
|
|
1180
|
-
isRequired?: boolean;
|
|
1181
|
-
minLength?: (number) | null;
|
|
1182
|
-
maxLength?: (number) | null;
|
|
1183
|
-
minimum?: (string) | null;
|
|
1184
|
-
maximum?: (string) | null;
|
|
1185
|
-
regex?: (string) | null;
|
|
1186
|
-
}> | null;
|
|
466
|
+
properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
|
|
1187
467
|
};
|
|
1188
468
|
|
|
1189
469
|
export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
@@ -1193,25 +473,11 @@ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
|
|
|
1193
473
|
data?: {
|
|
1194
474
|
[key: string]: unknown;
|
|
1195
475
|
} | null;
|
|
1196
|
-
validationErrors?: Array<
|
|
1197
|
-
message?: (string) | null;
|
|
1198
|
-
members?: Array<(string)> | null;
|
|
1199
|
-
}> | null;
|
|
476
|
+
validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
|
|
1200
477
|
};
|
|
1201
478
|
|
|
1202
479
|
export type Volo_Abp_Http_RemoteServiceErrorResponse = {
|
|
1203
|
-
error?:
|
|
1204
|
-
code?: (string) | null;
|
|
1205
|
-
message?: (string) | null;
|
|
1206
|
-
details?: (string) | null;
|
|
1207
|
-
data?: {
|
|
1208
|
-
[key: string]: unknown;
|
|
1209
|
-
} | null;
|
|
1210
|
-
validationErrors?: Array<{
|
|
1211
|
-
message?: (string) | null;
|
|
1212
|
-
members?: Array<(string)> | null;
|
|
1213
|
-
}> | null;
|
|
1214
|
-
};
|
|
480
|
+
error?: Volo_Abp_Http_RemoteServiceErrorInfo;
|
|
1215
481
|
};
|
|
1216
482
|
|
|
1217
483
|
export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
|
|
@@ -1266,394 +532,40 @@ export type GetApiAbpApiDefinitionData = {
|
|
|
1266
532
|
includeTypes?: boolean;
|
|
1267
533
|
};
|
|
1268
534
|
|
|
1269
|
-
export type GetApiAbpApiDefinitionResponse = (
|
|
1270
|
-
modules?: {
|
|
1271
|
-
[key: string]: {
|
|
1272
|
-
rootPath?: (string) | null;
|
|
1273
|
-
remoteServiceName?: (string) | null;
|
|
1274
|
-
controllers?: {
|
|
1275
|
-
[key: string]: {
|
|
1276
|
-
controllerName?: (string) | null;
|
|
1277
|
-
controllerGroupName?: (string) | null;
|
|
1278
|
-
isRemoteService?: boolean;
|
|
1279
|
-
isIntegrationService?: boolean;
|
|
1280
|
-
apiVersion?: (string) | null;
|
|
1281
|
-
type?: (string) | null;
|
|
1282
|
-
interfaces?: Array<{
|
|
1283
|
-
type?: (string) | null;
|
|
1284
|
-
name?: (string) | null;
|
|
1285
|
-
methods?: Array<{
|
|
1286
|
-
name?: (string) | null;
|
|
1287
|
-
parametersOnMethod?: Array<{
|
|
1288
|
-
name?: (string) | null;
|
|
1289
|
-
typeAsString?: (string) | null;
|
|
1290
|
-
type?: (string) | null;
|
|
1291
|
-
typeSimple?: (string) | null;
|
|
1292
|
-
isOptional?: boolean;
|
|
1293
|
-
defaultValue?: unknown;
|
|
1294
|
-
}> | null;
|
|
1295
|
-
returnValue?: {
|
|
1296
|
-
type?: (string) | null;
|
|
1297
|
-
typeSimple?: (string) | null;
|
|
1298
|
-
};
|
|
1299
|
-
}> | null;
|
|
1300
|
-
}> | null;
|
|
1301
|
-
actions?: {
|
|
1302
|
-
[key: string]: {
|
|
1303
|
-
uniqueName?: (string) | null;
|
|
1304
|
-
name?: (string) | null;
|
|
1305
|
-
httpMethod?: (string) | null;
|
|
1306
|
-
url?: (string) | null;
|
|
1307
|
-
supportedVersions?: Array<(string)> | null;
|
|
1308
|
-
parametersOnMethod?: Array<{
|
|
1309
|
-
name?: (string) | null;
|
|
1310
|
-
typeAsString?: (string) | null;
|
|
1311
|
-
type?: (string) | null;
|
|
1312
|
-
typeSimple?: (string) | null;
|
|
1313
|
-
isOptional?: boolean;
|
|
1314
|
-
defaultValue?: unknown;
|
|
1315
|
-
}> | null;
|
|
1316
|
-
parameters?: Array<{
|
|
1317
|
-
nameOnMethod?: (string) | null;
|
|
1318
|
-
name?: (string) | null;
|
|
1319
|
-
jsonName?: (string) | null;
|
|
1320
|
-
type?: (string) | null;
|
|
1321
|
-
typeSimple?: (string) | null;
|
|
1322
|
-
isOptional?: boolean;
|
|
1323
|
-
defaultValue?: unknown;
|
|
1324
|
-
constraintTypes?: Array<(string)> | null;
|
|
1325
|
-
bindingSourceId?: (string) | null;
|
|
1326
|
-
descriptorName?: (string) | null;
|
|
1327
|
-
}> | null;
|
|
1328
|
-
returnValue?: {
|
|
1329
|
-
type?: (string) | null;
|
|
1330
|
-
typeSimple?: (string) | null;
|
|
1331
|
-
};
|
|
1332
|
-
allowAnonymous?: (boolean) | null;
|
|
1333
|
-
implementFrom?: (string) | null;
|
|
1334
|
-
};
|
|
1335
|
-
} | null;
|
|
1336
|
-
};
|
|
1337
|
-
} | null;
|
|
1338
|
-
};
|
|
1339
|
-
} | null;
|
|
1340
|
-
types?: {
|
|
1341
|
-
[key: string]: {
|
|
1342
|
-
baseType?: (string) | null;
|
|
1343
|
-
isEnum?: boolean;
|
|
1344
|
-
enumNames?: Array<(string)> | null;
|
|
1345
|
-
enumValues?: Array<unknown> | null;
|
|
1346
|
-
genericArguments?: Array<(string)> | null;
|
|
1347
|
-
properties?: Array<{
|
|
1348
|
-
name?: (string) | null;
|
|
1349
|
-
jsonName?: (string) | null;
|
|
1350
|
-
type?: (string) | null;
|
|
1351
|
-
typeSimple?: (string) | null;
|
|
1352
|
-
isRequired?: boolean;
|
|
1353
|
-
minLength?: (number) | null;
|
|
1354
|
-
maxLength?: (number) | null;
|
|
1355
|
-
minimum?: (string) | null;
|
|
1356
|
-
maximum?: (string) | null;
|
|
1357
|
-
regex?: (string) | null;
|
|
1358
|
-
}> | null;
|
|
1359
|
-
};
|
|
1360
|
-
} | null;
|
|
1361
|
-
});
|
|
535
|
+
export type GetApiAbpApiDefinitionResponse = (Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel);
|
|
1362
536
|
|
|
1363
537
|
export type GetApiAbpApplicationConfigurationData = {
|
|
1364
538
|
includeLocalizationResources?: boolean;
|
|
1365
539
|
};
|
|
1366
540
|
|
|
1367
|
-
export type GetApiAbpApplicationConfigurationResponse = (
|
|
1368
|
-
localization?: {
|
|
1369
|
-
values?: {
|
|
1370
|
-
[key: string]: {
|
|
1371
|
-
[key: string]: (string);
|
|
1372
|
-
};
|
|
1373
|
-
} | null;
|
|
1374
|
-
resources?: {
|
|
1375
|
-
[key: string]: {
|
|
1376
|
-
texts?: {
|
|
1377
|
-
[key: string]: (string);
|
|
1378
|
-
} | null;
|
|
1379
|
-
baseResources?: Array<(string)> | null;
|
|
1380
|
-
};
|
|
1381
|
-
} | null;
|
|
1382
|
-
languages?: Array<{
|
|
1383
|
-
cultureName?: (string) | null;
|
|
1384
|
-
uiCultureName?: (string) | null;
|
|
1385
|
-
displayName?: (string) | null;
|
|
1386
|
-
readonly twoLetterISOLanguageName?: (string) | null;
|
|
1387
|
-
}> | null;
|
|
1388
|
-
currentCulture?: {
|
|
1389
|
-
displayName?: (string) | null;
|
|
1390
|
-
englishName?: (string) | null;
|
|
1391
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1392
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1393
|
-
isRightToLeft?: boolean;
|
|
1394
|
-
cultureName?: (string) | null;
|
|
1395
|
-
name?: (string) | null;
|
|
1396
|
-
nativeName?: (string) | null;
|
|
1397
|
-
dateTimeFormat?: {
|
|
1398
|
-
calendarAlgorithmType?: (string) | null;
|
|
1399
|
-
dateTimeFormatLong?: (string) | null;
|
|
1400
|
-
shortDatePattern?: (string) | null;
|
|
1401
|
-
fullDateTimePattern?: (string) | null;
|
|
1402
|
-
dateSeparator?: (string) | null;
|
|
1403
|
-
shortTimePattern?: (string) | null;
|
|
1404
|
-
longTimePattern?: (string) | null;
|
|
1405
|
-
};
|
|
1406
|
-
};
|
|
1407
|
-
defaultResourceName?: (string) | null;
|
|
1408
|
-
languagesMap?: {
|
|
1409
|
-
[key: string]: Array<{
|
|
1410
|
-
name?: (string) | null;
|
|
1411
|
-
value?: (string) | null;
|
|
1412
|
-
}>;
|
|
1413
|
-
} | null;
|
|
1414
|
-
languageFilesMap?: {
|
|
1415
|
-
[key: string]: Array<{
|
|
1416
|
-
name?: (string) | null;
|
|
1417
|
-
value?: (string) | null;
|
|
1418
|
-
}>;
|
|
1419
|
-
} | null;
|
|
1420
|
-
};
|
|
1421
|
-
auth?: {
|
|
1422
|
-
grantedPolicies?: {
|
|
1423
|
-
[key: string]: (boolean);
|
|
1424
|
-
} | null;
|
|
1425
|
-
};
|
|
1426
|
-
setting?: {
|
|
1427
|
-
values?: {
|
|
1428
|
-
[key: string]: ((string) | null);
|
|
1429
|
-
} | null;
|
|
1430
|
-
};
|
|
1431
|
-
currentUser?: {
|
|
1432
|
-
isAuthenticated?: boolean;
|
|
1433
|
-
id?: (string) | null;
|
|
1434
|
-
tenantId?: (string) | null;
|
|
1435
|
-
impersonatorUserId?: (string) | null;
|
|
1436
|
-
impersonatorTenantId?: (string) | null;
|
|
1437
|
-
impersonatorUserName?: (string) | null;
|
|
1438
|
-
impersonatorTenantName?: (string) | null;
|
|
1439
|
-
userName?: (string) | null;
|
|
1440
|
-
name?: (string) | null;
|
|
1441
|
-
surName?: (string) | null;
|
|
1442
|
-
email?: (string) | null;
|
|
1443
|
-
emailVerified?: boolean;
|
|
1444
|
-
phoneNumber?: (string) | null;
|
|
1445
|
-
phoneNumberVerified?: boolean;
|
|
1446
|
-
roles?: Array<(string)> | null;
|
|
1447
|
-
sessionId?: (string) | null;
|
|
1448
|
-
};
|
|
1449
|
-
features?: {
|
|
1450
|
-
values?: {
|
|
1451
|
-
[key: string]: ((string) | null);
|
|
1452
|
-
} | null;
|
|
1453
|
-
};
|
|
1454
|
-
globalFeatures?: {
|
|
1455
|
-
enabledFeatures?: Array<(string)> | null;
|
|
1456
|
-
};
|
|
1457
|
-
multiTenancy?: {
|
|
1458
|
-
isEnabled?: boolean;
|
|
1459
|
-
};
|
|
1460
|
-
currentTenant?: {
|
|
1461
|
-
id?: (string) | null;
|
|
1462
|
-
name?: (string) | null;
|
|
1463
|
-
isAvailable?: boolean;
|
|
1464
|
-
};
|
|
1465
|
-
timing?: {
|
|
1466
|
-
timeZone?: {
|
|
1467
|
-
iana?: {
|
|
1468
|
-
timeZoneName?: (string) | null;
|
|
1469
|
-
};
|
|
1470
|
-
windows?: {
|
|
1471
|
-
timeZoneId?: (string) | null;
|
|
1472
|
-
};
|
|
1473
|
-
};
|
|
1474
|
-
};
|
|
1475
|
-
clock?: {
|
|
1476
|
-
kind?: (string) | null;
|
|
1477
|
-
};
|
|
1478
|
-
objectExtensions?: {
|
|
1479
|
-
modules?: {
|
|
1480
|
-
[key: string]: {
|
|
1481
|
-
entities?: {
|
|
1482
|
-
[key: string]: {
|
|
1483
|
-
properties?: {
|
|
1484
|
-
[key: string]: {
|
|
1485
|
-
type?: (string) | null;
|
|
1486
|
-
typeSimple?: (string) | null;
|
|
1487
|
-
displayName?: {
|
|
1488
|
-
name?: (string) | null;
|
|
1489
|
-
resource?: (string) | null;
|
|
1490
|
-
};
|
|
1491
|
-
api?: {
|
|
1492
|
-
onGet?: {
|
|
1493
|
-
isAvailable?: boolean;
|
|
1494
|
-
};
|
|
1495
|
-
onCreate?: {
|
|
1496
|
-
isAvailable?: boolean;
|
|
1497
|
-
};
|
|
1498
|
-
onUpdate?: {
|
|
1499
|
-
isAvailable?: boolean;
|
|
1500
|
-
};
|
|
1501
|
-
};
|
|
1502
|
-
ui?: {
|
|
1503
|
-
onTable?: {
|
|
1504
|
-
isVisible?: boolean;
|
|
1505
|
-
};
|
|
1506
|
-
onCreateForm?: {
|
|
1507
|
-
isVisible?: boolean;
|
|
1508
|
-
};
|
|
1509
|
-
onEditForm?: {
|
|
1510
|
-
isVisible?: boolean;
|
|
1511
|
-
};
|
|
1512
|
-
lookup?: {
|
|
1513
|
-
url?: (string) | null;
|
|
1514
|
-
resultListPropertyName?: (string) | null;
|
|
1515
|
-
displayPropertyName?: (string) | null;
|
|
1516
|
-
valuePropertyName?: (string) | null;
|
|
1517
|
-
filterParamName?: (string) | null;
|
|
1518
|
-
};
|
|
1519
|
-
};
|
|
1520
|
-
attributes?: Array<{
|
|
1521
|
-
typeSimple?: (string) | null;
|
|
1522
|
-
config?: {
|
|
1523
|
-
[key: string]: unknown;
|
|
1524
|
-
} | null;
|
|
1525
|
-
}> | null;
|
|
1526
|
-
configuration?: {
|
|
1527
|
-
[key: string]: unknown;
|
|
1528
|
-
} | null;
|
|
1529
|
-
defaultValue?: unknown;
|
|
1530
|
-
};
|
|
1531
|
-
} | null;
|
|
1532
|
-
configuration?: {
|
|
1533
|
-
[key: string]: unknown;
|
|
1534
|
-
} | null;
|
|
1535
|
-
};
|
|
1536
|
-
} | null;
|
|
1537
|
-
configuration?: {
|
|
1538
|
-
[key: string]: unknown;
|
|
1539
|
-
} | null;
|
|
1540
|
-
};
|
|
1541
|
-
} | null;
|
|
1542
|
-
enums?: {
|
|
1543
|
-
[key: string]: {
|
|
1544
|
-
fields?: Array<{
|
|
1545
|
-
name?: (string) | null;
|
|
1546
|
-
value?: unknown;
|
|
1547
|
-
}> | null;
|
|
1548
|
-
localizationResource?: (string) | null;
|
|
1549
|
-
};
|
|
1550
|
-
} | null;
|
|
1551
|
-
};
|
|
1552
|
-
extraProperties?: {
|
|
1553
|
-
[key: string]: unknown;
|
|
1554
|
-
} | null;
|
|
1555
|
-
});
|
|
541
|
+
export type GetApiAbpApplicationConfigurationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto);
|
|
1556
542
|
|
|
1557
543
|
export type GetApiAbpApplicationLocalizationData = {
|
|
1558
544
|
cultureName: string;
|
|
1559
545
|
onlyDynamics?: boolean;
|
|
1560
546
|
};
|
|
1561
547
|
|
|
1562
|
-
export type GetApiAbpApplicationLocalizationResponse = (
|
|
1563
|
-
resources?: {
|
|
1564
|
-
[key: string]: {
|
|
1565
|
-
texts?: {
|
|
1566
|
-
[key: string]: (string);
|
|
1567
|
-
} | null;
|
|
1568
|
-
baseResources?: Array<(string)> | null;
|
|
1569
|
-
};
|
|
1570
|
-
} | null;
|
|
1571
|
-
currentCulture?: {
|
|
1572
|
-
displayName?: (string) | null;
|
|
1573
|
-
englishName?: (string) | null;
|
|
1574
|
-
threeLetterIsoLanguageName?: (string) | null;
|
|
1575
|
-
twoLetterIsoLanguageName?: (string) | null;
|
|
1576
|
-
isRightToLeft?: boolean;
|
|
1577
|
-
cultureName?: (string) | null;
|
|
1578
|
-
name?: (string) | null;
|
|
1579
|
-
nativeName?: (string) | null;
|
|
1580
|
-
dateTimeFormat?: {
|
|
1581
|
-
calendarAlgorithmType?: (string) | null;
|
|
1582
|
-
dateTimeFormatLong?: (string) | null;
|
|
1583
|
-
shortDatePattern?: (string) | null;
|
|
1584
|
-
fullDateTimePattern?: (string) | null;
|
|
1585
|
-
dateSeparator?: (string) | null;
|
|
1586
|
-
shortTimePattern?: (string) | null;
|
|
1587
|
-
longTimePattern?: (string) | null;
|
|
1588
|
-
};
|
|
1589
|
-
};
|
|
1590
|
-
});
|
|
548
|
+
export type GetApiAbpApplicationLocalizationResponse = (Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto);
|
|
1591
549
|
|
|
1592
|
-
export type GetApiSettingManagementEmailingResponse = (
|
|
1593
|
-
smtpHost?: (string) | null;
|
|
1594
|
-
smtpPort?: number;
|
|
1595
|
-
smtpUserName?: (string) | null;
|
|
1596
|
-
smtpPassword?: (string) | null;
|
|
1597
|
-
smtpDomain?: (string) | null;
|
|
1598
|
-
smtpEnableSsl?: boolean;
|
|
1599
|
-
smtpUseDefaultCredentials?: boolean;
|
|
1600
|
-
defaultFromAddress?: (string) | null;
|
|
1601
|
-
defaultFromDisplayName?: (string) | null;
|
|
1602
|
-
});
|
|
550
|
+
export type GetApiSettingManagementEmailingResponse = (Volo_Abp_SettingManagement_EmailSettingsDto);
|
|
1603
551
|
|
|
1604
552
|
export type PostApiSettingManagementEmailingData = {
|
|
1605
|
-
requestBody?:
|
|
1606
|
-
smtpHost?: (string) | null;
|
|
1607
|
-
smtpPort?: number;
|
|
1608
|
-
smtpUserName?: (string) | null;
|
|
1609
|
-
smtpPassword?: (string) | null;
|
|
1610
|
-
smtpDomain?: (string) | null;
|
|
1611
|
-
smtpEnableSsl?: boolean;
|
|
1612
|
-
smtpUseDefaultCredentials?: boolean;
|
|
1613
|
-
defaultFromAddress: string;
|
|
1614
|
-
defaultFromDisplayName: string;
|
|
1615
|
-
};
|
|
553
|
+
requestBody?: Volo_Abp_SettingManagement_UpdateEmailSettingsDto;
|
|
1616
554
|
};
|
|
1617
555
|
|
|
1618
556
|
export type PostApiSettingManagementEmailingResponse = (unknown);
|
|
1619
557
|
|
|
1620
558
|
export type PostApiSettingManagementEmailingSendTestEmailData = {
|
|
1621
|
-
requestBody?:
|
|
1622
|
-
senderEmailAddress: string;
|
|
1623
|
-
targetEmailAddress: string;
|
|
1624
|
-
subject: string;
|
|
1625
|
-
body?: (string) | null;
|
|
1626
|
-
};
|
|
559
|
+
requestBody?: Volo_Abp_SettingManagement_SendTestEmailInput;
|
|
1627
560
|
};
|
|
1628
561
|
|
|
1629
562
|
export type PostApiSettingManagementEmailingSendTestEmailResponse = (unknown);
|
|
1630
563
|
|
|
1631
564
|
export type PostApiSettingServiceProductGroupData = {
|
|
1632
|
-
requestBody?:
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
articleCode: string;
|
|
1637
|
-
name: string;
|
|
1638
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1639
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1640
|
-
active?: boolean;
|
|
1641
|
-
food?: boolean;
|
|
1642
|
-
vatId?: (string) | null;
|
|
1643
|
-
};
|
|
1644
|
-
};
|
|
1645
|
-
|
|
1646
|
-
export type PostApiSettingServiceProductGroupResponse = ({
|
|
1647
|
-
id?: string;
|
|
1648
|
-
articleCode: string;
|
|
1649
|
-
name: string;
|
|
1650
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1651
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1652
|
-
vatId?: (string) | null;
|
|
1653
|
-
vatPercent?: (number) | null;
|
|
1654
|
-
active: boolean;
|
|
1655
|
-
food: boolean;
|
|
1656
|
-
});
|
|
565
|
+
requestBody?: UniRefund_SettingService_ProductGroups_CreateProductGroupDto;
|
|
566
|
+
};
|
|
567
|
+
|
|
568
|
+
export type PostApiSettingServiceProductGroupResponse = (UniRefund_SettingService_ProductGroups_ProductGroupDto);
|
|
1657
569
|
|
|
1658
570
|
export type GetApiSettingServiceProductGroupData = {
|
|
1659
571
|
maxResultCount?: number;
|
|
@@ -1661,37 +573,18 @@ export type GetApiSettingServiceProductGroupData = {
|
|
|
1661
573
|
sorting?: string;
|
|
1662
574
|
};
|
|
1663
575
|
|
|
1664
|
-
export type GetApiSettingServiceProductGroupResponse = (
|
|
1665
|
-
items?: Array<{
|
|
1666
|
-
id?: string;
|
|
1667
|
-
articleCode: string;
|
|
1668
|
-
name: string;
|
|
1669
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1670
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1671
|
-
vatId?: (string) | null;
|
|
1672
|
-
vatPercent?: (number) | null;
|
|
1673
|
-
active: boolean;
|
|
1674
|
-
food: boolean;
|
|
1675
|
-
}> | null;
|
|
1676
|
-
totalCount?: number;
|
|
1677
|
-
});
|
|
576
|
+
export type GetApiSettingServiceProductGroupResponse = (PagedResultDto_ProductGroupDto);
|
|
1678
577
|
|
|
1679
578
|
export type PostApiSettingServiceProductGroupTranslationByIdData = {
|
|
1680
579
|
id: string;
|
|
1681
|
-
requestBody?:
|
|
1682
|
-
language: string;
|
|
1683
|
-
name: string;
|
|
1684
|
-
};
|
|
580
|
+
requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
|
|
1685
581
|
};
|
|
1686
582
|
|
|
1687
583
|
export type PostApiSettingServiceProductGroupTranslationByIdResponse = (unknown);
|
|
1688
584
|
|
|
1689
585
|
export type PutApiSettingServiceProductGroupTranslationByIdData = {
|
|
1690
586
|
id: string;
|
|
1691
|
-
requestBody?:
|
|
1692
|
-
language: string;
|
|
1693
|
-
name: string;
|
|
1694
|
-
};
|
|
587
|
+
requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
|
|
1695
588
|
};
|
|
1696
589
|
|
|
1697
590
|
export type PutApiSettingServiceProductGroupTranslationByIdResponse = (unknown);
|
|
@@ -1706,81 +599,80 @@ export type GetApiSettingServiceProductGroupByIdData = {
|
|
|
1706
599
|
id: string;
|
|
1707
600
|
};
|
|
1708
601
|
|
|
1709
|
-
export type GetApiSettingServiceProductGroupByIdResponse = (
|
|
1710
|
-
id?: string;
|
|
1711
|
-
articleCode: string;
|
|
1712
|
-
name: string;
|
|
1713
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1714
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1715
|
-
vatId?: (string) | null;
|
|
1716
|
-
vatPercent?: (number) | null;
|
|
1717
|
-
active: boolean;
|
|
1718
|
-
food: boolean;
|
|
1719
|
-
});
|
|
602
|
+
export type GetApiSettingServiceProductGroupByIdResponse = (UniRefund_SettingService_ProductGroups_ProductGroupDto);
|
|
1720
603
|
|
|
1721
604
|
export type PutApiSettingServiceProductGroupByIdData = {
|
|
1722
605
|
id: string;
|
|
1723
|
-
requestBody?:
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
articleCode: string;
|
|
1728
|
-
name: string;
|
|
1729
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1730
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1731
|
-
active?: boolean;
|
|
1732
|
-
food?: boolean;
|
|
1733
|
-
vatId?: (string) | null;
|
|
1734
|
-
};
|
|
1735
|
-
};
|
|
1736
|
-
|
|
1737
|
-
export type PutApiSettingServiceProductGroupByIdResponse = ({
|
|
1738
|
-
id?: string;
|
|
1739
|
-
articleCode: string;
|
|
1740
|
-
name: string;
|
|
1741
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1742
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1743
|
-
vatId?: (string) | null;
|
|
1744
|
-
vatPercent?: (number) | null;
|
|
1745
|
-
active: boolean;
|
|
1746
|
-
food: boolean;
|
|
1747
|
-
});
|
|
606
|
+
requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
|
|
607
|
+
};
|
|
608
|
+
|
|
609
|
+
export type PutApiSettingServiceProductGroupByIdResponse = (UniRefund_SettingService_ProductGroups_ProductGroupDto);
|
|
1748
610
|
|
|
1749
611
|
export type GetIntegrationApiSettingServiceProductGroupByMerchantIdByIdData = {
|
|
1750
612
|
id: string;
|
|
1751
613
|
};
|
|
1752
614
|
|
|
1753
|
-
export type GetIntegrationApiSettingServiceProductGroupByMerchantIdByIdResponse = (Array<
|
|
1754
|
-
id?: string;
|
|
1755
|
-
articleCode: string;
|
|
1756
|
-
name: string;
|
|
1757
|
-
unitCode: 'QNT' | 'BAG' | 'BOX';
|
|
1758
|
-
companyType: 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
|
|
1759
|
-
vatId?: (string) | null;
|
|
1760
|
-
vatPercent?: (number) | null;
|
|
1761
|
-
active: boolean;
|
|
1762
|
-
food: boolean;
|
|
1763
|
-
}>);
|
|
615
|
+
export type GetIntegrationApiSettingServiceProductGroupByMerchantIdByIdResponse = (Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>);
|
|
1764
616
|
|
|
1765
617
|
export type PostIntegrationApiSettingServiceProductGroupProductGroupMerchantBulkData = {
|
|
1766
|
-
requestBody?: Array<
|
|
1767
|
-
merchantId?: string;
|
|
1768
|
-
productGroupId?: string;
|
|
1769
|
-
}>;
|
|
618
|
+
requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
|
|
1770
619
|
};
|
|
1771
620
|
|
|
1772
621
|
export type PostIntegrationApiSettingServiceProductGroupProductGroupMerchantBulkResponse = (unknown);
|
|
1773
622
|
|
|
623
|
+
export type GetIntegrationApiSettingServiceProductGroupListData = {
|
|
624
|
+
ids?: Array<(string)>;
|
|
625
|
+
};
|
|
626
|
+
|
|
627
|
+
export type GetIntegrationApiSettingServiceProductGroupListResponse = (Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>);
|
|
628
|
+
|
|
629
|
+
export type PostIntegrationApiProductGroupMerchantsCreateManyData = {
|
|
630
|
+
requestBody?: UniRefund_SettingService_ProductGroupMerchants_CreateManyProductGroupMerchantDto;
|
|
631
|
+
};
|
|
632
|
+
|
|
633
|
+
export type PostIntegrationApiProductGroupMerchantsCreateManyResponse = (unknown);
|
|
634
|
+
|
|
635
|
+
export type DeleteIntegrationApiProductGroupMerchantsDeleteManyData = {
|
|
636
|
+
requestBody?: UniRefund_SettingService_ProductGroupMerchants_DeleteManyProductGroupMerchantDto;
|
|
637
|
+
};
|
|
638
|
+
|
|
639
|
+
export type DeleteIntegrationApiProductGroupMerchantsDeleteManyResponse = (unknown);
|
|
640
|
+
|
|
1774
641
|
export type GetIntegrationApiProductGroupMerchantsData = {
|
|
1775
642
|
merchantIds?: Array<(string)>;
|
|
1776
643
|
productGroupIds?: Array<(string)>;
|
|
1777
644
|
};
|
|
1778
645
|
|
|
1779
|
-
export type GetIntegrationApiProductGroupMerchantsResponse = (Array<
|
|
1780
|
-
|
|
646
|
+
export type GetIntegrationApiProductGroupMerchantsResponse = (Array<UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantDto>);
|
|
647
|
+
|
|
648
|
+
export type GetIntegrationApiProductGroupMerchantsRelationListByMerchantIdData = {
|
|
649
|
+
merchantId?: string;
|
|
650
|
+
};
|
|
651
|
+
|
|
652
|
+
export type GetIntegrationApiProductGroupMerchantsRelationListByMerchantIdResponse = (Array<UniRefund_SettingService_ProductGroupMerchants_ProductGroupMerchantRelationDto>);
|
|
653
|
+
|
|
654
|
+
export type PostIntegrationApiProductGroupMerchantsSetDefaultData = {
|
|
655
|
+
merchantId?: string;
|
|
1781
656
|
productGroupId?: string;
|
|
657
|
+
};
|
|
658
|
+
|
|
659
|
+
export type PostIntegrationApiProductGroupMerchantsSetDefaultResponse = (unknown);
|
|
660
|
+
|
|
661
|
+
export type GetIntegrationApiProductGroupMerchantsMerchantDefaultPgIdByMerchantIdData = {
|
|
662
|
+
merchantId: string;
|
|
663
|
+
vatRates?: Array<(number)>;
|
|
664
|
+
};
|
|
665
|
+
|
|
666
|
+
export type GetIntegrationApiProductGroupMerchantsMerchantDefaultPgIdByMerchantIdResponse = ({
|
|
667
|
+
[key: string]: (string);
|
|
668
|
+
});
|
|
669
|
+
|
|
670
|
+
export type PostIntegrationApiProductGroupMerchantsEnsurePgsBelongToMerchantData = {
|
|
1782
671
|
merchantId?: string;
|
|
1783
|
-
|
|
672
|
+
requestBody?: Array<(string)>;
|
|
673
|
+
};
|
|
674
|
+
|
|
675
|
+
export type PostIntegrationApiProductGroupMerchantsEnsurePgsBelongToMerchantResponse = (unknown);
|
|
1784
676
|
|
|
1785
677
|
export type GetApiSettingManagementTimezoneResponse = (string);
|
|
1786
678
|
|
|
@@ -1790,28 +682,13 @@ export type PostApiSettingManagementTimezoneData = {
|
|
|
1790
682
|
|
|
1791
683
|
export type PostApiSettingManagementTimezoneResponse = (unknown);
|
|
1792
684
|
|
|
1793
|
-
export type GetApiSettingManagementTimezoneTimezonesResponse = (Array<
|
|
1794
|
-
name?: (string) | null;
|
|
1795
|
-
value?: (string) | null;
|
|
1796
|
-
}>);
|
|
685
|
+
export type GetApiSettingManagementTimezoneTimezonesResponse = (Array<Volo_Abp_NameValue>);
|
|
1797
686
|
|
|
1798
687
|
export type PostApiSettingServiceVatData = {
|
|
1799
|
-
requestBody?:
|
|
1800
|
-
readonly extraProperties?: {
|
|
1801
|
-
[key: string]: unknown;
|
|
1802
|
-
} | null;
|
|
1803
|
-
percent: number;
|
|
1804
|
-
minimumTotalAmount: number;
|
|
1805
|
-
active?: boolean;
|
|
1806
|
-
};
|
|
688
|
+
requestBody?: UniRefund_SettingService_Vats_CreateVatDto;
|
|
1807
689
|
};
|
|
1808
690
|
|
|
1809
|
-
export type PostApiSettingServiceVatResponse = (
|
|
1810
|
-
id?: string;
|
|
1811
|
-
percent?: number;
|
|
1812
|
-
minimumTotalAmount?: number;
|
|
1813
|
-
active?: boolean;
|
|
1814
|
-
});
|
|
691
|
+
export type PostApiSettingServiceVatResponse = (UniRefund_SettingService_Vats_VatDto);
|
|
1815
692
|
|
|
1816
693
|
export type GetApiSettingServiceVatData = {
|
|
1817
694
|
maxResultCount?: number;
|
|
@@ -1819,15 +696,7 @@ export type GetApiSettingServiceVatData = {
|
|
|
1819
696
|
sorting?: string;
|
|
1820
697
|
};
|
|
1821
698
|
|
|
1822
|
-
export type GetApiSettingServiceVatResponse = (
|
|
1823
|
-
items?: Array<{
|
|
1824
|
-
id?: string;
|
|
1825
|
-
percent?: number;
|
|
1826
|
-
minimumTotalAmount?: number;
|
|
1827
|
-
active?: boolean;
|
|
1828
|
-
}> | null;
|
|
1829
|
-
totalCount?: number;
|
|
1830
|
-
});
|
|
699
|
+
export type GetApiSettingServiceVatResponse = (PagedResultDto_VatDto);
|
|
1831
700
|
|
|
1832
701
|
export type DeleteApiSettingServiceVatByIdData = {
|
|
1833
702
|
id: string;
|
|
@@ -1839,28 +708,11 @@ export type GetApiSettingServiceVatByIdData = {
|
|
|
1839
708
|
id: string;
|
|
1840
709
|
};
|
|
1841
710
|
|
|
1842
|
-
export type GetApiSettingServiceVatByIdResponse = (
|
|
1843
|
-
id?: string;
|
|
1844
|
-
percent?: number;
|
|
1845
|
-
minimumTotalAmount?: number;
|
|
1846
|
-
active?: boolean;
|
|
1847
|
-
});
|
|
711
|
+
export type GetApiSettingServiceVatByIdResponse = (UniRefund_SettingService_Vats_VatDto);
|
|
1848
712
|
|
|
1849
713
|
export type PutApiSettingServiceVatByIdData = {
|
|
1850
714
|
id: string;
|
|
1851
|
-
requestBody?:
|
|
1852
|
-
readonly extraProperties?: {
|
|
1853
|
-
[key: string]: unknown;
|
|
1854
|
-
} | null;
|
|
1855
|
-
percent?: number;
|
|
1856
|
-
minimumTotalAmount?: number;
|
|
1857
|
-
active?: boolean;
|
|
1858
|
-
};
|
|
715
|
+
requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
|
|
1859
716
|
};
|
|
1860
717
|
|
|
1861
|
-
export type PutApiSettingServiceVatByIdResponse = (
|
|
1862
|
-
id?: string;
|
|
1863
|
-
percent?: number;
|
|
1864
|
-
minimumTotalAmount?: number;
|
|
1865
|
-
active?: boolean;
|
|
1866
|
-
});
|
|
718
|
+
export type PutApiSettingServiceVatByIdResponse = (UniRefund_SettingService_Vats_VatDto);
|