@ayasofyazilim/saas 0.0.101 → 0.0.103

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (577) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/core/ApiRequestOptions.ts +16 -8
  259. package/CRMService/core/OpenAPI.ts +3 -3
  260. package/CRMService/core/request.ts +14 -5
  261. package/CRMService/index.ts +3 -4
  262. package/CRMService/schemas.gen.ts +52 -0
  263. package/CRMService/sdk.gen.ts +3193 -0
  264. package/CRMService/types.gen.ts +401 -4471
  265. package/ContractService/ContractServiceClient.ts +65 -65
  266. package/ContractService/core/ApiError.ts +20 -20
  267. package/ContractService/core/ApiRequestOptions.ts +12 -12
  268. package/ContractService/core/ApiResult.ts +6 -6
  269. package/ContractService/core/BaseHttpRequest.ts +9 -9
  270. package/ContractService/core/CancelablePromise.ts +125 -125
  271. package/ContractService/core/FetchHttpRequest.ts +21 -21
  272. package/ContractService/core/OpenAPI.ts +55 -55
  273. package/ContractService/core/request.ts +340 -340
  274. package/ContractService/index.ts +8 -8
  275. package/ContractService/schemas.gen.ts +12076 -12076
  276. package/ContractService/services.gen.ts +1882 -1882
  277. package/ContractService/types.gen.ts +4145 -4145
  278. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  279. package/ExportValidationService/core/ApiError.ts +20 -20
  280. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  281. package/ExportValidationService/core/ApiResult.ts +6 -6
  282. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  283. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  284. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  285. package/ExportValidationService/core/OpenAPI.ts +55 -55
  286. package/ExportValidationService/core/request.ts +340 -340
  287. package/ExportValidationService/index.ts +8 -8
  288. package/ExportValidationService/schemas.gen.ts +3998 -3998
  289. package/ExportValidationService/services.gen.ts +260 -260
  290. package/ExportValidationService/types.gen.ts +818 -818
  291. package/FinanceService/FinanceServiceClient.ts +47 -47
  292. package/FinanceService/core/ApiError.ts +20 -20
  293. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  294. package/FinanceService/core/ApiResult.ts +6 -6
  295. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  296. package/FinanceService/core/CancelablePromise.ts +125 -125
  297. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  298. package/FinanceService/core/OpenAPI.ts +55 -55
  299. package/FinanceService/core/request.ts +340 -340
  300. package/FinanceService/index.ts +8 -8
  301. package/FinanceService/schemas.gen.ts +5006 -5006
  302. package/FinanceService/services.gen.ts +339 -339
  303. package/FinanceService/types.gen.ts +1128 -1128
  304. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  305. package/FundraiserService/core/ApiError.ts +20 -20
  306. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  307. package/FundraiserService/core/ApiResult.ts +6 -6
  308. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  309. package/FundraiserService/core/CancelablePromise.ts +125 -125
  310. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  311. package/FundraiserService/core/OpenAPI.ts +55 -55
  312. package/FundraiserService/core/request.ts +340 -340
  313. package/FundraiserService/index.ts +8 -8
  314. package/FundraiserService/schemas.gen.ts +11548 -11548
  315. package/FundraiserService/services.gen.ts +627 -627
  316. package/FundraiserService/types.gen.ts +1793 -1793
  317. package/IdentityService/IdentityServiceClient.ts +86 -86
  318. package/IdentityService/core/ApiError.ts +20 -20
  319. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  320. package/IdentityService/core/ApiResult.ts +6 -6
  321. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  322. package/IdentityService/core/CancelablePromise.ts +125 -125
  323. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  324. package/IdentityService/core/OpenAPI.ts +55 -55
  325. package/IdentityService/core/request.ts +340 -340
  326. package/IdentityService/index.ts +8 -8
  327. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  328. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  329. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  331. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  332. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  333. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  336. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  337. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  371. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  381. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  382. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  384. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  385. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  386. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  387. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  388. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  389. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  390. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  399. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  400. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  402. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  403. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  409. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  410. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  411. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  412. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  413. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  421. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  422. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  423. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  424. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  425. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  432. package/IdentityService/schemas.gen.ts +6928 -6928
  433. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  434. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  435. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  436. package/IdentityService/services/AccountSettingsService.ts +178 -178
  437. package/IdentityService/services/ApplicationsService.ts +199 -199
  438. package/IdentityService/services/ClaimTypeService.ts +149 -149
  439. package/IdentityService/services/ExternalLoginService.ts +27 -27
  440. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  441. package/IdentityService/services/RoleService.ts +269 -269
  442. package/IdentityService/services/ScopesService.ts +164 -164
  443. package/IdentityService/services/SecurityLogService.ts +174 -174
  444. package/IdentityService/services/SettingsService.ts +135 -135
  445. package/IdentityService/services/UserIntegrationService.ts +144 -144
  446. package/IdentityService/services/UserLookupService.ts +120 -120
  447. package/IdentityService/services/UserService.ts +937 -937
  448. package/IdentityService/services.gen.ts +3154 -3154
  449. package/IdentityService/types.gen.ts +5874 -5874
  450. package/LocationService/LocationServiceClient.ts +74 -74
  451. package/LocationService/core/ApiError.ts +20 -20
  452. package/LocationService/core/ApiRequestOptions.ts +12 -12
  453. package/LocationService/core/ApiResult.ts +6 -6
  454. package/LocationService/core/BaseHttpRequest.ts +9 -9
  455. package/LocationService/core/CancelablePromise.ts +125 -125
  456. package/LocationService/core/FetchHttpRequest.ts +21 -21
  457. package/LocationService/core/OpenAPI.ts +55 -55
  458. package/LocationService/core/request.ts +340 -340
  459. package/LocationService/index.ts +8 -8
  460. package/LocationService/schemas.gen.ts +6635 -6635
  461. package/LocationService/services.gen.ts +1797 -1797
  462. package/LocationService/types.gen.ts +3738 -3738
  463. package/MerchantService/MerchantServiceClient.ts +77 -77
  464. package/MerchantService/core/ApiError.ts +20 -20
  465. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  466. package/MerchantService/core/ApiResult.ts +6 -6
  467. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  468. package/MerchantService/core/CancelablePromise.ts +125 -125
  469. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  470. package/MerchantService/core/OpenAPI.ts +55 -55
  471. package/MerchantService/core/request.ts +340 -340
  472. package/MerchantService/index.ts +8 -8
  473. package/MerchantService/schemas.gen.ts +14764 -14764
  474. package/MerchantService/services.gen.ts +1602 -1602
  475. package/MerchantService/types.gen.ts +18875 -18875
  476. package/ProjectService/ProjectServiceClient.ts +47 -47
  477. package/ProjectService/core/ApiError.ts +20 -20
  478. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  479. package/ProjectService/core/ApiResult.ts +6 -6
  480. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  481. package/ProjectService/core/CancelablePromise.ts +125 -125
  482. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  483. package/ProjectService/core/OpenAPI.ts +55 -55
  484. package/ProjectService/core/request.ts +340 -340
  485. package/ProjectService/index.ts +8 -8
  486. package/ProjectService/schemas.gen.ts +5147 -5147
  487. package/ProjectService/services.gen.ts +492 -492
  488. package/ProjectService/types.gen.ts +1303 -1303
  489. package/README.md +40 -39
  490. package/RefundService/RefundServiceClient.ts +44 -44
  491. package/RefundService/core/ApiError.ts +20 -20
  492. package/RefundService/core/ApiRequestOptions.ts +12 -12
  493. package/RefundService/core/ApiResult.ts +6 -6
  494. package/RefundService/core/BaseHttpRequest.ts +9 -9
  495. package/RefundService/core/CancelablePromise.ts +125 -125
  496. package/RefundService/core/FetchHttpRequest.ts +21 -21
  497. package/RefundService/core/OpenAPI.ts +55 -55
  498. package/RefundService/core/request.ts +340 -340
  499. package/RefundService/index.ts +8 -8
  500. package/RefundService/schemas.gen.ts +5237 -5237
  501. package/RefundService/services.gen.ts +347 -347
  502. package/RefundService/types.gen.ts +1042 -1042
  503. package/SaasService/SaasServiceClient.ts +65 -65
  504. package/SaasService/core/ApiError.ts +20 -20
  505. package/SaasService/core/ApiRequestOptions.ts +12 -12
  506. package/SaasService/core/ApiResult.ts +6 -6
  507. package/SaasService/core/BaseHttpRequest.ts +9 -9
  508. package/SaasService/core/CancelablePromise.ts +125 -125
  509. package/SaasService/core/FetchHttpRequest.ts +21 -21
  510. package/SaasService/core/OpenAPI.ts +55 -55
  511. package/SaasService/core/request.ts +340 -340
  512. package/SaasService/index.ts +8 -8
  513. package/SaasService/schemas.gen.ts +5345 -5345
  514. package/SaasService/services.gen.ts +1329 -1329
  515. package/SaasService/types.gen.ts +2737 -2737
  516. package/SettingService/SettingServiceClient.ts +59 -59
  517. package/SettingService/core/ApiError.ts +20 -20
  518. package/SettingService/core/ApiRequestOptions.ts +12 -12
  519. package/SettingService/core/ApiResult.ts +6 -6
  520. package/SettingService/core/BaseHttpRequest.ts +9 -9
  521. package/SettingService/core/CancelablePromise.ts +125 -125
  522. package/SettingService/core/FetchHttpRequest.ts +21 -21
  523. package/SettingService/core/OpenAPI.ts +55 -55
  524. package/SettingService/core/request.ts +340 -340
  525. package/SettingService/index.ts +8 -8
  526. package/SettingService/schemas.gen.ts +5223 -5223
  527. package/SettingService/services.gen.ts +758 -758
  528. package/SettingService/types.gen.ts +1800 -1800
  529. package/TagService/TagServiceClient.ts +47 -47
  530. package/TagService/core/ApiError.ts +20 -20
  531. package/TagService/core/ApiRequestOptions.ts +12 -12
  532. package/TagService/core/ApiResult.ts +6 -6
  533. package/TagService/core/BaseHttpRequest.ts +9 -9
  534. package/TagService/core/CancelablePromise.ts +125 -125
  535. package/TagService/core/FetchHttpRequest.ts +21 -21
  536. package/TagService/core/OpenAPI.ts +55 -55
  537. package/TagService/core/request.ts +340 -340
  538. package/TagService/index.ts +8 -8
  539. package/TagService/schemas.gen.ts +5830 -5830
  540. package/TagService/services.gen.ts +556 -556
  541. package/TagService/types.gen.ts +1487 -1487
  542. package/TravellerService/TravellerServiceClient.ts +59 -59
  543. package/TravellerService/core/ApiError.ts +20 -20
  544. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  545. package/TravellerService/core/ApiResult.ts +6 -6
  546. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  547. package/TravellerService/core/CancelablePromise.ts +125 -125
  548. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  549. package/TravellerService/core/OpenAPI.ts +55 -55
  550. package/TravellerService/core/request.ts +340 -340
  551. package/TravellerService/index.ts +8 -8
  552. package/TravellerService/schemas.gen.ts +6396 -6396
  553. package/TravellerService/services.gen.ts +949 -949
  554. package/TravellerService/types.gen.ts +2220 -2220
  555. package/index.mjs +38 -0
  556. package/package.json +37 -41
  557. package/CRMService/CRMServiceClient.ts +0 -77
  558. package/CRMService/core/BaseHttpRequest.ts +0 -10
  559. package/CRMService/core/FetchHttpRequest.ts +0 -22
  560. package/CRMService/services.gen.ts +0 -3267
  561. package/ProjectService.json +0 -2938
  562. package/generator.mjs +0 -221
  563. package/index.ts +0 -2
  564. package/swagger.json +0 -4795
  565. package/upwithcrowdService/core/ApiError.ts +0 -21
  566. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  567. package/upwithcrowdService/core/ApiResult.ts +0 -7
  568. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  569. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  570. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  571. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  572. package/upwithcrowdService/core/request.ts +0 -341
  573. package/upwithcrowdService/index.ts +0 -9
  574. package/upwithcrowdService/schemas.gen.ts +0 -11974
  575. package/upwithcrowdService/services.gen.ts +0 -6556
  576. package/upwithcrowdService/types.gen.ts +0 -12239
  577. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
