@ayasofyazilim/saas 0.0.101 → 0.0.102

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (576) hide show
  1. package/.github/workflows/release.yaml +45 -45
  2. package/.github/workflows/update.yaml +93 -71
  3. package/.github/workflows/update_release.yaml +33 -33
  4. package/API_LIST.json +67 -0
  5. package/AccountService/AccountServiceClient.ts +68 -68
  6. package/AccountService/core/ApiError.ts +20 -20
  7. package/AccountService/core/ApiRequestOptions.ts +12 -12
  8. package/AccountService/core/ApiResult.ts +6 -6
  9. package/AccountService/core/BaseHttpRequest.ts +9 -9
  10. package/AccountService/core/CancelablePromise.ts +125 -125
  11. package/AccountService/core/FetchHttpRequest.ts +21 -21
  12. package/AccountService/core/OpenAPI.ts +55 -55
  13. package/AccountService/core/request.ts +340 -340
  14. package/AccountService/index.ts +8 -8
  15. package/AccountService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  16. package/AccountService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  17. package/AccountService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  18. package/AccountService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  19. package/AccountService/models/Volo_Abp_Account_AuthenticatorInfoDto.ts +9 -9
  20. package/AccountService/models/Volo_Abp_Account_ChangePasswordInput.ts +9 -9
  21. package/AccountService/models/Volo_Abp_Account_ConfirmEmailInput.ts +9 -9
  22. package/AccountService/models/Volo_Abp_Account_ConfirmPhoneNumberInput.ts +9 -9
  23. package/AccountService/models/Volo_Abp_Account_DelegateNewUserInput.ts +10 -10
  24. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderDto.ts +9 -9
  25. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemDto.ts +11 -11
  26. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderItemWithSecretDto.ts +13 -13
  27. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  28. package/AccountService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  29. package/AccountService/models/Volo_Abp_Account_IdentityUserConfirmationStateDto.ts +9 -9
  30. package/AccountService/models/Volo_Abp_Account_IsLinkedInput.ts +9 -9
  31. package/AccountService/models/Volo_Abp_Account_LinkUserDto.ts +12 -12
  32. package/AccountService/models/Volo_Abp_Account_LinkUserInput.ts +10 -10
  33. package/AccountService/models/Volo_Abp_Account_ProfileDto.ts +20 -20
  34. package/AccountService/models/Volo_Abp_Account_ProfilePictureSourceDto.ts +11 -11
  35. package/AccountService/models/Volo_Abp_Account_ProfilePictureType.ts +9 -9
  36. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_AbpLoginResult.ts +10 -10
  37. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LinkUserLoginInfo.ts +9 -9
  38. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_LoginResultType.ts +12 -12
  39. package/AccountService/models/Volo_Abp_Account_Public_Web_Areas_Account_Controllers_Models_UserLoginInfo.ts +11 -11
  40. package/AccountService/models/Volo_Abp_Account_RegisterDto.ts +15 -15
  41. package/AccountService/models/Volo_Abp_Account_ResetPasswordDto.ts +10 -10
  42. package/AccountService/models/Volo_Abp_Account_SendEmailConfirmationTokenDto.ts +11 -11
  43. package/AccountService/models/Volo_Abp_Account_SendPasswordResetCodeDto.ts +11 -11
  44. package/AccountService/models/Volo_Abp_Account_SendPhoneNumberConfirmationTokenDto.ts +9 -9
  45. package/AccountService/models/Volo_Abp_Account_SendTwoFactorCodeInput.ts +10 -10
  46. package/AccountService/models/Volo_Abp_Account_UnLinkUserInput.ts +9 -9
  47. package/AccountService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  48. package/AccountService/models/Volo_Abp_Account_UpdateProfileDto.ts +15 -15
  49. package/AccountService/models/Volo_Abp_Account_UserDelegationDto.ts +11 -11
  50. package/AccountService/models/Volo_Abp_Account_UserLookupDto.ts +9 -9
  51. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeDto.ts +8 -8
  52. package/AccountService/models/Volo_Abp_Account_VerifyAuthenticatorCodeInput.ts +8 -8
  53. package/AccountService/models/Volo_Abp_Account_VerifyEmailConfirmationTokenInput.ts +9 -9
  54. package/AccountService/models/Volo_Abp_Account_VerifyLinkLoginTokenInput.ts +10 -10
  55. package/AccountService/models/Volo_Abp_Account_VerifyLinkTokenInput.ts +10 -10
  56. package/AccountService/models/Volo_Abp_Account_VerifyPasswordResetTokenInput.ts +9 -9
  57. package/AccountService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  58. package/AccountService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  59. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  60. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  61. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  62. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  63. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  64. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  65. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  66. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  67. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  68. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  69. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  70. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  71. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  72. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  73. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  74. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  75. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  76. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  77. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  78. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  79. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  80. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  81. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  82. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  83. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  84. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  85. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  86. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  87. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  88. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  89. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  90. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  91. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  92. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  93. package/AccountService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  94. package/AccountService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  95. package/AccountService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  96. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  97. package/AccountService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  98. package/AccountService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  99. package/AccountService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  100. package/AccountService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  101. package/AccountService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  102. package/AccountService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  103. package/AccountService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  104. package/AccountService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  105. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  106. package/AccountService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  107. package/AccountService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  108. package/AccountService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  109. package/AccountService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  110. package/AccountService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  111. package/AccountService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  112. package/AccountService/models/Volo_Abp_NameValue.ts +9 -9
  113. package/AccountService/schemas.gen.ts +5333 -5333
  114. package/AccountService/services/AbpApiDefinitionService.ts +34 -34
  115. package/AccountService/services/AbpApplicationConfigurationService.ts +34 -34
  116. package/AccountService/services/AbpApplicationLocalizationService.ts +37 -37
  117. package/AccountService/services/AbpTenantService.ts +58 -58
  118. package/AccountService/services/AccountExternalProviderService.ts +56 -56
  119. package/AccountService/services/AccountService.ts +545 -545
  120. package/AccountService/services/AccountSettingsService.ts +178 -178
  121. package/AccountService/services/DynamicClaimsService.ts +27 -27
  122. package/AccountService/services/LoginService.ts +99 -99
  123. package/AccountService/services/ProfileService.ts +155 -155
  124. package/AccountService/services/UserService.ts +313 -313
  125. package/AccountService/services.gen.ts +1539 -1539
  126. package/AccountService/types.gen.ts +3328 -3328
  127. package/AdministrationService/AdministrationServiceClient.ts +80 -80
  128. package/AdministrationService/core/ApiError.ts +20 -20
  129. package/AdministrationService/core/ApiRequestOptions.ts +12 -12
  130. package/AdministrationService/core/ApiResult.ts +6 -6
  131. package/AdministrationService/core/BaseHttpRequest.ts +9 -9
  132. package/AdministrationService/core/CancelablePromise.ts +125 -125
  133. package/AdministrationService/core/FetchHttpRequest.ts +21 -21
  134. package/AdministrationService/core/OpenAPI.ts +55 -55
  135. package/AdministrationService/core/request.ts +340 -340
  136. package/AdministrationService/index.ts +8 -8
  137. package/AdministrationService/models/System_Net_HttpStatusCode.ts +67 -67
  138. package/AdministrationService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  139. package/AdministrationService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  140. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  141. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  142. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  143. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  144. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  145. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  146. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  147. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  148. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  149. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  150. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  151. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  152. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  153. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  154. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  155. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  156. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  157. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  158. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  159. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  160. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  161. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  162. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  163. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  164. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  165. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  166. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  167. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  168. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  169. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  170. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  171. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  172. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  173. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_FindTenantResultDto.ts +11 -11
  174. package/AdministrationService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  175. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogActionDto.ts +16 -16
  176. package/AdministrationService/models/Volo_Abp_AuditLogging_AuditLogDto.ts +33 -33
  177. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeDto.ts +18 -18
  178. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityChangeWithUsernameDto.ts +10 -10
  179. package/AdministrationService/models/Volo_Abp_AuditLogging_EntityPropertyChangeDto.ts +14 -14
  180. package/AdministrationService/models/Volo_Abp_AuditLogging_GetAverageExecutionDurationPerDayOutput.ts +8 -8
  181. package/AdministrationService/models/Volo_Abp_AuditLogging_GetErrorRateOutput.ts +8 -8
  182. package/AdministrationService/models/Volo_Abp_Auditing_EntityChangeType.ts +9 -9
  183. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureDto.ts +17 -17
  184. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureGroupDto.ts +11 -11
  185. package/AdministrationService/models/Volo_Abp_FeatureManagement_FeatureProviderDto.ts +9 -9
  186. package/AdministrationService/models/Volo_Abp_FeatureManagement_GetFeatureListResultDto.ts +9 -9
  187. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeatureDto.ts +9 -9
  188. package/AdministrationService/models/Volo_Abp_FeatureManagement_UpdateFeaturesDto.ts +9 -9
  189. package/AdministrationService/models/Volo_Abp_Gdpr_DownloadTokenResultDto.ts +8 -8
  190. package/AdministrationService/models/Volo_Abp_Gdpr_GdprRequestDto.ts +10 -10
  191. package/AdministrationService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  192. package/AdministrationService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  193. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  194. package/AdministrationService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  195. package/AdministrationService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  196. package/AdministrationService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  197. package/AdministrationService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  198. package/AdministrationService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  199. package/AdministrationService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  200. package/AdministrationService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  201. package/AdministrationService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  202. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  203. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  204. package/AdministrationService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  205. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CreateLanguageDto.ts +13 -13
  206. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_CultureInfoDto.ts +9 -9
  207. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageDto.ts +18 -18
  208. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageResourceDto.ts +8 -8
  209. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_LanguageTextDto.ts +13 -13
  210. package/AdministrationService/models/Volo_Abp_LanguageManagement_Dto_UpdateLanguageDto.ts +12 -12
  211. package/AdministrationService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  212. package/AdministrationService/models/Volo_Abp_NameValue.ts +9 -9
  213. package/AdministrationService/models/Volo_Abp_PermissionManagement_GetPermissionListResultDto.ts +10 -10
  214. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGrantInfoDto.ts +14 -14
  215. package/AdministrationService/models/Volo_Abp_PermissionManagement_PermissionGroupDto.ts +13 -13
  216. package/AdministrationService/models/Volo_Abp_PermissionManagement_ProviderInfoDto.ts +9 -9
  217. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionDto.ts +9 -9
  218. package/AdministrationService/models/Volo_Abp_PermissionManagement_UpdatePermissionsDto.ts +9 -9
  219. package/AdministrationService/models/Volo_Abp_SettingManagement_EmailSettingsDto.ts +16 -16
  220. package/AdministrationService/models/Volo_Abp_SettingManagement_SendTestEmailInput.ts +11 -11
  221. package/AdministrationService/models/Volo_Abp_SettingManagement_UpdateEmailSettingsDto.ts +16 -16
  222. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_RestoreTemplateContentInput.ts +9 -9
  223. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TemplateDefinitionDto.ts +13 -13
  224. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_TextTemplateContentDto.ts +10 -10
  225. package/AdministrationService/models/Volo_Abp_TextTemplateManagement_TextTemplates_UpdateTemplateContentInput.ts +10 -10
  226. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IStringValueType.ts +11 -11
  227. package/AdministrationService/models/Volo_Abp_Validation_StringValues_IValueValidator.ts +9 -9
  228. package/AdministrationService/schemas.gen.ts +6745 -6745
  229. package/AdministrationService/services/AbpApiDefinitionService.ts +34 -34
  230. package/AdministrationService/services/AbpApplicationConfigurationService.ts +34 -34
  231. package/AdministrationService/services/AbpApplicationLocalizationService.ts +37 -37
  232. package/AdministrationService/services/AbpTenantService.ts +58 -58
  233. package/AdministrationService/services/AuditLogsService.ts +286 -286
  234. package/AdministrationService/services/EmailSettingsService.ts +76 -76
  235. package/AdministrationService/services/FeaturesService.ts +96 -96
  236. package/AdministrationService/services/GdprRequestService.ts +152 -152
  237. package/AdministrationService/services/LanguageTextsService.ts +157 -157
  238. package/AdministrationService/services/LanguagesService.ts +257 -257
  239. package/AdministrationService/services/PermissionsService.ts +69 -69
  240. package/AdministrationService/services/TextTemplateContentsService.ts +85 -85
  241. package/AdministrationService/services/TextTemplateDefinitionsService.ts +69 -69
  242. package/AdministrationService/services/TimeZoneSettingsService.ts +70 -70
  243. package/AdministrationService/services.gen.ts +1451 -1451
  244. package/AdministrationService/types.gen.ts +3007 -3007
  245. package/BackerService/BackerServiceClient.ts +50 -50
  246. package/BackerService/core/ApiError.ts +20 -20
  247. package/BackerService/core/ApiRequestOptions.ts +12 -12
  248. package/BackerService/core/ApiResult.ts +6 -6
  249. package/BackerService/core/BaseHttpRequest.ts +9 -9
  250. package/BackerService/core/CancelablePromise.ts +125 -125
  251. package/BackerService/core/FetchHttpRequest.ts +21 -21
  252. package/BackerService/core/OpenAPI.ts +55 -55
  253. package/BackerService/core/request.ts +340 -340
  254. package/BackerService/index.ts +8 -8
  255. package/BackerService/schemas.gen.ts +12444 -12444
  256. package/BackerService/services.gen.ts +866 -866
  257. package/BackerService/types.gen.ts +2170 -2170
  258. package/CRMService/CRMServiceClient.ts +15 -15
  259. package/CRMService/core/ApiRequestOptions.ts +16 -8
  260. package/CRMService/core/BaseHttpRequest.ts +1 -1
  261. package/CRMService/core/FetchHttpRequest.ts +1 -1
  262. package/CRMService/core/OpenAPI.ts +3 -3
  263. package/CRMService/core/request.ts +14 -5
  264. package/CRMService/index.ts +2 -2
  265. package/CRMService/schemas.gen.ts +342 -14826
  266. package/CRMService/types.gen.ts +401 -4471
  267. package/ContractService/ContractServiceClient.ts +65 -65
  268. package/ContractService/core/ApiError.ts +20 -20
  269. package/ContractService/core/ApiRequestOptions.ts +12 -12
  270. package/ContractService/core/ApiResult.ts +6 -6
  271. package/ContractService/core/BaseHttpRequest.ts +9 -9
  272. package/ContractService/core/CancelablePromise.ts +125 -125
  273. package/ContractService/core/FetchHttpRequest.ts +21 -21
  274. package/ContractService/core/OpenAPI.ts +55 -55
  275. package/ContractService/core/request.ts +340 -340
  276. package/ContractService/index.ts +8 -8
  277. package/ContractService/schemas.gen.ts +12076 -12076
  278. package/ContractService/services.gen.ts +1882 -1882
  279. package/ContractService/types.gen.ts +4145 -4145
  280. package/ExportValidationService/ExportValidationServiceClient.ts +44 -44
  281. package/ExportValidationService/core/ApiError.ts +20 -20
  282. package/ExportValidationService/core/ApiRequestOptions.ts +12 -12
  283. package/ExportValidationService/core/ApiResult.ts +6 -6
  284. package/ExportValidationService/core/BaseHttpRequest.ts +9 -9
  285. package/ExportValidationService/core/CancelablePromise.ts +125 -125
  286. package/ExportValidationService/core/FetchHttpRequest.ts +21 -21
  287. package/ExportValidationService/core/OpenAPI.ts +55 -55
  288. package/ExportValidationService/core/request.ts +340 -340
  289. package/ExportValidationService/index.ts +8 -8
  290. package/ExportValidationService/schemas.gen.ts +3998 -3998
  291. package/ExportValidationService/services.gen.ts +260 -260
  292. package/ExportValidationService/types.gen.ts +818 -818
  293. package/FinanceService/FinanceServiceClient.ts +47 -47
  294. package/FinanceService/core/ApiError.ts +20 -20
  295. package/FinanceService/core/ApiRequestOptions.ts +12 -12
  296. package/FinanceService/core/ApiResult.ts +6 -6
  297. package/FinanceService/core/BaseHttpRequest.ts +9 -9
  298. package/FinanceService/core/CancelablePromise.ts +125 -125
  299. package/FinanceService/core/FetchHttpRequest.ts +21 -21
  300. package/FinanceService/core/OpenAPI.ts +55 -55
  301. package/FinanceService/core/request.ts +340 -340
  302. package/FinanceService/index.ts +8 -8
  303. package/FinanceService/schemas.gen.ts +5006 -5006
  304. package/FinanceService/services.gen.ts +339 -339
  305. package/FinanceService/types.gen.ts +1128 -1128
  306. package/FundraiserService/FundraiserServiceClient.ts +47 -47
  307. package/FundraiserService/core/ApiError.ts +20 -20
  308. package/FundraiserService/core/ApiRequestOptions.ts +12 -12
  309. package/FundraiserService/core/ApiResult.ts +6 -6
  310. package/FundraiserService/core/BaseHttpRequest.ts +9 -9
  311. package/FundraiserService/core/CancelablePromise.ts +125 -125
  312. package/FundraiserService/core/FetchHttpRequest.ts +21 -21
  313. package/FundraiserService/core/OpenAPI.ts +55 -55
  314. package/FundraiserService/core/request.ts +340 -340
  315. package/FundraiserService/index.ts +8 -8
  316. package/FundraiserService/schemas.gen.ts +11548 -11548
  317. package/FundraiserService/services.gen.ts +627 -627
  318. package/FundraiserService/types.gen.ts +1793 -1793
  319. package/IdentityService/IdentityServiceClient.ts +86 -86
  320. package/IdentityService/core/ApiError.ts +20 -20
  321. package/IdentityService/core/ApiRequestOptions.ts +12 -12
  322. package/IdentityService/core/ApiResult.ts +6 -6
  323. package/IdentityService/core/BaseHttpRequest.ts +9 -9
  324. package/IdentityService/core/CancelablePromise.ts +125 -125
  325. package/IdentityService/core/FetchHttpRequest.ts +21 -21
  326. package/IdentityService/core/OpenAPI.ts +55 -55
  327. package/IdentityService/core/request.ts +340 -340
  328. package/IdentityService/index.ts +8 -8
  329. package/IdentityService/models/Volo_Abp_Account_AccountExternalProviderSettingsDto.ts +9 -9
  330. package/IdentityService/models/Volo_Abp_Account_AccountRecaptchaSettingsDto.ts +14 -14
  331. package/IdentityService/models/Volo_Abp_Account_AccountSettingsDto.ts +9 -9
  332. package/IdentityService/models/Volo_Abp_Account_AccountTwoFactorSettingsDto.ts +11 -11
  333. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettings.ts +12 -12
  334. package/IdentityService/models/Volo_Abp_Account_ExternalProviders_ExternalProviderSettingsProperty.ts +9 -9
  335. package/IdentityService/models/Volo_Abp_Account_UpdateExternalProviderDto.ts +12 -12
  336. package/IdentityService/models/Volo_Abp_Application_Dtos_ListResultDto_1.ts +9 -9
  337. package/IdentityService/models/Volo_Abp_Application_Dtos_PagedResultDto_1.ts +10 -10
  338. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto.ts +8 -8
  339. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto.ts +30 -30
  340. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto.ts +8 -8
  341. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto.ts +8 -8
  342. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto.ts +18 -18
  343. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto.ts +9 -9
  344. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto.ts +9 -9
  345. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto.ts +8 -8
  346. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto.ts +8 -8
  347. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto.ts +17 -17
  348. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto.ts +22 -22
  349. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto.ts +14 -14
  350. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone.ts +8 -8
  351. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto.ts +10 -10
  352. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto.ts +10 -10
  353. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto.ts +9 -9
  354. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto.ts +8 -8
  355. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto.ts +13 -13
  356. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto.ts +8 -8
  357. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto.ts +8 -8
  358. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto.ts +9 -9
  359. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto.ts +19 -19
  360. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto.ts +14 -14
  361. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto.ts +8 -8
  362. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto.ts +12 -12
  363. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto.ts +8 -8
  364. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto.ts +9 -9
  365. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto.ts +10 -10
  366. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto.ts +11 -11
  367. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone.ts +11 -11
  368. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto.ts +9 -9
  369. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone.ts +8 -8
  370. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto.ts +10 -10
  371. package/IdentityService/models/Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto.ts +8 -8
  372. package/IdentityService/models/Volo_Abp_Http_Modeling_ActionApiDescriptionModel.ts +20 -20
  373. package/IdentityService/models/Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel.ts +11 -11
  374. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerApiDescriptionModel.ts +17 -17
  375. package/IdentityService/models/Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel.ts +11 -11
  376. package/IdentityService/models/Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel.ts +12 -12
  377. package/IdentityService/models/Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel.ts +13 -13
  378. package/IdentityService/models/Volo_Abp_Http_Modeling_ModuleApiDescriptionModel.ts +11 -11
  379. package/IdentityService/models/Volo_Abp_Http_Modeling_ParameterApiDescriptionModel.ts +17 -17
  380. package/IdentityService/models/Volo_Abp_Http_Modeling_PropertyApiDescriptionModel.ts +17 -17
  381. package/IdentityService/models/Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel.ts +9 -9
  382. package/IdentityService/models/Volo_Abp_Http_Modeling_TypeApiDescriptionModel.ts +14 -14
  383. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorInfo.ts +13 -13
  384. package/IdentityService/models/Volo_Abp_Http_RemoteServiceErrorResponse.ts +9 -9
  385. package/IdentityService/models/Volo_Abp_Http_RemoteServiceValidationErrorInfo.ts +9 -9
  386. package/IdentityService/models/Volo_Abp_Identity_ClaimTypeDto.ts +19 -19
  387. package/IdentityService/models/Volo_Abp_Identity_CreateClaimTypeDto.ts +15 -15
  388. package/IdentityService/models/Volo_Abp_Identity_DownloadTokenResultDto.ts +8 -8
  389. package/IdentityService/models/Volo_Abp_Identity_ExternalLoginProviderDto.ts +9 -9
  390. package/IdentityService/models/Volo_Abp_Identity_Features_IdentityProTwoFactorBehaviour.ts +9 -9
  391. package/IdentityService/models/Volo_Abp_Identity_IdentityClaimValueType.ts +10 -10
  392. package/IdentityService/models/Volo_Abp_Identity_IdentityLdapSettingsDto.ts +15 -15
  393. package/IdentityService/models/Volo_Abp_Identity_IdentityLockoutSettingsDto.ts +10 -10
  394. package/IdentityService/models/Volo_Abp_Identity_IdentityOAuthSettingsDto.ts +15 -15
  395. package/IdentityService/models/Volo_Abp_Identity_IdentityPasswordSettingsDto.ts +15 -15
  396. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleClaimDto.ts +10 -10
  397. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleCreateDto.ts +11 -11
  398. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleDto.ts +15 -15
  399. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleLookupDto.ts +9 -9
  400. package/IdentityService/models/Volo_Abp_Identity_IdentityRoleUpdateDto.ts +12 -12
  401. package/IdentityService/models/Volo_Abp_Identity_IdentitySecurityLogDto.ts +21 -21
  402. package/IdentityService/models/Volo_Abp_Identity_IdentitySettingsDto.ts +15 -15
  403. package/IdentityService/models/Volo_Abp_Identity_IdentitySignInSettingsDto.ts +10 -10
  404. package/IdentityService/models/Volo_Abp_Identity_IdentityUserClaimDto.ts +10 -10
  405. package/IdentityService/models/Volo_Abp_Identity_IdentityUserCreateDto.ts +20 -20
  406. package/IdentityService/models/Volo_Abp_Identity_IdentityUserDto.ts +35 -35
  407. package/IdentityService/models/Volo_Abp_Identity_IdentityUserSettingsDto.ts +9 -9
  408. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateDto.ts +19 -19
  409. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdatePasswordInput.ts +8 -8
  410. package/IdentityService/models/Volo_Abp_Identity_IdentityUserUpdateRolesDto.ts +8 -8
  411. package/IdentityService/models/Volo_Abp_Identity_ImportExternalUserInput.ts +10 -10
  412. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileOutput.ts +12 -12
  413. package/IdentityService/models/Volo_Abp_Identity_ImportUsersFromFileType.ts +8 -8
  414. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitCreateDto.ts +10 -10
  415. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitDto.ts +21 -21
  416. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitLookupDto.ts +9 -9
  417. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitMoveInput.ts +8 -8
  418. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleDto.ts +11 -11
  419. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitRoleInput.ts +8 -8
  420. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUpdateDto.ts +10 -10
  421. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitUserInput.ts +8 -8
  422. package/IdentityService/models/Volo_Abp_Identity_OrganizationUnitWithDetailsDto.ts +23 -23
  423. package/IdentityService/models/Volo_Abp_Identity_UpdateClaimTypeDto.ts +16 -16
  424. package/IdentityService/models/Volo_Abp_Localization_LanguageInfo.ts +12 -12
  425. package/IdentityService/models/Volo_Abp_NameValue.ts +9 -9
  426. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationDto.ts +29 -29
  427. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_ApplicationTokenLifetimeDto.ts +13 -13
  428. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_CreateApplicationInput.ts +28 -28
  429. package/IdentityService/models/Volo_Abp_OpenIddict_Applications_Dtos_UpdateApplicationInput.ts +28 -28
  430. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_CreateScopeInput.ts +12 -12
  431. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_ScopeDto.ts +14 -14
  432. package/IdentityService/models/Volo_Abp_OpenIddict_Scopes_Dtos_UpdateScopeInput.ts +12 -12
  433. package/IdentityService/models/Volo_Abp_Users_UserData.ts +18 -18
  434. package/IdentityService/schemas.gen.ts +6928 -6928
  435. package/IdentityService/services/AbpApiDefinitionService.ts +34 -34
  436. package/IdentityService/services/AbpApplicationConfigurationService.ts +34 -34
  437. package/IdentityService/services/AbpApplicationLocalizationService.ts +37 -37
  438. package/IdentityService/services/AccountSettingsService.ts +178 -178
  439. package/IdentityService/services/ApplicationsService.ts +199 -199
  440. package/IdentityService/services/ClaimTypeService.ts +149 -149
  441. package/IdentityService/services/ExternalLoginService.ts +27 -27
  442. package/IdentityService/services/OrganizationUnitService.ts +539 -539
  443. package/IdentityService/services/RoleService.ts +269 -269
  444. package/IdentityService/services/ScopesService.ts +164 -164
  445. package/IdentityService/services/SecurityLogService.ts +174 -174
  446. package/IdentityService/services/SettingsService.ts +135 -135
  447. package/IdentityService/services/UserIntegrationService.ts +144 -144
  448. package/IdentityService/services/UserLookupService.ts +120 -120
  449. package/IdentityService/services/UserService.ts +937 -937
  450. package/IdentityService/services.gen.ts +3154 -3154
  451. package/IdentityService/types.gen.ts +5874 -5874
  452. package/LocationService/LocationServiceClient.ts +74 -74
  453. package/LocationService/core/ApiError.ts +20 -20
  454. package/LocationService/core/ApiRequestOptions.ts +12 -12
  455. package/LocationService/core/ApiResult.ts +6 -6
  456. package/LocationService/core/BaseHttpRequest.ts +9 -9
  457. package/LocationService/core/CancelablePromise.ts +125 -125
  458. package/LocationService/core/FetchHttpRequest.ts +21 -21
  459. package/LocationService/core/OpenAPI.ts +55 -55
  460. package/LocationService/core/request.ts +340 -340
  461. package/LocationService/index.ts +8 -8
  462. package/LocationService/schemas.gen.ts +6635 -6635
  463. package/LocationService/services.gen.ts +1797 -1797
  464. package/LocationService/types.gen.ts +3738 -3738
  465. package/MerchantService/MerchantServiceClient.ts +77 -77
  466. package/MerchantService/core/ApiError.ts +20 -20
  467. package/MerchantService/core/ApiRequestOptions.ts +12 -12
  468. package/MerchantService/core/ApiResult.ts +6 -6
  469. package/MerchantService/core/BaseHttpRequest.ts +9 -9
  470. package/MerchantService/core/CancelablePromise.ts +125 -125
  471. package/MerchantService/core/FetchHttpRequest.ts +21 -21
  472. package/MerchantService/core/OpenAPI.ts +55 -55
  473. package/MerchantService/core/request.ts +340 -340
  474. package/MerchantService/index.ts +8 -8
  475. package/MerchantService/schemas.gen.ts +14764 -14764
  476. package/MerchantService/services.gen.ts +1602 -1602
  477. package/MerchantService/types.gen.ts +18875 -18875
  478. package/ProjectService/ProjectServiceClient.ts +47 -47
  479. package/ProjectService/core/ApiError.ts +20 -20
  480. package/ProjectService/core/ApiRequestOptions.ts +12 -12
  481. package/ProjectService/core/ApiResult.ts +6 -6
  482. package/ProjectService/core/BaseHttpRequest.ts +9 -9
  483. package/ProjectService/core/CancelablePromise.ts +125 -125
  484. package/ProjectService/core/FetchHttpRequest.ts +21 -21
  485. package/ProjectService/core/OpenAPI.ts +55 -55
  486. package/ProjectService/core/request.ts +340 -340
  487. package/ProjectService/index.ts +8 -8
  488. package/ProjectService/schemas.gen.ts +5147 -5147
  489. package/ProjectService/services.gen.ts +492 -492
  490. package/ProjectService/types.gen.ts +1303 -1303
  491. package/README.md +40 -39
  492. package/RefundService/RefundServiceClient.ts +44 -44
  493. package/RefundService/core/ApiError.ts +20 -20
  494. package/RefundService/core/ApiRequestOptions.ts +12 -12
  495. package/RefundService/core/ApiResult.ts +6 -6
  496. package/RefundService/core/BaseHttpRequest.ts +9 -9
  497. package/RefundService/core/CancelablePromise.ts +125 -125
  498. package/RefundService/core/FetchHttpRequest.ts +21 -21
  499. package/RefundService/core/OpenAPI.ts +55 -55
  500. package/RefundService/core/request.ts +340 -340
  501. package/RefundService/index.ts +8 -8
  502. package/RefundService/schemas.gen.ts +5237 -5237
  503. package/RefundService/services.gen.ts +347 -347
  504. package/RefundService/types.gen.ts +1042 -1042
  505. package/SaasService/SaasServiceClient.ts +65 -65
  506. package/SaasService/core/ApiError.ts +20 -20
  507. package/SaasService/core/ApiRequestOptions.ts +12 -12
  508. package/SaasService/core/ApiResult.ts +6 -6
  509. package/SaasService/core/BaseHttpRequest.ts +9 -9
  510. package/SaasService/core/CancelablePromise.ts +125 -125
  511. package/SaasService/core/FetchHttpRequest.ts +21 -21
  512. package/SaasService/core/OpenAPI.ts +55 -55
  513. package/SaasService/core/request.ts +340 -340
  514. package/SaasService/index.ts +8 -8
  515. package/SaasService/schemas.gen.ts +5345 -5345
  516. package/SaasService/services.gen.ts +1329 -1329
  517. package/SaasService/types.gen.ts +2737 -2737
  518. package/SettingService/SettingServiceClient.ts +59 -59
  519. package/SettingService/core/ApiError.ts +20 -20
  520. package/SettingService/core/ApiRequestOptions.ts +12 -12
  521. package/SettingService/core/ApiResult.ts +6 -6
  522. package/SettingService/core/BaseHttpRequest.ts +9 -9
  523. package/SettingService/core/CancelablePromise.ts +125 -125
  524. package/SettingService/core/FetchHttpRequest.ts +21 -21
  525. package/SettingService/core/OpenAPI.ts +55 -55
  526. package/SettingService/core/request.ts +340 -340
  527. package/SettingService/index.ts +8 -8
  528. package/SettingService/schemas.gen.ts +5223 -5223
  529. package/SettingService/services.gen.ts +758 -758
  530. package/SettingService/types.gen.ts +1800 -1800
  531. package/TagService/TagServiceClient.ts +47 -47
  532. package/TagService/core/ApiError.ts +20 -20
  533. package/TagService/core/ApiRequestOptions.ts +12 -12
  534. package/TagService/core/ApiResult.ts +6 -6
  535. package/TagService/core/BaseHttpRequest.ts +9 -9
  536. package/TagService/core/CancelablePromise.ts +125 -125
  537. package/TagService/core/FetchHttpRequest.ts +21 -21
  538. package/TagService/core/OpenAPI.ts +55 -55
  539. package/TagService/core/request.ts +340 -340
  540. package/TagService/index.ts +8 -8
  541. package/TagService/schemas.gen.ts +5830 -5830
  542. package/TagService/services.gen.ts +556 -556
  543. package/TagService/types.gen.ts +1487 -1487
  544. package/TravellerService/TravellerServiceClient.ts +59 -59
  545. package/TravellerService/core/ApiError.ts +20 -20
  546. package/TravellerService/core/ApiRequestOptions.ts +12 -12
  547. package/TravellerService/core/ApiResult.ts +6 -6
  548. package/TravellerService/core/BaseHttpRequest.ts +9 -9
  549. package/TravellerService/core/CancelablePromise.ts +125 -125
  550. package/TravellerService/core/FetchHttpRequest.ts +21 -21
  551. package/TravellerService/core/OpenAPI.ts +55 -55
  552. package/TravellerService/core/request.ts +340 -340
  553. package/TravellerService/index.ts +8 -8
  554. package/TravellerService/schemas.gen.ts +6396 -6396
  555. package/TravellerService/services.gen.ts +949 -949
  556. package/TravellerService/types.gen.ts +2220 -2220
  557. package/index.mjs +38 -0
  558. package/package.json +37 -41
  559. package/ProjectService.json +0 -2938
  560. package/generator.mjs +0 -221
  561. package/index.ts +0 -2
  562. package/swagger.json +0 -4795
  563. package/upwithcrowdService/core/ApiError.ts +0 -21
  564. package/upwithcrowdService/core/ApiRequestOptions.ts +0 -13
  565. package/upwithcrowdService/core/ApiResult.ts +0 -7
  566. package/upwithcrowdService/core/BaseHttpRequest.ts +0 -10
  567. package/upwithcrowdService/core/CancelablePromise.ts +0 -126
  568. package/upwithcrowdService/core/FetchHttpRequest.ts +0 -22
  569. package/upwithcrowdService/core/OpenAPI.ts +0 -56
  570. package/upwithcrowdService/core/request.ts +0 -341
  571. package/upwithcrowdService/index.ts +0 -9
  572. package/upwithcrowdService/schemas.gen.ts +0 -11974
  573. package/upwithcrowdService/services.gen.ts +0 -6556
  574. package/upwithcrowdService/types.gen.ts +0 -12239
  575. package/upwithcrowdService/upwithcrowdServiceClient.ts +0 -161
  576. /package/CRMService/{services.gen.ts → sdk.gen.ts} +0 -0
