@ayasofyazilim/saas 0.0.2
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/AccountServiceClient.ts +58 -0
- package/AccountService/core/ApiError.ts +25 -0
- package/AccountService/core/ApiRequestOptions.ts +17 -0
- package/AccountService/core/ApiResult.ts +11 -0
- package/AccountService/core/BaseHttpRequest.ts +14 -0
- package/AccountService/core/CancelablePromise.ts +131 -0
- package/AccountService/core/FetchHttpRequest.ts +26 -0
- package/AccountService/core/OpenAPI.ts +32 -0
- package/AccountService/core/request.ts +322 -0
- package/AccountService/index.ts +122 -0
- package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
- package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -0
- package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -0
- package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
- package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -0
- package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -0
- package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -0
- package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -0
- package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -0
- package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -0
- package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
- package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
- package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
- package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
- package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
- package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/AccountService/models/Volo_Abp_NameValue.ts +9 -0
- package/AccountService/services/AbpApiDefinitionService.ts +34 -0
- package/AccountService/services/AbpApplicationConfigurationService.ts +34 -0
- package/AccountService/services/AbpApplicationLocalizationService.ts +37 -0
- package/AccountService/services/AbpTenantService.ts +58 -0
- package/AccountService/services/AccountExternalProviderService.ts +56 -0
- package/AccountService/services/AccountService.ts +545 -0
- package/AccountService/services/AccountSettingsService.ts +178 -0
- package/AccountService/services/DynamicClaimsService.ts +27 -0
- package/AccountService/services/LoginService.ts +99 -0
- package/AccountService/services/ProfileService.ts +155 -0
- package/AccountService/services/UserService.ts +313 -0
- package/ProjectService/ProjectServiceClient.ts +40 -0
- package/ProjectService/core/ApiError.ts +25 -0
- package/ProjectService/core/ApiRequestOptions.ts +17 -0
- package/ProjectService/core/ApiResult.ts +11 -0
- package/ProjectService/core/BaseHttpRequest.ts +14 -0
- package/ProjectService/core/CancelablePromise.ts +131 -0
- package/ProjectService/core/FetchHttpRequest.ts +26 -0
- package/ProjectService/core/OpenAPI.ts +32 -0
- package/ProjectService/core/request.ts +322 -0
- package/ProjectService/index.ts +73 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts +19 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts +20 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +20 -0
- package/ProjectService/models/UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
- package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
- package/ProjectService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
- package/ProjectService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
- package/ProjectService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
- package/ProjectService/models/Volo_Abp_NameValue.ts +9 -0
- package/ProjectService/services/AbpApiDefinitionService.ts +34 -0
- package/ProjectService/services/AbpApplicationConfigurationService.ts +34 -0
- package/ProjectService/services/AbpApplicationLocalizationService.ts +37 -0
- package/ProjectService/services/ProjectService.ts +143 -0
- package/ProjectService/services/SampleServiceService.ts +46 -0
- package/ProjectService.json +2938 -0
- package/index.ts +2 -0
- package/package.json +17 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
/* generated using openapi-typescript-codegen -- do no edit */
|
|
2
|
+
/* istanbul ignore file */
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
export { AccountServiceClient } from "./AccountServiceClient";
|
|
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_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";
|
|
111
|
+
|
|
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";
|
|
@@ -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,10 @@
|
|
|
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_DelegateNewUserInput = {
|
|
6
|
+
targetUserId?: string;
|
|
7
|
+
startTime: string;
|
|
8
|
+
endTime: string;
|
|
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
|
+
import type { Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto } from './Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto';
|
|
6
|
+
export type Volo_Abp_Account_ExternalProviders_ExternalProviderDto = {
|
|
7
|
+
providers?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto> | null;
|
|
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_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
|
|
6
|
+
export type Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto = {
|
|
7
|
+
name?: string | null;
|
|
8
|
+
enabled?: boolean;
|
|
9
|
+
properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -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_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
|
|
6
|
+
export type Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto = {
|
|
7
|
+
success?: boolean;
|
|
8
|
+
name?: string | null;
|
|
9
|
+
enabled?: boolean;
|
|
10
|
+
properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
11
|
+
secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
|
|
12
|
+
};
|
|
13
|
+
|
|
@@ -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
|
+
|
package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts
ADDED
|
@@ -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_ExternalProviders_ExternalProviderSettingsProperty = {
|
|
6
|
+
name?: string | null;
|
|
7
|
+
value?: string | 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_Account_IdentityUserConfirmationStateDto = {
|
|
6
|
+
emailConfirmed?: boolean;
|
|
7
|
+
phoneNumberConfirmed?: boolean;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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_Account_LinkUserDto = {
|
|
6
|
+
targetUserId?: string;
|
|
7
|
+
targetUserName?: string | null;
|
|
8
|
+
targetTenantId?: string | null;
|
|
9
|
+
targetTenantName?: string | null;
|
|
10
|
+
directlyLinked?: boolean;
|
|
11
|
+
};
|
|
12
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
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_ProfileDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
userName?: string | null;
|
|
8
|
+
email?: string | null;
|
|
9
|
+
emailConfirmed?: boolean;
|
|
10
|
+
name?: string | null;
|
|
11
|
+
surname?: string | null;
|
|
12
|
+
phoneNumber?: string | null;
|
|
13
|
+
phoneNumberConfirmed?: boolean;
|
|
14
|
+
isExternal?: boolean;
|
|
15
|
+
hasPassword?: boolean;
|
|
16
|
+
supportsMultipleTimezone?: boolean;
|
|
17
|
+
timezone?: string | null;
|
|
18
|
+
concurrencyStamp?: string | null;
|
|
19
|
+
};
|
|
20
|
+
|
|
@@ -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_Account_ProfilePictureType } from './Volo_Abp_Account_ProfilePictureType';
|
|
6
|
+
export type Volo_Abp_Account_ProfilePictureSourceDto = {
|
|
7
|
+
type?: Volo_Abp_Account_ProfilePictureType;
|
|
8
|
+
source?: string | null;
|
|
9
|
+
fileContent?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -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_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType } from './Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType';
|
|
6
|
+
export type Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult = {
|
|
7
|
+
result?: Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType;
|
|
8
|
+
readonly description?: 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_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo = {
|
|
6
|
+
linkUserId: string;
|
|
7
|
+
linkTenantId?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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 enum Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType {
|
|
6
|
+
'_1' = 1,
|
|
7
|
+
'_2' = 2,
|
|
8
|
+
'_3' = 3,
|
|
9
|
+
'_4' = 4,
|
|
10
|
+
'_5' = 5,
|
|
11
|
+
'_6' = 6,
|
|
12
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo = {
|
|
6
|
+
userNameOrEmailAddress: string;
|
|
7
|
+
password: string;
|
|
8
|
+
rememberMe?: boolean;
|
|
9
|
+
tenanId?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
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_RegisterDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
userName: string;
|
|
8
|
+
emailAddress: string;
|
|
9
|
+
password: string;
|
|
10
|
+
appName: string;
|
|
11
|
+
returnUrl?: string | null;
|
|
12
|
+
returnUrlHash?: string | null;
|
|
13
|
+
captchaResponse?: string | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
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_SendEmailConfirmationTokenDto = {
|
|
6
|
+
appName: string;
|
|
7
|
+
userId: string;
|
|
8
|
+
returnUrl?: string | null;
|
|
9
|
+
returnUrlHash?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
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_SendPasswordResetCodeDto = {
|
|
6
|
+
email: string;
|
|
7
|
+
appName: string;
|
|
8
|
+
returnUrl?: string | null;
|
|
9
|
+
returnUrlHash?: string | null;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -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_SendPhoneNumberConfirmationTokenDto = {
|
|
6
|
+
userId: string;
|
|
7
|
+
phoneNumber?: string | null;
|
|
8
|
+
};
|
|
9
|
+
|
|
@@ -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,15 @@
|
|
|
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_UpdateProfileDto = {
|
|
6
|
+
readonly extraProperties?: Record<string, any> | null;
|
|
7
|
+
userName: string;
|
|
8
|
+
email?: string | null;
|
|
9
|
+
name?: string | null;
|
|
10
|
+
surname?: string | null;
|
|
11
|
+
phoneNumber?: string | null;
|
|
12
|
+
timezone?: string | null;
|
|
13
|
+
concurrencyStamp?: string | null;
|
|
14
|
+
};
|
|
15
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
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_UserDelegationDto = {
|
|
6
|
+
id?: string;
|
|
7
|
+
userName?: string | null;
|
|
8
|
+
startTime?: string;
|
|
9
|
+
endTime?: string;
|
|
10
|
+
};
|
|
11
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
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_VerifyLinkLoginTokenInput = {
|
|
6
|
+
userId: string;
|
|
7
|
+
tenantId?: string | null;
|
|
8
|
+
token: string;
|
|
9
|
+
};
|
|
10
|
+
|