@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,135 @@
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_IdentityLdapSettingsDto } from '../models/Volo_Abp_Identity_IdentityLdapSettingsDto';
6
+ import type { Volo_Abp_Identity_IdentityOAuthSettingsDto } from '../models/Volo_Abp_Identity_IdentityOAuthSettingsDto';
7
+ import type { Volo_Abp_Identity_IdentitySettingsDto } from '../models/Volo_Abp_Identity_IdentitySettingsDto';
8
+ import type { CancelablePromise } from '../core/CancelablePromise';
9
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
10
+ export class SettingsService {
11
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
12
+ /**
13
+ * @returns Volo_Abp_Identity_IdentitySettingsDto Success
14
+ * @throws ApiError
15
+ */
16
+ public getApiIdentitySettings(): CancelablePromise<Volo_Abp_Identity_IdentitySettingsDto> {
17
+ return this.httpRequest.request({
18
+ method: 'GET',
19
+ url: '/api/identity/settings',
20
+ errors: {
21
+ 400: `Bad Request`,
22
+ 401: `Unauthorized`,
23
+ 403: `Forbidden`,
24
+ 404: `Not Found`,
25
+ 500: `Server Error`,
26
+ 501: `Server Error`,
27
+ },
28
+ });
29
+ }
30
+ /**
31
+ * @param requestBody
32
+ * @returns any Success
33
+ * @throws ApiError
34
+ */
35
+ public putApiIdentitySettings(
36
+ requestBody?: Volo_Abp_Identity_IdentitySettingsDto,
37
+ ): CancelablePromise<any> {
38
+ return this.httpRequest.request({
39
+ method: 'PUT',
40
+ url: '/api/identity/settings',
41
+ body: requestBody,
42
+ mediaType: 'application/json',
43
+ errors: {
44
+ 400: `Bad Request`,
45
+ 401: `Unauthorized`,
46
+ 403: `Forbidden`,
47
+ 404: `Not Found`,
48
+ 500: `Server Error`,
49
+ 501: `Server Error`,
50
+ },
51
+ });
52
+ }
53
+ /**
54
+ * @returns Volo_Abp_Identity_IdentityLdapSettingsDto Success
55
+ * @throws ApiError
56
+ */
57
+ public getApiIdentitySettingsLdap(): CancelablePromise<Volo_Abp_Identity_IdentityLdapSettingsDto> {
58
+ return this.httpRequest.request({
59
+ method: 'GET',
60
+ url: '/api/identity/settings/ldap',
61
+ errors: {
62
+ 400: `Bad Request`,
63
+ 401: `Unauthorized`,
64
+ 403: `Forbidden`,
65
+ 404: `Not Found`,
66
+ 500: `Server Error`,
67
+ 501: `Server Error`,
68
+ },
69
+ });
70
+ }
71
+ /**
72
+ * @param requestBody
73
+ * @returns any Success
74
+ * @throws ApiError
75
+ */
76
+ public putApiIdentitySettingsLdap(
77
+ requestBody?: Volo_Abp_Identity_IdentityLdapSettingsDto,
78
+ ): CancelablePromise<any> {
79
+ return this.httpRequest.request({
80
+ method: 'PUT',
81
+ url: '/api/identity/settings/ldap',
82
+ body: requestBody,
83
+ mediaType: 'application/json',
84
+ errors: {
85
+ 400: `Bad Request`,
86
+ 401: `Unauthorized`,
87
+ 403: `Forbidden`,
88
+ 404: `Not Found`,
89
+ 500: `Server Error`,
90
+ 501: `Server Error`,
91
+ },
92
+ });
93
+ }
94
+ /**
95
+ * @returns Volo_Abp_Identity_IdentityOAuthSettingsDto Success
96
+ * @throws ApiError
97
+ */
98
+ public getApiIdentitySettingsOauth(): CancelablePromise<Volo_Abp_Identity_IdentityOAuthSettingsDto> {
99
+ return this.httpRequest.request({
100
+ method: 'GET',
101
+ url: '/api/identity/settings/oauth',
102
+ errors: {
103
+ 400: `Bad Request`,
104
+ 401: `Unauthorized`,
105
+ 403: `Forbidden`,
106
+ 404: `Not Found`,
107
+ 500: `Server Error`,
108
+ 501: `Server Error`,
109
+ },
110
+ });
111
+ }
112
+ /**
113
+ * @param requestBody
114
+ * @returns any Success
115
+ * @throws ApiError
116
+ */
117
+ public putApiIdentitySettingsOauth(
118
+ requestBody?: Volo_Abp_Identity_IdentityOAuthSettingsDto,
119
+ ): CancelablePromise<any> {
120
+ return this.httpRequest.request({
121
+ method: 'PUT',
122
+ url: '/api/identity/settings/oauth',
123
+ body: requestBody,
124
+ mediaType: 'application/json',
125
+ errors: {
126
+ 400: `Bad Request`,
127
+ 401: `Unauthorized`,
128
+ 403: `Forbidden`,
129
+ 404: `Not Found`,
130
+ 500: `Server Error`,
131
+ 501: `Server Error`,
132
+ },
133
+ });
134
+ }
135
+ }
@@ -0,0 +1,144 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Application_Dtos_ListResultDto_1 } from '../models/Volo_Abp_Application_Dtos_ListResultDto_1';
6
+ import type { Volo_Abp_Users_UserData } from '../models/Volo_Abp_Users_UserData';
7
+ import type { Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
8
+ import type { CancelablePromise } from '../core/CancelablePromise';
9
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
10
+ export class UserIntegrationService {
11
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
12
+ /**
13
+ * @param id
14
+ * @returns string Success
15
+ * @throws ApiError
16
+ */
17
+ public getIntegrationApiIdentityUsersRoleNames(
18
+ id: string,
19
+ ): CancelablePromise<Array<string>> {
20
+ return this.httpRequest.request({
21
+ method: 'GET',
22
+ url: '/integration-api/identity/users/{id}/role-names',
23
+ path: {
24
+ 'id': id,
25
+ },
26
+ errors: {
27
+ 400: `Bad Request`,
28
+ 401: `Unauthorized`,
29
+ 403: `Forbidden`,
30
+ 404: `Not Found`,
31
+ 500: `Server Error`,
32
+ 501: `Server Error`,
33
+ },
34
+ });
35
+ }
36
+ /**
37
+ * @param id
38
+ * @returns Volo_Abp_Users_UserData Success
39
+ * @throws ApiError
40
+ */
41
+ public getIntegrationApiIdentityUsers(
42
+ id: string,
43
+ ): CancelablePromise<Volo_Abp_Users_UserData> {
44
+ return this.httpRequest.request({
45
+ method: 'GET',
46
+ url: '/integration-api/identity/users/{id}',
47
+ path: {
48
+ 'id': id,
49
+ },
50
+ errors: {
51
+ 400: `Bad Request`,
52
+ 401: `Unauthorized`,
53
+ 403: `Forbidden`,
54
+ 404: `Not Found`,
55
+ 500: `Server Error`,
56
+ 501: `Server Error`,
57
+ },
58
+ });
59
+ }
60
+ /**
61
+ * @param userName
62
+ * @returns Volo_Abp_Users_UserData Success
63
+ * @throws ApiError
64
+ */
65
+ public getIntegrationApiIdentityUsersByUsername(
66
+ userName: string,
67
+ ): CancelablePromise<Volo_Abp_Users_UserData> {
68
+ return this.httpRequest.request({
69
+ method: 'GET',
70
+ url: '/integration-api/identity/users/by-username/{userName}',
71
+ path: {
72
+ 'userName': userName,
73
+ },
74
+ errors: {
75
+ 400: `Bad Request`,
76
+ 401: `Unauthorized`,
77
+ 403: `Forbidden`,
78
+ 404: `Not Found`,
79
+ 500: `Server Error`,
80
+ 501: `Server Error`,
81
+ },
82
+ });
83
+ }
84
+ /**
85
+ * @param sorting
86
+ * @param filter
87
+ * @param skipCount
88
+ * @param maxResultCount
89
+ * @param extraProperties
90
+ * @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
91
+ * @throws ApiError
92
+ */
93
+ public getIntegrationApiIdentityUsersSearch(
94
+ sorting?: string,
95
+ filter?: string,
96
+ skipCount?: number,
97
+ maxResultCount?: number,
98
+ extraProperties?: Record<string, any>,
99
+ ): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
100
+ return this.httpRequest.request({
101
+ method: 'GET',
102
+ url: '/integration-api/identity/users/search',
103
+ query: {
104
+ 'Sorting': sorting,
105
+ 'Filter': filter,
106
+ 'SkipCount': skipCount,
107
+ 'MaxResultCount': maxResultCount,
108
+ 'ExtraProperties': extraProperties,
109
+ },
110
+ errors: {
111
+ 400: `Bad Request`,
112
+ 401: `Unauthorized`,
113
+ 403: `Forbidden`,
114
+ 404: `Not Found`,
115
+ 500: `Server Error`,
116
+ 501: `Server Error`,
117
+ },
118
+ });
119
+ }
120
+ /**
121
+ * @param filter
122
+ * @returns number Success
123
+ * @throws ApiError
124
+ */
125
+ public getIntegrationApiIdentityUsersCount(
126
+ filter?: string,
127
+ ): CancelablePromise<number> {
128
+ return this.httpRequest.request({
129
+ method: 'GET',
130
+ url: '/integration-api/identity/users/count',
131
+ query: {
132
+ 'Filter': filter,
133
+ },
134
+ errors: {
135
+ 400: `Bad Request`,
136
+ 401: `Unauthorized`,
137
+ 403: `Forbidden`,
138
+ 404: `Not Found`,
139
+ 500: `Server Error`,
140
+ 501: `Server Error`,
141
+ },
142
+ });
143
+ }
144
+ }
@@ -0,0 +1,120 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Application_Dtos_ListResultDto_1 } from '../models/Volo_Abp_Application_Dtos_ListResultDto_1';
6
+ import type { Volo_Abp_Users_UserData } from '../models/Volo_Abp_Users_UserData';
7
+ import type { Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
8
+ import type { CancelablePromise } from '../core/CancelablePromise';
9
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
10
+ export class UserLookupService {
11
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
12
+ /**
13
+ * @param id
14
+ * @returns Volo_Abp_Users_UserData Success
15
+ * @throws ApiError
16
+ */
17
+ public getApiIdentityUsersLookup(
18
+ id: string,
19
+ ): CancelablePromise<Volo_Abp_Users_UserData> {
20
+ return this.httpRequest.request({
21
+ method: 'GET',
22
+ url: '/api/identity/users/lookup/{id}',
23
+ path: {
24
+ 'id': id,
25
+ },
26
+ errors: {
27
+ 400: `Bad Request`,
28
+ 401: `Unauthorized`,
29
+ 403: `Forbidden`,
30
+ 404: `Not Found`,
31
+ 500: `Server Error`,
32
+ 501: `Server Error`,
33
+ },
34
+ });
35
+ }
36
+ /**
37
+ * @param userName
38
+ * @returns Volo_Abp_Users_UserData Success
39
+ * @throws ApiError
40
+ */
41
+ public getApiIdentityUsersLookupByUsername(
42
+ userName: string,
43
+ ): CancelablePromise<Volo_Abp_Users_UserData> {
44
+ return this.httpRequest.request({
45
+ method: 'GET',
46
+ url: '/api/identity/users/lookup/by-username/{userName}',
47
+ path: {
48
+ 'userName': userName,
49
+ },
50
+ errors: {
51
+ 400: `Bad Request`,
52
+ 401: `Unauthorized`,
53
+ 403: `Forbidden`,
54
+ 404: `Not Found`,
55
+ 500: `Server Error`,
56
+ 501: `Server Error`,
57
+ },
58
+ });
59
+ }
60
+ /**
61
+ * @param sorting
62
+ * @param filter
63
+ * @param skipCount
64
+ * @param maxResultCount
65
+ * @param extraProperties
66
+ * @returns Volo_Abp_Application_Dtos_ListResultDto_1<Volo_Abp_Users_UserData_Volo_Abp_Users_Abstractions_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
67
+ * @throws ApiError
68
+ */
69
+ public getApiIdentityUsersLookupSearch(
70
+ sorting?: string,
71
+ filter?: string,
72
+ skipCount?: number,
73
+ maxResultCount?: number,
74
+ extraProperties?: Record<string, any>,
75
+ ): CancelablePromise<Volo_Abp_Application_Dtos_ListResultDto_1> {
76
+ return this.httpRequest.request({
77
+ method: 'GET',
78
+ url: '/api/identity/users/lookup/search',
79
+ query: {
80
+ 'Sorting': sorting,
81
+ 'Filter': filter,
82
+ 'SkipCount': skipCount,
83
+ 'MaxResultCount': maxResultCount,
84
+ 'ExtraProperties': extraProperties,
85
+ },
86
+ errors: {
87
+ 400: `Bad Request`,
88
+ 401: `Unauthorized`,
89
+ 403: `Forbidden`,
90
+ 404: `Not Found`,
91
+ 500: `Server Error`,
92
+ 501: `Server Error`,
93
+ },
94
+ });
95
+ }
96
+ /**
97
+ * @param filter
98
+ * @returns number Success
99
+ * @throws ApiError
100
+ */
101
+ public getApiIdentityUsersLookupCount(
102
+ filter?: string,
103
+ ): CancelablePromise<number> {
104
+ return this.httpRequest.request({
105
+ method: 'GET',
106
+ url: '/api/identity/users/lookup/count',
107
+ query: {
108
+ 'Filter': filter,
109
+ },
110
+ errors: {
111
+ 400: `Bad Request`,
112
+ 401: `Unauthorized`,
113
+ 403: `Forbidden`,
114
+ 404: `Not Found`,
115
+ 500: `Server Error`,
116
+ 501: `Server Error`,
117
+ },
118
+ });
119
+ }
120
+ }