@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,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput = {
6
+ readonly extraProperties?: Record<string, any> | null;
7
+ name: string;
8
+ displayName?: string | null;
9
+ description?: string | null;
10
+ resources?: Array<string> | null;
11
+ };
12
+
@@ -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_OpenIddict_Scopes_Dtos_ScopeDto = {
6
+ readonly extraProperties?: Record<string, any> | null;
7
+ id?: string;
8
+ name?: string | null;
9
+ displayName?: string | null;
10
+ description?: string | null;
11
+ buildIn?: boolean;
12
+ resources?: Array<string> | null;
13
+ };
14
+
@@ -0,0 +1,12 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput = {
6
+ readonly extraProperties?: Record<string, any> | null;
7
+ name: string;
8
+ displayName?: string | null;
9
+ description?: string | null;
10
+ resources?: Array<string> | null;
11
+ };
12
+
@@ -0,0 +1,18 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ export type Volo_Abp_Users_UserData = {
6
+ id?: string;
7
+ tenantId?: string | null;
8
+ userName?: string | null;
9
+ name?: string | null;
10
+ surname?: string | null;
11
+ isActive?: boolean;
12
+ email?: string | null;
13
+ emailConfirmed?: boolean;
14
+ phoneNumber?: string | null;
15
+ phoneNumberConfirmed?: boolean;
16
+ readonly extraProperties?: Record<string, any> | null;
17
+ };
18
+
@@ -0,0 +1,34 @@
1
+ /* generated using openapi-typescript-codegen -- do no edit */
2
+ /* istanbul ignore file */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ import type { Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel } from '../models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApiDefinitionService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param includeTypes
12
+ * @returns Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAbpApiDefinition(
16
+ includeTypes?: boolean,
17
+ ): CancelablePromise<Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel> {
18
+ return this.httpRequest.request({
19
+ method: 'GET',
20
+ url: '/api/abp/api-definition',
21
+ query: {
22
+ 'IncludeTypes': includeTypes,
23
+ },
24
+ errors: {
25
+ 400: `Bad Request`,
26
+ 401: `Unauthorized`,
27
+ 403: `Forbidden`,
28
+ 404: `Not Found`,
29
+ 500: `Server Error`,
30
+ 501: `Server Error`,
31
+ },
32
+ });
33
+ }
34
+ }
@@ -0,0 +1,34 @@
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_ApplicationConfigurationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApplicationConfigurationService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param includeLocalizationResources
12
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto Success
13
+ * @throws ApiError
14
+ */
15
+ public getApiAbpApplicationConfiguration(
16
+ includeLocalizationResources?: boolean,
17
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto> {
18
+ return this.httpRequest.request({
19
+ method: 'GET',
20
+ url: '/api/abp/application-configuration',
21
+ query: {
22
+ 'IncludeLocalizationResources': includeLocalizationResources,
23
+ },
24
+ errors: {
25
+ 400: `Bad Request`,
26
+ 401: `Unauthorized`,
27
+ 403: `Forbidden`,
28
+ 404: `Not Found`,
29
+ 500: `Server Error`,
30
+ 501: `Server Error`,
31
+ },
32
+ });
33
+ }
34
+ }
@@ -0,0 +1,37 @@
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_ApplicationLocalizationDto } from '../models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto';
6
+ import type { CancelablePromise } from '../core/CancelablePromise';
7
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
8
+ export class AbpApplicationLocalizationService {
9
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
10
+ /**
11
+ * @param cultureName
12
+ * @param onlyDynamics
13
+ * @returns Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto Success
14
+ * @throws ApiError
15
+ */
16
+ public getApiAbpApplicationLocalization(
17
+ cultureName: string,
18
+ onlyDynamics?: boolean,
19
+ ): CancelablePromise<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto> {
20
+ return this.httpRequest.request({
21
+ method: 'GET',
22
+ url: '/api/abp/application-localization',
23
+ query: {
24
+ 'CultureName': cultureName,
25
+ 'OnlyDynamics': onlyDynamics,
26
+ },
27
+ errors: {
28
+ 400: `Bad Request`,
29
+ 401: `Unauthorized`,
30
+ 403: `Forbidden`,
31
+ 404: `Not Found`,
32
+ 500: `Server Error`,
33
+ 501: `Server Error`,
34
+ },
35
+ });
36
+ }
37
+ }
@@ -0,0 +1,178 @@
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_AccountExternalProviderSettingsDto } from '../models/Volo_Abp_Account_AccountExternalProviderSettingsDto';
6
+ import type { Volo_Abp_Account_AccountRecaptchaSettingsDto } from '../models/Volo_Abp_Account_AccountRecaptchaSettingsDto';
7
+ import type { Volo_Abp_Account_AccountSettingsDto } from '../models/Volo_Abp_Account_AccountSettingsDto';
8
+ import type { Volo_Abp_Account_AccountTwoFactorSettingsDto } from '../models/Volo_Abp_Account_AccountTwoFactorSettingsDto';
9
+ import type { Volo_Abp_Account_UpdateExternalProviderDto } from '../models/Volo_Abp_Account_UpdateExternalProviderDto';
10
+ import type { CancelablePromise } from '../core/CancelablePromise';
11
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
12
+ export class AccountSettingsService {
13
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
14
+ /**
15
+ * @returns Volo_Abp_Account_AccountSettingsDto Success
16
+ * @throws ApiError
17
+ */
18
+ public getApiAccountAdminSettings(): CancelablePromise<Volo_Abp_Account_AccountSettingsDto> {
19
+ return this.httpRequest.request({
20
+ method: 'GET',
21
+ url: '/api/account-admin/settings',
22
+ errors: {
23
+ 400: `Bad Request`,
24
+ 401: `Unauthorized`,
25
+ 403: `Forbidden`,
26
+ 404: `Not Found`,
27
+ 500: `Server Error`,
28
+ 501: `Server Error`,
29
+ },
30
+ });
31
+ }
32
+ /**
33
+ * @param requestBody
34
+ * @returns any Success
35
+ * @throws ApiError
36
+ */
37
+ public putApiAccountAdminSettings(
38
+ requestBody?: Volo_Abp_Account_AccountSettingsDto,
39
+ ): CancelablePromise<any> {
40
+ return this.httpRequest.request({
41
+ method: 'PUT',
42
+ url: '/api/account-admin/settings',
43
+ body: requestBody,
44
+ mediaType: 'application/json',
45
+ errors: {
46
+ 400: `Bad Request`,
47
+ 401: `Unauthorized`,
48
+ 403: `Forbidden`,
49
+ 404: `Not Found`,
50
+ 500: `Server Error`,
51
+ 501: `Server Error`,
52
+ },
53
+ });
54
+ }
55
+ /**
56
+ * @returns Volo_Abp_Account_AccountTwoFactorSettingsDto Success
57
+ * @throws ApiError
58
+ */
59
+ public getApiAccountAdminSettingsTwoFactor(): CancelablePromise<Volo_Abp_Account_AccountTwoFactorSettingsDto> {
60
+ return this.httpRequest.request({
61
+ method: 'GET',
62
+ url: '/api/account-admin/settings/two-factor',
63
+ errors: {
64
+ 400: `Bad Request`,
65
+ 401: `Unauthorized`,
66
+ 403: `Forbidden`,
67
+ 404: `Not Found`,
68
+ 500: `Server Error`,
69
+ 501: `Server Error`,
70
+ },
71
+ });
72
+ }
73
+ /**
74
+ * @param requestBody
75
+ * @returns any Success
76
+ * @throws ApiError
77
+ */
78
+ public putApiAccountAdminSettingsTwoFactor(
79
+ requestBody?: Volo_Abp_Account_AccountTwoFactorSettingsDto,
80
+ ): CancelablePromise<any> {
81
+ return this.httpRequest.request({
82
+ method: 'PUT',
83
+ url: '/api/account-admin/settings/two-factor',
84
+ body: requestBody,
85
+ mediaType: 'application/json',
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
+ * @returns Volo_Abp_Account_AccountRecaptchaSettingsDto Success
98
+ * @throws ApiError
99
+ */
100
+ public getApiAccountAdminSettingsRecaptcha(): CancelablePromise<Volo_Abp_Account_AccountRecaptchaSettingsDto> {
101
+ return this.httpRequest.request({
102
+ method: 'GET',
103
+ url: '/api/account-admin/settings/recaptcha',
104
+ errors: {
105
+ 400: `Bad Request`,
106
+ 401: `Unauthorized`,
107
+ 403: `Forbidden`,
108
+ 404: `Not Found`,
109
+ 500: `Server Error`,
110
+ 501: `Server Error`,
111
+ },
112
+ });
113
+ }
114
+ /**
115
+ * @param requestBody
116
+ * @returns any Success
117
+ * @throws ApiError
118
+ */
119
+ public putApiAccountAdminSettingsRecaptcha(
120
+ requestBody?: Volo_Abp_Account_AccountRecaptchaSettingsDto,
121
+ ): CancelablePromise<any> {
122
+ return this.httpRequest.request({
123
+ method: 'PUT',
124
+ url: '/api/account-admin/settings/recaptcha',
125
+ body: requestBody,
126
+ mediaType: 'application/json',
127
+ errors: {
128
+ 400: `Bad Request`,
129
+ 401: `Unauthorized`,
130
+ 403: `Forbidden`,
131
+ 404: `Not Found`,
132
+ 500: `Server Error`,
133
+ 501: `Server Error`,
134
+ },
135
+ });
136
+ }
137
+ /**
138
+ * @returns Volo_Abp_Account_AccountExternalProviderSettingsDto Success
139
+ * @throws ApiError
140
+ */
141
+ public getApiAccountAdminSettingsExternalProvider(): CancelablePromise<Volo_Abp_Account_AccountExternalProviderSettingsDto> {
142
+ return this.httpRequest.request({
143
+ method: 'GET',
144
+ url: '/api/account-admin/settings/external-provider',
145
+ errors: {
146
+ 400: `Bad Request`,
147
+ 401: `Unauthorized`,
148
+ 403: `Forbidden`,
149
+ 404: `Not Found`,
150
+ 500: `Server Error`,
151
+ 501: `Server Error`,
152
+ },
153
+ });
154
+ }
155
+ /**
156
+ * @param requestBody
157
+ * @returns any Success
158
+ * @throws ApiError
159
+ */
160
+ public putApiAccountAdminSettingsExternalProvider(
161
+ requestBody?: Array<Volo_Abp_Account_UpdateExternalProviderDto>,
162
+ ): CancelablePromise<any> {
163
+ return this.httpRequest.request({
164
+ method: 'PUT',
165
+ url: '/api/account-admin/settings/external-provider',
166
+ body: requestBody,
167
+ mediaType: 'application/json',
168
+ errors: {
169
+ 400: `Bad Request`,
170
+ 401: `Unauthorized`,
171
+ 403: `Forbidden`,
172
+ 404: `Not Found`,
173
+ 500: `Server Error`,
174
+ 501: `Server Error`,
175
+ },
176
+ });
177
+ }
178
+ }
@@ -0,0 +1,199 @@
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_PagedResultDto_1 } from '../models/Volo_Abp_Application_Dtos_PagedResultDto_1';
6
+ import type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto } from '../models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto';
7
+ import type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto_Volo_Abp_OpenIddict_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_ } from '../models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto_Volo_Abp_OpenIddict_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_';
8
+ import type { Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto } from '../models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto';
9
+ import type { Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput } from '../models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput';
10
+ import type { Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput } from '../models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput';
11
+ import type { CancelablePromise } from '../core/CancelablePromise';
12
+ import type { BaseHttpRequest } from '../core/BaseHttpRequest';
13
+ export class ApplicationsService {
14
+ constructor(public readonly httpRequest: BaseHttpRequest) {}
15
+ /**
16
+ * @param id
17
+ * @returns Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto Success
18
+ * @throws ApiError
19
+ */
20
+ public getApiOpeniddictApplications(
21
+ id: string,
22
+ ): CancelablePromise<Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto> {
23
+ return this.httpRequest.request({
24
+ method: 'GET',
25
+ url: '/api/openiddict/applications/{id}',
26
+ path: {
27
+ 'id': id,
28
+ },
29
+ errors: {
30
+ 400: `Bad Request`,
31
+ 401: `Unauthorized`,
32
+ 403: `Forbidden`,
33
+ 404: `Not Found`,
34
+ 500: `Server Error`,
35
+ 501: `Server Error`,
36
+ },
37
+ });
38
+ }
39
+ /**
40
+ * @param id
41
+ * @param requestBody
42
+ * @returns Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto Success
43
+ * @throws ApiError
44
+ */
45
+ public putApiOpeniddictApplications(
46
+ id: string,
47
+ requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput,
48
+ ): CancelablePromise<Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto> {
49
+ return this.httpRequest.request({
50
+ method: 'PUT',
51
+ url: '/api/openiddict/applications/{id}',
52
+ path: {
53
+ 'id': id,
54
+ },
55
+ body: requestBody,
56
+ mediaType: 'application/json',
57
+ errors: {
58
+ 400: `Bad Request`,
59
+ 401: `Unauthorized`,
60
+ 403: `Forbidden`,
61
+ 404: `Not Found`,
62
+ 500: `Server Error`,
63
+ 501: `Server Error`,
64
+ },
65
+ });
66
+ }
67
+ /**
68
+ * @param filter
69
+ * @param sorting
70
+ * @param skipCount
71
+ * @param maxResultCount
72
+ * @returns Volo_Abp_Application_Dtos_PagedResultDto_1<Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto_Volo_Abp_OpenIddict_Pro_Application_Contracts_Version_8_0_5_0_Culture_neutral_PublicKeyToken_null_> Success
73
+ * @throws ApiError
74
+ */
75
+ public getApiOpeniddictApplications1(
76
+ filter?: string,
77
+ sorting?: string,
78
+ skipCount?: number,
79
+ maxResultCount?: number,
80
+ ): CancelablePromise<Volo_Abp_Application_Dtos_PagedResultDto_1> {
81
+ return this.httpRequest.request({
82
+ method: 'GET',
83
+ url: '/api/openiddict/applications',
84
+ query: {
85
+ 'Filter': filter,
86
+ 'Sorting': sorting,
87
+ 'SkipCount': skipCount,
88
+ 'MaxResultCount': maxResultCount,
89
+ },
90
+ errors: {
91
+ 400: `Bad Request`,
92
+ 401: `Unauthorized`,
93
+ 403: `Forbidden`,
94
+ 404: `Not Found`,
95
+ 500: `Server Error`,
96
+ 501: `Server Error`,
97
+ },
98
+ });
99
+ }
100
+ /**
101
+ * @param requestBody
102
+ * @returns Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto Success
103
+ * @throws ApiError
104
+ */
105
+ public postApiOpeniddictApplications(
106
+ requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput,
107
+ ): CancelablePromise<Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto> {
108
+ return this.httpRequest.request({
109
+ method: 'POST',
110
+ url: '/api/openiddict/applications',
111
+ body: requestBody,
112
+ mediaType: 'application/json',
113
+ errors: {
114
+ 400: `Bad Request`,
115
+ 401: `Unauthorized`,
116
+ 403: `Forbidden`,
117
+ 404: `Not Found`,
118
+ 500: `Server Error`,
119
+ 501: `Server Error`,
120
+ },
121
+ });
122
+ }
123
+ /**
124
+ * @param id
125
+ * @returns any Success
126
+ * @throws ApiError
127
+ */
128
+ public deleteApiOpeniddictApplications(
129
+ id?: string,
130
+ ): CancelablePromise<any> {
131
+ return this.httpRequest.request({
132
+ method: 'DELETE',
133
+ url: '/api/openiddict/applications',
134
+ query: {
135
+ 'id': id,
136
+ },
137
+ errors: {
138
+ 400: `Bad Request`,
139
+ 401: `Unauthorized`,
140
+ 403: `Forbidden`,
141
+ 404: `Not Found`,
142
+ 500: `Server Error`,
143
+ 501: `Server Error`,
144
+ },
145
+ });
146
+ }
147
+ /**
148
+ * @param id
149
+ * @returns Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto Success
150
+ * @throws ApiError
151
+ */
152
+ public getApiOpeniddictApplicationsTokenLifetime(
153
+ id: string,
154
+ ): CancelablePromise<Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto> {
155
+ return this.httpRequest.request({
156
+ method: 'GET',
157
+ url: '/api/openiddict/applications/{id}/token-lifetime',
158
+ path: {
159
+ 'id': id,
160
+ },
161
+ errors: {
162
+ 400: `Bad Request`,
163
+ 401: `Unauthorized`,
164
+ 403: `Forbidden`,
165
+ 404: `Not Found`,
166
+ 500: `Server Error`,
167
+ 501: `Server Error`,
168
+ },
169
+ });
170
+ }
171
+ /**
172
+ * @param id
173
+ * @param requestBody
174
+ * @returns any Success
175
+ * @throws ApiError
176
+ */
177
+ public putApiOpeniddictApplicationsTokenLifetime(
178
+ id: string,
179
+ requestBody?: Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto,
180
+ ): CancelablePromise<any> {
181
+ return this.httpRequest.request({
182
+ method: 'PUT',
183
+ url: '/api/openiddict/applications/{id}/token-lifetime',
184
+ path: {
185
+ 'id': id,
186
+ },
187
+ body: requestBody,
188
+ mediaType: 'application/json',
189
+ errors: {
190
+ 400: `Bad Request`,
191
+ 401: `Unauthorized`,
192
+ 403: `Forbidden`,
193
+ 404: `Not Found`,
194
+ 500: `Server Error`,
195
+ 501: `Server Error`,
196
+ },
197
+ });
198
+ }
199
+ }