@ayasofyazilim/saas 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (260) hide show
  1. package/AccountService/services/AccountService.ts +2 -2
  2. package/AccountService/services/UserService.ts +8 -8
  3. package/AdministrationService/AdministrationServiceClient.ts +67 -0
  4. package/AdministrationService/core/ApiError.ts +25 -0
  5. package/AdministrationService/core/ApiRequestOptions.ts +17 -0
  6. package/AdministrationService/core/ApiResult.ts +11 -0
  7. package/AdministrationService/core/BaseHttpRequest.ts +14 -0
  8. package/AdministrationService/core/CancelablePromise.ts +131 -0
  9. package/AdministrationService/core/FetchHttpRequest.ts +26 -0
  10. package/AdministrationService/core/OpenAPI.ts +32 -0
  11. package/AdministrationService/core/request.ts +322 -0
  12. package/AdministrationService/index.ts +118 -0
  13. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -0
  14. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
  15. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  16. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  17. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  18. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  19. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  20. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  21. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  22. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  23. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  24. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  25. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  26. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  27. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  28. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  29. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  30. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  31. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  32. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  33. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  34. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  35. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  36. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  37. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  38. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  39. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  40. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  41. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  42. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  43. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  44. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  45. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  46. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  47. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  48. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  49. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -0
  50. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  51. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -0
  52. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -0
  53. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -0
  54. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -0
  55. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -0
  56. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -0
  57. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -0
  58. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -0
  59. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -0
  60. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -0
  61. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -0
  62. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -0
  63. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -0
  64. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -0
  65. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -0
  66. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -0
  67. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  68. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  69. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  70. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  71. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  72. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  73. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  74. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  75. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  76. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  77. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  78. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  79. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  80. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  81. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -0
  82. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -0
  83. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -0
  84. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -0
  85. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -0
  86. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -0
  87. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  88. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -0
  89. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -0
  90. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -0
  91. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -0
  92. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -0
  93. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -0
  94. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -0
  95. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -0
  96. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -0
  97. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -0
  98. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -0
  99. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -0
  100. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -0
  101. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -0
  102. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -0
  103. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -0
  104. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -0
  105. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -0
  106. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -0
  107. package/AdministrationService/services/AbpTenantService.ts +58 -0
  108. package/AdministrationService/services/AuditLogsService.ts +286 -0
  109. package/AdministrationService/services/EmailSettingsService.ts +76 -0
  110. package/AdministrationService/services/FeaturesService.ts +96 -0
  111. package/AdministrationService/services/GdprRequestService.ts +152 -0
  112. package/AdministrationService/services/LanguageTextsService.ts +157 -0
  113. package/AdministrationService/services/LanguagesService.ts +257 -0
  114. package/AdministrationService/services/PermissionsService.ts +69 -0
  115. package/AdministrationService/services/TextTemplateContentsService.ts +85 -0
  116. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -0
  117. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -0
  118. package/IdentityService/IdentityServiceClient.ts +70 -0
  119. package/IdentityService/core/ApiError.ts +25 -0
  120. package/IdentityService/core/ApiRequestOptions.ts +17 -0
  121. package/IdentityService/core/ApiResult.ts +11 -0
  122. package/IdentityService/core/BaseHttpRequest.ts +14 -0
  123. package/IdentityService/core/CancelablePromise.ts +131 -0
  124. package/IdentityService/core/FetchHttpRequest.ts +26 -0
  125. package/IdentityService/core/OpenAPI.ts +32 -0
  126. package/IdentityService/core/request.ts +322 -0
  127. package/IdentityService/index.ts +133 -0
  128. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -0
  129. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -0
  130. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -0
  131. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -0
  132. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -0
  133. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -0
  134. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -0
  135. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -0
  136. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -0
  137. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -0
  138. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -0
  139. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -0
  140. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -0
  141. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -0
  142. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -0
  143. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -0
  144. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -0
  145. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -0
  146. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -0
  147. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -0
  148. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -0
  149. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -0
  150. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -0
  151. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -0
  152. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -0
  153. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -0
  154. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -0
  155. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -0
  156. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -0
  157. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -0
  158. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -0
  159. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -0
  160. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -0
  161. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -0
  162. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -0
  163. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -0
  164. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -0
  165. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -0
  166. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -0
  167. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -0
  168. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -0
  169. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -0
  170. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -0
  171. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -0
  172. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -0
  173. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -0
  174. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -0
  175. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -0
  176. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -0
  177. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -0
  178. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -0
  179. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -0
  180. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -0
  181. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -0
  182. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -0
  183. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -0
  184. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -0
  185. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -0
  186. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -0
  187. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -0
  188. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -0
  189. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -0
  190. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -0
  191. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -0
  192. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -0
  193. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -0
  194. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -0
  195. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -0
  196. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -0
  197. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -0
  198. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -0
  199. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -0
  200. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -0
  201. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -0
  202. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -0
  203. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -0
  204. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -0
  205. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -0
  206. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -0
  207. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -0
  208. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -0
  209. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -0
  210. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -0
  211. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -0
  212. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -0
  213. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -0
  214. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -0
  215. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -0
  216. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -0
  217. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -0
  218. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -0
  219. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -0
  220. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -0
  221. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -0
  222. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -0
  223. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -0
  224. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -0
  225. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -0
  226. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -0
  227. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -0
  228. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -0
  229. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -0
  230. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -0
  231. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -0
  232. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -0
  233. package/IdentityService/services/AbpApiDefinitionService.ts +34 -0
  234. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -0
  235. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -0
  236. package/IdentityService/services/AccountSettingsService.ts +178 -0
  237. package/IdentityService/services/ApplicationsService.ts +199 -0
  238. package/IdentityService/services/ClaimTypeService.ts +149 -0
  239. package/IdentityService/services/ExternalLoginService.ts +27 -0
  240. package/IdentityService/services/OrganizationUnitService.ts +539 -0
  241. package/IdentityService/services/RoleService.ts +269 -0
  242. package/IdentityService/services/ScopesService.ts +164 -0
  243. package/IdentityService/services/SecurityLogService.ts +174 -0
  244. package/IdentityService/services/SettingsService.ts +135 -0
  245. package/IdentityService/services/UserIntegrationService.ts +144 -0
  246. package/IdentityService/services/UserLookupService.ts +120 -0
  247. package/IdentityService/services/UserService.ts +937 -0
  248. package/ProjectService/ProjectServiceClient.ts +6 -0
  249. package/ProjectService/index.ts +75 -66
  250. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_CreateProjectSectionRelationDto.ts +10 -0
  251. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_ProjectSectionRelationDto.ts +11 -0
  252. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSectionRelations_UpdateProjectSectionRelationDto.ts +10 -0
  253. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_CreateProjectSectionDto.ts +10 -0
  254. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDetailDto.ts +9 -0
  255. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_ProjectSectionDto.ts +11 -0
  256. package/ProjectService/models/UpWithCrowdDemo_ProjectService_ProjectSections_UpdateProjectSectionDto.ts +10 -0
  257. package/ProjectService/models/UpWithCrowdDemo_ProjectService_Projects_ProjectDto.ts +2 -0
  258. package/ProjectService/services/ProjectSectionRelationServiceService.ts +143 -0
  259. package/ProjectService/services/ProjectSectionServiceService.ts +143 -0
  260. package/package.json +11 -6