@@ -1,2171 +1,2171 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type UpwithCrowd_BackerService_AddressTypes_AddressTypeDto = {
4
- id?: string;
5
- creationTime?: string;
6
- creatorId?: string | null;
7
- lastModificationTime?: string | null;
8
- lastModifierId?: string | null;
9
- isDeleted?: boolean;
10
- deleterId?: string | null;
11
- deletionTime?: string | null;
12
- typeCode?: UpwithCrowd_BackerService_Enums_AddressTypeCode;
13
- addressLine?: string | null;
14
- city?: string | null;
15
- terriority?: string | null;
16
- postalCode?: string | null;
17
- country?: string | null;
18
- fullAddress?: string | null;
19
- primaryFlag?: boolean;
20
- contactInformationTypeId?: string;
21
- };
22
-
23
- export type UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto = {
24
- readonly extraProperties?: {
25
- [key: string]: unknown;
26
- } | null;
27
- typeCode: UpwithCrowd_BackerService_Enums_AddressTypeCode;
28
- addressLine: string;
29
- city: string;
30
- terriority: string;
31
- postalCode: string;
32
- country: string;
33
- fullAddress: string;
34
- primaryFlag: boolean;
35
- };
36
-
37
- export type UpwithCrowd_BackerService_AddressTypes_UpdateAddressTypeDto = {
38
- readonly extraProperties?: {
39
- [key: string]: unknown;
40
- } | null;
41
- typeCode: UpwithCrowd_BackerService_Enums_AddressTypeCode;
42
- addressLine: string;
43
- city: string;
44
- terriority: string;
45
- postalCode: string;
46
- country: string;
47
- fullAddress: string;
48
- primaryFlag: boolean;
49
- };
50
-
51
- export type UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto = {
52
- id?: string;
53
- creationTime?: string;
54
- creatorId?: string | null;
55
- lastModificationTime?: string | null;
56
- lastModifierId?: string | null;
57
- isDeleted?: boolean;
58
- deleterId?: string | null;
59
- deletionTime?: string | null;
60
- backerId?: string;
61
- name?: string | null;
62
- description?: string | null;
63
- affiliationTypeCode?: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
64
- partyId?: string;
65
- };
66
-
67
- export type UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto = {
68
- readonly extraProperties?: {
69
- [key: string]: unknown;
70
- } | null;
71
- name: string;
72
- description: string;
73
- affiliationTypeCode: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
74
- };
75
-
76
- export type UpwithCrowd_BackerService_AffiliationTypes_UpdateAffiliationTypeDto = {
77
- readonly extraProperties?: {
78
- [key: string]: unknown;
79
- } | null;
80
- id: string;
81
- backerId: string;
82
- name: string;
83
- description: string;
84
- affiliationTypeCode: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
85
- partyId: string;
86
- };
87
-
88
- export type UpwithCrowd_BackerService_Backers_BackerDto = {
89
- id?: string;
90
- creationTime?: string;
91
- creatorId?: string | null;
92
- lastModificationTime?: string | null;
93
- lastModifierId?: string | null;
94
- isDeleted?: boolean;
95
- deleterId?: string | null;
96
- deletionTime?: string | null;
97
- entityInformations?: Array<UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto> | null;
98
- affiliations?: Array<UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto> | null;
99
- };
100
-
101
- export type UpwithCrowd_BackerService_Backers_CreateBackerDto = {
102
- readonly extraProperties?: {
103
- [key: string]: unknown;
104
- } | null;
105
- entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
106
- affiliations: Array<UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto>;
107
- };
108
-
109
- export type UpwithCrowd_BackerService_Backers_CreateBackerWithComponentsDto = {
110
- readonly extraProperties?: {
111
- [key: string]: unknown;
112
- } | null;
113
- entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
114
- affiliations?: Array<UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto> | null;
115
- };
116
-
117
- export type UpwithCrowd_BackerService_Backers_UpdateBackerDto = {
118
- readonly extraProperties?: {
119
- [key: string]: unknown;
120
- } | null;
121
- entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
122
- affiliations: Array<UpwithCrowd_BackerService_AffiliationTypes_UpdateAffiliationTypeDto>;
123
- };
124
-
125
- export type UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto = {
126
- id?: string;
127
- creationTime?: string;
128
- creatorId?: string | null;
129
- lastModificationTime?: string | null;
130
- lastModifierId?: string | null;
131
- isDeleted?: boolean;
132
- deleterId?: string | null;
133
- deletionTime?: string | null;
134
- startDate?: string;
135
- endDate?: string;
136
- telephones?: Array<UpwithCrowd_BackerService_TelephoneTypes_TelephoneTypeDto> | null;
137
- addresses?: Array<UpwithCrowd_BackerService_AddressTypes_AddressTypeDto> | null;
138
- emails?: Array<UpwithCrowd_BackerService_EmailCommonDatas_EmailCommonDataDto> | null;
139
- };
140
-
141
- export type UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto = {
142
- readonly extraProperties?: {
143
- [key: string]: unknown;
144
- } | null;
145
- startDate: string;
146
- endDate: string;
147
- telephones: Array<UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto>;
148
- addresses: Array<UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto>;
149
- emails: Array<UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto>;
150
- };
151
-
152
- export type UpwithCrowd_BackerService_ContactInformationTypes_UpdateContactInformationTypeDto = {
153
- readonly extraProperties?: {
154
- [key: string]: unknown;
155
- } | null;
156
- startDate: string;
157
- endDate: string;
158
- telephone: Array<UpwithCrowd_BackerService_TelephoneTypes_UpdateTelephoneTypeDto>;
159
- address: Array<UpwithCrowd_BackerService_AddressTypes_UpdateAddressTypeDto>;
160
- email: Array<UpwithCrowd_BackerService_EmailCommonDatas_UpdateEmailCommonDataDto>;
161
- organizationId: string;
162
- };
163
-
164
- export type UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto = {
165
- readonly extraProperties?: {
166
- [key: string]: unknown;
167
- } | null;
168
- primaryFlag: boolean;
169
- typeCode: UpwithCrowd_BackerService_Enums_EmailTypeCode;
170
- emailAddress: string;
171
- };
172
-
173
- export type UpwithCrowd_BackerService_EmailCommonDatas_EmailCommonDataDto = {
174
- id?: string;
175
- creationTime?: string;
176
- creatorId?: string | null;
177
- lastModificationTime?: string | null;
178
- lastModifierId?: string | null;
179
- isDeleted?: boolean;
180
- deleterId?: string | null;
181
- deletionTime?: string | null;
182
- primaryFlag?: boolean;
183
- typeCode?: UpwithCrowd_BackerService_Enums_EmailTypeCode;
184
- emailAddress?: string | null;
185
- contactInformationTypeId?: string;
186
- };
187
-
188
- export type UpwithCrowd_BackerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
189
- readonly extraProperties?: {
190
- [key: string]: unknown;
191
- } | null;
192
- emailAddress: string;
193
- };
194
-
195
- export type UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
196
- readonly extraProperties?: {
197
- [key: string]: unknown;
198
- } | null;
199
- partyType: UpwithCrowd_BackerService_Enums_BackerPartyType;
200
- organizations?: Array<UpwithCrowd_BackerService_Organizations_CreateOrganizationDto> | null;
201
- individuals?: Array<UpwithCrowd_BackerService_Individuals_CreateIndividualDto> | null;
202
- };
203
-
204
- export type UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto = {
205
- id?: string;
206
- creationTime?: string;
207
- creatorId?: string | null;
208
- lastModificationTime?: string | null;
209
- lastModifierId?: string | null;
210
- isDeleted?: boolean;
211
- deleterId?: string | null;
212
- deletionTime?: string | null;
213
- backerId?: string;
214
- organizations?: Array<UpwithCrowd_BackerService_Organizations_OrganizationDto> | null;
215
- individuals?: Array<UpwithCrowd_BackerService_Individuals_IndividualDto> | null;
216
- };
217
-
218
- export type UpwithCrowd_BackerService_Enums_AddressTypeCode = 0 | 1;
219
-
220
- export type UpwithCrowd_BackerService_Enums_AffiliationTypeCode = 0 | 1 | 2;
221
-
222
- export type UpwithCrowd_BackerService_Enums_BackerPartyType = 0 | 1 | 2;
223
-
224
- export type UpwithCrowd_BackerService_Enums_EmailTypeCode = 0 | 1;
225
-
226
- export type UpwithCrowd_BackerService_Enums_GenderTypeCode = 0 | 1;
227
-
228
- export type UpwithCrowd_BackerService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
229
-
230
- export type UpwithCrowd_BackerService_Individuals_CreateIndividualDto = {
231
- readonly extraProperties?: {
232
- [key: string]: unknown;
233
- } | null;
234
- name: UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto;
235
- contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
236
- personalSummaries: Array<UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto>;
237
- };
238
-
239
- export type UpwithCrowd_BackerService_Individuals_CreateIndividualWithIdDto = {
240
- readonly extraProperties?: {
241
- [key: string]: unknown;
242
- } | null;
243
- name: UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto;
244
- contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
245
- personalSummaries: Array<UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto>;
246
- id?: string;
247
- entityInformationTypeId?: string | null;
248
- contactInformationId?: string;
249
- };
250
-
251
- export type UpwithCrowd_BackerService_Individuals_IndividualDto = {
252
- id?: string;
253
- creationTime?: string;
254
- creatorId?: string | null;
255
- lastModificationTime?: string | null;
256
- lastModifierId?: string | null;
257
- isDeleted?: boolean;
258
- deleterId?: string | null;
259
- deletionTime?: string | null;
260
- name?: UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto;
261
- contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
262
- personalSummaries?: Array<UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto> | null;
263
- entityInformationTypeId?: string;
264
- contactInformationId?: string;
265
- };
266
-
267
- export type UpwithCrowd_BackerService_Individuals_UpdateIndividualDto = {
268
- id?: string;
269
- creationTime?: string;
270
- creatorId?: string | null;
271
- lastModificationTime?: string | null;
272
- lastModifierId?: string | null;
273
- isDeleted?: boolean;
274
- deleterId?: string | null;
275
- deletionTime?: string | null;
276
- name?: UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto;
277
- contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
278
- personalSummaries?: Array<UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto> | null;
279
- entityInformationTypeId: string;
280
- contactInformationId: string;
281
- };
282
-
283
- export type UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto = {
284
- salutation: string;
285
- name: string;
286
- suffix: string;
287
- mailingName: string;
288
- officialName: string;
289
- };
290
-
291
- export type UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto = {
292
- id?: string;
293
- creationTime?: string;
294
- creatorId?: string | null;
295
- lastModificationTime?: string | null;
296
- lastModifierId?: string | null;
297
- isDeleted?: boolean;
298
- deleterId?: string | null;
299
- deletionTime?: string | null;
300
- individualId?: string;
301
- salutation?: string | null;
302
- name?: string | null;
303
- suffix?: string | null;
304
- mailingName?: string | null;
305
- officialName?: string | null;
306
- };
307
-
308
- export type UpwithCrowd_BackerService_Organizations_CreateOrganizationDto = {
309
- readonly extraProperties?: {
310
- [key: string]: unknown;
311
- } | null;
312
- name: string;
313
- taxpayerId: string;
314
- legalStatusCode: string;
315
- customerNumber: string;
316
- contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
317
- };
318
-
319
- export type UpwithCrowd_BackerService_Organizations_CreateOrganizationWithIdDto = {
320
- readonly extraProperties?: {
321
- [key: string]: unknown;
322
- } | null;
323
- name: string;
324
- taxpayerId: string;
325
- legalStatusCode: string;
326
- customerNumber: string;
327
- contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
328
- id?: string;
329
- entityInformationTypeId?: string | null;
330
- contactInformationId?: string;
331
- };
332
-
333
- export type UpwithCrowd_BackerService_Organizations_OrganizationDto = {
334
- id?: string;
335
- creationTime?: string;
336
- creatorId?: string | null;
337
- lastModificationTime?: string | null;
338
- lastModifierId?: string | null;
339
- isDeleted?: boolean;
340
- deleterId?: string | null;
341
- deletionTime?: string | null;
342
- name?: string | null;
343
- taxpayerId?: string | null;
344
- legalStatusCode?: string | null;
345
- contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
346
- };
347
-
348
- export type UpwithCrowd_BackerService_Organizations_UpdateOrganizationDto = {
349
- readonly extraProperties?: {
350
- [key: string]: unknown;
351
- } | null;
352
- name: string;
353
- taxpayerId: string;
354
- legalStatusCode: string;
355
- customerNumber: string;
356
- contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_UpdateContactInformationTypeDto;
357
- };
358
-
359
- export type UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto = {
360
- genderType?: UpwithCrowd_BackerService_Enums_GenderTypeCode;
361
- date?: string;
362
- birthDate?: string;
363
- ethnicity?: string | null;
364
- maritalStatusCode?: string | null;
365
- religiousAffiliationName?: string | null;
366
- };
367
-
368
- export type UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto = {
369
- id?: string;
370
- creationTime?: string;
371
- creatorId?: string | null;
372
- lastModificationTime?: string | null;
373
- lastModifierId?: string | null;
374
- isDeleted?: boolean;
375
- deleterId?: string | null;
376
- deletionTime?: string | null;
377
- genderType?: UpwithCrowd_BackerService_Enums_GenderTypeCode;
378
- individualId?: string;
379
- date?: string;
380
- birthDate?: string;
381
- ethnicity?: string | null;
382
- maritalStatusCode?: string | null;
383
- religiousAffiliationName?: string | null;
384
- };
385
-
386
- export type UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto = {
387
- readonly extraProperties?: {
388
- [key: string]: unknown;
389
- } | null;
390
- primaryFlag: boolean;
391
- typeCode: UpwithCrowd_BackerService_Enums_TelephoneTypeCode;
392
- areaCode: string;
393
- localNumber: string;
394
- ituCountryCode: string;
395
- };
396
-
397
- export type UpwithCrowd_BackerService_TelephoneTypes_TelephoneTypeDto = {
398
- id?: string;
399
- creationTime?: string;
400
- creatorId?: string | null;
401
- lastModificationTime?: string | null;
402
- lastModifierId?: string | null;
403
- isDeleted?: boolean;
404
- deleterId?: string | null;
405
- deletionTime?: string | null;
406
- primaryFlag?: boolean;
407
- typeCode?: UpwithCrowd_BackerService_Enums_TelephoneTypeCode;
408
- areaCode?: string | null;
409
- localNumber?: string | null;
410
- ituCountryCode?: string | null;
411
- contactInformationTypeId?: string;
412
- };
413
-
414
- export type UpwithCrowd_BackerService_TelephoneTypes_UpdateTelephoneTypeDto = {
415
- readonly extraProperties?: {
416
- [key: string]: unknown;
417
- } | null;
418
- areaCode: string;
419
- localNumber: string;
420
- ituCountryCode: string;
421
- };
422
-
423
- export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
424
- items?: Array<UpwithCrowd_BackerService_Backers_BackerDto> | null;
425
- totalCount?: number;
426
- };
427
-
428
- export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
429
- items?: Array<UpwithCrowd_BackerService_Individuals_IndividualDto> | null;
430
- totalCount?: number;
431
- };
432
-
433
- export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
434
- items?: Array<UpwithCrowd_BackerService_Organizations_OrganizationDto> | null;
435
- totalCount?: number;
436
- };
437
-
438
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
439
- grantedPolicies?: {
440
- [key: string]: (boolean);
441
- } | null;
442
- };
443
-
444
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
445
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
446
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
447
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
448
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
449
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
450
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
451
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
452
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
453
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
454
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
455
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
456
- extraProperties?: {
457
- [key: string]: unknown;
458
- } | null;
459
- };
460
-
461
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
462
- values?: {
463
- [key: string]: (string | null);
464
- } | null;
465
- };
466
-
467
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
468
- enabledFeatures?: Array<(string)> | null;
469
- };
470
-
471
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
472
- values?: {
473
- [key: string]: {
474
- [key: string]: (string);
475
- };
476
- } | null;
477
- resources?: {
478
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
479
- } | null;
480
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
481
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
482
- defaultResourceName?: string | null;
483
- languagesMap?: {
484
- [key: string]: Array<Volo_Abp_NameValue>;
485
- } | null;
486
- languageFilesMap?: {
487
- [key: string]: Array<Volo_Abp_NameValue>;
488
- } | null;
489
- };
490
-
491
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
492
- resources?: {
493
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
494
- } | null;
495
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
496
- };
497
-
498
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
499
- texts?: {
500
- [key: string]: (string);
501
- } | null;
502
- baseResources?: Array<(string)> | null;
503
- };
504
-
505
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
506
- values?: {
507
- [key: string]: (string | null);
508
- } | null;
509
- };
510
-
511
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
512
- kind?: string | null;
513
- };
514
-
515
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
516
- displayName?: string | null;
517
- englishName?: string | null;
518
- threeLetterIsoLanguageName?: string | null;
519
- twoLetterIsoLanguageName?: string | null;
520
- isRightToLeft?: boolean;
521
- cultureName?: string | null;
522
- name?: string | null;
523
- nativeName?: string | null;
524
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
525
- };
526
-
527
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
528
- isAuthenticated?: boolean;
529
- id?: string | null;
530
- tenantId?: string | null;
531
- impersonatorUserId?: string | null;
532
- impersonatorTenantId?: string | null;
533
- impersonatorUserName?: string | null;
534
- impersonatorTenantName?: string | null;
535
- userName?: string | null;
536
- name?: string | null;
537
- surName?: string | null;
538
- email?: string | null;
539
- emailVerified?: boolean;
540
- phoneNumber?: string | null;
541
- phoneNumberVerified?: boolean;
542
- roles?: Array<(string)> | null;
543
- sessionId?: string | null;
544
- };
545
-
546
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
547
- calendarAlgorithmType?: string | null;
548
- dateTimeFormatLong?: string | null;
549
- shortDatePattern?: string | null;
550
- fullDateTimePattern?: string | null;
551
- dateSeparator?: string | null;
552
- shortTimePattern?: string | null;
553
- longTimePattern?: string | null;
554
- };
555
-
556
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
557
- timeZoneName?: string | null;
558
- };
559
-
560
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
561
- properties?: {
562
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
563
- } | null;
564
- configuration?: {
565
- [key: string]: unknown;
566
- } | null;
567
- };
568
-
569
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
570
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
571
- localizationResource?: string | null;
572
- };
573
-
574
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
575
- name?: string | null;
576
- value?: unknown;
577
- };
578
-
579
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
580
- isAvailable?: boolean;
581
- };
582
-
583
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
584
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
585
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
586
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
587
- };
588
-
589
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
590
- isAvailable?: boolean;
591
- };
592
-
593
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
594
- isAvailable?: boolean;
595
- };
596
-
597
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
598
- typeSimple?: string | null;
599
- config?: {
600
- [key: string]: unknown;
601
- } | null;
602
- };
603
-
604
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
605
- type?: string | null;
606
- typeSimple?: string | null;
607
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
608
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
609
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
610
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
611
- configuration?: {
612
- [key: string]: unknown;
613
- } | null;
614
- defaultValue?: unknown;
615
- };
616
-
617
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
618
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
619
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
620
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
621
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
622
- };
623
-
624
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
625
- isVisible?: boolean;
626
- };
627
-
628
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
629
- url?: string | null;
630
- resultListPropertyName?: string | null;
631
- displayPropertyName?: string | null;
632
- valuePropertyName?: string | null;
633
- filterParamName?: string | null;
634
- };
635
-
636
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
637
- isVisible?: boolean;
638
- };
639
-
640
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
641
- name?: string | null;
642
- resource?: string | null;
643
- };
644
-
645
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
646
- entities?: {
647
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
648
- } | null;
649
- configuration?: {
650
- [key: string]: unknown;
651
- } | null;
652
- };
653
-
654
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
655
- modules?: {
656
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
657
- } | null;
658
- enums?: {
659
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
660
- } | null;
661
- };
662
-
663
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
664
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
665
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
666
- };
667
-
668
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
669
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
670
- };
671
-
672
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
673
- timeZoneId?: string | null;
674
- };
675
-
676
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
677
- id?: string | null;
678
- name?: string | null;
679
- isAvailable?: boolean;
680
- };
681
-
682
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
683
- isEnabled?: boolean;
684
- };
685
-
686
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
687
- uniqueName?: string | null;
688
- name?: string | null;
689
- httpMethod?: string | null;
690
- url?: string | null;
691
- supportedVersions?: Array<(string)> | null;
692
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
693
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
694
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
695
- allowAnonymous?: boolean | null;
696
- implementFrom?: string | null;
697
- };
698
-
699
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
700
- modules?: {
701
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
702
- } | null;
703
- types?: {
704
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
705
- } | null;
706
- };
707
-
708
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
709
- controllerName?: string | null;
710
- controllerGroupName?: string | null;
711
- isRemoteService?: boolean;
712
- isIntegrationService?: boolean;
713
- apiVersion?: string | null;
714
- type?: string | null;
715
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
716
- actions?: {
717
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
718
- } | null;
719
- };
720
-
721
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
722
- type?: string | null;
723
- name?: string | null;
724
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
725
- };
726
-
727
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
728
- name?: string | null;
729
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
730
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
731
- };
732
-
733
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
734
- name?: string | null;
735
- typeAsString?: string | null;
736
- type?: string | null;
737
- typeSimple?: string | null;
738
- isOptional?: boolean;
739
- defaultValue?: unknown;
740
- };
741
-
742
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
743
- rootPath?: string | null;
744
- remoteServiceName?: string | null;
745
- controllers?: {
746
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
747
- } | null;
748
- };
749
-
750
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
751
- nameOnMethod?: string | null;
752
- name?: string | null;
753
- jsonName?: string | null;
754
- type?: string | null;
755
- typeSimple?: string | null;
756
- isOptional?: boolean;
757
- defaultValue?: unknown;
758
- constraintTypes?: Array<(string)> | null;
759
- bindingSourceId?: string | null;
760
- descriptorName?: string | null;
761
- };
762
-
763
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
764
- name?: string | null;
765
- jsonName?: string | null;
766
- type?: string | null;
767
- typeSimple?: string | null;
768
- isRequired?: boolean;
769
- minLength?: number | null;
770
- maxLength?: number | null;
771
- minimum?: string | null;
772
- maximum?: string | null;
773
- regex?: string | null;
774
- };
775
-
776
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
777
- type?: string | null;
778
- typeSimple?: string | null;
779
- };
780
-
781
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
782
- baseType?: string | null;
783
- isEnum?: boolean;
784
- enumNames?: Array<(string)> | null;
785
- enumValues?: Array<unknown> | null;
786
- genericArguments?: Array<(string)> | null;
787
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
788
- };
789
-
790
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
791
- code?: string | null;
792
- message?: string | null;
793
- details?: string | null;
794
- data?: {
795
- [key: string]: unknown;
796
- } | null;
797
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
798
- };
799
-
800
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
801
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
802
- };
803
-
804
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
805
- message?: string | null;
806
- members?: Array<(string)> | null;
807
- };
808
-
809
- export type Volo_Abp_Localization_LanguageInfo = {
810
- cultureName?: string | null;
811
- uiCultureName?: string | null;
812
- displayName?: string | null;
813
- readonly twoLetterISOLanguageName?: string | null;
814
- };
815
-
816
- export type Volo_Abp_NameValue = {
817
- name?: string | null;
818
- value?: string | null;
819
- };
820
-
821
- export type GetApiAbpApiDefinitionData = {
822
- includeTypes?: boolean;
823
- };
824
-
825
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
826
-
827
- export type GetApiAbpApplicationConfigurationData = {
828
- includeLocalizationResources?: boolean;
829
- };
830
-
831
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
832
-
833
- export type GetApiAbpApplicationLocalizationData = {
834
- cultureName: string;
835
- onlyDynamics?: boolean;
836
- };
837
-
838
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
839
-
840
- export type PostApiBackerServiceBackersData = {
841
- requestBody?: UpwithCrowd_BackerService_Backers_CreateBackerDto;
842
- };
843
-
844
- export type PostApiBackerServiceBackersResponse = UpwithCrowd_BackerService_Backers_BackerDto;
845
-
846
- export type GetApiBackerServiceBackersData = {
847
- maxResultCount?: number;
848
- skipCount?: number;
849
- };
850
-
851
- export type GetApiBackerServiceBackersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
852
-
853
- export type PutApiBackerServiceBackersData = {
854
- id?: string;
855
- requestBody?: UpwithCrowd_BackerService_Backers_UpdateBackerDto;
856
- };
857
-
858
- export type PutApiBackerServiceBackersResponse = UpwithCrowd_BackerService_Backers_BackerDto;
859
-
860
- export type DeleteApiBackerServiceBackersData = {
861
- id?: string;
862
- };
863
-
864
- export type DeleteApiBackerServiceBackersResponse = unknown;
865
-
866
- export type GetApiBackerServiceBackersByIdData = {
867
- id: string;
868
- };
869
-
870
- export type GetApiBackerServiceBackersByIdResponse = UpwithCrowd_BackerService_Backers_BackerDto;
871
-
872
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdData = {
873
- contactInformationTypeId: string;
874
- requestBody?: Array<UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto>;
875
- };
876
-
877
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdResponse = unknown;
878
-
879
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdData = {
880
- contactInformationTypeId: string;
881
- requestBody?: Array<UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto>;
882
- };
883
-
884
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdResponse = unknown;
885
-
886
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdData = {
887
- contactInformationTypeId: string;
888
- requestBody?: Array<UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto>;
889
- };
890
-
891
- export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdResponse = unknown;
892
-
893
- export type PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdData = {
894
- entityInformationTypeId: string;
895
- requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
896
- };
897
-
898
- export type PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
899
-
900
- export type PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdData = {
901
- entityInformationTypeId: string;
902
- requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
903
- };
904
-
905
- export type PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
906
-
907
- export type PostApiBackerServiceBackersEntityInformationTypeByBackerIdData = {
908
- backerId: string;
909
- requestBody?: UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto;
910
- };
911
-
912
- export type PostApiBackerServiceBackersEntityInformationTypeByBackerIdResponse = UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto;
913
-
914
- export type PostApiBackerServiceBackersAffiliationTypeByBackerIdData = {
915
- backerId: string;
916
- requestBody?: UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto;
917
- };
918
-
919
- export type PostApiBackerServiceBackersAffiliationTypeByBackerIdResponse = UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto;
920
-
921
- export type PostApiBackerServiceBackersWithComponentsData = {
922
- requestBody?: UpwithCrowd_BackerService_Backers_CreateBackerWithComponentsDto;
923
- };
924
-
925
- export type PostApiBackerServiceBackersWithComponentsResponse = UpwithCrowd_BackerService_Backers_BackerDto;
926
-
927
- export type GetApiBackerServiceBackersDetailByIdData = {
928
- id: string;
929
- };
930
-
931
- export type GetApiBackerServiceBackersDetailByIdResponse = UpwithCrowd_BackerService_Backers_BackerDto;
932
-
933
- export type GetApiBackerServiceBackersListMyBackersResponse = Array<UpwithCrowd_BackerService_Backers_BackerDto>;
934
-
935
- export type PostApiBackerServiceIndividualsData = {
936
- requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
937
- };
938
-
939
- export type PostApiBackerServiceIndividualsResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
940
-
941
- export type DeleteApiBackerServiceIndividualsData = {
942
- id?: string;
943
- };
944
-
945
- export type DeleteApiBackerServiceIndividualsResponse = unknown;
946
-
947
- export type GetApiBackerServiceIndividualsData = {
948
- maxResultCount?: number;
949
- skipCount?: number;
950
- sorting?: string;
951
- };
952
-
953
- export type GetApiBackerServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
954
-
955
- export type PutApiBackerServiceIndividualsData = {
956
- id?: string;
957
- requestBody?: UpwithCrowd_BackerService_Individuals_UpdateIndividualDto;
958
- };
959
-
960
- export type PutApiBackerServiceIndividualsResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
961
-
962
- export type PostApiBackerServiceIndividualsIndependentData = {
963
- entityInformationTypeId?: string;
964
- requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
965
- };
966
-
967
- export type PostApiBackerServiceIndividualsIndependentResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
968
-
969
- export type PostApiBackerServiceIndividualsPersonalSummaryData = {
970
- individualId?: string;
971
- requestBody?: UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto;
972
- };
973
-
974
- export type PostApiBackerServiceIndividualsPersonalSummaryResponse = UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto;
975
-
976
- export type PostApiBackerServiceIndividualsWithIdData = {
977
- requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualWithIdDto;
978
- };
979
-
980
- export type PostApiBackerServiceIndividualsWithIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
981
-
982
- export type GetApiBackerServiceIndividualsByIdData = {
983
- id: string;
984
- };
985
-
986
- export type GetApiBackerServiceIndividualsByIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
987
-
988
- export type PostApiBackerServiceOrganizationsData = {
989
- requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
990
- };
991
-
992
- export type PostApiBackerServiceOrganizationsResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
993
-
994
- export type DeleteApiBackerServiceOrganizationsData = {
995
- id?: string;
996
- };
997
-
998
- export type DeleteApiBackerServiceOrganizationsResponse = unknown;
999
-
1000
- export type GetApiBackerServiceOrganizationsData = {
1001
- maxResultCount?: number;
1002
- skipCount?: number;
1003
- sorting?: string;
1004
- };
1005
-
1006
- export type GetApiBackerServiceOrganizationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1007
-
1008
- export type PutApiBackerServiceOrganizationsData = {
1009
- id?: string;
1010
- requestBody?: UpwithCrowd_BackerService_Organizations_UpdateOrganizationDto;
1011
- };
1012
-
1013
- export type PutApiBackerServiceOrganizationsResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1014
-
1015
- export type PostApiBackerServiceOrganizationsIndependentData = {
1016
- entityInformationTypeId?: string;
1017
- requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
1018
- };
1019
-
1020
- export type PostApiBackerServiceOrganizationsIndependentResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1021
-
1022
- export type PostApiBackerServiceOrganizationsWithIdData = {
1023
- requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationWithIdDto;
1024
- };
1025
-
1026
- export type PostApiBackerServiceOrganizationsWithIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1027
-
1028
- export type GetApiBackerServiceOrganizationsByIdData = {
1029
- id: string;
1030
- };
1031
-
1032
- export type GetApiBackerServiceOrganizationsByIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1033
-
1034
- export type $OpenApiTs = {
1035
- '/api/abp/api-definition': {
1036
- get: {
1037
- req: GetApiAbpApiDefinitionData;
1038
- res: {
1039
- /**
1040
- * Success
1041
- */
1042
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1043
- /**
1044
- * Bad Request
1045
- */
1046
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1047
- /**
1048
- * Unauthorized
1049
- */
1050
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1051
- /**
1052
- * Forbidden
1053
- */
1054
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1055
- /**
1056
- * Not Found
1057
- */
1058
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1059
- /**
1060
- * Server Error
1061
- */
1062
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
- /**
1064
- * Server Error
1065
- */
1066
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
- };
1068
- };
1069
- };
1070
- '/api/abp/application-configuration': {
1071
- get: {
1072
- req: GetApiAbpApplicationConfigurationData;
1073
- res: {
1074
- /**
1075
- * Success
1076
- */
1077
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1078
- /**
1079
- * Bad Request
1080
- */
1081
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1082
- /**
1083
- * Unauthorized
1084
- */
1085
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1086
- /**
1087
- * Forbidden
1088
- */
1089
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1090
- /**
1091
- * Not Found
1092
- */
1093
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1094
- /**
1095
- * Server Error
1096
- */
1097
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
- /**
1099
- * Server Error
1100
- */
1101
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
- };
1103
- };
1104
- };
1105
- '/api/abp/application-localization': {
1106
- get: {
1107
- req: GetApiAbpApplicationLocalizationData;
1108
- res: {
1109
- /**
1110
- * Success
1111
- */
1112
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1113
- /**
1114
- * Bad Request
1115
- */
1116
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1117
- /**
1118
- * Unauthorized
1119
- */
1120
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1121
- /**
1122
- * Forbidden
1123
- */
1124
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1125
- /**
1126
- * Not Found
1127
- */
1128
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1129
- /**
1130
- * Server Error
1131
- */
1132
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1133
- /**
1134
- * Server Error
1135
- */
1136
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1137
- };
1138
- };
1139
- };
1140
- '/api/backer-service/backers': {
1141
- post: {
1142
- req: PostApiBackerServiceBackersData;
1143
- res: {
1144
- /**
1145
- * Success
1146
- */
1147
- 200: UpwithCrowd_BackerService_Backers_BackerDto;
1148
- /**
1149
- * Bad Request
1150
- */
1151
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1152
- /**
1153
- * Unauthorized
1154
- */
1155
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1156
- /**
1157
- * Forbidden
1158
- */
1159
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1160
- /**
1161
- * Not Found
1162
- */
1163
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1164
- /**
1165
- * Server Error
1166
- */
1167
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
- /**
1169
- * Server Error
1170
- */
1171
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
- };
1173
- };
1174
- get: {
1175
- req: GetApiBackerServiceBackersData;
1176
- res: {
1177
- /**
1178
- * Success
1179
- */
1180
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1181
- /**
1182
- * Bad Request
1183
- */
1184
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1185
- /**
1186
- * Unauthorized
1187
- */
1188
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1189
- /**
1190
- * Forbidden
1191
- */
1192
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1193
- /**
1194
- * Not Found
1195
- */
1196
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1197
- /**
1198
- * Server Error
1199
- */
1200
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
- /**
1202
- * Server Error
1203
- */
1204
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
- };
1206
- };
1207
- put: {
1208
- req: PutApiBackerServiceBackersData;
1209
- res: {
1210
- /**
1211
- * Success
1212
- */
1213
- 200: UpwithCrowd_BackerService_Backers_BackerDto;
1214
- /**
1215
- * Bad Request
1216
- */
1217
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1218
- /**
1219
- * Unauthorized
1220
- */
1221
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1222
- /**
1223
- * Forbidden
1224
- */
1225
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1226
- /**
1227
- * Not Found
1228
- */
1229
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1230
- /**
1231
- * Server Error
1232
- */
1233
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1234
- /**
1235
- * Server Error
1236
- */
1237
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1238
- };
1239
- };
1240
- delete: {
1241
- req: DeleteApiBackerServiceBackersData;
1242
- res: {
1243
- /**
1244
- * Success
1245
- */
1246
- 200: unknown;
1247
- /**
1248
- * Bad Request
1249
- */
1250
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1251
- /**
1252
- * Unauthorized
1253
- */
1254
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1255
- /**
1256
- * Forbidden
1257
- */
1258
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1259
- /**
1260
- * Not Found
1261
- */
1262
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1263
- /**
1264
- * Server Error
1265
- */
1266
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
- /**
1268
- * Server Error
1269
- */
1270
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
- };
1272
- };
1273
- };
1274
- '/api/backer-service/backers/{id}': {
1275
- get: {
1276
- req: GetApiBackerServiceBackersByIdData;
1277
- res: {
1278
- /**
1279
- * Success
1280
- */
1281
- 200: UpwithCrowd_BackerService_Backers_BackerDto;
1282
- /**
1283
- * Bad Request
1284
- */
1285
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1286
- /**
1287
- * Unauthorized
1288
- */
1289
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1290
- /**
1291
- * Forbidden
1292
- */
1293
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1294
- /**
1295
- * Not Found
1296
- */
1297
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1298
- /**
1299
- * Server Error
1300
- */
1301
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
- /**
1303
- * Server Error
1304
- */
1305
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
- };
1307
- };
1308
- };
1309
- '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/address/{contactInformationTypeId}': {
1310
- post: {
1311
- req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdData;
1312
- res: {
1313
- /**
1314
- * Success
1315
- */
1316
- 200: unknown;
1317
- /**
1318
- * Bad Request
1319
- */
1320
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1321
- /**
1322
- * Unauthorized
1323
- */
1324
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1325
- /**
1326
- * Forbidden
1327
- */
1328
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1329
- /**
1330
- * Not Found
1331
- */
1332
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1333
- /**
1334
- * Server Error
1335
- */
1336
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
- /**
1338
- * Server Error
1339
- */
1340
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
- };
1342
- };
1343
- };
1344
- '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/email/{contactInformationTypeId}': {
1345
- post: {
1346
- req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdData;
1347
- res: {
1348
- /**
1349
- * Success
1350
- */
1351
- 200: unknown;
1352
- /**
1353
- * Bad Request
1354
- */
1355
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1356
- /**
1357
- * Unauthorized
1358
- */
1359
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1360
- /**
1361
- * Forbidden
1362
- */
1363
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1364
- /**
1365
- * Not Found
1366
- */
1367
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
- /**
1369
- * Server Error
1370
- */
1371
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
- /**
1373
- * Server Error
1374
- */
1375
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
- };
1377
- };
1378
- };
1379
- '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/telephone/{contactInformationTypeId}': {
1380
- post: {
1381
- req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdData;
1382
- res: {
1383
- /**
1384
- * Success
1385
- */
1386
- 200: unknown;
1387
- /**
1388
- * Bad Request
1389
- */
1390
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1391
- /**
1392
- * Unauthorized
1393
- */
1394
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1395
- /**
1396
- * Forbidden
1397
- */
1398
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1399
- /**
1400
- * Not Found
1401
- */
1402
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1403
- /**
1404
- * Server Error
1405
- */
1406
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
- /**
1408
- * Server Error
1409
- */
1410
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
- };
1412
- };
1413
- };
1414
- '/api/backer-service/backers/entity-information-type/individual/{entityInformationTypeId}': {
1415
- post: {
1416
- req: PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdData;
1417
- res: {
1418
- /**
1419
- * Success
1420
- */
1421
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1422
- /**
1423
- * Bad Request
1424
- */
1425
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1426
- /**
1427
- * Unauthorized
1428
- */
1429
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1430
- /**
1431
- * Forbidden
1432
- */
1433
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1434
- /**
1435
- * Not Found
1436
- */
1437
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
- /**
1439
- * Server Error
1440
- */
1441
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
- /**
1443
- * Server Error
1444
- */
1445
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
- };
1447
- };
1448
- };
1449
- '/api/backer-service/backers/entity-information-type/organization/{entityInformationTypeId}': {
1450
- post: {
1451
- req: PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdData;
1452
- res: {
1453
- /**
1454
- * Success
1455
- */
1456
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
1457
- /**
1458
- * Bad Request
1459
- */
1460
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1461
- /**
1462
- * Unauthorized
1463
- */
1464
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1465
- /**
1466
- * Forbidden
1467
- */
1468
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1469
- /**
1470
- * Not Found
1471
- */
1472
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1473
- /**
1474
- * Server Error
1475
- */
1476
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1477
- /**
1478
- * Server Error
1479
- */
1480
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1481
- };
1482
- };
1483
- };
1484
- '/api/backer-service/backers/entity-information-type/{backerId}': {
1485
- post: {
1486
- req: PostApiBackerServiceBackersEntityInformationTypeByBackerIdData;
1487
- res: {
1488
- /**
1489
- * Success
1490
- */
1491
- 200: UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto;
1492
- /**
1493
- * Bad Request
1494
- */
1495
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1496
- /**
1497
- * Unauthorized
1498
- */
1499
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1500
- /**
1501
- * Forbidden
1502
- */
1503
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1504
- /**
1505
- * Not Found
1506
- */
1507
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1508
- /**
1509
- * Server Error
1510
- */
1511
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1512
- /**
1513
- * Server Error
1514
- */
1515
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1516
- };
1517
- };
1518
- };
1519
- '/api/backer-service/backers/affiliation-type/{backerId}': {
1520
- post: {
1521
- req: PostApiBackerServiceBackersAffiliationTypeByBackerIdData;
1522
- res: {
1523
- /**
1524
- * Success
1525
- */
1526
- 200: UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto;
1527
- /**
1528
- * Bad Request
1529
- */
1530
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1531
- /**
1532
- * Unauthorized
1533
- */
1534
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1535
- /**
1536
- * Forbidden
1537
- */
1538
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1539
- /**
1540
- * Not Found
1541
- */
1542
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1543
- /**
1544
- * Server Error
1545
- */
1546
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1547
- /**
1548
- * Server Error
1549
- */
1550
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1551
- };
1552
- };
1553
- };
1554
- '/api/backer-service/backers/with-components': {
1555
- post: {
1556
- req: PostApiBackerServiceBackersWithComponentsData;
1557
- res: {
1558
- /**
1559
- * Success
1560
- */
1561
- 200: UpwithCrowd_BackerService_Backers_BackerDto;
1562
- /**
1563
- * Bad Request
1564
- */
1565
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1566
- /**
1567
- * Unauthorized
1568
- */
1569
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1570
- /**
1571
- * Forbidden
1572
- */
1573
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1574
- /**
1575
- * Not Found
1576
- */
1577
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1578
- /**
1579
- * Server Error
1580
- */
1581
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1582
- /**
1583
- * Server Error
1584
- */
1585
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1586
- };
1587
- };
1588
- };
1589
- '/api/backer-service/backers/detail/{id}': {
1590
- get: {
1591
- req: GetApiBackerServiceBackersDetailByIdData;
1592
- res: {
1593
- /**
1594
- * Success
1595
- */
1596
- 200: UpwithCrowd_BackerService_Backers_BackerDto;
1597
- /**
1598
- * Bad Request
1599
- */
1600
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1601
- /**
1602
- * Unauthorized
1603
- */
1604
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1605
- /**
1606
- * Forbidden
1607
- */
1608
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
- /**
1610
- * Not Found
1611
- */
1612
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
- /**
1614
- * Server Error
1615
- */
1616
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
- /**
1618
- * Server Error
1619
- */
1620
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
- };
1622
- };
1623
- };
1624
- '/api/backer-service/backers/list-my-backers': {
1625
- get: {
1626
- res: {
1627
- /**
1628
- * Success
1629
- */
1630
- 200: Array<UpwithCrowd_BackerService_Backers_BackerDto>;
1631
- /**
1632
- * Bad Request
1633
- */
1634
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1635
- /**
1636
- * Unauthorized
1637
- */
1638
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1639
- /**
1640
- * Forbidden
1641
- */
1642
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1643
- /**
1644
- * Not Found
1645
- */
1646
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1647
- /**
1648
- * Server Error
1649
- */
1650
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1651
- /**
1652
- * Server Error
1653
- */
1654
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1655
- };
1656
- };
1657
- };
1658
- '/api/backer-service/individuals': {
1659
- post: {
1660
- req: PostApiBackerServiceIndividualsData;
1661
- res: {
1662
- /**
1663
- * Success
1664
- */
1665
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1666
- /**
1667
- * Bad Request
1668
- */
1669
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1670
- /**
1671
- * Unauthorized
1672
- */
1673
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1674
- /**
1675
- * Forbidden
1676
- */
1677
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1678
- /**
1679
- * Not Found
1680
- */
1681
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1682
- /**
1683
- * Server Error
1684
- */
1685
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1686
- /**
1687
- * Server Error
1688
- */
1689
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1690
- };
1691
- };
1692
- delete: {
1693
- req: DeleteApiBackerServiceIndividualsData;
1694
- res: {
1695
- /**
1696
- * Success
1697
- */
1698
- 200: unknown;
1699
- /**
1700
- * Bad Request
1701
- */
1702
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1703
- /**
1704
- * Unauthorized
1705
- */
1706
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1707
- /**
1708
- * Forbidden
1709
- */
1710
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1711
- /**
1712
- * Not Found
1713
- */
1714
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1715
- /**
1716
- * Server Error
1717
- */
1718
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1719
- /**
1720
- * Server Error
1721
- */
1722
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1723
- };
1724
- };
1725
- get: {
1726
- req: GetApiBackerServiceIndividualsData;
1727
- res: {
1728
- /**
1729
- * Success
1730
- */
1731
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1732
- /**
1733
- * Bad Request
1734
- */
1735
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1736
- /**
1737
- * Unauthorized
1738
- */
1739
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1740
- /**
1741
- * Forbidden
1742
- */
1743
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1744
- /**
1745
- * Not Found
1746
- */
1747
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1748
- /**
1749
- * Server Error
1750
- */
1751
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1752
- /**
1753
- * Server Error
1754
- */
1755
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1756
- };
1757
- };
1758
- put: {
1759
- req: PutApiBackerServiceIndividualsData;
1760
- res: {
1761
- /**
1762
- * Success
1763
- */
1764
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1765
- /**
1766
- * Bad Request
1767
- */
1768
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1769
- /**
1770
- * Unauthorized
1771
- */
1772
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1773
- /**
1774
- * Forbidden
1775
- */
1776
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1777
- /**
1778
- * Not Found
1779
- */
1780
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1781
- /**
1782
- * Server Error
1783
- */
1784
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1785
- /**
1786
- * Server Error
1787
- */
1788
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1789
- };
1790
- };
1791
- };
1792
- '/api/backer-service/individuals/independent': {
1793
- post: {
1794
- req: PostApiBackerServiceIndividualsIndependentData;
1795
- res: {
1796
- /**
1797
- * Success
1798
- */
1799
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1800
- /**
1801
- * Bad Request
1802
- */
1803
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1804
- /**
1805
- * Unauthorized
1806
- */
1807
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1808
- /**
1809
- * Forbidden
1810
- */
1811
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1812
- /**
1813
- * Not Found
1814
- */
1815
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1816
- /**
1817
- * Server Error
1818
- */
1819
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1820
- /**
1821
- * Server Error
1822
- */
1823
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1824
- };
1825
- };
1826
- };
1827
- '/api/backer-service/individuals/personal-summary': {
1828
- post: {
1829
- req: PostApiBackerServiceIndividualsPersonalSummaryData;
1830
- res: {
1831
- /**
1832
- * Success
1833
- */
1834
- 200: UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto;
1835
- /**
1836
- * Bad Request
1837
- */
1838
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1839
- /**
1840
- * Unauthorized
1841
- */
1842
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1843
- /**
1844
- * Forbidden
1845
- */
1846
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1847
- /**
1848
- * Not Found
1849
- */
1850
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1851
- /**
1852
- * Server Error
1853
- */
1854
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1855
- /**
1856
- * Server Error
1857
- */
1858
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1859
- };
1860
- };
1861
- };
1862
- '/api/backer-service/individuals/with-id': {
1863
- post: {
1864
- req: PostApiBackerServiceIndividualsWithIdData;
1865
- res: {
1866
- /**
1867
- * Success
1868
- */
1869
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1870
- /**
1871
- * Bad Request
1872
- */
1873
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1874
- /**
1875
- * Unauthorized
1876
- */
1877
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1878
- /**
1879
- * Forbidden
1880
- */
1881
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1882
- /**
1883
- * Not Found
1884
- */
1885
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1886
- /**
1887
- * Server Error
1888
- */
1889
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1890
- /**
1891
- * Server Error
1892
- */
1893
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1894
- };
1895
- };
1896
- };
1897
- '/api/backer-service/individuals/{id}': {
1898
- get: {
1899
- req: GetApiBackerServiceIndividualsByIdData;
1900
- res: {
1901
- /**
1902
- * Success
1903
- */
1904
- 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1905
- /**
1906
- * Bad Request
1907
- */
1908
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1909
- /**
1910
- * Unauthorized
1911
- */
1912
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1913
- /**
1914
- * Forbidden
1915
- */
1916
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1917
- /**
1918
- * Not Found
1919
- */
1920
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1921
- /**
1922
- * Server Error
1923
- */
1924
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1925
- /**
1926
- * Server Error
1927
- */
1928
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1929
- };
1930
- };
1931
- };
1932
- '/api/backer-service/organizations': {
1933
- post: {
1934
- req: PostApiBackerServiceOrganizationsData;
1935
- res: {
1936
- /**
1937
- * Success
1938
- */
1939
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
1940
- /**
1941
- * Bad Request
1942
- */
1943
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1944
- /**
1945
- * Unauthorized
1946
- */
1947
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1948
- /**
1949
- * Forbidden
1950
- */
1951
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1952
- /**
1953
- * Not Found
1954
- */
1955
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1956
- /**
1957
- * Server Error
1958
- */
1959
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1960
- /**
1961
- * Server Error
1962
- */
1963
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1964
- };
1965
- };
1966
- delete: {
1967
- req: DeleteApiBackerServiceOrganizationsData;
1968
- res: {
1969
- /**
1970
- * Success
1971
- */
1972
- 200: unknown;
1973
- /**
1974
- * Bad Request
1975
- */
1976
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1977
- /**
1978
- * Unauthorized
1979
- */
1980
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1981
- /**
1982
- * Forbidden
1983
- */
1984
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1985
- /**
1986
- * Not Found
1987
- */
1988
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1989
- /**
1990
- * Server Error
1991
- */
1992
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1993
- /**
1994
- * Server Error
1995
- */
1996
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1997
- };
1998
- };
1999
- get: {
2000
- req: GetApiBackerServiceOrganizationsData;
2001
- res: {
2002
- /**
2003
- * Success
2004
- */
2005
- 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2006
- /**
2007
- * Bad Request
2008
- */
2009
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2010
- /**
2011
- * Unauthorized
2012
- */
2013
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2014
- /**
2015
- * Forbidden
2016
- */
2017
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2018
- /**
2019
- * Not Found
2020
- */
2021
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2022
- /**
2023
- * Server Error
2024
- */
2025
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2026
- /**
2027
- * Server Error
2028
- */
2029
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2030
- };
2031
- };
2032
- put: {
2033
- req: PutApiBackerServiceOrganizationsData;
2034
- res: {
2035
- /**
2036
- * Success
2037
- */
2038
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2039
- /**
2040
- * Bad Request
2041
- */
2042
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
- /**
2044
- * Unauthorized
2045
- */
2046
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2047
- /**
2048
- * Forbidden
2049
- */
2050
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2051
- /**
2052
- * Not Found
2053
- */
2054
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2055
- /**
2056
- * Server Error
2057
- */
2058
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2059
- /**
2060
- * Server Error
2061
- */
2062
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2063
- };
2064
- };
2065
- };
2066
- '/api/backer-service/organizations/independent': {
2067
- post: {
2068
- req: PostApiBackerServiceOrganizationsIndependentData;
2069
- res: {
2070
- /**
2071
- * Success
2072
- */
2073
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2074
- /**
2075
- * Bad Request
2076
- */
2077
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2078
- /**
2079
- * Unauthorized
2080
- */
2081
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2082
- /**
2083
- * Forbidden
2084
- */
2085
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2086
- /**
2087
- * Not Found
2088
- */
2089
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2090
- /**
2091
- * Server Error
2092
- */
2093
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2094
- /**
2095
- * Server Error
2096
- */
2097
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2098
- };
2099
- };
2100
- };
2101
- '/api/backer-service/organizations/with-id': {
2102
- post: {
2103
- req: PostApiBackerServiceOrganizationsWithIdData;
2104
- res: {
2105
- /**
2106
- * Success
2107
- */
2108
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2109
- /**
2110
- * Bad Request
2111
- */
2112
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2113
- /**
2114
- * Unauthorized
2115
- */
2116
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2117
- /**
2118
- * Forbidden
2119
- */
2120
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2121
- /**
2122
- * Not Found
2123
- */
2124
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2125
- /**
2126
- * Server Error
2127
- */
2128
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2129
- /**
2130
- * Server Error
2131
- */
2132
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2133
- };
2134
- };
2135
- };
2136
- '/api/backer-service/organizations/{id}': {
2137
- get: {
2138
- req: GetApiBackerServiceOrganizationsByIdData;
2139
- res: {
2140
- /**
2141
- * Success
2142
- */
2143
- 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2144
- /**
2145
- * Bad Request
2146
- */
2147
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2148
- /**
2149
- * Unauthorized
2150
- */
2151
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2152
- /**
2153
- * Forbidden
2154
- */
2155
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2156
- /**
2157
- * Not Found
2158
- */
2159
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2160
- /**
2161
- * Server Error
2162
- */
2163
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2164
- /**
2165
- * Server Error
2166
- */
2167
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2168
- };
2169
- };
2170
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type UpwithCrowd_BackerService_AddressTypes_AddressTypeDto = {
4
+ id?: string;
5
+ creationTime?: string;
6
+ creatorId?: string | null;
7
+ lastModificationTime?: string | null;
8
+ lastModifierId?: string | null;
9
+ isDeleted?: boolean;
10
+ deleterId?: string | null;
11
+ deletionTime?: string | null;
12
+ typeCode?: UpwithCrowd_BackerService_Enums_AddressTypeCode;
13
+ addressLine?: string | null;
14
+ city?: string | null;
15
+ terriority?: string | null;
16
+ postalCode?: string | null;
17
+ country?: string | null;
18
+ fullAddress?: string | null;
19
+ primaryFlag?: boolean;
20
+ contactInformationTypeId?: string;
21
+ };
22
+
23
+ export type UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto = {
24
+ readonly extraProperties?: {
25
+ [key: string]: unknown;
26
+ } | null;
27
+ typeCode: UpwithCrowd_BackerService_Enums_AddressTypeCode;
28
+ addressLine: string;
29
+ city: string;
30
+ terriority: string;
31
+ postalCode: string;
32
+ country: string;
33
+ fullAddress: string;
34
+ primaryFlag: boolean;
35
+ };
36
+
37
+ export type UpwithCrowd_BackerService_AddressTypes_UpdateAddressTypeDto = {
38
+ readonly extraProperties?: {
39
+ [key: string]: unknown;
40
+ } | null;
41
+ typeCode: UpwithCrowd_BackerService_Enums_AddressTypeCode;
42
+ addressLine: string;
43
+ city: string;
44
+ terriority: string;
45
+ postalCode: string;
46
+ country: string;
47
+ fullAddress: string;
48
+ primaryFlag: boolean;
49
+ };
50
+
51
+ export type UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto = {
52
+ id?: string;
53
+ creationTime?: string;
54
+ creatorId?: string | null;
55
+ lastModificationTime?: string | null;
56
+ lastModifierId?: string | null;
57
+ isDeleted?: boolean;
58
+ deleterId?: string | null;
59
+ deletionTime?: string | null;
60
+ backerId?: string;
61
+ name?: string | null;
62
+ description?: string | null;
63
+ affiliationTypeCode?: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
64
+ partyId?: string;
65
+ };
66
+
67
+ export type UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto = {
68
+ readonly extraProperties?: {
69
+ [key: string]: unknown;
70
+ } | null;
71
+ name: string;
72
+ description: string;
73
+ affiliationTypeCode: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
74
+ };
75
+
76
+ export type UpwithCrowd_BackerService_AffiliationTypes_UpdateAffiliationTypeDto = {
77
+ readonly extraProperties?: {
78
+ [key: string]: unknown;
79
+ } | null;
80
+ id: string;
81
+ backerId: string;
82
+ name: string;
83
+ description: string;
84
+ affiliationTypeCode: UpwithCrowd_BackerService_Enums_AffiliationTypeCode;
85
+ partyId: string;
86
+ };
87
+
88
+ export type UpwithCrowd_BackerService_Backers_BackerDto = {
89
+ id?: string;
90
+ creationTime?: string;
91
+ creatorId?: string | null;
92
+ lastModificationTime?: string | null;
93
+ lastModifierId?: string | null;
94
+ isDeleted?: boolean;
95
+ deleterId?: string | null;
96
+ deletionTime?: string | null;
97
+ entityInformations?: Array<UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto> | null;
98
+ affiliations?: Array<UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto> | null;
99
+ };
100
+
101
+ export type UpwithCrowd_BackerService_Backers_CreateBackerDto = {
102
+ readonly extraProperties?: {
103
+ [key: string]: unknown;
104
+ } | null;
105
+ entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
106
+ affiliations: Array<UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto>;
107
+ };
108
+
109
+ export type UpwithCrowd_BackerService_Backers_CreateBackerWithComponentsDto = {
110
+ readonly extraProperties?: {
111
+ [key: string]: unknown;
112
+ } | null;
113
+ entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
114
+ affiliations?: Array<UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto> | null;
115
+ };
116
+
117
+ export type UpwithCrowd_BackerService_Backers_UpdateBackerDto = {
118
+ readonly extraProperties?: {
119
+ [key: string]: unknown;
120
+ } | null;
121
+ entityInformations: Array<UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto>;
122
+ affiliations: Array<UpwithCrowd_BackerService_AffiliationTypes_UpdateAffiliationTypeDto>;
123
+ };
124
+
125
+ export type UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto = {
126
+ id?: string;
127
+ creationTime?: string;
128
+ creatorId?: string | null;
129
+ lastModificationTime?: string | null;
130
+ lastModifierId?: string | null;
131
+ isDeleted?: boolean;
132
+ deleterId?: string | null;
133
+ deletionTime?: string | null;
134
+ startDate?: string;
135
+ endDate?: string;
136
+ telephones?: Array<UpwithCrowd_BackerService_TelephoneTypes_TelephoneTypeDto> | null;
137
+ addresses?: Array<UpwithCrowd_BackerService_AddressTypes_AddressTypeDto> | null;
138
+ emails?: Array<UpwithCrowd_BackerService_EmailCommonDatas_EmailCommonDataDto> | null;
139
+ };
140
+
141
+ export type UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto = {
142
+ readonly extraProperties?: {
143
+ [key: string]: unknown;
144
+ } | null;
145
+ startDate: string;
146
+ endDate: string;
147
+ telephones: Array<UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto>;
148
+ addresses: Array<UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto>;
149
+ emails: Array<UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto>;
150
+ };
151
+
152
+ export type UpwithCrowd_BackerService_ContactInformationTypes_UpdateContactInformationTypeDto = {
153
+ readonly extraProperties?: {
154
+ [key: string]: unknown;
155
+ } | null;
156
+ startDate: string;
157
+ endDate: string;
158
+ telephone: Array<UpwithCrowd_BackerService_TelephoneTypes_UpdateTelephoneTypeDto>;
159
+ address: Array<UpwithCrowd_BackerService_AddressTypes_UpdateAddressTypeDto>;
160
+ email: Array<UpwithCrowd_BackerService_EmailCommonDatas_UpdateEmailCommonDataDto>;
161
+ organizationId: string;
162
+ };
163
+
164
+ export type UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto = {
165
+ readonly extraProperties?: {
166
+ [key: string]: unknown;
167
+ } | null;
168
+ primaryFlag: boolean;
169
+ typeCode: UpwithCrowd_BackerService_Enums_EmailTypeCode;
170
+ emailAddress: string;
171
+ };
172
+
173
+ export type UpwithCrowd_BackerService_EmailCommonDatas_EmailCommonDataDto = {
174
+ id?: string;
175
+ creationTime?: string;
176
+ creatorId?: string | null;
177
+ lastModificationTime?: string | null;
178
+ lastModifierId?: string | null;
179
+ isDeleted?: boolean;
180
+ deleterId?: string | null;
181
+ deletionTime?: string | null;
182
+ primaryFlag?: boolean;
183
+ typeCode?: UpwithCrowd_BackerService_Enums_EmailTypeCode;
184
+ emailAddress?: string | null;
185
+ contactInformationTypeId?: string;
186
+ };
187
+
188
+ export type UpwithCrowd_BackerService_EmailCommonDatas_UpdateEmailCommonDataDto = {
189
+ readonly extraProperties?: {
190
+ [key: string]: unknown;
191
+ } | null;
192
+ emailAddress: string;
193
+ };
194
+
195
+ export type UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto = {
196
+ readonly extraProperties?: {
197
+ [key: string]: unknown;
198
+ } | null;
199
+ partyType: UpwithCrowd_BackerService_Enums_BackerPartyType;
200
+ organizations?: Array<UpwithCrowd_BackerService_Organizations_CreateOrganizationDto> | null;
201
+ individuals?: Array<UpwithCrowd_BackerService_Individuals_CreateIndividualDto> | null;
202
+ };
203
+
204
+ export type UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto = {
205
+ id?: string;
206
+ creationTime?: string;
207
+ creatorId?: string | null;
208
+ lastModificationTime?: string | null;
209
+ lastModifierId?: string | null;
210
+ isDeleted?: boolean;
211
+ deleterId?: string | null;
212
+ deletionTime?: string | null;
213
+ backerId?: string;
214
+ organizations?: Array<UpwithCrowd_BackerService_Organizations_OrganizationDto> | null;
215
+ individuals?: Array<UpwithCrowd_BackerService_Individuals_IndividualDto> | null;
216
+ };
217
+
218
+ export type UpwithCrowd_BackerService_Enums_AddressTypeCode = 0 | 1;
219
+
220
+ export type UpwithCrowd_BackerService_Enums_AffiliationTypeCode = 0 | 1 | 2;
221
+
222
+ export type UpwithCrowd_BackerService_Enums_BackerPartyType = 0 | 1 | 2;
223
+
224
+ export type UpwithCrowd_BackerService_Enums_EmailTypeCode = 0 | 1;
225
+
226
+ export type UpwithCrowd_BackerService_Enums_GenderTypeCode = 0 | 1;
227
+
228
+ export type UpwithCrowd_BackerService_Enums_TelephoneTypeCode = 0 | 1 | 2 | 3;
229
+
230
+ export type UpwithCrowd_BackerService_Individuals_CreateIndividualDto = {
231
+ readonly extraProperties?: {
232
+ [key: string]: unknown;
233
+ } | null;
234
+ name: UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto;
235
+ contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
236
+ personalSummaries: Array<UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto>;
237
+ };
238
+
239
+ export type UpwithCrowd_BackerService_Individuals_CreateIndividualWithIdDto = {
240
+ readonly extraProperties?: {
241
+ [key: string]: unknown;
242
+ } | null;
243
+ name: UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto;
244
+ contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
245
+ personalSummaries: Array<UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto>;
246
+ id?: string;
247
+ entityInformationTypeId?: string | null;
248
+ contactInformationId?: string;
249
+ };
250
+
251
+ export type UpwithCrowd_BackerService_Individuals_IndividualDto = {
252
+ id?: string;
253
+ creationTime?: string;
254
+ creatorId?: string | null;
255
+ lastModificationTime?: string | null;
256
+ lastModifierId?: string | null;
257
+ isDeleted?: boolean;
258
+ deleterId?: string | null;
259
+ deletionTime?: string | null;
260
+ name?: UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto;
261
+ contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
262
+ personalSummaries?: Array<UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto> | null;
263
+ entityInformationTypeId?: string;
264
+ contactInformationId?: string;
265
+ };
266
+
267
+ export type UpwithCrowd_BackerService_Individuals_UpdateIndividualDto = {
268
+ id?: string;
269
+ creationTime?: string;
270
+ creatorId?: string | null;
271
+ lastModificationTime?: string | null;
272
+ lastModifierId?: string | null;
273
+ isDeleted?: boolean;
274
+ deleterId?: string | null;
275
+ deletionTime?: string | null;
276
+ name?: UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto;
277
+ contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
278
+ personalSummaries?: Array<UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto> | null;
279
+ entityInformationTypeId: string;
280
+ contactInformationId: string;
281
+ };
282
+
283
+ export type UpwithCrowd_BackerService_NameCommonDatas_CreateNameCommonDataDto = {
284
+ salutation: string;
285
+ name: string;
286
+ suffix: string;
287
+ mailingName: string;
288
+ officialName: string;
289
+ };
290
+
291
+ export type UpwithCrowd_BackerService_NameCommonDatas_NameCommonDataDto = {
292
+ id?: string;
293
+ creationTime?: string;
294
+ creatorId?: string | null;
295
+ lastModificationTime?: string | null;
296
+ lastModifierId?: string | null;
297
+ isDeleted?: boolean;
298
+ deleterId?: string | null;
299
+ deletionTime?: string | null;
300
+ individualId?: string;
301
+ salutation?: string | null;
302
+ name?: string | null;
303
+ suffix?: string | null;
304
+ mailingName?: string | null;
305
+ officialName?: string | null;
306
+ };
307
+
308
+ export type UpwithCrowd_BackerService_Organizations_CreateOrganizationDto = {
309
+ readonly extraProperties?: {
310
+ [key: string]: unknown;
311
+ } | null;
312
+ name: string;
313
+ taxpayerId: string;
314
+ legalStatusCode: string;
315
+ customerNumber: string;
316
+ contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
317
+ };
318
+
319
+ export type UpwithCrowd_BackerService_Organizations_CreateOrganizationWithIdDto = {
320
+ readonly extraProperties?: {
321
+ [key: string]: unknown;
322
+ } | null;
323
+ name: string;
324
+ taxpayerId: string;
325
+ legalStatusCode: string;
326
+ customerNumber: string;
327
+ contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_CreateContactInformationTypeDto;
328
+ id?: string;
329
+ entityInformationTypeId?: string | null;
330
+ contactInformationId?: string;
331
+ };
332
+
333
+ export type UpwithCrowd_BackerService_Organizations_OrganizationDto = {
334
+ id?: string;
335
+ creationTime?: string;
336
+ creatorId?: string | null;
337
+ lastModificationTime?: string | null;
338
+ lastModifierId?: string | null;
339
+ isDeleted?: boolean;
340
+ deleterId?: string | null;
341
+ deletionTime?: string | null;
342
+ name?: string | null;
343
+ taxpayerId?: string | null;
344
+ legalStatusCode?: string | null;
345
+ contactInformation?: UpwithCrowd_BackerService_ContactInformationTypes_ContactInformationTypeDto;
346
+ };
347
+
348
+ export type UpwithCrowd_BackerService_Organizations_UpdateOrganizationDto = {
349
+ readonly extraProperties?: {
350
+ [key: string]: unknown;
351
+ } | null;
352
+ name: string;
353
+ taxpayerId: string;
354
+ legalStatusCode: string;
355
+ customerNumber: string;
356
+ contactInformation: UpwithCrowd_BackerService_ContactInformationTypes_UpdateContactInformationTypeDto;
357
+ };
358
+
359
+ export type UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto = {
360
+ genderType?: UpwithCrowd_BackerService_Enums_GenderTypeCode;
361
+ date?: string;
362
+ birthDate?: string;
363
+ ethnicity?: string | null;
364
+ maritalStatusCode?: string | null;
365
+ religiousAffiliationName?: string | null;
366
+ };
367
+
368
+ export type UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto = {
369
+ id?: string;
370
+ creationTime?: string;
371
+ creatorId?: string | null;
372
+ lastModificationTime?: string | null;
373
+ lastModifierId?: string | null;
374
+ isDeleted?: boolean;
375
+ deleterId?: string | null;
376
+ deletionTime?: string | null;
377
+ genderType?: UpwithCrowd_BackerService_Enums_GenderTypeCode;
378
+ individualId?: string;
379
+ date?: string;
380
+ birthDate?: string;
381
+ ethnicity?: string | null;
382
+ maritalStatusCode?: string | null;
383
+ religiousAffiliationName?: string | null;
384
+ };
385
+
386
+ export type UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto = {
387
+ readonly extraProperties?: {
388
+ [key: string]: unknown;
389
+ } | null;
390
+ primaryFlag: boolean;
391
+ typeCode: UpwithCrowd_BackerService_Enums_TelephoneTypeCode;
392
+ areaCode: string;
393
+ localNumber: string;
394
+ ituCountryCode: string;
395
+ };
396
+
397
+ export type UpwithCrowd_BackerService_TelephoneTypes_TelephoneTypeDto = {
398
+ id?: string;
399
+ creationTime?: string;
400
+ creatorId?: string | null;
401
+ lastModificationTime?: string | null;
402
+ lastModifierId?: string | null;
403
+ isDeleted?: boolean;
404
+ deleterId?: string | null;
405
+ deletionTime?: string | null;
406
+ primaryFlag?: boolean;
407
+ typeCode?: UpwithCrowd_BackerService_Enums_TelephoneTypeCode;
408
+ areaCode?: string | null;
409
+ localNumber?: string | null;
410
+ ituCountryCode?: string | null;
411
+ contactInformationTypeId?: string;
412
+ };
413
+
414
+ export type UpwithCrowd_BackerService_TelephoneTypes_UpdateTelephoneTypeDto = {
415
+ readonly extraProperties?: {
416
+ [key: string]: unknown;
417
+ } | null;
418
+ areaCode: string;
419
+ localNumber: string;
420
+ ituCountryCode: string;
421
+ };
422
+
423
+ export type Volo_Abp_Application_Dtos_PagedResultDto_1 = {
424
+ items?: Array<UpwithCrowd_BackerService_Backers_BackerDto> | null;
425
+ totalCount?: number;
426
+ };
427
+
428
+ export type Volo_Abp_Application_Dtos_PagedResultDto_12 = {
429
+ items?: Array<UpwithCrowd_BackerService_Individuals_IndividualDto> | null;
430
+ totalCount?: number;
431
+ };
432
+
433
+ export type Volo_Abp_Application_Dtos_PagedResultDto_13 = {
434
+ items?: Array<UpwithCrowd_BackerService_Organizations_OrganizationDto> | null;
435
+ totalCount?: number;
436
+ };
437
+
438
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
439
+ grantedPolicies?: {
440
+ [key: string]: (boolean);
441
+ } | null;
442
+ };
443
+
444
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
445
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
446
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
447
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
448
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
449
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
450
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
451
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
452
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
453
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
454
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
455
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
456
+ extraProperties?: {
457
+ [key: string]: unknown;
458
+ } | null;
459
+ };
460
+
461
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
462
+ values?: {
463
+ [key: string]: (string | null);
464
+ } | null;
465
+ };
466
+
467
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
468
+ enabledFeatures?: Array<(string)> | null;
469
+ };
470
+
471
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
472
+ values?: {
473
+ [key: string]: {
474
+ [key: string]: (string);
475
+ };
476
+ } | null;
477
+ resources?: {
478
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
479
+ } | null;
480
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
481
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
482
+ defaultResourceName?: string | null;
483
+ languagesMap?: {
484
+ [key: string]: Array<Volo_Abp_NameValue>;
485
+ } | null;
486
+ languageFilesMap?: {
487
+ [key: string]: Array<Volo_Abp_NameValue>;
488
+ } | null;
489
+ };
490
+
491
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
492
+ resources?: {
493
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
494
+ } | null;
495
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
496
+ };
497
+
498
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
499
+ texts?: {
500
+ [key: string]: (string);
501
+ } | null;
502
+ baseResources?: Array<(string)> | null;
503
+ };
504
+
505
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
506
+ values?: {
507
+ [key: string]: (string | null);
508
+ } | null;
509
+ };
510
+
511
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
512
+ kind?: string | null;
513
+ };
514
+
515
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
516
+ displayName?: string | null;
517
+ englishName?: string | null;
518
+ threeLetterIsoLanguageName?: string | null;
519
+ twoLetterIsoLanguageName?: string | null;
520
+ isRightToLeft?: boolean;
521
+ cultureName?: string | null;
522
+ name?: string | null;
523
+ nativeName?: string | null;
524
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
525
+ };
526
+
527
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
528
+ isAuthenticated?: boolean;
529
+ id?: string | null;
530
+ tenantId?: string | null;
531
+ impersonatorUserId?: string | null;
532
+ impersonatorTenantId?: string | null;
533
+ impersonatorUserName?: string | null;
534
+ impersonatorTenantName?: string | null;
535
+ userName?: string | null;
536
+ name?: string | null;
537
+ surName?: string | null;
538
+ email?: string | null;
539
+ emailVerified?: boolean;
540
+ phoneNumber?: string | null;
541
+ phoneNumberVerified?: boolean;
542
+ roles?: Array<(string)> | null;
543
+ sessionId?: string | null;
544
+ };
545
+
546
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
547
+ calendarAlgorithmType?: string | null;
548
+ dateTimeFormatLong?: string | null;
549
+ shortDatePattern?: string | null;
550
+ fullDateTimePattern?: string | null;
551
+ dateSeparator?: string | null;
552
+ shortTimePattern?: string | null;
553
+ longTimePattern?: string | null;
554
+ };
555
+
556
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
557
+ timeZoneName?: string | null;
558
+ };
559
+
560
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
561
+ properties?: {
562
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
563
+ } | null;
564
+ configuration?: {
565
+ [key: string]: unknown;
566
+ } | null;
567
+ };
568
+
569
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
570
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
571
+ localizationResource?: string | null;
572
+ };
573
+
574
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
575
+ name?: string | null;
576
+ value?: unknown;
577
+ };
578
+
579
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
580
+ isAvailable?: boolean;
581
+ };
582
+
583
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
584
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
585
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
586
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
587
+ };
588
+
589
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
590
+ isAvailable?: boolean;
591
+ };
592
+
593
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
594
+ isAvailable?: boolean;
595
+ };
596
+
597
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
598
+ typeSimple?: string | null;
599
+ config?: {
600
+ [key: string]: unknown;
601
+ } | null;
602
+ };
603
+
604
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
605
+ type?: string | null;
606
+ typeSimple?: string | null;
607
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
608
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
609
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
610
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
611
+ configuration?: {
612
+ [key: string]: unknown;
613
+ } | null;
614
+ defaultValue?: unknown;
615
+ };
616
+
617
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
618
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
619
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
620
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
621
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
622
+ };
623
+
624
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
625
+ isVisible?: boolean;
626
+ };
627
+
628
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
629
+ url?: string | null;
630
+ resultListPropertyName?: string | null;
631
+ displayPropertyName?: string | null;
632
+ valuePropertyName?: string | null;
633
+ filterParamName?: string | null;
634
+ };
635
+
636
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
637
+ isVisible?: boolean;
638
+ };
639
+
640
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
641
+ name?: string | null;
642
+ resource?: string | null;
643
+ };
644
+
645
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
646
+ entities?: {
647
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
648
+ } | null;
649
+ configuration?: {
650
+ [key: string]: unknown;
651
+ } | null;
652
+ };
653
+
654
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
655
+ modules?: {
656
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
657
+ } | null;
658
+ enums?: {
659
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
660
+ } | null;
661
+ };
662
+
663
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
664
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
665
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
666
+ };
667
+
668
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
669
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
670
+ };
671
+
672
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
673
+ timeZoneId?: string | null;
674
+ };
675
+
676
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
677
+ id?: string | null;
678
+ name?: string | null;
679
+ isAvailable?: boolean;
680
+ };
681
+
682
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
683
+ isEnabled?: boolean;
684
+ };
685
+
686
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
687
+ uniqueName?: string | null;
688
+ name?: string | null;
689
+ httpMethod?: string | null;
690
+ url?: string | null;
691
+ supportedVersions?: Array<(string)> | null;
692
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
693
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
694
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
695
+ allowAnonymous?: boolean | null;
696
+ implementFrom?: string | null;
697
+ };
698
+
699
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
700
+ modules?: {
701
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
702
+ } | null;
703
+ types?: {
704
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
705
+ } | null;
706
+ };
707
+
708
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
709
+ controllerName?: string | null;
710
+ controllerGroupName?: string | null;
711
+ isRemoteService?: boolean;
712
+ isIntegrationService?: boolean;
713
+ apiVersion?: string | null;
714
+ type?: string | null;
715
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
716
+ actions?: {
717
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
718
+ } | null;
719
+ };
720
+
721
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
722
+ type?: string | null;
723
+ name?: string | null;
724
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
725
+ };
726
+
727
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
728
+ name?: string | null;
729
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
730
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
731
+ };
732
+
733
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
734
+ name?: string | null;
735
+ typeAsString?: string | null;
736
+ type?: string | null;
737
+ typeSimple?: string | null;
738
+ isOptional?: boolean;
739
+ defaultValue?: unknown;
740
+ };
741
+
742
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
743
+ rootPath?: string | null;
744
+ remoteServiceName?: string | null;
745
+ controllers?: {
746
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
747
+ } | null;
748
+ };
749
+
750
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
751
+ nameOnMethod?: string | null;
752
+ name?: string | null;
753
+ jsonName?: string | null;
754
+ type?: string | null;
755
+ typeSimple?: string | null;
756
+ isOptional?: boolean;
757
+ defaultValue?: unknown;
758
+ constraintTypes?: Array<(string)> | null;
759
+ bindingSourceId?: string | null;
760
+ descriptorName?: string | null;
761
+ };
762
+
763
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
764
+ name?: string | null;
765
+ jsonName?: string | null;
766
+ type?: string | null;
767
+ typeSimple?: string | null;
768
+ isRequired?: boolean;
769
+ minLength?: number | null;
770
+ maxLength?: number | null;
771
+ minimum?: string | null;
772
+ maximum?: string | null;
773
+ regex?: string | null;
774
+ };
775
+
776
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
777
+ type?: string | null;
778
+ typeSimple?: string | null;
779
+ };
780
+
781
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
782
+ baseType?: string | null;
783
+ isEnum?: boolean;
784
+ enumNames?: Array<(string)> | null;
785
+ enumValues?: Array<unknown> | null;
786
+ genericArguments?: Array<(string)> | null;
787
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
788
+ };
789
+
790
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
791
+ code?: string | null;
792
+ message?: string | null;
793
+ details?: string | null;
794
+ data?: {
795
+ [key: string]: unknown;
796
+ } | null;
797
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
798
+ };
799
+
800
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
801
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
802
+ };
803
+
804
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
805
+ message?: string | null;
806
+ members?: Array<(string)> | null;
807
+ };
808
+
809
+ export type Volo_Abp_Localization_LanguageInfo = {
810
+ cultureName?: string | null;
811
+ uiCultureName?: string | null;
812
+ displayName?: string | null;
813
+ readonly twoLetterISOLanguageName?: string | null;
814
+ };
815
+
816
+ export type Volo_Abp_NameValue = {
817
+ name?: string | null;
818
+ value?: string | null;
819
+ };
820
+
821
+ export type GetApiAbpApiDefinitionData = {
822
+ includeTypes?: boolean;
823
+ };
824
+
825
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
826
+
827
+ export type GetApiAbpApplicationConfigurationData = {
828
+ includeLocalizationResources?: boolean;
829
+ };
830
+
831
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
832
+
833
+ export type GetApiAbpApplicationLocalizationData = {
834
+ cultureName: string;
835
+ onlyDynamics?: boolean;
836
+ };
837
+
838
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
839
+
840
+ export type PostApiBackerServiceBackersData = {
841
+ requestBody?: UpwithCrowd_BackerService_Backers_CreateBackerDto;
842
+ };
843
+
844
+ export type PostApiBackerServiceBackersResponse = UpwithCrowd_BackerService_Backers_BackerDto;
845
+
846
+ export type GetApiBackerServiceBackersData = {
847
+ maxResultCount?: number;
848
+ skipCount?: number;
849
+ };
850
+
851
+ export type GetApiBackerServiceBackersResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
852
+
853
+ export type PutApiBackerServiceBackersData = {
854
+ id?: string;
855
+ requestBody?: UpwithCrowd_BackerService_Backers_UpdateBackerDto;
856
+ };
857
+
858
+ export type PutApiBackerServiceBackersResponse = UpwithCrowd_BackerService_Backers_BackerDto;
859
+
860
+ export type DeleteApiBackerServiceBackersData = {
861
+ id?: string;
862
+ };
863
+
864
+ export type DeleteApiBackerServiceBackersResponse = unknown;
865
+
866
+ export type GetApiBackerServiceBackersByIdData = {
867
+ id: string;
868
+ };
869
+
870
+ export type GetApiBackerServiceBackersByIdResponse = UpwithCrowd_BackerService_Backers_BackerDto;
871
+
872
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdData = {
873
+ contactInformationTypeId: string;
874
+ requestBody?: Array<UpwithCrowd_BackerService_AddressTypes_CreateAddressTypeDto>;
875
+ };
876
+
877
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdResponse = unknown;
878
+
879
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdData = {
880
+ contactInformationTypeId: string;
881
+ requestBody?: Array<UpwithCrowd_BackerService_EmailCommonDatas_CreateEmailCommonDataDto>;
882
+ };
883
+
884
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdResponse = unknown;
885
+
886
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdData = {
887
+ contactInformationTypeId: string;
888
+ requestBody?: Array<UpwithCrowd_BackerService_TelephoneTypes_CreateTelephoneTypeDto>;
889
+ };
890
+
891
+ export type PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdResponse = unknown;
892
+
893
+ export type PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdData = {
894
+ entityInformationTypeId: string;
895
+ requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
896
+ };
897
+
898
+ export type PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
899
+
900
+ export type PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdData = {
901
+ entityInformationTypeId: string;
902
+ requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
903
+ };
904
+
905
+ export type PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
906
+
907
+ export type PostApiBackerServiceBackersEntityInformationTypeByBackerIdData = {
908
+ backerId: string;
909
+ requestBody?: UpwithCrowd_BackerService_EntityInformationTypes_CreateEntityInformationTypeDto;
910
+ };
911
+
912
+ export type PostApiBackerServiceBackersEntityInformationTypeByBackerIdResponse = UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto;
913
+
914
+ export type PostApiBackerServiceBackersAffiliationTypeByBackerIdData = {
915
+ backerId: string;
916
+ requestBody?: UpwithCrowd_BackerService_AffiliationTypes_CreateAffiliationTypeDto;
917
+ };
918
+
919
+ export type PostApiBackerServiceBackersAffiliationTypeByBackerIdResponse = UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto;
920
+
921
+ export type PostApiBackerServiceBackersWithComponentsData = {
922
+ requestBody?: UpwithCrowd_BackerService_Backers_CreateBackerWithComponentsDto;
923
+ };
924
+
925
+ export type PostApiBackerServiceBackersWithComponentsResponse = UpwithCrowd_BackerService_Backers_BackerDto;
926
+
927
+ export type GetApiBackerServiceBackersDetailByIdData = {
928
+ id: string;
929
+ };
930
+
931
+ export type GetApiBackerServiceBackersDetailByIdResponse = UpwithCrowd_BackerService_Backers_BackerDto;
932
+
933
+ export type GetApiBackerServiceBackersListMyBackersResponse = Array<UpwithCrowd_BackerService_Backers_BackerDto>;
934
+
935
+ export type PostApiBackerServiceIndividualsData = {
936
+ requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
937
+ };
938
+
939
+ export type PostApiBackerServiceIndividualsResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
940
+
941
+ export type DeleteApiBackerServiceIndividualsData = {
942
+ id?: string;
943
+ };
944
+
945
+ export type DeleteApiBackerServiceIndividualsResponse = unknown;
946
+
947
+ export type GetApiBackerServiceIndividualsData = {
948
+ maxResultCount?: number;
949
+ skipCount?: number;
950
+ sorting?: string;
951
+ };
952
+
953
+ export type GetApiBackerServiceIndividualsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
954
+
955
+ export type PutApiBackerServiceIndividualsData = {
956
+ id?: string;
957
+ requestBody?: UpwithCrowd_BackerService_Individuals_UpdateIndividualDto;
958
+ };
959
+
960
+ export type PutApiBackerServiceIndividualsResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
961
+
962
+ export type PostApiBackerServiceIndividualsIndependentData = {
963
+ entityInformationTypeId?: string;
964
+ requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualDto;
965
+ };
966
+
967
+ export type PostApiBackerServiceIndividualsIndependentResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
968
+
969
+ export type PostApiBackerServiceIndividualsPersonalSummaryData = {
970
+ individualId?: string;
971
+ requestBody?: UpwithCrowd_BackerService_PersonalSummaries_CreatePersonalSummaryDto;
972
+ };
973
+
974
+ export type PostApiBackerServiceIndividualsPersonalSummaryResponse = UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto;
975
+
976
+ export type PostApiBackerServiceIndividualsWithIdData = {
977
+ requestBody?: UpwithCrowd_BackerService_Individuals_CreateIndividualWithIdDto;
978
+ };
979
+
980
+ export type PostApiBackerServiceIndividualsWithIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
981
+
982
+ export type GetApiBackerServiceIndividualsByIdData = {
983
+ id: string;
984
+ };
985
+
986
+ export type GetApiBackerServiceIndividualsByIdResponse = UpwithCrowd_BackerService_Individuals_IndividualDto;
987
+
988
+ export type PostApiBackerServiceOrganizationsData = {
989
+ requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
990
+ };
991
+
992
+ export type PostApiBackerServiceOrganizationsResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
993
+
994
+ export type DeleteApiBackerServiceOrganizationsData = {
995
+ id?: string;
996
+ };
997
+
998
+ export type DeleteApiBackerServiceOrganizationsResponse = unknown;
999
+
1000
+ export type GetApiBackerServiceOrganizationsData = {
1001
+ maxResultCount?: number;
1002
+ skipCount?: number;
1003
+ sorting?: string;
1004
+ };
1005
+
1006
+ export type GetApiBackerServiceOrganizationsResponse = Volo_Abp_Application_Dtos_PagedResultDto_1;
1007
+
1008
+ export type PutApiBackerServiceOrganizationsData = {
1009
+ id?: string;
1010
+ requestBody?: UpwithCrowd_BackerService_Organizations_UpdateOrganizationDto;
1011
+ };
1012
+
1013
+ export type PutApiBackerServiceOrganizationsResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1014
+
1015
+ export type PostApiBackerServiceOrganizationsIndependentData = {
1016
+ entityInformationTypeId?: string;
1017
+ requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationDto;
1018
+ };
1019
+
1020
+ export type PostApiBackerServiceOrganizationsIndependentResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1021
+
1022
+ export type PostApiBackerServiceOrganizationsWithIdData = {
1023
+ requestBody?: UpwithCrowd_BackerService_Organizations_CreateOrganizationWithIdDto;
1024
+ };
1025
+
1026
+ export type PostApiBackerServiceOrganizationsWithIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1027
+
1028
+ export type GetApiBackerServiceOrganizationsByIdData = {
1029
+ id: string;
1030
+ };
1031
+
1032
+ export type GetApiBackerServiceOrganizationsByIdResponse = UpwithCrowd_BackerService_Organizations_OrganizationDto;
1033
+
1034
+ export type $OpenApiTs = {
1035
+ '/api/abp/api-definition': {
1036
+ get: {
1037
+ req: GetApiAbpApiDefinitionData;
1038
+ res: {
1039
+ /**
1040
+ * Success
1041
+ */
1042
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
1043
+ /**
1044
+ * Bad Request
1045
+ */
1046
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1047
+ /**
1048
+ * Unauthorized
1049
+ */
1050
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1051
+ /**
1052
+ * Forbidden
1053
+ */
1054
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1055
+ /**
1056
+ * Not Found
1057
+ */
1058
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1059
+ /**
1060
+ * Server Error
1061
+ */
1062
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
+ /**
1064
+ * Server Error
1065
+ */
1066
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
+ };
1068
+ };
1069
+ };
1070
+ '/api/abp/application-configuration': {
1071
+ get: {
1072
+ req: GetApiAbpApplicationConfigurationData;
1073
+ res: {
1074
+ /**
1075
+ * Success
1076
+ */
1077
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
1078
+ /**
1079
+ * Bad Request
1080
+ */
1081
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1082
+ /**
1083
+ * Unauthorized
1084
+ */
1085
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1086
+ /**
1087
+ * Forbidden
1088
+ */
1089
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1090
+ /**
1091
+ * Not Found
1092
+ */
1093
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1094
+ /**
1095
+ * Server Error
1096
+ */
1097
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
+ /**
1099
+ * Server Error
1100
+ */
1101
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
+ };
1103
+ };
1104
+ };
1105
+ '/api/abp/application-localization': {
1106
+ get: {
1107
+ req: GetApiAbpApplicationLocalizationData;
1108
+ res: {
1109
+ /**
1110
+ * Success
1111
+ */
1112
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
1113
+ /**
1114
+ * Bad Request
1115
+ */
1116
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1117
+ /**
1118
+ * Unauthorized
1119
+ */
1120
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1121
+ /**
1122
+ * Forbidden
1123
+ */
1124
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1125
+ /**
1126
+ * Not Found
1127
+ */
1128
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1129
+ /**
1130
+ * Server Error
1131
+ */
1132
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1133
+ /**
1134
+ * Server Error
1135
+ */
1136
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1137
+ };
1138
+ };
1139
+ };
1140
+ '/api/backer-service/backers': {
1141
+ post: {
1142
+ req: PostApiBackerServiceBackersData;
1143
+ res: {
1144
+ /**
1145
+ * Success
1146
+ */
1147
+ 200: UpwithCrowd_BackerService_Backers_BackerDto;
1148
+ /**
1149
+ * Bad Request
1150
+ */
1151
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1152
+ /**
1153
+ * Unauthorized
1154
+ */
1155
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1156
+ /**
1157
+ * Forbidden
1158
+ */
1159
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1160
+ /**
1161
+ * Not Found
1162
+ */
1163
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1164
+ /**
1165
+ * Server Error
1166
+ */
1167
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1168
+ /**
1169
+ * Server Error
1170
+ */
1171
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1172
+ };
1173
+ };
1174
+ get: {
1175
+ req: GetApiBackerServiceBackersData;
1176
+ res: {
1177
+ /**
1178
+ * Success
1179
+ */
1180
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1181
+ /**
1182
+ * Bad Request
1183
+ */
1184
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1185
+ /**
1186
+ * Unauthorized
1187
+ */
1188
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1189
+ /**
1190
+ * Forbidden
1191
+ */
1192
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1193
+ /**
1194
+ * Not Found
1195
+ */
1196
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1197
+ /**
1198
+ * Server Error
1199
+ */
1200
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1201
+ /**
1202
+ * Server Error
1203
+ */
1204
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1205
+ };
1206
+ };
1207
+ put: {
1208
+ req: PutApiBackerServiceBackersData;
1209
+ res: {
1210
+ /**
1211
+ * Success
1212
+ */
1213
+ 200: UpwithCrowd_BackerService_Backers_BackerDto;
1214
+ /**
1215
+ * Bad Request
1216
+ */
1217
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1218
+ /**
1219
+ * Unauthorized
1220
+ */
1221
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1222
+ /**
1223
+ * Forbidden
1224
+ */
1225
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1226
+ /**
1227
+ * Not Found
1228
+ */
1229
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1230
+ /**
1231
+ * Server Error
1232
+ */
1233
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1234
+ /**
1235
+ * Server Error
1236
+ */
1237
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1238
+ };
1239
+ };
1240
+ delete: {
1241
+ req: DeleteApiBackerServiceBackersData;
1242
+ res: {
1243
+ /**
1244
+ * Success
1245
+ */
1246
+ 200: unknown;
1247
+ /**
1248
+ * Bad Request
1249
+ */
1250
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1251
+ /**
1252
+ * Unauthorized
1253
+ */
1254
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1255
+ /**
1256
+ * Forbidden
1257
+ */
1258
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1259
+ /**
1260
+ * Not Found
1261
+ */
1262
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1263
+ /**
1264
+ * Server Error
1265
+ */
1266
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
+ /**
1268
+ * Server Error
1269
+ */
1270
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
+ };
1272
+ };
1273
+ };
1274
+ '/api/backer-service/backers/{id}': {
1275
+ get: {
1276
+ req: GetApiBackerServiceBackersByIdData;
1277
+ res: {
1278
+ /**
1279
+ * Success
1280
+ */
1281
+ 200: UpwithCrowd_BackerService_Backers_BackerDto;
1282
+ /**
1283
+ * Bad Request
1284
+ */
1285
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1286
+ /**
1287
+ * Unauthorized
1288
+ */
1289
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1290
+ /**
1291
+ * Forbidden
1292
+ */
1293
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1294
+ /**
1295
+ * Not Found
1296
+ */
1297
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1298
+ /**
1299
+ * Server Error
1300
+ */
1301
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1302
+ /**
1303
+ * Server Error
1304
+ */
1305
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1306
+ };
1307
+ };
1308
+ };
1309
+ '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/address/{contactInformationTypeId}': {
1310
+ post: {
1311
+ req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeAddressByContactInformationTypeIdData;
1312
+ res: {
1313
+ /**
1314
+ * Success
1315
+ */
1316
+ 200: unknown;
1317
+ /**
1318
+ * Bad Request
1319
+ */
1320
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1321
+ /**
1322
+ * Unauthorized
1323
+ */
1324
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1325
+ /**
1326
+ * Forbidden
1327
+ */
1328
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1329
+ /**
1330
+ * Not Found
1331
+ */
1332
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1333
+ /**
1334
+ * Server Error
1335
+ */
1336
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1337
+ /**
1338
+ * Server Error
1339
+ */
1340
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1341
+ };
1342
+ };
1343
+ };
1344
+ '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/email/{contactInformationTypeId}': {
1345
+ post: {
1346
+ req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeEmailByContactInformationTypeIdData;
1347
+ res: {
1348
+ /**
1349
+ * Success
1350
+ */
1351
+ 200: unknown;
1352
+ /**
1353
+ * Bad Request
1354
+ */
1355
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1356
+ /**
1357
+ * Unauthorized
1358
+ */
1359
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1360
+ /**
1361
+ * Forbidden
1362
+ */
1363
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1364
+ /**
1365
+ * Not Found
1366
+ */
1367
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1368
+ /**
1369
+ * Server Error
1370
+ */
1371
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1372
+ /**
1373
+ * Server Error
1374
+ */
1375
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1376
+ };
1377
+ };
1378
+ };
1379
+ '/api/backer-service/backers/entity-information-type/org-ind/contact-information-type/telephone/{contactInformationTypeId}': {
1380
+ post: {
1381
+ req: PostApiBackerServiceBackersEntityInformationTypeOrgIndContactInformationTypeTelephoneByContactInformationTypeIdData;
1382
+ res: {
1383
+ /**
1384
+ * Success
1385
+ */
1386
+ 200: unknown;
1387
+ /**
1388
+ * Bad Request
1389
+ */
1390
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1391
+ /**
1392
+ * Unauthorized
1393
+ */
1394
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1395
+ /**
1396
+ * Forbidden
1397
+ */
1398
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1399
+ /**
1400
+ * Not Found
1401
+ */
1402
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1403
+ /**
1404
+ * Server Error
1405
+ */
1406
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1407
+ /**
1408
+ * Server Error
1409
+ */
1410
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1411
+ };
1412
+ };
1413
+ };
1414
+ '/api/backer-service/backers/entity-information-type/individual/{entityInformationTypeId}': {
1415
+ post: {
1416
+ req: PostApiBackerServiceBackersEntityInformationTypeIndividualByEntityInformationTypeIdData;
1417
+ res: {
1418
+ /**
1419
+ * Success
1420
+ */
1421
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1422
+ /**
1423
+ * Bad Request
1424
+ */
1425
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1426
+ /**
1427
+ * Unauthorized
1428
+ */
1429
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1430
+ /**
1431
+ * Forbidden
1432
+ */
1433
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1434
+ /**
1435
+ * Not Found
1436
+ */
1437
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1438
+ /**
1439
+ * Server Error
1440
+ */
1441
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1442
+ /**
1443
+ * Server Error
1444
+ */
1445
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1446
+ };
1447
+ };
1448
+ };
1449
+ '/api/backer-service/backers/entity-information-type/organization/{entityInformationTypeId}': {
1450
+ post: {
1451
+ req: PostApiBackerServiceBackersEntityInformationTypeOrganizationByEntityInformationTypeIdData;
1452
+ res: {
1453
+ /**
1454
+ * Success
1455
+ */
1456
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
1457
+ /**
1458
+ * Bad Request
1459
+ */
1460
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1461
+ /**
1462
+ * Unauthorized
1463
+ */
1464
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1465
+ /**
1466
+ * Forbidden
1467
+ */
1468
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1469
+ /**
1470
+ * Not Found
1471
+ */
1472
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1473
+ /**
1474
+ * Server Error
1475
+ */
1476
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1477
+ /**
1478
+ * Server Error
1479
+ */
1480
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1481
+ };
1482
+ };
1483
+ };
1484
+ '/api/backer-service/backers/entity-information-type/{backerId}': {
1485
+ post: {
1486
+ req: PostApiBackerServiceBackersEntityInformationTypeByBackerIdData;
1487
+ res: {
1488
+ /**
1489
+ * Success
1490
+ */
1491
+ 200: UpwithCrowd_BackerService_EntityInformationTypes_EntityInformationTypeDto;
1492
+ /**
1493
+ * Bad Request
1494
+ */
1495
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1496
+ /**
1497
+ * Unauthorized
1498
+ */
1499
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1500
+ /**
1501
+ * Forbidden
1502
+ */
1503
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1504
+ /**
1505
+ * Not Found
1506
+ */
1507
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1508
+ /**
1509
+ * Server Error
1510
+ */
1511
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1512
+ /**
1513
+ * Server Error
1514
+ */
1515
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1516
+ };
1517
+ };
1518
+ };
1519
+ '/api/backer-service/backers/affiliation-type/{backerId}': {
1520
+ post: {
1521
+ req: PostApiBackerServiceBackersAffiliationTypeByBackerIdData;
1522
+ res: {
1523
+ /**
1524
+ * Success
1525
+ */
1526
+ 200: UpwithCrowd_BackerService_AffiliationTypes_AffiliationTypeDto;
1527
+ /**
1528
+ * Bad Request
1529
+ */
1530
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1531
+ /**
1532
+ * Unauthorized
1533
+ */
1534
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1535
+ /**
1536
+ * Forbidden
1537
+ */
1538
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1539
+ /**
1540
+ * Not Found
1541
+ */
1542
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1543
+ /**
1544
+ * Server Error
1545
+ */
1546
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1547
+ /**
1548
+ * Server Error
1549
+ */
1550
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1551
+ };
1552
+ };
1553
+ };
1554
+ '/api/backer-service/backers/with-components': {
1555
+ post: {
1556
+ req: PostApiBackerServiceBackersWithComponentsData;
1557
+ res: {
1558
+ /**
1559
+ * Success
1560
+ */
1561
+ 200: UpwithCrowd_BackerService_Backers_BackerDto;
1562
+ /**
1563
+ * Bad Request
1564
+ */
1565
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1566
+ /**
1567
+ * Unauthorized
1568
+ */
1569
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1570
+ /**
1571
+ * Forbidden
1572
+ */
1573
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1574
+ /**
1575
+ * Not Found
1576
+ */
1577
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1578
+ /**
1579
+ * Server Error
1580
+ */
1581
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1582
+ /**
1583
+ * Server Error
1584
+ */
1585
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1586
+ };
1587
+ };
1588
+ };
1589
+ '/api/backer-service/backers/detail/{id}': {
1590
+ get: {
1591
+ req: GetApiBackerServiceBackersDetailByIdData;
1592
+ res: {
1593
+ /**
1594
+ * Success
1595
+ */
1596
+ 200: UpwithCrowd_BackerService_Backers_BackerDto;
1597
+ /**
1598
+ * Bad Request
1599
+ */
1600
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1601
+ /**
1602
+ * Unauthorized
1603
+ */
1604
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1605
+ /**
1606
+ * Forbidden
1607
+ */
1608
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
+ /**
1610
+ * Not Found
1611
+ */
1612
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
+ /**
1614
+ * Server Error
1615
+ */
1616
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
+ /**
1618
+ * Server Error
1619
+ */
1620
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
+ };
1622
+ };
1623
+ };
1624
+ '/api/backer-service/backers/list-my-backers': {
1625
+ get: {
1626
+ res: {
1627
+ /**
1628
+ * Success
1629
+ */
1630
+ 200: Array<UpwithCrowd_BackerService_Backers_BackerDto>;
1631
+ /**
1632
+ * Bad Request
1633
+ */
1634
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1635
+ /**
1636
+ * Unauthorized
1637
+ */
1638
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1639
+ /**
1640
+ * Forbidden
1641
+ */
1642
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1643
+ /**
1644
+ * Not Found
1645
+ */
1646
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1647
+ /**
1648
+ * Server Error
1649
+ */
1650
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1651
+ /**
1652
+ * Server Error
1653
+ */
1654
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1655
+ };
1656
+ };
1657
+ };
1658
+ '/api/backer-service/individuals': {
1659
+ post: {
1660
+ req: PostApiBackerServiceIndividualsData;
1661
+ res: {
1662
+ /**
1663
+ * Success
1664
+ */
1665
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1666
+ /**
1667
+ * Bad Request
1668
+ */
1669
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1670
+ /**
1671
+ * Unauthorized
1672
+ */
1673
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1674
+ /**
1675
+ * Forbidden
1676
+ */
1677
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1678
+ /**
1679
+ * Not Found
1680
+ */
1681
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1682
+ /**
1683
+ * Server Error
1684
+ */
1685
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1686
+ /**
1687
+ * Server Error
1688
+ */
1689
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1690
+ };
1691
+ };
1692
+ delete: {
1693
+ req: DeleteApiBackerServiceIndividualsData;
1694
+ res: {
1695
+ /**
1696
+ * Success
1697
+ */
1698
+ 200: unknown;
1699
+ /**
1700
+ * Bad Request
1701
+ */
1702
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1703
+ /**
1704
+ * Unauthorized
1705
+ */
1706
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1707
+ /**
1708
+ * Forbidden
1709
+ */
1710
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1711
+ /**
1712
+ * Not Found
1713
+ */
1714
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1715
+ /**
1716
+ * Server Error
1717
+ */
1718
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1719
+ /**
1720
+ * Server Error
1721
+ */
1722
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1723
+ };
1724
+ };
1725
+ get: {
1726
+ req: GetApiBackerServiceIndividualsData;
1727
+ res: {
1728
+ /**
1729
+ * Success
1730
+ */
1731
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
1732
+ /**
1733
+ * Bad Request
1734
+ */
1735
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1736
+ /**
1737
+ * Unauthorized
1738
+ */
1739
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1740
+ /**
1741
+ * Forbidden
1742
+ */
1743
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1744
+ /**
1745
+ * Not Found
1746
+ */
1747
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1748
+ /**
1749
+ * Server Error
1750
+ */
1751
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1752
+ /**
1753
+ * Server Error
1754
+ */
1755
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1756
+ };
1757
+ };
1758
+ put: {
1759
+ req: PutApiBackerServiceIndividualsData;
1760
+ res: {
1761
+ /**
1762
+ * Success
1763
+ */
1764
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1765
+ /**
1766
+ * Bad Request
1767
+ */
1768
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1769
+ /**
1770
+ * Unauthorized
1771
+ */
1772
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1773
+ /**
1774
+ * Forbidden
1775
+ */
1776
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1777
+ /**
1778
+ * Not Found
1779
+ */
1780
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1781
+ /**
1782
+ * Server Error
1783
+ */
1784
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1785
+ /**
1786
+ * Server Error
1787
+ */
1788
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1789
+ };
1790
+ };
1791
+ };
1792
+ '/api/backer-service/individuals/independent': {
1793
+ post: {
1794
+ req: PostApiBackerServiceIndividualsIndependentData;
1795
+ res: {
1796
+ /**
1797
+ * Success
1798
+ */
1799
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1800
+ /**
1801
+ * Bad Request
1802
+ */
1803
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1804
+ /**
1805
+ * Unauthorized
1806
+ */
1807
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1808
+ /**
1809
+ * Forbidden
1810
+ */
1811
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1812
+ /**
1813
+ * Not Found
1814
+ */
1815
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1816
+ /**
1817
+ * Server Error
1818
+ */
1819
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1820
+ /**
1821
+ * Server Error
1822
+ */
1823
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1824
+ };
1825
+ };
1826
+ };
1827
+ '/api/backer-service/individuals/personal-summary': {
1828
+ post: {
1829
+ req: PostApiBackerServiceIndividualsPersonalSummaryData;
1830
+ res: {
1831
+ /**
1832
+ * Success
1833
+ */
1834
+ 200: UpwithCrowd_BackerService_PersonalSummaries_PersonalSummaryDto;
1835
+ /**
1836
+ * Bad Request
1837
+ */
1838
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1839
+ /**
1840
+ * Unauthorized
1841
+ */
1842
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1843
+ /**
1844
+ * Forbidden
1845
+ */
1846
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1847
+ /**
1848
+ * Not Found
1849
+ */
1850
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1851
+ /**
1852
+ * Server Error
1853
+ */
1854
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1855
+ /**
1856
+ * Server Error
1857
+ */
1858
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1859
+ };
1860
+ };
1861
+ };
1862
+ '/api/backer-service/individuals/with-id': {
1863
+ post: {
1864
+ req: PostApiBackerServiceIndividualsWithIdData;
1865
+ res: {
1866
+ /**
1867
+ * Success
1868
+ */
1869
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1870
+ /**
1871
+ * Bad Request
1872
+ */
1873
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1874
+ /**
1875
+ * Unauthorized
1876
+ */
1877
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1878
+ /**
1879
+ * Forbidden
1880
+ */
1881
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1882
+ /**
1883
+ * Not Found
1884
+ */
1885
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1886
+ /**
1887
+ * Server Error
1888
+ */
1889
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1890
+ /**
1891
+ * Server Error
1892
+ */
1893
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1894
+ };
1895
+ };
1896
+ };
1897
+ '/api/backer-service/individuals/{id}': {
1898
+ get: {
1899
+ req: GetApiBackerServiceIndividualsByIdData;
1900
+ res: {
1901
+ /**
1902
+ * Success
1903
+ */
1904
+ 200: UpwithCrowd_BackerService_Individuals_IndividualDto;
1905
+ /**
1906
+ * Bad Request
1907
+ */
1908
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1909
+ /**
1910
+ * Unauthorized
1911
+ */
1912
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1913
+ /**
1914
+ * Forbidden
1915
+ */
1916
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1917
+ /**
1918
+ * Not Found
1919
+ */
1920
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1921
+ /**
1922
+ * Server Error
1923
+ */
1924
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1925
+ /**
1926
+ * Server Error
1927
+ */
1928
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1929
+ };
1930
+ };
1931
+ };
1932
+ '/api/backer-service/organizations': {
1933
+ post: {
1934
+ req: PostApiBackerServiceOrganizationsData;
1935
+ res: {
1936
+ /**
1937
+ * Success
1938
+ */
1939
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
1940
+ /**
1941
+ * Bad Request
1942
+ */
1943
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1944
+ /**
1945
+ * Unauthorized
1946
+ */
1947
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1948
+ /**
1949
+ * Forbidden
1950
+ */
1951
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1952
+ /**
1953
+ * Not Found
1954
+ */
1955
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1956
+ /**
1957
+ * Server Error
1958
+ */
1959
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1960
+ /**
1961
+ * Server Error
1962
+ */
1963
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1964
+ };
1965
+ };
1966
+ delete: {
1967
+ req: DeleteApiBackerServiceOrganizationsData;
1968
+ res: {
1969
+ /**
1970
+ * Success
1971
+ */
1972
+ 200: unknown;
1973
+ /**
1974
+ * Bad Request
1975
+ */
1976
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1977
+ /**
1978
+ * Unauthorized
1979
+ */
1980
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1981
+ /**
1982
+ * Forbidden
1983
+ */
1984
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1985
+ /**
1986
+ * Not Found
1987
+ */
1988
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1989
+ /**
1990
+ * Server Error
1991
+ */
1992
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1993
+ /**
1994
+ * Server Error
1995
+ */
1996
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1997
+ };
1998
+ };
1999
+ get: {
2000
+ req: GetApiBackerServiceOrganizationsData;
2001
+ res: {
2002
+ /**
2003
+ * Success
2004
+ */
2005
+ 200: Volo_Abp_Application_Dtos_PagedResultDto_1;
2006
+ /**
2007
+ * Bad Request
2008
+ */
2009
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2010
+ /**
2011
+ * Unauthorized
2012
+ */
2013
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2014
+ /**
2015
+ * Forbidden
2016
+ */
2017
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2018
+ /**
2019
+ * Not Found
2020
+ */
2021
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2022
+ /**
2023
+ * Server Error
2024
+ */
2025
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2026
+ /**
2027
+ * Server Error
2028
+ */
2029
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2030
+ };
2031
+ };
2032
+ put: {
2033
+ req: PutApiBackerServiceOrganizationsData;
2034
+ res: {
2035
+ /**
2036
+ * Success
2037
+ */
2038
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2039
+ /**
2040
+ * Bad Request
2041
+ */
2042
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2043
+ /**
2044
+ * Unauthorized
2045
+ */
2046
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2047
+ /**
2048
+ * Forbidden
2049
+ */
2050
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2051
+ /**
2052
+ * Not Found
2053
+ */
2054
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2055
+ /**
2056
+ * Server Error
2057
+ */
2058
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2059
+ /**
2060
+ * Server Error
2061
+ */
2062
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2063
+ };
2064
+ };
2065
+ };
2066
+ '/api/backer-service/organizations/independent': {
2067
+ post: {
2068
+ req: PostApiBackerServiceOrganizationsIndependentData;
2069
+ res: {
2070
+ /**
2071
+ * Success
2072
+ */
2073
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2074
+ /**
2075
+ * Bad Request
2076
+ */
2077
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2078
+ /**
2079
+ * Unauthorized
2080
+ */
2081
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2082
+ /**
2083
+ * Forbidden
2084
+ */
2085
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2086
+ /**
2087
+ * Not Found
2088
+ */
2089
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2090
+ /**
2091
+ * Server Error
2092
+ */
2093
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2094
+ /**
2095
+ * Server Error
2096
+ */
2097
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2098
+ };
2099
+ };
2100
+ };
2101
+ '/api/backer-service/organizations/with-id': {
2102
+ post: {
2103
+ req: PostApiBackerServiceOrganizationsWithIdData;
2104
+ res: {
2105
+ /**
2106
+ * Success
2107
+ */
2108
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2109
+ /**
2110
+ * Bad Request
2111
+ */
2112
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2113
+ /**
2114
+ * Unauthorized
2115
+ */
2116
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2117
+ /**
2118
+ * Forbidden
2119
+ */
2120
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2121
+ /**
2122
+ * Not Found
2123
+ */
2124
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2125
+ /**
2126
+ * Server Error
2127
+ */
2128
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2129
+ /**
2130
+ * Server Error
2131
+ */
2132
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2133
+ };
2134
+ };
2135
+ };
2136
+ '/api/backer-service/organizations/{id}': {
2137
+ get: {
2138
+ req: GetApiBackerServiceOrganizationsByIdData;
2139
+ res: {
2140
+ /**
2141
+ * Success
2142
+ */
2143
+ 200: UpwithCrowd_BackerService_Organizations_OrganizationDto;
2144
+ /**
2145
+ * Bad Request
2146
+ */
2147
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
2148
+ /**
2149
+ * Unauthorized
2150
+ */
2151
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
2152
+ /**
2153
+ * Forbidden
2154
+ */
2155
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
2156
+ /**
2157
+ * Not Found
2158
+ */
2159
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
2160
+ /**
2161
+ * Server Error
2162
+ */
2163
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
2164
+ /**
2165
+ * Server Error
2166
+ */
2167
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
2168
+ };
2169
+ };
2170
+ };
2171
2171
  };