@ayasofyazilim/saas 0.0.100 → 0.0.102

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 (576) 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/CRMServiceClient.ts +15 -15
  259. package/CRMService/core/ApiRequestOptions.ts +16 -8
  260. package/CRMService/core/BaseHttpRequest.ts +1 -1
  261. package/CRMService/core/FetchHttpRequest.ts +1 -1
  262. package/CRMService/core/OpenAPI.ts +3 -3
  263. package/CRMService/core/request.ts +14 -5
  264. package/CRMService/index.ts +2 -2
  265. package/CRMService/schemas.gen.ts +498 -14571
  266. package/CRMService/{services.gen.ts → sdk.gen.ts} +52 -33
  267. package/CRMService/types.gen.ts +438 -4453
  268. package/ContractService/ContractServiceClient.ts +65 -65
  269. package/ContractService/core/ApiError.ts +20 -20
  270. package/ContractService/core/ApiRequestOptions.ts +12 -12
  271. package/ContractService/core/ApiResult.ts +6 -6
  272. package/ContractService/core/BaseHttpRequest.ts +9 -9
  273. package/ContractService/core/CancelablePromise.ts +125 -125
  274. package/ContractService/core/FetchHttpRequest.ts +21 -21
  275. package/ContractService/core/OpenAPI.ts +55 -55
  276. package/ContractService/core/request.ts +340 -340
  277. package/ContractService/index.ts +8 -8
  278. package/ContractService/schemas.gen.ts +12076 -12076
  279. package/ContractService/services.gen.ts +1882 -1882
  280. package/ContractService/types.gen.ts +4145 -4145
  281. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  282. package/ExportValidationService/core/ApiError.ts +20 -20
  283. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  284. package/ExportValidationService/core/ApiResult.ts +6 -6
  285. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  286. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  287. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  288. package/ExportValidationService/core/OpenAPI.ts +55 -55
  289. package/ExportValidationService/core/request.ts +340 -340
  290. package/ExportValidationService/index.ts +8 -8
  291. package/ExportValidationService/schemas.gen.ts +3998 -3998
  292. package/ExportValidationService/services.gen.ts +260 -260
  293. package/ExportValidationService/types.gen.ts +818 -818
  294. package/FinanceService/FinanceServiceClient.ts +47 -47
  295. package/FinanceService/core/ApiError.ts +20 -20
  296. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  297. package/FinanceService/core/ApiResult.ts +6 -6
  298. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  299. package/FinanceService/core/CancelablePromise.ts +125 -125
  300. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  301. package/FinanceService/core/OpenAPI.ts +55 -55
  302. package/FinanceService/core/request.ts +340 -340
  303. package/FinanceService/index.ts +8 -8
  304. package/FinanceService/schemas.gen.ts +5006 -5006
  305. package/FinanceService/services.gen.ts +339 -339
  306. package/FinanceService/types.gen.ts +1128 -1128
  307. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  308. package/FundraiserService/core/ApiError.ts +20 -20
  309. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  310. package/FundraiserService/core/ApiResult.ts +6 -6
  311. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  312. package/FundraiserService/core/CancelablePromise.ts +125 -125
  313. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  314. package/FundraiserService/core/OpenAPI.ts +55 -55
  315. package/FundraiserService/core/request.ts +340 -340
  316. package/FundraiserService/index.ts +8 -8
  317. package/FundraiserService/schemas.gen.ts +11548 -11548
  318. package/FundraiserService/services.gen.ts +627 -627
  319. package/FundraiserService/types.gen.ts +1793 -1793
  320. package/IdentityService/IdentityServiceClient.ts +86 -86
  321. package/IdentityService/core/ApiError.ts +20 -20
  322. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  323. package/IdentityService/core/ApiResult.ts +6 -6
  324. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  325. package/IdentityService/core/CancelablePromise.ts +125 -125
  326. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  327. package/IdentityService/core/OpenAPI.ts +55 -55
  328. package/IdentityService/core/request.ts +340 -340
  329. package/IdentityService/index.ts +8 -8
  330. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  331. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  332. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  334. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  335. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  336. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  337. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  338. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  370. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  371. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  372. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  381. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  382. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  384. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  385. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  386. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  387. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  388. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  389. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  390. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  391. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  399. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  400. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  401. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  402. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  403. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  404. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  409. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  410. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  411. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  414. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  421. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  422. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  423. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  424. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  425. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  426. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  431. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  432. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  433. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  434. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  435. package/IdentityService/schemas.gen.ts +6928 -6928
  436. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  437. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  438. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  439. package/IdentityService/services/AccountSettingsService.ts +178 -178
  440. package/IdentityService/services/ApplicationsService.ts +199 -199
  441. package/IdentityService/services/ClaimTypeService.ts +149 -149
  442. package/IdentityService/services/ExternalLoginService.ts +27 -27
  443. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  444. package/IdentityService/services/RoleService.ts +269 -269
  445. package/IdentityService/services/ScopesService.ts +164 -164
  446. package/IdentityService/services/SecurityLogService.ts +174 -174
  447. package/IdentityService/services/SettingsService.ts +135 -135
  448. package/IdentityService/services/UserIntegrationService.ts +144 -144
  449. package/IdentityService/services/UserLookupService.ts +120 -120
  450. package/IdentityService/services/UserService.ts +937 -937
  451. package/IdentityService/services.gen.ts +3154 -3154
  452. package/IdentityService/types.gen.ts +5874 -5874
  453. package/LocationService/LocationServiceClient.ts +74 -74
  454. package/LocationService/core/ApiError.ts +20 -20
  455. package/LocationService/core/ApiRequestOptions.ts +12 -12
  456. package/LocationService/core/ApiResult.ts +6 -6
  457. package/LocationService/core/BaseHttpRequest.ts +9 -9
  458. package/LocationService/core/CancelablePromise.ts +125 -125
  459. package/LocationService/core/FetchHttpRequest.ts +21 -21
  460. package/LocationService/core/OpenAPI.ts +55 -55
  461. package/LocationService/core/request.ts +340 -340
  462. package/LocationService/index.ts +8 -8
  463. package/LocationService/schemas.gen.ts +6635 -6635
  464. package/LocationService/services.gen.ts +1797 -1797
  465. package/LocationService/types.gen.ts +3738 -3738
  466. package/MerchantService/MerchantServiceClient.ts +77 -77
  467. package/MerchantService/core/ApiError.ts +20 -20
  468. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  469. package/MerchantService/core/ApiResult.ts +6 -6
  470. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  471. package/MerchantService/core/CancelablePromise.ts +125 -125
  472. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  473. package/MerchantService/core/OpenAPI.ts +55 -55
  474. package/MerchantService/core/request.ts +340 -340
  475. package/MerchantService/index.ts +8 -8
  476. package/MerchantService/schemas.gen.ts +14764 -14764
  477. package/MerchantService/services.gen.ts +1602 -1602
  478. package/MerchantService/types.gen.ts +18875 -18875
  479. package/ProjectService/ProjectServiceClient.ts +47 -47
  480. package/ProjectService/core/ApiError.ts +20 -20
  481. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  482. package/ProjectService/core/ApiResult.ts +6 -6
  483. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  484. package/ProjectService/core/CancelablePromise.ts +125 -125
  485. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  486. package/ProjectService/core/OpenAPI.ts +55 -55
  487. package/ProjectService/core/request.ts +340 -340
  488. package/ProjectService/index.ts +8 -8
  489. package/ProjectService/schemas.gen.ts +5147 -5147
  490. package/ProjectService/services.gen.ts +492 -492
  491. package/ProjectService/types.gen.ts +1303 -1303
  492. package/README.md +40 -39
  493. package/RefundService/RefundServiceClient.ts +44 -44
  494. package/RefundService/core/ApiError.ts +20 -20
  495. package/RefundService/core/ApiRequestOptions.ts +12 -12
  496. package/RefundService/core/ApiResult.ts +6 -6
  497. package/RefundService/core/BaseHttpRequest.ts +9 -9
  498. package/RefundService/core/CancelablePromise.ts +125 -125
  499. package/RefundService/core/FetchHttpRequest.ts +21 -21
  500. package/RefundService/core/OpenAPI.ts +55 -55
  501. package/RefundService/core/request.ts +340 -340
  502. package/RefundService/index.ts +8 -8
  503. package/RefundService/schemas.gen.ts +5237 -5237
  504. package/RefundService/services.gen.ts +347 -347
  505. package/RefundService/types.gen.ts +1042 -1042
  506. package/SaasService/SaasServiceClient.ts +65 -65
  507. package/SaasService/core/ApiError.ts +20 -20
  508. package/SaasService/core/ApiRequestOptions.ts +12 -12
  509. package/SaasService/core/ApiResult.ts +6 -6
  510. package/SaasService/core/BaseHttpRequest.ts +9 -9
  511. package/SaasService/core/CancelablePromise.ts +125 -125
  512. package/SaasService/core/FetchHttpRequest.ts +21 -21
  513. package/SaasService/core/OpenAPI.ts +55 -55
  514. package/SaasService/core/request.ts +340 -340
  515. package/SaasService/index.ts +8 -8
  516. package/SaasService/schemas.gen.ts +5345 -5345
  517. package/SaasService/services.gen.ts +1329 -1329
  518. package/SaasService/types.gen.ts +2737 -2737
  519. package/SettingService/SettingServiceClient.ts +59 -59
  520. package/SettingService/core/ApiError.ts +20 -20
  521. package/SettingService/core/ApiRequestOptions.ts +12 -12
  522. package/SettingService/core/ApiResult.ts +6 -6
  523. package/SettingService/core/BaseHttpRequest.ts +9 -9
  524. package/SettingService/core/CancelablePromise.ts +125 -125
  525. package/SettingService/core/FetchHttpRequest.ts +21 -21
  526. package/SettingService/core/OpenAPI.ts +55 -55
  527. package/SettingService/core/request.ts +340 -340
  528. package/SettingService/index.ts +8 -8
  529. package/SettingService/schemas.gen.ts +5223 -5223
  530. package/SettingService/services.gen.ts +758 -758
  531. package/SettingService/types.gen.ts +1800 -1800
  532. package/TagService/TagServiceClient.ts +47 -47
  533. package/TagService/core/ApiError.ts +20 -20
  534. package/TagService/core/ApiRequestOptions.ts +12 -12
  535. package/TagService/core/ApiResult.ts +6 -6
  536. package/TagService/core/BaseHttpRequest.ts +9 -9
  537. package/TagService/core/CancelablePromise.ts +125 -125
  538. package/TagService/core/FetchHttpRequest.ts +21 -21
  539. package/TagService/core/OpenAPI.ts +55 -55
  540. package/TagService/core/request.ts +340 -340
  541. package/TagService/index.ts +8 -8
  542. package/TagService/schemas.gen.ts +5830 -5830
  543. package/TagService/services.gen.ts +556 -556
  544. package/TagService/types.gen.ts +1487 -1487
  545. package/TravellerService/TravellerServiceClient.ts +59 -59
  546. package/TravellerService/core/ApiError.ts +20 -20
  547. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  548. package/TravellerService/core/ApiResult.ts +6 -6
  549. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  550. package/TravellerService/core/CancelablePromise.ts +125 -125
  551. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  552. package/TravellerService/core/OpenAPI.ts +55 -55
  553. package/TravellerService/core/request.ts +340 -340
  554. package/TravellerService/index.ts +8 -8
  555. package/TravellerService/schemas.gen.ts +6396 -6396
  556. package/TravellerService/services.gen.ts +949 -949
  557. package/TravellerService/types.gen.ts +2220 -2220
  558. package/index.mjs +38 -0
  559. package/package.json +37 -37
  560. package/ProjectService.json +0 -2938
  561. package/generator.mjs +0 -221
  562. package/index.ts +0 -2
  563. package/swagger.json +0 -4795
  564. package/upwithcrowdService/core/ApiError.ts +0 -21
  565. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  566. package/upwithcrowdService/core/ApiResult.ts +0 -7
  567. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  568. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  569. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  570. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  571. package/upwithcrowdService/core/request.ts +0 -341
  572. package/upwithcrowdService/index.ts +0 -9
  573. package/upwithcrowdService/schemas.gen.ts +0 -11974
  574. package/upwithcrowdService/services.gen.ts +0 -6556
  575. package/upwithcrowdService/types.gen.ts +0 -12239
  576. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
