@ayasofyazilim/saas 0.0.101 → 0.0.103

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 (577) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/core/ApiRequestOptions.ts +16 -8
  259. package/CRMService/core/OpenAPI.ts +3 -3
  260. package/CRMService/core/request.ts +14 -5
  261. package/CRMService/index.ts +3 -4
  262. package/CRMService/schemas.gen.ts +52 -0
  263. package/CRMService/sdk.gen.ts +3193 -0
  264. package/CRMService/types.gen.ts +401 -4471
  265. package/ContractService/ContractServiceClient.ts +65 -65
  266. package/ContractService/core/ApiError.ts +20 -20
  267. package/ContractService/core/ApiRequestOptions.ts +12 -12
  268. package/ContractService/core/ApiResult.ts +6 -6
  269. package/ContractService/core/BaseHttpRequest.ts +9 -9
  270. package/ContractService/core/CancelablePromise.ts +125 -125
  271. package/ContractService/core/FetchHttpRequest.ts +21 -21
  272. package/ContractService/core/OpenAPI.ts +55 -55
  273. package/ContractService/core/request.ts +340 -340
  274. package/ContractService/index.ts +8 -8
  275. package/ContractService/schemas.gen.ts +12076 -12076
  276. package/ContractService/services.gen.ts +1882 -1882
  277. package/ContractService/types.gen.ts +4145 -4145
  278. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  279. package/ExportValidationService/core/ApiError.ts +20 -20
  280. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  281. package/ExportValidationService/core/ApiResult.ts +6 -6
  282. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  283. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  284. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  285. package/ExportValidationService/core/OpenAPI.ts +55 -55
  286. package/ExportValidationService/core/request.ts +340 -340
  287. package/ExportValidationService/index.ts +8 -8
  288. package/ExportValidationService/schemas.gen.ts +3998 -3998
  289. package/ExportValidationService/services.gen.ts +260 -260
  290. package/ExportValidationService/types.gen.ts +818 -818
  291. package/FinanceService/FinanceServiceClient.ts +47 -47
  292. package/FinanceService/core/ApiError.ts +20 -20
  293. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  294. package/FinanceService/core/ApiResult.ts +6 -6
  295. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  296. package/FinanceService/core/CancelablePromise.ts +125 -125
  297. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  298. package/FinanceService/core/OpenAPI.ts +55 -55
  299. package/FinanceService/core/request.ts +340 -340
  300. package/FinanceService/index.ts +8 -8
  301. package/FinanceService/schemas.gen.ts +5006 -5006
  302. package/FinanceService/services.gen.ts +339 -339
  303. package/FinanceService/types.gen.ts +1128 -1128
  304. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  305. package/FundraiserService/core/ApiError.ts +20 -20
  306. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  307. package/FundraiserService/core/ApiResult.ts +6 -6
  308. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  309. package/FundraiserService/core/CancelablePromise.ts +125 -125
  310. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  311. package/FundraiserService/core/OpenAPI.ts +55 -55
  312. package/FundraiserService/core/request.ts +340 -340
  313. package/FundraiserService/index.ts +8 -8
  314. package/FundraiserService/schemas.gen.ts +11548 -11548
  315. package/FundraiserService/services.gen.ts +627 -627
  316. package/FundraiserService/types.gen.ts +1793 -1793
  317. package/IdentityService/IdentityServiceClient.ts +86 -86
  318. package/IdentityService/core/ApiError.ts +20 -20
  319. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  320. package/IdentityService/core/ApiResult.ts +6 -6
  321. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  322. package/IdentityService/core/CancelablePromise.ts +125 -125
  323. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  324. package/IdentityService/core/OpenAPI.ts +55 -55
  325. package/IdentityService/core/request.ts +340 -340
  326. package/IdentityService/index.ts +8 -8
  327. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  328. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  329. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  331. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  332. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  336. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  337. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  371. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  381. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  382. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  384. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  385. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  386. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  387. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  388. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  389. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  390. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  399. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  400. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  402. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  403. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  409. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  410. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  411. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  421. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  422. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  423. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  424. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  425. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  432. package/IdentityService/schemas.gen.ts +6928 -6928
  433. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  434. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  435. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  436. package/IdentityService/services/AccountSettingsService.ts +178 -178
  437. package/IdentityService/services/ApplicationsService.ts +199 -199
  438. package/IdentityService/services/ClaimTypeService.ts +149 -149
  439. package/IdentityService/services/ExternalLoginService.ts +27 -27
  440. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  441. package/IdentityService/services/RoleService.ts +269 -269
  442. package/IdentityService/services/ScopesService.ts +164 -164
  443. package/IdentityService/services/SecurityLogService.ts +174 -174
  444. package/IdentityService/services/SettingsService.ts +135 -135
  445. package/IdentityService/services/UserIntegrationService.ts +144 -144
  446. package/IdentityService/services/UserLookupService.ts +120 -120
  447. package/IdentityService/services/UserService.ts +937 -937
  448. package/IdentityService/services.gen.ts +3154 -3154
  449. package/IdentityService/types.gen.ts +5874 -5874
  450. package/LocationService/LocationServiceClient.ts +74 -74
  451. package/LocationService/core/ApiError.ts +20 -20
  452. package/LocationService/core/ApiRequestOptions.ts +12 -12
  453. package/LocationService/core/ApiResult.ts +6 -6
  454. package/LocationService/core/BaseHttpRequest.ts +9 -9
  455. package/LocationService/core/CancelablePromise.ts +125 -125
  456. package/LocationService/core/FetchHttpRequest.ts +21 -21
  457. package/LocationService/core/OpenAPI.ts +55 -55
  458. package/LocationService/core/request.ts +340 -340
  459. package/LocationService/index.ts +8 -8
  460. package/LocationService/schemas.gen.ts +6635 -6635
  461. package/LocationService/services.gen.ts +1797 -1797
  462. package/LocationService/types.gen.ts +3738 -3738
  463. package/MerchantService/MerchantServiceClient.ts +77 -77
  464. package/MerchantService/core/ApiError.ts +20 -20
  465. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  466. package/MerchantService/core/ApiResult.ts +6 -6
  467. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  468. package/MerchantService/core/CancelablePromise.ts +125 -125
  469. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  470. package/MerchantService/core/OpenAPI.ts +55 -55
  471. package/MerchantService/core/request.ts +340 -340
  472. package/MerchantService/index.ts +8 -8
  473. package/MerchantService/schemas.gen.ts +14764 -14764
  474. package/MerchantService/services.gen.ts +1602 -1602
  475. package/MerchantService/types.gen.ts +18875 -18875
  476. package/ProjectService/ProjectServiceClient.ts +47 -47
  477. package/ProjectService/core/ApiError.ts +20 -20
  478. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  479. package/ProjectService/core/ApiResult.ts +6 -6
  480. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  481. package/ProjectService/core/CancelablePromise.ts +125 -125
  482. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  483. package/ProjectService/core/OpenAPI.ts +55 -55
  484. package/ProjectService/core/request.ts +340 -340
  485. package/ProjectService/index.ts +8 -8
  486. package/ProjectService/schemas.gen.ts +5147 -5147
  487. package/ProjectService/services.gen.ts +492 -492
  488. package/ProjectService/types.gen.ts +1303 -1303
  489. package/README.md +40 -39
  490. package/RefundService/RefundServiceClient.ts +44 -44
  491. package/RefundService/core/ApiError.ts +20 -20
  492. package/RefundService/core/ApiRequestOptions.ts +12 -12
  493. package/RefundService/core/ApiResult.ts +6 -6
  494. package/RefundService/core/BaseHttpRequest.ts +9 -9
  495. package/RefundService/core/CancelablePromise.ts +125 -125
  496. package/RefundService/core/FetchHttpRequest.ts +21 -21
  497. package/RefundService/core/OpenAPI.ts +55 -55
  498. package/RefundService/core/request.ts +340 -340
  499. package/RefundService/index.ts +8 -8
  500. package/RefundService/schemas.gen.ts +5237 -5237
  501. package/RefundService/services.gen.ts +347 -347
  502. package/RefundService/types.gen.ts +1042 -1042
  503. package/SaasService/SaasServiceClient.ts +65 -65
  504. package/SaasService/core/ApiError.ts +20 -20
  505. package/SaasService/core/ApiRequestOptions.ts +12 -12
  506. package/SaasService/core/ApiResult.ts +6 -6
  507. package/SaasService/core/BaseHttpRequest.ts +9 -9
  508. package/SaasService/core/CancelablePromise.ts +125 -125
  509. package/SaasService/core/FetchHttpRequest.ts +21 -21
  510. package/SaasService/core/OpenAPI.ts +55 -55
  511. package/SaasService/core/request.ts +340 -340
  512. package/SaasService/index.ts +8 -8
  513. package/SaasService/schemas.gen.ts +5345 -5345
  514. package/SaasService/services.gen.ts +1329 -1329
  515. package/SaasService/types.gen.ts +2737 -2737
  516. package/SettingService/SettingServiceClient.ts +59 -59
  517. package/SettingService/core/ApiError.ts +20 -20
  518. package/SettingService/core/ApiRequestOptions.ts +12 -12
  519. package/SettingService/core/ApiResult.ts +6 -6
  520. package/SettingService/core/BaseHttpRequest.ts +9 -9
  521. package/SettingService/core/CancelablePromise.ts +125 -125
  522. package/SettingService/core/FetchHttpRequest.ts +21 -21
  523. package/SettingService/core/OpenAPI.ts +55 -55
  524. package/SettingService/core/request.ts +340 -340
  525. package/SettingService/index.ts +8 -8
  526. package/SettingService/schemas.gen.ts +5223 -5223
  527. package/SettingService/services.gen.ts +758 -758
  528. package/SettingService/types.gen.ts +1800 -1800
  529. package/TagService/TagServiceClient.ts +47 -47
  530. package/TagService/core/ApiError.ts +20 -20
  531. package/TagService/core/ApiRequestOptions.ts +12 -12
  532. package/TagService/core/ApiResult.ts +6 -6
  533. package/TagService/core/BaseHttpRequest.ts +9 -9
  534. package/TagService/core/CancelablePromise.ts +125 -125
  535. package/TagService/core/FetchHttpRequest.ts +21 -21
  536. package/TagService/core/OpenAPI.ts +55 -55
  537. package/TagService/core/request.ts +340 -340
  538. package/TagService/index.ts +8 -8
  539. package/TagService/schemas.gen.ts +5830 -5830
  540. package/TagService/services.gen.ts +556 -556
  541. package/TagService/types.gen.ts +1487 -1487
  542. package/TravellerService/TravellerServiceClient.ts +59 -59
  543. package/TravellerService/core/ApiError.ts +20 -20
  544. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  545. package/TravellerService/core/ApiResult.ts +6 -6
  546. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  547. package/TravellerService/core/CancelablePromise.ts +125 -125
  548. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  549. package/TravellerService/core/OpenAPI.ts +55 -55
  550. package/TravellerService/core/request.ts +340 -340
  551. package/TravellerService/index.ts +8 -8
  552. package/TravellerService/schemas.gen.ts +6396 -6396
  553. package/TravellerService/services.gen.ts +949 -949
  554. package/TravellerService/types.gen.ts +2220 -2220
  555. package/index.mjs +38 -0
  556. package/package.json +37 -41
  557. package/CRMService/CRMServiceClient.ts +0 -77
  558. package/CRMService/core/BaseHttpRequest.ts +0 -10
  559. package/CRMService/core/FetchHttpRequest.ts +0 -22
  560. package/CRMService/services.gen.ts +0 -3267
  561. package/ProjectService.json +0 -2938
  562. package/generator.mjs +0 -221
  563. package/index.ts +0 -2
  564. package/swagger.json +0 -4795
  565. package/upwithcrowdService/core/ApiError.ts +0 -21
  566. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  567. package/upwithcrowdService/core/ApiResult.ts +0 -7
  568. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  569. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  570. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  571. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  572. package/upwithcrowdService/core/request.ts +0 -341
  573. package/upwithcrowdService/index.ts +0 -9
  574. package/upwithcrowdService/schemas.gen.ts +0 -11974
  575. package/upwithcrowdService/services.gen.ts +0 -6556
  576. package/upwithcrowdService/types.gen.ts +0 -12239
  577. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