@@ -1,1801 +1,1801 @@
1
- // This file is auto-generated by @hey-api/openapi-ts
2
-
3
- export type PagedResultDto_ProductGroupDetailDto = {
4
- items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDetailDto> | null;
5
- totalCount?: number;
6
- };
7
-
8
- export type PagedResultDto_ProductGroupDto = {
9
- items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
10
- totalCount?: number;
11
- };
12
-
13
- export type PagedResultDto_VatDto = {
14
- items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
15
- totalCount?: number;
16
- };
17
-
18
- export type UniRefund_SettingService_Bonds_BondDto = {
19
- key?: string | null;
20
- pattern?: string | null;
21
- type?: string | null;
22
- };
23
-
24
- export type UniRefund_SettingService_CountrySettings_CountrySettingDto = {
25
- isEnabled?: boolean;
26
- groups: Array<UniRefund_SettingService_Groups_GroupDto>;
27
- };
28
-
29
- export type UniRefund_SettingService_CountrySettings_CreateCountrySettingDto = {
30
- name?: string | null;
31
- value?: string | null;
32
- };
33
-
34
- export type UniRefund_SettingService_Groups_GroupDto = {
35
- isEnabled?: boolean;
36
- key: string;
37
- displayName: string;
38
- description?: string | null;
39
- items?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
40
- };
41
-
42
- export type UniRefund_SettingService_Items_GroupItemDto = {
43
- isEnabled: boolean;
44
- isRequired: boolean;
45
- isActive?: boolean | null;
46
- pattern?: string | null;
47
- depth?: number;
48
- description?: string | null;
49
- displayName: string;
50
- key: string;
51
- parentName?: string | null;
52
- value?: string | null;
53
- defaultValue?: string | null;
54
- bonds?: Array<UniRefund_SettingService_Bonds_BondDto> | null;
55
- subItems?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
56
- valueType?: UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto;
57
- };
58
-
59
- export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
60
- merchantId?: string;
61
- productGroupId?: string;
62
- };
63
-
64
- export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
65
- language: string;
66
- name: string;
67
- };
68
-
69
- export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
70
-
71
- export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
72
- readonly extraProperties?: {
73
- [key: string]: unknown;
74
- } | null;
75
- articleCode: string;
76
- name: string;
77
- unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
78
- companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
79
- active?: boolean;
80
- food?: boolean;
81
- vatId?: string | null;
82
- };
83
-
84
- export type UniRefund_SettingService_ProductGroups_ProductGroupDetailDto = {
85
- id?: string;
86
- creationTime?: string;
87
- creatorId?: string | null;
88
- lastModificationTime?: string | null;
89
- lastModifierId?: string | null;
90
- isDeleted?: boolean;
91
- deleterId?: string | null;
92
- deletionTime?: string | null;
93
- name: string;
94
- vatId?: string | null;
95
- vat?: UniRefund_SettingService_Vats_VatDetailDto;
96
- active: boolean;
97
- };
98
-
99
- export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
100
- id?: string;
101
- articleCode: string;
102
- name: string;
103
- unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
104
- companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
105
- vatId?: string | null;
106
- active: boolean;
107
- food: boolean;
108
- };
109
-
110
- export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
111
-
112
- export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
113
- readonly extraProperties?: {
114
- [key: string]: unknown;
115
- } | null;
116
- articleCode: string;
117
- name: string;
118
- unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
119
- companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
120
- active?: boolean;
121
- food?: boolean;
122
- vatId?: string | null;
123
- };
124
-
125
- export type UniRefund_SettingService_Samples_SampleDto = {
126
- value?: number;
127
- };
128
-
129
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
130
- items?: Array<UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto> | null;
131
- };
132
-
133
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
134
- name?: string | null;
135
- resourceName?: string | null;
136
- };
137
-
138
- export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
139
- displayText?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto;
140
- value?: string | null;
141
- };
142
-
143
- export type UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
144
- minValue?: number;
145
- maxValue?: number;
146
- };
147
-
148
- export type UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
149
- name?: string | null;
150
- properties?: UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto;
151
- };
152
-
153
- export type UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
154
- itemSource?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto;
155
- name?: string | null;
156
- properties?: string | null;
157
- validator?: UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto;
158
- };
159
-
160
- export type UniRefund_SettingService_Vats_CreateVatDto = {
161
- readonly extraProperties?: {
162
- [key: string]: unknown;
163
- } | null;
164
- percent: number;
165
- minimumTotalAmount: number;
166
- active?: boolean;
167
- };
168
-
169
- export type UniRefund_SettingService_Vats_UpdateVatDto = {
170
- readonly extraProperties?: {
171
- [key: string]: unknown;
172
- } | null;
173
- percent?: number;
174
- minimumTotalAmount?: number;
175
- active?: boolean;
176
- };
177
-
178
- export type UniRefund_SettingService_Vats_VatDetailDto = {
179
- id?: string;
180
- creationTime?: string;
181
- creatorId?: string | null;
182
- lastModificationTime?: string | null;
183
- lastModifierId?: string | null;
184
- isDeleted?: boolean;
185
- deleterId?: string | null;
186
- deletionTime?: string | null;
187
- percent: number;
188
- minimumTotalAmount: number;
189
- active: boolean;
190
- };
191
-
192
- export type UniRefund_SettingService_Vats_VatDto = {
193
- id?: string;
194
- percent?: number;
195
- minimumTotalAmount?: number;
196
- active?: boolean;
197
- };
198
-
199
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
200
- grantedPolicies?: {
201
- [key: string]: (boolean);
202
- } | null;
203
- };
204
-
205
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
206
- localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
207
- auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
208
- setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
209
- currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
210
- features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
211
- globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
212
- multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
213
- currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
214
- timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
215
- clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
216
- objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
217
- extraProperties?: {
218
- [key: string]: unknown;
219
- } | null;
220
- };
221
-
222
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
223
- values?: {
224
- [key: string]: (string | null);
225
- } | null;
226
- };
227
-
228
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
229
- enabledFeatures?: Array<(string)> | null;
230
- };
231
-
232
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
233
- values?: {
234
- [key: string]: {
235
- [key: string]: (string);
236
- };
237
- } | null;
238
- resources?: {
239
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
240
- } | null;
241
- languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
242
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
243
- defaultResourceName?: string | null;
244
- languagesMap?: {
245
- [key: string]: Array<Volo_Abp_NameValue>;
246
- } | null;
247
- languageFilesMap?: {
248
- [key: string]: Array<Volo_Abp_NameValue>;
249
- } | null;
250
- };
251
-
252
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
253
- resources?: {
254
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
255
- } | null;
256
- currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
257
- };
258
-
259
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
260
- texts?: {
261
- [key: string]: (string);
262
- } | null;
263
- baseResources?: Array<(string)> | null;
264
- };
265
-
266
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
267
- values?: {
268
- [key: string]: (string | null);
269
- } | null;
270
- };
271
-
272
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
273
- kind?: string | null;
274
- };
275
-
276
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
277
- displayName?: string | null;
278
- englishName?: string | null;
279
- threeLetterIsoLanguageName?: string | null;
280
- twoLetterIsoLanguageName?: string | null;
281
- isRightToLeft?: boolean;
282
- cultureName?: string | null;
283
- name?: string | null;
284
- nativeName?: string | null;
285
- dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
286
- };
287
-
288
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
289
- isAuthenticated?: boolean;
290
- id?: string | null;
291
- tenantId?: string | null;
292
- impersonatorUserId?: string | null;
293
- impersonatorTenantId?: string | null;
294
- impersonatorUserName?: string | null;
295
- impersonatorTenantName?: string | null;
296
- userName?: string | null;
297
- name?: string | null;
298
- surName?: string | null;
299
- email?: string | null;
300
- emailVerified?: boolean;
301
- phoneNumber?: string | null;
302
- phoneNumberVerified?: boolean;
303
- roles?: Array<(string)> | null;
304
- sessionId?: string | null;
305
- };
306
-
307
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
308
- calendarAlgorithmType?: string | null;
309
- dateTimeFormatLong?: string | null;
310
- shortDatePattern?: string | null;
311
- fullDateTimePattern?: string | null;
312
- dateSeparator?: string | null;
313
- shortTimePattern?: string | null;
314
- longTimePattern?: string | null;
315
- };
316
-
317
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
318
- timeZoneName?: string | null;
319
- };
320
-
321
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
322
- properties?: {
323
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
324
- } | null;
325
- configuration?: {
326
- [key: string]: unknown;
327
- } | null;
328
- };
329
-
330
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
331
- fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
332
- localizationResource?: string | null;
333
- };
334
-
335
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
336
- name?: string | null;
337
- value?: unknown;
338
- };
339
-
340
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
341
- isAvailable?: boolean;
342
- };
343
-
344
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
345
- onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
346
- onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
347
- onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
348
- };
349
-
350
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
351
- isAvailable?: boolean;
352
- };
353
-
354
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
355
- isAvailable?: boolean;
356
- };
357
-
358
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
359
- typeSimple?: string | null;
360
- config?: {
361
- [key: string]: unknown;
362
- } | null;
363
- };
364
-
365
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
366
- type?: string | null;
367
- typeSimple?: string | null;
368
- displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
369
- api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
370
- ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
371
- attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
372
- configuration?: {
373
- [key: string]: unknown;
374
- } | null;
375
- defaultValue?: unknown;
376
- };
377
-
378
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
379
- onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
380
- onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
381
- onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
382
- lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
383
- };
384
-
385
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
386
- isVisible?: boolean;
387
- };
388
-
389
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
390
- url?: string | null;
391
- resultListPropertyName?: string | null;
392
- displayPropertyName?: string | null;
393
- valuePropertyName?: string | null;
394
- filterParamName?: string | null;
395
- };
396
-
397
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
398
- isVisible?: boolean;
399
- };
400
-
401
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
402
- name?: string | null;
403
- resource?: string | null;
404
- };
405
-
406
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
407
- entities?: {
408
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
409
- } | null;
410
- configuration?: {
411
- [key: string]: unknown;
412
- } | null;
413
- };
414
-
415
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
416
- modules?: {
417
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
418
- } | null;
419
- enums?: {
420
- [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
421
- } | null;
422
- };
423
-
424
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
425
- iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
426
- windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
427
- };
428
-
429
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
430
- timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
431
- };
432
-
433
- export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
434
- timeZoneId?: string | null;
435
- };
436
-
437
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
438
- id?: string | null;
439
- name?: string | null;
440
- isAvailable?: boolean;
441
- };
442
-
443
- export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
444
- isEnabled?: boolean;
445
- };
446
-
447
- export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
448
- uniqueName?: string | null;
449
- name?: string | null;
450
- httpMethod?: string | null;
451
- url?: string | null;
452
- supportedVersions?: Array<(string)> | null;
453
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
454
- parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
455
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
456
- allowAnonymous?: boolean | null;
457
- implementFrom?: string | null;
458
- };
459
-
460
- export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
461
- modules?: {
462
- [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
463
- } | null;
464
- types?: {
465
- [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
466
- } | null;
467
- };
468
-
469
- export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
470
- controllerName?: string | null;
471
- controllerGroupName?: string | null;
472
- isRemoteService?: boolean;
473
- isIntegrationService?: boolean;
474
- apiVersion?: string | null;
475
- type?: string | null;
476
- interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
477
- actions?: {
478
- [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
479
- } | null;
480
- };
481
-
482
- export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
483
- type?: string | null;
484
- name?: string | null;
485
- methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
486
- };
487
-
488
- export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
489
- name?: string | null;
490
- parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
491
- returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
492
- };
493
-
494
- export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
495
- name?: string | null;
496
- typeAsString?: string | null;
497
- type?: string | null;
498
- typeSimple?: string | null;
499
- isOptional?: boolean;
500
- defaultValue?: unknown;
501
- };
502
-
503
- export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
504
- rootPath?: string | null;
505
- remoteServiceName?: string | null;
506
- controllers?: {
507
- [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
508
- } | null;
509
- };
510
-
511
- export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
512
- nameOnMethod?: string | null;
513
- name?: string | null;
514
- jsonName?: string | null;
515
- type?: string | null;
516
- typeSimple?: string | null;
517
- isOptional?: boolean;
518
- defaultValue?: unknown;
519
- constraintTypes?: Array<(string)> | null;
520
- bindingSourceId?: string | null;
521
- descriptorName?: string | null;
522
- };
523
-
524
- export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
525
- name?: string | null;
526
- jsonName?: string | null;
527
- type?: string | null;
528
- typeSimple?: string | null;
529
- isRequired?: boolean;
530
- minLength?: number | null;
531
- maxLength?: number | null;
532
- minimum?: string | null;
533
- maximum?: string | null;
534
- regex?: string | null;
535
- };
536
-
537
- export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
538
- type?: string | null;
539
- typeSimple?: string | null;
540
- };
541
-
542
- export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
543
- baseType?: string | null;
544
- isEnum?: boolean;
545
- enumNames?: Array<(string)> | null;
546
- enumValues?: Array<unknown> | null;
547
- genericArguments?: Array<(string)> | null;
548
- properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
549
- };
550
-
551
- export type Volo_Abp_Http_RemoteServiceErrorInfo = {
552
- code?: string | null;
553
- message?: string | null;
554
- details?: string | null;
555
- data?: {
556
- [key: string]: unknown;
557
- } | null;
558
- validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
559
- };
560
-
561
- export type Volo_Abp_Http_RemoteServiceErrorResponse = {
562
- error?: Volo_Abp_Http_RemoteServiceErrorInfo;
563
- };
564
-
565
- export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
566
- message?: string | null;
567
- members?: Array<(string)> | null;
568
- };
569
-
570
- export type Volo_Abp_Localization_LanguageInfo = {
571
- cultureName?: string | null;
572
- uiCultureName?: string | null;
573
- displayName?: string | null;
574
- readonly twoLetterISOLanguageName?: string | null;
575
- };
576
-
577
- export type Volo_Abp_NameValue = {
578
- name?: string | null;
579
- value?: string | null;
580
- };
581
-
582
- export type Volo_Abp_SettingManagement_EmailSettingsDto = {
583
- smtpHost?: string | null;
584
- smtpPort?: number;
585
- smtpUserName?: string | null;
586
- smtpPassword?: string | null;
587
- smtpDomain?: string | null;
588
- smtpEnableSsl?: boolean;
589
- smtpUseDefaultCredentials?: boolean;
590
- defaultFromAddress?: string | null;
591
- defaultFromDisplayName?: string | null;
592
- };
593
-
594
- export type Volo_Abp_SettingManagement_SendTestEmailInput = {
595
- senderEmailAddress: string;
596
- targetEmailAddress: string;
597
- subject: string;
598
- body?: string | null;
599
- };
600
-
601
- export type Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
602
- smtpHost?: string | null;
603
- smtpPort?: number;
604
- smtpUserName?: string | null;
605
- smtpPassword?: string | null;
606
- smtpDomain?: string | null;
607
- smtpEnableSsl?: boolean;
608
- smtpUseDefaultCredentials?: boolean;
609
- defaultFromAddress: string;
610
- defaultFromDisplayName: string;
611
- };
612
-
613
- export type GetApiAbpApiDefinitionData = {
614
- includeTypes?: boolean;
615
- };
616
-
617
- export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
618
-
619
- export type GetApiAbpApplicationConfigurationData = {
620
- includeLocalizationResources?: boolean;
621
- };
622
-
623
- export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
624
-
625
- export type GetApiAbpApplicationLocalizationData = {
626
- cultureName: string;
627
- onlyDynamics?: boolean;
628
- };
629
-
630
- export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
631
-
632
- export type PostApiSettingServiceCountrySettingsForTenantData = {
633
- requestBody?: UniRefund_SettingService_CountrySettings_CreateCountrySettingDto;
634
- };
635
-
636
- export type PostApiSettingServiceCountrySettingsForTenantResponse = unknown;
637
-
638
- export type GetApiSettingServiceCountrySettingsResponse = UniRefund_SettingService_CountrySettings_CountrySettingDto;
639
-
640
- export type PostApiSettingServiceCountrySettingsResponse = unknown;
641
-
642
- export type GetApiSettingManagementEmailingResponse = Volo_Abp_SettingManagement_EmailSettingsDto;
643
-
644
- export type PostApiSettingManagementEmailingData = {
645
- requestBody?: Volo_Abp_SettingManagement_UpdateEmailSettingsDto;
646
- };
647
-
648
- export type PostApiSettingManagementEmailingResponse = unknown;
649
-
650
- export type PostApiSettingManagementEmailingSendTestEmailData = {
651
- requestBody?: Volo_Abp_SettingManagement_SendTestEmailInput;
652
- };
653
-
654
- export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
655
-
656
- export type PostApiSettingServiceProductGroupData = {
657
- requestBody?: UniRefund_SettingService_ProductGroups_CreateProductGroupDto;
658
- };
659
-
660
- export type PostApiSettingServiceProductGroupResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
661
-
662
- export type GetApiSettingServiceProductGroupData = {
663
- maxResultCount?: number;
664
- skipCount?: number;
665
- sorting?: string;
666
- };
667
-
668
- export type GetApiSettingServiceProductGroupResponse = PagedResultDto_ProductGroupDto;
669
-
670
- export type PostApiSettingServiceProductGroupTranslationByIdData = {
671
- id: string;
672
- requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
673
- };
674
-
675
- export type PostApiSettingServiceProductGroupTranslationByIdResponse = unknown;
676
-
677
- export type PutApiSettingServiceProductGroupTranslationByIdData = {
678
- id: string;
679
- requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
680
- };
681
-
682
- export type PutApiSettingServiceProductGroupTranslationByIdResponse = unknown;
683
-
684
- export type DeleteApiSettingServiceProductGroupByIdData = {
685
- id: string;
686
- };
687
-
688
- export type DeleteApiSettingServiceProductGroupByIdResponse = unknown;
689
-
690
- export type GetApiSettingServiceProductGroupByIdData = {
691
- id: string;
692
- };
693
-
694
- export type GetApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
695
-
696
- export type PutApiSettingServiceProductGroupByIdData = {
697
- id: string;
698
- requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
699
- };
700
-
701
- export type PutApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
702
-
703
- export type GetApiSettingServiceProductGroupDetailByIdData = {
704
- cultureName?: string;
705
- id: string;
706
- };
707
-
708
- export type GetApiSettingServiceProductGroupDetailByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
709
-
710
- export type GetApiSettingServiceProductGroupByMerchantIdByIdData = {
711
- id: string;
712
- };
713
-
714
- export type GetApiSettingServiceProductGroupByMerchantIdByIdResponse = Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
715
-
716
- export type GetApiSettingServiceProductGroupDetailData = {
717
- maxResultCount?: number;
718
- skipCount?: number;
719
- sorting?: string;
720
- };
721
-
722
- export type GetApiSettingServiceProductGroupDetailResponse = PagedResultDto_ProductGroupDetailDto;
723
-
724
- export type PostApiSettingServiceProductGroupProductGroupMerchantBulkData = {
725
- requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
726
- };
727
-
728
- export type PostApiSettingServiceProductGroupProductGroupMerchantBulkResponse = unknown;
729
-
730
- export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
731
-
732
- export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
733
-
734
- export type GetApiSettingManagementTimezoneResponse = string;
735
-
736
- export type PostApiSettingManagementTimezoneData = {
737
- timezone?: string;
738
- };
739
-
740
- export type PostApiSettingManagementTimezoneResponse = unknown;
741
-
742
- export type GetApiSettingManagementTimezoneTimezonesResponse = Array<Volo_Abp_NameValue>;
743
-
744
- export type PostApiSettingServiceVatData = {
745
- requestBody?: UniRefund_SettingService_Vats_CreateVatDto;
746
- };
747
-
748
- export type PostApiSettingServiceVatResponse = UniRefund_SettingService_Vats_VatDto;
749
-
750
- export type GetApiSettingServiceVatData = {
751
- maxResultCount?: number;
752
- skipCount?: number;
753
- sorting?: string;
754
- };
755
-
756
- export type GetApiSettingServiceVatResponse = PagedResultDto_VatDto;
757
-
758
- export type DeleteApiSettingServiceVatByIdData = {
759
- id: string;
760
- };
761
-
762
- export type DeleteApiSettingServiceVatByIdResponse = unknown;
763
-
764
- export type GetApiSettingServiceVatByIdData = {
765
- id: string;
766
- };
767
-
768
- export type GetApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
769
-
770
- export type PutApiSettingServiceVatByIdData = {
771
- id: string;
772
- requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
773
- };
774
-
775
- export type PutApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
776
-
777
- export type $OpenApiTs = {
778
- '/api/abp/api-definition': {
779
- get: {
780
- req: GetApiAbpApiDefinitionData;
781
- res: {
782
- /**
783
- * Success
784
- */
785
- 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
786
- /**
787
- * Bad Request
788
- */
789
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
790
- /**
791
- * Unauthorized
792
- */
793
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
794
- /**
795
- * Forbidden
796
- */
797
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
798
- /**
799
- * Not Found
800
- */
801
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
802
- /**
803
- * Server Error
804
- */
805
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
806
- /**
807
- * Server Error
808
- */
809
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
810
- };
811
- };
812
- };
813
- '/api/abp/application-configuration': {
814
- get: {
815
- req: GetApiAbpApplicationConfigurationData;
816
- res: {
817
- /**
818
- * Success
819
- */
820
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
821
- /**
822
- * Bad Request
823
- */
824
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
825
- /**
826
- * Unauthorized
827
- */
828
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
829
- /**
830
- * Forbidden
831
- */
832
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
833
- /**
834
- * Not Found
835
- */
836
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
837
- /**
838
- * Server Error
839
- */
840
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
841
- /**
842
- * Server Error
843
- */
844
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
845
- };
846
- };
847
- };
848
- '/api/abp/application-localization': {
849
- get: {
850
- req: GetApiAbpApplicationLocalizationData;
851
- res: {
852
- /**
853
- * Success
854
- */
855
- 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
856
- /**
857
- * Bad Request
858
- */
859
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
860
- /**
861
- * Unauthorized
862
- */
863
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
864
- /**
865
- * Forbidden
866
- */
867
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
868
- /**
869
- * Not Found
870
- */
871
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
872
- /**
873
- * Server Error
874
- */
875
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
876
- /**
877
- * Server Error
878
- */
879
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
880
- };
881
- };
882
- };
883
- '/api/setting-service/country-settings/for-tenant': {
884
- post: {
885
- req: PostApiSettingServiceCountrySettingsForTenantData;
886
- res: {
887
- /**
888
- * Success
889
- */
890
- 200: unknown;
891
- /**
892
- * Bad Request
893
- */
894
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
895
- /**
896
- * Unauthorized
897
- */
898
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
899
- /**
900
- * Forbidden
901
- */
902
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
903
- /**
904
- * Not Found
905
- */
906
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
907
- /**
908
- * Server Error
909
- */
910
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
911
- /**
912
- * Server Error
913
- */
914
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
915
- };
916
- };
917
- };
918
- '/api/setting-service/country-settings': {
919
- get: {
920
- res: {
921
- /**
922
- * Success
923
- */
924
- 200: UniRefund_SettingService_CountrySettings_CountrySettingDto;
925
- /**
926
- * Bad Request
927
- */
928
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
929
- /**
930
- * Unauthorized
931
- */
932
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
933
- /**
934
- * Forbidden
935
- */
936
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
937
- /**
938
- * Not Found
939
- */
940
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
941
- /**
942
- * Server Error
943
- */
944
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
945
- /**
946
- * Server Error
947
- */
948
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
949
- };
950
- };
951
- post: {
952
- res: {
953
- /**
954
- * Success
955
- */
956
- 200: unknown;
957
- /**
958
- * Bad Request
959
- */
960
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
961
- /**
962
- * Unauthorized
963
- */
964
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
965
- /**
966
- * Forbidden
967
- */
968
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
969
- /**
970
- * Not Found
971
- */
972
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
973
- /**
974
- * Server Error
975
- */
976
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
977
- /**
978
- * Server Error
979
- */
980
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
981
- };
982
- };
983
- };
984
- '/api/setting-management/emailing': {
985
- get: {
986
- res: {
987
- /**
988
- * Success
989
- */
990
- 200: Volo_Abp_SettingManagement_EmailSettingsDto;
991
- /**
992
- * Bad Request
993
- */
994
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
995
- /**
996
- * Unauthorized
997
- */
998
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
999
- /**
1000
- * Forbidden
1001
- */
1002
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1003
- /**
1004
- * Not Found
1005
- */
1006
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1007
- /**
1008
- * Server Error
1009
- */
1010
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1011
- /**
1012
- * Server Error
1013
- */
1014
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1015
- };
1016
- };
1017
- post: {
1018
- req: PostApiSettingManagementEmailingData;
1019
- res: {
1020
- /**
1021
- * Success
1022
- */
1023
- 200: unknown;
1024
- /**
1025
- * Bad Request
1026
- */
1027
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1028
- /**
1029
- * Unauthorized
1030
- */
1031
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1032
- /**
1033
- * Forbidden
1034
- */
1035
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
- /**
1037
- * Not Found
1038
- */
1039
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
- /**
1041
- * Server Error
1042
- */
1043
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1044
- /**
1045
- * Server Error
1046
- */
1047
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
- };
1049
- };
1050
- };
1051
- '/api/setting-management/emailing/send-test-email': {
1052
- post: {
1053
- req: PostApiSettingManagementEmailingSendTestEmailData;
1054
- res: {
1055
- /**
1056
- * Success
1057
- */
1058
- 200: unknown;
1059
- /**
1060
- * Bad Request
1061
- */
1062
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
- /**
1064
- * Unauthorized
1065
- */
1066
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
- /**
1068
- * Forbidden
1069
- */
1070
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
- /**
1072
- * Not Found
1073
- */
1074
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
- /**
1076
- * Server Error
1077
- */
1078
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
- /**
1080
- * Server Error
1081
- */
1082
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
- };
1084
- };
1085
- };
1086
- '/api/setting-service/product-group': {
1087
- post: {
1088
- req: PostApiSettingServiceProductGroupData;
1089
- res: {
1090
- /**
1091
- * Success
1092
- */
1093
- 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1094
- /**
1095
- * Bad Request
1096
- */
1097
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
- /**
1099
- * Unauthorized
1100
- */
1101
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
- /**
1103
- * Forbidden
1104
- */
1105
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
- /**
1107
- * Not Found
1108
- */
1109
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
- /**
1111
- * Server Error
1112
- */
1113
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
- /**
1115
- * Server Error
1116
- */
1117
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
- };
1119
- };
1120
- get: {
1121
- req: GetApiSettingServiceProductGroupData;
1122
- res: {
1123
- /**
1124
- * Success
1125
- */
1126
- 200: PagedResultDto_ProductGroupDto;
1127
- /**
1128
- * Bad Request
1129
- */
1130
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1131
- /**
1132
- * Unauthorized
1133
- */
1134
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
- /**
1136
- * Forbidden
1137
- */
1138
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1139
- /**
1140
- * Not Found
1141
- */
1142
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1143
- /**
1144
- * Server Error
1145
- */
1146
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1147
- /**
1148
- * Server Error
1149
- */
1150
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1151
- };
1152
- };
1153
- };
1154
- '/api/setting-service/product-group/translation/{id}': {
1155
- post: {
1156
- req: PostApiSettingServiceProductGroupTranslationByIdData;
1157
- res: {
1158
- /**
1159
- * Success
1160
- */
1161
- 200: unknown;
1162
- /**
1163
- * Bad Request
1164
- */
1165
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1166
- /**
1167
- * Unauthorized
1168
- */
1169
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1170
- /**
1171
- * Forbidden
1172
- */
1173
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1174
- /**
1175
- * Not Found
1176
- */
1177
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1178
- /**
1179
- * Server Error
1180
- */
1181
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1182
- /**
1183
- * Server Error
1184
- */
1185
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1186
- };
1187
- };
1188
- put: {
1189
- req: PutApiSettingServiceProductGroupTranslationByIdData;
1190
- res: {
1191
- /**
1192
- * Success
1193
- */
1194
- 200: unknown;
1195
- /**
1196
- * Bad Request
1197
- */
1198
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1199
- /**
1200
- * Unauthorized
1201
- */
1202
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1203
- /**
1204
- * Forbidden
1205
- */
1206
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
- /**
1208
- * Not Found
1209
- */
1210
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
- /**
1212
- * Server Error
1213
- */
1214
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
- /**
1216
- * Server Error
1217
- */
1218
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
- };
1220
- };
1221
- };
1222
- '/api/setting-service/product-group/{id}': {
1223
- delete: {
1224
- req: DeleteApiSettingServiceProductGroupByIdData;
1225
- res: {
1226
- /**
1227
- * Success
1228
- */
1229
- 200: unknown;
1230
- /**
1231
- * Bad Request
1232
- */
1233
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1234
- /**
1235
- * Unauthorized
1236
- */
1237
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1238
- /**
1239
- * Forbidden
1240
- */
1241
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1242
- /**
1243
- * Not Found
1244
- */
1245
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1246
- /**
1247
- * Server Error
1248
- */
1249
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1250
- /**
1251
- * Server Error
1252
- */
1253
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1254
- };
1255
- };
1256
- get: {
1257
- req: GetApiSettingServiceProductGroupByIdData;
1258
- res: {
1259
- /**
1260
- * Success
1261
- */
1262
- 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1263
- /**
1264
- * Bad Request
1265
- */
1266
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
- /**
1268
- * Unauthorized
1269
- */
1270
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
- /**
1272
- * Forbidden
1273
- */
1274
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
- /**
1276
- * Not Found
1277
- */
1278
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1279
- /**
1280
- * Server Error
1281
- */
1282
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1283
- /**
1284
- * Server Error
1285
- */
1286
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1287
- };
1288
- };
1289
- put: {
1290
- req: PutApiSettingServiceProductGroupByIdData;
1291
- res: {
1292
- /**
1293
- * Success
1294
- */
1295
- 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1296
- /**
1297
- * Bad Request
1298
- */
1299
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1300
- /**
1301
- * Unauthorized
1302
- */
1303
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1304
- /**
1305
- * Forbidden
1306
- */
1307
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1308
- /**
1309
- * Not Found
1310
- */
1311
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1312
- /**
1313
- * Server Error
1314
- */
1315
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1316
- /**
1317
- * Server Error
1318
- */
1319
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1320
- };
1321
- };
1322
- };
1323
- '/api/setting-service/product-group/detail/{id}': {
1324
- get: {
1325
- req: GetApiSettingServiceProductGroupDetailByIdData;
1326
- res: {
1327
- /**
1328
- * Success
1329
- */
1330
- 200: UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
1331
- /**
1332
- * Bad Request
1333
- */
1334
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1335
- /**
1336
- * Unauthorized
1337
- */
1338
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1339
- /**
1340
- * Forbidden
1341
- */
1342
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1343
- /**
1344
- * Not Found
1345
- */
1346
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1347
- /**
1348
- * Server Error
1349
- */
1350
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1351
- /**
1352
- * Server Error
1353
- */
1354
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1355
- };
1356
- };
1357
- };
1358
- '/api/setting-service/product-group/by-merchant-id/{id}': {
1359
- get: {
1360
- req: GetApiSettingServiceProductGroupByMerchantIdByIdData;
1361
- res: {
1362
- /**
1363
- * Success
1364
- */
1365
- 200: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
1366
- /**
1367
- * Bad Request
1368
- */
1369
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1370
- /**
1371
- * Unauthorized
1372
- */
1373
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1374
- /**
1375
- * Forbidden
1376
- */
1377
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1378
- /**
1379
- * Not Found
1380
- */
1381
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1382
- /**
1383
- * Server Error
1384
- */
1385
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1386
- /**
1387
- * Server Error
1388
- */
1389
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1390
- };
1391
- };
1392
- };
1393
- '/api/setting-service/product-group/detail': {
1394
- get: {
1395
- req: GetApiSettingServiceProductGroupDetailData;
1396
- res: {
1397
- /**
1398
- * Success
1399
- */
1400
- 200: PagedResultDto_ProductGroupDetailDto;
1401
- /**
1402
- * Bad Request
1403
- */
1404
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1405
- /**
1406
- * Unauthorized
1407
- */
1408
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1409
- /**
1410
- * Forbidden
1411
- */
1412
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1413
- /**
1414
- * Not Found
1415
- */
1416
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1417
- /**
1418
- * Server Error
1419
- */
1420
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
- /**
1422
- * Server Error
1423
- */
1424
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1425
- };
1426
- };
1427
- };
1428
- '/api/setting-service/product-group/product-group-merchant-bulk': {
1429
- post: {
1430
- req: PostApiSettingServiceProductGroupProductGroupMerchantBulkData;
1431
- res: {
1432
- /**
1433
- * Success
1434
- */
1435
- 200: unknown;
1436
- /**
1437
- * Bad Request
1438
- */
1439
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1440
- /**
1441
- * Unauthorized
1442
- */
1443
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1444
- /**
1445
- * Forbidden
1446
- */
1447
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1448
- /**
1449
- * Not Found
1450
- */
1451
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1452
- /**
1453
- * Server Error
1454
- */
1455
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1456
- /**
1457
- * Server Error
1458
- */
1459
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1460
- };
1461
- };
1462
- };
1463
- '/api/SettingService/sample': {
1464
- get: {
1465
- res: {
1466
- /**
1467
- * Success
1468
- */
1469
- 200: UniRefund_SettingService_Samples_SampleDto;
1470
- /**
1471
- * Bad Request
1472
- */
1473
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1474
- /**
1475
- * Unauthorized
1476
- */
1477
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1478
- /**
1479
- * Forbidden
1480
- */
1481
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1482
- /**
1483
- * Not Found
1484
- */
1485
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1486
- /**
1487
- * Server Error
1488
- */
1489
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1490
- /**
1491
- * Server Error
1492
- */
1493
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1494
- };
1495
- };
1496
- };
1497
- '/api/SettingService/sample/authorized': {
1498
- get: {
1499
- res: {
1500
- /**
1501
- * Success
1502
- */
1503
- 200: UniRefund_SettingService_Samples_SampleDto;
1504
- /**
1505
- * Bad Request
1506
- */
1507
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1508
- /**
1509
- * Unauthorized
1510
- */
1511
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1512
- /**
1513
- * Forbidden
1514
- */
1515
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1516
- /**
1517
- * Not Found
1518
- */
1519
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1520
- /**
1521
- * Server Error
1522
- */
1523
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1524
- /**
1525
- * Server Error
1526
- */
1527
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1528
- };
1529
- };
1530
- };
1531
- '/api/setting-management/timezone': {
1532
- get: {
1533
- res: {
1534
- /**
1535
- * Success
1536
- */
1537
- 200: string;
1538
- /**
1539
- * Bad Request
1540
- */
1541
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1542
- /**
1543
- * Unauthorized
1544
- */
1545
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1546
- /**
1547
- * Forbidden
1548
- */
1549
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1550
- /**
1551
- * Not Found
1552
- */
1553
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1554
- /**
1555
- * Server Error
1556
- */
1557
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1558
- /**
1559
- * Server Error
1560
- */
1561
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1562
- };
1563
- };
1564
- post: {
1565
- req: PostApiSettingManagementTimezoneData;
1566
- res: {
1567
- /**
1568
- * Success
1569
- */
1570
- 200: unknown;
1571
- /**
1572
- * Bad Request
1573
- */
1574
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1575
- /**
1576
- * Unauthorized
1577
- */
1578
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1579
- /**
1580
- * Forbidden
1581
- */
1582
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1583
- /**
1584
- * Not Found
1585
- */
1586
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1587
- /**
1588
- * Server Error
1589
- */
1590
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1591
- /**
1592
- * Server Error
1593
- */
1594
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1595
- };
1596
- };
1597
- };
1598
- '/api/setting-management/timezone/timezones': {
1599
- get: {
1600
- res: {
1601
- /**
1602
- * Success
1603
- */
1604
- 200: Array<Volo_Abp_NameValue>;
1605
- /**
1606
- * Bad Request
1607
- */
1608
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
- /**
1610
- * Unauthorized
1611
- */
1612
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
- /**
1614
- * Forbidden
1615
- */
1616
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
- /**
1618
- * Not Found
1619
- */
1620
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
- /**
1622
- * Server Error
1623
- */
1624
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1625
- /**
1626
- * Server Error
1627
- */
1628
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1629
- };
1630
- };
1631
- };
1632
- '/api/setting-service/vat': {
1633
- post: {
1634
- req: PostApiSettingServiceVatData;
1635
- res: {
1636
- /**
1637
- * Success
1638
- */
1639
- 200: UniRefund_SettingService_Vats_VatDto;
1640
- /**
1641
- * Bad Request
1642
- */
1643
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1644
- /**
1645
- * Unauthorized
1646
- */
1647
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1648
- /**
1649
- * Forbidden
1650
- */
1651
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1652
- /**
1653
- * Not Found
1654
- */
1655
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1656
- /**
1657
- * Server Error
1658
- */
1659
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1660
- /**
1661
- * Server Error
1662
- */
1663
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1664
- };
1665
- };
1666
- get: {
1667
- req: GetApiSettingServiceVatData;
1668
- res: {
1669
- /**
1670
- * Success
1671
- */
1672
- 200: PagedResultDto_VatDto;
1673
- /**
1674
- * Bad Request
1675
- */
1676
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1677
- /**
1678
- * Unauthorized
1679
- */
1680
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
- /**
1682
- * Forbidden
1683
- */
1684
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
- /**
1686
- * Not Found
1687
- */
1688
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
- /**
1690
- * Server Error
1691
- */
1692
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
- /**
1694
- * Server Error
1695
- */
1696
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
- };
1698
- };
1699
- };
1700
- '/api/setting-service/vat/{id}': {
1701
- delete: {
1702
- req: DeleteApiSettingServiceVatByIdData;
1703
- res: {
1704
- /**
1705
- * Success
1706
- */
1707
- 200: unknown;
1708
- /**
1709
- * Bad Request
1710
- */
1711
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1712
- /**
1713
- * Unauthorized
1714
- */
1715
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1716
- /**
1717
- * Forbidden
1718
- */
1719
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1720
- /**
1721
- * Not Found
1722
- */
1723
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1724
- /**
1725
- * Server Error
1726
- */
1727
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1728
- /**
1729
- * Server Error
1730
- */
1731
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1732
- };
1733
- };
1734
- get: {
1735
- req: GetApiSettingServiceVatByIdData;
1736
- res: {
1737
- /**
1738
- * Success
1739
- */
1740
- 200: UniRefund_SettingService_Vats_VatDto;
1741
- /**
1742
- * Bad Request
1743
- */
1744
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1745
- /**
1746
- * Unauthorized
1747
- */
1748
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1749
- /**
1750
- * Forbidden
1751
- */
1752
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1753
- /**
1754
- * Not Found
1755
- */
1756
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1757
- /**
1758
- * Server Error
1759
- */
1760
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1761
- /**
1762
- * Server Error
1763
- */
1764
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1765
- };
1766
- };
1767
- put: {
1768
- req: PutApiSettingServiceVatByIdData;
1769
- res: {
1770
- /**
1771
- * Success
1772
- */
1773
- 200: UniRefund_SettingService_Vats_VatDto;
1774
- /**
1775
- * Bad Request
1776
- */
1777
- 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1778
- /**
1779
- * Unauthorized
1780
- */
1781
- 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1782
- /**
1783
- * Forbidden
1784
- */
1785
- 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1786
- /**
1787
- * Not Found
1788
- */
1789
- 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1790
- /**
1791
- * Server Error
1792
- */
1793
- 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1794
- /**
1795
- * Server Error
1796
- */
1797
- 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1798
- };
1799
- };
1800
- };
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+
3
+ export type PagedResultDto_ProductGroupDetailDto = {
4
+ items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDetailDto> | null;
5
+ totalCount?: number;
6
+ };
7
+
8
+ export type PagedResultDto_ProductGroupDto = {
9
+ items?: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto> | null;
10
+ totalCount?: number;
11
+ };
12
+
13
+ export type PagedResultDto_VatDto = {
14
+ items?: Array<UniRefund_SettingService_Vats_VatDto> | null;
15
+ totalCount?: number;
16
+ };
17
+
18
+ export type UniRefund_SettingService_Bonds_BondDto = {
19
+ key?: string | null;
20
+ pattern?: string | null;
21
+ type?: string | null;
22
+ };
23
+
24
+ export type UniRefund_SettingService_CountrySettings_CountrySettingDto = {
25
+ isEnabled?: boolean;
26
+ groups: Array<UniRefund_SettingService_Groups_GroupDto>;
27
+ };
28
+
29
+ export type UniRefund_SettingService_CountrySettings_CreateCountrySettingDto = {
30
+ name?: string | null;
31
+ value?: string | null;
32
+ };
33
+
34
+ export type UniRefund_SettingService_Groups_GroupDto = {
35
+ isEnabled?: boolean;
36
+ key: string;
37
+ displayName: string;
38
+ description?: string | null;
39
+ items?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
40
+ };
41
+
42
+ export type UniRefund_SettingService_Items_GroupItemDto = {
43
+ isEnabled: boolean;
44
+ isRequired: boolean;
45
+ isActive?: boolean | null;
46
+ pattern?: string | null;
47
+ depth?: number;
48
+ description?: string | null;
49
+ displayName: string;
50
+ key: string;
51
+ parentName?: string | null;
52
+ value?: string | null;
53
+ defaultValue?: string | null;
54
+ bonds?: Array<UniRefund_SettingService_Bonds_BondDto> | null;
55
+ subItems?: Array<UniRefund_SettingService_Items_GroupItemDto> | null;
56
+ valueType?: UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto;
57
+ };
58
+
59
+ export type UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto = {
60
+ merchantId?: string;
61
+ productGroupId?: string;
62
+ };
63
+
64
+ export type UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto = {
65
+ language: string;
66
+ name: string;
67
+ };
68
+
69
+ export type UniRefund_SettingService_ProductGroups_CompanyTypeCode = 'GOVERNMENT' | 'TAXFREE' | 'CUSTOMS' | 'REFUNDPOINT' | 'MERCHANT' | 'EXCHANGE' | 'TOURGUIDE';
70
+
71
+ export type UniRefund_SettingService_ProductGroups_CreateProductGroupDto = {
72
+ readonly extraProperties?: {
73
+ [key: string]: unknown;
74
+ } | null;
75
+ articleCode: string;
76
+ name: string;
77
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
78
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
79
+ active?: boolean;
80
+ food?: boolean;
81
+ vatId?: string | null;
82
+ };
83
+
84
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDetailDto = {
85
+ id?: string;
86
+ creationTime?: string;
87
+ creatorId?: string | null;
88
+ lastModificationTime?: string | null;
89
+ lastModifierId?: string | null;
90
+ isDeleted?: boolean;
91
+ deleterId?: string | null;
92
+ deletionTime?: string | null;
93
+ name: string;
94
+ vatId?: string | null;
95
+ vat?: UniRefund_SettingService_Vats_VatDetailDto;
96
+ active: boolean;
97
+ };
98
+
99
+ export type UniRefund_SettingService_ProductGroups_ProductGroupDto = {
100
+ id?: string;
101
+ articleCode: string;
102
+ name: string;
103
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
104
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
105
+ vatId?: string | null;
106
+ active: boolean;
107
+ food: boolean;
108
+ };
109
+
110
+ export type UniRefund_SettingService_ProductGroups_UnitTypeCode = 'QNT' | 'BAG' | 'BOX';
111
+
112
+ export type UniRefund_SettingService_ProductGroups_UpdateProductGroupDto = {
113
+ readonly extraProperties?: {
114
+ [key: string]: unknown;
115
+ } | null;
116
+ articleCode: string;
117
+ name: string;
118
+ unitCode: UniRefund_SettingService_ProductGroups_UnitTypeCode;
119
+ companyType: UniRefund_SettingService_ProductGroups_CompanyTypeCode;
120
+ active?: boolean;
121
+ food?: boolean;
122
+ vatId?: string | null;
123
+ };
124
+
125
+ export type UniRefund_SettingService_Samples_SampleDto = {
126
+ value?: number;
127
+ };
128
+
129
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto = {
130
+ items?: Array<UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto> | null;
131
+ };
132
+
133
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto = {
134
+ name?: string | null;
135
+ resourceName?: string | null;
136
+ };
137
+
138
+ export type UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_ItemDto = {
139
+ displayText?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_Items_DisplayTexts_DisplayTextDto;
140
+ value?: string | null;
141
+ };
142
+
143
+ export type UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto = {
144
+ minValue?: number;
145
+ maxValue?: number;
146
+ };
147
+
148
+ export type UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto = {
149
+ name?: string | null;
150
+ properties?: UniRefund_SettingService_Settings_ValueTypes_Validators_Properties_ValidatorPropertiesDto;
151
+ };
152
+
153
+ export type UniRefund_SettingService_Settings_ValueTypes_ValueTypeModelDto = {
154
+ itemSource?: UniRefund_SettingService_Settings_ValueTypes_ItemSources_ItemSourceDto;
155
+ name?: string | null;
156
+ properties?: string | null;
157
+ validator?: UniRefund_SettingService_Settings_ValueTypes_Validators_ValidatorDto;
158
+ };
159
+
160
+ export type UniRefund_SettingService_Vats_CreateVatDto = {
161
+ readonly extraProperties?: {
162
+ [key: string]: unknown;
163
+ } | null;
164
+ percent: number;
165
+ minimumTotalAmount: number;
166
+ active?: boolean;
167
+ };
168
+
169
+ export type UniRefund_SettingService_Vats_UpdateVatDto = {
170
+ readonly extraProperties?: {
171
+ [key: string]: unknown;
172
+ } | null;
173
+ percent?: number;
174
+ minimumTotalAmount?: number;
175
+ active?: boolean;
176
+ };
177
+
178
+ export type UniRefund_SettingService_Vats_VatDetailDto = {
179
+ id?: string;
180
+ creationTime?: string;
181
+ creatorId?: string | null;
182
+ lastModificationTime?: string | null;
183
+ lastModifierId?: string | null;
184
+ isDeleted?: boolean;
185
+ deleterId?: string | null;
186
+ deletionTime?: string | null;
187
+ percent: number;
188
+ minimumTotalAmount: number;
189
+ active: boolean;
190
+ };
191
+
192
+ export type UniRefund_SettingService_Vats_VatDto = {
193
+ id?: string;
194
+ percent?: number;
195
+ minimumTotalAmount?: number;
196
+ active?: boolean;
197
+ };
198
+
199
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto = {
200
+ grantedPolicies?: {
201
+ [key: string]: (boolean);
202
+ } | null;
203
+ };
204
+
205
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto = {
206
+ localization?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto;
207
+ auth?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationAuthConfigurationDto;
208
+ setting?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto;
209
+ currentUser?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto;
210
+ features?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto;
211
+ globalFeatures?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto;
212
+ multiTenancy?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto;
213
+ currentTenant?: Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto;
214
+ timing?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto;
215
+ clock?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto;
216
+ objectExtensions?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto;
217
+ extraProperties?: {
218
+ [key: string]: unknown;
219
+ } | null;
220
+ };
221
+
222
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationFeatureConfigurationDto = {
223
+ values?: {
224
+ [key: string]: (string | null);
225
+ } | null;
226
+ };
227
+
228
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationGlobalFeatureConfigurationDto = {
229
+ enabledFeatures?: Array<(string)> | null;
230
+ };
231
+
232
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationConfigurationDto = {
233
+ values?: {
234
+ [key: string]: {
235
+ [key: string]: (string);
236
+ };
237
+ } | null;
238
+ resources?: {
239
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
240
+ } | null;
241
+ languages?: Array<Volo_Abp_Localization_LanguageInfo> | null;
242
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
243
+ defaultResourceName?: string | null;
244
+ languagesMap?: {
245
+ [key: string]: Array<Volo_Abp_NameValue>;
246
+ } | null;
247
+ languageFilesMap?: {
248
+ [key: string]: Array<Volo_Abp_NameValue>;
249
+ } | null;
250
+ };
251
+
252
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto = {
253
+ resources?: {
254
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto;
255
+ } | null;
256
+ currentCulture?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto;
257
+ };
258
+
259
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationResourceDto = {
260
+ texts?: {
261
+ [key: string]: (string);
262
+ } | null;
263
+ baseResources?: Array<(string)> | null;
264
+ };
265
+
266
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationSettingConfigurationDto = {
267
+ values?: {
268
+ [key: string]: (string | null);
269
+ } | null;
270
+ };
271
+
272
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ClockDto = {
273
+ kind?: string | null;
274
+ };
275
+
276
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentCultureDto = {
277
+ displayName?: string | null;
278
+ englishName?: string | null;
279
+ threeLetterIsoLanguageName?: string | null;
280
+ twoLetterIsoLanguageName?: string | null;
281
+ isRightToLeft?: boolean;
282
+ cultureName?: string | null;
283
+ name?: string | null;
284
+ nativeName?: string | null;
285
+ dateTimeFormat?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto;
286
+ };
287
+
288
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_CurrentUserDto = {
289
+ isAuthenticated?: boolean;
290
+ id?: string | null;
291
+ tenantId?: string | null;
292
+ impersonatorUserId?: string | null;
293
+ impersonatorTenantId?: string | null;
294
+ impersonatorUserName?: string | null;
295
+ impersonatorTenantName?: string | null;
296
+ userName?: string | null;
297
+ name?: string | null;
298
+ surName?: string | null;
299
+ email?: string | null;
300
+ emailVerified?: boolean;
301
+ phoneNumber?: string | null;
302
+ phoneNumberVerified?: boolean;
303
+ roles?: Array<(string)> | null;
304
+ sessionId?: string | null;
305
+ };
306
+
307
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_DateTimeFormatDto = {
308
+ calendarAlgorithmType?: string | null;
309
+ dateTimeFormatLong?: string | null;
310
+ shortDatePattern?: string | null;
311
+ fullDateTimePattern?: string | null;
312
+ dateSeparator?: string | null;
313
+ shortTimePattern?: string | null;
314
+ longTimePattern?: string | null;
315
+ };
316
+
317
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone = {
318
+ timeZoneName?: string | null;
319
+ };
320
+
321
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto = {
322
+ properties?: {
323
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto;
324
+ } | null;
325
+ configuration?: {
326
+ [key: string]: unknown;
327
+ } | null;
328
+ };
329
+
330
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto = {
331
+ fields?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto> | null;
332
+ localizationResource?: string | null;
333
+ };
334
+
335
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumFieldDto = {
336
+ name?: string | null;
337
+ value?: unknown;
338
+ };
339
+
340
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto = {
341
+ isAvailable?: boolean;
342
+ };
343
+
344
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto = {
345
+ onGet?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto;
346
+ onCreate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiCreateDto;
347
+ onUpdate?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto;
348
+ };
349
+
350
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiGetDto = {
351
+ isAvailable?: boolean;
352
+ };
353
+
354
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiUpdateDto = {
355
+ isAvailable?: boolean;
356
+ };
357
+
358
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto = {
359
+ typeSimple?: string | null;
360
+ config?: {
361
+ [key: string]: unknown;
362
+ } | null;
363
+ };
364
+
365
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyDto = {
366
+ type?: string | null;
367
+ typeSimple?: string | null;
368
+ displayName?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto;
369
+ api?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyApiDto;
370
+ ui?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto;
371
+ attributes?: Array<Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyAttributeDto> | null;
372
+ configuration?: {
373
+ [key: string]: unknown;
374
+ } | null;
375
+ defaultValue?: unknown;
376
+ };
377
+
378
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiDto = {
379
+ onTable?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto;
380
+ onCreateForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
381
+ onEditForm?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto;
382
+ lookup?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto;
383
+ };
384
+
385
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiFormDto = {
386
+ isVisible?: boolean;
387
+ };
388
+
389
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiLookupDto = {
390
+ url?: string | null;
391
+ resultListPropertyName?: string | null;
392
+ displayPropertyName?: string | null;
393
+ valuePropertyName?: string | null;
394
+ filterParamName?: string | null;
395
+ };
396
+
397
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionPropertyUiTableDto = {
398
+ isVisible?: boolean;
399
+ };
400
+
401
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_LocalizableStringDto = {
402
+ name?: string | null;
403
+ resource?: string | null;
404
+ };
405
+
406
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto = {
407
+ entities?: {
408
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_EntityExtensionDto;
409
+ } | null;
410
+ configuration?: {
411
+ [key: string]: unknown;
412
+ } | null;
413
+ };
414
+
415
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ObjectExtensionsDto = {
416
+ modules?: {
417
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ModuleExtensionDto;
418
+ } | null;
419
+ enums?: {
420
+ [key: string]: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ObjectExtending_ExtensionEnumDto;
421
+ } | null;
422
+ };
423
+
424
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone = {
425
+ iana?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_IanaTimeZone;
426
+ windows?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone;
427
+ };
428
+
429
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimingDto = {
430
+ timeZone?: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_TimeZone;
431
+ };
432
+
433
+ export type Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_WindowsTimeZone = {
434
+ timeZoneId?: string | null;
435
+ };
436
+
437
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_CurrentTenantDto = {
438
+ id?: string | null;
439
+ name?: string | null;
440
+ isAvailable?: boolean;
441
+ };
442
+
443
+ export type Volo_Abp_AspNetCore_Mvc_MultiTenancy_MultiTenancyInfoDto = {
444
+ isEnabled?: boolean;
445
+ };
446
+
447
+ export type Volo_Abp_Http_Modeling_ActionApiDescriptionModel = {
448
+ uniqueName?: string | null;
449
+ name?: string | null;
450
+ httpMethod?: string | null;
451
+ url?: string | null;
452
+ supportedVersions?: Array<(string)> | null;
453
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
454
+ parameters?: Array<Volo_Abp_Http_Modeling_ParameterApiDescriptionModel> | null;
455
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
456
+ allowAnonymous?: boolean | null;
457
+ implementFrom?: string | null;
458
+ };
459
+
460
+ export type Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel = {
461
+ modules?: {
462
+ [key: string]: Volo_Abp_Http_Modeling_ModuleApiDescriptionModel;
463
+ } | null;
464
+ types?: {
465
+ [key: string]: Volo_Abp_Http_Modeling_TypeApiDescriptionModel;
466
+ } | null;
467
+ };
468
+
469
+ export type Volo_Abp_Http_Modeling_ControllerApiDescriptionModel = {
470
+ controllerName?: string | null;
471
+ controllerGroupName?: string | null;
472
+ isRemoteService?: boolean;
473
+ isIntegrationService?: boolean;
474
+ apiVersion?: string | null;
475
+ type?: string | null;
476
+ interfaces?: Array<Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel> | null;
477
+ actions?: {
478
+ [key: string]: Volo_Abp_Http_Modeling_ActionApiDescriptionModel;
479
+ } | null;
480
+ };
481
+
482
+ export type Volo_Abp_Http_Modeling_ControllerInterfaceApiDescriptionModel = {
483
+ type?: string | null;
484
+ name?: string | null;
485
+ methods?: Array<Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel> | null;
486
+ };
487
+
488
+ export type Volo_Abp_Http_Modeling_InterfaceMethodApiDescriptionModel = {
489
+ name?: string | null;
490
+ parametersOnMethod?: Array<Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel> | null;
491
+ returnValue?: Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel;
492
+ };
493
+
494
+ export type Volo_Abp_Http_Modeling_MethodParameterApiDescriptionModel = {
495
+ name?: string | null;
496
+ typeAsString?: string | null;
497
+ type?: string | null;
498
+ typeSimple?: string | null;
499
+ isOptional?: boolean;
500
+ defaultValue?: unknown;
501
+ };
502
+
503
+ export type Volo_Abp_Http_Modeling_ModuleApiDescriptionModel = {
504
+ rootPath?: string | null;
505
+ remoteServiceName?: string | null;
506
+ controllers?: {
507
+ [key: string]: Volo_Abp_Http_Modeling_ControllerApiDescriptionModel;
508
+ } | null;
509
+ };
510
+
511
+ export type Volo_Abp_Http_Modeling_ParameterApiDescriptionModel = {
512
+ nameOnMethod?: string | null;
513
+ name?: string | null;
514
+ jsonName?: string | null;
515
+ type?: string | null;
516
+ typeSimple?: string | null;
517
+ isOptional?: boolean;
518
+ defaultValue?: unknown;
519
+ constraintTypes?: Array<(string)> | null;
520
+ bindingSourceId?: string | null;
521
+ descriptorName?: string | null;
522
+ };
523
+
524
+ export type Volo_Abp_Http_Modeling_PropertyApiDescriptionModel = {
525
+ name?: string | null;
526
+ jsonName?: string | null;
527
+ type?: string | null;
528
+ typeSimple?: string | null;
529
+ isRequired?: boolean;
530
+ minLength?: number | null;
531
+ maxLength?: number | null;
532
+ minimum?: string | null;
533
+ maximum?: string | null;
534
+ regex?: string | null;
535
+ };
536
+
537
+ export type Volo_Abp_Http_Modeling_ReturnValueApiDescriptionModel = {
538
+ type?: string | null;
539
+ typeSimple?: string | null;
540
+ };
541
+
542
+ export type Volo_Abp_Http_Modeling_TypeApiDescriptionModel = {
543
+ baseType?: string | null;
544
+ isEnum?: boolean;
545
+ enumNames?: Array<(string)> | null;
546
+ enumValues?: Array<unknown> | null;
547
+ genericArguments?: Array<(string)> | null;
548
+ properties?: Array<Volo_Abp_Http_Modeling_PropertyApiDescriptionModel> | null;
549
+ };
550
+
551
+ export type Volo_Abp_Http_RemoteServiceErrorInfo = {
552
+ code?: string | null;
553
+ message?: string | null;
554
+ details?: string | null;
555
+ data?: {
556
+ [key: string]: unknown;
557
+ } | null;
558
+ validationErrors?: Array<Volo_Abp_Http_RemoteServiceValidationErrorInfo> | null;
559
+ };
560
+
561
+ export type Volo_Abp_Http_RemoteServiceErrorResponse = {
562
+ error?: Volo_Abp_Http_RemoteServiceErrorInfo;
563
+ };
564
+
565
+ export type Volo_Abp_Http_RemoteServiceValidationErrorInfo = {
566
+ message?: string | null;
567
+ members?: Array<(string)> | null;
568
+ };
569
+
570
+ export type Volo_Abp_Localization_LanguageInfo = {
571
+ cultureName?: string | null;
572
+ uiCultureName?: string | null;
573
+ displayName?: string | null;
574
+ readonly twoLetterISOLanguageName?: string | null;
575
+ };
576
+
577
+ export type Volo_Abp_NameValue = {
578
+ name?: string | null;
579
+ value?: string | null;
580
+ };
581
+
582
+ export type Volo_Abp_SettingManagement_EmailSettingsDto = {
583
+ smtpHost?: string | null;
584
+ smtpPort?: number;
585
+ smtpUserName?: string | null;
586
+ smtpPassword?: string | null;
587
+ smtpDomain?: string | null;
588
+ smtpEnableSsl?: boolean;
589
+ smtpUseDefaultCredentials?: boolean;
590
+ defaultFromAddress?: string | null;
591
+ defaultFromDisplayName?: string | null;
592
+ };
593
+
594
+ export type Volo_Abp_SettingManagement_SendTestEmailInput = {
595
+ senderEmailAddress: string;
596
+ targetEmailAddress: string;
597
+ subject: string;
598
+ body?: string | null;
599
+ };
600
+
601
+ export type Volo_Abp_SettingManagement_UpdateEmailSettingsDto = {
602
+ smtpHost?: string | null;
603
+ smtpPort?: number;
604
+ smtpUserName?: string | null;
605
+ smtpPassword?: string | null;
606
+ smtpDomain?: string | null;
607
+ smtpEnableSsl?: boolean;
608
+ smtpUseDefaultCredentials?: boolean;
609
+ defaultFromAddress: string;
610
+ defaultFromDisplayName: string;
611
+ };
612
+
613
+ export type GetApiAbpApiDefinitionData = {
614
+ includeTypes?: boolean;
615
+ };
616
+
617
+ export type GetApiAbpApiDefinitionResponse = Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
618
+
619
+ export type GetApiAbpApplicationConfigurationData = {
620
+ includeLocalizationResources?: boolean;
621
+ };
622
+
623
+ export type GetApiAbpApplicationConfigurationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
624
+
625
+ export type GetApiAbpApplicationLocalizationData = {
626
+ cultureName: string;
627
+ onlyDynamics?: boolean;
628
+ };
629
+
630
+ export type GetApiAbpApplicationLocalizationResponse = Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
631
+
632
+ export type PostApiSettingServiceCountrySettingsForTenantData = {
633
+ requestBody?: UniRefund_SettingService_CountrySettings_CreateCountrySettingDto;
634
+ };
635
+
636
+ export type PostApiSettingServiceCountrySettingsForTenantResponse = unknown;
637
+
638
+ export type GetApiSettingServiceCountrySettingsResponse = UniRefund_SettingService_CountrySettings_CountrySettingDto;
639
+
640
+ export type PostApiSettingServiceCountrySettingsResponse = unknown;
641
+
642
+ export type GetApiSettingManagementEmailingResponse = Volo_Abp_SettingManagement_EmailSettingsDto;
643
+
644
+ export type PostApiSettingManagementEmailingData = {
645
+ requestBody?: Volo_Abp_SettingManagement_UpdateEmailSettingsDto;
646
+ };
647
+
648
+ export type PostApiSettingManagementEmailingResponse = unknown;
649
+
650
+ export type PostApiSettingManagementEmailingSendTestEmailData = {
651
+ requestBody?: Volo_Abp_SettingManagement_SendTestEmailInput;
652
+ };
653
+
654
+ export type PostApiSettingManagementEmailingSendTestEmailResponse = unknown;
655
+
656
+ export type PostApiSettingServiceProductGroupData = {
657
+ requestBody?: UniRefund_SettingService_ProductGroups_CreateProductGroupDto;
658
+ };
659
+
660
+ export type PostApiSettingServiceProductGroupResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
661
+
662
+ export type GetApiSettingServiceProductGroupData = {
663
+ maxResultCount?: number;
664
+ skipCount?: number;
665
+ sorting?: string;
666
+ };
667
+
668
+ export type GetApiSettingServiceProductGroupResponse = PagedResultDto_ProductGroupDto;
669
+
670
+ export type PostApiSettingServiceProductGroupTranslationByIdData = {
671
+ id: string;
672
+ requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
673
+ };
674
+
675
+ export type PostApiSettingServiceProductGroupTranslationByIdResponse = unknown;
676
+
677
+ export type PutApiSettingServiceProductGroupTranslationByIdData = {
678
+ id: string;
679
+ requestBody?: UniRefund_SettingService_ProductGroups_AddProductGroupTranslationDto;
680
+ };
681
+
682
+ export type PutApiSettingServiceProductGroupTranslationByIdResponse = unknown;
683
+
684
+ export type DeleteApiSettingServiceProductGroupByIdData = {
685
+ id: string;
686
+ };
687
+
688
+ export type DeleteApiSettingServiceProductGroupByIdResponse = unknown;
689
+
690
+ export type GetApiSettingServiceProductGroupByIdData = {
691
+ id: string;
692
+ };
693
+
694
+ export type GetApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
695
+
696
+ export type PutApiSettingServiceProductGroupByIdData = {
697
+ id: string;
698
+ requestBody?: UniRefund_SettingService_ProductGroups_UpdateProductGroupDto;
699
+ };
700
+
701
+ export type PutApiSettingServiceProductGroupByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDto;
702
+
703
+ export type GetApiSettingServiceProductGroupDetailByIdData = {
704
+ cultureName?: string;
705
+ id: string;
706
+ };
707
+
708
+ export type GetApiSettingServiceProductGroupDetailByIdResponse = UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
709
+
710
+ export type GetApiSettingServiceProductGroupByMerchantIdByIdData = {
711
+ id: string;
712
+ };
713
+
714
+ export type GetApiSettingServiceProductGroupByMerchantIdByIdResponse = Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
715
+
716
+ export type GetApiSettingServiceProductGroupDetailData = {
717
+ maxResultCount?: number;
718
+ skipCount?: number;
719
+ sorting?: string;
720
+ };
721
+
722
+ export type GetApiSettingServiceProductGroupDetailResponse = PagedResultDto_ProductGroupDetailDto;
723
+
724
+ export type PostApiSettingServiceProductGroupProductGroupMerchantBulkData = {
725
+ requestBody?: Array<UniRefund_SettingService_ProductGroupMerchants_CreateProductGroupMerchantDto>;
726
+ };
727
+
728
+ export type PostApiSettingServiceProductGroupProductGroupMerchantBulkResponse = unknown;
729
+
730
+ export type GetApiSettingServiceSampleResponse = UniRefund_SettingService_Samples_SampleDto;
731
+
732
+ export type GetApiSettingServiceSampleAuthorizedResponse = UniRefund_SettingService_Samples_SampleDto;
733
+
734
+ export type GetApiSettingManagementTimezoneResponse = string;
735
+
736
+ export type PostApiSettingManagementTimezoneData = {
737
+ timezone?: string;
738
+ };
739
+
740
+ export type PostApiSettingManagementTimezoneResponse = unknown;
741
+
742
+ export type GetApiSettingManagementTimezoneTimezonesResponse = Array<Volo_Abp_NameValue>;
743
+
744
+ export type PostApiSettingServiceVatData = {
745
+ requestBody?: UniRefund_SettingService_Vats_CreateVatDto;
746
+ };
747
+
748
+ export type PostApiSettingServiceVatResponse = UniRefund_SettingService_Vats_VatDto;
749
+
750
+ export type GetApiSettingServiceVatData = {
751
+ maxResultCount?: number;
752
+ skipCount?: number;
753
+ sorting?: string;
754
+ };
755
+
756
+ export type GetApiSettingServiceVatResponse = PagedResultDto_VatDto;
757
+
758
+ export type DeleteApiSettingServiceVatByIdData = {
759
+ id: string;
760
+ };
761
+
762
+ export type DeleteApiSettingServiceVatByIdResponse = unknown;
763
+
764
+ export type GetApiSettingServiceVatByIdData = {
765
+ id: string;
766
+ };
767
+
768
+ export type GetApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
769
+
770
+ export type PutApiSettingServiceVatByIdData = {
771
+ id: string;
772
+ requestBody?: UniRefund_SettingService_Vats_UpdateVatDto;
773
+ };
774
+
775
+ export type PutApiSettingServiceVatByIdResponse = UniRefund_SettingService_Vats_VatDto;
776
+
777
+ export type $OpenApiTs = {
778
+ '/api/abp/api-definition': {
779
+ get: {
780
+ req: GetApiAbpApiDefinitionData;
781
+ res: {
782
+ /**
783
+ * Success
784
+ */
785
+ 200: Volo_Abp_Http_Modeling_ApplicationApiDescriptionModel;
786
+ /**
787
+ * Bad Request
788
+ */
789
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
790
+ /**
791
+ * Unauthorized
792
+ */
793
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
794
+ /**
795
+ * Forbidden
796
+ */
797
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
798
+ /**
799
+ * Not Found
800
+ */
801
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
802
+ /**
803
+ * Server Error
804
+ */
805
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
806
+ /**
807
+ * Server Error
808
+ */
809
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
810
+ };
811
+ };
812
+ };
813
+ '/api/abp/application-configuration': {
814
+ get: {
815
+ req: GetApiAbpApplicationConfigurationData;
816
+ res: {
817
+ /**
818
+ * Success
819
+ */
820
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationConfigurationDto;
821
+ /**
822
+ * Bad Request
823
+ */
824
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
825
+ /**
826
+ * Unauthorized
827
+ */
828
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
829
+ /**
830
+ * Forbidden
831
+ */
832
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
833
+ /**
834
+ * Not Found
835
+ */
836
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
837
+ /**
838
+ * Server Error
839
+ */
840
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
841
+ /**
842
+ * Server Error
843
+ */
844
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
845
+ };
846
+ };
847
+ };
848
+ '/api/abp/application-localization': {
849
+ get: {
850
+ req: GetApiAbpApplicationLocalizationData;
851
+ res: {
852
+ /**
853
+ * Success
854
+ */
855
+ 200: Volo_Abp_AspNetCore_Mvc_ApplicationConfigurations_ApplicationLocalizationDto;
856
+ /**
857
+ * Bad Request
858
+ */
859
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
860
+ /**
861
+ * Unauthorized
862
+ */
863
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
864
+ /**
865
+ * Forbidden
866
+ */
867
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
868
+ /**
869
+ * Not Found
870
+ */
871
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
872
+ /**
873
+ * Server Error
874
+ */
875
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
876
+ /**
877
+ * Server Error
878
+ */
879
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
880
+ };
881
+ };
882
+ };
883
+ '/api/setting-service/country-settings/for-tenant': {
884
+ post: {
885
+ req: PostApiSettingServiceCountrySettingsForTenantData;
886
+ res: {
887
+ /**
888
+ * Success
889
+ */
890
+ 200: unknown;
891
+ /**
892
+ * Bad Request
893
+ */
894
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
895
+ /**
896
+ * Unauthorized
897
+ */
898
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
899
+ /**
900
+ * Forbidden
901
+ */
902
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
903
+ /**
904
+ * Not Found
905
+ */
906
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
907
+ /**
908
+ * Server Error
909
+ */
910
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
911
+ /**
912
+ * Server Error
913
+ */
914
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
915
+ };
916
+ };
917
+ };
918
+ '/api/setting-service/country-settings': {
919
+ get: {
920
+ res: {
921
+ /**
922
+ * Success
923
+ */
924
+ 200: UniRefund_SettingService_CountrySettings_CountrySettingDto;
925
+ /**
926
+ * Bad Request
927
+ */
928
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
929
+ /**
930
+ * Unauthorized
931
+ */
932
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
933
+ /**
934
+ * Forbidden
935
+ */
936
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
937
+ /**
938
+ * Not Found
939
+ */
940
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
941
+ /**
942
+ * Server Error
943
+ */
944
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
945
+ /**
946
+ * Server Error
947
+ */
948
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
949
+ };
950
+ };
951
+ post: {
952
+ res: {
953
+ /**
954
+ * Success
955
+ */
956
+ 200: unknown;
957
+ /**
958
+ * Bad Request
959
+ */
960
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
961
+ /**
962
+ * Unauthorized
963
+ */
964
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
965
+ /**
966
+ * Forbidden
967
+ */
968
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
969
+ /**
970
+ * Not Found
971
+ */
972
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
973
+ /**
974
+ * Server Error
975
+ */
976
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
977
+ /**
978
+ * Server Error
979
+ */
980
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
981
+ };
982
+ };
983
+ };
984
+ '/api/setting-management/emailing': {
985
+ get: {
986
+ res: {
987
+ /**
988
+ * Success
989
+ */
990
+ 200: Volo_Abp_SettingManagement_EmailSettingsDto;
991
+ /**
992
+ * Bad Request
993
+ */
994
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
995
+ /**
996
+ * Unauthorized
997
+ */
998
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
999
+ /**
1000
+ * Forbidden
1001
+ */
1002
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1003
+ /**
1004
+ * Not Found
1005
+ */
1006
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1007
+ /**
1008
+ * Server Error
1009
+ */
1010
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1011
+ /**
1012
+ * Server Error
1013
+ */
1014
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1015
+ };
1016
+ };
1017
+ post: {
1018
+ req: PostApiSettingManagementEmailingData;
1019
+ res: {
1020
+ /**
1021
+ * Success
1022
+ */
1023
+ 200: unknown;
1024
+ /**
1025
+ * Bad Request
1026
+ */
1027
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1028
+ /**
1029
+ * Unauthorized
1030
+ */
1031
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1032
+ /**
1033
+ * Forbidden
1034
+ */
1035
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1036
+ /**
1037
+ * Not Found
1038
+ */
1039
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1040
+ /**
1041
+ * Server Error
1042
+ */
1043
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1044
+ /**
1045
+ * Server Error
1046
+ */
1047
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1048
+ };
1049
+ };
1050
+ };
1051
+ '/api/setting-management/emailing/send-test-email': {
1052
+ post: {
1053
+ req: PostApiSettingManagementEmailingSendTestEmailData;
1054
+ res: {
1055
+ /**
1056
+ * Success
1057
+ */
1058
+ 200: unknown;
1059
+ /**
1060
+ * Bad Request
1061
+ */
1062
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1063
+ /**
1064
+ * Unauthorized
1065
+ */
1066
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1067
+ /**
1068
+ * Forbidden
1069
+ */
1070
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1071
+ /**
1072
+ * Not Found
1073
+ */
1074
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1075
+ /**
1076
+ * Server Error
1077
+ */
1078
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1079
+ /**
1080
+ * Server Error
1081
+ */
1082
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1083
+ };
1084
+ };
1085
+ };
1086
+ '/api/setting-service/product-group': {
1087
+ post: {
1088
+ req: PostApiSettingServiceProductGroupData;
1089
+ res: {
1090
+ /**
1091
+ * Success
1092
+ */
1093
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1094
+ /**
1095
+ * Bad Request
1096
+ */
1097
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1098
+ /**
1099
+ * Unauthorized
1100
+ */
1101
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1102
+ /**
1103
+ * Forbidden
1104
+ */
1105
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1106
+ /**
1107
+ * Not Found
1108
+ */
1109
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1110
+ /**
1111
+ * Server Error
1112
+ */
1113
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1114
+ /**
1115
+ * Server Error
1116
+ */
1117
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1118
+ };
1119
+ };
1120
+ get: {
1121
+ req: GetApiSettingServiceProductGroupData;
1122
+ res: {
1123
+ /**
1124
+ * Success
1125
+ */
1126
+ 200: PagedResultDto_ProductGroupDto;
1127
+ /**
1128
+ * Bad Request
1129
+ */
1130
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1131
+ /**
1132
+ * Unauthorized
1133
+ */
1134
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1135
+ /**
1136
+ * Forbidden
1137
+ */
1138
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1139
+ /**
1140
+ * Not Found
1141
+ */
1142
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1143
+ /**
1144
+ * Server Error
1145
+ */
1146
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1147
+ /**
1148
+ * Server Error
1149
+ */
1150
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1151
+ };
1152
+ };
1153
+ };
1154
+ '/api/setting-service/product-group/translation/{id}': {
1155
+ post: {
1156
+ req: PostApiSettingServiceProductGroupTranslationByIdData;
1157
+ res: {
1158
+ /**
1159
+ * Success
1160
+ */
1161
+ 200: unknown;
1162
+ /**
1163
+ * Bad Request
1164
+ */
1165
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1166
+ /**
1167
+ * Unauthorized
1168
+ */
1169
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1170
+ /**
1171
+ * Forbidden
1172
+ */
1173
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1174
+ /**
1175
+ * Not Found
1176
+ */
1177
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1178
+ /**
1179
+ * Server Error
1180
+ */
1181
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1182
+ /**
1183
+ * Server Error
1184
+ */
1185
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1186
+ };
1187
+ };
1188
+ put: {
1189
+ req: PutApiSettingServiceProductGroupTranslationByIdData;
1190
+ res: {
1191
+ /**
1192
+ * Success
1193
+ */
1194
+ 200: unknown;
1195
+ /**
1196
+ * Bad Request
1197
+ */
1198
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1199
+ /**
1200
+ * Unauthorized
1201
+ */
1202
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1203
+ /**
1204
+ * Forbidden
1205
+ */
1206
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1207
+ /**
1208
+ * Not Found
1209
+ */
1210
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1211
+ /**
1212
+ * Server Error
1213
+ */
1214
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1215
+ /**
1216
+ * Server Error
1217
+ */
1218
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1219
+ };
1220
+ };
1221
+ };
1222
+ '/api/setting-service/product-group/{id}': {
1223
+ delete: {
1224
+ req: DeleteApiSettingServiceProductGroupByIdData;
1225
+ res: {
1226
+ /**
1227
+ * Success
1228
+ */
1229
+ 200: unknown;
1230
+ /**
1231
+ * Bad Request
1232
+ */
1233
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1234
+ /**
1235
+ * Unauthorized
1236
+ */
1237
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1238
+ /**
1239
+ * Forbidden
1240
+ */
1241
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1242
+ /**
1243
+ * Not Found
1244
+ */
1245
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1246
+ /**
1247
+ * Server Error
1248
+ */
1249
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1250
+ /**
1251
+ * Server Error
1252
+ */
1253
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1254
+ };
1255
+ };
1256
+ get: {
1257
+ req: GetApiSettingServiceProductGroupByIdData;
1258
+ res: {
1259
+ /**
1260
+ * Success
1261
+ */
1262
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1263
+ /**
1264
+ * Bad Request
1265
+ */
1266
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1267
+ /**
1268
+ * Unauthorized
1269
+ */
1270
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1271
+ /**
1272
+ * Forbidden
1273
+ */
1274
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1275
+ /**
1276
+ * Not Found
1277
+ */
1278
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1279
+ /**
1280
+ * Server Error
1281
+ */
1282
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1283
+ /**
1284
+ * Server Error
1285
+ */
1286
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1287
+ };
1288
+ };
1289
+ put: {
1290
+ req: PutApiSettingServiceProductGroupByIdData;
1291
+ res: {
1292
+ /**
1293
+ * Success
1294
+ */
1295
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDto;
1296
+ /**
1297
+ * Bad Request
1298
+ */
1299
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1300
+ /**
1301
+ * Unauthorized
1302
+ */
1303
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1304
+ /**
1305
+ * Forbidden
1306
+ */
1307
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1308
+ /**
1309
+ * Not Found
1310
+ */
1311
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1312
+ /**
1313
+ * Server Error
1314
+ */
1315
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1316
+ /**
1317
+ * Server Error
1318
+ */
1319
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1320
+ };
1321
+ };
1322
+ };
1323
+ '/api/setting-service/product-group/detail/{id}': {
1324
+ get: {
1325
+ req: GetApiSettingServiceProductGroupDetailByIdData;
1326
+ res: {
1327
+ /**
1328
+ * Success
1329
+ */
1330
+ 200: UniRefund_SettingService_ProductGroups_ProductGroupDetailDto;
1331
+ /**
1332
+ * Bad Request
1333
+ */
1334
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1335
+ /**
1336
+ * Unauthorized
1337
+ */
1338
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1339
+ /**
1340
+ * Forbidden
1341
+ */
1342
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1343
+ /**
1344
+ * Not Found
1345
+ */
1346
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1347
+ /**
1348
+ * Server Error
1349
+ */
1350
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1351
+ /**
1352
+ * Server Error
1353
+ */
1354
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1355
+ };
1356
+ };
1357
+ };
1358
+ '/api/setting-service/product-group/by-merchant-id/{id}': {
1359
+ get: {
1360
+ req: GetApiSettingServiceProductGroupByMerchantIdByIdData;
1361
+ res: {
1362
+ /**
1363
+ * Success
1364
+ */
1365
+ 200: Array<UniRefund_SettingService_ProductGroups_ProductGroupDto>;
1366
+ /**
1367
+ * Bad Request
1368
+ */
1369
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1370
+ /**
1371
+ * Unauthorized
1372
+ */
1373
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1374
+ /**
1375
+ * Forbidden
1376
+ */
1377
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1378
+ /**
1379
+ * Not Found
1380
+ */
1381
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1382
+ /**
1383
+ * Server Error
1384
+ */
1385
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1386
+ /**
1387
+ * Server Error
1388
+ */
1389
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1390
+ };
1391
+ };
1392
+ };
1393
+ '/api/setting-service/product-group/detail': {
1394
+ get: {
1395
+ req: GetApiSettingServiceProductGroupDetailData;
1396
+ res: {
1397
+ /**
1398
+ * Success
1399
+ */
1400
+ 200: PagedResultDto_ProductGroupDetailDto;
1401
+ /**
1402
+ * Bad Request
1403
+ */
1404
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1405
+ /**
1406
+ * Unauthorized
1407
+ */
1408
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1409
+ /**
1410
+ * Forbidden
1411
+ */
1412
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1413
+ /**
1414
+ * Not Found
1415
+ */
1416
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1417
+ /**
1418
+ * Server Error
1419
+ */
1420
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1421
+ /**
1422
+ * Server Error
1423
+ */
1424
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1425
+ };
1426
+ };
1427
+ };
1428
+ '/api/setting-service/product-group/product-group-merchant-bulk': {
1429
+ post: {
1430
+ req: PostApiSettingServiceProductGroupProductGroupMerchantBulkData;
1431
+ res: {
1432
+ /**
1433
+ * Success
1434
+ */
1435
+ 200: unknown;
1436
+ /**
1437
+ * Bad Request
1438
+ */
1439
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1440
+ /**
1441
+ * Unauthorized
1442
+ */
1443
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1444
+ /**
1445
+ * Forbidden
1446
+ */
1447
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1448
+ /**
1449
+ * Not Found
1450
+ */
1451
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1452
+ /**
1453
+ * Server Error
1454
+ */
1455
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1456
+ /**
1457
+ * Server Error
1458
+ */
1459
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1460
+ };
1461
+ };
1462
+ };
1463
+ '/api/SettingService/sample': {
1464
+ get: {
1465
+ res: {
1466
+ /**
1467
+ * Success
1468
+ */
1469
+ 200: UniRefund_SettingService_Samples_SampleDto;
1470
+ /**
1471
+ * Bad Request
1472
+ */
1473
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1474
+ /**
1475
+ * Unauthorized
1476
+ */
1477
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1478
+ /**
1479
+ * Forbidden
1480
+ */
1481
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1482
+ /**
1483
+ * Not Found
1484
+ */
1485
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1486
+ /**
1487
+ * Server Error
1488
+ */
1489
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1490
+ /**
1491
+ * Server Error
1492
+ */
1493
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1494
+ };
1495
+ };
1496
+ };
1497
+ '/api/SettingService/sample/authorized': {
1498
+ get: {
1499
+ res: {
1500
+ /**
1501
+ * Success
1502
+ */
1503
+ 200: UniRefund_SettingService_Samples_SampleDto;
1504
+ /**
1505
+ * Bad Request
1506
+ */
1507
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1508
+ /**
1509
+ * Unauthorized
1510
+ */
1511
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1512
+ /**
1513
+ * Forbidden
1514
+ */
1515
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1516
+ /**
1517
+ * Not Found
1518
+ */
1519
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1520
+ /**
1521
+ * Server Error
1522
+ */
1523
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1524
+ /**
1525
+ * Server Error
1526
+ */
1527
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1528
+ };
1529
+ };
1530
+ };
1531
+ '/api/setting-management/timezone': {
1532
+ get: {
1533
+ res: {
1534
+ /**
1535
+ * Success
1536
+ */
1537
+ 200: string;
1538
+ /**
1539
+ * Bad Request
1540
+ */
1541
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1542
+ /**
1543
+ * Unauthorized
1544
+ */
1545
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1546
+ /**
1547
+ * Forbidden
1548
+ */
1549
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1550
+ /**
1551
+ * Not Found
1552
+ */
1553
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1554
+ /**
1555
+ * Server Error
1556
+ */
1557
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1558
+ /**
1559
+ * Server Error
1560
+ */
1561
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1562
+ };
1563
+ };
1564
+ post: {
1565
+ req: PostApiSettingManagementTimezoneData;
1566
+ res: {
1567
+ /**
1568
+ * Success
1569
+ */
1570
+ 200: unknown;
1571
+ /**
1572
+ * Bad Request
1573
+ */
1574
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1575
+ /**
1576
+ * Unauthorized
1577
+ */
1578
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1579
+ /**
1580
+ * Forbidden
1581
+ */
1582
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1583
+ /**
1584
+ * Not Found
1585
+ */
1586
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1587
+ /**
1588
+ * Server Error
1589
+ */
1590
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1591
+ /**
1592
+ * Server Error
1593
+ */
1594
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1595
+ };
1596
+ };
1597
+ };
1598
+ '/api/setting-management/timezone/timezones': {
1599
+ get: {
1600
+ res: {
1601
+ /**
1602
+ * Success
1603
+ */
1604
+ 200: Array<Volo_Abp_NameValue>;
1605
+ /**
1606
+ * Bad Request
1607
+ */
1608
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1609
+ /**
1610
+ * Unauthorized
1611
+ */
1612
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1613
+ /**
1614
+ * Forbidden
1615
+ */
1616
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1617
+ /**
1618
+ * Not Found
1619
+ */
1620
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1621
+ /**
1622
+ * Server Error
1623
+ */
1624
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1625
+ /**
1626
+ * Server Error
1627
+ */
1628
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1629
+ };
1630
+ };
1631
+ };
1632
+ '/api/setting-service/vat': {
1633
+ post: {
1634
+ req: PostApiSettingServiceVatData;
1635
+ res: {
1636
+ /**
1637
+ * Success
1638
+ */
1639
+ 200: UniRefund_SettingService_Vats_VatDto;
1640
+ /**
1641
+ * Bad Request
1642
+ */
1643
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1644
+ /**
1645
+ * Unauthorized
1646
+ */
1647
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1648
+ /**
1649
+ * Forbidden
1650
+ */
1651
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1652
+ /**
1653
+ * Not Found
1654
+ */
1655
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1656
+ /**
1657
+ * Server Error
1658
+ */
1659
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1660
+ /**
1661
+ * Server Error
1662
+ */
1663
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1664
+ };
1665
+ };
1666
+ get: {
1667
+ req: GetApiSettingServiceVatData;
1668
+ res: {
1669
+ /**
1670
+ * Success
1671
+ */
1672
+ 200: PagedResultDto_VatDto;
1673
+ /**
1674
+ * Bad Request
1675
+ */
1676
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1677
+ /**
1678
+ * Unauthorized
1679
+ */
1680
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1681
+ /**
1682
+ * Forbidden
1683
+ */
1684
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1685
+ /**
1686
+ * Not Found
1687
+ */
1688
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1689
+ /**
1690
+ * Server Error
1691
+ */
1692
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1693
+ /**
1694
+ * Server Error
1695
+ */
1696
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1697
+ };
1698
+ };
1699
+ };
1700
+ '/api/setting-service/vat/{id}': {
1701
+ delete: {
1702
+ req: DeleteApiSettingServiceVatByIdData;
1703
+ res: {
1704
+ /**
1705
+ * Success
1706
+ */
1707
+ 200: unknown;
1708
+ /**
1709
+ * Bad Request
1710
+ */
1711
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1712
+ /**
1713
+ * Unauthorized
1714
+ */
1715
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1716
+ /**
1717
+ * Forbidden
1718
+ */
1719
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1720
+ /**
1721
+ * Not Found
1722
+ */
1723
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1724
+ /**
1725
+ * Server Error
1726
+ */
1727
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1728
+ /**
1729
+ * Server Error
1730
+ */
1731
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1732
+ };
1733
+ };
1734
+ get: {
1735
+ req: GetApiSettingServiceVatByIdData;
1736
+ res: {
1737
+ /**
1738
+ * Success
1739
+ */
1740
+ 200: UniRefund_SettingService_Vats_VatDto;
1741
+ /**
1742
+ * Bad Request
1743
+ */
1744
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1745
+ /**
1746
+ * Unauthorized
1747
+ */
1748
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1749
+ /**
1750
+ * Forbidden
1751
+ */
1752
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1753
+ /**
1754
+ * Not Found
1755
+ */
1756
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1757
+ /**
1758
+ * Server Error
1759
+ */
1760
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1761
+ /**
1762
+ * Server Error
1763
+ */
1764
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1765
+ };
1766
+ };
1767
+ put: {
1768
+ req: PutApiSettingServiceVatByIdData;
1769
+ res: {
1770
+ /**
1771
+ * Success
1772
+ */
1773
+ 200: UniRefund_SettingService_Vats_VatDto;
1774
+ /**
1775
+ * Bad Request
1776
+ */
1777
+ 400: Volo_Abp_Http_RemoteServiceErrorResponse;
1778
+ /**
1779
+ * Unauthorized
1780
+ */
1781
+ 401: Volo_Abp_Http_RemoteServiceErrorResponse;
1782
+ /**
1783
+ * Forbidden
1784
+ */
1785
+ 403: Volo_Abp_Http_RemoteServiceErrorResponse;
1786
+ /**
1787
+ * Not Found
1788
+ */
1789
+ 404: Volo_Abp_Http_RemoteServiceErrorResponse;
1790
+ /**
1791
+ * Server Error
1792
+ */
1793
+ 500: Volo_Abp_Http_RemoteServiceErrorResponse;
1794
+ /**
1795
+ * Server Error
1796
+ */
1797
+ 501: Volo_Abp_Http_RemoteServiceErrorResponse;
1798
+ };
1799
+ };
1800
+ };
1801
1801
  };