@@ -0,0 +1,322 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import { ApiError } from './ApiError';
6
+ import type { ApiRequestOptions } from './ApiRequestOptions';
7
+ import type { ApiResult } from './ApiResult';
8
+ import { CancelablePromise } from './CancelablePromise';
9
+ import type { OnCancel } from './CancelablePromise';
10
+ import type { OpenAPIConfig } from './OpenAPI';
11
+
12
+ export const isDefined = <T>(value: T | null | undefined): value is Exclude<T, null | undefined> => {
13
+ return value !== undefined && value !== null;
14
+ };
15
+
16
+ export const isString = (value: any): value is string => {
17
+ return typeof value === 'string';
18
+ };
19
+
20
+ export const isStringWithValue = (value: any): value is string => {
21
+ return isString(value) && value !== '';
22
+ };
23
+
24
+ export const isBlob = (value: any): value is Blob => {
25
+ return (
26
+ typeof value === 'object' &&
27
+ typeof value.type === 'string' &&
28
+ typeof value.stream === 'function' &&
29
+ typeof value.arrayBuffer === 'function' &&
30
+ typeof value.constructor === 'function' &&
31
+ typeof value.constructor.name === 'string' &&
32
+ /^(Blob|File)$/.test(value.constructor.name) &&
33
+ /^(Blob|File)$/.test(value[Symbol.toStringTag])
34
+ );
35
+ };
36
+
37
+ export const isFormData = (value: any): value is FormData => {
38
+ return value instanceof FormData;
39
+ };
40
+
41
+ export const base64 = (str: string): string => {
42
+ try {
43
+ return btoa(str);
44
+ } catch (err) {
45
+ // @ts-ignore
46
+ return Buffer.from(str).toString('base64');
47
+ }
48
+ };
49
+
50
+ export const getQueryString = (params: Record<string, any>): string => {
51
+ const qs: string[] = [];
52
+
53
+ const append = (key: string, value: any) => {
54
+ qs.push(`${encodeURIComponent(key)}=${encodeURIComponent(String(value))}`);
55
+ };
56
+
57
+ const process = (key: string, value: any) => {
58
+ if (isDefined(value)) {
59
+ if (Array.isArray(value)) {
60
+ value.forEach(v => {
61
+ process(key, v);
62
+ });
63
+ } else if (typeof value === 'object') {
64
+ Object.entries(value).forEach(([k, v]) => {
65
+ process(`${key}[${k}]`, v);
66
+ });
67
+ } else {
68
+ append(key, value);
69
+ }
70
+ }
71
+ };
72
+
73
+ Object.entries(params).forEach(([key, value]) => {
74
+ process(key, value);
75
+ });
76
+
77
+ if (qs.length > 0) {
78
+ return `?${qs.join('&')}`;
79
+ }
80
+
81
+ return '';
82
+ };
83
+
84
+ const getUrl = (config: OpenAPIConfig, options: ApiRequestOptions): string => {
85
+ const encoder = config.ENCODE_PATH || encodeURI;
86
+
87
+ const path = options.url
88
+ .replace('{api-version}', config.VERSION)
89
+ .replace(/{(.*?)}/g, (substring: string, group: string) => {
90
+ if (options.path?.hasOwnProperty(group)) {
91
+ return encoder(String(options.path[group]));
92
+ }
93
+ return substring;
94
+ });
95
+
96
+ const url = `${config.BASE}${path}`;
97
+ if (options.query) {
98
+ return `${url}${getQueryString(options.query)}`;
99
+ }
100
+ return url;
101
+ };
102
+
103
+ export const getFormData = (options: ApiRequestOptions): FormData | undefined => {
104
+ if (options.formData) {
105
+ const formData = new FormData();
106
+
107
+ const process = (key: string, value: any) => {
108
+ if (isString(value) || isBlob(value)) {
109
+ formData.append(key, value);
110
+ } else {
111
+ formData.append(key, JSON.stringify(value));
112
+ }
113
+ };
114
+
115
+ Object.entries(options.formData)
116
+ .filter(([_, value]) => isDefined(value))
117
+ .forEach(([key, value]) => {
118
+ if (Array.isArray(value)) {
119
+ value.forEach(v => process(key, v));
120
+ } else {
121
+ process(key, value);
122
+ }
123
+ });
124
+
125
+ return formData;
126
+ }
127
+ return undefined;
128
+ };
129
+
130
+ type Resolver<T> = (options: ApiRequestOptions) => Promise<T>;
131
+
132
+ export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Resolver<T>): Promise<T | undefined> => {
133
+ if (typeof resolver === 'function') {
134
+ return (resolver as Resolver<T>)(options);
135
+ }
136
+ return resolver;
137
+ };
138
+
139
+ export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions): Promise<Headers> => {
140
+ const [token, username, password, additionalHeaders] = await Promise.all([
141
+ resolve(options, config.TOKEN),
142
+ resolve(options, config.USERNAME),
143
+ resolve(options, config.PASSWORD),
144
+ resolve(options, config.HEADERS),
145
+ ]);
146
+
147
+ const headers = Object.entries({
148
+ Accept: 'application/json',
149
+ ...additionalHeaders,
150
+ ...options.headers,
151
+ })
152
+ .filter(([_, value]) => isDefined(value))
153
+ .reduce((headers, [key, value]) => ({
154
+ ...headers,
155
+ [key]: String(value),
156
+ }), {} as Record<string, string>);
157
+
158
+ if (isStringWithValue(token)) {
159
+ headers['Authorization'] = `Bearer ${token}`;
160
+ }
161
+
162
+ if (isStringWithValue(username) && isStringWithValue(password)) {
163
+ const credentials = base64(`${username}:${password}`);
164
+ headers['Authorization'] = `Basic ${credentials}`;
165
+ }
166
+
167
+ if (options.body) {
168
+ if (options.mediaType) {
169
+ headers['Content-Type'] = options.mediaType;
170
+ } else if (isBlob(options.body)) {
171
+ headers['Content-Type'] = options.body.type || 'application/octet-stream';
172
+ } else if (isString(options.body)) {
173
+ headers['Content-Type'] = 'text/plain';
174
+ } else if (!isFormData(options.body)) {
175
+ headers['Content-Type'] = 'application/json';
176
+ }
177
+ }
178
+
179
+ return new Headers(headers);
180
+ };
181
+
182
+ export const getRequestBody = (options: ApiRequestOptions): any => {
183
+ if (options.body !== undefined) {
184
+ if (options.mediaType?.includes('/json')) {
185
+ return JSON.stringify(options.body)
186
+ } else if (isString(options.body) || isBlob(options.body) || isFormData(options.body)) {
187
+ return options.body;
188
+ } else {
189
+ return JSON.stringify(options.body);
190
+ }
191
+ }
192
+ return undefined;
193
+ };
194
+
195
+ export const sendRequest = async (
196
+ config: OpenAPIConfig,
197
+ options: ApiRequestOptions,
198
+ url: string,
199
+ body: any,
200
+ formData: FormData | undefined,
201
+ headers: Headers,
202
+ onCancel: OnCancel
203
+ ): Promise<Response> => {
204
+ const controller = new AbortController();
205
+
206
+ const request: RequestInit = {
207
+ headers,
208
+ body: body ?? formData,
209
+ method: options.method,
210
+ signal: controller.signal,
211
+ };
212
+
213
+ if (config.WITH_CREDENTIALS) {
214
+ request.credentials = config.CREDENTIALS;
215
+ }
216
+
217
+ onCancel(() => controller.abort());
218
+
219
+ return await fetch(url, request);
220
+ };
221
+
222
+ export const getResponseHeader = (response: Response, responseHeader?: string): string | undefined => {
223
+ if (responseHeader) {
224
+ const content = response.headers.get(responseHeader);
225
+ if (isString(content)) {
226
+ return content;
227
+ }
228
+ }
229
+ return undefined;
230
+ };
231
+
232
+ export const getResponseBody = async (response: Response): Promise<any> => {
233
+ if (response.status !== 204) {
234
+ try {
235
+ const contentType = response.headers.get('Content-Type');
236
+ if (contentType) {
237
+ const jsonTypes = ['application/json', 'application/problem+json']
238
+ const isJSON = jsonTypes.some(type => contentType.toLowerCase().startsWith(type));
239
+ if (isJSON) {
240
+ return await response.json();
241
+ } else {
242
+ return await response.text();
243
+ }
244
+ }
245
+ } catch (error) {
246
+ console.error(error);
247
+ }
248
+ }
249
+ return undefined;
250
+ };
251
+
252
+ export const catchErrorCodes = (options: ApiRequestOptions, result: ApiResult): void => {
253
+ const errors: Record<number, string> = {
254
+ 400: 'Bad Request',
255
+ 401: 'Unauthorized',
256
+ 403: 'Forbidden',
257
+ 404: 'Not Found',
258
+ 500: 'Internal Server Error',
259
+ 502: 'Bad Gateway',
260
+ 503: 'Service Unavailable',
261
+ ...options.errors,
262
+ }
263
+
264
+ const error = errors[result.status];
265
+ if (error) {
266
+ throw new ApiError(options, result, error);
267
+ }
268
+
269
+ if (!result.ok) {
270
+ const errorStatus = result.status ?? 'unknown';
271
+ const errorStatusText = result.statusText ?? 'unknown';
272
+ const errorBody = (() => {
273
+ try {
274
+ return JSON.stringify(result.body, null, 2);
275
+ } catch (e) {
276
+ return undefined;
277
+ }
278
+ })();
279
+
280
+ throw new ApiError(options, result,
281
+ `Generic Error: status: ${errorStatus}; status text: ${errorStatusText}; body: ${errorBody}`
282
+ );
283
+ }
284
+ };
285
+
286
+ /**
287
+ * Request method
288
+ * @param config The OpenAPI configuration object
289
+ * @param options The request options from the service
290
+ * @returns CancelablePromise<T>
291
+ * @throws ApiError
292
+ */
293
+ export const request = <T>(config: OpenAPIConfig, options: ApiRequestOptions): CancelablePromise<T> => {
294
+ return new CancelablePromise(async (resolve, reject, onCancel) => {
295
+ try {
296
+ const url = getUrl(config, options);
297
+ const formData = getFormData(options);
298
+ const body = getRequestBody(options);
299
+ const headers = await getHeaders(config, options);
300
+
301
+ if (!onCancel.isCancelled) {
302
+ const response = await sendRequest(config, options, url, body, formData, headers, onCancel);
303
+ const responseBody = await getResponseBody(response);
304
+ const responseHeader = getResponseHeader(response, options.responseHeader);
305
+
306
+ const result: ApiResult = {
307
+ url,
308
+ ok: response.ok,
309
+ status: response.status,
310
+ statusText: response.statusText,
311
+ body: responseHeader ?? responseBody,
312
+ };
313
+
314
+ catchErrorCodes(options, result);
315
+
316
+ resolve(result.body);
317
+ }
318
+ } catch (error) {
319
+ reject(error);
320
+ }
321
+ });
322
+ };
@@ -0,0 +1,133 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export { IdentityServiceClient } from "./IdentityServiceClient";
6
+
7
+ export { ApiError } from "./core/ApiError";
8
+ export { BaseHttpRequest } from "./core/BaseHttpRequest";
9
+ export { CancelablePromise, CancelError } from "./core/CancelablePromise";
10
+ export { OpenAPI } from "./core/OpenAPI";
11
+ export type { OpenAPIConfig } from "./core/OpenAPI";
12
+
13
+ export type { Volo_Abp_Account_AccountExternalProviderSettingsDto } from "./models/Volo_Abp_Account_AccountExternalProviderSettingsDto";
14
+ export type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from "./models/Volo_Abp_Account_AccountRecaptchaSettingsDto";
15
+ export type { Volo_Abp_Account_AccountSettingsDto } from "./models/Volo_Abp_Account_AccountSettingsDto";
16
+ export type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from "./models/Volo_Abp_Account_AccountTwoFactorSettingsDto";
17
+ export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings";
18
+ export type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from "./models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty";
19
+ export type { Volo_Abp_Account_UpdateExternalProviderDto } from "./models/Volo_Abp_Account_UpdateExternalProviderDto";
20
+ export type { Volo_Abp_Application_Dtos_ListResultDto_1 } from "./models/Volo_Abp_Application_Dtos_ListResultDto_1";
21
+ export type { Volo_Abp_Application_Dtos_PagedResultDto_1 } from "./models/Volo_Abp_Application_Dtos_PagedResultDto_1";
22
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto";
23
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto";
24
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto";
25
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto";
26
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto";
27
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto";
28
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto";
29
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto";
30
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto";
31
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto";
32
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto";
33
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto";
34
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone";
35
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto";
36
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto";
37
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto";
38
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto";
39
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto";
40
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto";
41
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto";
42
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto";
43
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto";
44
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto";
45
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto";
46
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto";
47
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto";
48
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto";
49
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto";
50
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto";
51
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone";
52
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto";
53
+ export type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone } from "./models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone";
54
+ export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto";
55
+ export type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from "./models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto";
56
+ export type { Volo_Abp_Http_Modeling_ActionApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel";
57
+ export type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel";
58
+ export type { Volo_Abp_Http_Modeling_ControllerApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel";
59
+ export type { Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel";
60
+ export type { Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel";
61
+ export type { Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel";
62
+ export type { Volo_Abp_Http_Modeling_ModuleApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel";
63
+ export type { Volo_Abp_Http_Modeling_ParameterApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel";
64
+ export type { Volo_Abp_Http_Modeling_PropertyApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel";
65
+ export type { Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel";
66
+ export type { Volo_Abp_Http_Modeling_TypeApiDescriptionModel } from "./models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel";
67
+ export type { Volo_Abp_Http_RemoteServiceErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceErrorInfo";
68
+ export type { Volo_Abp_Http_RemoteServiceErrorResponse } from "./models/Volo_Abp_Http_RemoteServiceErrorResponse";
69
+ export type { Volo_Abp_Http_RemoteServiceValidationErrorInfo } from "./models/Volo_Abp_Http_RemoteServiceValidationErrorInfo";
70
+ export type { Volo_Abp_Identity_ClaimTypeDto } from "./models/Volo_Abp_Identity_ClaimTypeDto";
71
+ export type { Volo_Abp_Identity_CreateClaimTypeDto } from "./models/Volo_Abp_Identity_CreateClaimTypeDto";
72
+ export type { Volo_Abp_Identity_DownloadTokenResultDto } from "./models/Volo_Abp_Identity_DownloadTokenResultDto";
73
+ export type { Volo_Abp_Identity_ExternalLoginProviderDto } from "./models/Volo_Abp_Identity_ExternalLoginProviderDto";
74
+ export { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from "./models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour";
75
+ export { Volo_Abp_Identity_IdentityClaimValueType } from "./models/Volo_Abp_Identity_IdentityClaimValueType";
76
+ export type { Volo_Abp_Identity_IdentityLdapSettingsDto } from "./models/Volo_Abp_Identity_IdentityLdapSettingsDto";
77
+ export type { Volo_Abp_Identity_IdentityLockoutSettingsDto } from "./models/Volo_Abp_Identity_IdentityLockoutSettingsDto";
78
+ export type { Volo_Abp_Identity_IdentityOAuthSettingsDto } from "./models/Volo_Abp_Identity_IdentityOAuthSettingsDto";
79
+ export type { Volo_Abp_Identity_IdentityPasswordSettingsDto } from "./models/Volo_Abp_Identity_IdentityPasswordSettingsDto";
80
+ export type { Volo_Abp_Identity_IdentityRoleClaimDto } from "./models/Volo_Abp_Identity_IdentityRoleClaimDto";
81
+ export type { Volo_Abp_Identity_IdentityRoleCreateDto } from "./models/Volo_Abp_Identity_IdentityRoleCreateDto";
82
+ export type { Volo_Abp_Identity_IdentityRoleDto } from "./models/Volo_Abp_Identity_IdentityRoleDto";
83
+ export type { Volo_Abp_Identity_IdentityRoleLookupDto } from "./models/Volo_Abp_Identity_IdentityRoleLookupDto";
84
+ export type { Volo_Abp_Identity_IdentityRoleUpdateDto } from "./models/Volo_Abp_Identity_IdentityRoleUpdateDto";
85
+ export type { Volo_Abp_Identity_IdentitySecurityLogDto } from "./models/Volo_Abp_Identity_IdentitySecurityLogDto";
86
+ export type { Volo_Abp_Identity_IdentitySettingsDto } from "./models/Volo_Abp_Identity_IdentitySettingsDto";
87
+ export type { Volo_Abp_Identity_IdentitySignInSettingsDto } from "./models/Volo_Abp_Identity_IdentitySignInSettingsDto";
88
+ export type { Volo_Abp_Identity_IdentityUserClaimDto } from "./models/Volo_Abp_Identity_IdentityUserClaimDto";
89
+ export type { Volo_Abp_Identity_IdentityUserCreateDto } from "./models/Volo_Abp_Identity_IdentityUserCreateDto";
90
+ export type { Volo_Abp_Identity_IdentityUserDto } from "./models/Volo_Abp_Identity_IdentityUserDto";
91
+ export type { Volo_Abp_Identity_IdentityUserSettingsDto } from "./models/Volo_Abp_Identity_IdentityUserSettingsDto";
92
+ export type { Volo_Abp_Identity_IdentityUserUpdateDto } from "./models/Volo_Abp_Identity_IdentityUserUpdateDto";
93
+ export type { Volo_Abp_Identity_IdentityUserUpdatePasswordInput } from "./models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput";
94
+ export type { Volo_Abp_Identity_IdentityUserUpdateRolesDto } from "./models/Volo_Abp_Identity_IdentityUserUpdateRolesDto";
95
+ export type { Volo_Abp_Identity_ImportExternalUserInput } from "./models/Volo_Abp_Identity_ImportExternalUserInput";
96
+ export type { Volo_Abp_Identity_ImportUsersFromFileOutput } from "./models/Volo_Abp_Identity_ImportUsersFromFileOutput";
97
+ export { Volo_Abp_Identity_ImportUsersFromFileType } from "./models/Volo_Abp_Identity_ImportUsersFromFileType";
98
+ export type { Volo_Abp_Identity_OrganizationUnitCreateDto } from "./models/Volo_Abp_Identity_OrganizationUnitCreateDto";
99
+ export type { Volo_Abp_Identity_OrganizationUnitDto } from "./models/Volo_Abp_Identity_OrganizationUnitDto";
100
+ export type { Volo_Abp_Identity_OrganizationUnitLookupDto } from "./models/Volo_Abp_Identity_OrganizationUnitLookupDto";
101
+ export type { Volo_Abp_Identity_OrganizationUnitMoveInput } from "./models/Volo_Abp_Identity_OrganizationUnitMoveInput";
102
+ export type { Volo_Abp_Identity_OrganizationUnitRoleDto } from "./models/Volo_Abp_Identity_OrganizationUnitRoleDto";
103
+ export type { Volo_Abp_Identity_OrganizationUnitRoleInput } from "./models/Volo_Abp_Identity_OrganizationUnitRoleInput";
104
+ export type { Volo_Abp_Identity_OrganizationUnitUpdateDto } from "./models/Volo_Abp_Identity_OrganizationUnitUpdateDto";
105
+ export type { Volo_Abp_Identity_OrganizationUnitUserInput } from "./models/Volo_Abp_Identity_OrganizationUnitUserInput";
106
+ export type { Volo_Abp_Identity_OrganizationUnitWithDetailsDto } from "./models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto";
107
+ export type { Volo_Abp_Identity_UpdateClaimTypeDto } from "./models/Volo_Abp_Identity_UpdateClaimTypeDto";
108
+ export type { Volo_Abp_Localization_LanguageInfo } from "./models/Volo_Abp_Localization_LanguageInfo";
109
+ export type { Volo_Abp_NameValue } from "./models/Volo_Abp_NameValue";
110
+ export type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto";
111
+ export type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto";
112
+ export type { Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput";
113
+ export type { Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput } from "./models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput";
114
+ export type { Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput";
115
+ export type { Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto";
116
+ export type { Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput } from "./models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput";
117
+ export type { Volo_Abp_Users_UserData } from "./models/Volo_Abp_Users_UserData";
118
+
119
+ export { AbpApiDefinitionService } from "./services/AbpApiDefinitionService";
120
+ export { AbpApplicationConfigurationService } from "./services/AbpApplicationConfigurationService";
121
+ export { AbpApplicationLocalizationService } from "./services/AbpApplicationLocalizationService";
122
+ export { AccountSettingsService } from "./services/AccountSettingsService";
123
+ export { ApplicationsService } from "./services/ApplicationsService";
124
+ export { ClaimTypeService } from "./services/ClaimTypeService";
125
+ export { ExternalLoginService } from "./services/ExternalLoginService";
126
+ export { OrganizationUnitService } from "./services/OrganizationUnitService";
127
+ export { RoleService } from "./services/RoleService";
128
+ export { ScopesService } from "./services/ScopesService";
129
+ export { SecurityLogService } from "./services/SecurityLogService";
130
+ export { SettingsService } from "./services/SettingsService";
131
+ export { UserService } from "./services/UserService";
132
+ export { UserIntegrationService } from "./services/UserIntegrationService";
133
+ export { UserLookupService } from "./services/UserLookupService";
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettings } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettings';
6
+ export type Volo_Abp_Account_AccountExternalProviderSettingsDto = {
7
+ settings?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettings> | null;
8
+ };
9
+
@@ -0,0 +1,14 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_AccountRecaptchaSettingsDto = {
6
+ useCaptchaOnLogin?: boolean;
7
+ useCaptchaOnRegistration?: boolean;
8
+ verifyBaseUrl?: string | null;
9
+ siteKey?: string | null;
10
+ siteSecret?: string | null;
11
+ version?: number;
12
+ score?: number;
13
+ };
14
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Account_AccountSettingsDto = {
6
+ isSelfRegistrationEnabled?: boolean;
7
+ enableLocalLogin?: boolean;
8
+ };
9
+
@@ -0,0 +1,11 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour } from './Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour';
6
+ export type Volo_Abp_Account_AccountTwoFactorSettingsDto = {
7
+ twoFactorBehaviour?: Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour;
8
+ isRememberBrowserEnabled?: boolean;
9
+ usersCanChange?: boolean;
10
+ };
11
+
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
6
+ export type Volo_Abp_Account_ExternalProviders_ExternalProviderSettings = {
7
+ name?: string | null;
8
+ enabled?: boolean;
9
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
10
+ secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
11
+ };
12
+
@@ -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,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty } from './Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty';
6
+ export type Volo_Abp_Account_UpdateExternalProviderDto = {
7
+ name?: string | null;
8
+ enabled?: boolean;
9
+ properties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
10
+ secretProperties?: Array<Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty> | null;
11
+ };
12
+
@@ -0,0 +1,9 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Users_UserData } from './Volo_Abp_Users_UserData';
6
+ export type Volo_Abp_Application_Dtos_ListResultDto_1 = {
7
+ items?: Array<Volo_Abp_Users_UserData> | null;
8
+ };
9
+
@@ -0,0 +1,10 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto } from './Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto';
6
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
7
+ items?: Array<Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto> | null;
8
+ totalCount?: number;
9
+ };
10
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
6
+ grantedPolicies?: Record<string, boolean> | null;
7
+ };
8
+
@@ -0,0 +1,30 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto';
6
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto';
7
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto';
8
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto';
9
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto';
10
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto';
11
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto';
12
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto';
13
+ import type { Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto } from './Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto';
14
+ import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto';
15
+ import type { Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto } from './Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto';
16
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
17
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
18
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
19
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
20
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
21
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
22
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
23
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
24
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
25
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
26
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
27
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
28
+ extraProperties?: Record<string, any> | null;
29
+ };
30
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
6
+ values?: Record<string, string | null> | null;
7
+ };
8
+
@@ -0,0 +1,8 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
6
+ enabledFeatures?: Array<string> | null;
7
+ };
8
+