@@ -1,2938 +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/ProjectService/project": {
491
- "post": {
492
- "tags": [
493
- "Project"
494
- ],
495
- "requestBody": {
496
- "content": {
497
- "application/json": {
498
- "schema": {
499
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
500
- }
501
- },
502
- "text/json": {
503
- "schema": {
504
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
505
- }
506
- },
507
- "application/*+json": {
508
- "schema": {
509
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto"
510
- }
511
- }
512
- }
513
- },
514
- "responses": {
515
- "200": {
516
- "description": "Success",
517
- "content": {
518
- "text/plain": {
519
- "schema": {
520
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
521
- }
522
- },
523
- "application/json": {
524
- "schema": {
525
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
526
- }
527
- },
528
- "text/json": {
529
- "schema": {
530
- "$ref": "#/components/schemas/UpWithCrowdDemo.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": "Sorting",
664
- "in": "query",
665
- "schema": {
666
- "type": "string"
667
- }
668
- },
669
- {
670
- "name": "SkipCount",
671
- "in": "query",
672
- "schema": {
673
- "maximum": 2147483647,
674
- "minimum": 0,
675
- "type": "integer",
676
- "format": "int32"
677
- }
678
- },
679
- {
680
- "name": "MaxResultCount",
681
- "in": "query",
682
- "schema": {
683
- "maximum": 2147483647,
684
- "minimum": 1,
685
- "type": "integer",
686
- "format": "int32"
687
- }
688
- }
689
- ],
690
- "responses": {
691
- "200": {
692
- "description": "Success",
693
- "content": {
694
- "text/plain": {
695
- "schema": {
696
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
697
- }
698
- },
699
- "application/json": {
700
- "schema": {
701
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
702
- }
703
- },
704
- "text/json": {
705
- "schema": {
706
- "$ref": "#/components/schemas/Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"
707
- }
708
- }
709
- }
710
- },
711
- "403": {
712
- "description": "Forbidden",
713
- "content": {
714
- "text/plain": {
715
- "schema": {
716
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
717
- }
718
- },
719
- "application/json": {
720
- "schema": {
721
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
722
- }
723
- },
724
- "text/json": {
725
- "schema": {
726
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
727
- }
728
- }
729
- }
730
- },
731
- "401": {
732
- "description": "Unauthorized",
733
- "content": {
734
- "text/plain": {
735
- "schema": {
736
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
737
- }
738
- },
739
- "application/json": {
740
- "schema": {
741
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
742
- }
743
- },
744
- "text/json": {
745
- "schema": {
746
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
747
- }
748
- }
749
- }
750
- },
751
- "400": {
752
- "description": "Bad Request",
753
- "content": {
754
- "text/plain": {
755
- "schema": {
756
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
757
- }
758
- },
759
- "application/json": {
760
- "schema": {
761
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
762
- }
763
- },
764
- "text/json": {
765
- "schema": {
766
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
767
- }
768
- }
769
- }
770
- },
771
- "404": {
772
- "description": "Not Found",
773
- "content": {
774
- "text/plain": {
775
- "schema": {
776
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
777
- }
778
- },
779
- "application/json": {
780
- "schema": {
781
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
782
- }
783
- },
784
- "text/json": {
785
- "schema": {
786
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
787
- }
788
- }
789
- }
790
- },
791
- "501": {
792
- "description": "Server Error",
793
- "content": {
794
- "text/plain": {
795
- "schema": {
796
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
797
- }
798
- },
799
- "application/json": {
800
- "schema": {
801
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
802
- }
803
- },
804
- "text/json": {
805
- "schema": {
806
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
807
- }
808
- }
809
- }
810
- },
811
- "500": {
812
- "description": "Server Error",
813
- "content": {
814
- "text/plain": {
815
- "schema": {
816
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
817
- }
818
- },
819
- "application/json": {
820
- "schema": {
821
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
822
- }
823
- },
824
- "text/json": {
825
- "schema": {
826
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
827
- }
828
- }
829
- }
830
- }
831
- }
832
- }
833
- },
834
- "/api/ProjectService/project/{id}": {
835
- "delete": {
836
- "tags": [
837
- "Project"
838
- ],
839
- "parameters": [
840
- {
841
- "name": "id",
842
- "in": "path",
843
- "required": true,
844
- "schema": {
845
- "type": "string",
846
- "format": "uuid"
847
- }
848
- }
849
- ],
850
- "responses": {
851
- "200": {
852
- "description": "Success"
853
- },
854
- "403": {
855
- "description": "Forbidden",
856
- "content": {
857
- "text/plain": {
858
- "schema": {
859
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
860
- }
861
- },
862
- "application/json": {
863
- "schema": {
864
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
865
- }
866
- },
867
- "text/json": {
868
- "schema": {
869
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
870
- }
871
- }
872
- }
873
- },
874
- "401": {
875
- "description": "Unauthorized",
876
- "content": {
877
- "text/plain": {
878
- "schema": {
879
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
880
- }
881
- },
882
- "application/json": {
883
- "schema": {
884
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
885
- }
886
- },
887
- "text/json": {
888
- "schema": {
889
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
890
- }
891
- }
892
- }
893
- },
894
- "400": {
895
- "description": "Bad Request",
896
- "content": {
897
- "text/plain": {
898
- "schema": {
899
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
900
- }
901
- },
902
- "application/json": {
903
- "schema": {
904
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
905
- }
906
- },
907
- "text/json": {
908
- "schema": {
909
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
910
- }
911
- }
912
- }
913
- },
914
- "404": {
915
- "description": "Not Found",
916
- "content": {
917
- "text/plain": {
918
- "schema": {
919
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
920
- }
921
- },
922
- "application/json": {
923
- "schema": {
924
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
925
- }
926
- },
927
- "text/json": {
928
- "schema": {
929
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
930
- }
931
- }
932
- }
933
- },
934
- "501": {
935
- "description": "Server Error",
936
- "content": {
937
- "text/plain": {
938
- "schema": {
939
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
940
- }
941
- },
942
- "application/json": {
943
- "schema": {
944
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
945
- }
946
- },
947
- "text/json": {
948
- "schema": {
949
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
950
- }
951
- }
952
- }
953
- },
954
- "500": {
955
- "description": "Server Error",
956
- "content": {
957
- "text/plain": {
958
- "schema": {
959
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
960
- }
961
- },
962
- "application/json": {
963
- "schema": {
964
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
965
- }
966
- },
967
- "text/json": {
968
- "schema": {
969
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
970
- }
971
- }
972
- }
973
- }
974
- }
975
- },
976
- "get": {
977
- "tags": [
978
- "Project"
979
- ],
980
- "parameters": [
981
- {
982
- "name": "id",
983
- "in": "path",
984
- "required": true,
985
- "schema": {
986
- "type": "string",
987
- "format": "uuid"
988
- }
989
- }
990
- ],
991
- "responses": {
992
- "200": {
993
- "description": "Success",
994
- "content": {
995
- "text/plain": {
996
- "schema": {
997
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
998
- }
999
- },
1000
- "application/json": {
1001
- "schema": {
1002
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1003
- }
1004
- },
1005
- "text/json": {
1006
- "schema": {
1007
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1008
- }
1009
- }
1010
- }
1011
- },
1012
- "403": {
1013
- "description": "Forbidden",
1014
- "content": {
1015
- "text/plain": {
1016
- "schema": {
1017
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1018
- }
1019
- },
1020
- "application/json": {
1021
- "schema": {
1022
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1023
- }
1024
- },
1025
- "text/json": {
1026
- "schema": {
1027
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1028
- }
1029
- }
1030
- }
1031
- },
1032
- "401": {
1033
- "description": "Unauthorized",
1034
- "content": {
1035
- "text/plain": {
1036
- "schema": {
1037
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1038
- }
1039
- },
1040
- "application/json": {
1041
- "schema": {
1042
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1043
- }
1044
- },
1045
- "text/json": {
1046
- "schema": {
1047
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1048
- }
1049
- }
1050
- }
1051
- },
1052
- "400": {
1053
- "description": "Bad Request",
1054
- "content": {
1055
- "text/plain": {
1056
- "schema": {
1057
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1058
- }
1059
- },
1060
- "application/json": {
1061
- "schema": {
1062
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1063
- }
1064
- },
1065
- "text/json": {
1066
- "schema": {
1067
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1068
- }
1069
- }
1070
- }
1071
- },
1072
- "404": {
1073
- "description": "Not Found",
1074
- "content": {
1075
- "text/plain": {
1076
- "schema": {
1077
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1078
- }
1079
- },
1080
- "application/json": {
1081
- "schema": {
1082
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1083
- }
1084
- },
1085
- "text/json": {
1086
- "schema": {
1087
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1088
- }
1089
- }
1090
- }
1091
- },
1092
- "501": {
1093
- "description": "Server Error",
1094
- "content": {
1095
- "text/plain": {
1096
- "schema": {
1097
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1098
- }
1099
- },
1100
- "application/json": {
1101
- "schema": {
1102
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1103
- }
1104
- },
1105
- "text/json": {
1106
- "schema": {
1107
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1108
- }
1109
- }
1110
- }
1111
- },
1112
- "500": {
1113
- "description": "Server Error",
1114
- "content": {
1115
- "text/plain": {
1116
- "schema": {
1117
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1118
- }
1119
- },
1120
- "application/json": {
1121
- "schema": {
1122
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1123
- }
1124
- },
1125
- "text/json": {
1126
- "schema": {
1127
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1128
- }
1129
- }
1130
- }
1131
- }
1132
- }
1133
- },
1134
- "put": {
1135
- "tags": [
1136
- "Project"
1137
- ],
1138
- "parameters": [
1139
- {
1140
- "name": "id",
1141
- "in": "path",
1142
- "required": true,
1143
- "schema": {
1144
- "type": "string",
1145
- "format": "uuid"
1146
- }
1147
- }
1148
- ],
1149
- "requestBody": {
1150
- "content": {
1151
- "application/json": {
1152
- "schema": {
1153
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1154
- }
1155
- },
1156
- "text/json": {
1157
- "schema": {
1158
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1159
- }
1160
- },
1161
- "application/*+json": {
1162
- "schema": {
1163
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto"
1164
- }
1165
- }
1166
- }
1167
- },
1168
- "responses": {
1169
- "200": {
1170
- "description": "Success",
1171
- "content": {
1172
- "text/plain": {
1173
- "schema": {
1174
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1175
- }
1176
- },
1177
- "application/json": {
1178
- "schema": {
1179
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1180
- }
1181
- },
1182
- "text/json": {
1183
- "schema": {
1184
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1185
- }
1186
- }
1187
- }
1188
- },
1189
- "403": {
1190
- "description": "Forbidden",
1191
- "content": {
1192
- "text/plain": {
1193
- "schema": {
1194
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1195
- }
1196
- },
1197
- "application/json": {
1198
- "schema": {
1199
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1200
- }
1201
- },
1202
- "text/json": {
1203
- "schema": {
1204
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1205
- }
1206
- }
1207
- }
1208
- },
1209
- "401": {
1210
- "description": "Unauthorized",
1211
- "content": {
1212
- "text/plain": {
1213
- "schema": {
1214
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1215
- }
1216
- },
1217
- "application/json": {
1218
- "schema": {
1219
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1220
- }
1221
- },
1222
- "text/json": {
1223
- "schema": {
1224
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1225
- }
1226
- }
1227
- }
1228
- },
1229
- "400": {
1230
- "description": "Bad Request",
1231
- "content": {
1232
- "text/plain": {
1233
- "schema": {
1234
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1235
- }
1236
- },
1237
- "application/json": {
1238
- "schema": {
1239
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1240
- }
1241
- },
1242
- "text/json": {
1243
- "schema": {
1244
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1245
- }
1246
- }
1247
- }
1248
- },
1249
- "404": {
1250
- "description": "Not Found",
1251
- "content": {
1252
- "text/plain": {
1253
- "schema": {
1254
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1255
- }
1256
- },
1257
- "application/json": {
1258
- "schema": {
1259
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1260
- }
1261
- },
1262
- "text/json": {
1263
- "schema": {
1264
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1265
- }
1266
- }
1267
- }
1268
- },
1269
- "501": {
1270
- "description": "Server Error",
1271
- "content": {
1272
- "text/plain": {
1273
- "schema": {
1274
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1275
- }
1276
- },
1277
- "application/json": {
1278
- "schema": {
1279
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1280
- }
1281
- },
1282
- "text/json": {
1283
- "schema": {
1284
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1285
- }
1286
- }
1287
- }
1288
- },
1289
- "500": {
1290
- "description": "Server Error",
1291
- "content": {
1292
- "text/plain": {
1293
- "schema": {
1294
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1295
- }
1296
- },
1297
- "application/json": {
1298
- "schema": {
1299
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1300
- }
1301
- },
1302
- "text/json": {
1303
- "schema": {
1304
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1305
- }
1306
- }
1307
- }
1308
- }
1309
- }
1310
- }
1311
- },
1312
- "/api/SampleService/sample": {
1313
- "get": {
1314
- "tags": [
1315
- "SampleService"
1316
- ],
1317
- "responses": {
1318
- "200": {
1319
- "description": "Success",
1320
- "content": {
1321
- "text/plain": {
1322
- "schema": {
1323
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1324
- }
1325
- },
1326
- "application/json": {
1327
- "schema": {
1328
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1329
- }
1330
- },
1331
- "text/json": {
1332
- "schema": {
1333
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1334
- }
1335
- }
1336
- }
1337
- },
1338
- "403": {
1339
- "description": "Forbidden",
1340
- "content": {
1341
- "text/plain": {
1342
- "schema": {
1343
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1344
- }
1345
- },
1346
- "application/json": {
1347
- "schema": {
1348
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1349
- }
1350
- },
1351
- "text/json": {
1352
- "schema": {
1353
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1354
- }
1355
- }
1356
- }
1357
- },
1358
- "401": {
1359
- "description": "Unauthorized",
1360
- "content": {
1361
- "text/plain": {
1362
- "schema": {
1363
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1364
- }
1365
- },
1366
- "application/json": {
1367
- "schema": {
1368
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1369
- }
1370
- },
1371
- "text/json": {
1372
- "schema": {
1373
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1374
- }
1375
- }
1376
- }
1377
- },
1378
- "400": {
1379
- "description": "Bad Request",
1380
- "content": {
1381
- "text/plain": {
1382
- "schema": {
1383
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1384
- }
1385
- },
1386
- "application/json": {
1387
- "schema": {
1388
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1389
- }
1390
- },
1391
- "text/json": {
1392
- "schema": {
1393
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1394
- }
1395
- }
1396
- }
1397
- },
1398
- "404": {
1399
- "description": "Not Found",
1400
- "content": {
1401
- "text/plain": {
1402
- "schema": {
1403
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1404
- }
1405
- },
1406
- "application/json": {
1407
- "schema": {
1408
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1409
- }
1410
- },
1411
- "text/json": {
1412
- "schema": {
1413
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1414
- }
1415
- }
1416
- }
1417
- },
1418
- "501": {
1419
- "description": "Server Error",
1420
- "content": {
1421
- "text/plain": {
1422
- "schema": {
1423
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1424
- }
1425
- },
1426
- "application/json": {
1427
- "schema": {
1428
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1429
- }
1430
- },
1431
- "text/json": {
1432
- "schema": {
1433
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1434
- }
1435
- }
1436
- }
1437
- },
1438
- "500": {
1439
- "description": "Server Error",
1440
- "content": {
1441
- "text/plain": {
1442
- "schema": {
1443
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1444
- }
1445
- },
1446
- "application/json": {
1447
- "schema": {
1448
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1449
- }
1450
- },
1451
- "text/json": {
1452
- "schema": {
1453
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1454
- }
1455
- }
1456
- }
1457
- }
1458
- }
1459
- }
1460
- },
1461
- "/api/SampleService/sample/authorized": {
1462
- "get": {
1463
- "tags": [
1464
- "SampleService"
1465
- ],
1466
- "responses": {
1467
- "200": {
1468
- "description": "Success",
1469
- "content": {
1470
- "text/plain": {
1471
- "schema": {
1472
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1473
- }
1474
- },
1475
- "application/json": {
1476
- "schema": {
1477
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1478
- }
1479
- },
1480
- "text/json": {
1481
- "schema": {
1482
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Samples.SampleDto"
1483
- }
1484
- }
1485
- }
1486
- },
1487
- "403": {
1488
- "description": "Forbidden",
1489
- "content": {
1490
- "text/plain": {
1491
- "schema": {
1492
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1493
- }
1494
- },
1495
- "application/json": {
1496
- "schema": {
1497
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1498
- }
1499
- },
1500
- "text/json": {
1501
- "schema": {
1502
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1503
- }
1504
- }
1505
- }
1506
- },
1507
- "401": {
1508
- "description": "Unauthorized",
1509
- "content": {
1510
- "text/plain": {
1511
- "schema": {
1512
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1513
- }
1514
- },
1515
- "application/json": {
1516
- "schema": {
1517
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1518
- }
1519
- },
1520
- "text/json": {
1521
- "schema": {
1522
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1523
- }
1524
- }
1525
- }
1526
- },
1527
- "400": {
1528
- "description": "Bad Request",
1529
- "content": {
1530
- "text/plain": {
1531
- "schema": {
1532
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1533
- }
1534
- },
1535
- "application/json": {
1536
- "schema": {
1537
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1538
- }
1539
- },
1540
- "text/json": {
1541
- "schema": {
1542
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1543
- }
1544
- }
1545
- }
1546
- },
1547
- "404": {
1548
- "description": "Not Found",
1549
- "content": {
1550
- "text/plain": {
1551
- "schema": {
1552
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1553
- }
1554
- },
1555
- "application/json": {
1556
- "schema": {
1557
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1558
- }
1559
- },
1560
- "text/json": {
1561
- "schema": {
1562
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1563
- }
1564
- }
1565
- }
1566
- },
1567
- "501": {
1568
- "description": "Server Error",
1569
- "content": {
1570
- "text/plain": {
1571
- "schema": {
1572
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1573
- }
1574
- },
1575
- "application/json": {
1576
- "schema": {
1577
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1578
- }
1579
- },
1580
- "text/json": {
1581
- "schema": {
1582
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1583
- }
1584
- }
1585
- }
1586
- },
1587
- "500": {
1588
- "description": "Server Error",
1589
- "content": {
1590
- "text/plain": {
1591
- "schema": {
1592
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1593
- }
1594
- },
1595
- "application/json": {
1596
- "schema": {
1597
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1598
- }
1599
- },
1600
- "text/json": {
1601
- "schema": {
1602
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorResponse"
1603
- }
1604
- }
1605
- }
1606
- }
1607
- }
1608
- }
1609
- }
1610
- },
1611
- "components": {
1612
- "schemas": {
1613
- "UpWithCrowdDemo.ProjectService.Projects.ProjectDto": {
1614
- "type": "object",
1615
- "properties": {
1616
- "id": {
1617
- "type": "string",
1618
- "format": "uuid"
1619
- },
1620
- "projectName": {
1621
- "type": "string",
1622
- "nullable": true
1623
- },
1624
- "projectDefinition": {
1625
- "type": "string",
1626
- "nullable": true
1627
- },
1628
- "cashValue": {
1629
- "type": "integer",
1630
- "format": "int64"
1631
- },
1632
- "fundCollectionType": {
1633
- "type": "string",
1634
- "nullable": true
1635
- },
1636
- "additionalFundRate": {
1637
- "type": "string",
1638
- "nullable": true
1639
- },
1640
- "qualifiedFundRate": {
1641
- "type": "string",
1642
- "nullable": true
1643
- },
1644
- "fundNominalAmount": {
1645
- "type": "integer",
1646
- "format": "int64"
1647
- },
1648
- "fundableAmount": {
1649
- "type": "integer",
1650
- "format": "int64"
1651
- },
1652
- "overFunding": {
1653
- "type": "string"
1654
- },
1655
- "privilege": {
1656
- "type": "string",
1657
- "nullable": true
1658
- },
1659
- "projectStartDate": {
1660
- "type": "string",
1661
- "format": "date-time"
1662
- },
1663
- "projectEndDate": {
1664
- "type": "string",
1665
- "format": "date-time"
1666
- }
1667
- },
1668
- "additionalProperties": false
1669
- },
1670
- "UpWithCrowdDemo.ProjectService.ProjectsDto.SaveProjectDto": {
1671
- "type": "object",
1672
- "properties": {
1673
- "projectName": {
1674
- "type": "string",
1675
- "nullable": true
1676
- },
1677
- "projectDefinition": {
1678
- "type": "string",
1679
- "nullable": true
1680
- },
1681
- "cashValue": {
1682
- "type": "integer",
1683
- "format": "int64"
1684
- },
1685
- "additionalFundRate": {
1686
- "type": "string",
1687
- "nullable": true
1688
- },
1689
- "qualifiedFundRate": {
1690
- "type": "string",
1691
- "nullable": true
1692
- },
1693
- "fundNominalAmount": {
1694
- "type": "integer",
1695
- "format": "int64"
1696
- },
1697
- "fundableAmount": {
1698
- "type": "integer",
1699
- "format": "int64"
1700
- },
1701
- "overFunding": {
1702
- "type": "string"
1703
- },
1704
- "privilege": {
1705
- "type": "string",
1706
- "nullable": true
1707
- },
1708
- "projectStartDate": {
1709
- "type": "string",
1710
- "format": "date-time"
1711
- },
1712
- "projectEndDate": {
1713
- "type": "string",
1714
- "format": "date-time"
1715
- },
1716
- "fundCollectionType": {
1717
- "type": "string",
1718
- "nullable": true
1719
- }
1720
- },
1721
- "additionalProperties": false
1722
- },
1723
- "UpWithCrowdDemo.ProjectService.ProjectsDto.UpdateProjectDto": {
1724
- "type": "object",
1725
- "properties": {
1726
- "projectName": {
1727
- "type": "string",
1728
- "nullable": true
1729
- },
1730
- "projectDefinition": {
1731
- "type": "string",
1732
- "nullable": true
1733
- },
1734
- "cashValue": {
1735
- "type": "integer",
1736
- "format": "int64"
1737
- },
1738
- "additionalFundRate": {
1739
- "type": "string",
1740
- "nullable": true
1741
- },
1742
- "qualifiedFundRate": {
1743
- "type": "string",
1744
- "nullable": true
1745
- },
1746
- "fundNominalAmount": {
1747
- "type": "integer",
1748
- "format": "int64"
1749
- },
1750
- "fundableAmount": {
1751
- "type": "integer",
1752
- "format": "int64"
1753
- },
1754
- "overFunding": {
1755
- "type": "string"
1756
- },
1757
- "privilege": {
1758
- "type": "string",
1759
- "nullable": true
1760
- },
1761
- "projectStartDate": {
1762
- "type": "string",
1763
- "format": "date-time"
1764
- },
1765
- "projectEndDate": {
1766
- "type": "string",
1767
- "format": "date-time"
1768
- },
1769
- "projectId": {
1770
- "type": "string",
1771
- "format": "uuid"
1772
- },
1773
- "fundCollectType": {
1774
- "type": "string",
1775
- "nullable": true
1776
- }
1777
- },
1778
- "additionalProperties": false
1779
- },
1780
- "UpWithCrowdDemo.ProjectService.Samples.SampleDto": {
1781
- "type": "object",
1782
- "properties": {
1783
- "value": {
1784
- "type": "integer",
1785
- "format": "int32"
1786
- }
1787
- },
1788
- "additionalProperties": false
1789
- },
1790
- "Volo.Abp.Application.Dtos.PagedResultDto`1[[UpWithCrowdDemo.ProjectService.Projects.ProjectDto, UpWithCrowdDemo.ProjectService.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]": {
1791
- "type": "object",
1792
- "properties": {
1793
- "items": {
1794
- "type": "array",
1795
- "items": {
1796
- "$ref": "#/components/schemas/UpWithCrowdDemo.ProjectService.Projects.ProjectDto"
1797
- },
1798
- "nullable": true
1799
- },
1800
- "totalCount": {
1801
- "type": "integer",
1802
- "format": "int64"
1803
- }
1804
- },
1805
- "additionalProperties": false
1806
- },
1807
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto": {
1808
- "type": "object",
1809
- "properties": {
1810
- "grantedPolicies": {
1811
- "type": "object",
1812
- "additionalProperties": {
1813
- "type": "boolean"
1814
- },
1815
- "nullable": true
1816
- }
1817
- },
1818
- "additionalProperties": false
1819
- },
1820
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationConfigurationDto": {
1821
- "type": "object",
1822
- "properties": {
1823
- "localization": {
1824
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto"
1825
- },
1826
- "auth": {
1827
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationAuthConfigurationDto"
1828
- },
1829
- "setting": {
1830
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto"
1831
- },
1832
- "currentUser": {
1833
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto"
1834
- },
1835
- "features": {
1836
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto"
1837
- },
1838
- "globalFeatures": {
1839
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto"
1840
- },
1841
- "multiTenancy": {
1842
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto"
1843
- },
1844
- "currentTenant": {
1845
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto"
1846
- },
1847
- "timing": {
1848
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto"
1849
- },
1850
- "clock": {
1851
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto"
1852
- },
1853
- "objectExtensions": {
1854
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto"
1855
- },
1856
- "extraProperties": {
1857
- "type": "object",
1858
- "additionalProperties": { },
1859
- "nullable": true
1860
- }
1861
- },
1862
- "additionalProperties": false
1863
- },
1864
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationFeatureConfigurationDto": {
1865
- "type": "object",
1866
- "properties": {
1867
- "values": {
1868
- "type": "object",
1869
- "additionalProperties": {
1870
- "type": "string",
1871
- "nullable": true
1872
- },
1873
- "nullable": true
1874
- }
1875
- },
1876
- "additionalProperties": false
1877
- },
1878
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationGlobalFeatureConfigurationDto": {
1879
- "type": "object",
1880
- "properties": {
1881
- "enabledFeatures": {
1882
- "uniqueItems": true,
1883
- "type": "array",
1884
- "items": {
1885
- "type": "string"
1886
- },
1887
- "nullable": true
1888
- }
1889
- },
1890
- "additionalProperties": false
1891
- },
1892
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationConfigurationDto": {
1893
- "type": "object",
1894
- "properties": {
1895
- "values": {
1896
- "type": "object",
1897
- "additionalProperties": {
1898
- "type": "object",
1899
- "additionalProperties": {
1900
- "type": "string"
1901
- }
1902
- },
1903
- "nullable": true
1904
- },
1905
- "resources": {
1906
- "type": "object",
1907
- "additionalProperties": {
1908
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
1909
- },
1910
- "nullable": true
1911
- },
1912
- "languages": {
1913
- "type": "array",
1914
- "items": {
1915
- "$ref": "#/components/schemas/Volo.Abp.Localization.LanguageInfo"
1916
- },
1917
- "nullable": true
1918
- },
1919
- "currentCulture": {
1920
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto"
1921
- },
1922
- "defaultResourceName": {
1923
- "type": "string",
1924
- "nullable": true
1925
- },
1926
- "languagesMap": {
1927
- "type": "object",
1928
- "additionalProperties": {
1929
- "type": "array",
1930
- "items": {
1931
- "$ref": "#/components/schemas/Volo.Abp.NameValue"
1932
- }
1933
- },
1934
- "nullable": true
1935
- },
1936
- "languageFilesMap": {
1937
- "type": "object",
1938
- "additionalProperties": {
1939
- "type": "array",
1940
- "items": {
1941
- "$ref": "#/components/schemas/Volo.Abp.NameValue"
1942
- }
1943
- },
1944
- "nullable": true
1945
- }
1946
- },
1947
- "additionalProperties": false
1948
- },
1949
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationDto": {
1950
- "type": "object",
1951
- "properties": {
1952
- "resources": {
1953
- "type": "object",
1954
- "additionalProperties": {
1955
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto"
1956
- },
1957
- "nullable": true
1958
- }
1959
- },
1960
- "additionalProperties": false
1961
- },
1962
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationLocalizationResourceDto": {
1963
- "type": "object",
1964
- "properties": {
1965
- "texts": {
1966
- "type": "object",
1967
- "additionalProperties": {
1968
- "type": "string"
1969
- },
1970
- "nullable": true
1971
- },
1972
- "baseResources": {
1973
- "type": "array",
1974
- "items": {
1975
- "type": "string"
1976
- },
1977
- "nullable": true
1978
- }
1979
- },
1980
- "additionalProperties": false
1981
- },
1982
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ApplicationSettingConfigurationDto": {
1983
- "type": "object",
1984
- "properties": {
1985
- "values": {
1986
- "type": "object",
1987
- "additionalProperties": {
1988
- "type": "string",
1989
- "nullable": true
1990
- },
1991
- "nullable": true
1992
- }
1993
- },
1994
- "additionalProperties": false
1995
- },
1996
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ClockDto": {
1997
- "type": "object",
1998
- "properties": {
1999
- "kind": {
2000
- "type": "string",
2001
- "nullable": true
2002
- }
2003
- },
2004
- "additionalProperties": false
2005
- },
2006
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentCultureDto": {
2007
- "type": "object",
2008
- "properties": {
2009
- "displayName": {
2010
- "type": "string",
2011
- "nullable": true
2012
- },
2013
- "englishName": {
2014
- "type": "string",
2015
- "nullable": true
2016
- },
2017
- "threeLetterIsoLanguageName": {
2018
- "type": "string",
2019
- "nullable": true
2020
- },
2021
- "twoLetterIsoLanguageName": {
2022
- "type": "string",
2023
- "nullable": true
2024
- },
2025
- "isRightToLeft": {
2026
- "type": "boolean"
2027
- },
2028
- "cultureName": {
2029
- "type": "string",
2030
- "nullable": true
2031
- },
2032
- "name": {
2033
- "type": "string",
2034
- "nullable": true
2035
- },
2036
- "nativeName": {
2037
- "type": "string",
2038
- "nullable": true
2039
- },
2040
- "dateTimeFormat": {
2041
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto"
2042
- }
2043
- },
2044
- "additionalProperties": false
2045
- },
2046
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.CurrentUserDto": {
2047
- "type": "object",
2048
- "properties": {
2049
- "isAuthenticated": {
2050
- "type": "boolean"
2051
- },
2052
- "id": {
2053
- "type": "string",
2054
- "format": "uuid",
2055
- "nullable": true
2056
- },
2057
- "tenantId": {
2058
- "type": "string",
2059
- "format": "uuid",
2060
- "nullable": true
2061
- },
2062
- "impersonatorUserId": {
2063
- "type": "string",
2064
- "format": "uuid",
2065
- "nullable": true
2066
- },
2067
- "impersonatorTenantId": {
2068
- "type": "string",
2069
- "format": "uuid",
2070
- "nullable": true
2071
- },
2072
- "impersonatorUserName": {
2073
- "type": "string",
2074
- "nullable": true
2075
- },
2076
- "impersonatorTenantName": {
2077
- "type": "string",
2078
- "nullable": true
2079
- },
2080
- "userName": {
2081
- "type": "string",
2082
- "nullable": true
2083
- },
2084
- "name": {
2085
- "type": "string",
2086
- "nullable": true
2087
- },
2088
- "surName": {
2089
- "type": "string",
2090
- "nullable": true
2091
- },
2092
- "email": {
2093
- "type": "string",
2094
- "nullable": true
2095
- },
2096
- "emailVerified": {
2097
- "type": "boolean"
2098
- },
2099
- "phoneNumber": {
2100
- "type": "string",
2101
- "nullable": true
2102
- },
2103
- "phoneNumberVerified": {
2104
- "type": "boolean"
2105
- },
2106
- "roles": {
2107
- "type": "array",
2108
- "items": {
2109
- "type": "string"
2110
- },
2111
- "nullable": true
2112
- }
2113
- },
2114
- "additionalProperties": false
2115
- },
2116
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.DateTimeFormatDto": {
2117
- "type": "object",
2118
- "properties": {
2119
- "calendarAlgorithmType": {
2120
- "type": "string",
2121
- "nullable": true
2122
- },
2123
- "dateTimeFormatLong": {
2124
- "type": "string",
2125
- "nullable": true
2126
- },
2127
- "shortDatePattern": {
2128
- "type": "string",
2129
- "nullable": true
2130
- },
2131
- "fullDateTimePattern": {
2132
- "type": "string",
2133
- "nullable": true
2134
- },
2135
- "dateSeparator": {
2136
- "type": "string",
2137
- "nullable": true
2138
- },
2139
- "shortTimePattern": {
2140
- "type": "string",
2141
- "nullable": true
2142
- },
2143
- "longTimePattern": {
2144
- "type": "string",
2145
- "nullable": true
2146
- }
2147
- },
2148
- "additionalProperties": false
2149
- },
2150
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone": {
2151
- "type": "object",
2152
- "properties": {
2153
- "timeZoneName": {
2154
- "type": "string",
2155
- "nullable": true
2156
- }
2157
- },
2158
- "additionalProperties": false
2159
- },
2160
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto": {
2161
- "type": "object",
2162
- "properties": {
2163
- "properties": {
2164
- "type": "object",
2165
- "additionalProperties": {
2166
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto"
2167
- },
2168
- "nullable": true
2169
- },
2170
- "configuration": {
2171
- "type": "object",
2172
- "additionalProperties": { },
2173
- "nullable": true
2174
- }
2175
- },
2176
- "additionalProperties": false
2177
- },
2178
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto": {
2179
- "type": "object",
2180
- "properties": {
2181
- "fields": {
2182
- "type": "array",
2183
- "items": {
2184
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto"
2185
- },
2186
- "nullable": true
2187
- },
2188
- "localizationResource": {
2189
- "type": "string",
2190
- "nullable": true
2191
- }
2192
- },
2193
- "additionalProperties": false
2194
- },
2195
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumFieldDto": {
2196
- "type": "object",
2197
- "properties": {
2198
- "name": {
2199
- "type": "string",
2200
- "nullable": true
2201
- },
2202
- "value": {
2203
- "nullable": true
2204
- }
2205
- },
2206
- "additionalProperties": false
2207
- },
2208
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto": {
2209
- "type": "object",
2210
- "properties": {
2211
- "isAvailable": {
2212
- "type": "boolean"
2213
- }
2214
- },
2215
- "additionalProperties": false
2216
- },
2217
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto": {
2218
- "type": "object",
2219
- "properties": {
2220
- "onGet": {
2221
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto"
2222
- },
2223
- "onCreate": {
2224
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiCreateDto"
2225
- },
2226
- "onUpdate": {
2227
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto"
2228
- }
2229
- },
2230
- "additionalProperties": false
2231
- },
2232
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiGetDto": {
2233
- "type": "object",
2234
- "properties": {
2235
- "isAvailable": {
2236
- "type": "boolean"
2237
- }
2238
- },
2239
- "additionalProperties": false
2240
- },
2241
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiUpdateDto": {
2242
- "type": "object",
2243
- "properties": {
2244
- "isAvailable": {
2245
- "type": "boolean"
2246
- }
2247
- },
2248
- "additionalProperties": false
2249
- },
2250
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto": {
2251
- "type": "object",
2252
- "properties": {
2253
- "typeSimple": {
2254
- "type": "string",
2255
- "nullable": true
2256
- },
2257
- "config": {
2258
- "type": "object",
2259
- "additionalProperties": { },
2260
- "nullable": true
2261
- }
2262
- },
2263
- "additionalProperties": false
2264
- },
2265
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyDto": {
2266
- "type": "object",
2267
- "properties": {
2268
- "type": {
2269
- "type": "string",
2270
- "nullable": true
2271
- },
2272
- "typeSimple": {
2273
- "type": "string",
2274
- "nullable": true
2275
- },
2276
- "displayName": {
2277
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto"
2278
- },
2279
- "api": {
2280
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyApiDto"
2281
- },
2282
- "ui": {
2283
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto"
2284
- },
2285
- "attributes": {
2286
- "type": "array",
2287
- "items": {
2288
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyAttributeDto"
2289
- },
2290
- "nullable": true
2291
- },
2292
- "configuration": {
2293
- "type": "object",
2294
- "additionalProperties": { },
2295
- "nullable": true
2296
- },
2297
- "defaultValue": {
2298
- "nullable": true
2299
- }
2300
- },
2301
- "additionalProperties": false
2302
- },
2303
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiDto": {
2304
- "type": "object",
2305
- "properties": {
2306
- "onTable": {
2307
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto"
2308
- },
2309
- "onCreateForm": {
2310
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
2311
- },
2312
- "onEditForm": {
2313
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto"
2314
- },
2315
- "lookup": {
2316
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto"
2317
- }
2318
- },
2319
- "additionalProperties": false
2320
- },
2321
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiFormDto": {
2322
- "type": "object",
2323
- "properties": {
2324
- "isVisible": {
2325
- "type": "boolean"
2326
- }
2327
- },
2328
- "additionalProperties": false
2329
- },
2330
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiLookupDto": {
2331
- "type": "object",
2332
- "properties": {
2333
- "url": {
2334
- "type": "string",
2335
- "nullable": true
2336
- },
2337
- "resultListPropertyName": {
2338
- "type": "string",
2339
- "nullable": true
2340
- },
2341
- "displayPropertyName": {
2342
- "type": "string",
2343
- "nullable": true
2344
- },
2345
- "valuePropertyName": {
2346
- "type": "string",
2347
- "nullable": true
2348
- },
2349
- "filterParamName": {
2350
- "type": "string",
2351
- "nullable": true
2352
- }
2353
- },
2354
- "additionalProperties": false
2355
- },
2356
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionPropertyUiTableDto": {
2357
- "type": "object",
2358
- "properties": {
2359
- "isVisible": {
2360
- "type": "boolean"
2361
- }
2362
- },
2363
- "additionalProperties": false
2364
- },
2365
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.LocalizableStringDto": {
2366
- "type": "object",
2367
- "properties": {
2368
- "name": {
2369
- "type": "string",
2370
- "nullable": true
2371
- },
2372
- "resource": {
2373
- "type": "string",
2374
- "nullable": true
2375
- }
2376
- },
2377
- "additionalProperties": false
2378
- },
2379
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto": {
2380
- "type": "object",
2381
- "properties": {
2382
- "entities": {
2383
- "type": "object",
2384
- "additionalProperties": {
2385
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.EntityExtensionDto"
2386
- },
2387
- "nullable": true
2388
- },
2389
- "configuration": {
2390
- "type": "object",
2391
- "additionalProperties": { },
2392
- "nullable": true
2393
- }
2394
- },
2395
- "additionalProperties": false
2396
- },
2397
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ObjectExtensionsDto": {
2398
- "type": "object",
2399
- "properties": {
2400
- "modules": {
2401
- "type": "object",
2402
- "additionalProperties": {
2403
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ModuleExtensionDto"
2404
- },
2405
- "nullable": true
2406
- },
2407
- "enums": {
2408
- "type": "object",
2409
- "additionalProperties": {
2410
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.ObjectExtending.ExtensionEnumDto"
2411
- },
2412
- "nullable": true
2413
- }
2414
- },
2415
- "additionalProperties": false
2416
- },
2417
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone": {
2418
- "type": "object",
2419
- "properties": {
2420
- "iana": {
2421
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.IanaTimeZone"
2422
- },
2423
- "windows": {
2424
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone"
2425
- }
2426
- },
2427
- "additionalProperties": false
2428
- },
2429
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimingDto": {
2430
- "type": "object",
2431
- "properties": {
2432
- "timeZone": {
2433
- "$ref": "#/components/schemas/Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.TimeZone"
2434
- }
2435
- },
2436
- "additionalProperties": false
2437
- },
2438
- "Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations.WindowsTimeZone": {
2439
- "type": "object",
2440
- "properties": {
2441
- "timeZoneId": {
2442
- "type": "string",
2443
- "nullable": true
2444
- }
2445
- },
2446
- "additionalProperties": false
2447
- },
2448
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.CurrentTenantDto": {
2449
- "type": "object",
2450
- "properties": {
2451
- "id": {
2452
- "type": "string",
2453
- "format": "uuid",
2454
- "nullable": true
2455
- },
2456
- "name": {
2457
- "type": "string",
2458
- "nullable": true
2459
- },
2460
- "isAvailable": {
2461
- "type": "boolean"
2462
- }
2463
- },
2464
- "additionalProperties": false
2465
- },
2466
- "Volo.Abp.AspNetCore.Mvc.MultiTenancy.MultiTenancyInfoDto": {
2467
- "type": "object",
2468
- "properties": {
2469
- "isEnabled": {
2470
- "type": "boolean"
2471
- }
2472
- },
2473
- "additionalProperties": false
2474
- },
2475
- "Volo.Abp.Http.Modeling.ActionApiDescriptionModel": {
2476
- "type": "object",
2477
- "properties": {
2478
- "uniqueName": {
2479
- "type": "string",
2480
- "nullable": true
2481
- },
2482
- "name": {
2483
- "type": "string",
2484
- "nullable": true
2485
- },
2486
- "httpMethod": {
2487
- "type": "string",
2488
- "nullable": true
2489
- },
2490
- "url": {
2491
- "type": "string",
2492
- "nullable": true
2493
- },
2494
- "supportedVersions": {
2495
- "type": "array",
2496
- "items": {
2497
- "type": "string"
2498
- },
2499
- "nullable": true
2500
- },
2501
- "parametersOnMethod": {
2502
- "type": "array",
2503
- "items": {
2504
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
2505
- },
2506
- "nullable": true
2507
- },
2508
- "parameters": {
2509
- "type": "array",
2510
- "items": {
2511
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ParameterApiDescriptionModel"
2512
- },
2513
- "nullable": true
2514
- },
2515
- "returnValue": {
2516
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
2517
- },
2518
- "allowAnonymous": {
2519
- "type": "boolean",
2520
- "nullable": true
2521
- },
2522
- "implementFrom": {
2523
- "type": "string",
2524
- "nullable": true
2525
- }
2526
- },
2527
- "additionalProperties": false
2528
- },
2529
- "Volo.Abp.Http.Modeling.ApplicationApiDescriptionModel": {
2530
- "type": "object",
2531
- "properties": {
2532
- "modules": {
2533
- "type": "object",
2534
- "additionalProperties": {
2535
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ModuleApiDescriptionModel"
2536
- },
2537
- "nullable": true
2538
- },
2539
- "types": {
2540
- "type": "object",
2541
- "additionalProperties": {
2542
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.TypeApiDescriptionModel"
2543
- },
2544
- "nullable": true
2545
- }
2546
- },
2547
- "additionalProperties": false
2548
- },
2549
- "Volo.Abp.Http.Modeling.ControllerApiDescriptionModel": {
2550
- "type": "object",
2551
- "properties": {
2552
- "controllerName": {
2553
- "type": "string",
2554
- "nullable": true
2555
- },
2556
- "controllerGroupName": {
2557
- "type": "string",
2558
- "nullable": true
2559
- },
2560
- "isRemoteService": {
2561
- "type": "boolean"
2562
- },
2563
- "isIntegrationService": {
2564
- "type": "boolean"
2565
- },
2566
- "apiVersion": {
2567
- "type": "string",
2568
- "nullable": true
2569
- },
2570
- "type": {
2571
- "type": "string",
2572
- "nullable": true
2573
- },
2574
- "interfaces": {
2575
- "type": "array",
2576
- "items": {
2577
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel"
2578
- },
2579
- "nullable": true
2580
- },
2581
- "actions": {
2582
- "type": "object",
2583
- "additionalProperties": {
2584
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ActionApiDescriptionModel"
2585
- },
2586
- "nullable": true
2587
- }
2588
- },
2589
- "additionalProperties": false
2590
- },
2591
- "Volo.Abp.Http.Modeling.ControllerInterfaceApiDescriptionModel": {
2592
- "type": "object",
2593
- "properties": {
2594
- "type": {
2595
- "type": "string",
2596
- "nullable": true
2597
- },
2598
- "name": {
2599
- "type": "string",
2600
- "nullable": true
2601
- },
2602
- "methods": {
2603
- "type": "array",
2604
- "items": {
2605
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel"
2606
- },
2607
- "nullable": true
2608
- }
2609
- },
2610
- "additionalProperties": false
2611
- },
2612
- "Volo.Abp.Http.Modeling.InterfaceMethodApiDescriptionModel": {
2613
- "type": "object",
2614
- "properties": {
2615
- "name": {
2616
- "type": "string",
2617
- "nullable": true
2618
- },
2619
- "parametersOnMethod": {
2620
- "type": "array",
2621
- "items": {
2622
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel"
2623
- },
2624
- "nullable": true
2625
- },
2626
- "returnValue": {
2627
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel"
2628
- }
2629
- },
2630
- "additionalProperties": false
2631
- },
2632
- "Volo.Abp.Http.Modeling.MethodParameterApiDescriptionModel": {
2633
- "type": "object",
2634
- "properties": {
2635
- "name": {
2636
- "type": "string",
2637
- "nullable": true
2638
- },
2639
- "typeAsString": {
2640
- "type": "string",
2641
- "nullable": true
2642
- },
2643
- "type": {
2644
- "type": "string",
2645
- "nullable": true
2646
- },
2647
- "typeSimple": {
2648
- "type": "string",
2649
- "nullable": true
2650
- },
2651
- "isOptional": {
2652
- "type": "boolean"
2653
- },
2654
- "defaultValue": {
2655
- "nullable": true
2656
- }
2657
- },
2658
- "additionalProperties": false
2659
- },
2660
- "Volo.Abp.Http.Modeling.ModuleApiDescriptionModel": {
2661
- "type": "object",
2662
- "properties": {
2663
- "rootPath": {
2664
- "type": "string",
2665
- "nullable": true
2666
- },
2667
- "remoteServiceName": {
2668
- "type": "string",
2669
- "nullable": true
2670
- },
2671
- "controllers": {
2672
- "type": "object",
2673
- "additionalProperties": {
2674
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.ControllerApiDescriptionModel"
2675
- },
2676
- "nullable": true
2677
- }
2678
- },
2679
- "additionalProperties": false
2680
- },
2681
- "Volo.Abp.Http.Modeling.ParameterApiDescriptionModel": {
2682
- "type": "object",
2683
- "properties": {
2684
- "nameOnMethod": {
2685
- "type": "string",
2686
- "nullable": true
2687
- },
2688
- "name": {
2689
- "type": "string",
2690
- "nullable": true
2691
- },
2692
- "jsonName": {
2693
- "type": "string",
2694
- "nullable": true
2695
- },
2696
- "type": {
2697
- "type": "string",
2698
- "nullable": true
2699
- },
2700
- "typeSimple": {
2701
- "type": "string",
2702
- "nullable": true
2703
- },
2704
- "isOptional": {
2705
- "type": "boolean"
2706
- },
2707
- "defaultValue": {
2708
- "nullable": true
2709
- },
2710
- "constraintTypes": {
2711
- "type": "array",
2712
- "items": {
2713
- "type": "string"
2714
- },
2715
- "nullable": true
2716
- },
2717
- "bindingSourceId": {
2718
- "type": "string",
2719
- "nullable": true
2720
- },
2721
- "descriptorName": {
2722
- "type": "string",
2723
- "nullable": true
2724
- }
2725
- },
2726
- "additionalProperties": false
2727
- },
2728
- "Volo.Abp.Http.Modeling.PropertyApiDescriptionModel": {
2729
- "type": "object",
2730
- "properties": {
2731
- "name": {
2732
- "type": "string",
2733
- "nullable": true
2734
- },
2735
- "jsonName": {
2736
- "type": "string",
2737
- "nullable": true
2738
- },
2739
- "type": {
2740
- "type": "string",
2741
- "nullable": true
2742
- },
2743
- "typeSimple": {
2744
- "type": "string",
2745
- "nullable": true
2746
- },
2747
- "isRequired": {
2748
- "type": "boolean"
2749
- },
2750
- "minLength": {
2751
- "type": "integer",
2752
- "format": "int32",
2753
- "nullable": true
2754
- },
2755
- "maxLength": {
2756
- "type": "integer",
2757
- "format": "int32",
2758
- "nullable": true
2759
- },
2760
- "minimum": {
2761
- "type": "string",
2762
- "nullable": true
2763
- },
2764
- "maximum": {
2765
- "type": "string",
2766
- "nullable": true
2767
- },
2768
- "regex": {
2769
- "type": "string",
2770
- "nullable": true
2771
- }
2772
- },
2773
- "additionalProperties": false
2774
- },
2775
- "Volo.Abp.Http.Modeling.ReturnValueApiDescriptionModel": {
2776
- "type": "object",
2777
- "properties": {
2778
- "type": {
2779
- "type": "string",
2780
- "nullable": true
2781
- },
2782
- "typeSimple": {
2783
- "type": "string",
2784
- "nullable": true
2785
- }
2786
- },
2787
- "additionalProperties": false
2788
- },
2789
- "Volo.Abp.Http.Modeling.TypeApiDescriptionModel": {
2790
- "type": "object",
2791
- "properties": {
2792
- "baseType": {
2793
- "type": "string",
2794
- "nullable": true
2795
- },
2796
- "isEnum": {
2797
- "type": "boolean"
2798
- },
2799
- "enumNames": {
2800
- "type": "array",
2801
- "items": {
2802
- "type": "string"
2803
- },
2804
- "nullable": true
2805
- },
2806
- "enumValues": {
2807
- "type": "array",
2808
- "items": { },
2809
- "nullable": true
2810
- },
2811
- "genericArguments": {
2812
- "type": "array",
2813
- "items": {
2814
- "type": "string"
2815
- },
2816
- "nullable": true
2817
- },
2818
- "properties": {
2819
- "type": "array",
2820
- "items": {
2821
- "$ref": "#/components/schemas/Volo.Abp.Http.Modeling.PropertyApiDescriptionModel"
2822
- },
2823
- "nullable": true
2824
- }
2825
- },
2826
- "additionalProperties": false
2827
- },
2828
- "Volo.Abp.Http.RemoteServiceErrorInfo": {
2829
- "type": "object",
2830
- "properties": {
2831
- "code": {
2832
- "type": "string",
2833
- "nullable": true
2834
- },
2835
- "message": {
2836
- "type": "string",
2837
- "nullable": true
2838
- },
2839
- "details": {
2840
- "type": "string",
2841
- "nullable": true
2842
- },
2843
- "data": {
2844
- "type": "object",
2845
- "additionalProperties": { },
2846
- "nullable": true
2847
- },
2848
- "validationErrors": {
2849
- "type": "array",
2850
- "items": {
2851
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceValidationErrorInfo"
2852
- },
2853
- "nullable": true
2854
- }
2855
- },
2856
- "additionalProperties": false
2857
- },
2858
- "Volo.Abp.Http.RemoteServiceErrorResponse": {
2859
- "type": "object",
2860
- "properties": {
2861
- "error": {
2862
- "$ref": "#/components/schemas/Volo.Abp.Http.RemoteServiceErrorInfo"
2863
- }
2864
- },
2865
- "additionalProperties": false
2866
- },
2867
- "Volo.Abp.Http.RemoteServiceValidationErrorInfo": {
2868
- "type": "object",
2869
- "properties": {
2870
- "message": {
2871
- "type": "string",
2872
- "nullable": true
2873
- },
2874
- "members": {
2875
- "type": "array",
2876
- "items": {
2877
- "type": "string"
2878
- },
2879
- "nullable": true
2880
- }
2881
- },
2882
- "additionalProperties": false
2883
- },
2884
- "Volo.Abp.Localization.LanguageInfo": {
2885
- "type": "object",
2886
- "properties": {
2887
- "cultureName": {
2888
- "type": "string",
2889
- "nullable": true
2890
- },
2891
- "uiCultureName": {
2892
- "type": "string",
2893
- "nullable": true
2894
- },
2895
- "displayName": {
2896
- "type": "string",
2897
- "nullable": true
2898
- },
2899
- "twoLetterISOLanguageName": {
2900
- "type": "string",
2901
- "nullable": true,
2902
- "readOnly": true
2903
- },
2904
- "flagIcon": {
2905
- "type": "string",
2906
- "nullable": true
2907
- }
2908
- },
2909
- "additionalProperties": false
2910
- },
2911
- "Volo.Abp.NameValue": {
2912
- "type": "object",
2913
- "properties": {
2914
- "name": {
2915
- "type": "string",
2916
- "nullable": true
2917
- },
2918
- "value": {
2919
- "type": "string",
2920
- "nullable": true
2921
- }
2922
- },
2923
- "additionalProperties": false
2924
- }
2925
- },
2926
- "securitySchemes": {
2927
- "oidc": {
2928
- "type": "openIdConnect",
2929
- "openIdConnectUrl": "https://localhost:44322/.well-known/openid-configuration"
2930
- }
2931
- }
2932
- },
2933
- "security": [
2934
- {
2935
- "oidc": [ ]
2936
- }
2937
- ]
2938
- }