@ayasofyazilim/saas 0.0.4 → 0.0.5
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/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
- 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/index.ts +75 -77
- package/package.json +5 -3
package/AccountService/index.ts
CHANGED
|
@@ -2,123 +2,121 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export { AccountServiceClient } from
|
|
5
|
+
export { AccountServiceClient } from "./AccountServiceClient";
|
|
6
6
|
|
|
7
|
-
export { ApiError } from
|
|
8
|
-
export { BaseHttpRequest } from
|
|
9
|
-
export { CancelablePromise, CancelError } from
|
|
10
|
-
export { OpenAPI } from
|
|
11
|
-
export type { OpenAPIConfig } from
|
|
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
12
|
|
|
13
|
-
export type { Volo_Abp_Account_AccountExternalProviderSettingsDto } from
|
|
14
|
-
export type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from
|
|
15
|
-
export type { Volo_Abp_Account_AccountSettingsDto } from
|
|
16
|
-
export type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from
|
|
17
|
-
export type { Volo_Abp_Account_AuthenticatorInfoDto } from
|
|
18
|
-
export type { Volo_Abp_Account_ChangePasswordInput } from
|
|
19
|
-
export type { Volo_Abp_Account_ConfirmEmailInput } from
|
|
20
|
-
export type { Volo_Abp_Account_ConfirmPhoneNumberInput } from
|
|
21
|
-
export type { Volo_Abp_Account_DelegateNewUserInput } from
|
|
22
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from
|
|
23
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto } from
|
|
24
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from
|
|
25
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from
|
|
26
|
-
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from
|
|
27
|
-
export type { Volo_Abp_Account_IdentityUserConfirmationStateDto } from
|
|
28
|
-
export type { Volo_Abp_Account_IsLinkedInput } from
|
|
29
|
-
export type { Volo_Abp_Account_LinkUserDto } from
|
|
30
|
-
export type { Volo_Abp_Account_LinkUserInput } from
|
|
31
|
-
export type { Volo_Abp_Account_ProfileDto } from
|
|
32
|
-
export type { Volo_Abp_Account_ProfilePictureSourceDto } from
|
|
33
|
-
export { Volo_Abp_Account_ProfilePictureType } from
|
|
34
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult } from
|
|
35
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo } from
|
|
36
|
-
export { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType } from
|
|
37
|
-
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo } from
|
|
38
|
-
export type { Volo_Abp_Account_RegisterDto } from
|
|
39
|
-
export type { Volo_Abp_Account_ResetPasswordDto } from
|
|
40
|
-
export type { Volo_Abp_Account_SendEmailConfirmationTokenDto } from
|
|
41
|
-
export type { Volo_Abp_Account_SendPasswordResetCodeDto } from
|
|
42
|
-
export type { Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto } from
|
|
43
|
-
export type { Volo_Abp_Account_SendTwoFactorCodeInput } from
|
|
44
|
-
export type { Volo_Abp_Account_UnLinkUserInput } from
|
|
45
|
-
export type { Volo_Abp_Account_UpdateExternalProviderDto } from
|
|
46
|
-
export type { Volo_Abp_Account_UpdateProfileDto } from
|
|
47
|
-
export type { Volo_Abp_Account_UserDelegationDto } from
|
|
48
|
-
export type { Volo_Abp_Account_UserLookupDto } from
|
|
49
|
-
export type { Volo_Abp_Account_VerifyAuthenticatorCodeDto } from
|
|
50
|
-
export type { Volo_Abp_Account_VerifyAuthenticatorCodeInput } from
|
|
51
|
-
export type { Volo_Abp_Account_VerifyEmailConfirmationTokenInput } from
|
|
52
|
-
export type { Volo_Abp_Account_VerifyLinkLoginTokenInput } from
|
|
53
|
-
export type { Volo_Abp_Account_VerifyLinkTokenInput } from
|
|
54
|
-
export type { Volo_Abp_Account_VerifyPasswordResetTokenInput } from
|
|
55
|
-
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from
|
|
56
|
-
export type {
|
|
57
|
-
export type {
|
|
58
|
-
export type {
|
|
59
|
-
export type {
|
|
60
|
-
export type {
|
|
61
|
-
export type {
|
|
62
|
-
export type {
|
|
63
|
-
export type {
|
|
64
|
-
export type {
|
|
65
|
-
export type {
|
|
66
|
-
export type {
|
|
67
|
-
export type {
|
|
68
|
-
export type {
|
|
69
|
-
export type {
|
|
70
|
-
export type {
|
|
71
|
-
export type {
|
|
72
|
-
export type {
|
|
73
|
-
export type {
|
|
74
|
-
export type {
|
|
75
|
-
export type {
|
|
76
|
-
export type {
|
|
77
|
-
export type {
|
|
78
|
-
export type {
|
|
79
|
-
export type {
|
|
80
|
-
export type {
|
|
81
|
-
export type {
|
|
82
|
-
export type {
|
|
83
|
-
export type {
|
|
84
|
-
export type {
|
|
85
|
-
export type {
|
|
86
|
-
export type {
|
|
87
|
-
export type {
|
|
88
|
-
export type {
|
|
89
|
-
export type {
|
|
90
|
-
export type {
|
|
91
|
-
export type {
|
|
92
|
-
export type {
|
|
93
|
-
export type {
|
|
94
|
-
export type {
|
|
95
|
-
export type {
|
|
96
|
-
export type {
|
|
97
|
-
export type {
|
|
98
|
-
export type {
|
|
99
|
-
export type {
|
|
100
|
-
export type {
|
|
101
|
-
export type {
|
|
102
|
-
export type {
|
|
103
|
-
export type {
|
|
104
|
-
export type {
|
|
105
|
-
export type {
|
|
106
|
-
export
|
|
107
|
-
export type {
|
|
108
|
-
export {
|
|
109
|
-
export type {
|
|
110
|
-
export type {
|
|
111
|
-
export type { Volo_Abp_Localization_LanguageInfo } from './models/Volo_Abp_Localization_LanguageInfo';
|
|
112
|
-
export type { Volo_Abp_NameValue } from './models/Volo_Abp_NameValue';
|
|
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_AuthenticatorInfoDto } from "./models/Volo_Abp_Account_AuthenticatorInfoDto";
|
|
18
|
+
export type { Volo_Abp_Account_ChangePasswordInput } from "./models/Volo_Abp_Account_ChangePasswordInput";
|
|
19
|
+
export type { Volo_Abp_Account_ConfirmEmailInput } from "./models/Volo_Abp_Account_ConfirmEmailInput";
|
|
20
|
+
export type { Volo_Abp_Account_ConfirmPhoneNumberInput } from "./models/Volo_Abp_Account_ConfirmPhoneNumberInput";
|
|
21
|
+
export type { Volo_Abp_Account_DelegateNewUserInput } from "./models/Volo_Abp_Account_DelegateNewUserInput";
|
|
22
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderDto } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto";
|
|
23
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto";
|
|
24
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto";
|
|
25
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings";
|
|
26
|
+
export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty";
|
|
27
|
+
export type { Volo_Abp_Account_IdentityUserConfirmationStateDto } from "./models/Volo_Abp_Account_IdentityUserConfirmationStateDto";
|
|
28
|
+
export type { Volo_Abp_Account_IsLinkedInput } from "./models/Volo_Abp_Account_IsLinkedInput";
|
|
29
|
+
export type { Volo_Abp_Account_LinkUserDto } from "./models/Volo_Abp_Account_LinkUserDto";
|
|
30
|
+
export type { Volo_Abp_Account_LinkUserInput } from "./models/Volo_Abp_Account_LinkUserInput";
|
|
31
|
+
export type { Volo_Abp_Account_ProfileDto } from "./models/Volo_Abp_Account_ProfileDto";
|
|
32
|
+
export type { Volo_Abp_Account_ProfilePictureSourceDto } from "./models/Volo_Abp_Account_ProfilePictureSourceDto";
|
|
33
|
+
export { Volo_Abp_Account_ProfilePictureType } from "./models/Volo_Abp_Account_ProfilePictureType";
|
|
34
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult } from "./models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult";
|
|
35
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo } from "./models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo";
|
|
36
|
+
export { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType } from "./models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType";
|
|
37
|
+
export type { Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo } from "./models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo";
|
|
38
|
+
export type { Volo_Abp_Account_RegisterDto } from "./models/Volo_Abp_Account_RegisterDto";
|
|
39
|
+
export type { Volo_Abp_Account_ResetPasswordDto } from "./models/Volo_Abp_Account_ResetPasswordDto";
|
|
40
|
+
export type { Volo_Abp_Account_SendEmailConfirmationTokenDto } from "./models/Volo_Abp_Account_SendEmailConfirmationTokenDto";
|
|
41
|
+
export type { Volo_Abp_Account_SendPasswordResetCodeDto } from "./models/Volo_Abp_Account_SendPasswordResetCodeDto";
|
|
42
|
+
export type { Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto } from "./models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto";
|
|
43
|
+
export type { Volo_Abp_Account_SendTwoFactorCodeInput } from "./models/Volo_Abp_Account_SendTwoFactorCodeInput";
|
|
44
|
+
export type { Volo_Abp_Account_UnLinkUserInput } from "./models/Volo_Abp_Account_UnLinkUserInput";
|
|
45
|
+
export type { Volo_Abp_Account_UpdateExternalProviderDto } from "./models/Volo_Abp_Account_UpdateExternalProviderDto";
|
|
46
|
+
export type { Volo_Abp_Account_UpdateProfileDto } from "./models/Volo_Abp_Account_UpdateProfileDto";
|
|
47
|
+
export type { Volo_Abp_Account_UserDelegationDto } from "./models/Volo_Abp_Account_UserDelegationDto";
|
|
48
|
+
export type { Volo_Abp_Account_UserLookupDto } from "./models/Volo_Abp_Account_UserLookupDto";
|
|
49
|
+
export type { Volo_Abp_Account_VerifyAuthenticatorCodeDto } from "./models/Volo_Abp_Account_VerifyAuthenticatorCodeDto";
|
|
50
|
+
export type { Volo_Abp_Account_VerifyAuthenticatorCodeInput } from "./models/Volo_Abp_Account_VerifyAuthenticatorCodeInput";
|
|
51
|
+
export type { Volo_Abp_Account_VerifyEmailConfirmationTokenInput } from "./models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput";
|
|
52
|
+
export type { Volo_Abp_Account_VerifyLinkLoginTokenInput } from "./models/Volo_Abp_Account_VerifyLinkLoginTokenInput";
|
|
53
|
+
export type { Volo_Abp_Account_VerifyLinkTokenInput } from "./models/Volo_Abp_Account_VerifyLinkTokenInput";
|
|
54
|
+
export type { Volo_Abp_Account_VerifyPasswordResetTokenInput } from "./models/Volo_Abp_Account_VerifyPasswordResetTokenInput";
|
|
55
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from "./models/Volo_Abp_Application_Dtos_ListResultDto_1";
|
|
56
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from "./models/Volo_Abp_Application_Dtos_PagedResultDto_1";
|
|
57
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto";
|
|
58
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto";
|
|
59
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto";
|
|
60
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto";
|
|
61
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto";
|
|
62
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto";
|
|
63
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto";
|
|
64
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto";
|
|
65
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto";
|
|
66
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto";
|
|
67
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto";
|
|
68
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto";
|
|
69
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone";
|
|
70
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto";
|
|
71
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto";
|
|
72
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto";
|
|
73
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto";
|
|
74
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto";
|
|
75
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto";
|
|
76
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto";
|
|
77
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto";
|
|
78
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto";
|
|
79
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto";
|
|
80
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto";
|
|
81
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto";
|
|
82
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto";
|
|
83
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto";
|
|
84
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto";
|
|
85
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto";
|
|
86
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone";
|
|
87
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto";
|
|
88
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone";
|
|
89
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto";
|
|
90
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto";
|
|
91
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto";
|
|
92
|
+
export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel";
|
|
93
|
+
export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel";
|
|
94
|
+
export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel";
|
|
95
|
+
export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel";
|
|
96
|
+
export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel";
|
|
97
|
+
export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel";
|
|
98
|
+
export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel";
|
|
99
|
+
export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel";
|
|
100
|
+
export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel";
|
|
101
|
+
export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel";
|
|
102
|
+
export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel";
|
|
103
|
+
export type { Volo_Abp_Http_RemoteServiceErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceErrorInfo";
|
|
104
|
+
export type { Volo_Abp_Http_RemoteServiceErrorResponse } from "./models/Volo_Abp_Http_RemoteServiceErrorResponse";
|
|
105
|
+
export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceValidationErrorInfo";
|
|
106
|
+
export { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from "./models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour";
|
|
107
|
+
export type { Volo_Abp_Identity_IdentitySecurityLogDto } from "./models/Volo_Abp_Identity_IdentitySecurityLogDto";
|
|
108
|
+
export type { Volo_Abp_Identity_IdentityUserDto } from "./models/Volo_Abp_Identity_IdentityUserDto";
|
|
109
|
+
export type { Volo_Abp_Localization_LanguageInfo } from "./models/Volo_Abp_Localization_LanguageInfo";
|
|
110
|
+
export type { Volo_Abp_NameValue } from "./models/Volo_Abp_NameValue";
|
|
113
111
|
|
|
114
|
-
export { AbpApiDefinitionService } from
|
|
115
|
-
export { AbpApplicationConfigurationService } from
|
|
116
|
-
export { AbpApplicationLocalizationService } from
|
|
117
|
-
export { AbpTenantService } from
|
|
118
|
-
export { AccountService } from
|
|
119
|
-
export { AccountExternalProviderService } from
|
|
120
|
-
export { AccountSettingsService } from
|
|
121
|
-
export { DynamicClaimsService } from
|
|
122
|
-
export { LoginService } from
|
|
123
|
-
export { ProfileService } from
|
|
124
|
-
export { UserService } from
|
|
112
|
+
export { AbpApiDefinitionService } from "./services/AbpApiDefinitionService";
|
|
113
|
+
export { AbpApplicationConfigurationService } from "./services/AbpApplicationConfigurationService";
|
|
114
|
+
export { AbpApplicationLocalizationService } from "./services/AbpApplicationLocalizationService";
|
|
115
|
+
export { AbpTenantService } from "./services/AbpTenantService";
|
|
116
|
+
export { AccountService } from "./services/AccountService";
|
|
117
|
+
export { AccountExternalProviderService } from "./services/AccountExternalProviderService";
|
|
118
|
+
export { AccountSettingsService } from "./services/AccountSettingsService";
|
|
119
|
+
export { DynamicClaimsService } from "./services/DynamicClaimsService";
|
|
120
|
+
export { LoginService } from "./services/LoginService";
|
|
121
|
+
export { ProfileService } from "./services/ProfileService";
|
|
122
|
+
export { UserService } from "./services/UserService";
|
|
@@ -2,122 +2,117 @@
|
|
|
2
2
|
/* istanbul ignore file */
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
/* eslint-disable */
|
|
5
|
-
export { AdministrationServiceClient } from
|
|
5
|
+
export { AdministrationServiceClient } from "./AdministrationServiceClient";
|
|
6
6
|
|
|
7
|
-
export { ApiError } from
|
|
8
|
-
export { BaseHttpRequest } from
|
|
9
|
-
export { CancelablePromise, CancelError } from
|
|
10
|
-
export { OpenAPI } from
|
|
11
|
-
export type { OpenAPIConfig } from
|
|
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
12
|
|
|
13
|
-
export { System_Net_HttpStatusCode } from
|
|
14
|
-
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from
|
|
15
|
-
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from
|
|
16
|
-
export type {
|
|
17
|
-
export type {
|
|
18
|
-
export type {
|
|
19
|
-
export type {
|
|
20
|
-
export type {
|
|
21
|
-
export type {
|
|
22
|
-
export type {
|
|
23
|
-
export type {
|
|
24
|
-
export type {
|
|
25
|
-
export type {
|
|
26
|
-
export type {
|
|
27
|
-
export type {
|
|
28
|
-
export type {
|
|
29
|
-
export type {
|
|
30
|
-
export type {
|
|
31
|
-
export type {
|
|
32
|
-
export type {
|
|
33
|
-
export type {
|
|
34
|
-
export type {
|
|
35
|
-
export type {
|
|
36
|
-
export type {
|
|
37
|
-
export type {
|
|
38
|
-
export type {
|
|
39
|
-
export type {
|
|
40
|
-
export type {
|
|
41
|
-
export type {
|
|
42
|
-
export type {
|
|
43
|
-
export type {
|
|
44
|
-
export type {
|
|
45
|
-
export type {
|
|
46
|
-
export type {
|
|
47
|
-
export type {
|
|
48
|
-
export type {
|
|
49
|
-
export type {
|
|
50
|
-
export type {
|
|
51
|
-
export
|
|
52
|
-
export type {
|
|
53
|
-
export type {
|
|
54
|
-
export type {
|
|
55
|
-
export type {
|
|
56
|
-
export {
|
|
57
|
-
export type {
|
|
58
|
-
export type {
|
|
59
|
-
export type {
|
|
60
|
-
export type {
|
|
61
|
-
export type {
|
|
62
|
-
export type {
|
|
63
|
-
export type {
|
|
64
|
-
export type {
|
|
65
|
-
export type {
|
|
66
|
-
export type {
|
|
67
|
-
export type {
|
|
68
|
-
export type {
|
|
69
|
-
export type {
|
|
70
|
-
export type {
|
|
71
|
-
export type {
|
|
72
|
-
export type {
|
|
73
|
-
export type {
|
|
74
|
-
export type {
|
|
75
|
-
export type {
|
|
76
|
-
export type {
|
|
77
|
-
export type {
|
|
78
|
-
export type {
|
|
79
|
-
export type {
|
|
80
|
-
export type {
|
|
81
|
-
export type {
|
|
82
|
-
export type {
|
|
83
|
-
export type {
|
|
84
|
-
export type {
|
|
85
|
-
export type {
|
|
86
|
-
export type {
|
|
87
|
-
export type {
|
|
88
|
-
export type {
|
|
89
|
-
export type {
|
|
90
|
-
export type {
|
|
91
|
-
export type {
|
|
92
|
-
export type {
|
|
93
|
-
export type {
|
|
94
|
-
export type {
|
|
95
|
-
export type {
|
|
96
|
-
export type {
|
|
97
|
-
export type {
|
|
98
|
-
export type {
|
|
99
|
-
export type {
|
|
100
|
-
export type {
|
|
101
|
-
export type {
|
|
102
|
-
export type {
|
|
103
|
-
export type {
|
|
104
|
-
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto';
|
|
105
|
-
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto';
|
|
106
|
-
export type { Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput } from './models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput';
|
|
107
|
-
export type { Volo_Abp_Validation_StringValues_IStringValueType } from './models/Volo_Abp_Validation_StringValues_IStringValueType';
|
|
108
|
-
export type { Volo_Abp_Validation_StringValues_IValueValidator } from './models/Volo_Abp_Validation_StringValues_IValueValidator';
|
|
13
|
+
export { System_Net_HttpStatusCode } from "./models/System_Net_HttpStatusCode";
|
|
14
|
+
export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from "./models/Volo_Abp_Application_Dtos_ListResultDto_1";
|
|
15
|
+
export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from "./models/Volo_Abp_Application_Dtos_PagedResultDto_1";
|
|
16
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto";
|
|
17
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto";
|
|
18
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto";
|
|
19
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto";
|
|
20
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto";
|
|
21
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto";
|
|
22
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto";
|
|
23
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto";
|
|
24
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto";
|
|
25
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto";
|
|
26
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto";
|
|
27
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto";
|
|
28
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone";
|
|
29
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto";
|
|
30
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto";
|
|
31
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto";
|
|
32
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto";
|
|
33
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto";
|
|
34
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto";
|
|
35
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto";
|
|
36
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto";
|
|
37
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto";
|
|
38
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto";
|
|
39
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto";
|
|
40
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto";
|
|
41
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto";
|
|
42
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto";
|
|
43
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto";
|
|
44
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto";
|
|
45
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone";
|
|
46
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto";
|
|
47
|
+
export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone";
|
|
48
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto";
|
|
49
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto";
|
|
50
|
+
export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto";
|
|
51
|
+
export { Volo_Abp_Auditing_EntityChangeType } from "./models/Volo_Abp_Auditing_EntityChangeType";
|
|
52
|
+
export type { Volo_Abp_AuditLogging_AuditLogActionDto } from "./models/Volo_Abp_AuditLogging_AuditLogActionDto";
|
|
53
|
+
export type { Volo_Abp_AuditLogging_AuditLogDto } from "./models/Volo_Abp_AuditLogging_AuditLogDto";
|
|
54
|
+
export type { Volo_Abp_AuditLogging_EntityChangeDto } from "./models/Volo_Abp_AuditLogging_EntityChangeDto";
|
|
55
|
+
export type { Volo_Abp_AuditLogging_EntityChangeWithUsernameDto } from "./models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto";
|
|
56
|
+
export type { Volo_Abp_AuditLogging_EntityPropertyChangeDto } from "./models/Volo_Abp_AuditLogging_EntityPropertyChangeDto";
|
|
57
|
+
export type { Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput } from "./models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput";
|
|
58
|
+
export type { Volo_Abp_AuditLogging_GetErrorRateOutput } from "./models/Volo_Abp_AuditLogging_GetErrorRateOutput";
|
|
59
|
+
export type { Volo_Abp_FeatureManagement_FeatureDto } from "./models/Volo_Abp_FeatureManagement_FeatureDto";
|
|
60
|
+
export type { Volo_Abp_FeatureManagement_FeatureGroupDto } from "./models/Volo_Abp_FeatureManagement_FeatureGroupDto";
|
|
61
|
+
export type { Volo_Abp_FeatureManagement_FeatureProviderDto } from "./models/Volo_Abp_FeatureManagement_FeatureProviderDto";
|
|
62
|
+
export type { Volo_Abp_FeatureManagement_GetFeatureListResultDto } from "./models/Volo_Abp_FeatureManagement_GetFeatureListResultDto";
|
|
63
|
+
export type { Volo_Abp_FeatureManagement_UpdateFeatureDto } from "./models/Volo_Abp_FeatureManagement_UpdateFeatureDto";
|
|
64
|
+
export type { Volo_Abp_FeatureManagement_UpdateFeaturesDto } from "./models/Volo_Abp_FeatureManagement_UpdateFeaturesDto";
|
|
65
|
+
export type { Volo_Abp_Gdpr_DownloadTokenResultDto } from "./models/Volo_Abp_Gdpr_DownloadTokenResultDto";
|
|
66
|
+
export type { Volo_Abp_Gdpr_GdprRequestDto } from "./models/Volo_Abp_Gdpr_GdprRequestDto";
|
|
67
|
+
export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel";
|
|
68
|
+
export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel";
|
|
69
|
+
export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel";
|
|
70
|
+
export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel";
|
|
71
|
+
export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel";
|
|
72
|
+
export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel";
|
|
73
|
+
export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel";
|
|
74
|
+
export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel";
|
|
75
|
+
export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel";
|
|
76
|
+
export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel";
|
|
77
|
+
export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel";
|
|
78
|
+
export type { Volo_Abp_Http_RemoteServiceErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceErrorInfo";
|
|
79
|
+
export type { Volo_Abp_Http_RemoteServiceErrorResponse } from "./models/Volo_Abp_Http_RemoteServiceErrorResponse";
|
|
80
|
+
export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceValidationErrorInfo";
|
|
81
|
+
export type { Volo_Abp_LanguageManagement_Dto_CreateLanguageDto } from "./models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto";
|
|
82
|
+
export type { Volo_Abp_LanguageManagement_Dto_CultureInfoDto } from "./models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto";
|
|
83
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageDto } from "./models/Volo_Abp_LanguageManagement_Dto_LanguageDto";
|
|
84
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageResourceDto } from "./models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto";
|
|
85
|
+
export type { Volo_Abp_LanguageManagement_Dto_LanguageTextDto } from "./models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto";
|
|
86
|
+
export type { Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto } from "./models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto";
|
|
87
|
+
export type { Volo_Abp_Localization_LanguageInfo } from "./models/Volo_Abp_Localization_LanguageInfo";
|
|
88
|
+
export type { Volo_Abp_NameValue } from "./models/Volo_Abp_NameValue";
|
|
89
|
+
export type { Volo_Abp_PermissionManagement_GetPermissionListResultDto } from "./models/Volo_Abp_PermissionManagement_GetPermissionListResultDto";
|
|
90
|
+
export type { Volo_Abp_PermissionManagement_PermissionGrantInfoDto } from "./models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto";
|
|
91
|
+
export type { Volo_Abp_PermissionManagement_PermissionGroupDto } from "./models/Volo_Abp_PermissionManagement_PermissionGroupDto";
|
|
92
|
+
export type { Volo_Abp_PermissionManagement_ProviderInfoDto } from "./models/Volo_Abp_PermissionManagement_ProviderInfoDto";
|
|
93
|
+
export type { Volo_Abp_PermissionManagement_UpdatePermissionDto } from "./models/Volo_Abp_PermissionManagement_UpdatePermissionDto";
|
|
94
|
+
export type { Volo_Abp_PermissionManagement_UpdatePermissionsDto } from "./models/Volo_Abp_PermissionManagement_UpdatePermissionsDto";
|
|
95
|
+
export type { Volo_Abp_SettingManagement_EmailSettingsDto } from "./models/Volo_Abp_SettingManagement_EmailSettingsDto";
|
|
96
|
+
export type { Volo_Abp_SettingManagement_SendTestEmailInput } from "./models/Volo_Abp_SettingManagement_SendTestEmailInput";
|
|
97
|
+
export type { Volo_Abp_SettingManagement_UpdateEmailSettingsDto } from "./models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto";
|
|
98
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput } from "./models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput";
|
|
99
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto } from "./models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto";
|
|
100
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto } from "./models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto";
|
|
101
|
+
export type { Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput } from "./models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput";
|
|
102
|
+
export type { Volo_Abp_Validation_StringValues_IStringValueType } from "./models/Volo_Abp_Validation_StringValues_IStringValueType";
|
|
103
|
+
export type { Volo_Abp_Validation_StringValues_IValueValidator } from "./models/Volo_Abp_Validation_StringValues_IValueValidator";
|
|
109
104
|
|
|
110
|
-
export { AbpApiDefinitionService } from
|
|
111
|
-
export { AbpApplicationConfigurationService } from
|
|
112
|
-
export { AbpApplicationLocalizationService } from
|
|
113
|
-
export { AbpTenantService } from
|
|
114
|
-
export { AuditLogsService } from
|
|
115
|
-
export { EmailSettingsService } from
|
|
116
|
-
export { FeaturesService } from
|
|
117
|
-
export { GdprRequestService } from
|
|
118
|
-
export { LanguagesService } from
|
|
119
|
-
export { LanguageTextsService } from
|
|
120
|
-
export { PermissionsService } from
|
|
121
|
-
export { TextTemplateContentsService } from
|
|
122
|
-
export { TextTemplateDefinitionsService } from
|
|
123
|
-
export { TimeZoneSettingsService } from
|
|
105
|
+
export { AbpApiDefinitionService } from "./services/AbpApiDefinitionService";
|
|
106
|
+
export { AbpApplicationConfigurationService } from "./services/AbpApplicationConfigurationService";
|
|
107
|
+
export { AbpApplicationLocalizationService } from "./services/AbpApplicationLocalizationService";
|
|
108
|
+
export { AbpTenantService } from "./services/AbpTenantService";
|
|
109
|
+
export { AuditLogsService } from "./services/AuditLogsService";
|
|
110
|
+
export { EmailSettingsService } from "./services/EmailSettingsService";
|
|
111
|
+
export { FeaturesService } from "./services/FeaturesService";
|
|
112
|
+
export { GdprRequestService } from "./services/GdprRequestService";
|
|
113
|
+
export { LanguagesService } from "./services/LanguagesService";
|
|
114
|
+
export { LanguageTextsService } from "./services/LanguageTextsService";
|
|
115
|
+
export { PermissionsService } from "./services/PermissionsService";
|
|
116
|
+
export { TextTemplateContentsService } from "./services/TextTemplateContentsService";
|
|
117
|
+
export { TextTemplateDefinitionsService } from "./services/TextTemplateDefinitionsService";
|
|
118
|
+
export { TimeZoneSettingsService } from "./services/TimeZoneSettingsService";
|