@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,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_VerifyLinkTokenInput = {
6
+ userId: string;
7
+ tenantId?: string | null;
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_VerifyPasswordResetTokenInput = {
6
+ userId?: string;
7
+ resetToken: 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
+ import type { Volo_Abp_Account_UserLookupDto } from './Volo_Abp_Account_UserLookupDto';
6
+ export type Volo_Abp_Application_Dtos_ListResultDto_1 = {
7
+ items?: Array<Volo_Abp_Account_UserLookupDto> | null;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Identity_IdentitySecurityLogDto } from './Volo_Abp_Identity_IdentitySecurityLogDto';
6
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
7
+ items?: Array<Volo_Abp_Identity_IdentitySecurityLogDto> | null;
8
+ totalCount?: number;
9
+ };
10
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
6
+ grantedPolicies?: Record<string, boolean> | null;
7
+ };
8
+
@@ -0,0 +1,30 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto';
7
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto';
8
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto';
9
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto';
10
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto';
11
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto';
12
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto';
13
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto';
14
+ import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto';
15
+ import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto';
16
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
17
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
18
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
19
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
20
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
21
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
22
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
23
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
24
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
25
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
26
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
27
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
28
+ extraProperties?: Record<string, any> | null;
29
+ };
30
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
6
+ values?: Record<string, string | null> | null;
7
+ };
8
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
6
+ enabledFeatures?: Array<string> | null;
7
+ };
8
+
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto';
7
+ import type { Volo_Abp_Localization_LanguageInfo } from './Volo_Abp_Localization_LanguageInfo';
8
+ import type { Volo_Abp_NameValue } from './Volo_Abp_NameValue';
9
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
10
+ values?: Record<string, Record<string, string>> | null;
11
+ resources?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto> | null;
12
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
13
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
14
+ defaultResourceName?: string | null;
15
+ languagesMap?: Record<string, Array<Volo_Abp_NameValue>> | null;
16
+ languageFilesMap?: Record<string, Array<Volo_Abp_NameValue>> | null;
17
+ };
18
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
7
+ resources?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto> | null;
8
+ };
9
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
6
+ texts?: Record<string, string> | null;
7
+ baseResources?: Array<string> | null;
8
+ };
9
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
6
+ values?: Record<string, string | null> | null;
7
+ };
8
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
6
+ kind?: string | null;
7
+ };
8
+
@@ -0,0 +1,17 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
7
+ displayName?: string | null;
8
+ englishName?: string | null;
9
+ threeLetterIsoLanguageName?: string | null;
10
+ twoLetterIsoLanguageName?: string | null;
11
+ isRightToLeft?: boolean;
12
+ cultureName?: string | null;
13
+ name?: string | null;
14
+ nativeName?: string | null;
15
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
16
+ };
17
+
@@ -0,0 +1,22 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
6
+ isAuthenticated?: boolean;
7
+ id?: string | null;
8
+ tenantId?: string | null;
9
+ impersonatorUserId?: string | null;
10
+ impersonatorTenantId?: string | null;
11
+ impersonatorUserName?: string | null;
12
+ impersonatorTenantName?: string | null;
13
+ userName?: string | null;
14
+ name?: string | null;
15
+ surName?: string | null;
16
+ email?: string | null;
17
+ emailVerified?: boolean;
18
+ phoneNumber?: string | null;
19
+ phoneNumberVerified?: boolean;
20
+ roles?: Array<string> | null;
21
+ };
22
+
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
6
+ calendarAlgorithmType?: string | null;
7
+ dateTimeFormatLong?: string | null;
8
+ shortDatePattern?: string | null;
9
+ fullDateTimePattern?: string | null;
10
+ dateSeparator?: string | null;
11
+ shortTimePattern?: string | null;
12
+ longTimePattern?: string | null;
13
+ };
14
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
6
+ timeZoneName?: string | null;
7
+ };
8
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
7
+ properties?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto> | null;
8
+ configuration?: Record<string, any> | null;
9
+ };
10
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
7
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
8
+ localizationResource?: string | null;
9
+ };
10
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
6
+ name?: string | null;
7
+ value?: any;
8
+ };
9
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
6
+ isAvailable?: boolean;
7
+ };
8
+
@@ -0,0 +1,13 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto';
7
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto';
8
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
9
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
10
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
11
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
12
+ };
13
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
6
+ isAvailable?: boolean;
7
+ };
8
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
6
+ isAvailable?: boolean;
7
+ };
8
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
6
+ typeSimple?: string | null;
7
+ config?: Record<string, any> | null;
8
+ };
9
+
@@ -0,0 +1,19 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto';
7
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto';
8
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto';
9
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
10
+ type?: string | null;
11
+ typeSimple?: string | null;
12
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
13
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
14
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
15
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
16
+ configuration?: Record<string, any> | null;
17
+ defaultValue?: any;
18
+ };
19
+
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto';
7
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto';
8
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
9
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
10
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
11
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
12
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
13
+ };
14
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
6
+ isVisible?: boolean;
7
+ };
8
+
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
6
+ url?: string | null;
7
+ resultListPropertyName?: string | null;
8
+ displayPropertyName?: string | null;
9
+ valuePropertyName?: string | null;
10
+ filterParamName?: string | null;
11
+ };
12
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
6
+ isVisible?: boolean;
7
+ };
8
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
6
+ name?: string | null;
7
+ resource?: 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
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
7
+ entities?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto> | null;
8
+ configuration?: Record<string, any> | null;
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
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto';
7
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
8
+ modules?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto> | null;
9
+ enums?: Record<string, Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto> | 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
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone';
7
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
8
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
9
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
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
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone';
6
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
7
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
8
+ };
9
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
6
+ timeZoneId?: string | null;
7
+ };
8
+
@@ -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_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
6
+ id?: string | null;
7
+ name?: string | null;
8
+ isAvailable?: boolean;
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_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto = {
6
+ success?: boolean;
7
+ tenantId?: string | null;
8
+ name?: string | null;
9
+ isActive?: boolean;
10
+ };
11
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
6
+ isEnabled?: boolean;
7
+ };
8
+
@@ -0,0 +1,20 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
6
+ import type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_ParameterApiDescriptionModel';
7
+ import type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
8
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
9
+ uniqueName?: string | null;
10
+ name?: string | null;
11
+ httpMethod?: string | null;
12
+ url?: string | null;
13
+ supportedVersions?: Array<string> | null;
14
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
15
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
16
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
17
+ allowAnonymous?: boolean | null;
18
+ implementFrom?: 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_Http_Modeling_ModuleApiDescriptionModel } from './Volo_Abp_Http_Modeling_ModuleApiDescriptionModel';
6
+ import type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from './Volo_Abp_Http_Modeling_TypeApiDescriptionModel';
7
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
8
+ modules?: Record<string, Volo_Abp_Http_Modeling_ModuleApiDescriptionModel> | null;
9
+ types?: Record<string, Volo_Abp_Http_Modeling_TypeApiDescriptionModel> | null;
10
+ };
11
+
@@ -0,0 +1,17 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from './Volo_Abp_Http_Modeling_ActionApiDescriptionModel';
6
+ import type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from './Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel';
7
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
8
+ controllerName?: string | null;
9
+ controllerGroupName?: string | null;
10
+ isRemoteService?: boolean;
11
+ isIntegrationService?: boolean;
12
+ apiVersion?: string | null;
13
+ type?: string | null;
14
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
15
+ actions?: Record<string, Volo_Abp_Http_Modeling_ActionApiDescriptionModel> | null;
16
+ };
17
+
@@ -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_Http_Modeling_InterfaceMethodApiDescriptionModel } from './Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel';
6
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
7
+ type?: string | null;
8
+ name?: string | null;
9
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
10
+ };
11
+
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from './Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel';
6
+ import type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from './Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel';
7
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
8
+ name?: string | null;
9
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
10
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
11
+ };
12
+
@@ -0,0 +1,13 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
6
+ name?: string | null;
7
+ typeAsString?: string | null;
8
+ type?: string | null;
9
+ typeSimple?: string | null;
10
+ isOptional?: boolean;
11
+ defaultValue?: any;
12
+ };
13
+
@@ -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_Http_Modeling_ControllerApiDescriptionModel } from './Volo_Abp_Http_Modeling_ControllerApiDescriptionModel';
6
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
7
+ rootPath?: string | null;
8
+ remoteServiceName?: string | null;
9
+ controllers?: Record<string, Volo_Abp_Http_Modeling_ControllerApiDescriptionModel> | null;
10
+ };
11
+