@ayasofyazilim/saas 0.0.4 → 0.0.6
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/index.ts +115 -117
- package/AdministrationService/index.ts +111 -116
- package/IdentityService/IdentityServiceClient.ts +70 -0
- package/IdentityService/core/ApiError.ts +25 -0
- package/IdentityService/core/ApiRequestOptions.ts +17 -0
- package/IdentityService/core/ApiResult.ts +11 -0
- package/IdentityService/core/BaseHttpRequest.ts +14 -0
- package/IdentityService/core/CancelablePromise.ts +131 -0
- package/IdentityService/core/FetchHttpRequest.ts +26 -0
- package/IdentityService/core/OpenAPI.ts +32 -0
- package/IdentityService/core/request.ts +322 -0
- package/IdentityService/index.ts +133 -0
- package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
- package/{ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDetailDto.ts → IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts} +1 -1
- package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -0
- package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -0
- package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -0
- package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -0
- package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/IdentityService/models/Volo_Abp_NameValue.ts +9 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -0
- package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -0
- package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -0
- package/IdentityService/services/AbpApiDefinitionService.ts +34 -0
- package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -0
- package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -0
- package/IdentityService/services/AccountSettingsService.ts +178 -0
- package/IdentityService/services/ApplicationsService.ts +199 -0
- package/IdentityService/services/ClaimTypeService.ts +149 -0
- package/IdentityService/services/ExternalLoginService.ts +27 -0
- package/IdentityService/services/OrganizationUnitService.ts +539 -0
- package/IdentityService/services/RoleService.ts +269 -0
- package/IdentityService/services/ScopesService.ts +164 -0
- package/IdentityService/services/SecurityLogService.ts +174 -0
- package/IdentityService/services/SettingsService.ts +135 -0
- package/IdentityService/services/UserIntegrationService.ts +144 -0
- package/IdentityService/services/UserLookupService.ts +120 -0
- package/IdentityService/services/UserService.ts +937 -0
- package/ProjectService/ProjectServiceClient.ts +9 -9
- package/ProjectService/index.ts +14 -14
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts} +2 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts → AbpForDeploy_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts} +2 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_CreateProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_CreateProjectSectionDto.ts} +2 -1
- package/ProjectService/models/AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDetailDto.ts +9 -0
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_ProjectSectionDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectSections_UpdateProjectSectionDto.ts → AbpForDeploy_ProjectService_ProjectSections_UpdateProjectSectionDto.ts} +1 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts → AbpForDeploy_ProjectService_ProjectsDto_CreateProjectDto.ts} +3 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts → AbpForDeploy_ProjectService_ProjectsDto_UpdateProjectDto.ts} +3 -1
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts → AbpForDeploy_ProjectService_Projects_ProjectDto.ts} +4 -3
- package/ProjectService/models/{UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts → AbpForDeploy_ProjectService_Samples_SampleDto.ts} +1 -1
- package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +2 -2
- package/ProjectService/services/{ProjectSectionRelationServiceService.ts → ProjectSectionRelationService.ts} +14 -14
- package/ProjectService/services/{ProjectSectionServiceService.ts → ProjectSectionService.ts} +14 -14
- package/ProjectService/services/ProjectService.ts +29 -23
- package/ProjectService/services/{SampleServiceService.ts → ProjectServiceService.ts} +8 -8
- package/package.json +6 -4
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export { IdentityServiceClient } from "./IdentityServiceClient";
|
|
6
|
+
|
|
7
|
+
export { ApiError } from "./core/ApiError";
|
|
8
|
+
export { BaseHttpRequest } from "./core/BaseHttpRequest";
|
|
9
|
+
export { CancelablePromise, CancelError } from "./core/CancelablePromise";
|
|
10
|
+
export { OpenAPI } from "./core/OpenAPI";
|
|
11
|
+
export type { OpenAPIConfig } from "./core/OpenAPI";
|
|
12
|
+
|
|
13
|
+
export type { Volo_Abp_Account_AccountExternalProviderSettingsDto } from "./models/Volo_Abp_Account_AccountExternalProviderSettingsDto";
|
|
14
|
+
export type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from "./models/Volo_Abp_Account_AccountRecaptchaSettingsDto";
|
|
15
|
+
export type { Volo_Abp_Account_AccountSettingsDto } from "./models/Volo_Abp_Account_AccountSettingsDto";
|
|
16
|
+
export type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from "./models/Volo_Abp_Account_AccountTwoFactorSettingsDto";
|
|
17
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings";
|
|
18
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty";
|
|
19
|
+
export type { Volo_Abp_Account_UpdateExternalProviderDto } from "./models/Volo_Abp_Account_UpdateExternalProviderDto";
|
|
20
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from "./models/Volo_Abp_Application_Dtos_ListResultDto_1";
|
|
21
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from "./models/Volo_Abp_Application_Dtos_PagedResultDto_1";
|
|
22
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto";
|
|
23
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto";
|
|
24
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto";
|
|
25
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto";
|
|
26
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto";
|
|
27
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto";
|
|
28
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto";
|
|
29
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto";
|
|
30
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto";
|
|
31
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto";
|
|
32
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto";
|
|
33
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto";
|
|
34
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone";
|
|
35
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto";
|
|
36
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto";
|
|
37
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto";
|
|
38
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto";
|
|
39
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto";
|
|
40
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto";
|
|
41
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto";
|
|
42
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto";
|
|
43
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto";
|
|
44
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto";
|
|
45
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto";
|
|
46
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto";
|
|
47
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto";
|
|
48
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto";
|
|
49
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto";
|
|
50
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto";
|
|
51
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone";
|
|
52
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto";
|
|
53
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone";
|
|
54
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto";
|
|
55
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto";
|
|
56
|
+
export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel";
|
|
57
|
+
export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel";
|
|
58
|
+
export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel";
|
|
59
|
+
export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel";
|
|
60
|
+
export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel";
|
|
61
|
+
export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel";
|
|
62
|
+
export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel";
|
|
63
|
+
export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel";
|
|
64
|
+
export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel";
|
|
65
|
+
export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel";
|
|
66
|
+
export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel";
|
|
67
|
+
export type { Volo_Abp_Http_RemoteServiceErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceErrorInfo";
|
|
68
|
+
export type { Volo_Abp_Http_RemoteServiceErrorResponse } from "./models/Volo_Abp_Http_RemoteServiceErrorResponse";
|
|
69
|
+
export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceValidationErrorInfo";
|
|
70
|
+
export type { Volo_Abp_Identity_ClaimTypeDto } from "./models/Volo_Abp_Identity_ClaimTypeDto";
|
|
71
|
+
export type { Volo_Abp_Identity_CreateClaimTypeDto } from "./models/Volo_Abp_Identity_CreateClaimTypeDto";
|
|
72
|
+
export type { Volo_Abp_Identity_DownloadTokenResultDto } from "./models/Volo_Abp_Identity_DownloadTokenResultDto";
|
|
73
|
+
export type { Volo_Abp_Identity_ExternalLoginProviderDto } from "./models/Volo_Abp_Identity_ExternalLoginProviderDto";
|
|
74
|
+
export { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from "./models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour";
|
|
75
|
+
export { Volo_Abp_Identity_IdentityClaimValueType } from "./models/Volo_Abp_Identity_IdentityClaimValueType";
|
|
76
|
+
export type { Volo_Abp_Identity_IdentityLdapSettingsDto } from "./models/Volo_Abp_Identity_IdentityLdapSettingsDto";
|
|
77
|
+
export type { Volo_Abp_Identity_IdentityLockoutSettingsDto } from "./models/Volo_Abp_Identity_IdentityLockoutSettingsDto";
|
|
78
|
+
export type { Volo_Abp_Identity_IdentityOAuthSettingsDto } from "./models/Volo_Abp_Identity_IdentityOAuthSettingsDto";
|
|
79
|
+
export type { Volo_Abp_Identity_IdentityPasswordSettingsDto } from "./models/Volo_Abp_Identity_IdentityPasswordSettingsDto";
|
|
80
|
+
export type { Volo_Abp_Identity_IdentityRoleClaimDto } from "./models/Volo_Abp_Identity_IdentityRoleClaimDto";
|
|
81
|
+
export type { Volo_Abp_Identity_IdentityRoleCreateDto } from "./models/Volo_Abp_Identity_IdentityRoleCreateDto";
|
|
82
|
+
export type { Volo_Abp_Identity_IdentityRoleDto } from "./models/Volo_Abp_Identity_IdentityRoleDto";
|
|
83
|
+
export type { Volo_Abp_Identity_IdentityRoleLookupDto } from "./models/Volo_Abp_Identity_IdentityRoleLookupDto";
|
|
84
|
+
export type { Volo_Abp_Identity_IdentityRoleUpdateDto } from "./models/Volo_Abp_Identity_IdentityRoleUpdateDto";
|
|
85
|
+
export type { Volo_Abp_Identity_IdentitySecurityLogDto } from "./models/Volo_Abp_Identity_IdentitySecurityLogDto";
|
|
86
|
+
export type { Volo_Abp_Identity_IdentitySettingsDto } from "./models/Volo_Abp_Identity_IdentitySettingsDto";
|
|
87
|
+
export type { Volo_Abp_Identity_IdentitySignInSettingsDto } from "./models/Volo_Abp_Identity_IdentitySignInSettingsDto";
|
|
88
|
+
export type { Volo_Abp_Identity_IdentityUserClaimDto } from "./models/Volo_Abp_Identity_IdentityUserClaimDto";
|
|
89
|
+
export type { Volo_Abp_Identity_IdentityUserCreateDto } from "./models/Volo_Abp_Identity_IdentityUserCreateDto";
|
|
90
|
+
export type { Volo_Abp_Identity_IdentityUserDto } from "./models/Volo_Abp_Identity_IdentityUserDto";
|
|
91
|
+
export type { Volo_Abp_Identity_IdentityUserSettingsDto } from "./models/Volo_Abp_Identity_IdentityUserSettingsDto";
|
|
92
|
+
export type { Volo_Abp_Identity_IdentityUserUpdateDto } from "./models/Volo_Abp_Identity_IdentityUserUpdateDto";
|
|
93
|
+
export type { Volo_Abp_Identity_IdentityUserUpdatePasswordInput } from "./models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput";
|
|
94
|
+
export type { Volo_Abp_Identity_IdentityUserUpdateRolesDto } from "./models/Volo_Abp_Identity_IdentityUserUpdateRolesDto";
|
|
95
|
+
export type { Volo_Abp_Identity_ImportExternalUserInput } from "./models/Volo_Abp_Identity_ImportExternalUserInput";
|
|
96
|
+
export type { Volo_Abp_Identity_ImportUsersFromFileOutput } from "./models/Volo_Abp_Identity_ImportUsersFromFileOutput";
|
|
97
|
+
export { Volo_Abp_Identity_ImportUsersFromFileType } from "./models/Volo_Abp_Identity_ImportUsersFromFileType";
|
|
98
|
+
export type { Volo_Abp_Identity_OrganizationUnitCreateDto } from "./models/Volo_Abp_Identity_OrganizationUnitCreateDto";
|
|
99
|
+
export type { Volo_Abp_Identity_OrganizationUnitDto } from "./models/Volo_Abp_Identity_OrganizationUnitDto";
|
|
100
|
+
export type { Volo_Abp_Identity_OrganizationUnitLookupDto } from "./models/Volo_Abp_Identity_OrganizationUnitLookupDto";
|
|
101
|
+
export type { Volo_Abp_Identity_OrganizationUnitMoveInput } from "./models/Volo_Abp_Identity_OrganizationUnitMoveInput";
|
|
102
|
+
export type { Volo_Abp_Identity_OrganizationUnitRoleDto } from "./models/Volo_Abp_Identity_OrganizationUnitRoleDto";
|
|
103
|
+
export type { Volo_Abp_Identity_OrganizationUnitRoleInput } from "./models/Volo_Abp_Identity_OrganizationUnitRoleInput";
|
|
104
|
+
export type { Volo_Abp_Identity_OrganizationUnitUpdateDto } from "./models/Volo_Abp_Identity_OrganizationUnitUpdateDto";
|
|
105
|
+
export type { Volo_Abp_Identity_OrganizationUnitUserInput } from "./models/Volo_Abp_Identity_OrganizationUnitUserInput";
|
|
106
|
+
export type { Volo_Abp_Identity_OrganizationUnitWithDetailsDto } from "./models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto";
|
|
107
|
+
export type { Volo_Abp_Identity_UpdateClaimTypeDto } from "./models/Volo_Abp_Identity_UpdateClaimTypeDto";
|
|
108
|
+
export type { Volo_Abp_Localization_LanguageInfo } from "./models/Volo_Abp_Localization_LanguageInfo";
|
|
109
|
+
export type { Volo_Abp_NameValue } from "./models/Volo_Abp_NameValue";
|
|
110
|
+
export type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto";
|
|
111
|
+
export type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto";
|
|
112
|
+
export type { Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput";
|
|
113
|
+
export type { Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput";
|
|
114
|
+
export type { Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput";
|
|
115
|
+
export type { Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto";
|
|
116
|
+
export type { Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput";
|
|
117
|
+
export type { Volo_Abp_Users_UserData } from "./models/Volo_Abp_Users_UserData";
|
|
118
|
+
|
|
119
|
+
export { AbpApiDefinitionService } from "./services/AbpApiDefinitionService";
|
|
120
|
+
export { AbpApplicationConfigurationService } from "./services/AbpApplicationConfigurationService";
|
|
121
|
+
export { AbpApplicationLocalizationService } from "./services/AbpApplicationLocalizationService";
|
|
122
|
+
export { AccountSettingsService } from "./services/AccountSettingsService";
|
|
123
|
+
export { ApplicationsService } from "./services/ApplicationsService";
|
|
124
|
+
export { ClaimTypeService } from "./services/ClaimTypeService";
|
|
125
|
+
export { ExternalLoginService } from "./services/ExternalLoginService";
|
|
126
|
+
export { OrganizationUnitService } from "./services/OrganizationUnitService";
|
|
127
|
+
export { RoleService } from "./services/RoleService";
|
|
128
|
+
export { ScopesService } from "./services/ScopesService";
|
|
129
|
+
export { SecurityLogService } from "./services/SecurityLogService";
|
|
130
|
+
export { SettingsService } from "./services/SettingsService";
|
|
131
|
+
export { UserService } from "./services/UserService";
|
|
132
|
+
export { UserIntegrationService } from "./services/UserIntegrationService";
|
|
133
|
+
export { UserLookupService } from "./services/UserLookupService";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettings';
|
|
6
|
+
export type Volo_Abp_Account_AccountExternalProviderSettingsDto = {
|
|
7
|
+
settings?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettings> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Account_AccountRecaptchaSettingsDto = {
|
|
6
|
+
useCaptchaOnLogin?: boolean;
|
|
7
|
+
useCaptchaOnRegistration?: boolean;
|
|
8
|
+
verifyBaseUrl?: string | null;
|
|
9
|
+
siteKey?: string | null;
|
|
10
|
+
siteSecret?: string | null;
|
|
11
|
+
version?: number;
|
|
12
|
+
score?: number;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_Account_AccountSettingsDto = {
|
|
6
|
+
isSelfRegistrationEnabled?: boolean;
|
|
7
|
+
enableLocalLogin?: boolean;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from './Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour';
|
|
6
|
+
export type Volo_Abp_Account_AccountTwoFactorSettingsDto = {
|
|
7
|
+
twoFactorBehaviour?: Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour;
|
|
8
|
+
isRememberBrowserEnabled?: boolean;
|
|
9
|
+
usersCanChange?: boolean;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
|
|
6
|
+
export type Volo_Abp_Account_ExternalProviders_ExternalProviderSettings = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
enabled?: boolean;
|
|
9
|
+
properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
10
|
+
secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export type
|
|
5
|
+
export type Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty = {
|
|
6
6
|
name?: string | null;
|
|
7
7
|
value?: string | null;
|
|
8
8
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
|
|
6
|
+
export type Volo_Abp_Account_UpdateExternalProviderDto = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
enabled?: boolean;
|
|
9
|
+
properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
10
|
+
secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_Users_UserData } from './Volo_Abp_Users_UserData';
|
|
6
|
+
export type Volo_Abp_Application_Dtos_ListResultDto_1 = {
|
|
7
|
+
items?: Array<Volo_Abp_Users_UserData> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto } from './Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto';
|
|
6
|
+
export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
|
|
7
|
+
items?: Array<Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto> | null;
|
|
8
|
+
totalCount?: number;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
|
|
6
|
+
grantedPolicies?: Record<string, boolean> | null;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto';
|
|
6
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto';
|
|
7
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto';
|
|
8
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto';
|
|
9
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto';
|
|
10
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto';
|
|
11
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto';
|
|
12
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto';
|
|
13
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto';
|
|
14
|
+
import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto';
|
|
15
|
+
import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto';
|
|
16
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
|
|
17
|
+
localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
|
|
18
|
+
auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
|
|
19
|
+
setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
|
|
20
|
+
currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
|
|
21
|
+
features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
|
|
22
|
+
globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
|
|
23
|
+
multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
|
|
24
|
+
currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
|
|
25
|
+
timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
|
|
26
|
+
clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
|
|
27
|
+
objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
|
|
28
|
+
extraProperties?: Record<string, any> | null;
|
|
29
|
+
};
|
|
30
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
|
|
6
|
+
values?: Record<string, string | null> | null;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
|
|
6
|
+
enabledFeatures?: Array<string> | null;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
|
|
6
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto';
|
|
7
|
+
import type { Volo_Abp_Localization_LanguageInfo } from './Volo_Abp_Localization_LanguageInfo';
|
|
8
|
+
import type { Volo_Abp_NameValue } from './Volo_Abp_NameValue';
|
|
9
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
|
|
10
|
+
values?: Record<string, Record<string, string>> | null;
|
|
11
|
+
resources?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto> | null;
|
|
12
|
+
languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
|
|
13
|
+
currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
|
|
14
|
+
defaultResourceName?: string | null;
|
|
15
|
+
languagesMap?: Record<string, Array<Volo_Abp_NameValue>> | null;
|
|
16
|
+
languageFilesMap?: Record<string, Array<Volo_Abp_NameValue>> | null;
|
|
17
|
+
};
|
|
18
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
|
|
6
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
|
|
7
|
+
resources?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
|
|
6
|
+
texts?: Record<string, string> | null;
|
|
7
|
+
baseResources?: Array<string> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
|
|
6
|
+
values?: Record<string, string | null> | null;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto';
|
|
6
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
|
|
7
|
+
displayName?: string | null;
|
|
8
|
+
englishName?: string | null;
|
|
9
|
+
threeLetterIsoLanguageName?: string | null;
|
|
10
|
+
twoLetterIsoLanguageName?: string | null;
|
|
11
|
+
isRightToLeft?: boolean;
|
|
12
|
+
cultureName?: string | null;
|
|
13
|
+
name?: string | null;
|
|
14
|
+
nativeName?: string | null;
|
|
15
|
+
dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
|
|
16
|
+
};
|
|
17
|
+
|
package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
|
|
6
|
+
isAuthenticated?: boolean;
|
|
7
|
+
id?: string | null;
|
|
8
|
+
tenantId?: string | null;
|
|
9
|
+
impersonatorUserId?: string | null;
|
|
10
|
+
impersonatorTenantId?: string | null;
|
|
11
|
+
impersonatorUserName?: string | null;
|
|
12
|
+
impersonatorTenantName?: string | null;
|
|
13
|
+
userName?: string | null;
|
|
14
|
+
name?: string | null;
|
|
15
|
+
surName?: string | null;
|
|
16
|
+
email?: string | null;
|
|
17
|
+
emailVerified?: boolean;
|
|
18
|
+
phoneNumber?: string | null;
|
|
19
|
+
phoneNumberVerified?: boolean;
|
|
20
|
+
roles?: Array<string> | null;
|
|
21
|
+
};
|
|
22
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
|
|
6
|
+
calendarAlgorithmType?: string | null;
|
|
7
|
+
dateTimeFormatLong?: string | null;
|
|
8
|
+
shortDatePattern?: string | null;
|
|
9
|
+
fullDateTimePattern?: string | null;
|
|
10
|
+
dateSeparator?: string | null;
|
|
11
|
+
shortTimePattern?: string | null;
|
|
12
|
+
longTimePattern?: string | null;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto';
|
|
6
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
|
|
7
|
+
properties?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto> | null;
|
|
8
|
+
configuration?: Record<string, any> | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto';
|
|
6
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
|
|
7
|
+
fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
|
|
8
|
+
localizationResource?: string | null;
|
|
9
|
+
};
|
|
10
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
value?: any;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
|
|
6
|
+
isAvailable?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto';
|
|
6
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto';
|
|
7
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto';
|
|
8
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
|
|
9
|
+
onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
|
|
10
|
+
onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
|
|
11
|
+
onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
|
|
6
|
+
isAvailable?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
|
|
6
|
+
isAvailable?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
|
|
6
|
+
typeSimple?: string | null;
|
|
7
|
+
config?: Record<string, any> | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto';
|
|
6
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto';
|
|
7
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto';
|
|
8
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto';
|
|
9
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
|
|
10
|
+
type?: string | null;
|
|
11
|
+
typeSimple?: string | null;
|
|
12
|
+
displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
|
|
13
|
+
api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
|
|
14
|
+
ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
|
|
15
|
+
attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
|
|
16
|
+
configuration?: Record<string, any> | null;
|
|
17
|
+
defaultValue?: any;
|
|
18
|
+
};
|
|
19
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto';
|
|
6
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto';
|
|
7
|
+
import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto';
|
|
8
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
|
|
9
|
+
onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
|
|
10
|
+
onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
11
|
+
onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
|
|
12
|
+
lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
|
|
13
|
+
};
|
|
14
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
|
|
6
|
+
isVisible?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
|
|
6
|
+
url?: string | null;
|
|
7
|
+
resultListPropertyName?: string | null;
|
|
8
|
+
displayPropertyName?: string | null;
|
|
9
|
+
valuePropertyName?: string | null;
|
|
10
|
+
filterParamName?: string | null;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
|
|
6
|
+
isVisible?: boolean;
|
|
7
|
+
};
|
|
8
|
+
|