@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.
Files changed (192) hide show
  1. package/AccountService/AccountServiceClient.ts +58 -0
  2. package/AccountService/core/ApiError.ts +25 -0
  3. package/AccountService/core/ApiRequestOptions.ts +17 -0
  4. package/AccountService/core/ApiResult.ts +11 -0
  5. package/AccountService/core/BaseHttpRequest.ts +14 -0
  6. package/AccountService/core/CancelablePromise.ts +131 -0
  7. package/AccountService/core/FetchHttpRequest.ts +26 -0
  8. package/AccountService/core/OpenAPI.ts +32 -0
  9. package/AccountService/core/request.ts +322 -0
  10. package/AccountService/index.ts +122 -0
  11. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
  12. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
  13. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
  14. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
  15. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -0
  16. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -0
  17. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -0
  18. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -0
  19. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -0
  20. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -0
  21. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -0
  22. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -0
  23. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
  25. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -0
  26. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -0
  27. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -0
  28. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -0
  29. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -0
  30. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -0
  31. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -0
  32. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -0
  33. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -0
  34. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -0
  35. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -0
  36. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -0
  37. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -0
  38. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -0
  39. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -0
  40. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -0
  41. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -0
  42. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -0
  43. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
  44. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -0
  45. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -0
  46. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -0
  47. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -0
  48. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -0
  49. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -0
  50. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -0
  51. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -0
  52. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -0
  53. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
  54. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  55. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  56. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  57. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  58. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  90. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  91. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  92. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  93. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  94. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  95. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  98. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  99. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  100. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  101. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  102. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  103. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  104. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
  105. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
  106. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
  107. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  108. package/AccountService/models/Volo_Abp_NameValue.ts +9 -0
  109. package/AccountService/services/AbpApiDefinitionService.ts +34 -0
  110. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -0
  111. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -0
  112. package/AccountService/services/AbpTenantService.ts +58 -0
  113. package/AccountService/services/AccountExternalProviderService.ts +56 -0
  114. package/AccountService/services/AccountService.ts +545 -0
  115. package/AccountService/services/AccountSettingsService.ts +178 -0
  116. package/AccountService/services/DynamicClaimsService.ts +27 -0
  117. package/AccountService/services/LoginService.ts +99 -0
  118. package/AccountService/services/ProfileService.ts +155 -0
  119. package/AccountService/services/UserService.ts +313 -0
  120. package/ProjectService/ProjectServiceClient.ts +40 -0
  121. package/ProjectService/core/ApiError.ts +25 -0
  122. package/ProjectService/core/ApiRequestOptions.ts +17 -0
  123. package/ProjectService/core/ApiResult.ts +11 -0
  124. package/ProjectService/core/BaseHttpRequest.ts +14 -0
  125. package/ProjectService/core/CancelablePromise.ts +131 -0
  126. package/ProjectService/core/FetchHttpRequest.ts +26 -0
  127. package/ProjectService/core/OpenAPI.ts +32 -0
  128. package/ProjectService/core/request.ts +322 -0
  129. package/ProjectService/index.ts +73 -0
  130. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_SaveProjectDto.ts +19 -0
  131. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectsDto_UpdateProjectDto.ts +20 -0
  132. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +20 -0
  133. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Samples_SampleDto.ts +8 -0
  134. package/ProjectService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  135. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  136. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  137. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  138. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  139. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  140. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  141. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  142. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  143. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  144. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  145. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  146. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  147. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  148. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  149. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  150. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  151. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  152. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  153. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  154. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  155. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  156. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  157. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  158. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  159. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  160. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  161. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  162. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  163. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  164. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  165. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  166. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  167. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  168. package/ProjectService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  169. package/ProjectService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  170. package/ProjectService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  171. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  172. package/ProjectService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  173. package/ProjectService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  174. package/ProjectService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  175. package/ProjectService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  176. package/ProjectService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  177. package/ProjectService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  178. package/ProjectService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  179. package/ProjectService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  180. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  181. package/ProjectService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  182. package/ProjectService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  183. package/ProjectService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  184. package/ProjectService/models/Volo_Abp_NameValue.ts +9 -0
  185. package/ProjectService/services/AbpApiDefinitionService.ts +34 -0
  186. package/ProjectService/services/AbpApplicationConfigurationService.ts +34 -0
  187. package/ProjectService/services/AbpApplicationLocalizationService.ts +37 -0
  188. package/ProjectService/services/ProjectService.ts +143 -0
  189. package/ProjectService/services/SampleServiceService.ts +46 -0
  190. package/ProjectService.json +2938 -0
  191. package/index.ts +2 -0
  192. 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,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_AuthenticatorInfoDto = {
6
+ key?: string | null;
7
+ uri?: 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_ChangePasswordInput = {
6
+ currentPassword?: string | null;
7
+ newPassword: string;
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_ConfirmEmailInput = {
6
+ userId: string;
7
+ token: string;
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_ConfirmPhoneNumberInput = {
6
+ userId: string;
7
+ token: string;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ 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
+
@@ -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,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_IsLinkedInput = {
6
+ userId?: string;
7
+ tenantId?: 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 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,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_LinkUserInput = {
6
+ userId?: string;
7
+ tenantId?: string | null;
8
+ token: string;
9
+ };
10
+
@@ -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,9 @@
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_ProfilePictureType {
6
+ '_0' = 0,
7
+ '_1' = 1,
8
+ '_2' = 2,
9
+ }
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_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,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_ResetPasswordDto = {
6
+ userId?: string;
7
+ resetToken: string;
8
+ password: string;
9
+ };
10
+
@@ -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,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_SendTwoFactorCodeInput = {
6
+ userId: string;
7
+ provider: string;
8
+ token: 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
+ export type Volo_Abp_Account_UnLinkUserInput = {
6
+ userId?: string;
7
+ tenantId?: 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,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_UserLookupDto = {
6
+ id?: string;
7
+ userName?: string | null;
8
+ };
9
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_VerifyAuthenticatorCodeDto = {
6
+ recoveryCodes?: Array<string> | null;
7
+ };
8
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_VerifyAuthenticatorCodeInput = {
6
+ code?: string | null;
7
+ };
8
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_VerifyEmailConfirmationTokenInput = {
6
+ userId: string;
7
+ token: string;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_VerifyLinkLoginTokenInput = {
6
+ userId: string;
7
+ tenantId?: string | null;
8
+ token: string;
9
+ };
10
+