package/swagger.json DELETED
@@ -1,4795 +0,0 @@
1
- {
2
- "openapi": "3.0.1",
3
- "info": {
4
- "title": "ProjectService Service API",
5
- "version": "v1"
6
- },
7
- "paths": {
8
- "/api/abp/api-definition": {
9
- "get": {
10
- "tags": [
11
- "AbpApiDefinition"
12
- ],
13
- "parameters": [
14
- {
15
- "name": "IncludeTypes",
16
- "in": "query",
17
- "schema": {
18
- "type": "boolean"
19
- }
20
- }
21
- ],
22
- "responses": {
23
- "200": {
24
- "description": "Success",
25
- "content": {
26
- "text/plain": {
27
- "schema": {
28
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
29
- }
30
- },
31
- "application/json": {
32
- "schema": {
33
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
34
- }
35
- },
36
- "text/json": {
37
- "schema": {
38
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel"
39
- }
40
- }
41
- }
42
- },
43
- "403": {
44
- "description": "Forbidden",
45
- "content": {
46
- "text/plain": {
47
- "schema": {
48
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
49
- }
50
- },
51
- "application/json": {
52
- "schema": {
53
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
54
- }
55
- },
56
- "text/json": {
57
- "schema": {
58
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
59
- }
60
- }
61
- }
62
- },
63
- "401": {
64
- "description": "Unauthorized",
65
- "content": {
66
- "text/plain": {
67
- "schema": {
68
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
69
- }
70
- },
71
- "application/json": {
72
- "schema": {
73
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
74
- }
75
- },
76
- "text/json": {
77
- "schema": {
78
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
79
- }
80
- }
81
- }
82
- },
83
- "400": {
84
- "description": "Bad Request",
85
- "content": {
86
- "text/plain": {
87
- "schema": {
88
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
89
- }
90
- },
91
- "application/json": {
92
- "schema": {
93
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
94
- }
95
- },
96
- "text/json": {
97
- "schema": {
98
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
99
- }
100
- }
101
- }
102
- },
103
- "404": {
104
- "description": "Not Found",
105
- "content": {
106
- "text/plain": {
107
- "schema": {
108
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
109
- }
110
- },
111
- "application/json": {
112
- "schema": {
113
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
114
- }
115
- },
116
- "text/json": {
117
- "schema": {
118
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
119
- }
120
- }
121
- }
122
- },
123
- "501": {
124
- "description": "Server Error",
125
- "content": {
126
- "text/plain": {
127
- "schema": {
128
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
129
- }
130
- },
131
- "application/json": {
132
- "schema": {
133
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
134
- }
135
- },
136
- "text/json": {
137
- "schema": {
138
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
139
- }
140
- }
141
- }
142
- },
143
- "500": {
144
- "description": "Server Error",
145
- "content": {
146
- "text/plain": {
147
- "schema": {
148
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
149
- }
150
- },
151
- "application/json": {
152
- "schema": {
153
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
154
- }
155
- },
156
- "text/json": {
157
- "schema": {
158
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
159
- }
160
- }
161
- }
162
- }
163
- }
164
- }
165
- },
166
- "/api/abp/application-configuration": {
167
- "get": {
168
- "tags": [
169
- "AbpApplicationConfiguration"
170
- ],
171
- "parameters": [
172
- {
173
- "name": "IncludeLocalizationResources",
174
- "in": "query",
175
- "schema": {
176
- "type": "boolean"
177
- }
178
- }
179
- ],
180
- "responses": {
181
- "200": {
182
- "description": "Success",
183
- "content": {
184
- "text/plain": {
185
- "schema": {
186
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
187
- }
188
- },
189
- "application/json": {
190
- "schema": {
191
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
192
- }
193
- },
194
- "text/json": {
195
- "schema": {
196
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto"
197
- }
198
- }
199
- }
200
- },
201
- "403": {
202
- "description": "Forbidden",
203
- "content": {
204
- "text/plain": {
205
- "schema": {
206
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
207
- }
208
- },
209
- "application/json": {
210
- "schema": {
211
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
212
- }
213
- },
214
- "text/json": {
215
- "schema": {
216
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
217
- }
218
- }
219
- }
220
- },
221
- "401": {
222
- "description": "Unauthorized",
223
- "content": {
224
- "text/plain": {
225
- "schema": {
226
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
227
- }
228
- },
229
- "application/json": {
230
- "schema": {
231
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
232
- }
233
- },
234
- "text/json": {
235
- "schema": {
236
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
237
- }
238
- }
239
- }
240
- },
241
- "400": {
242
- "description": "Bad Request",
243
- "content": {
244
- "text/plain": {
245
- "schema": {
246
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
247
- }
248
- },
249
- "application/json": {
250
- "schema": {
251
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
252
- }
253
- },
254
- "text/json": {
255
- "schema": {
256
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
257
- }
258
- }
259
- }
260
- },
261
- "404": {
262
- "description": "Not Found",
263
- "content": {
264
- "text/plain": {
265
- "schema": {
266
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
267
- }
268
- },
269
- "application/json": {
270
- "schema": {
271
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
272
- }
273
- },
274
- "text/json": {
275
- "schema": {
276
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
277
- }
278
- }
279
- }
280
- },
281
- "501": {
282
- "description": "Server Error",
283
- "content": {
284
- "text/plain": {
285
- "schema": {
286
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
287
- }
288
- },
289
- "application/json": {
290
- "schema": {
291
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
292
- }
293
- },
294
- "text/json": {
295
- "schema": {
296
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
297
- }
298
- }
299
- }
300
- },
301
- "500": {
302
- "description": "Server Error",
303
- "content": {
304
- "text/plain": {
305
- "schema": {
306
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
307
- }
308
- },
309
- "application/json": {
310
- "schema": {
311
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
312
- }
313
- },
314
- "text/json": {
315
- "schema": {
316
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
317
- }
318
- }
319
- }
320
- }
321
- }
322
- }
323
- },
324
- "/api/abp/application-localization": {
325
- "get": {
326
- "tags": [
327
- "AbpApplicationLocalization"
328
- ],
329
- "parameters": [
330
- {
331
- "name": "CultureName",
332
- "in": "query",
333
- "required": true,
334
- "schema": {
335
- "type": "string"
336
- }
337
- },
338
- {
339
- "name": "OnlyDynamics",
340
- "in": "query",
341
- "schema": {
342
- "type": "boolean"
343
- }
344
- }
345
- ],
346
- "responses": {
347
- "200": {
348
- "description": "Success",
349
- "content": {
350
- "text/plain": {
351
- "schema": {
352
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
353
- }
354
- },
355
- "application/json": {
356
- "schema": {
357
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
358
- }
359
- },
360
- "text/json": {
361
- "schema": {
362
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto"
363
- }
364
- }
365
- }
366
- },
367
- "403": {
368
- "description": "Forbidden",
369
- "content": {
370
- "text/plain": {
371
- "schema": {
372
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
373
- }
374
- },
375
- "application/json": {
376
- "schema": {
377
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
378
- }
379
- },
380
- "text/json": {
381
- "schema": {
382
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
383
- }
384
- }
385
- }
386
- },
387
- "401": {
388
- "description": "Unauthorized",
389
- "content": {
390
- "text/plain": {
391
- "schema": {
392
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
393
- }
394
- },
395
- "application/json": {
396
- "schema": {
397
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
398
- }
399
- },
400
- "text/json": {
401
- "schema": {
402
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
403
- }
404
- }
405
- }
406
- },
407
- "400": {
408
- "description": "Bad Request",
409
- "content": {
410
- "text/plain": {
411
- "schema": {
412
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
413
- }
414
- },
415
- "application/json": {
416
- "schema": {
417
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
418
- }
419
- },
420
- "text/json": {
421
- "schema": {
422
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
423
- }
424
- }
425
- }
426
- },
427
- "404": {
428
- "description": "Not Found",
429
- "content": {
430
- "text/plain": {
431
- "schema": {
432
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
433
- }
434
- },
435
- "application/json": {
436
- "schema": {
437
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
438
- }
439
- },
440
- "text/json": {
441
- "schema": {
442
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
443
- }
444
- }
445
- }
446
- },
447
- "501": {
448
- "description": "Server Error",
449
- "content": {
450
- "text/plain": {
451
- "schema": {
452
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
453
- }
454
- },
455
- "application/json": {
456
- "schema": {
457
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
458
- }
459
- },
460
- "text/json": {
461
- "schema": {
462
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
463
- }
464
- }
465
- }
466
- },
467
- "500": {
468
- "description": "Server Error",
469
- "content": {
470
- "text/plain": {
471
- "schema": {
472
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
473
- }
474
- },
475
- "application/json": {
476
- "schema": {
477
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
478
- }
479
- },
480
- "text/json": {
481
- "schema": {
482
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
483
- }
484
- }
485
- }
486
- }
487
- }
488
- }
489
- },
490
- "/api/project-service/projects": {
491
- "post": {
492
- "tags": [
493
- "Project"
494
- ],
495
- "requestBody": {
496
- "content": {
497
- "application/json": {
498
- "schema": {
499
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.CreateProjectDto"
500
- }
501
- },
502
- "text/json": {
503
- "schema": {
504
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.CreateProjectDto"
505
- }
506
- },
507
- "application/*+json": {
508
- "schema": {
509
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.CreateProjectDto"
510
- }
511
- }
512
- }
513
- },
514
- "responses": {
515
- "200": {
516
- "description": "Success",
517
- "content": {
518
- "text/plain": {
519
- "schema": {
520
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
521
- }
522
- },
523
- "application/json": {
524
- "schema": {
525
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
526
- }
527
- },
528
- "text/json": {
529
- "schema": {
530
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
531
- }
532
- }
533
- }
534
- },
535
- "403": {
536
- "description": "Forbidden",
537
- "content": {
538
- "text/plain": {
539
- "schema": {
540
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
541
- }
542
- },
543
- "application/json": {
544
- "schema": {
545
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
546
- }
547
- },
548
- "text/json": {
549
- "schema": {
550
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
551
- }
552
- }
553
- }
554
- },
555
- "401": {
556
- "description": "Unauthorized",
557
- "content": {
558
- "text/plain": {
559
- "schema": {
560
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
561
- }
562
- },
563
- "application/json": {
564
- "schema": {
565
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
566
- }
567
- },
568
- "text/json": {
569
- "schema": {
570
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
571
- }
572
- }
573
- }
574
- },
575
- "400": {
576
- "description": "Bad Request",
577
- "content": {
578
- "text/plain": {
579
- "schema": {
580
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
581
- }
582
- },
583
- "application/json": {
584
- "schema": {
585
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
586
- }
587
- },
588
- "text/json": {
589
- "schema": {
590
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
591
- }
592
- }
593
- }
594
- },
595
- "404": {
596
- "description": "Not Found",
597
- "content": {
598
- "text/plain": {
599
- "schema": {
600
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
601
- }
602
- },
603
- "application/json": {
604
- "schema": {
605
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
606
- }
607
- },
608
- "text/json": {
609
- "schema": {
610
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
611
- }
612
- }
613
- }
614
- },
615
- "501": {
616
- "description": "Server Error",
617
- "content": {
618
- "text/plain": {
619
- "schema": {
620
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
621
- }
622
- },
623
- "application/json": {
624
- "schema": {
625
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
626
- }
627
- },
628
- "text/json": {
629
- "schema": {
630
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
631
- }
632
- }
633
- }
634
- },
635
- "500": {
636
- "description": "Server Error",
637
- "content": {
638
- "text/plain": {
639
- "schema": {
640
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
641
- }
642
- },
643
- "application/json": {
644
- "schema": {
645
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
646
- }
647
- },
648
- "text/json": {
649
- "schema": {
650
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
651
- }
652
- }
653
- }
654
- }
655
- }
656
- },
657
- "get": {
658
- "tags": [
659
- "Project"
660
- ],
661
- "parameters": [
662
- {
663
- "name": "Name",
664
- "in": "query",
665
- "schema": {
666
- "type": "string"
667
- }
668
- },
669
- {
670
- "name": "EndDate",
671
- "in": "query",
672
- "schema": {
673
- "type": "string",
674
- "format": "date-time"
675
- }
676
- },
677
- {
678
- "name": "Sorting",
679
- "in": "query",
680
- "schema": {
681
- "type": "string"
682
- }
683
- },
684
- {
685
- "name": "SkipCount",
686
- "in": "query",
687
- "schema": {
688
- "maximum": 2147483647,
689
- "minimum": 0,
690
- "type": "integer",
691
- "format": "int32"
692
- }
693
- },
694
- {
695
- "name": "MaxResultCount",
696
- "in": "query",
697
- "schema": {
698
- "maximum": 2147483647,
699
- "minimum": 1,
700
- "type": "integer",
701
- "format": "int32"
702
- }
703
- }
704
- ],
705
- "responses": {
706
- "200": {
707
- "description": "Success",
708
- "content": {
709
- "text/plain": {
710
- "schema": {
711
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectPagedResultDto"
712
- }
713
- },
714
- "application/json": {
715
- "schema": {
716
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectPagedResultDto"
717
- }
718
- },
719
- "text/json": {
720
- "schema": {
721
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectPagedResultDto"
722
- }
723
- }
724
- }
725
- },
726
- "403": {
727
- "description": "Forbidden",
728
- "content": {
729
- "text/plain": {
730
- "schema": {
731
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
732
- }
733
- },
734
- "application/json": {
735
- "schema": {
736
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
737
- }
738
- },
739
- "text/json": {
740
- "schema": {
741
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
742
- }
743
- }
744
- }
745
- },
746
- "401": {
747
- "description": "Unauthorized",
748
- "content": {
749
- "text/plain": {
750
- "schema": {
751
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
752
- }
753
- },
754
- "application/json": {
755
- "schema": {
756
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
757
- }
758
- },
759
- "text/json": {
760
- "schema": {
761
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
762
- }
763
- }
764
- }
765
- },
766
- "400": {
767
- "description": "Bad Request",
768
- "content": {
769
- "text/plain": {
770
- "schema": {
771
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
772
- }
773
- },
774
- "application/json": {
775
- "schema": {
776
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
777
- }
778
- },
779
- "text/json": {
780
- "schema": {
781
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
782
- }
783
- }
784
- }
785
- },
786
- "404": {
787
- "description": "Not Found",
788
- "content": {
789
- "text/plain": {
790
- "schema": {
791
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
792
- }
793
- },
794
- "application/json": {
795
- "schema": {
796
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
797
- }
798
- },
799
- "text/json": {
800
- "schema": {
801
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
802
- }
803
- }
804
- }
805
- },
806
- "501": {
807
- "description": "Server Error",
808
- "content": {
809
- "text/plain": {
810
- "schema": {
811
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
812
- }
813
- },
814
- "application/json": {
815
- "schema": {
816
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
817
- }
818
- },
819
- "text/json": {
820
- "schema": {
821
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
822
- }
823
- }
824
- }
825
- },
826
- "500": {
827
- "description": "Server Error",
828
- "content": {
829
- "text/plain": {
830
- "schema": {
831
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
832
- }
833
- },
834
- "application/json": {
835
- "schema": {
836
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
837
- }
838
- },
839
- "text/json": {
840
- "schema": {
841
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
842
- }
843
- }
844
- }
845
- }
846
- }
847
- }
848
- },
849
- "/api/project-service/projects/{id}": {
850
- "delete": {
851
- "tags": [
852
- "Project"
853
- ],
854
- "parameters": [
855
- {
856
- "name": "id",
857
- "in": "path",
858
- "required": true,
859
- "schema": {
860
- "type": "string",
861
- "format": "uuid"
862
- }
863
- }
864
- ],
865
- "responses": {
866
- "200": {
867
- "description": "Success"
868
- },
869
- "403": {
870
- "description": "Forbidden",
871
- "content": {
872
- "text/plain": {
873
- "schema": {
874
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
875
- }
876
- },
877
- "application/json": {
878
- "schema": {
879
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
880
- }
881
- },
882
- "text/json": {
883
- "schema": {
884
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
885
- }
886
- }
887
- }
888
- },
889
- "401": {
890
- "description": "Unauthorized",
891
- "content": {
892
- "text/plain": {
893
- "schema": {
894
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
895
- }
896
- },
897
- "application/json": {
898
- "schema": {
899
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
900
- }
901
- },
902
- "text/json": {
903
- "schema": {
904
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
905
- }
906
- }
907
- }
908
- },
909
- "400": {
910
- "description": "Bad Request",
911
- "content": {
912
- "text/plain": {
913
- "schema": {
914
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
915
- }
916
- },
917
- "application/json": {
918
- "schema": {
919
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
920
- }
921
- },
922
- "text/json": {
923
- "schema": {
924
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
925
- }
926
- }
927
- }
928
- },
929
- "404": {
930
- "description": "Not Found",
931
- "content": {
932
- "text/plain": {
933
- "schema": {
934
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
935
- }
936
- },
937
- "application/json": {
938
- "schema": {
939
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
940
- }
941
- },
942
- "text/json": {
943
- "schema": {
944
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
945
- }
946
- }
947
- }
948
- },
949
- "501": {
950
- "description": "Server Error",
951
- "content": {
952
- "text/plain": {
953
- "schema": {
954
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
955
- }
956
- },
957
- "application/json": {
958
- "schema": {
959
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
960
- }
961
- },
962
- "text/json": {
963
- "schema": {
964
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
965
- }
966
- }
967
- }
968
- },
969
- "500": {
970
- "description": "Server Error",
971
- "content": {
972
- "text/plain": {
973
- "schema": {
974
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
975
- }
976
- },
977
- "application/json": {
978
- "schema": {
979
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
980
- }
981
- },
982
- "text/json": {
983
- "schema": {
984
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
985
- }
986
- }
987
- }
988
- }
989
- }
990
- },
991
- "get": {
992
- "tags": [
993
- "Project"
994
- ],
995
- "parameters": [
996
- {
997
- "name": "id",
998
- "in": "path",
999
- "required": true,
1000
- "schema": {
1001
- "type": "string",
1002
- "format": "uuid"
1003
- }
1004
- }
1005
- ],
1006
- "responses": {
1007
- "200": {
1008
- "description": "Success",
1009
- "content": {
1010
- "text/plain": {
1011
- "schema": {
1012
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1013
- }
1014
- },
1015
- "application/json": {
1016
- "schema": {
1017
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1018
- }
1019
- },
1020
- "text/json": {
1021
- "schema": {
1022
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1023
- }
1024
- }
1025
- }
1026
- },
1027
- "403": {
1028
- "description": "Forbidden",
1029
- "content": {
1030
- "text/plain": {
1031
- "schema": {
1032
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1033
- }
1034
- },
1035
- "application/json": {
1036
- "schema": {
1037
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1038
- }
1039
- },
1040
- "text/json": {
1041
- "schema": {
1042
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1043
- }
1044
- }
1045
- }
1046
- },
1047
- "401": {
1048
- "description": "Unauthorized",
1049
- "content": {
1050
- "text/plain": {
1051
- "schema": {
1052
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1053
- }
1054
- },
1055
- "application/json": {
1056
- "schema": {
1057
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1058
- }
1059
- },
1060
- "text/json": {
1061
- "schema": {
1062
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1063
- }
1064
- }
1065
- }
1066
- },
1067
- "400": {
1068
- "description": "Bad Request",
1069
- "content": {
1070
- "text/plain": {
1071
- "schema": {
1072
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1073
- }
1074
- },
1075
- "application/json": {
1076
- "schema": {
1077
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1078
- }
1079
- },
1080
- "text/json": {
1081
- "schema": {
1082
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1083
- }
1084
- }
1085
- }
1086
- },
1087
- "404": {
1088
- "description": "Not Found",
1089
- "content": {
1090
- "text/plain": {
1091
- "schema": {
1092
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1093
- }
1094
- },
1095
- "application/json": {
1096
- "schema": {
1097
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1098
- }
1099
- },
1100
- "text/json": {
1101
- "schema": {
1102
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1103
- }
1104
- }
1105
- }
1106
- },
1107
- "501": {
1108
- "description": "Server Error",
1109
- "content": {
1110
- "text/plain": {
1111
- "schema": {
1112
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1113
- }
1114
- },
1115
- "application/json": {
1116
- "schema": {
1117
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1118
- }
1119
- },
1120
- "text/json": {
1121
- "schema": {
1122
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1123
- }
1124
- }
1125
- }
1126
- },
1127
- "500": {
1128
- "description": "Server Error",
1129
- "content": {
1130
- "text/plain": {
1131
- "schema": {
1132
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1133
- }
1134
- },
1135
- "application/json": {
1136
- "schema": {
1137
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1138
- }
1139
- },
1140
- "text/json": {
1141
- "schema": {
1142
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1143
- }
1144
- }
1145
- }
1146
- }
1147
- }
1148
- },
1149
- "put": {
1150
- "tags": [
1151
- "Project"
1152
- ],
1153
- "parameters": [
1154
- {
1155
- "name": "id",
1156
- "in": "path",
1157
- "required": true,
1158
- "schema": {
1159
- "type": "string",
1160
- "format": "uuid"
1161
- }
1162
- }
1163
- ],
1164
- "requestBody": {
1165
- "content": {
1166
- "application/json": {
1167
- "schema": {
1168
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.UpdateProjectDto"
1169
- }
1170
- },
1171
- "text/json": {
1172
- "schema": {
1173
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.UpdateProjectDto"
1174
- }
1175
- },
1176
- "application/*+json": {
1177
- "schema": {
1178
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectsDto.UpdateProjectDto"
1179
- }
1180
- }
1181
- }
1182
- },
1183
- "responses": {
1184
- "200": {
1185
- "description": "Success",
1186
- "content": {
1187
- "text/plain": {
1188
- "schema": {
1189
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1190
- }
1191
- },
1192
- "application/json": {
1193
- "schema": {
1194
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1195
- }
1196
- },
1197
- "text/json": {
1198
- "schema": {
1199
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
1200
- }
1201
- }
1202
- }
1203
- },
1204
- "403": {
1205
- "description": "Forbidden",
1206
- "content": {
1207
- "text/plain": {
1208
- "schema": {
1209
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1210
- }
1211
- },
1212
- "application/json": {
1213
- "schema": {
1214
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1215
- }
1216
- },
1217
- "text/json": {
1218
- "schema": {
1219
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1220
- }
1221
- }
1222
- }
1223
- },
1224
- "401": {
1225
- "description": "Unauthorized",
1226
- "content": {
1227
- "text/plain": {
1228
- "schema": {
1229
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1230
- }
1231
- },
1232
- "application/json": {
1233
- "schema": {
1234
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1235
- }
1236
- },
1237
- "text/json": {
1238
- "schema": {
1239
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1240
- }
1241
- }
1242
- }
1243
- },
1244
- "400": {
1245
- "description": "Bad Request",
1246
- "content": {
1247
- "text/plain": {
1248
- "schema": {
1249
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1250
- }
1251
- },
1252
- "application/json": {
1253
- "schema": {
1254
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1255
- }
1256
- },
1257
- "text/json": {
1258
- "schema": {
1259
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1260
- }
1261
- }
1262
- }
1263
- },
1264
- "404": {
1265
- "description": "Not Found",
1266
- "content": {
1267
- "text/plain": {
1268
- "schema": {
1269
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1270
- }
1271
- },
1272
- "application/json": {
1273
- "schema": {
1274
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1275
- }
1276
- },
1277
- "text/json": {
1278
- "schema": {
1279
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1280
- }
1281
- }
1282
- }
1283
- },
1284
- "501": {
1285
- "description": "Server Error",
1286
- "content": {
1287
- "text/plain": {
1288
- "schema": {
1289
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1290
- }
1291
- },
1292
- "application/json": {
1293
- "schema": {
1294
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1295
- }
1296
- },
1297
- "text/json": {
1298
- "schema": {
1299
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1300
- }
1301
- }
1302
- }
1303
- },
1304
- "500": {
1305
- "description": "Server Error",
1306
- "content": {
1307
- "text/plain": {
1308
- "schema": {
1309
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1310
- }
1311
- },
1312
- "application/json": {
1313
- "schema": {
1314
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1315
- }
1316
- },
1317
- "text/json": {
1318
- "schema": {
1319
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1320
- }
1321
- }
1322
- }
1323
- }
1324
- }
1325
- }
1326
- },
1327
- "/api/ProjectSectionService/projectSection": {
1328
- "post": {
1329
- "tags": [
1330
- "ProjectSection"
1331
- ],
1332
- "requestBody": {
1333
- "content": {
1334
- "application/json": {
1335
- "schema": {
1336
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.CreateProjectSectionDto"
1337
- }
1338
- },
1339
- "text/json": {
1340
- "schema": {
1341
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.CreateProjectSectionDto"
1342
- }
1343
- },
1344
- "application/*+json": {
1345
- "schema": {
1346
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.CreateProjectSectionDto"
1347
- }
1348
- }
1349
- }
1350
- },
1351
- "responses": {
1352
- "200": {
1353
- "description": "Success",
1354
- "content": {
1355
- "text/plain": {
1356
- "schema": {
1357
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1358
- }
1359
- },
1360
- "application/json": {
1361
- "schema": {
1362
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1363
- }
1364
- },
1365
- "text/json": {
1366
- "schema": {
1367
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1368
- }
1369
- }
1370
- }
1371
- },
1372
- "403": {
1373
- "description": "Forbidden",
1374
- "content": {
1375
- "text/plain": {
1376
- "schema": {
1377
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1378
- }
1379
- },
1380
- "application/json": {
1381
- "schema": {
1382
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1383
- }
1384
- },
1385
- "text/json": {
1386
- "schema": {
1387
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1388
- }
1389
- }
1390
- }
1391
- },
1392
- "401": {
1393
- "description": "Unauthorized",
1394
- "content": {
1395
- "text/plain": {
1396
- "schema": {
1397
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1398
- }
1399
- },
1400
- "application/json": {
1401
- "schema": {
1402
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1403
- }
1404
- },
1405
- "text/json": {
1406
- "schema": {
1407
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1408
- }
1409
- }
1410
- }
1411
- },
1412
- "400": {
1413
- "description": "Bad Request",
1414
- "content": {
1415
- "text/plain": {
1416
- "schema": {
1417
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1418
- }
1419
- },
1420
- "application/json": {
1421
- "schema": {
1422
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1423
- }
1424
- },
1425
- "text/json": {
1426
- "schema": {
1427
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1428
- }
1429
- }
1430
- }
1431
- },
1432
- "404": {
1433
- "description": "Not Found",
1434
- "content": {
1435
- "text/plain": {
1436
- "schema": {
1437
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1438
- }
1439
- },
1440
- "application/json": {
1441
- "schema": {
1442
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1443
- }
1444
- },
1445
- "text/json": {
1446
- "schema": {
1447
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1448
- }
1449
- }
1450
- }
1451
- },
1452
- "501": {
1453
- "description": "Server Error",
1454
- "content": {
1455
- "text/plain": {
1456
- "schema": {
1457
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1458
- }
1459
- },
1460
- "application/json": {
1461
- "schema": {
1462
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1463
- }
1464
- },
1465
- "text/json": {
1466
- "schema": {
1467
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1468
- }
1469
- }
1470
- }
1471
- },
1472
- "500": {
1473
- "description": "Server Error",
1474
- "content": {
1475
- "text/plain": {
1476
- "schema": {
1477
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1478
- }
1479
- },
1480
- "application/json": {
1481
- "schema": {
1482
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1483
- }
1484
- },
1485
- "text/json": {
1486
- "schema": {
1487
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1488
- }
1489
- }
1490
- }
1491
- }
1492
- }
1493
- },
1494
- "delete": {
1495
- "tags": [
1496
- "ProjectSection"
1497
- ],
1498
- "parameters": [
1499
- {
1500
- "name": "id",
1501
- "in": "query",
1502
- "schema": {
1503
- "type": "string",
1504
- "format": "uuid"
1505
- }
1506
- }
1507
- ],
1508
- "responses": {
1509
- "200": {
1510
- "description": "Success"
1511
- },
1512
- "403": {
1513
- "description": "Forbidden",
1514
- "content": {
1515
- "text/plain": {
1516
- "schema": {
1517
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1518
- }
1519
- },
1520
- "application/json": {
1521
- "schema": {
1522
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1523
- }
1524
- },
1525
- "text/json": {
1526
- "schema": {
1527
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1528
- }
1529
- }
1530
- }
1531
- },
1532
- "401": {
1533
- "description": "Unauthorized",
1534
- "content": {
1535
- "text/plain": {
1536
- "schema": {
1537
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1538
- }
1539
- },
1540
- "application/json": {
1541
- "schema": {
1542
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1543
- }
1544
- },
1545
- "text/json": {
1546
- "schema": {
1547
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1548
- }
1549
- }
1550
- }
1551
- },
1552
- "400": {
1553
- "description": "Bad Request",
1554
- "content": {
1555
- "text/plain": {
1556
- "schema": {
1557
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1558
- }
1559
- },
1560
- "application/json": {
1561
- "schema": {
1562
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1563
- }
1564
- },
1565
- "text/json": {
1566
- "schema": {
1567
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1568
- }
1569
- }
1570
- }
1571
- },
1572
- "404": {
1573
- "description": "Not Found",
1574
- "content": {
1575
- "text/plain": {
1576
- "schema": {
1577
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1578
- }
1579
- },
1580
- "application/json": {
1581
- "schema": {
1582
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1583
- }
1584
- },
1585
- "text/json": {
1586
- "schema": {
1587
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1588
- }
1589
- }
1590
- }
1591
- },
1592
- "501": {
1593
- "description": "Server Error",
1594
- "content": {
1595
- "text/plain": {
1596
- "schema": {
1597
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1598
- }
1599
- },
1600
- "application/json": {
1601
- "schema": {
1602
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1603
- }
1604
- },
1605
- "text/json": {
1606
- "schema": {
1607
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1608
- }
1609
- }
1610
- }
1611
- },
1612
- "500": {
1613
- "description": "Server Error",
1614
- "content": {
1615
- "text/plain": {
1616
- "schema": {
1617
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1618
- }
1619
- },
1620
- "application/json": {
1621
- "schema": {
1622
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1623
- }
1624
- },
1625
- "text/json": {
1626
- "schema": {
1627
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1628
- }
1629
- }
1630
- }
1631
- }
1632
- }
1633
- },
1634
- "get": {
1635
- "tags": [
1636
- "ProjectSection"
1637
- ],
1638
- "parameters": [
1639
- {
1640
- "name": "Sorting",
1641
- "in": "query",
1642
- "schema": {
1643
- "type": "string"
1644
- }
1645
- },
1646
- {
1647
- "name": "SkipCount",
1648
- "in": "query",
1649
- "schema": {
1650
- "maximum": 2147483647,
1651
- "minimum": 0,
1652
- "type": "integer",
1653
- "format": "int32"
1654
- }
1655
- },
1656
- {
1657
- "name": "MaxResultCount",
1658
- "in": "query",
1659
- "schema": {
1660
- "maximum": 2147483647,
1661
- "minimum": 1,
1662
- "type": "integer",
1663
- "format": "int32"
1664
- }
1665
- }
1666
- ],
1667
- "responses": {
1668
- "200": {
1669
- "description": "Success",
1670
- "content": {
1671
- "text/plain": {
1672
- "schema": {
1673
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
1674
- }
1675
- },
1676
- "application/json": {
1677
- "schema": {
1678
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
1679
- }
1680
- },
1681
- "text/json": {
1682
- "schema": {
1683
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
1684
- }
1685
- }
1686
- }
1687
- },
1688
- "403": {
1689
- "description": "Forbidden",
1690
- "content": {
1691
- "text/plain": {
1692
- "schema": {
1693
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1694
- }
1695
- },
1696
- "application/json": {
1697
- "schema": {
1698
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1699
- }
1700
- },
1701
- "text/json": {
1702
- "schema": {
1703
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1704
- }
1705
- }
1706
- }
1707
- },
1708
- "401": {
1709
- "description": "Unauthorized",
1710
- "content": {
1711
- "text/plain": {
1712
- "schema": {
1713
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1714
- }
1715
- },
1716
- "application/json": {
1717
- "schema": {
1718
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1719
- }
1720
- },
1721
- "text/json": {
1722
- "schema": {
1723
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1724
- }
1725
- }
1726
- }
1727
- },
1728
- "400": {
1729
- "description": "Bad Request",
1730
- "content": {
1731
- "text/plain": {
1732
- "schema": {
1733
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1734
- }
1735
- },
1736
- "application/json": {
1737
- "schema": {
1738
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1739
- }
1740
- },
1741
- "text/json": {
1742
- "schema": {
1743
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1744
- }
1745
- }
1746
- }
1747
- },
1748
- "404": {
1749
- "description": "Not Found",
1750
- "content": {
1751
- "text/plain": {
1752
- "schema": {
1753
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1754
- }
1755
- },
1756
- "application/json": {
1757
- "schema": {
1758
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1759
- }
1760
- },
1761
- "text/json": {
1762
- "schema": {
1763
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1764
- }
1765
- }
1766
- }
1767
- },
1768
- "501": {
1769
- "description": "Server Error",
1770
- "content": {
1771
- "text/plain": {
1772
- "schema": {
1773
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1774
- }
1775
- },
1776
- "application/json": {
1777
- "schema": {
1778
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1779
- }
1780
- },
1781
- "text/json": {
1782
- "schema": {
1783
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1784
- }
1785
- }
1786
- }
1787
- },
1788
- "500": {
1789
- "description": "Server Error",
1790
- "content": {
1791
- "text/plain": {
1792
- "schema": {
1793
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1794
- }
1795
- },
1796
- "application/json": {
1797
- "schema": {
1798
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1799
- }
1800
- },
1801
- "text/json": {
1802
- "schema": {
1803
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1804
- }
1805
- }
1806
- }
1807
- }
1808
- }
1809
- },
1810
- "put": {
1811
- "tags": [
1812
- "ProjectSection"
1813
- ],
1814
- "parameters": [
1815
- {
1816
- "name": "id",
1817
- "in": "query",
1818
- "schema": {
1819
- "type": "string",
1820
- "format": "uuid"
1821
- }
1822
- }
1823
- ],
1824
- "requestBody": {
1825
- "content": {
1826
- "application/json": {
1827
- "schema": {
1828
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.UpdateProjectSectionDto"
1829
- }
1830
- },
1831
- "text/json": {
1832
- "schema": {
1833
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.UpdateProjectSectionDto"
1834
- }
1835
- },
1836
- "application/*+json": {
1837
- "schema": {
1838
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.UpdateProjectSectionDto"
1839
- }
1840
- }
1841
- }
1842
- },
1843
- "responses": {
1844
- "200": {
1845
- "description": "Success",
1846
- "content": {
1847
- "text/plain": {
1848
- "schema": {
1849
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1850
- }
1851
- },
1852
- "application/json": {
1853
- "schema": {
1854
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1855
- }
1856
- },
1857
- "text/json": {
1858
- "schema": {
1859
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
1860
- }
1861
- }
1862
- }
1863
- },
1864
- "403": {
1865
- "description": "Forbidden",
1866
- "content": {
1867
- "text/plain": {
1868
- "schema": {
1869
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1870
- }
1871
- },
1872
- "application/json": {
1873
- "schema": {
1874
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1875
- }
1876
- },
1877
- "text/json": {
1878
- "schema": {
1879
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1880
- }
1881
- }
1882
- }
1883
- },
1884
- "401": {
1885
- "description": "Unauthorized",
1886
- "content": {
1887
- "text/plain": {
1888
- "schema": {
1889
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1890
- }
1891
- },
1892
- "application/json": {
1893
- "schema": {
1894
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1895
- }
1896
- },
1897
- "text/json": {
1898
- "schema": {
1899
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1900
- }
1901
- }
1902
- }
1903
- },
1904
- "400": {
1905
- "description": "Bad Request",
1906
- "content": {
1907
- "text/plain": {
1908
- "schema": {
1909
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1910
- }
1911
- },
1912
- "application/json": {
1913
- "schema": {
1914
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1915
- }
1916
- },
1917
- "text/json": {
1918
- "schema": {
1919
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1920
- }
1921
- }
1922
- }
1923
- },
1924
- "404": {
1925
- "description": "Not Found",
1926
- "content": {
1927
- "text/plain": {
1928
- "schema": {
1929
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1930
- }
1931
- },
1932
- "application/json": {
1933
- "schema": {
1934
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1935
- }
1936
- },
1937
- "text/json": {
1938
- "schema": {
1939
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1940
- }
1941
- }
1942
- }
1943
- },
1944
- "501": {
1945
- "description": "Server Error",
1946
- "content": {
1947
- "text/plain": {
1948
- "schema": {
1949
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1950
- }
1951
- },
1952
- "application/json": {
1953
- "schema": {
1954
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1955
- }
1956
- },
1957
- "text/json": {
1958
- "schema": {
1959
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1960
- }
1961
- }
1962
- }
1963
- },
1964
- "500": {
1965
- "description": "Server Error",
1966
- "content": {
1967
- "text/plain": {
1968
- "schema": {
1969
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1970
- }
1971
- },
1972
- "application/json": {
1973
- "schema": {
1974
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1975
- }
1976
- },
1977
- "text/json": {
1978
- "schema": {
1979
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1980
- }
1981
- }
1982
- }
1983
- }
1984
- }
1985
- }
1986
- },
1987
- "/api/ProjectSectionService/projectSection/{id}": {
1988
- "get": {
1989
- "tags": [
1990
- "ProjectSection"
1991
- ],
1992
- "parameters": [
1993
- {
1994
- "name": "id",
1995
- "in": "path",
1996
- "required": true,
1997
- "schema": {
1998
- "type": "string",
1999
- "format": "uuid"
2000
- }
2001
- }
2002
- ],
2003
- "responses": {
2004
- "200": {
2005
- "description": "Success",
2006
- "content": {
2007
- "text/plain": {
2008
- "schema": {
2009
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
2010
- }
2011
- },
2012
- "application/json": {
2013
- "schema": {
2014
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
2015
- }
2016
- },
2017
- "text/json": {
2018
- "schema": {
2019
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
2020
- }
2021
- }
2022
- }
2023
- },
2024
- "403": {
2025
- "description": "Forbidden",
2026
- "content": {
2027
- "text/plain": {
2028
- "schema": {
2029
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2030
- }
2031
- },
2032
- "application/json": {
2033
- "schema": {
2034
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2035
- }
2036
- },
2037
- "text/json": {
2038
- "schema": {
2039
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2040
- }
2041
- }
2042
- }
2043
- },
2044
- "401": {
2045
- "description": "Unauthorized",
2046
- "content": {
2047
- "text/plain": {
2048
- "schema": {
2049
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2050
- }
2051
- },
2052
- "application/json": {
2053
- "schema": {
2054
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2055
- }
2056
- },
2057
- "text/json": {
2058
- "schema": {
2059
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2060
- }
2061
- }
2062
- }
2063
- },
2064
- "400": {
2065
- "description": "Bad Request",
2066
- "content": {
2067
- "text/plain": {
2068
- "schema": {
2069
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2070
- }
2071
- },
2072
- "application/json": {
2073
- "schema": {
2074
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2075
- }
2076
- },
2077
- "text/json": {
2078
- "schema": {
2079
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2080
- }
2081
- }
2082
- }
2083
- },
2084
- "404": {
2085
- "description": "Not Found",
2086
- "content": {
2087
- "text/plain": {
2088
- "schema": {
2089
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2090
- }
2091
- },
2092
- "application/json": {
2093
- "schema": {
2094
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2095
- }
2096
- },
2097
- "text/json": {
2098
- "schema": {
2099
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2100
- }
2101
- }
2102
- }
2103
- },
2104
- "501": {
2105
- "description": "Server Error",
2106
- "content": {
2107
- "text/plain": {
2108
- "schema": {
2109
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2110
- }
2111
- },
2112
- "application/json": {
2113
- "schema": {
2114
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2115
- }
2116
- },
2117
- "text/json": {
2118
- "schema": {
2119
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2120
- }
2121
- }
2122
- }
2123
- },
2124
- "500": {
2125
- "description": "Server Error",
2126
- "content": {
2127
- "text/plain": {
2128
- "schema": {
2129
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2130
- }
2131
- },
2132
- "application/json": {
2133
- "schema": {
2134
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2135
- }
2136
- },
2137
- "text/json": {
2138
- "schema": {
2139
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2140
- }
2141
- }
2142
- }
2143
- }
2144
- }
2145
- }
2146
- },
2147
- "/api/ProjectSectionRelationService/projectSectionRelation": {
2148
- "post": {
2149
- "tags": [
2150
- "ProjectSectionRelation"
2151
- ],
2152
- "requestBody": {
2153
- "content": {
2154
- "application/json": {
2155
- "schema": {
2156
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.CreateProjectSectionRelationDto"
2157
- }
2158
- },
2159
- "text/json": {
2160
- "schema": {
2161
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.CreateProjectSectionRelationDto"
2162
- }
2163
- },
2164
- "application/*+json": {
2165
- "schema": {
2166
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.CreateProjectSectionRelationDto"
2167
- }
2168
- }
2169
- }
2170
- },
2171
- "responses": {
2172
- "200": {
2173
- "description": "Success",
2174
- "content": {
2175
- "text/plain": {
2176
- "schema": {
2177
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2178
- }
2179
- },
2180
- "application/json": {
2181
- "schema": {
2182
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2183
- }
2184
- },
2185
- "text/json": {
2186
- "schema": {
2187
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2188
- }
2189
- }
2190
- }
2191
- },
2192
- "403": {
2193
- "description": "Forbidden",
2194
- "content": {
2195
- "text/plain": {
2196
- "schema": {
2197
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2198
- }
2199
- },
2200
- "application/json": {
2201
- "schema": {
2202
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2203
- }
2204
- },
2205
- "text/json": {
2206
- "schema": {
2207
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2208
- }
2209
- }
2210
- }
2211
- },
2212
- "401": {
2213
- "description": "Unauthorized",
2214
- "content": {
2215
- "text/plain": {
2216
- "schema": {
2217
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2218
- }
2219
- },
2220
- "application/json": {
2221
- "schema": {
2222
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2223
- }
2224
- },
2225
- "text/json": {
2226
- "schema": {
2227
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2228
- }
2229
- }
2230
- }
2231
- },
2232
- "400": {
2233
- "description": "Bad Request",
2234
- "content": {
2235
- "text/plain": {
2236
- "schema": {
2237
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2238
- }
2239
- },
2240
- "application/json": {
2241
- "schema": {
2242
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2243
- }
2244
- },
2245
- "text/json": {
2246
- "schema": {
2247
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2248
- }
2249
- }
2250
- }
2251
- },
2252
- "404": {
2253
- "description": "Not Found",
2254
- "content": {
2255
- "text/plain": {
2256
- "schema": {
2257
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2258
- }
2259
- },
2260
- "application/json": {
2261
- "schema": {
2262
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2263
- }
2264
- },
2265
- "text/json": {
2266
- "schema": {
2267
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2268
- }
2269
- }
2270
- }
2271
- },
2272
- "501": {
2273
- "description": "Server Error",
2274
- "content": {
2275
- "text/plain": {
2276
- "schema": {
2277
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2278
- }
2279
- },
2280
- "application/json": {
2281
- "schema": {
2282
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2283
- }
2284
- },
2285
- "text/json": {
2286
- "schema": {
2287
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2288
- }
2289
- }
2290
- }
2291
- },
2292
- "500": {
2293
- "description": "Server Error",
2294
- "content": {
2295
- "text/plain": {
2296
- "schema": {
2297
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2298
- }
2299
- },
2300
- "application/json": {
2301
- "schema": {
2302
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2303
- }
2304
- },
2305
- "text/json": {
2306
- "schema": {
2307
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2308
- }
2309
- }
2310
- }
2311
- }
2312
- }
2313
- },
2314
- "delete": {
2315
- "tags": [
2316
- "ProjectSectionRelation"
2317
- ],
2318
- "parameters": [
2319
- {
2320
- "name": "id",
2321
- "in": "query",
2322
- "schema": {
2323
- "type": "string",
2324
- "format": "uuid"
2325
- }
2326
- }
2327
- ],
2328
- "responses": {
2329
- "200": {
2330
- "description": "Success"
2331
- },
2332
- "403": {
2333
- "description": "Forbidden",
2334
- "content": {
2335
- "text/plain": {
2336
- "schema": {
2337
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2338
- }
2339
- },
2340
- "application/json": {
2341
- "schema": {
2342
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2343
- }
2344
- },
2345
- "text/json": {
2346
- "schema": {
2347
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2348
- }
2349
- }
2350
- }
2351
- },
2352
- "401": {
2353
- "description": "Unauthorized",
2354
- "content": {
2355
- "text/plain": {
2356
- "schema": {
2357
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2358
- }
2359
- },
2360
- "application/json": {
2361
- "schema": {
2362
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2363
- }
2364
- },
2365
- "text/json": {
2366
- "schema": {
2367
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2368
- }
2369
- }
2370
- }
2371
- },
2372
- "400": {
2373
- "description": "Bad Request",
2374
- "content": {
2375
- "text/plain": {
2376
- "schema": {
2377
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2378
- }
2379
- },
2380
- "application/json": {
2381
- "schema": {
2382
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2383
- }
2384
- },
2385
- "text/json": {
2386
- "schema": {
2387
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2388
- }
2389
- }
2390
- }
2391
- },
2392
- "404": {
2393
- "description": "Not Found",
2394
- "content": {
2395
- "text/plain": {
2396
- "schema": {
2397
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2398
- }
2399
- },
2400
- "application/json": {
2401
- "schema": {
2402
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2403
- }
2404
- },
2405
- "text/json": {
2406
- "schema": {
2407
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2408
- }
2409
- }
2410
- }
2411
- },
2412
- "501": {
2413
- "description": "Server Error",
2414
- "content": {
2415
- "text/plain": {
2416
- "schema": {
2417
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2418
- }
2419
- },
2420
- "application/json": {
2421
- "schema": {
2422
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2423
- }
2424
- },
2425
- "text/json": {
2426
- "schema": {
2427
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2428
- }
2429
- }
2430
- }
2431
- },
2432
- "500": {
2433
- "description": "Server Error",
2434
- "content": {
2435
- "text/plain": {
2436
- "schema": {
2437
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2438
- }
2439
- },
2440
- "application/json": {
2441
- "schema": {
2442
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2443
- }
2444
- },
2445
- "text/json": {
2446
- "schema": {
2447
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2448
- }
2449
- }
2450
- }
2451
- }
2452
- }
2453
- },
2454
- "get": {
2455
- "tags": [
2456
- "ProjectSectionRelation"
2457
- ],
2458
- "parameters": [
2459
- {
2460
- "name": "Sorting",
2461
- "in": "query",
2462
- "schema": {
2463
- "type": "string"
2464
- }
2465
- },
2466
- {
2467
- "name": "SkipCount",
2468
- "in": "query",
2469
- "schema": {
2470
- "maximum": 2147483647,
2471
- "minimum": 0,
2472
- "type": "integer",
2473
- "format": "int32"
2474
- }
2475
- },
2476
- {
2477
- "name": "MaxResultCount",
2478
- "in": "query",
2479
- "schema": {
2480
- "maximum": 2147483647,
2481
- "minimum": 1,
2482
- "type": "integer",
2483
- "format": "int32"
2484
- }
2485
- }
2486
- ],
2487
- "responses": {
2488
- "200": {
2489
- "description": "Success",
2490
- "content": {
2491
- "text/plain": {
2492
- "schema": {
2493
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
2494
- }
2495
- },
2496
- "application/json": {
2497
- "schema": {
2498
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
2499
- }
2500
- },
2501
- "text/json": {
2502
- "schema": {
2503
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
2504
- }
2505
- }
2506
- }
2507
- },
2508
- "403": {
2509
- "description": "Forbidden",
2510
- "content": {
2511
- "text/plain": {
2512
- "schema": {
2513
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2514
- }
2515
- },
2516
- "application/json": {
2517
- "schema": {
2518
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2519
- }
2520
- },
2521
- "text/json": {
2522
- "schema": {
2523
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2524
- }
2525
- }
2526
- }
2527
- },
2528
- "401": {
2529
- "description": "Unauthorized",
2530
- "content": {
2531
- "text/plain": {
2532
- "schema": {
2533
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2534
- }
2535
- },
2536
- "application/json": {
2537
- "schema": {
2538
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2539
- }
2540
- },
2541
- "text/json": {
2542
- "schema": {
2543
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2544
- }
2545
- }
2546
- }
2547
- },
2548
- "400": {
2549
- "description": "Bad Request",
2550
- "content": {
2551
- "text/plain": {
2552
- "schema": {
2553
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2554
- }
2555
- },
2556
- "application/json": {
2557
- "schema": {
2558
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2559
- }
2560
- },
2561
- "text/json": {
2562
- "schema": {
2563
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2564
- }
2565
- }
2566
- }
2567
- },
2568
- "404": {
2569
- "description": "Not Found",
2570
- "content": {
2571
- "text/plain": {
2572
- "schema": {
2573
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2574
- }
2575
- },
2576
- "application/json": {
2577
- "schema": {
2578
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2579
- }
2580
- },
2581
- "text/json": {
2582
- "schema": {
2583
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2584
- }
2585
- }
2586
- }
2587
- },
2588
- "501": {
2589
- "description": "Server Error",
2590
- "content": {
2591
- "text/plain": {
2592
- "schema": {
2593
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2594
- }
2595
- },
2596
- "application/json": {
2597
- "schema": {
2598
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2599
- }
2600
- },
2601
- "text/json": {
2602
- "schema": {
2603
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2604
- }
2605
- }
2606
- }
2607
- },
2608
- "500": {
2609
- "description": "Server Error",
2610
- "content": {
2611
- "text/plain": {
2612
- "schema": {
2613
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2614
- }
2615
- },
2616
- "application/json": {
2617
- "schema": {
2618
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2619
- }
2620
- },
2621
- "text/json": {
2622
- "schema": {
2623
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2624
- }
2625
- }
2626
- }
2627
- }
2628
- }
2629
- }
2630
- },
2631
- "/api/ProjectSectionRelationService/projectSectionRelation/{id}": {
2632
- "get": {
2633
- "tags": [
2634
- "ProjectSectionRelation"
2635
- ],
2636
- "parameters": [
2637
- {
2638
- "name": "id",
2639
- "in": "path",
2640
- "required": true,
2641
- "schema": {
2642
- "type": "string",
2643
- "format": "uuid"
2644
- }
2645
- }
2646
- ],
2647
- "responses": {
2648
- "200": {
2649
- "description": "Success",
2650
- "content": {
2651
- "text/plain": {
2652
- "schema": {
2653
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2654
- }
2655
- },
2656
- "application/json": {
2657
- "schema": {
2658
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2659
- }
2660
- },
2661
- "text/json": {
2662
- "schema": {
2663
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2664
- }
2665
- }
2666
- }
2667
- },
2668
- "403": {
2669
- "description": "Forbidden",
2670
- "content": {
2671
- "text/plain": {
2672
- "schema": {
2673
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2674
- }
2675
- },
2676
- "application/json": {
2677
- "schema": {
2678
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2679
- }
2680
- },
2681
- "text/json": {
2682
- "schema": {
2683
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2684
- }
2685
- }
2686
- }
2687
- },
2688
- "401": {
2689
- "description": "Unauthorized",
2690
- "content": {
2691
- "text/plain": {
2692
- "schema": {
2693
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2694
- }
2695
- },
2696
- "application/json": {
2697
- "schema": {
2698
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2699
- }
2700
- },
2701
- "text/json": {
2702
- "schema": {
2703
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2704
- }
2705
- }
2706
- }
2707
- },
2708
- "400": {
2709
- "description": "Bad Request",
2710
- "content": {
2711
- "text/plain": {
2712
- "schema": {
2713
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2714
- }
2715
- },
2716
- "application/json": {
2717
- "schema": {
2718
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2719
- }
2720
- },
2721
- "text/json": {
2722
- "schema": {
2723
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2724
- }
2725
- }
2726
- }
2727
- },
2728
- "404": {
2729
- "description": "Not Found",
2730
- "content": {
2731
- "text/plain": {
2732
- "schema": {
2733
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2734
- }
2735
- },
2736
- "application/json": {
2737
- "schema": {
2738
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2739
- }
2740
- },
2741
- "text/json": {
2742
- "schema": {
2743
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2744
- }
2745
- }
2746
- }
2747
- },
2748
- "501": {
2749
- "description": "Server Error",
2750
- "content": {
2751
- "text/plain": {
2752
- "schema": {
2753
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2754
- }
2755
- },
2756
- "application/json": {
2757
- "schema": {
2758
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2759
- }
2760
- },
2761
- "text/json": {
2762
- "schema": {
2763
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2764
- }
2765
- }
2766
- }
2767
- },
2768
- "500": {
2769
- "description": "Server Error",
2770
- "content": {
2771
- "text/plain": {
2772
- "schema": {
2773
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2774
- }
2775
- },
2776
- "application/json": {
2777
- "schema": {
2778
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2779
- }
2780
- },
2781
- "text/json": {
2782
- "schema": {
2783
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2784
- }
2785
- }
2786
- }
2787
- }
2788
- }
2789
- },
2790
- "put": {
2791
- "tags": [
2792
- "ProjectSectionRelation"
2793
- ],
2794
- "parameters": [
2795
- {
2796
- "name": "id",
2797
- "in": "path",
2798
- "required": true,
2799
- "schema": {
2800
- "type": "string",
2801
- "format": "uuid"
2802
- }
2803
- }
2804
- ],
2805
- "requestBody": {
2806
- "content": {
2807
- "application/json": {
2808
- "schema": {
2809
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.UpdateProjectSectionRelationDto"
2810
- }
2811
- },
2812
- "text/json": {
2813
- "schema": {
2814
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.UpdateProjectSectionRelationDto"
2815
- }
2816
- },
2817
- "application/*+json": {
2818
- "schema": {
2819
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.UpdateProjectSectionRelationDto"
2820
- }
2821
- }
2822
- }
2823
- },
2824
- "responses": {
2825
- "200": {
2826
- "description": "Success",
2827
- "content": {
2828
- "text/plain": {
2829
- "schema": {
2830
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2831
- }
2832
- },
2833
- "application/json": {
2834
- "schema": {
2835
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2836
- }
2837
- },
2838
- "text/json": {
2839
- "schema": {
2840
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
2841
- }
2842
- }
2843
- }
2844
- },
2845
- "403": {
2846
- "description": "Forbidden",
2847
- "content": {
2848
- "text/plain": {
2849
- "schema": {
2850
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2851
- }
2852
- },
2853
- "application/json": {
2854
- "schema": {
2855
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2856
- }
2857
- },
2858
- "text/json": {
2859
- "schema": {
2860
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2861
- }
2862
- }
2863
- }
2864
- },
2865
- "401": {
2866
- "description": "Unauthorized",
2867
- "content": {
2868
- "text/plain": {
2869
- "schema": {
2870
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2871
- }
2872
- },
2873
- "application/json": {
2874
- "schema": {
2875
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2876
- }
2877
- },
2878
- "text/json": {
2879
- "schema": {
2880
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2881
- }
2882
- }
2883
- }
2884
- },
2885
- "400": {
2886
- "description": "Bad Request",
2887
- "content": {
2888
- "text/plain": {
2889
- "schema": {
2890
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2891
- }
2892
- },
2893
- "application/json": {
2894
- "schema": {
2895
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2896
- }
2897
- },
2898
- "text/json": {
2899
- "schema": {
2900
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2901
- }
2902
- }
2903
- }
2904
- },
2905
- "404": {
2906
- "description": "Not Found",
2907
- "content": {
2908
- "text/plain": {
2909
- "schema": {
2910
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2911
- }
2912
- },
2913
- "application/json": {
2914
- "schema": {
2915
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2916
- }
2917
- },
2918
- "text/json": {
2919
- "schema": {
2920
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2921
- }
2922
- }
2923
- }
2924
- },
2925
- "501": {
2926
- "description": "Server Error",
2927
- "content": {
2928
- "text/plain": {
2929
- "schema": {
2930
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2931
- }
2932
- },
2933
- "application/json": {
2934
- "schema": {
2935
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2936
- }
2937
- },
2938
- "text/json": {
2939
- "schema": {
2940
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2941
- }
2942
- }
2943
- }
2944
- },
2945
- "500": {
2946
- "description": "Server Error",
2947
- "content": {
2948
- "text/plain": {
2949
- "schema": {
2950
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2951
- }
2952
- },
2953
- "application/json": {
2954
- "schema": {
2955
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2956
- }
2957
- },
2958
- "text/json": {
2959
- "schema": {
2960
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
2961
- }
2962
- }
2963
- }
2964
- }
2965
- }
2966
- }
2967
- },
2968
- "/api/ProjectService/sample": {
2969
- "get": {
2970
- "tags": [
2971
- "ProjectService"
2972
- ],
2973
- "responses": {
2974
- "200": {
2975
- "description": "Success",
2976
- "content": {
2977
- "text/plain": {
2978
- "schema": {
2979
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
2980
- }
2981
- },
2982
- "application/json": {
2983
- "schema": {
2984
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
2985
- }
2986
- },
2987
- "text/json": {
2988
- "schema": {
2989
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
2990
- }
2991
- }
2992
- }
2993
- },
2994
- "403": {
2995
- "description": "Forbidden",
2996
- "content": {
2997
- "text/plain": {
2998
- "schema": {
2999
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3000
- }
3001
- },
3002
- "application/json": {
3003
- "schema": {
3004
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3005
- }
3006
- },
3007
- "text/json": {
3008
- "schema": {
3009
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3010
- }
3011
- }
3012
- }
3013
- },
3014
- "401": {
3015
- "description": "Unauthorized",
3016
- "content": {
3017
- "text/plain": {
3018
- "schema": {
3019
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3020
- }
3021
- },
3022
- "application/json": {
3023
- "schema": {
3024
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3025
- }
3026
- },
3027
- "text/json": {
3028
- "schema": {
3029
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3030
- }
3031
- }
3032
- }
3033
- },
3034
- "400": {
3035
- "description": "Bad Request",
3036
- "content": {
3037
- "text/plain": {
3038
- "schema": {
3039
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3040
- }
3041
- },
3042
- "application/json": {
3043
- "schema": {
3044
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3045
- }
3046
- },
3047
- "text/json": {
3048
- "schema": {
3049
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3050
- }
3051
- }
3052
- }
3053
- },
3054
- "404": {
3055
- "description": "Not Found",
3056
- "content": {
3057
- "text/plain": {
3058
- "schema": {
3059
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3060
- }
3061
- },
3062
- "application/json": {
3063
- "schema": {
3064
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3065
- }
3066
- },
3067
- "text/json": {
3068
- "schema": {
3069
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3070
- }
3071
- }
3072
- }
3073
- },
3074
- "501": {
3075
- "description": "Server Error",
3076
- "content": {
3077
- "text/plain": {
3078
- "schema": {
3079
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3080
- }
3081
- },
3082
- "application/json": {
3083
- "schema": {
3084
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3085
- }
3086
- },
3087
- "text/json": {
3088
- "schema": {
3089
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3090
- }
3091
- }
3092
- }
3093
- },
3094
- "500": {
3095
- "description": "Server Error",
3096
- "content": {
3097
- "text/plain": {
3098
- "schema": {
3099
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3100
- }
3101
- },
3102
- "application/json": {
3103
- "schema": {
3104
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3105
- }
3106
- },
3107
- "text/json": {
3108
- "schema": {
3109
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3110
- }
3111
- }
3112
- }
3113
- }
3114
- }
3115
- }
3116
- },
3117
- "/api/ProjectService/sample/authorized": {
3118
- "get": {
3119
- "tags": [
3120
- "ProjectService"
3121
- ],
3122
- "responses": {
3123
- "200": {
3124
- "description": "Success",
3125
- "content": {
3126
- "text/plain": {
3127
- "schema": {
3128
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
3129
- }
3130
- },
3131
- "application/json": {
3132
- "schema": {
3133
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
3134
- }
3135
- },
3136
- "text/json": {
3137
- "schema": {
3138
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Samples.SampleDto"
3139
- }
3140
- }
3141
- }
3142
- },
3143
- "403": {
3144
- "description": "Forbidden",
3145
- "content": {
3146
- "text/plain": {
3147
- "schema": {
3148
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3149
- }
3150
- },
3151
- "application/json": {
3152
- "schema": {
3153
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3154
- }
3155
- },
3156
- "text/json": {
3157
- "schema": {
3158
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3159
- }
3160
- }
3161
- }
3162
- },
3163
- "401": {
3164
- "description": "Unauthorized",
3165
- "content": {
3166
- "text/plain": {
3167
- "schema": {
3168
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3169
- }
3170
- },
3171
- "application/json": {
3172
- "schema": {
3173
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3174
- }
3175
- },
3176
- "text/json": {
3177
- "schema": {
3178
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3179
- }
3180
- }
3181
- }
3182
- },
3183
- "400": {
3184
- "description": "Bad Request",
3185
- "content": {
3186
- "text/plain": {
3187
- "schema": {
3188
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3189
- }
3190
- },
3191
- "application/json": {
3192
- "schema": {
3193
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3194
- }
3195
- },
3196
- "text/json": {
3197
- "schema": {
3198
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3199
- }
3200
- }
3201
- }
3202
- },
3203
- "404": {
3204
- "description": "Not Found",
3205
- "content": {
3206
- "text/plain": {
3207
- "schema": {
3208
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3209
- }
3210
- },
3211
- "application/json": {
3212
- "schema": {
3213
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3214
- }
3215
- },
3216
- "text/json": {
3217
- "schema": {
3218
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3219
- }
3220
- }
3221
- }
3222
- },
3223
- "501": {
3224
- "description": "Server Error",
3225
- "content": {
3226
- "text/plain": {
3227
- "schema": {
3228
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3229
- }
3230
- },
3231
- "application/json": {
3232
- "schema": {
3233
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3234
- }
3235
- },
3236
- "text/json": {
3237
- "schema": {
3238
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3239
- }
3240
- }
3241
- }
3242
- },
3243
- "500": {
3244
- "description": "Server Error",
3245
- "content": {
3246
- "text/plain": {
3247
- "schema": {
3248
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3249
- }
3250
- },
3251
- "application/json": {
3252
- "schema": {
3253
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3254
- }
3255
- },
3256
- "text/json": {
3257
- "schema": {
3258
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
3259
- }
3260
- }
3261
- }
3262
- }
3263
- }
3264
- }
3265
- }
3266
- },
3267
- "components": {
3268
- "schemas": {
3269
- "AbpForDeploy.ProjectService.ProjectPagedResultDto": {
3270
- "type": "object",
3271
- "properties": {
3272
- "items": {
3273
- "type": "array",
3274
- "items": {
3275
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.Projects.ProjectDto"
3276
- },
3277
- "nullable": true
3278
- },
3279
- "totalCount": {
3280
- "type": "integer",
3281
- "format": "int64"
3282
- }
3283
- },
3284
- "additionalProperties": false
3285
- },
3286
- "AbpForDeploy.ProjectService.ProjectSectionRelations.CreateProjectSectionRelationDto": {
3287
- "type": "object",
3288
- "properties": {
3289
- "id": {
3290
- "type": "string",
3291
- "format": "uuid"
3292
- },
3293
- "projectId": {
3294
- "type": "string",
3295
- "format": "uuid"
3296
- },
3297
- "projectSectionId": {
3298
- "type": "string",
3299
- "format": "uuid"
3300
- },
3301
- "value": {
3302
- "type": "string",
3303
- "nullable": true
3304
- }
3305
- },
3306
- "additionalProperties": false
3307
- },
3308
- "AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto": {
3309
- "type": "object",
3310
- "properties": {
3311
- "id": {
3312
- "type": "string",
3313
- "format": "uuid"
3314
- },
3315
- "projectId": {
3316
- "type": "string",
3317
- "format": "uuid"
3318
- },
3319
- "projectSectionId": {
3320
- "type": "string",
3321
- "format": "uuid"
3322
- },
3323
- "value": {
3324
- "type": "string",
3325
- "nullable": true
3326
- }
3327
- },
3328
- "additionalProperties": false
3329
- },
3330
- "AbpForDeploy.ProjectService.ProjectSectionRelations.UpdateProjectSectionRelationDto": {
3331
- "type": "object",
3332
- "properties": {
3333
- "id": {
3334
- "type": "string",
3335
- "format": "uuid"
3336
- },
3337
- "projectId": {
3338
- "type": "string",
3339
- "format": "uuid"
3340
- },
3341
- "projectSectionId": {
3342
- "type": "string",
3343
- "format": "uuid"
3344
- },
3345
- "value": {
3346
- "type": "string",
3347
- "nullable": true
3348
- }
3349
- },
3350
- "additionalProperties": false
3351
- },
3352
- "AbpForDeploy.ProjectService.ProjectSections.CreateProjectSectionDto": {
3353
- "type": "object",
3354
- "properties": {
3355
- "id": {
3356
- "type": "string",
3357
- "format": "uuid"
3358
- },
3359
- "name": {
3360
- "type": "string",
3361
- "nullable": true
3362
- },
3363
- "isDefault": {
3364
- "type": "boolean"
3365
- },
3366
- "isOptional": {
3367
- "type": "boolean"
3368
- }
3369
- },
3370
- "additionalProperties": false
3371
- },
3372
- "AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDetailDto": {
3373
- "type": "object",
3374
- "properties": {
3375
- "name": {
3376
- "type": "string",
3377
- "nullable": true
3378
- },
3379
- "value": {
3380
- "type": "string",
3381
- "nullable": true
3382
- }
3383
- },
3384
- "additionalProperties": false
3385
- },
3386
- "AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto": {
3387
- "type": "object",
3388
- "properties": {
3389
- "id": {
3390
- "type": "string",
3391
- "format": "uuid"
3392
- },
3393
- "name": {
3394
- "type": "string",
3395
- "nullable": true
3396
- },
3397
- "isDefault": {
3398
- "type": "boolean"
3399
- },
3400
- "isOptional": {
3401
- "type": "boolean"
3402
- }
3403
- },
3404
- "additionalProperties": false
3405
- },
3406
- "AbpForDeploy.ProjectService.ProjectSections.UpdateProjectSectionDto": {
3407
- "type": "object",
3408
- "properties": {
3409
- "name": {
3410
- "type": "string",
3411
- "nullable": true
3412
- },
3413
- "isDefault": {
3414
- "type": "boolean"
3415
- },
3416
- "isOptional": {
3417
- "type": "boolean"
3418
- }
3419
- },
3420
- "additionalProperties": false
3421
- },
3422
- "AbpForDeploy.ProjectService.Projects.ProjectDto": {
3423
- "type": "object",
3424
- "properties": {
3425
- "id": {
3426
- "type": "string",
3427
- "format": "uuid"
3428
- },
3429
- "projectName": {
3430
- "type": "string",
3431
- "nullable": true
3432
- },
3433
- "projectDefinition": {
3434
- "type": "string",
3435
- "nullable": true
3436
- },
3437
- "cashValue": {
3438
- "type": "integer",
3439
- "format": "int64"
3440
- },
3441
- "fundCollectionType": {
3442
- "type": "string",
3443
- "nullable": true
3444
- },
3445
- "additionalFundRate": {
3446
- "type": "string",
3447
- "nullable": true
3448
- },
3449
- "qualifiedFundRate": {
3450
- "type": "string",
3451
- "nullable": true
3452
- },
3453
- "fundNominalAmount": {
3454
- "type": "integer",
3455
- "format": "int64"
3456
- },
3457
- "fundableAmount": {
3458
- "type": "integer",
3459
- "format": "int64"
3460
- },
3461
- "overFunding": {
3462
- "type": "string"
3463
- },
3464
- "privilege": {
3465
- "type": "string",
3466
- "nullable": true
3467
- },
3468
- "projectStartDate": {
3469
- "type": "string",
3470
- "format": "date-time"
3471
- },
3472
- "projectEndDate": {
3473
- "type": "string",
3474
- "format": "date-time"
3475
- },
3476
- "projectSectionRelations": {
3477
- "type": "array",
3478
- "items": {
3479
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDetailDto"
3480
- },
3481
- "nullable": true
3482
- },
3483
- "organizationId": {
3484
- "type": "string",
3485
- "format": "uuid"
3486
- }
3487
- },
3488
- "additionalProperties": false
3489
- },
3490
- "AbpForDeploy.ProjectService.ProjectsDto.CreateProjectDto": {
3491
- "type": "object",
3492
- "properties": {
3493
- "id": {
3494
- "type": "string",
3495
- "format": "uuid"
3496
- },
3497
- "projectName": {
3498
- "type": "string",
3499
- "nullable": true
3500
- },
3501
- "projectDefinition": {
3502
- "type": "string",
3503
- "nullable": true
3504
- },
3505
- "cashValue": {
3506
- "type": "integer",
3507
- "format": "int64"
3508
- },
3509
- "additionalFundRate": {
3510
- "type": "string",
3511
- "nullable": true
3512
- },
3513
- "qualifiedFundRate": {
3514
- "type": "string",
3515
- "nullable": true
3516
- },
3517
- "fundNominalAmount": {
3518
- "type": "integer",
3519
- "format": "int64"
3520
- },
3521
- "fundableAmount": {
3522
- "type": "integer",
3523
- "format": "int64"
3524
- },
3525
- "overFunding": {
3526
- "type": "string"
3527
- },
3528
- "privilege": {
3529
- "type": "string",
3530
- "nullable": true
3531
- },
3532
- "projectStartDate": {
3533
- "type": "string",
3534
- "format": "date-time"
3535
- },
3536
- "projectEndDate": {
3537
- "type": "string",
3538
- "format": "date-time"
3539
- },
3540
- "organizationId": {
3541
- "type": "string",
3542
- "format": "uuid"
3543
- },
3544
- "fundCollectionType": {
3545
- "maxLength": 4,
3546
- "minLength": 0,
3547
- "type": "string",
3548
- "nullable": true
3549
- }
3550
- },
3551
- "additionalProperties": false
3552
- },
3553
- "AbpForDeploy.ProjectService.ProjectsDto.UpdateProjectDto": {
3554
- "type": "object",
3555
- "properties": {
3556
- "id": {
3557
- "type": "string",
3558
- "format": "uuid"
3559
- },
3560
- "projectName": {
3561
- "type": "string",
3562
- "nullable": true
3563
- },
3564
- "projectDefinition": {
3565
- "type": "string",
3566
- "nullable": true
3567
- },
3568
- "cashValue": {
3569
- "type": "integer",
3570
- "format": "int64"
3571
- },
3572
- "additionalFundRate": {
3573
- "type": "string",
3574
- "nullable": true
3575
- },
3576
- "qualifiedFundRate": {
3577
- "type": "string",
3578
- "nullable": true
3579
- },
3580
- "fundNominalAmount": {
3581
- "type": "integer",
3582
- "format": "int64"
3583
- },
3584
- "fundableAmount": {
3585
- "type": "integer",
3586
- "format": "int64"
3587
- },
3588
- "overFunding": {
3589
- "type": "string"
3590
- },
3591
- "privilege": {
3592
- "type": "string",
3593
- "nullable": true
3594
- },
3595
- "projectStartDate": {
3596
- "type": "string",
3597
- "format": "date-time"
3598
- },
3599
- "projectEndDate": {
3600
- "type": "string",
3601
- "format": "date-time"
3602
- },
3603
- "organizationId": {
3604
- "type": "string",
3605
- "format": "uuid"
3606
- },
3607
- "projectId": {
3608
- "type": "string",
3609
- "format": "uuid"
3610
- },
3611
- "fundCollectType": {
3612
- "maxLength": 4,
3613
- "minLength": 0,
3614
- "type": "string",
3615
- "nullable": true
3616
- }
3617
- },
3618
- "additionalProperties": false
3619
- },
3620
- "AbpForDeploy.ProjectService.Samples.SampleDto": {
3621
- "type": "object",
3622
- "properties": {
3623
- "value": {
3624
- "type": "integer",
3625
- "format": "int32"
3626
- }
3627
- },
3628
- "additionalProperties": false
3629
- },
3630
- "Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]": {
3631
- "type": "object",
3632
- "properties": {
3633
- "items": {
3634
- "type": "array",
3635
- "items": {
3636
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSectionRelations.ProjectSectionRelationDto"
3637
- },
3638
- "nullable": true
3639
- },
3640
- "totalCount": {
3641
- "type": "integer",
3642
- "format": "int64"
3643
- }
3644
- },
3645
- "additionalProperties": false
3646
- },
3647
- "Volo.Abp.Application.Dtos.PagedResultDto`1[[AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto, AbpForDeploy.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]": {
3648
- "type": "object",
3649
- "properties": {
3650
- "items": {
3651
- "type": "array",
3652
- "items": {
3653
- "$ref": "#/components/schemas/AbpForDeploy.ProjectService.ProjectSections.ProjectSectionDto"
3654
- },
3655
- "nullable": true
3656
- },
3657
- "totalCount": {
3658
- "type": "integer",
3659
- "format": "int64"
3660
- }
3661
- },
3662
- "additionalProperties": false
3663
- },
3664
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto": {
3665
- "type": "object",
3666
- "properties": {
3667
- "grantedPolicies": {
3668
- "type": "object",
3669
- "additionalProperties": {
3670
- "type": "boolean"
3671
- },
3672
- "nullable": true
3673
- }
3674
- },
3675
- "additionalProperties": false
3676
- },
3677
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto": {
3678
- "type": "object",
3679
- "properties": {
3680
- "localization": {
3681
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto"
3682
- },
3683
- "auth": {
3684
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto"
3685
- },
3686
- "setting": {
3687
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto"
3688
- },
3689
- "currentUser": {
3690
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto"
3691
- },
3692
- "features": {
3693
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto"
3694
- },
3695
- "globalFeatures": {
3696
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto"
3697
- },
3698
- "multiTenancy": {
3699
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto"
3700
- },
3701
- "currentTenant": {
3702
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto"
3703
- },
3704
- "timing": {
3705
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto"
3706
- },
3707
- "clock": {
3708
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto"
3709
- },
3710
- "objectExtensions": {
3711
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto"
3712
- },
3713
- "extraProperties": {
3714
- "type": "object",
3715
- "additionalProperties": { },
3716
- "nullable": true
3717
- }
3718
- },
3719
- "additionalProperties": false
3720
- },
3721
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto": {
3722
- "type": "object",
3723
- "properties": {
3724
- "values": {
3725
- "type": "object",
3726
- "additionalProperties": {
3727
- "type": "string",
3728
- "nullable": true
3729
- },
3730
- "nullable": true
3731
- }
3732
- },
3733
- "additionalProperties": false
3734
- },
3735
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto": {
3736
- "type": "object",
3737
- "properties": {
3738
- "enabledFeatures": {
3739
- "uniqueItems": true,
3740
- "type": "array",
3741
- "items": {
3742
- "type": "string"
3743
- },
3744
- "nullable": true
3745
- }
3746
- },
3747
- "additionalProperties": false
3748
- },
3749
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto": {
3750
- "type": "object",
3751
- "properties": {
3752
- "values": {
3753
- "type": "object",
3754
- "additionalProperties": {
3755
- "type": "object",
3756
- "additionalProperties": {
3757
- "type": "string"
3758
- }
3759
- },
3760
- "nullable": true
3761
- },
3762
- "resources": {
3763
- "type": "object",
3764
- "additionalProperties": {
3765
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
3766
- },
3767
- "nullable": true
3768
- },
3769
- "languages": {
3770
- "type": "array",
3771
- "items": {
3772
- "$ref": "#/components/schemas/Volo.Abp.Localization.LanguageInfo"
3773
- },
3774
- "nullable": true
3775
- },
3776
- "currentCulture": {
3777
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto"
3778
- },
3779
- "defaultResourceName": {
3780
- "type": "string",
3781
- "nullable": true
3782
- },
3783
- "languagesMap": {
3784
- "type": "object",
3785
- "additionalProperties": {
3786
- "type": "array",
3787
- "items": {
3788
- "$ref": "#/components/schemas/Volo.Abp.NameValue"
3789
- }
3790
- },
3791
- "nullable": true
3792
- },
3793
- "languageFilesMap": {
3794
- "type": "object",
3795
- "additionalProperties": {
3796
- "type": "array",
3797
- "items": {
3798
- "$ref": "#/components/schemas/Volo.Abp.NameValue"
3799
- }
3800
- },
3801
- "nullable": true
3802
- }
3803
- },
3804
- "additionalProperties": false
3805
- },
3806
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto": {
3807
- "type": "object",
3808
- "properties": {
3809
- "resources": {
3810
- "type": "object",
3811
- "additionalProperties": {
3812
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
3813
- },
3814
- "nullable": true
3815
- }
3816
- },
3817
- "additionalProperties": false
3818
- },
3819
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto": {
3820
- "type": "object",
3821
- "properties": {
3822
- "texts": {
3823
- "type": "object",
3824
- "additionalProperties": {
3825
- "type": "string"
3826
- },
3827
- "nullable": true
3828
- },
3829
- "baseResources": {
3830
- "type": "array",
3831
- "items": {
3832
- "type": "string"
3833
- },
3834
- "nullable": true
3835
- }
3836
- },
3837
- "additionalProperties": false
3838
- },
3839
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto": {
3840
- "type": "object",
3841
- "properties": {
3842
- "values": {
3843
- "type": "object",
3844
- "additionalProperties": {
3845
- "type": "string",
3846
- "nullable": true
3847
- },
3848
- "nullable": true
3849
- }
3850
- },
3851
- "additionalProperties": false
3852
- },
3853
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto": {
3854
- "type": "object",
3855
- "properties": {
3856
- "kind": {
3857
- "type": "string",
3858
- "nullable": true
3859
- }
3860
- },
3861
- "additionalProperties": false
3862
- },
3863
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto": {
3864
- "type": "object",
3865
- "properties": {
3866
- "displayName": {
3867
- "type": "string",
3868
- "nullable": true
3869
- },
3870
- "englishName": {
3871
- "type": "string",
3872
- "nullable": true
3873
- },
3874
- "threeLetterIsoLanguageName": {
3875
- "type": "string",
3876
- "nullable": true
3877
- },
3878
- "twoLetterIsoLanguageName": {
3879
- "type": "string",
3880
- "nullable": true
3881
- },
3882
- "isRightToLeft": {
3883
- "type": "boolean"
3884
- },
3885
- "cultureName": {
3886
- "type": "string",
3887
- "nullable": true
3888
- },
3889
- "name": {
3890
- "type": "string",
3891
- "nullable": true
3892
- },
3893
- "nativeName": {
3894
- "type": "string",
3895
- "nullable": true
3896
- },
3897
- "dateTimeFormat": {
3898
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto"
3899
- }
3900
- },
3901
- "additionalProperties": false
3902
- },
3903
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto": {
3904
- "type": "object",
3905
- "properties": {
3906
- "isAuthenticated": {
3907
- "type": "boolean"
3908
- },
3909
- "id": {
3910
- "type": "string",
3911
- "format": "uuid",
3912
- "nullable": true
3913
- },
3914
- "tenantId": {
3915
- "type": "string",
3916
- "format": "uuid",
3917
- "nullable": true
3918
- },
3919
- "impersonatorUserId": {
3920
- "type": "string",
3921
- "format": "uuid",
3922
- "nullable": true
3923
- },
3924
- "impersonatorTenantId": {
3925
- "type": "string",
3926
- "format": "uuid",
3927
- "nullable": true
3928
- },
3929
- "impersonatorUserName": {
3930
- "type": "string",
3931
- "nullable": true
3932
- },
3933
- "impersonatorTenantName": {
3934
- "type": "string",
3935
- "nullable": true
3936
- },
3937
- "userName": {
3938
- "type": "string",
3939
- "nullable": true
3940
- },
3941
- "name": {
3942
- "type": "string",
3943
- "nullable": true
3944
- },
3945
- "surName": {
3946
- "type": "string",
3947
- "nullable": true
3948
- },
3949
- "email": {
3950
- "type": "string",
3951
- "nullable": true
3952
- },
3953
- "emailVerified": {
3954
- "type": "boolean"
3955
- },
3956
- "phoneNumber": {
3957
- "type": "string",
3958
- "nullable": true
3959
- },
3960
- "phoneNumberVerified": {
3961
- "type": "boolean"
3962
- },
3963
- "roles": {
3964
- "type": "array",
3965
- "items": {
3966
- "type": "string"
3967
- },
3968
- "nullable": true
3969
- }
3970
- },
3971
- "additionalProperties": false
3972
- },
3973
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto": {
3974
- "type": "object",
3975
- "properties": {
3976
- "calendarAlgorithmType": {
3977
- "type": "string",
3978
- "nullable": true
3979
- },
3980
- "dateTimeFormatLong": {
3981
- "type": "string",
3982
- "nullable": true
3983
- },
3984
- "shortDatePattern": {
3985
- "type": "string",
3986
- "nullable": true
3987
- },
3988
- "fullDateTimePattern": {
3989
- "type": "string",
3990
- "nullable": true
3991
- },
3992
- "dateSeparator": {
3993
- "type": "string",
3994
- "nullable": true
3995
- },
3996
- "shortTimePattern": {
3997
- "type": "string",
3998
- "nullable": true
3999
- },
4000
- "longTimePattern": {
4001
- "type": "string",
4002
- "nullable": true
4003
- }
4004
- },
4005
- "additionalProperties": false
4006
- },
4007
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone": {
4008
- "type": "object",
4009
- "properties": {
4010
- "timeZoneName": {
4011
- "type": "string",
4012
- "nullable": true
4013
- }
4014
- },
4015
- "additionalProperties": false
4016
- },
4017
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto": {
4018
- "type": "object",
4019
- "properties": {
4020
- "properties": {
4021
- "type": "object",
4022
- "additionalProperties": {
4023
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto"
4024
- },
4025
- "nullable": true
4026
- },
4027
- "configuration": {
4028
- "type": "object",
4029
- "additionalProperties": { },
4030
- "nullable": true
4031
- }
4032
- },
4033
- "additionalProperties": false
4034
- },
4035
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto": {
4036
- "type": "object",
4037
- "properties": {
4038
- "fields": {
4039
- "type": "array",
4040
- "items": {
4041
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto"
4042
- },
4043
- "nullable": true
4044
- },
4045
- "localizationResource": {
4046
- "type": "string",
4047
- "nullable": true
4048
- }
4049
- },
4050
- "additionalProperties": false
4051
- },
4052
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto": {
4053
- "type": "object",
4054
- "properties": {
4055
- "name": {
4056
- "type": "string",
4057
- "nullable": true
4058
- },
4059
- "value": {
4060
- "nullable": true
4061
- }
4062
- },
4063
- "additionalProperties": false
4064
- },
4065
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto": {
4066
- "type": "object",
4067
- "properties": {
4068
- "isAvailable": {
4069
- "type": "boolean"
4070
- }
4071
- },
4072
- "additionalProperties": false
4073
- },
4074
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto": {
4075
- "type": "object",
4076
- "properties": {
4077
- "onGet": {
4078
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto"
4079
- },
4080
- "onCreate": {
4081
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto"
4082
- },
4083
- "onUpdate": {
4084
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto"
4085
- }
4086
- },
4087
- "additionalProperties": false
4088
- },
4089
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto": {
4090
- "type": "object",
4091
- "properties": {
4092
- "isAvailable": {
4093
- "type": "boolean"
4094
- }
4095
- },
4096
- "additionalProperties": false
4097
- },
4098
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto": {
4099
- "type": "object",
4100
- "properties": {
4101
- "isAvailable": {
4102
- "type": "boolean"
4103
- }
4104
- },
4105
- "additionalProperties": false
4106
- },
4107
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto": {
4108
- "type": "object",
4109
- "properties": {
4110
- "typeSimple": {
4111
- "type": "string",
4112
- "nullable": true
4113
- },
4114
- "config": {
4115
- "type": "object",
4116
- "additionalProperties": { },
4117
- "nullable": true
4118
- }
4119
- },
4120
- "additionalProperties": false
4121
- },
4122
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto": {
4123
- "type": "object",
4124
- "properties": {
4125
- "type": {
4126
- "type": "string",
4127
- "nullable": true
4128
- },
4129
- "typeSimple": {
4130
- "type": "string",
4131
- "nullable": true
4132
- },
4133
- "displayName": {
4134
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto"
4135
- },
4136
- "api": {
4137
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto"
4138
- },
4139
- "ui": {
4140
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto"
4141
- },
4142
- "attributes": {
4143
- "type": "array",
4144
- "items": {
4145
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto"
4146
- },
4147
- "nullable": true
4148
- },
4149
- "configuration": {
4150
- "type": "object",
4151
- "additionalProperties": { },
4152
- "nullable": true
4153
- },
4154
- "defaultValue": {
4155
- "nullable": true
4156
- }
4157
- },
4158
- "additionalProperties": false
4159
- },
4160
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto": {
4161
- "type": "object",
4162
- "properties": {
4163
- "onTable": {
4164
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto"
4165
- },
4166
- "onCreateForm": {
4167
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
4168
- },
4169
- "onEditForm": {
4170
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
4171
- },
4172
- "lookup": {
4173
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto"
4174
- }
4175
- },
4176
- "additionalProperties": false
4177
- },
4178
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto": {
4179
- "type": "object",
4180
- "properties": {
4181
- "isVisible": {
4182
- "type": "boolean"
4183
- }
4184
- },
4185
- "additionalProperties": false
4186
- },
4187
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto": {
4188
- "type": "object",
4189
- "properties": {
4190
- "url": {
4191
- "type": "string",
4192
- "nullable": true
4193
- },
4194
- "resultListPropertyName": {
4195
- "type": "string",
4196
- "nullable": true
4197
- },
4198
- "displayPropertyName": {
4199
- "type": "string",
4200
- "nullable": true
4201
- },
4202
- "valuePropertyName": {
4203
- "type": "string",
4204
- "nullable": true
4205
- },
4206
- "filterParamName": {
4207
- "type": "string",
4208
- "nullable": true
4209
- }
4210
- },
4211
- "additionalProperties": false
4212
- },
4213
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto": {
4214
- "type": "object",
4215
- "properties": {
4216
- "isVisible": {
4217
- "type": "boolean"
4218
- }
4219
- },
4220
- "additionalProperties": false
4221
- },
4222
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto": {
4223
- "type": "object",
4224
- "properties": {
4225
- "name": {
4226
- "type": "string",
4227
- "nullable": true
4228
- },
4229
- "resource": {
4230
- "type": "string",
4231
- "nullable": true
4232
- }
4233
- },
4234
- "additionalProperties": false
4235
- },
4236
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto": {
4237
- "type": "object",
4238
- "properties": {
4239
- "entities": {
4240
- "type": "object",
4241
- "additionalProperties": {
4242
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto"
4243
- },
4244
- "nullable": true
4245
- },
4246
- "configuration": {
4247
- "type": "object",
4248
- "additionalProperties": { },
4249
- "nullable": true
4250
- }
4251
- },
4252
- "additionalProperties": false
4253
- },
4254
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto": {
4255
- "type": "object",
4256
- "properties": {
4257
- "modules": {
4258
- "type": "object",
4259
- "additionalProperties": {
4260
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto"
4261
- },
4262
- "nullable": true
4263
- },
4264
- "enums": {
4265
- "type": "object",
4266
- "additionalProperties": {
4267
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto"
4268
- },
4269
- "nullable": true
4270
- }
4271
- },
4272
- "additionalProperties": false
4273
- },
4274
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone": {
4275
- "type": "object",
4276
- "properties": {
4277
- "iana": {
4278
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone"
4279
- },
4280
- "windows": {
4281
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone"
4282
- }
4283
- },
4284
- "additionalProperties": false
4285
- },
4286
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto": {
4287
- "type": "object",
4288
- "properties": {
4289
- "timeZone": {
4290
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone"
4291
- }
4292
- },
4293
- "additionalProperties": false
4294
- },
4295
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone": {
4296
- "type": "object",
4297
- "properties": {
4298
- "timeZoneId": {
4299
- "type": "string",
4300
- "nullable": true
4301
- }
4302
- },
4303
- "additionalProperties": false
4304
- },
4305
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto": {
4306
- "type": "object",
4307
- "properties": {
4308
- "id": {
4309
- "type": "string",
4310
- "format": "uuid",
4311
- "nullable": true
4312
- },
4313
- "name": {
4314
- "type": "string",
4315
- "nullable": true
4316
- },
4317
- "isAvailable": {
4318
- "type": "boolean"
4319
- }
4320
- },
4321
- "additionalProperties": false
4322
- },
4323
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto": {
4324
- "type": "object",
4325
- "properties": {
4326
- "isEnabled": {
4327
- "type": "boolean"
4328
- }
4329
- },
4330
- "additionalProperties": false
4331
- },
4332
- "Volo.Abp.Http.Modeling.ActionApiDescriptionModel": {
4333
- "type": "object",
4334
- "properties": {
4335
- "uniqueName": {
4336
- "type": "string",
4337
- "nullable": true
4338
- },
4339
- "name": {
4340
- "type": "string",
4341
- "nullable": true
4342
- },
4343
- "httpMethod": {
4344
- "type": "string",
4345
- "nullable": true
4346
- },
4347
- "url": {
4348
- "type": "string",
4349
- "nullable": true
4350
- },
4351
- "supportedVersions": {
4352
- "type": "array",
4353
- "items": {
4354
- "type": "string"
4355
- },
4356
- "nullable": true
4357
- },
4358
- "parametersOnMethod": {
4359
- "type": "array",
4360
- "items": {
4361
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
4362
- },
4363
- "nullable": true
4364
- },
4365
- "parameters": {
4366
- "type": "array",
4367
- "items": {
4368
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel"
4369
- },
4370
- "nullable": true
4371
- },
4372
- "returnValue": {
4373
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
4374
- },
4375
- "allowAnonymous": {
4376
- "type": "boolean",
4377
- "nullable": true
4378
- },
4379
- "implementFrom": {
4380
- "type": "string",
4381
- "nullable": true
4382
- }
4383
- },
4384
- "additionalProperties": false
4385
- },
4386
- "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel": {
4387
- "type": "object",
4388
- "properties": {
4389
- "modules": {
4390
- "type": "object",
4391
- "additionalProperties": {
4392
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel"
4393
- },
4394
- "nullable": true
4395
- },
4396
- "types": {
4397
- "type": "object",
4398
- "additionalProperties": {
4399
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel"
4400
- },
4401
- "nullable": true
4402
- }
4403
- },
4404
- "additionalProperties": false
4405
- },
4406
- "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": {
4407
- "type": "object",
4408
- "properties": {
4409
- "controllerName": {
4410
- "type": "string",
4411
- "nullable": true
4412
- },
4413
- "controllerGroupName": {
4414
- "type": "string",
4415
- "nullable": true
4416
- },
4417
- "isRemoteService": {
4418
- "type": "boolean"
4419
- },
4420
- "isIntegrationService": {
4421
- "type": "boolean"
4422
- },
4423
- "apiVersion": {
4424
- "type": "string",
4425
- "nullable": true
4426
- },
4427
- "type": {
4428
- "type": "string",
4429
- "nullable": true
4430
- },
4431
- "interfaces": {
4432
- "type": "array",
4433
- "items": {
4434
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel"
4435
- },
4436
- "nullable": true
4437
- },
4438
- "actions": {
4439
- "type": "object",
4440
- "additionalProperties": {
4441
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel"
4442
- },
4443
- "nullable": true
4444
- }
4445
- },
4446
- "additionalProperties": false
4447
- },
4448
- "Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel": {
4449
- "type": "object",
4450
- "properties": {
4451
- "type": {
4452
- "type": "string",
4453
- "nullable": true
4454
- },
4455
- "name": {
4456
- "type": "string",
4457
- "nullable": true
4458
- },
4459
- "methods": {
4460
- "type": "array",
4461
- "items": {
4462
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel"
4463
- },
4464
- "nullable": true
4465
- }
4466
- },
4467
- "additionalProperties": false
4468
- },
4469
- "Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel": {
4470
- "type": "object",
4471
- "properties": {
4472
- "name": {
4473
- "type": "string",
4474
- "nullable": true
4475
- },
4476
- "parametersOnMethod": {
4477
- "type": "array",
4478
- "items": {
4479
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
4480
- },
4481
- "nullable": true
4482
- },
4483
- "returnValue": {
4484
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
4485
- }
4486
- },
4487
- "additionalProperties": false
4488
- },
4489
- "Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel": {
4490
- "type": "object",
4491
- "properties": {
4492
- "name": {
4493
- "type": "string",
4494
- "nullable": true
4495
- },
4496
- "typeAsString": {
4497
- "type": "string",
4498
- "nullable": true
4499
- },
4500
- "type": {
4501
- "type": "string",
4502
- "nullable": true
4503
- },
4504
- "typeSimple": {
4505
- "type": "string",
4506
- "nullable": true
4507
- },
4508
- "isOptional": {
4509
- "type": "boolean"
4510
- },
4511
- "defaultValue": {
4512
- "nullable": true
4513
- }
4514
- },
4515
- "additionalProperties": false
4516
- },
4517
- "Volo.Abp.Http.Modeling.ModuleApiDescriptionModel": {
4518
- "type": "object",
4519
- "properties": {
4520
- "rootPath": {
4521
- "type": "string",
4522
- "nullable": true
4523
- },
4524
- "remoteServiceName": {
4525
- "type": "string",
4526
- "nullable": true
4527
- },
4528
- "controllers": {
4529
- "type": "object",
4530
- "additionalProperties": {
4531
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel"
4532
- },
4533
- "nullable": true
4534
- }
4535
- },
4536
- "additionalProperties": false
4537
- },
4538
- "Volo.Abp.Http.Modeling.ParameterApiDescriptionModel": {
4539
- "type": "object",
4540
- "properties": {
4541
- "nameOnMethod": {
4542
- "type": "string",
4543
- "nullable": true
4544
- },
4545
- "name": {
4546
- "type": "string",
4547
- "nullable": true
4548
- },
4549
- "jsonName": {
4550
- "type": "string",
4551
- "nullable": true
4552
- },
4553
- "type": {
4554
- "type": "string",
4555
- "nullable": true
4556
- },
4557
- "typeSimple": {
4558
- "type": "string",
4559
- "nullable": true
4560
- },
4561
- "isOptional": {
4562
- "type": "boolean"
4563
- },
4564
- "defaultValue": {
4565
- "nullable": true
4566
- },
4567
- "constraintTypes": {
4568
- "type": "array",
4569
- "items": {
4570
- "type": "string"
4571
- },
4572
- "nullable": true
4573
- },
4574
- "bindingSourceId": {
4575
- "type": "string",
4576
- "nullable": true
4577
- },
4578
- "descriptorName": {
4579
- "type": "string",
4580
- "nullable": true
4581
- }
4582
- },
4583
- "additionalProperties": false
4584
- },
4585
- "Volo.Abp.Http.Modeling.PropertyApiDescriptionModel": {
4586
- "type": "object",
4587
- "properties": {
4588
- "name": {
4589
- "type": "string",
4590
- "nullable": true
4591
- },
4592
- "jsonName": {
4593
- "type": "string",
4594
- "nullable": true
4595
- },
4596
- "type": {
4597
- "type": "string",
4598
- "nullable": true
4599
- },
4600
- "typeSimple": {
4601
- "type": "string",
4602
- "nullable": true
4603
- },
4604
- "isRequired": {
4605
- "type": "boolean"
4606
- },
4607
- "minLength": {
4608
- "type": "integer",
4609
- "format": "int32",
4610
- "nullable": true
4611
- },
4612
- "maxLength": {
4613
- "type": "integer",
4614
- "format": "int32",
4615
- "nullable": true
4616
- },
4617
- "minimum": {
4618
- "type": "string",
4619
- "nullable": true
4620
- },
4621
- "maximum": {
4622
- "type": "string",
4623
- "nullable": true
4624
- },
4625
- "regex": {
4626
- "type": "string",
4627
- "nullable": true
4628
- }
4629
- },
4630
- "additionalProperties": false
4631
- },
4632
- "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel": {
4633
- "type": "object",
4634
- "properties": {
4635
- "type": {
4636
- "type": "string",
4637
- "nullable": true
4638
- },
4639
- "typeSimple": {
4640
- "type": "string",
4641
- "nullable": true
4642
- }
4643
- },
4644
- "additionalProperties": false
4645
- },
4646
- "Volo.Abp.Http.Modeling.TypeApiDescriptionModel": {
4647
- "type": "object",
4648
- "properties": {
4649
- "baseType": {
4650
- "type": "string",
4651
- "nullable": true
4652
- },
4653
- "isEnum": {
4654
- "type": "boolean"
4655
- },
4656
- "enumNames": {
4657
- "type": "array",
4658
- "items": {
4659
- "type": "string"
4660
- },
4661
- "nullable": true
4662
- },
4663
- "enumValues": {
4664
- "type": "array",
4665
- "items": { },
4666
- "nullable": true
4667
- },
4668
- "genericArguments": {
4669
- "type": "array",
4670
- "items": {
4671
- "type": "string"
4672
- },
4673
- "nullable": true
4674
- },
4675
- "properties": {
4676
- "type": "array",
4677
- "items": {
4678
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel"
4679
- },
4680
- "nullable": true
4681
- }
4682
- },
4683
- "additionalProperties": false
4684
- },
4685
- "Volo.Abp.Http.RemoteServiceErrorInfo": {
4686
- "type": "object",
4687
- "properties": {
4688
- "code": {
4689
- "type": "string",
4690
- "nullable": true
4691
- },
4692
- "message": {
4693
- "type": "string",
4694
- "nullable": true
4695
- },
4696
- "details": {
4697
- "type": "string",
4698
- "nullable": true
4699
- },
4700
- "data": {
4701
- "type": "object",
4702
- "additionalProperties": { },
4703
- "nullable": true
4704
- },
4705
- "validationErrors": {
4706
- "type": "array",
4707
- "items": {
4708
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo"
4709
- },
4710
- "nullable": true
4711
- }
4712
- },
4713
- "additionalProperties": false
4714
- },
4715
- "Volo.Abp.Http.RemoteServiceErrorResponse": {
4716
- "type": "object",
4717
- "properties": {
4718
- "error": {
4719
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo"
4720
- }
4721
- },
4722
- "additionalProperties": false
4723
- },
4724
- "Volo.Abp.Http.RemoteServiceValidationErrorInfo": {
4725
- "type": "object",
4726
- "properties": {
4727
- "message": {
4728
- "type": "string",
4729
- "nullable": true
4730
- },
4731
- "members": {
4732
- "type": "array",
4733
- "items": {
4734
- "type": "string"
4735
- },
4736
- "nullable": true
4737
- }
4738
- },
4739
- "additionalProperties": false
4740
- },
4741
- "Volo.Abp.Localization.LanguageInfo": {
4742
- "type": "object",
4743
- "properties": {
4744
- "cultureName": {
4745
- "type": "string",
4746
- "nullable": true
4747
- },
4748
- "uiCultureName": {
4749
- "type": "string",
4750
- "nullable": true
4751
- },
4752
- "displayName": {
4753
- "type": "string",
4754
- "nullable": true
4755
- },
4756
- "twoLetterISOLanguageName": {
4757
- "type": "string",
4758
- "nullable": true,
4759
- "readOnly": true
4760
- },
4761
- "flagIcon": {
4762
- "type": "string",
4763
- "nullable": true
4764
- }
4765
- },
4766
- "additionalProperties": false
4767
- },
4768
- "Volo.Abp.NameValue": {
4769
- "type": "object",
4770
- "properties": {
4771
- "name": {
4772
- "type": "string",
4773
- "nullable": true
4774
- },
4775
- "value": {
4776
- "type": "string",
4777
- "nullable": true
4778
- }
4779
- },
4780
- "additionalProperties": false
4781
- }
4782
- },
4783
- "securitySchemes": {
4784
- "oidc": {
4785
- "type": "openIdConnect",
4786
- "openIdConnectUrl": "http://192.168.1.38:44322/.well-known/openid-configuration"
4787
- }
4788
- }
4789
- },
4790
- "security": [
4791
- {
4792
- "oidc": [ ]
4793
- }
4794
- ]
4795
- }